@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
package/dist/json/web-types.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
3
3
|
"framework": "vue",
|
4
4
|
"name": "vuetify",
|
5
|
-
"version": "4.0.0-dev-
|
5
|
+
"version": "4.0.0-dev-20230422.0",
|
6
6
|
"contributions": {
|
7
7
|
"html": {
|
8
8
|
"types-syntax": "typescript",
|
@@ -569,6 +569,15 @@
|
|
569
569
|
"type": "string"
|
570
570
|
}
|
571
571
|
},
|
572
|
+
{
|
573
|
+
"name": "scrollBehavior",
|
574
|
+
"description": "MISSING DESCRIPTION",
|
575
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
576
|
+
"value": {
|
577
|
+
"kind": "expression",
|
578
|
+
"type": "string"
|
579
|
+
}
|
580
|
+
},
|
572
581
|
{
|
573
582
|
"name": "collapse",
|
574
583
|
"description": "Morphs the component into a collapsed state, reducing its maximum width.",
|
@@ -621,6 +630,24 @@
|
|
621
630
|
"kind": "expression",
|
622
631
|
"type": "string | number"
|
623
632
|
}
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"name": "scrollTarget",
|
636
|
+
"description": "MISSING DESCRIPTION",
|
637
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
638
|
+
"value": {
|
639
|
+
"kind": "expression",
|
640
|
+
"type": "string"
|
641
|
+
}
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"name": "scrollThreshold",
|
645
|
+
"description": "MISSING DESCRIPTION",
|
646
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
647
|
+
"value": {
|
648
|
+
"kind": "expression",
|
649
|
+
"type": "string | number"
|
650
|
+
}
|
624
651
|
}
|
625
652
|
],
|
626
653
|
"events": [
|
@@ -810,7 +837,7 @@
|
|
810
837
|
},
|
811
838
|
{
|
812
839
|
"name": "error",
|
813
|
-
"description": "
|
840
|
+
"description": "Puts the input in a manual error state",
|
814
841
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
815
842
|
"default": "false",
|
816
843
|
"value": {
|
@@ -831,7 +858,7 @@
|
|
831
858
|
},
|
832
859
|
{
|
833
860
|
"name": "reverse",
|
834
|
-
"description": "
|
861
|
+
"description": "Reverses the orientation ",
|
835
862
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
836
863
|
"default": "false",
|
837
864
|
"value": {
|
@@ -1182,26 +1209,6 @@
|
|
1182
1209
|
},
|
1183
1210
|
"type": "boolean"
|
1184
1211
|
},
|
1185
|
-
{
|
1186
|
-
"name": "hint",
|
1187
|
-
"description": "Hint text",
|
1188
|
-
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1189
|
-
"value": {
|
1190
|
-
"kind": "expression",
|
1191
|
-
"type": "string"
|
1192
|
-
}
|
1193
|
-
},
|
1194
|
-
{
|
1195
|
-
"name": "persistentHint",
|
1196
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))",
|
1197
|
-
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1198
|
-
"default": "false",
|
1199
|
-
"value": {
|
1200
|
-
"kind": "expression",
|
1201
|
-
"type": "boolean"
|
1202
|
-
},
|
1203
|
-
"type": "boolean"
|
1204
|
-
},
|
1205
1212
|
{
|
1206
1213
|
"name": "prefix",
|
1207
1214
|
"description": "Displays prefix text",
|
@@ -1269,6 +1276,26 @@
|
|
1269
1276
|
"type": "string | (new () => any) | FunctionalComponent"
|
1270
1277
|
}
|
1271
1278
|
},
|
1279
|
+
{
|
1280
|
+
"name": "hint",
|
1281
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
1282
|
+
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1283
|
+
"value": {
|
1284
|
+
"kind": "expression",
|
1285
|
+
"type": "string"
|
1286
|
+
}
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"name": "persistentHint",
|
1290
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
1291
|
+
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1292
|
+
"default": "false",
|
1293
|
+
"value": {
|
1294
|
+
"kind": "expression",
|
1295
|
+
"type": "boolean"
|
1296
|
+
},
|
1297
|
+
"type": "boolean"
|
1298
|
+
},
|
1272
1299
|
{
|
1273
1300
|
"name": "messages",
|
1274
1301
|
"description": "Displays a list of messages or message if using a string",
|
@@ -1382,7 +1409,7 @@
|
|
1382
1409
|
},
|
1383
1410
|
{
|
1384
1411
|
"name": "clearIcon",
|
1385
|
-
"description": "
|
1412
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
1386
1413
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1387
1414
|
"default": "'$clear'",
|
1388
1415
|
"value": {
|
@@ -1403,7 +1430,7 @@
|
|
1403
1430
|
},
|
1404
1431
|
{
|
1405
1432
|
"name": "persistentClear",
|
1406
|
-
"description": "
|
1433
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
1407
1434
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
1408
1435
|
"default": "false",
|
1409
1436
|
"value": {
|
@@ -1505,6 +1532,17 @@
|
|
1505
1532
|
}
|
1506
1533
|
]
|
1507
1534
|
},
|
1535
|
+
{
|
1536
|
+
"name": "update:focused",
|
1537
|
+
"description": "Emitted when the input is focused or blurred",
|
1538
|
+
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#events",
|
1539
|
+
"arguments": [
|
1540
|
+
{
|
1541
|
+
"name": "argument",
|
1542
|
+
"type": "[boolean]"
|
1543
|
+
}
|
1544
|
+
]
|
1545
|
+
},
|
1508
1546
|
{
|
1509
1547
|
"name": "click:clear",
|
1510
1548
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-autocomplete.json))",
|
@@ -4100,7 +4138,17 @@
|
|
4100
4138
|
{
|
4101
4139
|
"name": "loader",
|
4102
4140
|
"description": "MISSING DESCRIPTION",
|
4103
|
-
"doc-url": "https://vuetifyjs.com/api/v-card#slots"
|
4141
|
+
"doc-url": "https://vuetifyjs.com/api/v-card#slots",
|
4142
|
+
"vue-properties": [
|
4143
|
+
{
|
4144
|
+
"name": "color",
|
4145
|
+
"type": "string"
|
4146
|
+
},
|
4147
|
+
{
|
4148
|
+
"name": "isActive",
|
4149
|
+
"type": "boolean"
|
4150
|
+
}
|
4151
|
+
]
|
4104
4152
|
},
|
4105
4153
|
{
|
4106
4154
|
"name": "image",
|
@@ -4724,7 +4772,7 @@
|
|
4724
4772
|
},
|
4725
4773
|
{
|
4726
4774
|
"name": "error",
|
4727
|
-
"description": "
|
4775
|
+
"description": "Puts the input in a manual error state",
|
4728
4776
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
4729
4777
|
"default": "false",
|
4730
4778
|
"value": {
|
@@ -4781,7 +4829,7 @@
|
|
4781
4829
|
},
|
4782
4830
|
{
|
4783
4831
|
"name": "id",
|
4784
|
-
"description": "
|
4832
|
+
"description": "Sets the DOM id on the component",
|
4785
4833
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
4786
4834
|
"value": {
|
4787
4835
|
"kind": "expression",
|
@@ -4846,6 +4894,26 @@
|
|
4846
4894
|
"type": "string | (new () => any) | FunctionalComponent"
|
4847
4895
|
}
|
4848
4896
|
},
|
4897
|
+
{
|
4898
|
+
"name": "hint",
|
4899
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
4900
|
+
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
4901
|
+
"value": {
|
4902
|
+
"kind": "expression",
|
4903
|
+
"type": "string"
|
4904
|
+
}
|
4905
|
+
},
|
4906
|
+
{
|
4907
|
+
"name": "persistentHint",
|
4908
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
4909
|
+
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
4910
|
+
"default": "false",
|
4911
|
+
"value": {
|
4912
|
+
"kind": "expression",
|
4913
|
+
"type": "boolean"
|
4914
|
+
},
|
4915
|
+
"type": "boolean"
|
4916
|
+
},
|
4849
4917
|
{
|
4850
4918
|
"name": "messages",
|
4851
4919
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))",
|
@@ -4888,7 +4956,7 @@
|
|
4888
4956
|
},
|
4889
4957
|
{
|
4890
4958
|
"name": "readonly",
|
4891
|
-
"description": "
|
4959
|
+
"description": "Puts input in readonly state",
|
4892
4960
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox#props",
|
4893
4961
|
"default": "false",
|
4894
4962
|
"value": {
|
@@ -5284,7 +5352,7 @@
|
|
5284
5352
|
},
|
5285
5353
|
{
|
5286
5354
|
"name": "error",
|
5287
|
-
"description": "
|
5355
|
+
"description": "Puts the input in a manual error state",
|
5288
5356
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5289
5357
|
"default": "false",
|
5290
5358
|
"value": {
|
@@ -5341,7 +5409,7 @@
|
|
5341
5409
|
},
|
5342
5410
|
{
|
5343
5411
|
"name": "id",
|
5344
|
-
"description": "
|
5412
|
+
"description": "Sets the DOM id on the component",
|
5345
5413
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5346
5414
|
"value": {
|
5347
5415
|
"kind": "expression",
|
@@ -5370,7 +5438,7 @@
|
|
5370
5438
|
},
|
5371
5439
|
{
|
5372
5440
|
"name": "multiple",
|
5373
|
-
"description": "
|
5441
|
+
"description": "Changes select to multiple. Accepts array for value",
|
5374
5442
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5375
5443
|
"default": "false",
|
5376
5444
|
"value": {
|
@@ -5390,7 +5458,7 @@
|
|
5390
5458
|
},
|
5391
5459
|
{
|
5392
5460
|
"name": "readonly",
|
5393
|
-
"description": "
|
5461
|
+
"description": "Puts input in readonly state",
|
5394
5462
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5395
5463
|
"default": "false",
|
5396
5464
|
"value": {
|
@@ -5462,7 +5530,7 @@
|
|
5462
5530
|
},
|
5463
5531
|
{
|
5464
5532
|
"name": "falseIcon",
|
5465
|
-
"description": "
|
5533
|
+
"description": "The icon used when inactive",
|
5466
5534
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5467
5535
|
"default": "'$checkboxOff'",
|
5468
5536
|
"value": {
|
@@ -5472,7 +5540,7 @@
|
|
5472
5540
|
},
|
5473
5541
|
{
|
5474
5542
|
"name": "trueIcon",
|
5475
|
-
"description": "
|
5543
|
+
"description": "The icon used when active",
|
5476
5544
|
"doc-url": "https://vuetifyjs.com/api/v-checkbox-btn#props",
|
5477
5545
|
"default": "'$checkboxOn'",
|
5478
5546
|
"value": {
|
@@ -6713,7 +6781,7 @@
|
|
6713
6781
|
},
|
6714
6782
|
{
|
6715
6783
|
"name": "error",
|
6716
|
-
"description": "
|
6784
|
+
"description": "Puts the input in a manual error state",
|
6717
6785
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
6718
6786
|
"default": "false",
|
6719
6787
|
"value": {
|
@@ -6734,7 +6802,7 @@
|
|
6734
6802
|
},
|
6735
6803
|
{
|
6736
6804
|
"name": "reverse",
|
6737
|
-
"description": "
|
6805
|
+
"description": "Reverses the orientation ",
|
6738
6806
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
6739
6807
|
"default": "false",
|
6740
6808
|
"value": {
|
@@ -7076,26 +7144,6 @@
|
|
7076
7144
|
},
|
7077
7145
|
"type": "boolean"
|
7078
7146
|
},
|
7079
|
-
{
|
7080
|
-
"name": "hint",
|
7081
|
-
"description": "Hint text",
|
7082
|
-
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7083
|
-
"value": {
|
7084
|
-
"kind": "expression",
|
7085
|
-
"type": "string"
|
7086
|
-
}
|
7087
|
-
},
|
7088
|
-
{
|
7089
|
-
"name": "persistentHint",
|
7090
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))",
|
7091
|
-
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7092
|
-
"default": "false",
|
7093
|
-
"value": {
|
7094
|
-
"kind": "expression",
|
7095
|
-
"type": "boolean"
|
7096
|
-
},
|
7097
|
-
"type": "boolean"
|
7098
|
-
},
|
7099
7147
|
{
|
7100
7148
|
"name": "prefix",
|
7101
7149
|
"description": "Displays prefix text",
|
@@ -7163,6 +7211,26 @@
|
|
7163
7211
|
"type": "string | (new () => any) | FunctionalComponent"
|
7164
7212
|
}
|
7165
7213
|
},
|
7214
|
+
{
|
7215
|
+
"name": "hint",
|
7216
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
7217
|
+
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7218
|
+
"value": {
|
7219
|
+
"kind": "expression",
|
7220
|
+
"type": "string"
|
7221
|
+
}
|
7222
|
+
},
|
7223
|
+
{
|
7224
|
+
"name": "persistentHint",
|
7225
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
7226
|
+
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7227
|
+
"default": "false",
|
7228
|
+
"value": {
|
7229
|
+
"kind": "expression",
|
7230
|
+
"type": "boolean"
|
7231
|
+
},
|
7232
|
+
"type": "boolean"
|
7233
|
+
},
|
7166
7234
|
{
|
7167
7235
|
"name": "messages",
|
7168
7236
|
"description": "Displays a list of messages or message if using a string",
|
@@ -7276,7 +7344,7 @@
|
|
7276
7344
|
},
|
7277
7345
|
{
|
7278
7346
|
"name": "clearIcon",
|
7279
|
-
"description": "
|
7347
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
7280
7348
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7281
7349
|
"default": "'$clear'",
|
7282
7350
|
"value": {
|
@@ -7297,7 +7365,7 @@
|
|
7297
7365
|
},
|
7298
7366
|
{
|
7299
7367
|
"name": "persistentClear",
|
7300
|
-
"description": "
|
7368
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
7301
7369
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
7302
7370
|
"default": "false",
|
7303
7371
|
"value": {
|
@@ -7408,6 +7476,17 @@
|
|
7408
7476
|
}
|
7409
7477
|
]
|
7410
7478
|
},
|
7479
|
+
{
|
7480
|
+
"name": "update:focused",
|
7481
|
+
"description": "Emitted when the input is focused or blurred",
|
7482
|
+
"doc-url": "https://vuetifyjs.com/api/v-combobox#events",
|
7483
|
+
"arguments": [
|
7484
|
+
{
|
7485
|
+
"name": "argument",
|
7486
|
+
"type": "[boolean]"
|
7487
|
+
}
|
7488
|
+
]
|
7489
|
+
},
|
7411
7490
|
{
|
7412
7491
|
"name": "click:clear",
|
7413
7492
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-combobox.json))",
|
@@ -9023,6 +9102,15 @@
|
|
9023
9102
|
"type": "any[]"
|
9024
9103
|
}
|
9025
9104
|
},
|
9105
|
+
{
|
9106
|
+
"name": "search",
|
9107
|
+
"description": "Text input used to filter items",
|
9108
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-server#props",
|
9109
|
+
"value": {
|
9110
|
+
"kind": "expression",
|
9111
|
+
"type": "string"
|
9112
|
+
}
|
9113
|
+
},
|
9026
9114
|
{
|
9027
9115
|
"name": "hideNoData",
|
9028
9116
|
"description": "MISSING DESCRIPTION",
|
@@ -11887,7 +11975,7 @@
|
|
11887
11975
|
},
|
11888
11976
|
{
|
11889
11977
|
"name": "error",
|
11890
|
-
"description": "
|
11978
|
+
"description": "Puts the input in a manual error state",
|
11891
11979
|
"doc-url": "https://vuetifyjs.com/api/v-field#props",
|
11892
11980
|
"default": "false",
|
11893
11981
|
"value": {
|
@@ -11898,7 +11986,7 @@
|
|
11898
11986
|
},
|
11899
11987
|
{
|
11900
11988
|
"name": "reverse",
|
11901
|
-
"description": "
|
11989
|
+
"description": "Reverses the orientation ",
|
11902
11990
|
"doc-url": "https://vuetifyjs.com/api/v-field#props",
|
11903
11991
|
"default": "false",
|
11904
11992
|
"value": {
|
@@ -12016,7 +12104,7 @@
|
|
12016
12104
|
},
|
12017
12105
|
{
|
12018
12106
|
"name": "clearIcon",
|
12019
|
-
"description": "
|
12107
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
12020
12108
|
"doc-url": "https://vuetifyjs.com/api/v-field#props",
|
12021
12109
|
"default": "'$clear'",
|
12022
12110
|
"value": {
|
@@ -12048,7 +12136,7 @@
|
|
12048
12136
|
},
|
12049
12137
|
{
|
12050
12138
|
"name": "persistentClear",
|
12051
|
-
"description": "
|
12139
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
12052
12140
|
"doc-url": "https://vuetifyjs.com/api/v-field#props",
|
12053
12141
|
"default": "false",
|
12054
12142
|
"value": {
|
@@ -12101,19 +12189,19 @@
|
|
12101
12189
|
]
|
12102
12190
|
},
|
12103
12191
|
{
|
12104
|
-
"name": "
|
12105
|
-
"description": "
|
12192
|
+
"name": "update:focused",
|
12193
|
+
"description": "Emitted when the input is focused or blurred",
|
12106
12194
|
"doc-url": "https://vuetifyjs.com/api/v-field#events",
|
12107
12195
|
"arguments": [
|
12108
12196
|
{
|
12109
12197
|
"name": "argument",
|
12110
|
-
"type": "
|
12198
|
+
"type": "[boolean]"
|
12111
12199
|
}
|
12112
12200
|
]
|
12113
12201
|
},
|
12114
12202
|
{
|
12115
|
-
"name": "click:
|
12116
|
-
"description": "
|
12203
|
+
"name": "click:clear",
|
12204
|
+
"description": "Emitted when clearable icon clicked",
|
12117
12205
|
"doc-url": "https://vuetifyjs.com/api/v-field#events",
|
12118
12206
|
"arguments": [
|
12119
12207
|
{
|
@@ -12123,8 +12211,8 @@
|
|
12123
12211
|
]
|
12124
12212
|
},
|
12125
12213
|
{
|
12126
|
-
"name": "click:
|
12127
|
-
"description": "
|
12214
|
+
"name": "click:appendInner",
|
12215
|
+
"description": "Emitted when appended inner icon is clicked",
|
12128
12216
|
"doc-url": "https://vuetifyjs.com/api/v-field#events",
|
12129
12217
|
"arguments": [
|
12130
12218
|
{
|
@@ -12134,13 +12222,13 @@
|
|
12134
12222
|
]
|
12135
12223
|
},
|
12136
12224
|
{
|
12137
|
-
"name": "
|
12138
|
-
"description": "
|
12225
|
+
"name": "click:prependInner",
|
12226
|
+
"description": "Emitted when prepended inner icon is clicked",
|
12139
12227
|
"doc-url": "https://vuetifyjs.com/api/v-field#events",
|
12140
12228
|
"arguments": [
|
12141
12229
|
{
|
12142
12230
|
"name": "argument",
|
12143
|
-
"type": "
|
12231
|
+
"type": "never"
|
12144
12232
|
}
|
12145
12233
|
]
|
12146
12234
|
}
|
@@ -12148,17 +12236,17 @@
|
|
12148
12236
|
"slots": [
|
12149
12237
|
{
|
12150
12238
|
"name": "clear",
|
12151
|
-
"description": "
|
12239
|
+
"description": "Slot for custom clear icon (displayed when the **clearable** prop is equal to true)",
|
12152
12240
|
"doc-url": "https://vuetifyjs.com/api/v-field#slots"
|
12153
12241
|
},
|
12154
12242
|
{
|
12155
12243
|
"name": "prepend-inner",
|
12156
|
-
"description": "
|
12244
|
+
"description": "Slot that is prepended to the input",
|
12157
12245
|
"doc-url": "https://vuetifyjs.com/api/v-field#slots"
|
12158
12246
|
},
|
12159
12247
|
{
|
12160
12248
|
"name": "append-inner",
|
12161
|
-
"description": "
|
12249
|
+
"description": "Slot that is appended to the input",
|
12162
12250
|
"doc-url": "https://vuetifyjs.com/api/v-field#slots"
|
12163
12251
|
},
|
12164
12252
|
{
|
@@ -12168,7 +12256,7 @@
|
|
12168
12256
|
},
|
12169
12257
|
{
|
12170
12258
|
"name": "loader",
|
12171
|
-
"description": "
|
12259
|
+
"description": "Slot for custom loader (displayed when **loading** prop is equal to true)",
|
12172
12260
|
"doc-url": "https://vuetifyjs.com/api/v-field#slots",
|
12173
12261
|
"vue-properties": [
|
12174
12262
|
{
|
@@ -12284,7 +12372,7 @@
|
|
12284
12372
|
},
|
12285
12373
|
{
|
12286
12374
|
"name": "error",
|
12287
|
-
"description": "
|
12375
|
+
"description": "Puts the input in a manual error state",
|
12288
12376
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12289
12377
|
"default": "false",
|
12290
12378
|
"value": {
|
@@ -12305,7 +12393,7 @@
|
|
12305
12393
|
},
|
12306
12394
|
{
|
12307
12395
|
"name": "reverse",
|
12308
|
-
"description": "
|
12396
|
+
"description": "Reverses the orientation ",
|
12309
12397
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12310
12398
|
"default": "false",
|
12311
12399
|
"value": {
|
@@ -12413,43 +12501,43 @@
|
|
12413
12501
|
"type": "boolean"
|
12414
12502
|
},
|
12415
12503
|
{
|
12416
|
-
"name": "
|
12417
|
-
"description": "
|
12504
|
+
"name": "appendIcon",
|
12505
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot",
|
12418
12506
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12419
12507
|
"value": {
|
12420
12508
|
"kind": "expression",
|
12421
|
-
"type": "string"
|
12509
|
+
"type": "string | (new () => any) | FunctionalComponent"
|
12422
12510
|
}
|
12423
12511
|
},
|
12424
12512
|
{
|
12425
|
-
"name": "
|
12426
|
-
"description": "
|
12513
|
+
"name": "prependIcon",
|
12514
|
+
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`",
|
12427
12515
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12428
|
-
"default": "
|
12516
|
+
"default": "'$file'",
|
12429
12517
|
"value": {
|
12430
12518
|
"kind": "expression",
|
12431
|
-
"type": "
|
12432
|
-
}
|
12433
|
-
"type": "boolean"
|
12519
|
+
"type": "string | (new () => any) | FunctionalComponent"
|
12520
|
+
}
|
12434
12521
|
},
|
12435
12522
|
{
|
12436
|
-
"name": "
|
12437
|
-
"description": "
|
12523
|
+
"name": "hint",
|
12524
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
12438
12525
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12439
12526
|
"value": {
|
12440
12527
|
"kind": "expression",
|
12441
|
-
"type": "string
|
12528
|
+
"type": "string"
|
12442
12529
|
}
|
12443
12530
|
},
|
12444
12531
|
{
|
12445
|
-
"name": "
|
12446
|
-
"description": "
|
12532
|
+
"name": "persistentHint",
|
12533
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
12447
12534
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12448
|
-
"default": "
|
12535
|
+
"default": "false",
|
12449
12536
|
"value": {
|
12450
12537
|
"kind": "expression",
|
12451
|
-
"type": "
|
12452
|
-
}
|
12538
|
+
"type": "boolean"
|
12539
|
+
},
|
12540
|
+
"type": "boolean"
|
12453
12541
|
},
|
12454
12542
|
{
|
12455
12543
|
"name": "messages",
|
@@ -12582,7 +12670,7 @@
|
|
12582
12670
|
},
|
12583
12671
|
{
|
12584
12672
|
"name": "clearIcon",
|
12585
|
-
"description": "
|
12673
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
12586
12674
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12587
12675
|
"default": "'$clear'",
|
12588
12676
|
"value": {
|
@@ -12614,7 +12702,7 @@
|
|
12614
12702
|
},
|
12615
12703
|
{
|
12616
12704
|
"name": "persistentClear",
|
12617
|
-
"description": "
|
12705
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
12618
12706
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
12619
12707
|
"default": "false",
|
12620
12708
|
"value": {
|
@@ -12729,6 +12817,17 @@
|
|
12729
12817
|
}
|
12730
12818
|
]
|
12731
12819
|
},
|
12820
|
+
{
|
12821
|
+
"name": "update:focused",
|
12822
|
+
"description": "Emitted when the input is focused or blurred",
|
12823
|
+
"doc-url": "https://vuetifyjs.com/api/v-file-input#events",
|
12824
|
+
"arguments": [
|
12825
|
+
{
|
12826
|
+
"name": "argument",
|
12827
|
+
"type": "[boolean]"
|
12828
|
+
}
|
12829
|
+
]
|
12830
|
+
},
|
12732
12831
|
{
|
12733
12832
|
"name": "click:clear",
|
12734
12833
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-file-input.json))",
|
@@ -12972,17 +13071,17 @@
|
|
12972
13071
|
},
|
12973
13072
|
{
|
12974
13073
|
"name": "clear",
|
12975
|
-
"description": "
|
13074
|
+
"description": "Slot for custom clear icon (displayed when the **clearable** prop is equal to true)",
|
12976
13075
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#slots"
|
12977
13076
|
},
|
12978
13077
|
{
|
12979
13078
|
"name": "prepend-inner",
|
12980
|
-
"description": "
|
13079
|
+
"description": "Slot that is prepended to the input",
|
12981
13080
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#slots"
|
12982
13081
|
},
|
12983
13082
|
{
|
12984
13083
|
"name": "append-inner",
|
12985
|
-
"description": "
|
13084
|
+
"description": "Slot that is appended to the input",
|
12986
13085
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#slots"
|
12987
13086
|
},
|
12988
13087
|
{
|
@@ -12992,7 +13091,7 @@
|
|
12992
13091
|
},
|
12993
13092
|
{
|
12994
13093
|
"name": "loader",
|
12995
|
-
"description": "
|
13094
|
+
"description": "Slot for custom loader (displayed when **loading** prop is equal to true)",
|
12996
13095
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#slots",
|
12997
13096
|
"vue-properties": [
|
12998
13097
|
{
|
@@ -13706,6 +13805,26 @@
|
|
13706
13805
|
"type": "string | (new () => any) | FunctionalComponent"
|
13707
13806
|
}
|
13708
13807
|
},
|
13808
|
+
{
|
13809
|
+
"name": "hint",
|
13810
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
13811
|
+
"doc-url": "https://vuetifyjs.com/api/v-input#props",
|
13812
|
+
"value": {
|
13813
|
+
"kind": "expression",
|
13814
|
+
"type": "string"
|
13815
|
+
}
|
13816
|
+
},
|
13817
|
+
{
|
13818
|
+
"name": "persistentHint",
|
13819
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
13820
|
+
"doc-url": "https://vuetifyjs.com/api/v-input#props",
|
13821
|
+
"default": "false",
|
13822
|
+
"value": {
|
13823
|
+
"kind": "expression",
|
13824
|
+
"type": "boolean"
|
13825
|
+
},
|
13826
|
+
"type": "boolean"
|
13827
|
+
},
|
13709
13828
|
{
|
13710
13829
|
"name": "messages",
|
13711
13830
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))",
|
@@ -13840,9 +13959,20 @@
|
|
13840
13959
|
"type": "never"
|
13841
13960
|
}
|
13842
13961
|
]
|
13843
|
-
}
|
13844
|
-
|
13845
|
-
|
13962
|
+
},
|
13963
|
+
{
|
13964
|
+
"name": "update:focused",
|
13965
|
+
"description": "MISSING DESCRIPTION",
|
13966
|
+
"doc-url": "https://vuetifyjs.com/api/v-input#events",
|
13967
|
+
"arguments": [
|
13968
|
+
{
|
13969
|
+
"name": "argument",
|
13970
|
+
"type": "never"
|
13971
|
+
}
|
13972
|
+
]
|
13973
|
+
}
|
13974
|
+
],
|
13975
|
+
"slots": [
|
13846
13976
|
{
|
13847
13977
|
"name": "default",
|
13848
13978
|
"description": "The default Vue slot.",
|
@@ -18034,7 +18164,7 @@
|
|
18034
18164
|
},
|
18035
18165
|
{
|
18036
18166
|
"name": "error",
|
18037
|
-
"description": "
|
18167
|
+
"description": "Puts the input in a manual error state",
|
18038
18168
|
"doc-url": "https://vuetifyjs.com/api/v-radio#props",
|
18039
18169
|
"default": "false",
|
18040
18170
|
"value": {
|
@@ -18091,7 +18221,7 @@
|
|
18091
18221
|
},
|
18092
18222
|
{
|
18093
18223
|
"name": "id",
|
18094
|
-
"description": "
|
18224
|
+
"description": "Sets the DOM id on the component",
|
18095
18225
|
"doc-url": "https://vuetifyjs.com/api/v-radio#props",
|
18096
18226
|
"value": {
|
18097
18227
|
"kind": "expression",
|
@@ -18120,7 +18250,7 @@
|
|
18120
18250
|
},
|
18121
18251
|
{
|
18122
18252
|
"name": "multiple",
|
18123
|
-
"description": "
|
18253
|
+
"description": "Changes select to multiple. Accepts array for value",
|
18124
18254
|
"doc-url": "https://vuetifyjs.com/api/v-radio#props",
|
18125
18255
|
"default": "false",
|
18126
18256
|
"value": {
|
@@ -18140,7 +18270,7 @@
|
|
18140
18270
|
},
|
18141
18271
|
{
|
18142
18272
|
"name": "readonly",
|
18143
|
-
"description": "
|
18273
|
+
"description": "Puts input in readonly state",
|
18144
18274
|
"doc-url": "https://vuetifyjs.com/api/v-radio#props",
|
18145
18275
|
"default": "false",
|
18146
18276
|
"value": {
|
@@ -18291,7 +18421,7 @@
|
|
18291
18421
|
},
|
18292
18422
|
{
|
18293
18423
|
"name": "error",
|
18294
|
-
"description": "
|
18424
|
+
"description": "Puts the input in a manual error state",
|
18295
18425
|
"doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
|
18296
18426
|
"default": "false",
|
18297
18427
|
"value": {
|
@@ -18349,7 +18479,7 @@
|
|
18349
18479
|
},
|
18350
18480
|
{
|
18351
18481
|
"name": "id",
|
18352
|
-
"description": "
|
18482
|
+
"description": "Sets the DOM id on the component",
|
18353
18483
|
"doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
|
18354
18484
|
"value": {
|
18355
18485
|
"kind": "expression",
|
@@ -18403,6 +18533,26 @@
|
|
18403
18533
|
"type": "string | (new () => any) | FunctionalComponent"
|
18404
18534
|
}
|
18405
18535
|
},
|
18536
|
+
{
|
18537
|
+
"name": "hint",
|
18538
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
18539
|
+
"doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
|
18540
|
+
"value": {
|
18541
|
+
"kind": "expression",
|
18542
|
+
"type": "string"
|
18543
|
+
}
|
18544
|
+
},
|
18545
|
+
{
|
18546
|
+
"name": "persistentHint",
|
18547
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
18548
|
+
"doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
|
18549
|
+
"default": "false",
|
18550
|
+
"value": {
|
18551
|
+
"kind": "expression",
|
18552
|
+
"type": "boolean"
|
18553
|
+
},
|
18554
|
+
"type": "boolean"
|
18555
|
+
},
|
18406
18556
|
{
|
18407
18557
|
"name": "messages",
|
18408
18558
|
"description": "Displays a list of messages or message if using a string",
|
@@ -18445,7 +18595,7 @@
|
|
18445
18595
|
},
|
18446
18596
|
{
|
18447
18597
|
"name": "readonly",
|
18448
|
-
"description": "
|
18598
|
+
"description": "Puts input in readonly state",
|
18449
18599
|
"doc-url": "https://vuetifyjs.com/api/v-radio-group#props",
|
18450
18600
|
"default": "false",
|
18451
18601
|
"value": {
|
@@ -18579,6 +18729,17 @@
|
|
18579
18729
|
"type": "never"
|
18580
18730
|
}
|
18581
18731
|
]
|
18732
|
+
},
|
18733
|
+
{
|
18734
|
+
"name": "update:focused",
|
18735
|
+
"description": "MISSING DESCRIPTION",
|
18736
|
+
"doc-url": "https://vuetifyjs.com/api/v-radio-group#events",
|
18737
|
+
"arguments": [
|
18738
|
+
{
|
18739
|
+
"name": "argument",
|
18740
|
+
"type": "never"
|
18741
|
+
}
|
18742
|
+
]
|
18582
18743
|
}
|
18583
18744
|
],
|
18584
18745
|
"slots": [
|
@@ -18920,6 +19081,26 @@
|
|
18920
19081
|
"type": "string | (new () => any) | FunctionalComponent"
|
18921
19082
|
}
|
18922
19083
|
},
|
19084
|
+
{
|
19085
|
+
"name": "hint",
|
19086
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
19087
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#props",
|
19088
|
+
"value": {
|
19089
|
+
"kind": "expression",
|
19090
|
+
"type": "string"
|
19091
|
+
}
|
19092
|
+
},
|
19093
|
+
{
|
19094
|
+
"name": "persistentHint",
|
19095
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
19096
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#props",
|
19097
|
+
"default": "false",
|
19098
|
+
"value": {
|
19099
|
+
"kind": "expression",
|
19100
|
+
"type": "boolean"
|
19101
|
+
},
|
19102
|
+
"type": "boolean"
|
19103
|
+
},
|
18923
19104
|
{
|
18924
19105
|
"name": "messages",
|
18925
19106
|
"description": "Displays a list of messages or message if using a string",
|
@@ -19192,6 +19373,28 @@
|
|
19192
19373
|
"type": "[boolean]"
|
19193
19374
|
}
|
19194
19375
|
]
|
19376
|
+
},
|
19377
|
+
{
|
19378
|
+
"name": "end",
|
19379
|
+
"description": "MISSING DESCRIPTION",
|
19380
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#events",
|
19381
|
+
"arguments": [
|
19382
|
+
{
|
19383
|
+
"name": "argument",
|
19384
|
+
"type": "[[number, number]]"
|
19385
|
+
}
|
19386
|
+
]
|
19387
|
+
},
|
19388
|
+
{
|
19389
|
+
"name": "start",
|
19390
|
+
"description": "MISSING DESCRIPTION",
|
19391
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#events",
|
19392
|
+
"arguments": [
|
19393
|
+
{
|
19394
|
+
"name": "argument",
|
19395
|
+
"type": "[[number, number]]"
|
19396
|
+
}
|
19397
|
+
]
|
19195
19398
|
}
|
19196
19399
|
],
|
19197
19400
|
"slots": [
|
@@ -20511,7 +20714,7 @@
|
|
20511
20714
|
},
|
20512
20715
|
{
|
20513
20716
|
"name": "error",
|
20514
|
-
"description": "
|
20717
|
+
"description": "Puts the input in a manual error state",
|
20515
20718
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
20516
20719
|
"default": "false",
|
20517
20720
|
"value": {
|
@@ -20532,7 +20735,7 @@
|
|
20532
20735
|
},
|
20533
20736
|
{
|
20534
20737
|
"name": "reverse",
|
20535
|
-
"description": "
|
20738
|
+
"description": "Reverses the orientation ",
|
20536
20739
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
20537
20740
|
"default": "false",
|
20538
20741
|
"value": {
|
@@ -20825,26 +21028,6 @@
|
|
20825
21028
|
},
|
20826
21029
|
"type": "boolean"
|
20827
21030
|
},
|
20828
|
-
{
|
20829
|
-
"name": "hint",
|
20830
|
-
"description": "Hint text",
|
20831
|
-
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
20832
|
-
"value": {
|
20833
|
-
"kind": "expression",
|
20834
|
-
"type": "string"
|
20835
|
-
}
|
20836
|
-
},
|
20837
|
-
{
|
20838
|
-
"name": "persistentHint",
|
20839
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))",
|
20840
|
-
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
20841
|
-
"default": "false",
|
20842
|
-
"value": {
|
20843
|
-
"kind": "expression",
|
20844
|
-
"type": "boolean"
|
20845
|
-
},
|
20846
|
-
"type": "boolean"
|
20847
|
-
},
|
20848
21031
|
{
|
20849
21032
|
"name": "prefix",
|
20850
21033
|
"description": "Displays prefix text",
|
@@ -20912,6 +21095,26 @@
|
|
20912
21095
|
"type": "string | (new () => any) | FunctionalComponent"
|
20913
21096
|
}
|
20914
21097
|
},
|
21098
|
+
{
|
21099
|
+
"name": "hint",
|
21100
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
21101
|
+
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
21102
|
+
"value": {
|
21103
|
+
"kind": "expression",
|
21104
|
+
"type": "string"
|
21105
|
+
}
|
21106
|
+
},
|
21107
|
+
{
|
21108
|
+
"name": "persistentHint",
|
21109
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
21110
|
+
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
21111
|
+
"default": "false",
|
21112
|
+
"value": {
|
21113
|
+
"kind": "expression",
|
21114
|
+
"type": "boolean"
|
21115
|
+
},
|
21116
|
+
"type": "boolean"
|
21117
|
+
},
|
20915
21118
|
{
|
20916
21119
|
"name": "messages",
|
20917
21120
|
"description": "Displays a list of messages or message if using a string",
|
@@ -21025,7 +21228,7 @@
|
|
21025
21228
|
},
|
21026
21229
|
{
|
21027
21230
|
"name": "clearIcon",
|
21028
|
-
"description": "
|
21231
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
21029
21232
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
21030
21233
|
"default": "'$clear'",
|
21031
21234
|
"value": {
|
@@ -21046,7 +21249,7 @@
|
|
21046
21249
|
},
|
21047
21250
|
{
|
21048
21251
|
"name": "persistentClear",
|
21049
|
-
"description": "
|
21252
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
21050
21253
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
21051
21254
|
"default": "false",
|
21052
21255
|
"value": {
|
@@ -21148,6 +21351,17 @@
|
|
21148
21351
|
}
|
21149
21352
|
]
|
21150
21353
|
},
|
21354
|
+
{
|
21355
|
+
"name": "update:focused",
|
21356
|
+
"description": "Emitted when the input is focused or blurred",
|
21357
|
+
"doc-url": "https://vuetifyjs.com/api/v-select#events",
|
21358
|
+
"arguments": [
|
21359
|
+
{
|
21360
|
+
"name": "argument",
|
21361
|
+
"type": "[boolean]"
|
21362
|
+
}
|
21363
|
+
]
|
21364
|
+
},
|
21151
21365
|
{
|
21152
21366
|
"name": "click:clear",
|
21153
21367
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-select.json))",
|
@@ -21485,7 +21699,7 @@
|
|
21485
21699
|
},
|
21486
21700
|
{
|
21487
21701
|
"name": "error",
|
21488
|
-
"description": "
|
21702
|
+
"description": "Puts the input in a manual error state",
|
21489
21703
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21490
21704
|
"default": "false",
|
21491
21705
|
"value": {
|
@@ -21542,7 +21756,7 @@
|
|
21542
21756
|
},
|
21543
21757
|
{
|
21544
21758
|
"name": "id",
|
21545
|
-
"description": "
|
21759
|
+
"description": "Sets the DOM id on the component",
|
21546
21760
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21547
21761
|
"value": {
|
21548
21762
|
"kind": "expression",
|
@@ -21571,7 +21785,7 @@
|
|
21571
21785
|
},
|
21572
21786
|
{
|
21573
21787
|
"name": "multiple",
|
21574
|
-
"description": "
|
21788
|
+
"description": "Changes select to multiple. Accepts array for value",
|
21575
21789
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21576
21790
|
"default": "false",
|
21577
21791
|
"value": {
|
@@ -21591,7 +21805,7 @@
|
|
21591
21805
|
},
|
21592
21806
|
{
|
21593
21807
|
"name": "readonly",
|
21594
|
-
"description": "
|
21808
|
+
"description": "Puts input in readonly state",
|
21595
21809
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21596
21810
|
"default": "false",
|
21597
21811
|
"value": {
|
@@ -21642,7 +21856,7 @@
|
|
21642
21856
|
},
|
21643
21857
|
{
|
21644
21858
|
"name": "falseIcon",
|
21645
|
-
"description": "
|
21859
|
+
"description": "The icon used when inactive",
|
21646
21860
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21647
21861
|
"value": {
|
21648
21862
|
"kind": "expression",
|
@@ -21651,7 +21865,7 @@
|
|
21651
21865
|
},
|
21652
21866
|
{
|
21653
21867
|
"name": "trueIcon",
|
21654
|
-
"description": "
|
21868
|
+
"description": "The icon used when active",
|
21655
21869
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control#props",
|
21656
21870
|
"value": {
|
21657
21871
|
"kind": "expression",
|
@@ -21751,7 +21965,7 @@
|
|
21751
21965
|
},
|
21752
21966
|
{
|
21753
21967
|
"name": "error",
|
21754
|
-
"description": "
|
21968
|
+
"description": "Puts the input in a manual error state",
|
21755
21969
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21756
21970
|
"default": "false",
|
21757
21971
|
"value": {
|
@@ -21799,7 +22013,7 @@
|
|
21799
22013
|
},
|
21800
22014
|
{
|
21801
22015
|
"name": "id",
|
21802
|
-
"description": "
|
22016
|
+
"description": "Sets the DOM id on the component",
|
21803
22017
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21804
22018
|
"value": {
|
21805
22019
|
"kind": "expression",
|
@@ -21819,7 +22033,7 @@
|
|
21819
22033
|
},
|
21820
22034
|
{
|
21821
22035
|
"name": "multiple",
|
21822
|
-
"description": "
|
22036
|
+
"description": "Changes select to multiple. Accepts array for value",
|
21823
22037
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21824
22038
|
"default": "false",
|
21825
22039
|
"value": {
|
@@ -21839,7 +22053,7 @@
|
|
21839
22053
|
},
|
21840
22054
|
{
|
21841
22055
|
"name": "readonly",
|
21842
|
-
"description": "
|
22056
|
+
"description": "Puts input in readonly state",
|
21843
22057
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21844
22058
|
"default": "false",
|
21845
22059
|
"value": {
|
@@ -21872,7 +22086,7 @@
|
|
21872
22086
|
},
|
21873
22087
|
{
|
21874
22088
|
"name": "falseIcon",
|
21875
|
-
"description": "
|
22089
|
+
"description": "The icon used when inactive",
|
21876
22090
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21877
22091
|
"value": {
|
21878
22092
|
"kind": "expression",
|
@@ -21881,7 +22095,7 @@
|
|
21881
22095
|
},
|
21882
22096
|
{
|
21883
22097
|
"name": "trueIcon",
|
21884
|
-
"description": "
|
22098
|
+
"description": "The icon used when active",
|
21885
22099
|
"doc-url": "https://vuetifyjs.com/api/v-selection-control-group#props",
|
21886
22100
|
"value": {
|
21887
22101
|
"kind": "expression",
|
@@ -22092,7 +22306,7 @@
|
|
22092
22306
|
"default": "'image'",
|
22093
22307
|
"value": {
|
22094
22308
|
"kind": "expression",
|
22095
|
-
"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\")[]"
|
22309
|
+
"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\")[]"
|
22096
22310
|
}
|
22097
22311
|
},
|
22098
22312
|
{
|
@@ -23013,6 +23227,26 @@
|
|
23013
23227
|
"type": "string | (new () => any) | FunctionalComponent"
|
23014
23228
|
}
|
23015
23229
|
},
|
23230
|
+
{
|
23231
|
+
"name": "hint",
|
23232
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
23233
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#props",
|
23234
|
+
"value": {
|
23235
|
+
"kind": "expression",
|
23236
|
+
"type": "string"
|
23237
|
+
}
|
23238
|
+
},
|
23239
|
+
{
|
23240
|
+
"name": "persistentHint",
|
23241
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
23242
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#props",
|
23243
|
+
"default": "false",
|
23244
|
+
"value": {
|
23245
|
+
"kind": "expression",
|
23246
|
+
"type": "boolean"
|
23247
|
+
},
|
23248
|
+
"type": "boolean"
|
23249
|
+
},
|
23016
23250
|
{
|
23017
23251
|
"name": "messages",
|
23018
23252
|
"description": "Displays a list of messages or message if using a string",
|
@@ -23274,6 +23508,28 @@
|
|
23274
23508
|
"type": "[boolean]"
|
23275
23509
|
}
|
23276
23510
|
]
|
23511
|
+
},
|
23512
|
+
{
|
23513
|
+
"name": "end",
|
23514
|
+
"description": "Slider value emitted at the end of slider movement",
|
23515
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#events",
|
23516
|
+
"arguments": [
|
23517
|
+
{
|
23518
|
+
"name": "argument",
|
23519
|
+
"type": "[number]"
|
23520
|
+
}
|
23521
|
+
]
|
23522
|
+
},
|
23523
|
+
{
|
23524
|
+
"name": "start",
|
23525
|
+
"description": "Slider value emitted at start of slider movement",
|
23526
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#events",
|
23527
|
+
"arguments": [
|
23528
|
+
{
|
23529
|
+
"name": "argument",
|
23530
|
+
"type": "[number]"
|
23531
|
+
}
|
23532
|
+
]
|
23277
23533
|
}
|
23278
23534
|
],
|
23279
23535
|
"slots": [
|
@@ -24027,7 +24283,7 @@
|
|
24027
24283
|
},
|
24028
24284
|
{
|
24029
24285
|
"name": "error",
|
24030
|
-
"description": "
|
24286
|
+
"description": "Puts the input in a manual error state",
|
24031
24287
|
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24032
24288
|
"default": "false",
|
24033
24289
|
"value": {
|
@@ -24084,7 +24340,7 @@
|
|
24084
24340
|
},
|
24085
24341
|
{
|
24086
24342
|
"name": "id",
|
24087
|
-
"description": "
|
24343
|
+
"description": "Sets the DOM id on the component",
|
24088
24344
|
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24089
24345
|
"value": {
|
24090
24346
|
"kind": "expression",
|
@@ -24149,6 +24405,26 @@
|
|
24149
24405
|
"type": "string | (new () => any) | FunctionalComponent"
|
24150
24406
|
}
|
24151
24407
|
},
|
24408
|
+
{
|
24409
|
+
"name": "hint",
|
24410
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
24411
|
+
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24412
|
+
"value": {
|
24413
|
+
"kind": "expression",
|
24414
|
+
"type": "string"
|
24415
|
+
}
|
24416
|
+
},
|
24417
|
+
{
|
24418
|
+
"name": "persistentHint",
|
24419
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
24420
|
+
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24421
|
+
"default": "false",
|
24422
|
+
"value": {
|
24423
|
+
"kind": "expression",
|
24424
|
+
"type": "boolean"
|
24425
|
+
},
|
24426
|
+
"type": "boolean"
|
24427
|
+
},
|
24152
24428
|
{
|
24153
24429
|
"name": "messages",
|
24154
24430
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-input.json))",
|
@@ -24191,7 +24467,7 @@
|
|
24191
24467
|
},
|
24192
24468
|
{
|
24193
24469
|
"name": "readonly",
|
24194
|
-
"description": "
|
24470
|
+
"description": "Puts input in readonly state",
|
24195
24471
|
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24196
24472
|
"default": "false",
|
24197
24473
|
"value": {
|
@@ -24312,7 +24588,7 @@
|
|
24312
24588
|
},
|
24313
24589
|
{
|
24314
24590
|
"name": "falseIcon",
|
24315
|
-
"description": "
|
24591
|
+
"description": "The icon used when inactive",
|
24316
24592
|
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24317
24593
|
"value": {
|
24318
24594
|
"kind": "expression",
|
@@ -24321,7 +24597,7 @@
|
|
24321
24597
|
},
|
24322
24598
|
{
|
24323
24599
|
"name": "trueIcon",
|
24324
|
-
"description": "
|
24600
|
+
"description": "The icon used when active",
|
24325
24601
|
"doc-url": "https://vuetifyjs.com/api/v-switch#props",
|
24326
24602
|
"value": {
|
24327
24603
|
"kind": "expression",
|
@@ -24593,6 +24869,21 @@
|
|
24593
24869
|
"type": "{ onBlur: (e: Event) => void; onFocus: (e: FocusEvent) => void; id: string }"
|
24594
24870
|
}
|
24595
24871
|
]
|
24872
|
+
},
|
24873
|
+
{
|
24874
|
+
"name": "loader",
|
24875
|
+
"description": "MISSING DESCRIPTION",
|
24876
|
+
"doc-url": "https://vuetifyjs.com/api/v-switch#slots",
|
24877
|
+
"vue-properties": [
|
24878
|
+
{
|
24879
|
+
"name": "color",
|
24880
|
+
"type": "string"
|
24881
|
+
},
|
24882
|
+
{
|
24883
|
+
"name": "isActive",
|
24884
|
+
"type": "boolean"
|
24885
|
+
}
|
24886
|
+
]
|
24596
24887
|
}
|
24597
24888
|
],
|
24598
24889
|
"vue-model": {
|
@@ -25489,7 +25780,7 @@
|
|
25489
25780
|
},
|
25490
25781
|
{
|
25491
25782
|
"name": "error",
|
25492
|
-
"description": "
|
25783
|
+
"description": "Puts the input in a manual error state",
|
25493
25784
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25494
25785
|
"default": "false",
|
25495
25786
|
"value": {
|
@@ -25606,26 +25897,6 @@
|
|
25606
25897
|
},
|
25607
25898
|
"type": "boolean"
|
25608
25899
|
},
|
25609
|
-
{
|
25610
|
-
"name": "hint",
|
25611
|
-
"description": "Hint text",
|
25612
|
-
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25613
|
-
"value": {
|
25614
|
-
"kind": "expression",
|
25615
|
-
"type": "string"
|
25616
|
-
}
|
25617
|
-
},
|
25618
|
-
{
|
25619
|
-
"name": "persistentHint",
|
25620
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))",
|
25621
|
-
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25622
|
-
"default": "false",
|
25623
|
-
"value": {
|
25624
|
-
"kind": "expression",
|
25625
|
-
"type": "boolean"
|
25626
|
-
},
|
25627
|
-
"type": "boolean"
|
25628
|
-
},
|
25629
25900
|
{
|
25630
25901
|
"name": "prefix",
|
25631
25902
|
"description": "Displays prefix text",
|
@@ -25693,6 +25964,26 @@
|
|
25693
25964
|
"type": "string | (new () => any) | FunctionalComponent"
|
25694
25965
|
}
|
25695
25966
|
},
|
25967
|
+
{
|
25968
|
+
"name": "hint",
|
25969
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
25970
|
+
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25971
|
+
"value": {
|
25972
|
+
"kind": "expression",
|
25973
|
+
"type": "string"
|
25974
|
+
}
|
25975
|
+
},
|
25976
|
+
{
|
25977
|
+
"name": "persistentHint",
|
25978
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
25979
|
+
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25980
|
+
"default": "false",
|
25981
|
+
"value": {
|
25982
|
+
"kind": "expression",
|
25983
|
+
"type": "boolean"
|
25984
|
+
},
|
25985
|
+
"type": "boolean"
|
25986
|
+
},
|
25696
25987
|
{
|
25697
25988
|
"name": "messages",
|
25698
25989
|
"description": "Displays a list of messages or message if using a string",
|
@@ -25856,7 +26147,7 @@
|
|
25856
26147
|
},
|
25857
26148
|
{
|
25858
26149
|
"name": "persistentClear",
|
25859
|
-
"description": "
|
26150
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
25860
26151
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#props",
|
25861
26152
|
"default": "false",
|
25862
26153
|
"value": {
|
@@ -25959,19 +26250,19 @@
|
|
25959
26250
|
]
|
25960
26251
|
},
|
25961
26252
|
{
|
25962
|
-
"name": "
|
25963
|
-
"description": "
|
26253
|
+
"name": "update:focused",
|
26254
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-text-field.json))",
|
25964
26255
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#events",
|
25965
26256
|
"arguments": [
|
25966
26257
|
{
|
25967
26258
|
"name": "argument",
|
25968
|
-
"type": "
|
26259
|
+
"type": "[boolean]"
|
25969
26260
|
}
|
25970
26261
|
]
|
25971
26262
|
},
|
25972
26263
|
{
|
25973
|
-
"name": "click:
|
25974
|
-
"description": "Emitted when
|
26264
|
+
"name": "click:clear",
|
26265
|
+
"description": "Emitted when clearable icon clicked",
|
25975
26266
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#events",
|
25976
26267
|
"arguments": [
|
25977
26268
|
{
|
@@ -25981,8 +26272,8 @@
|
|
25981
26272
|
]
|
25982
26273
|
},
|
25983
26274
|
{
|
25984
|
-
"name": "click:
|
25985
|
-
"description": "Emitted when
|
26275
|
+
"name": "click:appendInner",
|
26276
|
+
"description": "Emitted when appended inner icon is clicked",
|
25986
26277
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#events",
|
25987
26278
|
"arguments": [
|
25988
26279
|
{
|
@@ -25992,13 +26283,13 @@
|
|
25992
26283
|
]
|
25993
26284
|
},
|
25994
26285
|
{
|
25995
|
-
"name": "
|
25996
|
-
"description": "
|
26286
|
+
"name": "click:prependInner",
|
26287
|
+
"description": "Emitted when prepended inner icon is clicked",
|
25997
26288
|
"doc-url": "https://vuetifyjs.com/api/v-text-field#events",
|
25998
26289
|
"arguments": [
|
25999
26290
|
{
|
26000
26291
|
"name": "argument",
|
26001
|
-
"type": "
|
26292
|
+
"type": "never"
|
26002
26293
|
}
|
26003
26294
|
]
|
26004
26295
|
},
|
@@ -26256,7 +26547,7 @@
|
|
26256
26547
|
},
|
26257
26548
|
{
|
26258
26549
|
"name": "error",
|
26259
|
-
"description": "
|
26550
|
+
"description": "Puts the input in a manual error state",
|
26260
26551
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26261
26552
|
"default": "false",
|
26262
26553
|
"value": {
|
@@ -26277,7 +26568,7 @@
|
|
26277
26568
|
},
|
26278
26569
|
{
|
26279
26570
|
"name": "reverse",
|
26280
|
-
"description": "
|
26571
|
+
"description": "Reverses the orientation ",
|
26281
26572
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26282
26573
|
"default": "false",
|
26283
26574
|
"value": {
|
@@ -26373,26 +26664,6 @@
|
|
26373
26664
|
},
|
26374
26665
|
"type": "boolean"
|
26375
26666
|
},
|
26376
|
-
{
|
26377
|
-
"name": "hint",
|
26378
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26379
|
-
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26380
|
-
"value": {
|
26381
|
-
"kind": "expression",
|
26382
|
-
"type": "string"
|
26383
|
-
}
|
26384
|
-
},
|
26385
|
-
{
|
26386
|
-
"name": "persistentHint",
|
26387
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26388
|
-
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26389
|
-
"default": "false",
|
26390
|
-
"value": {
|
26391
|
-
"kind": "expression",
|
26392
|
-
"type": "boolean"
|
26393
|
-
},
|
26394
|
-
"type": "boolean"
|
26395
|
-
},
|
26396
26667
|
{
|
26397
26668
|
"name": "prefix",
|
26398
26669
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
@@ -26460,6 +26731,26 @@
|
|
26460
26731
|
"type": "string | (new () => any) | FunctionalComponent"
|
26461
26732
|
}
|
26462
26733
|
},
|
26734
|
+
{
|
26735
|
+
"name": "hint",
|
26736
|
+
"description": "Displays hint text below the input when focused. Force this always open with the [persistent-hint](#props-persistent-hint) property",
|
26737
|
+
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26738
|
+
"value": {
|
26739
|
+
"kind": "expression",
|
26740
|
+
"type": "string"
|
26741
|
+
}
|
26742
|
+
},
|
26743
|
+
{
|
26744
|
+
"name": "persistentHint",
|
26745
|
+
"description": "Forces [hint](#props-hint) to always be visible",
|
26746
|
+
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26747
|
+
"default": "false",
|
26748
|
+
"value": {
|
26749
|
+
"kind": "expression",
|
26750
|
+
"type": "boolean"
|
26751
|
+
},
|
26752
|
+
"type": "boolean"
|
26753
|
+
},
|
26463
26754
|
{
|
26464
26755
|
"name": "messages",
|
26465
26756
|
"description": "Displays a list of messages or message if using a string",
|
@@ -26591,7 +26882,7 @@
|
|
26591
26882
|
},
|
26592
26883
|
{
|
26593
26884
|
"name": "clearIcon",
|
26594
|
-
"description": "
|
26885
|
+
"description": "The icon used when the **clerable** prop is set to true",
|
26595
26886
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26596
26887
|
"default": "'$clear'",
|
26597
26888
|
"value": {
|
@@ -26623,7 +26914,7 @@
|
|
26623
26914
|
},
|
26624
26915
|
{
|
26625
26916
|
"name": "persistentClear",
|
26626
|
-
"description": "
|
26917
|
+
"description": "Always show the clearable icon when the input is dirty (By default it only shows on hover)",
|
26627
26918
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
26628
26919
|
"default": "false",
|
26629
26920
|
"value": {
|
@@ -26767,18 +27058,18 @@
|
|
26767
27058
|
]
|
26768
27059
|
},
|
26769
27060
|
{
|
26770
|
-
"name": "
|
27061
|
+
"name": "update:focused",
|
26771
27062
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26772
27063
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#events",
|
26773
27064
|
"arguments": [
|
26774
27065
|
{
|
26775
27066
|
"name": "argument",
|
26776
|
-
"type": "
|
27067
|
+
"type": "[boolean]"
|
26777
27068
|
}
|
26778
27069
|
]
|
26779
27070
|
},
|
26780
27071
|
{
|
26781
|
-
"name": "click:
|
27072
|
+
"name": "click:clear",
|
26782
27073
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26783
27074
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#events",
|
26784
27075
|
"arguments": [
|
@@ -26789,7 +27080,7 @@
|
|
26789
27080
|
]
|
26790
27081
|
},
|
26791
27082
|
{
|
26792
|
-
"name": "click:
|
27083
|
+
"name": "click:appendInner",
|
26793
27084
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26794
27085
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#events",
|
26795
27086
|
"arguments": [
|
@@ -26800,13 +27091,13 @@
|
|
26800
27091
|
]
|
26801
27092
|
},
|
26802
27093
|
{
|
26803
|
-
"name": "
|
27094
|
+
"name": "click:prependInner",
|
26804
27095
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-textarea.json))",
|
26805
27096
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#events",
|
26806
27097
|
"arguments": [
|
26807
27098
|
{
|
26808
27099
|
"name": "argument",
|
26809
|
-
"type": "
|
27100
|
+
"type": "never"
|
26810
27101
|
}
|
26811
27102
|
]
|
26812
27103
|
},
|
@@ -26938,7 +27229,7 @@
|
|
26938
27229
|
},
|
26939
27230
|
{
|
26940
27231
|
"name": "loader",
|
26941
|
-
"description": "
|
27232
|
+
"description": "Slot for custom loader (displayed when **loading** prop is equal to true)",
|
26942
27233
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#slots",
|
26943
27234
|
"vue-properties": [
|
26944
27235
|
{
|
@@ -27004,17 +27295,17 @@
|
|
27004
27295
|
},
|
27005
27296
|
{
|
27006
27297
|
"name": "clear",
|
27007
|
-
"description": "
|
27298
|
+
"description": "Slot for custom clear icon (displayed when the **clearable** prop is equal to true)",
|
27008
27299
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#slots"
|
27009
27300
|
},
|
27010
27301
|
{
|
27011
27302
|
"name": "prepend-inner",
|
27012
|
-
"description": "
|
27303
|
+
"description": "Slot that is prepended to the input",
|
27013
27304
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#slots"
|
27014
27305
|
},
|
27015
27306
|
{
|
27016
27307
|
"name": "append-inner",
|
27017
|
-
"description": "
|
27308
|
+
"description": "Slot that is appended to the input",
|
27018
27309
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#slots"
|
27019
27310
|
},
|
27020
27311
|
{
|
@@ -28244,6 +28535,17 @@
|
|
28244
28535
|
"type": "[any]"
|
28245
28536
|
}
|
28246
28537
|
]
|
28538
|
+
},
|
28539
|
+
{
|
28540
|
+
"name": "update:focused",
|
28541
|
+
"description": "MISSING DESCRIPTION",
|
28542
|
+
"doc-url": "https://vuetifyjs.com/api/v-validation#events",
|
28543
|
+
"arguments": [
|
28544
|
+
{
|
28545
|
+
"name": "argument",
|
28546
|
+
"type": "never"
|
28547
|
+
}
|
28548
|
+
]
|
28247
28549
|
}
|
28248
28550
|
],
|
28249
28551
|
"slots": [
|