@vuetify/nightly 4.0.0-dev-20230419.0 → 4.0.0-dev-20230422.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -2
- package/dist/json/attributes.json +172 -108
- package/dist/json/importMap.json +58 -58
- package/dist/json/tags.json +16 -0
- package/dist/json/web-types.json +522 -220
- package/dist/vuetify-labs.css +335 -172
- package/dist/vuetify-labs.d.ts +620 -171
- package/dist/vuetify-labs.esm.js +864 -182
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +864 -181
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +166 -3
- package/dist/vuetify.d.ts +584 -167
- package/dist/vuetify.esm.js +806 -134
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +806 -133
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +748 -682
- package/dist/vuetify.min.js.map +1 -1
- package/lib/adapters/date-adapter.mjs +2 -0
- package/lib/adapters/date-adapter.mjs.map +1 -0
- package/lib/adapters/vuetify.mjs +399 -0
- package/lib/adapters/vuetify.mjs.map +1 -0
- package/lib/blueprints/index.d.ts +34 -0
- package/lib/blueprints/md1.d.ts +34 -0
- package/lib/blueprints/md2.d.ts +34 -0
- package/lib/blueprints/md3.d.ts +34 -0
- package/lib/components/VAppBar/VAppBar.mjs +62 -10
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +26 -0
- package/lib/components/VAutocomplete/VAutocomplete.css +9 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +50 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +10 -0
- package/lib/components/VAutocomplete/index.d.ts +29 -17
- package/lib/components/VBtn/_mixins.scss +1 -1
- package/lib/components/VCard/VCard.mjs.map +1 -1
- package/lib/components/VCard/index.d.ts +21 -16
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.ts +22 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -4
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VCombobox/index.d.ts +29 -17
- package/lib/components/VField/index.d.ts +6 -0
- package/lib/components/VFileInput/VFileInput.mjs +13 -17
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.ts +68 -23
- package/lib/components/VInput/VInput.mjs +14 -7
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.ts +22 -1
- package/lib/components/VOverlay/locationStrategies.mjs +9 -4
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRadioGroup/index.d.ts +22 -1
- package/lib/components/VRangeSlider/VRangeSlider.mjs +33 -22
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.ts +39 -6
- package/lib/components/VSelect/VSelect.mjs +6 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.ts +32 -17
- package/lib/components/VSlider/VSlider.mjs +33 -15
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.ts +39 -6
- package/lib/components/VSlider/slider.mjs +43 -23
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.mjs +5 -3
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/index.d.ts +43 -1
- package/lib/components/VTextField/VTextField.mjs +4 -12
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.ts +70 -22
- package/lib/components/VTextarea/VTextarea.mjs +4 -12
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/VTextarea/index.d.ts +61 -22
- package/lib/components/VToolbar/VToolbar.css +3 -1
- package/lib/components/VToolbar/VToolbar.sass +3 -1
- package/lib/components/VValidation/index.d.ts +10 -1
- package/lib/components/index.d.ts +525 -150
- package/lib/composables/date.mjs +39 -0
- package/lib/composables/date.mjs.map +1 -0
- package/lib/composables/focus.mjs +3 -2
- package/lib/composables/focus.mjs.map +1 -1
- package/lib/composables/index.mjs +1 -0
- package/lib/composables/index.mjs.map +1 -1
- package/lib/composables/items.mjs +7 -2
- package/lib/composables/items.mjs.map +1 -1
- package/lib/composables/scroll.mjs +3 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +8 -3
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -2
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/index.d.ts +59 -17
- package/lib/labs/VDataTable/VDataTable.mjs +2 -2
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableRows.mjs +52 -44
- package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +2 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +0 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/options.mjs +2 -1
- package/lib/labs/VDataTable/composables/options.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.ts +44 -11
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +1 -0
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.ts +9 -9
- package/lib/labs/components.d.ts +53 -20
- package/lib/styles/main.css +152 -0
- package/lib/styles/settings/_utilities.scss +11 -1
- package/lib/util/helpers.mjs +4 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
@@ -179,6 +179,10 @@
|
|
179
179
|
"type": "string",
|
180
180
|
"description": "Specifies a [v-img](/components/images) as the component's background."
|
181
181
|
},
|
182
|
+
"v-app-bar/scroll-behavior": {
|
183
|
+
"type": "string",
|
184
|
+
"description": "MISSING DESCRIPTION"
|
185
|
+
},
|
182
186
|
"v-app-bar/collapse": {
|
183
187
|
"type": "boolean",
|
184
188
|
"description": "Morphs the component into a collapsed state, reducing its maximum width."
|
@@ -199,6 +203,14 @@
|
|
199
203
|
"type": "string | number",
|
200
204
|
"description": "Adjust the order of the component in relation to its registration order."
|
201
205
|
},
|
206
|
+
"v-app-bar/scroll-target": {
|
207
|
+
"type": "string",
|
208
|
+
"description": "MISSING DESCRIPTION"
|
209
|
+
},
|
210
|
+
"v-app-bar/scroll-threshold": {
|
211
|
+
"type": "string | number",
|
212
|
+
"description": "MISSING DESCRIPTION"
|
213
|
+
},
|
202
214
|
"v-app-bar-nav-icon/icon": {
|
203
215
|
"type": "string | (new () => any) | FunctionalComponent",
|
204
216
|
"description": "Apply a specific icon using the [v-icon](/components/icons/) component."
|
@@ -225,7 +237,7 @@
|
|
225
237
|
},
|
226
238
|
"v-autocomplete/error": {
|
227
239
|
"type": "boolean",
|
228
|
-
"description": "
|
240
|
+
"description": "Puts the input in a manual error state"
|
229
241
|
},
|
230
242
|
"v-autocomplete/density": {
|
231
243
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -233,7 +245,7 @@
|
|
233
245
|
},
|
234
246
|
"v-autocomplete/reverse": {
|
235
247
|
"type": "boolean",
|
236
|
-
"description": "
|
248
|
+
"description": "Reverses the orientation "
|
237
249
|
},
|
238
250
|
"v-autocomplete/rounded": {
|
239
251
|
"type": "string | number | boolean",
|
@@ -371,14 +383,6 @@
|
|
371
383
|
"type": "boolean",
|
372
384
|
"description": "Enables autofocus"
|
373
385
|
},
|
374
|
-
"v-autocomplete/hint": {
|
375
|
-
"type": "string",
|
376
|
-
"description": "Hint text"
|
377
|
-
},
|
378
|
-
"v-autocomplete/persistent-hint": {
|
379
|
-
"type": "boolean",
|
380
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
|
381
|
-
},
|
382
386
|
"v-autocomplete/prefix": {
|
383
387
|
"type": "string",
|
384
388
|
"description": "Displays prefix text"
|
@@ -407,6 +411,14 @@
|
|
407
411
|
"type": "string | (new () => any) | FunctionalComponent",
|
408
412
|
"description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`"
|
409
413
|
},
|
414
|
+
"v-autocomplete/hint": {
|
415
|
+
"type": "string",
|
416
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
417
|
+
},
|
418
|
+
"v-autocomplete/persistent-hint": {
|
419
|
+
"type": "boolean",
|
420
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
421
|
+
},
|
410
422
|
"v-autocomplete/messages": {
|
411
423
|
"type": "string | string[]",
|
412
424
|
"description": "Displays a list of messages or message if using a string"
|
@@ -453,7 +465,7 @@
|
|
453
465
|
},
|
454
466
|
"v-autocomplete/clear-icon": {
|
455
467
|
"type": "string | (new () => any) | FunctionalComponent",
|
456
|
-
"description": "
|
468
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
457
469
|
},
|
458
470
|
"v-autocomplete/active": {
|
459
471
|
"type": "boolean",
|
@@ -461,7 +473,7 @@
|
|
461
473
|
},
|
462
474
|
"v-autocomplete/persistent-clear": {
|
463
475
|
"type": "boolean",
|
464
|
-
"description": "
|
476
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
465
477
|
},
|
466
478
|
"v-autocomplete/prepend-inner-icon": {
|
467
479
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -1385,7 +1397,7 @@
|
|
1385
1397
|
},
|
1386
1398
|
"v-checkbox/error": {
|
1387
1399
|
"type": "boolean",
|
1388
|
-
"description": "
|
1400
|
+
"description": "Puts the input in a manual error state"
|
1389
1401
|
},
|
1390
1402
|
"v-checkbox/density": {
|
1391
1403
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -1409,7 +1421,7 @@
|
|
1409
1421
|
},
|
1410
1422
|
"v-checkbox/id": {
|
1411
1423
|
"type": "string",
|
1412
|
-
"description": "
|
1424
|
+
"description": "Sets the DOM id on the component"
|
1413
1425
|
},
|
1414
1426
|
"v-checkbox/label": {
|
1415
1427
|
"type": "string",
|
@@ -1435,6 +1447,14 @@
|
|
1435
1447
|
"type": "string | (new () => any) | FunctionalComponent",
|
1436
1448
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
1437
1449
|
},
|
1450
|
+
"v-checkbox/hint": {
|
1451
|
+
"type": "string",
|
1452
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
1453
|
+
},
|
1454
|
+
"v-checkbox/persistent-hint": {
|
1455
|
+
"type": "boolean",
|
1456
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
1457
|
+
},
|
1438
1458
|
"v-checkbox/messages": {
|
1439
1459
|
"type": "string | string[]",
|
1440
1460
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))"
|
@@ -1453,7 +1473,7 @@
|
|
1453
1473
|
},
|
1454
1474
|
"v-checkbox/readonly": {
|
1455
1475
|
"type": "boolean",
|
1456
|
-
"description": "
|
1476
|
+
"description": "Puts input in readonly state"
|
1457
1477
|
},
|
1458
1478
|
"v-checkbox/rules": {
|
1459
1479
|
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]",
|
@@ -1513,7 +1533,7 @@
|
|
1513
1533
|
},
|
1514
1534
|
"v-checkbox-btn/error": {
|
1515
1535
|
"type": "boolean",
|
1516
|
-
"description": "
|
1536
|
+
"description": "Puts the input in a manual error state"
|
1517
1537
|
},
|
1518
1538
|
"v-checkbox-btn/density": {
|
1519
1539
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -1537,7 +1557,7 @@
|
|
1537
1557
|
},
|
1538
1558
|
"v-checkbox-btn/id": {
|
1539
1559
|
"type": "string",
|
1540
|
-
"description": "
|
1560
|
+
"description": "Sets the DOM id on the component"
|
1541
1561
|
},
|
1542
1562
|
"v-checkbox-btn/label": {
|
1543
1563
|
"type": "string",
|
@@ -1549,7 +1569,7 @@
|
|
1549
1569
|
},
|
1550
1570
|
"v-checkbox-btn/multiple": {
|
1551
1571
|
"type": "boolean",
|
1552
|
-
"description": "
|
1572
|
+
"description": "Changes select to multiple. Accepts array for value"
|
1553
1573
|
},
|
1554
1574
|
"v-checkbox-btn/value-comparator": {
|
1555
1575
|
"type": "(a: any, b: any) => boolean",
|
@@ -1557,7 +1577,7 @@
|
|
1557
1577
|
},
|
1558
1578
|
"v-checkbox-btn/readonly": {
|
1559
1579
|
"type": "boolean",
|
1560
|
-
"description": "
|
1580
|
+
"description": "Puts input in readonly state"
|
1561
1581
|
},
|
1562
1582
|
"v-checkbox-btn/inline": {
|
1563
1583
|
"type": "boolean",
|
@@ -1585,11 +1605,11 @@
|
|
1585
1605
|
},
|
1586
1606
|
"v-checkbox-btn/false-icon": {
|
1587
1607
|
"type": "string | (new () => any) | FunctionalComponent",
|
1588
|
-
"description": "
|
1608
|
+
"description": "The icon used when inactive"
|
1589
1609
|
},
|
1590
1610
|
"v-checkbox-btn/true-icon": {
|
1591
1611
|
"type": "string | (new () => any) | FunctionalComponent",
|
1592
|
-
"description": "
|
1612
|
+
"description": "The icon used when active"
|
1593
1613
|
},
|
1594
1614
|
"v-chip/text": {
|
1595
1615
|
"type": "string",
|
@@ -1961,7 +1981,7 @@
|
|
1961
1981
|
},
|
1962
1982
|
"v-combobox/error": {
|
1963
1983
|
"type": "boolean",
|
1964
|
-
"description": "
|
1984
|
+
"description": "Puts the input in a manual error state"
|
1965
1985
|
},
|
1966
1986
|
"v-combobox/density": {
|
1967
1987
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -1969,7 +1989,7 @@
|
|
1969
1989
|
},
|
1970
1990
|
"v-combobox/reverse": {
|
1971
1991
|
"type": "boolean",
|
1972
|
-
"description": "
|
1992
|
+
"description": "Reverses the orientation "
|
1973
1993
|
},
|
1974
1994
|
"v-combobox/rounded": {
|
1975
1995
|
"type": "string | number | boolean",
|
@@ -2103,14 +2123,6 @@
|
|
2103
2123
|
"type": "boolean",
|
2104
2124
|
"description": "Enables autofocus"
|
2105
2125
|
},
|
2106
|
-
"v-combobox/hint": {
|
2107
|
-
"type": "string",
|
2108
|
-
"description": "Hint text"
|
2109
|
-
},
|
2110
|
-
"v-combobox/persistent-hint": {
|
2111
|
-
"type": "boolean",
|
2112
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
|
2113
|
-
},
|
2114
2126
|
"v-combobox/prefix": {
|
2115
2127
|
"type": "string",
|
2116
2128
|
"description": "Displays prefix text"
|
@@ -2139,6 +2151,14 @@
|
|
2139
2151
|
"type": "string | (new () => any) | FunctionalComponent",
|
2140
2152
|
"description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`"
|
2141
2153
|
},
|
2154
|
+
"v-combobox/hint": {
|
2155
|
+
"type": "string",
|
2156
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
2157
|
+
},
|
2158
|
+
"v-combobox/persistent-hint": {
|
2159
|
+
"type": "boolean",
|
2160
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
2161
|
+
},
|
2142
2162
|
"v-combobox/messages": {
|
2143
2163
|
"type": "string | string[]",
|
2144
2164
|
"description": "Displays a list of messages or message if using a string"
|
@@ -2185,7 +2205,7 @@
|
|
2185
2205
|
},
|
2186
2206
|
"v-combobox/clear-icon": {
|
2187
2207
|
"type": "string | (new () => any) | FunctionalComponent",
|
2188
|
-
"description": "
|
2208
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
2189
2209
|
},
|
2190
2210
|
"v-combobox/active": {
|
2191
2211
|
"type": "boolean",
|
@@ -2193,7 +2213,7 @@
|
|
2193
2213
|
},
|
2194
2214
|
"v-combobox/persistent-clear": {
|
2195
2215
|
"type": "boolean",
|
2196
|
-
"description": "
|
2216
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
2197
2217
|
},
|
2198
2218
|
"v-combobox/prepend-inner-icon": {
|
2199
2219
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -2431,6 +2451,10 @@
|
|
2431
2451
|
"type": "any[]",
|
2432
2452
|
"description": "An array of strings or objects used for automatically generating children components"
|
2433
2453
|
},
|
2454
|
+
"v-data-table-server/search": {
|
2455
|
+
"type": "string",
|
2456
|
+
"description": "Text input used to filter items"
|
2457
|
+
},
|
2434
2458
|
"v-data-table-server/hide-no-data": {
|
2435
2459
|
"type": "boolean",
|
2436
2460
|
"description": "MISSING DESCRIPTION"
|
@@ -3105,11 +3129,11 @@
|
|
3105
3129
|
},
|
3106
3130
|
"v-field/error": {
|
3107
3131
|
"type": "boolean",
|
3108
|
-
"description": "
|
3132
|
+
"description": "Puts the input in a manual error state"
|
3109
3133
|
},
|
3110
3134
|
"v-field/reverse": {
|
3111
3135
|
"type": "boolean",
|
3112
|
-
"description": "
|
3136
|
+
"description": "Reverses the orientation "
|
3113
3137
|
},
|
3114
3138
|
"v-field/rounded": {
|
3115
3139
|
"type": "string | number | boolean",
|
@@ -3157,7 +3181,7 @@
|
|
3157
3181
|
},
|
3158
3182
|
"v-field/clear-icon": {
|
3159
3183
|
"type": "string | (new () => any) | FunctionalComponent",
|
3160
|
-
"description": "
|
3184
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
3161
3185
|
},
|
3162
3186
|
"v-field/active": {
|
3163
3187
|
"type": "boolean",
|
@@ -3169,7 +3193,7 @@
|
|
3169
3193
|
},
|
3170
3194
|
"v-field/persistent-clear": {
|
3171
3195
|
"type": "boolean",
|
3172
|
-
"description": "
|
3196
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
3173
3197
|
},
|
3174
3198
|
"v-field/prepend-inner-icon": {
|
3175
3199
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -3197,7 +3221,7 @@
|
|
3197
3221
|
},
|
3198
3222
|
"v-file-input/error": {
|
3199
3223
|
"type": "boolean",
|
3200
|
-
"description": "
|
3224
|
+
"description": "Puts the input in a manual error state"
|
3201
3225
|
},
|
3202
3226
|
"v-file-input/density": {
|
3203
3227
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -3205,7 +3229,7 @@
|
|
3205
3229
|
},
|
3206
3230
|
"v-file-input/reverse": {
|
3207
3231
|
"type": "boolean",
|
3208
|
-
"description": "
|
3232
|
+
"description": "Reverses the orientation "
|
3209
3233
|
},
|
3210
3234
|
"v-file-input/rounded": {
|
3211
3235
|
"type": "string | number | boolean",
|
@@ -3247,14 +3271,6 @@
|
|
3247
3271
|
"type": "boolean",
|
3248
3272
|
"description": "Adds the **multiple** attribute to the input, allowing multiple file selections."
|
3249
3273
|
},
|
3250
|
-
"v-file-input/hint": {
|
3251
|
-
"type": "string",
|
3252
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-file-input.json))"
|
3253
|
-
},
|
3254
|
-
"v-file-input/persistent-hint": {
|
3255
|
-
"type": "boolean",
|
3256
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-file-input.json))"
|
3257
|
-
},
|
3258
3274
|
"v-file-input/append-icon": {
|
3259
3275
|
"type": "string | (new () => any) | FunctionalComponent",
|
3260
3276
|
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot"
|
@@ -3263,6 +3279,14 @@
|
|
3263
3279
|
"type": "string | (new () => any) | FunctionalComponent",
|
3264
3280
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
3265
3281
|
},
|
3282
|
+
"v-file-input/hint": {
|
3283
|
+
"type": "string",
|
3284
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
3285
|
+
},
|
3286
|
+
"v-file-input/persistent-hint": {
|
3287
|
+
"type": "boolean",
|
3288
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
3289
|
+
},
|
3266
3290
|
"v-file-input/messages": {
|
3267
3291
|
"type": "string | string[]",
|
3268
3292
|
"description": "Displays a list of messages or message if using a string"
|
@@ -3317,7 +3341,7 @@
|
|
3317
3341
|
},
|
3318
3342
|
"v-file-input/clear-icon": {
|
3319
3343
|
"type": "string | (new () => any) | FunctionalComponent",
|
3320
|
-
"description": "
|
3344
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
3321
3345
|
},
|
3322
3346
|
"v-file-input/active": {
|
3323
3347
|
"type": "boolean",
|
@@ -3329,7 +3353,7 @@
|
|
3329
3353
|
},
|
3330
3354
|
"v-file-input/persistent-clear": {
|
3331
3355
|
"type": "boolean",
|
3332
|
-
"description": "
|
3356
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
3333
3357
|
},
|
3334
3358
|
"v-file-input/prepend-inner-icon": {
|
3335
3359
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -3551,6 +3575,14 @@
|
|
3551
3575
|
"type": "string | (new () => any) | FunctionalComponent",
|
3552
3576
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
3553
3577
|
},
|
3578
|
+
"v-input/hint": {
|
3579
|
+
"type": "string",
|
3580
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
3581
|
+
},
|
3582
|
+
"v-input/persistent-hint": {
|
3583
|
+
"type": "boolean",
|
3584
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
3585
|
+
},
|
3554
3586
|
"v-input/messages": {
|
3555
3587
|
"type": "string | string[]",
|
3556
3588
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))"
|
@@ -4737,7 +4769,7 @@
|
|
4737
4769
|
},
|
4738
4770
|
"v-radio/error": {
|
4739
4771
|
"type": "boolean",
|
4740
|
-
"description": "
|
4772
|
+
"description": "Puts the input in a manual error state"
|
4741
4773
|
},
|
4742
4774
|
"v-radio/density": {
|
4743
4775
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -4761,7 +4793,7 @@
|
|
4761
4793
|
},
|
4762
4794
|
"v-radio/id": {
|
4763
4795
|
"type": "string",
|
4764
|
-
"description": "
|
4796
|
+
"description": "Sets the DOM id on the component"
|
4765
4797
|
},
|
4766
4798
|
"v-radio/label": {
|
4767
4799
|
"type": "string",
|
@@ -4773,7 +4805,7 @@
|
|
4773
4805
|
},
|
4774
4806
|
"v-radio/multiple": {
|
4775
4807
|
"type": "boolean",
|
4776
|
-
"description": "
|
4808
|
+
"description": "Changes select to multiple. Accepts array for value"
|
4777
4809
|
},
|
4778
4810
|
"v-radio/value-comparator": {
|
4779
4811
|
"type": "(a: any, b: any) => boolean",
|
@@ -4781,7 +4813,7 @@
|
|
4781
4813
|
},
|
4782
4814
|
"v-radio/readonly": {
|
4783
4815
|
"type": "boolean",
|
4784
|
-
"description": "
|
4816
|
+
"description": "Puts input in readonly state"
|
4785
4817
|
},
|
4786
4818
|
"v-radio/inline": {
|
4787
4819
|
"type": "boolean",
|
@@ -4817,7 +4849,7 @@
|
|
4817
4849
|
},
|
4818
4850
|
"v-radio-group/error": {
|
4819
4851
|
"type": "boolean",
|
4820
|
-
"description": "
|
4852
|
+
"description": "Puts the input in a manual error state"
|
4821
4853
|
},
|
4822
4854
|
"v-radio-group/density": {
|
4823
4855
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -4841,7 +4873,7 @@
|
|
4841
4873
|
},
|
4842
4874
|
"v-radio-group/id": {
|
4843
4875
|
"type": "string",
|
4844
|
-
"description": "
|
4876
|
+
"description": "Sets the DOM id on the component"
|
4845
4877
|
},
|
4846
4878
|
"v-radio-group/label": {
|
4847
4879
|
"type": "string",
|
@@ -4863,6 +4895,14 @@
|
|
4863
4895
|
"type": "string | (new () => any) | FunctionalComponent",
|
4864
4896
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
4865
4897
|
},
|
4898
|
+
"v-radio-group/hint": {
|
4899
|
+
"type": "string",
|
4900
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
4901
|
+
},
|
4902
|
+
"v-radio-group/persistent-hint": {
|
4903
|
+
"type": "boolean",
|
4904
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
4905
|
+
},
|
4866
4906
|
"v-radio-group/messages": {
|
4867
4907
|
"type": "string | string[]",
|
4868
4908
|
"description": "Displays a list of messages or message if using a string"
|
@@ -4881,7 +4921,7 @@
|
|
4881
4921
|
},
|
4882
4922
|
"v-radio-group/readonly": {
|
4883
4923
|
"type": "boolean",
|
4884
|
-
"description": "
|
4924
|
+
"description": "Puts input in readonly state"
|
4885
4925
|
},
|
4886
4926
|
"v-radio-group/rules": {
|
4887
4927
|
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]",
|
@@ -4971,6 +5011,14 @@
|
|
4971
5011
|
"type": "string | (new () => any) | FunctionalComponent",
|
4972
5012
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
4973
5013
|
},
|
5014
|
+
"v-range-slider/hint": {
|
5015
|
+
"type": "string",
|
5016
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
5017
|
+
},
|
5018
|
+
"v-range-slider/persistent-hint": {
|
5019
|
+
"type": "boolean",
|
5020
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
5021
|
+
},
|
4974
5022
|
"v-range-slider/messages": {
|
4975
5023
|
"type": "string | string[]",
|
4976
5024
|
"description": "Displays a list of messages or message if using a string"
|
@@ -5393,7 +5441,7 @@
|
|
5393
5441
|
},
|
5394
5442
|
"v-select/error": {
|
5395
5443
|
"type": "boolean",
|
5396
|
-
"description": "
|
5444
|
+
"description": "Puts the input in a manual error state"
|
5397
5445
|
},
|
5398
5446
|
"v-select/density": {
|
5399
5447
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -5401,7 +5449,7 @@
|
|
5401
5449
|
},
|
5402
5450
|
"v-select/reverse": {
|
5403
5451
|
"type": "boolean",
|
5404
|
-
"description": "
|
5452
|
+
"description": "Reverses the orientation "
|
5405
5453
|
},
|
5406
5454
|
"v-select/rounded": {
|
5407
5455
|
"type": "string | number | boolean",
|
@@ -5515,14 +5563,6 @@
|
|
5515
5563
|
"type": "boolean",
|
5516
5564
|
"description": "Enables autofocus"
|
5517
5565
|
},
|
5518
|
-
"v-select/hint": {
|
5519
|
-
"type": "string",
|
5520
|
-
"description": "Hint text"
|
5521
|
-
},
|
5522
|
-
"v-select/persistent-hint": {
|
5523
|
-
"type": "boolean",
|
5524
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
|
5525
|
-
},
|
5526
5566
|
"v-select/prefix": {
|
5527
5567
|
"type": "string",
|
5528
5568
|
"description": "Displays prefix text"
|
@@ -5551,6 +5591,14 @@
|
|
5551
5591
|
"type": "string | (new () => any) | FunctionalComponent",
|
5552
5592
|
"description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`"
|
5553
5593
|
},
|
5594
|
+
"v-select/hint": {
|
5595
|
+
"type": "string",
|
5596
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
5597
|
+
},
|
5598
|
+
"v-select/persistent-hint": {
|
5599
|
+
"type": "boolean",
|
5600
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
5601
|
+
},
|
5554
5602
|
"v-select/messages": {
|
5555
5603
|
"type": "string | string[]",
|
5556
5604
|
"description": "Displays a list of messages or message if using a string"
|
@@ -5597,7 +5645,7 @@
|
|
5597
5645
|
},
|
5598
5646
|
"v-select/clear-icon": {
|
5599
5647
|
"type": "string | (new () => any) | FunctionalComponent",
|
5600
|
-
"description": "
|
5648
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
5601
5649
|
},
|
5602
5650
|
"v-select/active": {
|
5603
5651
|
"type": "boolean",
|
@@ -5605,7 +5653,7 @@
|
|
5605
5653
|
},
|
5606
5654
|
"v-select/persistent-clear": {
|
5607
5655
|
"type": "boolean",
|
5608
|
-
"description": "
|
5656
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
5609
5657
|
},
|
5610
5658
|
"v-select/prepend-inner-icon": {
|
5611
5659
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -5641,7 +5689,7 @@
|
|
5641
5689
|
},
|
5642
5690
|
"v-selection-control/error": {
|
5643
5691
|
"type": "boolean",
|
5644
|
-
"description": "
|
5692
|
+
"description": "Puts the input in a manual error state"
|
5645
5693
|
},
|
5646
5694
|
"v-selection-control/density": {
|
5647
5695
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -5665,7 +5713,7 @@
|
|
5665
5713
|
},
|
5666
5714
|
"v-selection-control/id": {
|
5667
5715
|
"type": "string",
|
5668
|
-
"description": "
|
5716
|
+
"description": "Sets the DOM id on the component"
|
5669
5717
|
},
|
5670
5718
|
"v-selection-control/label": {
|
5671
5719
|
"type": "string",
|
@@ -5677,7 +5725,7 @@
|
|
5677
5725
|
},
|
5678
5726
|
"v-selection-control/multiple": {
|
5679
5727
|
"type": "boolean",
|
5680
|
-
"description": "
|
5728
|
+
"description": "Changes select to multiple. Accepts array for value"
|
5681
5729
|
},
|
5682
5730
|
"v-selection-control/value-comparator": {
|
5683
5731
|
"type": "(a: any, b: any) => boolean",
|
@@ -5685,7 +5733,7 @@
|
|
5685
5733
|
},
|
5686
5734
|
"v-selection-control/readonly": {
|
5687
5735
|
"type": "boolean",
|
5688
|
-
"description": "
|
5736
|
+
"description": "Puts input in readonly state"
|
5689
5737
|
},
|
5690
5738
|
"v-selection-control/inline": {
|
5691
5739
|
"type": "boolean",
|
@@ -5705,11 +5753,11 @@
|
|
5705
5753
|
},
|
5706
5754
|
"v-selection-control/false-icon": {
|
5707
5755
|
"type": "string | (new () => any) | FunctionalComponent",
|
5708
|
-
"description": "
|
5756
|
+
"description": "The icon used when inactive"
|
5709
5757
|
},
|
5710
5758
|
"v-selection-control/true-icon": {
|
5711
5759
|
"type": "string | (new () => any) | FunctionalComponent",
|
5712
|
-
"description": "
|
5760
|
+
"description": "The icon used when active"
|
5713
5761
|
},
|
5714
5762
|
"v-selection-control-group/type": {
|
5715
5763
|
"type": "string",
|
@@ -5721,7 +5769,7 @@
|
|
5721
5769
|
},
|
5722
5770
|
"v-selection-control-group/error": {
|
5723
5771
|
"type": "boolean",
|
5724
|
-
"description": "
|
5772
|
+
"description": "Puts the input in a manual error state"
|
5725
5773
|
},
|
5726
5774
|
"v-selection-control-group/density": {
|
5727
5775
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -5741,7 +5789,7 @@
|
|
5741
5789
|
},
|
5742
5790
|
"v-selection-control-group/id": {
|
5743
5791
|
"type": "string",
|
5744
|
-
"description": "
|
5792
|
+
"description": "Sets the DOM id on the component"
|
5745
5793
|
},
|
5746
5794
|
"v-selection-control-group/disabled": {
|
5747
5795
|
"type": "boolean",
|
@@ -5749,7 +5797,7 @@
|
|
5749
5797
|
},
|
5750
5798
|
"v-selection-control-group/multiple": {
|
5751
5799
|
"type": "boolean",
|
5752
|
-
"description": "
|
5800
|
+
"description": "Changes select to multiple. Accepts array for value"
|
5753
5801
|
},
|
5754
5802
|
"v-selection-control-group/value-comparator": {
|
5755
5803
|
"type": "(a: any, b: any) => boolean",
|
@@ -5757,7 +5805,7 @@
|
|
5757
5805
|
},
|
5758
5806
|
"v-selection-control-group/readonly": {
|
5759
5807
|
"type": "boolean",
|
5760
|
-
"description": "
|
5808
|
+
"description": "Puts input in readonly state"
|
5761
5809
|
},
|
5762
5810
|
"v-selection-control-group/inline": {
|
5763
5811
|
"type": "boolean",
|
@@ -5769,11 +5817,11 @@
|
|
5769
5817
|
},
|
5770
5818
|
"v-selection-control-group/false-icon": {
|
5771
5819
|
"type": "string | (new () => any) | FunctionalComponent",
|
5772
|
-
"description": "
|
5820
|
+
"description": "The icon used when inactive"
|
5773
5821
|
},
|
5774
5822
|
"v-selection-control-group/true-icon": {
|
5775
5823
|
"type": "string | (new () => any) | FunctionalComponent",
|
5776
|
-
"description": "
|
5824
|
+
"description": "The icon used when active"
|
5777
5825
|
},
|
5778
5826
|
"v-selection-control-group/defaults-target": {
|
5779
5827
|
"type": "string",
|
@@ -5836,7 +5884,7 @@
|
|
5836
5884
|
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
5837
5885
|
},
|
5838
5886
|
"v-skeleton-loader/type": {
|
5839
|
-
"type": "\"text\" | \"image\" | \"chip\" | \"actions\" | \"avatar\" | \"button\" | \"subtitle\" | \"heading\" | \"sentences\" | \"paragraph\" | \"article\" | \"card\" | \"card-avatar\" | \"date-picker\" | \"date-picker-options\" | \"date-picker-days\" | \"list-item\" | \"list-item-avatar\" | \"list-item-two-line\" | \"list-item-avatar-two-line\" | \"list-item-three-line\" | \"list-item-avatar-three-line\" | \"table\" | \"table-heading\" | \"table-thead\" | \"table-tbody\" | \"table-row-divider\" | \"table-row\" | \"table-tfoot\" | (\"text\" | \"image\" | \"chip\" | \"actions\" | \"avatar\" | \"button\" | \"subtitle\" | \"heading\" | \"sentences\" | \"paragraph\" | \"article\" | \"card\" | \"card-avatar\" | \"date-picker\" | \"date-picker-options\" | \"date-picker-days\" | \"list-item\" | \"list-item-avatar\" | \"list-item-two-line\" | \"list-item-avatar-two-line\" | \"list-item-three-line\" | \"list-item-avatar-three-line\" | \"table\" | \"table-heading\" | \"table-thead\" | \"table-tbody\" | \"table-row-divider\" | \"table-row\" | \"table-tfoot\")[]",
|
5887
|
+
"type": "\"text\" | \"image\" | \"chip\" | \"actions\" | \"avatar\" | \"divider\" | \"button\" | \"subtitle\" | \"heading\" | \"sentences\" | \"paragraph\" | \"article\" | \"card\" | \"card-avatar\" | \"date-picker\" | \"date-picker-options\" | \"date-picker-days\" | \"list-item\" | \"list-item-avatar\" | \"list-item-two-line\" | \"list-item-avatar-two-line\" | \"list-item-three-line\" | \"list-item-avatar-three-line\" | \"table\" | \"table-heading\" | \"table-thead\" | \"table-tbody\" | \"table-row-divider\" | \"table-row\" | \"table-tfoot\" | (\"text\" | \"image\" | \"chip\" | \"actions\" | \"avatar\" | \"divider\" | \"button\" | \"subtitle\" | \"heading\" | \"sentences\" | \"paragraph\" | \"article\" | \"card\" | \"card-avatar\" | \"date-picker\" | \"date-picker-options\" | \"date-picker-days\" | \"list-item\" | \"list-item-avatar\" | \"list-item-two-line\" | \"list-item-avatar-two-line\" | \"list-item-three-line\" | \"list-item-avatar-three-line\" | \"table\" | \"table-heading\" | \"table-thead\" | \"table-tbody\" | \"table-row-divider\" | \"table-row\" | \"table-tfoot\")[]",
|
5840
5888
|
"description": "A string delimited list of skeleton components to create such as `type=\"text@3\"` or `type=\"card, list-item\"`. Will recursively generate a corresponding skeleton from the provided string. Also supports short-hand for multiple elements such as **article@3** and **paragraph@2** which will generate 3 _article_ skeletons and 2 _paragraph_ skeletons. Please see below for a list of available pre-defined options."
|
5841
5889
|
},
|
5842
5890
|
"v-skeleton-loader/height": {
|
@@ -6099,6 +6147,14 @@
|
|
6099
6147
|
"type": "string | (new () => any) | FunctionalComponent",
|
6100
6148
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
6101
6149
|
},
|
6150
|
+
"v-slider/hint": {
|
6151
|
+
"type": "string",
|
6152
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
6153
|
+
},
|
6154
|
+
"v-slider/persistent-hint": {
|
6155
|
+
"type": "boolean",
|
6156
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
6157
|
+
},
|
6102
6158
|
"v-slider/messages": {
|
6103
6159
|
"type": "string | string[]",
|
6104
6160
|
"description": "Displays a list of messages or message if using a string"
|
@@ -6361,7 +6417,7 @@
|
|
6361
6417
|
},
|
6362
6418
|
"v-switch/error": {
|
6363
6419
|
"type": "boolean",
|
6364
|
-
"description": "
|
6420
|
+
"description": "Puts the input in a manual error state"
|
6365
6421
|
},
|
6366
6422
|
"v-switch/density": {
|
6367
6423
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -6385,7 +6441,7 @@
|
|
6385
6441
|
},
|
6386
6442
|
"v-switch/id": {
|
6387
6443
|
"type": "string",
|
6388
|
-
"description": "
|
6444
|
+
"description": "Sets the DOM id on the component"
|
6389
6445
|
},
|
6390
6446
|
"v-switch/label": {
|
6391
6447
|
"type": "string",
|
@@ -6411,6 +6467,14 @@
|
|
6411
6467
|
"type": "string | (new () => any) | FunctionalComponent",
|
6412
6468
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
6413
6469
|
},
|
6470
|
+
"v-switch/hint": {
|
6471
|
+
"type": "string",
|
6472
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
6473
|
+
},
|
6474
|
+
"v-switch/persistent-hint": {
|
6475
|
+
"type": "boolean",
|
6476
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
6477
|
+
},
|
6414
6478
|
"v-switch/messages": {
|
6415
6479
|
"type": "string | string[]",
|
6416
6480
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))"
|
@@ -6429,7 +6493,7 @@
|
|
6429
6493
|
},
|
6430
6494
|
"v-switch/readonly": {
|
6431
6495
|
"type": "boolean",
|
6432
|
-
"description": "
|
6496
|
+
"description": "Puts input in readonly state"
|
6433
6497
|
},
|
6434
6498
|
"v-switch/rules": {
|
6435
6499
|
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/validation.ts#L16-L20\" target=\"_blank\">ValidationRule</a>[]",
|
@@ -6477,11 +6541,11 @@
|
|
6477
6541
|
},
|
6478
6542
|
"v-switch/false-icon": {
|
6479
6543
|
"type": "string | (new () => any) | FunctionalComponent",
|
6480
|
-
"description": "
|
6544
|
+
"description": "The icon used when inactive"
|
6481
6545
|
},
|
6482
6546
|
"v-switch/true-icon": {
|
6483
6547
|
"type": "string | (new () => any) | FunctionalComponent",
|
6484
|
-
"description": "
|
6548
|
+
"description": "The icon used when active"
|
6485
6549
|
},
|
6486
6550
|
"v-switch/inset": {
|
6487
6551
|
"type": "boolean",
|
@@ -6797,7 +6861,7 @@
|
|
6797
6861
|
},
|
6798
6862
|
"v-text-field/error": {
|
6799
6863
|
"type": "boolean",
|
6800
|
-
"description": "
|
6864
|
+
"description": "Puts the input in a manual error state"
|
6801
6865
|
},
|
6802
6866
|
"v-text-field/density": {
|
6803
6867
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -6843,14 +6907,6 @@
|
|
6843
6907
|
"type": "boolean",
|
6844
6908
|
"description": "Enables autofocus"
|
6845
6909
|
},
|
6846
|
-
"v-text-field/hint": {
|
6847
|
-
"type": "string",
|
6848
|
-
"description": "Hint text"
|
6849
|
-
},
|
6850
|
-
"v-text-field/persistent-hint": {
|
6851
|
-
"type": "boolean",
|
6852
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))"
|
6853
|
-
},
|
6854
6910
|
"v-text-field/prefix": {
|
6855
6911
|
"type": "string",
|
6856
6912
|
"description": "Displays prefix text"
|
@@ -6879,6 +6935,14 @@
|
|
6879
6935
|
"type": "string | (new () => any) | FunctionalComponent",
|
6880
6936
|
"description": "Prepends an icon to the outnside the component's input, uses the same syntax as `v-icon`"
|
6881
6937
|
},
|
6938
|
+
"v-text-field/hint": {
|
6939
|
+
"type": "string",
|
6940
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
6941
|
+
},
|
6942
|
+
"v-text-field/persistent-hint": {
|
6943
|
+
"type": "boolean",
|
6944
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
6945
|
+
},
|
6882
6946
|
"v-text-field/messages": {
|
6883
6947
|
"type": "string | string[]",
|
6884
6948
|
"description": "Displays a list of messages or message if using a string"
|
@@ -6945,7 +7009,7 @@
|
|
6945
7009
|
},
|
6946
7010
|
"v-text-field/persistent-clear": {
|
6947
7011
|
"type": "boolean",
|
6948
|
-
"description": "
|
7012
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
6949
7013
|
},
|
6950
7014
|
"v-text-field/prepend-inner-icon": {
|
6951
7015
|
"type": "string | (new () => any) | FunctionalComponent",
|
@@ -6981,7 +7045,7 @@
|
|
6981
7045
|
},
|
6982
7046
|
"v-textarea/error": {
|
6983
7047
|
"type": "boolean",
|
6984
|
-
"description": "
|
7048
|
+
"description": "Puts the input in a manual error state"
|
6985
7049
|
},
|
6986
7050
|
"v-textarea/density": {
|
6987
7051
|
"type": "\"default\" | \"comfortable\" | \"compact\"",
|
@@ -6989,7 +7053,7 @@
|
|
6989
7053
|
},
|
6990
7054
|
"v-textarea/reverse": {
|
6991
7055
|
"type": "boolean",
|
6992
|
-
"description": "
|
7056
|
+
"description": "Reverses the orientation "
|
6993
7057
|
},
|
6994
7058
|
"v-textarea/rounded": {
|
6995
7059
|
"type": "string | number | boolean",
|
@@ -7027,14 +7091,6 @@
|
|
7027
7091
|
"type": "boolean",
|
7028
7092
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))"
|
7029
7093
|
},
|
7030
|
-
"v-textarea/hint": {
|
7031
|
-
"type": "string",
|
7032
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))"
|
7033
|
-
},
|
7034
|
-
"v-textarea/persistent-hint": {
|
7035
|
-
"type": "boolean",
|
7036
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))"
|
7037
|
-
},
|
7038
7094
|
"v-textarea/prefix": {
|
7039
7095
|
"type": "string",
|
7040
7096
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))"
|
@@ -7063,6 +7119,14 @@
|
|
7063
7119
|
"type": "string | (new () => any) | FunctionalComponent",
|
7064
7120
|
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`"
|
7065
7121
|
},
|
7122
|
+
"v-textarea/hint": {
|
7123
|
+
"type": "string",
|
7124
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property"
|
7125
|
+
},
|
7126
|
+
"v-textarea/persistent-hint": {
|
7127
|
+
"type": "boolean",
|
7128
|
+
"description": "Forces [hint](#props-hint) to always be visible"
|
7129
|
+
},
|
7066
7130
|
"v-textarea/messages": {
|
7067
7131
|
"type": "string | string[]",
|
7068
7132
|
"description": "Displays a list of messages or message if using a string"
|
@@ -7117,7 +7181,7 @@
|
|
7117
7181
|
},
|
7118
7182
|
"v-textarea/clear-icon": {
|
7119
7183
|
"type": "string | (new () => any) | FunctionalComponent",
|
7120
|
-
"description": "
|
7184
|
+
"description": "The icon used when the **clerable** prop is set to true"
|
7121
7185
|
},
|
7122
7186
|
"v-textarea/active": {
|
7123
7187
|
"type": "boolean",
|
@@ -7129,7 +7193,7 @@
|
|
7129
7193
|
},
|
7130
7194
|
"v-textarea/persistent-clear": {
|
7131
7195
|
"type": "boolean",
|
7132
|
-
"description": "
|
7196
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)"
|
7133
7197
|
},
|
7134
7198
|
"v-textarea/prepend-inner-icon": {
|
7135
7199
|
"type": "string | (new () => any) | FunctionalComponent",
|