Skip to content

Commit

Permalink
fix(QKnob): JSON > some prop default values
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed May 3, 2024
1 parent d5503f7 commit 3bb607c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ui/src/components/knob/QKnob.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
"min": {
"type": "Number",
"desc": "The minimum value that the model (the knob value) should start at",
"default": "0",
"category": "model"
},

"max": {
"type": "Number",
"desc": "The maximum value that the model (the knob value) should go to",
"default": "100",
"category": "model"
},

Expand Down Expand Up @@ -75,7 +77,6 @@
"font-size": {
"type": "String",
"desc": "Size of text in CSS units, including unit name. Suggestion: use 'em' units to sync with component size",
"default": "'0.25em'",
"examples": [ "'1em'", "'16px'", "'2rem'" ],
"category": "style"
},
Expand All @@ -101,7 +102,8 @@
},

"tabindex": {
"extends": "tabindex"
"extends": "tabindex",
"default": "0"
},

"disable": {
Expand Down

0 comments on commit 3bb607c

Please sign in to comment.