@vuetify/nightly 3.6.0-alpha.1-dev.2024-04-11 → 3.6.0-alpha.1-dev.2024-04-15
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 +10 -2
- package/dist/json/attributes.json +156 -8
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +116 -115
- package/dist/json/tags.json +49 -12
- package/dist/json/web-types.json +434 -87
- package/dist/vuetify-labs.css +1838 -1838
- package/dist/vuetify-labs.d.ts +447 -12
- package/dist/vuetify-labs.esm.js +157 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +156 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2100 -2100
- package/dist/vuetify.d.ts +481 -46
- package/dist/vuetify.esm.js +157 -25
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +156 -24
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +40 -28
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +18 -0
- package/lib/components/VCheckbox/index.d.mts +18 -0
- package/lib/components/VCombobox/index.d.mts +18 -0
- package/lib/components/VDataIterator/VDataIterator.mjs +30 -5
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +113 -19
- package/lib/components/VDataTable/VDataTable.mjs +5 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +5 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +23 -15
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +16 -16
- package/lib/components/VFileInput/index.d.mts +57 -3
- package/lib/components/VInput/VInput.mjs +7 -2
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.mts +18 -0
- package/lib/components/VRadioGroup/index.d.mts +18 -0
- package/lib/components/VRangeSlider/index.d.mts +18 -0
- package/lib/components/VSelect/index.d.mts +18 -0
- package/lib/components/VSlider/index.d.mts +18 -0
- package/lib/components/VSwitch/index.d.mts +18 -0
- package/lib/components/VTextField/index.d.mts +57 -3
- package/lib/components/VTextarea/index.d.mts +57 -3
- package/lib/components/index.d.mts +424 -11
- package/lib/composables/directiveComponent.mjs +34 -31
- package/lib/composables/directiveComponent.mjs.map +1 -1
- package/lib/directives/index.d.mts +29 -2
- package/lib/directives/index.mjs +1 -0
- package/lib/directives/index.mjs.map +1 -1
- package/lib/directives/tooltip/index.mjs +12 -0
- package/lib/directives/tooltip/index.mjs.map +1 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +34 -34
- package/lib/util/defineComponent.mjs +4 -0
- package/lib/util/defineComponent.mjs.map +1 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-15...v) (2024-04-15)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
# [3.6.0-alpha.1-dev.2024-04-
|
|
5
|
+
# [3.6.0-alpha.1-dev.2024-04-15](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1...v3.6.0-alpha.1-dev.2024-04-15) (2024-04-15)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
|
+
* **VDataTable:** sort on transformed column values ([b6b9be5](https://github.com/vuetifyjs/vuetify/commit/b6b9be5e0f30df8f2444a565dcc1e93e39116b33)), closes [#18840](https://github.com/vuetifyjs/vuetify/issues/18840)
|
|
10
11
|
* **VTimeline:** provide correct dot-color default ([380e8e6](https://github.com/vuetifyjs/vuetify/commit/380e8e650f4ed969d738747242991743842b9a67))
|
|
11
12
|
|
|
12
13
|
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **Tooltip:** add new directive ([#19053](https://github.com/vuetifyjs/vuetify/issues/19053)) ([2e1e743](https://github.com/vuetifyjs/vuetify/commit/2e1e74378b47e2f77721e1d3e5810cf6e25774f9))
|
|
17
|
+
* **VDataIterator:** loading prop fix and add new slot "loader" ([#18811](https://github.com/vuetifyjs/vuetify/issues/18811)) ([3fca676](https://github.com/vuetifyjs/vuetify/commit/3fca676ad16d843a5ea610cd2656420afe111634)), closes [#17652](https://github.com/vuetifyjs/vuetify/issues/17652)
|
|
18
|
+
* **VInput:** add dimensions support to VInput ([#19600](https://github.com/vuetifyjs/vuetify/issues/19600)) ([45c8f61](https://github.com/vuetifyjs/vuetify/commit/45c8f615913c10d7e8f189ac067a6c860e96941d))
|
|
19
|
+
|
|
20
|
+
|
|
13
21
|
|
|
@@ -479,6 +479,18 @@
|
|
|
479
479
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
480
480
|
"description": "Adjusts the vertical height used by the component."
|
|
481
481
|
},
|
|
482
|
+
"VAutocomplete/max-width": {
|
|
483
|
+
"type": "string | number\n",
|
|
484
|
+
"description": "Sets the maximum width for the component."
|
|
485
|
+
},
|
|
486
|
+
"VAutocomplete/min-width": {
|
|
487
|
+
"type": "string | number\n",
|
|
488
|
+
"description": "Sets the minimum width for the component."
|
|
489
|
+
},
|
|
490
|
+
"VAutocomplete/width": {
|
|
491
|
+
"type": "string | number\n",
|
|
492
|
+
"description": "Sets the width for the component."
|
|
493
|
+
},
|
|
482
494
|
"VAutocomplete/items": {
|
|
483
495
|
"type": "any[]\n",
|
|
484
496
|
"description": "Can be an array of objects or strings. By default objects should have **title** and **value** properties, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props). Keys to use for these can be changed with the **item-title**, **item-value**, and **item-props** props."
|
|
@@ -2239,6 +2251,18 @@
|
|
|
2239
2251
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
2240
2252
|
"description": "Adjusts the vertical height used by the component."
|
|
2241
2253
|
},
|
|
2254
|
+
"VCheckbox/max-width": {
|
|
2255
|
+
"type": "string | number\n",
|
|
2256
|
+
"description": "Sets the maximum width for the component."
|
|
2257
|
+
},
|
|
2258
|
+
"VCheckbox/min-width": {
|
|
2259
|
+
"type": "string | number\n",
|
|
2260
|
+
"description": "Sets the minimum width for the component."
|
|
2261
|
+
},
|
|
2262
|
+
"VCheckbox/width": {
|
|
2263
|
+
"type": "string | number\n",
|
|
2264
|
+
"description": "Sets the width for the component."
|
|
2265
|
+
},
|
|
2242
2266
|
"VCheckbox/disabled": {
|
|
2243
2267
|
"type": "boolean\n",
|
|
2244
2268
|
"description": "Removes the ability to click or target the component."
|
|
@@ -2927,6 +2951,18 @@
|
|
|
2927
2951
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
2928
2952
|
"description": "Adjusts the vertical height used by the component."
|
|
2929
2953
|
},
|
|
2954
|
+
"VCombobox/max-width": {
|
|
2955
|
+
"type": "string | number\n",
|
|
2956
|
+
"description": "Sets the maximum width for the component."
|
|
2957
|
+
},
|
|
2958
|
+
"VCombobox/min-width": {
|
|
2959
|
+
"type": "string | number\n",
|
|
2960
|
+
"description": "Sets the minimum width for the component."
|
|
2961
|
+
},
|
|
2962
|
+
"VCombobox/width": {
|
|
2963
|
+
"type": "string | number\n",
|
|
2964
|
+
"description": "Sets the width for the component."
|
|
2965
|
+
},
|
|
2930
2966
|
"VCombobox/items": {
|
|
2931
2967
|
"type": "any[]\n",
|
|
2932
2968
|
"description": "Can be an array of objects or strings. By default objects should have **title** and **value** properties, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props). Keys to use for these can be changed with the **item-title**, **item-value**, and **item-props** props."
|
|
@@ -3244,7 +3280,7 @@
|
|
|
3244
3280
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3245
3281
|
},
|
|
3246
3282
|
"VDataIterator/sort-by": {
|
|
3247
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3283
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3248
3284
|
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier."
|
|
3249
3285
|
},
|
|
3250
3286
|
"VDataIterator/multi-sort": {
|
|
@@ -3276,7 +3312,7 @@
|
|
|
3276
3312
|
"description": "Array of expanded items. Can be used with `.sync` modifier."
|
|
3277
3313
|
},
|
|
3278
3314
|
"VDataIterator/group-by": {
|
|
3279
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3315
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3280
3316
|
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier."
|
|
3281
3317
|
},
|
|
3282
3318
|
"VDataIterator/filter-mode": {
|
|
@@ -3303,6 +3339,10 @@
|
|
|
3303
3339
|
"type": "string\n",
|
|
3304
3340
|
"description": "Specify a custom tag used on the root element."
|
|
3305
3341
|
},
|
|
3342
|
+
"VDataIterator/transition": {
|
|
3343
|
+
"type": " | { component: Component; hideOnLeave: boolean }\n | string\n | boolean\n | (TransitionProps & { component: Component })\n",
|
|
3344
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
|
|
3345
|
+
},
|
|
3306
3346
|
"VDataTable/width": {
|
|
3307
3347
|
"type": "string | number\n",
|
|
3308
3348
|
"description": "Sets the width for the component."
|
|
@@ -3368,7 +3408,7 @@
|
|
|
3368
3408
|
"description": "Whether the item is expanded or not."
|
|
3369
3409
|
},
|
|
3370
3410
|
"VDataTable/group-by": {
|
|
3371
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3411
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3372
3412
|
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier."
|
|
3373
3413
|
},
|
|
3374
3414
|
"VDataTable/item-value": {
|
|
@@ -3400,7 +3440,7 @@
|
|
|
3400
3440
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3401
3441
|
},
|
|
3402
3442
|
"VDataTable/sort-by": {
|
|
3403
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3443
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3404
3444
|
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier."
|
|
3405
3445
|
},
|
|
3406
3446
|
"VDataTable/multi-sort": {
|
|
@@ -3664,7 +3704,7 @@
|
|
|
3664
3704
|
"description": "Whether the item is expanded or not."
|
|
3665
3705
|
},
|
|
3666
3706
|
"VDataTableServer/group-by": {
|
|
3667
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3707
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3668
3708
|
"description": "Defines the grouping of the table items."
|
|
3669
3709
|
},
|
|
3670
3710
|
"VDataTableServer/item-value": {
|
|
@@ -3696,7 +3736,7 @@
|
|
|
3696
3736
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3697
3737
|
},
|
|
3698
3738
|
"VDataTableServer/sort-by": {
|
|
3699
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3739
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3700
3740
|
"description": "Array of column keys and sort orders that determines the sort order of the table."
|
|
3701
3741
|
},
|
|
3702
3742
|
"VDataTableServer/multi-sort": {
|
|
@@ -3860,7 +3900,7 @@
|
|
|
3860
3900
|
"description": "Whether the item is expanded or not."
|
|
3861
3901
|
},
|
|
3862
3902
|
"VDataTableVirtual/group-by": {
|
|
3863
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3903
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3864
3904
|
"description": "Defines the grouping of the table items."
|
|
3865
3905
|
},
|
|
3866
3906
|
"VDataTableVirtual/item-value": {
|
|
@@ -3892,7 +3932,7 @@
|
|
|
3892
3932
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3893
3933
|
},
|
|
3894
3934
|
"VDataTableVirtual/sort-by": {
|
|
3895
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3935
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3896
3936
|
"description": "Array of column keys and sort orders that determines the sort order of the table."
|
|
3897
3937
|
},
|
|
3898
3938
|
"VDataTableVirtual/multi-sort": {
|
|
@@ -5275,6 +5315,18 @@
|
|
|
5275
5315
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
5276
5316
|
"description": "Adjusts the vertical height used by the component."
|
|
5277
5317
|
},
|
|
5318
|
+
"VFileInput/max-width": {
|
|
5319
|
+
"type": "string | number\n",
|
|
5320
|
+
"description": "Sets the maximum width for the component."
|
|
5321
|
+
},
|
|
5322
|
+
"VFileInput/min-width": {
|
|
5323
|
+
"type": "string | number\n",
|
|
5324
|
+
"description": "Sets the minimum width for the component."
|
|
5325
|
+
},
|
|
5326
|
+
"VFileInput/width": {
|
|
5327
|
+
"type": "string | number\n",
|
|
5328
|
+
"description": "Sets the width for the component."
|
|
5329
|
+
},
|
|
5278
5330
|
"VFileInput/disabled": {
|
|
5279
5331
|
"type": "boolean\n",
|
|
5280
5332
|
"description": "Removes the ability to click or target the input."
|
|
@@ -5703,6 +5755,18 @@
|
|
|
5703
5755
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
5704
5756
|
"description": "Adjusts the vertical height used by the component."
|
|
5705
5757
|
},
|
|
5758
|
+
"VInput/max-width": {
|
|
5759
|
+
"type": "string | number\n",
|
|
5760
|
+
"description": "Sets the maximum width for the component."
|
|
5761
|
+
},
|
|
5762
|
+
"VInput/min-width": {
|
|
5763
|
+
"type": "string | number\n",
|
|
5764
|
+
"description": "Sets the minimum width for the component."
|
|
5765
|
+
},
|
|
5766
|
+
"VInput/width": {
|
|
5767
|
+
"type": "string | number\n",
|
|
5768
|
+
"description": "Sets the width for the component."
|
|
5769
|
+
},
|
|
5706
5770
|
"VInput/disabled": {
|
|
5707
5771
|
"type": "boolean\n",
|
|
5708
5772
|
"description": "Removes the ability to click or target the component."
|
|
@@ -7419,6 +7483,18 @@
|
|
|
7419
7483
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
7420
7484
|
"description": "Adjusts the vertical height used by the component."
|
|
7421
7485
|
},
|
|
7486
|
+
"VRadioGroup/max-width": {
|
|
7487
|
+
"type": "string | number\n",
|
|
7488
|
+
"description": "Sets the maximum width for the component."
|
|
7489
|
+
},
|
|
7490
|
+
"VRadioGroup/min-width": {
|
|
7491
|
+
"type": "string | number\n",
|
|
7492
|
+
"description": "Sets the minimum width for the component."
|
|
7493
|
+
},
|
|
7494
|
+
"VRadioGroup/width": {
|
|
7495
|
+
"type": "string | number\n",
|
|
7496
|
+
"description": "Sets the width for the component."
|
|
7497
|
+
},
|
|
7422
7498
|
"VRadioGroup/disabled": {
|
|
7423
7499
|
"type": "boolean\n",
|
|
7424
7500
|
"description": "Removes the ability to click or target the component."
|
|
@@ -7551,6 +7627,18 @@
|
|
|
7551
7627
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
7552
7628
|
"description": "Adjusts the vertical height used by the component."
|
|
7553
7629
|
},
|
|
7630
|
+
"VRangeSlider/max-width": {
|
|
7631
|
+
"type": "string | number\n",
|
|
7632
|
+
"description": "Sets the maximum width for the component."
|
|
7633
|
+
},
|
|
7634
|
+
"VRangeSlider/min-width": {
|
|
7635
|
+
"type": "string | number\n",
|
|
7636
|
+
"description": "Sets the minimum width for the component."
|
|
7637
|
+
},
|
|
7638
|
+
"VRangeSlider/width": {
|
|
7639
|
+
"type": "string | number\n",
|
|
7640
|
+
"description": "Sets the width for the component."
|
|
7641
|
+
},
|
|
7554
7642
|
"VRangeSlider/disabled": {
|
|
7555
7643
|
"type": "boolean\n",
|
|
7556
7644
|
"description": "Removes the ability to click or target the component."
|
|
@@ -8055,6 +8143,18 @@
|
|
|
8055
8143
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
8056
8144
|
"description": "Adjusts the vertical height used by the component."
|
|
8057
8145
|
},
|
|
8146
|
+
"VSelect/max-width": {
|
|
8147
|
+
"type": "string | number\n",
|
|
8148
|
+
"description": "Sets the maximum width for the component."
|
|
8149
|
+
},
|
|
8150
|
+
"VSelect/min-width": {
|
|
8151
|
+
"type": "string | number\n",
|
|
8152
|
+
"description": "Sets the minimum width of the select's `v-menu` content."
|
|
8153
|
+
},
|
|
8154
|
+
"VSelect/width": {
|
|
8155
|
+
"type": "string | number\n",
|
|
8156
|
+
"description": "Sets the width for the component."
|
|
8157
|
+
},
|
|
8058
8158
|
"VSelect/items": {
|
|
8059
8159
|
"type": "any[]\n",
|
|
8060
8160
|
"description": "Can be an array of objects or strings. By default objects should have **title** and **value** properties, and can optionally have a **props** property containing any [VListItem props](/api/v-list-item/#props). Keys to use for these can be changed with the **item-title**, **item-value**, and **item-props** props."
|
|
@@ -8839,6 +8939,18 @@
|
|
|
8839
8939
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
8840
8940
|
"description": "Adjusts the vertical height used by the component."
|
|
8841
8941
|
},
|
|
8942
|
+
"VSlider/max-width": {
|
|
8943
|
+
"type": "string | number\n",
|
|
8944
|
+
"description": "Sets the maximum width for the component."
|
|
8945
|
+
},
|
|
8946
|
+
"VSlider/min-width": {
|
|
8947
|
+
"type": "string | number\n",
|
|
8948
|
+
"description": "Sets the minimum width for the component."
|
|
8949
|
+
},
|
|
8950
|
+
"VSlider/width": {
|
|
8951
|
+
"type": "string | number\n",
|
|
8952
|
+
"description": "Sets the width for the component."
|
|
8953
|
+
},
|
|
8842
8954
|
"VSlider/error-messages": {
|
|
8843
8955
|
"type": "string | string[]\n",
|
|
8844
8956
|
"description": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation."
|
|
@@ -9611,6 +9723,18 @@
|
|
|
9611
9723
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
9612
9724
|
"description": "Adjusts the vertical height used by the component."
|
|
9613
9725
|
},
|
|
9726
|
+
"VSwitch/max-width": {
|
|
9727
|
+
"type": "string | number\n",
|
|
9728
|
+
"description": "Sets the maximum width for the component."
|
|
9729
|
+
},
|
|
9730
|
+
"VSwitch/min-width": {
|
|
9731
|
+
"type": "string | number\n",
|
|
9732
|
+
"description": "Sets the minimum width for the component."
|
|
9733
|
+
},
|
|
9734
|
+
"VSwitch/width": {
|
|
9735
|
+
"type": "string | number\n",
|
|
9736
|
+
"description": "Sets the width for the component."
|
|
9737
|
+
},
|
|
9614
9738
|
"VSwitch/disabled": {
|
|
9615
9739
|
"type": "boolean\n",
|
|
9616
9740
|
"description": "Removes the ability to click or target the component."
|
|
@@ -10167,6 +10291,18 @@
|
|
|
10167
10291
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
10168
10292
|
"description": "Adjusts the vertical height used by the component."
|
|
10169
10293
|
},
|
|
10294
|
+
"VTextField/max-width": {
|
|
10295
|
+
"type": "string | number\n",
|
|
10296
|
+
"description": "Sets the maximum width for the component."
|
|
10297
|
+
},
|
|
10298
|
+
"VTextField/min-width": {
|
|
10299
|
+
"type": "string | number\n",
|
|
10300
|
+
"description": "Sets the minimum width for the component."
|
|
10301
|
+
},
|
|
10302
|
+
"VTextField/width": {
|
|
10303
|
+
"type": "string | number\n",
|
|
10304
|
+
"description": "Sets the width for the component."
|
|
10305
|
+
},
|
|
10170
10306
|
"VTextField/disabled": {
|
|
10171
10307
|
"type": "boolean\n",
|
|
10172
10308
|
"description": "Removes the ability to click or target the input."
|
|
@@ -10383,6 +10519,18 @@
|
|
|
10383
10519
|
"type": "'default' | 'comfortable' | 'compact'\n",
|
|
10384
10520
|
"description": "Adjusts the vertical height used by the component."
|
|
10385
10521
|
},
|
|
10522
|
+
"VTextarea/max-width": {
|
|
10523
|
+
"type": "string | number\n",
|
|
10524
|
+
"description": "Sets the maximum width for the component."
|
|
10525
|
+
},
|
|
10526
|
+
"VTextarea/min-width": {
|
|
10527
|
+
"type": "string | number\n",
|
|
10528
|
+
"description": "Sets the minimum width for the component."
|
|
10529
|
+
},
|
|
10530
|
+
"VTextarea/width": {
|
|
10531
|
+
"type": "string | number\n",
|
|
10532
|
+
"description": "Sets the width for the component."
|
|
10533
|
+
},
|
|
10386
10534
|
"VTextarea/disabled": {
|
|
10387
10535
|
"type": "boolean\n",
|
|
10388
10536
|
"description": "Removes the ability to click or target the input."
|
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
"from": "labs/VFab/index.mjs",
|
|
41
41
|
"styles": []
|
|
42
42
|
},
|
|
43
|
+
"VNumberInput": {
|
|
44
|
+
"from": "labs/VNumberInput/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
43
47
|
"VTimePicker": {
|
|
44
48
|
"from": "labs/VTimePicker/index.mjs",
|
|
45
49
|
"styles": []
|
|
@@ -52,10 +56,6 @@
|
|
|
52
56
|
"from": "labs/VTimePicker/index.mjs",
|
|
53
57
|
"styles": []
|
|
54
58
|
},
|
|
55
|
-
"VNumberInput": {
|
|
56
|
-
"from": "labs/VNumberInput/index.mjs",
|
|
57
|
-
"styles": []
|
|
58
|
-
},
|
|
59
59
|
"VConfirmEdit": {
|
|
60
60
|
"from": "labs/VConfirmEdit/index.mjs",
|
|
61
61
|
"styles": []
|
|
@@ -64,10 +64,6 @@
|
|
|
64
64
|
"from": "labs/VSparkline/index.mjs",
|
|
65
65
|
"styles": []
|
|
66
66
|
},
|
|
67
|
-
"VSpeedDial": {
|
|
68
|
-
"from": "labs/VSpeedDial/index.mjs",
|
|
69
|
-
"styles": []
|
|
70
|
-
},
|
|
71
67
|
"VTreeview": {
|
|
72
68
|
"from": "labs/VTreeview/index.mjs",
|
|
73
69
|
"styles": []
|
|
@@ -79,6 +75,10 @@
|
|
|
79
75
|
"VTreeviewGroup": {
|
|
80
76
|
"from": "labs/VTreeview/index.mjs",
|
|
81
77
|
"styles": []
|
|
78
|
+
},
|
|
79
|
+
"VSpeedDial": {
|
|
80
|
+
"from": "labs/VSpeedDial/index.mjs",
|
|
81
|
+
"styles": []
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
}
|