Skip to content

Commit

Permalink
fix(QSelect): JSON > missing "maxlength" prop definition; "tabindex" …
Browse files Browse the repository at this point in the history
…missing default value
  • Loading branch information
rstoenescu committed May 3, 2024
1 parent a9325ef commit 20ead01
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions ui/src/components/select/QSelect.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,16 +237,22 @@
"addedIn": "v2.15"
},

"use-chips": {
"type": "Boolean",
"desc": "Use QChip to show what is currently selected",
"category": "selection"
},

"use-input": {
"type": "Boolean",
"desc": "Use an input tag where users can type",
"category": "content"
},

"use-chips": {
"type": "Boolean",
"desc": "Use QChip to show what is currently selected",
"category": "selection"
"maxlength": {
"type": [ "String", "Number" ],
"desc": "Specify a max length for the inner input tag (if 'use-input' is enabled)",
"category": "content"
},

"fill-input": {
Expand Down Expand Up @@ -304,7 +310,8 @@
},

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

"autocomplete": {
Expand Down

0 comments on commit 20ead01

Please sign in to comment.