@vuetify/nightly 3.6.0-alpha.1-dev.2024-04-11 → 3.6.0-alpha.1-dev.2024-04-13

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +9 -2
  2. package/dist/json/attributes.json +148 -0
  3. package/dist/json/importMap-labs.json +8 -8
  4. package/dist/json/importMap.json +144 -143
  5. package/dist/json/tags.json +49 -12
  6. package/dist/json/web-types.json +382 -35
  7. package/dist/vuetify-labs.css +2614 -2614
  8. package/dist/vuetify-labs.d.ts +447 -12
  9. package/dist/vuetify-labs.esm.js +122 -8
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +121 -7
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +599 -599
  14. package/dist/vuetify.d.ts +488 -53
  15. package/dist/vuetify.esm.js +122 -8
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +121 -7
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +27 -16
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/index.d.mts +18 -0
  23. package/lib/components/VCheckbox/index.d.mts +18 -0
  24. package/lib/components/VCombobox/index.d.mts +18 -0
  25. package/lib/components/VDataIterator/VDataIterator.mjs +27 -4
  26. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  27. package/lib/components/VDataIterator/index.d.mts +97 -3
  28. package/lib/components/VFileInput/index.d.mts +57 -3
  29. package/lib/components/VInput/VInput.mjs +7 -2
  30. package/lib/components/VInput/VInput.mjs.map +1 -1
  31. package/lib/components/VInput/index.d.mts +18 -0
  32. package/lib/components/VRadioGroup/index.d.mts +18 -0
  33. package/lib/components/VRangeSlider/index.d.mts +18 -0
  34. package/lib/components/VSelect/index.d.mts +18 -0
  35. package/lib/components/VSlider/index.d.mts +18 -0
  36. package/lib/components/VSwitch/index.d.mts +18 -0
  37. package/lib/components/VTextField/index.d.mts +57 -3
  38. package/lib/components/VTextarea/index.d.mts +57 -3
  39. package/lib/components/index.d.mts +424 -11
  40. package/lib/composables/directiveComponent.mjs +34 -31
  41. package/lib/composables/directiveComponent.mjs.map +1 -1
  42. package/lib/directives/index.d.mts +29 -2
  43. package/lib/directives/index.mjs +1 -0
  44. package/lib/directives/index.mjs.map +1 -1
  45. package/lib/directives/tooltip/index.mjs +12 -0
  46. package/lib/directives/tooltip/index.mjs.map +1 -0
  47. package/lib/entry-bundler.mjs +1 -1
  48. package/lib/framework.mjs +1 -1
  49. package/lib/index.d.mts +41 -41
  50. package/lib/util/defineComponent.mjs +4 -0
  51. package/lib/util/defineComponent.mjs.map +1 -1
  52. package/lib/util/helpers.mjs.map +1 -1
  53. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-11...v) (2024-04-11)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-13...v) (2024-04-13)
2
2
 
3
3
 
4
4
 
5
- # [3.6.0-alpha.1-dev.2024-04-11](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1...v3.6.0-alpha.1-dev.2024-04-11) (2024-04-11)
5
+ # [3.6.0-alpha.1-dev.2024-04-13](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1...v3.6.0-alpha.1-dev.2024-04-13) (2024-04-13)
6
6
 
7
7
 
8
8
  ### Bug Fixes
@@ -10,4 +10,11 @@
10
10
  * **VTimeline:** provide correct dot-color default ([380e8e6](https://github.com/vuetifyjs/vuetify/commit/380e8e650f4ed969d738747242991743842b9a67))
11
11
 
12
12
 
13
+ ### Features
14
+
15
+ * **Tooltip:** add new directive ([#19053](https://github.com/vuetifyjs/vuetify/issues/19053)) ([2e1e743](https://github.com/vuetifyjs/vuetify/commit/2e1e74378b47e2f77721e1d3e5810cf6e25774f9))
16
+ * **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)
17
+ * **VInput:** add dimensions support to VInput ([#19600](https://github.com/vuetifyjs/vuetify/issues/19600)) ([45c8f61](https://github.com/vuetifyjs/vuetify/commit/45c8f615913c10d7e8f189ac067a6c860e96941d))
18
+
19
+
13
20
 
@@ -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."
@@ -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."
@@ -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."
@@ -28,6 +28,14 @@
28
28
  "from": "labs/VEmptyState/index.mjs",
29
29
  "styles": []
30
30
  },
31
+ "VFab": {
32
+ "from": "labs/VFab/index.mjs",
33
+ "styles": []
34
+ },
35
+ "VNumberInput": {
36
+ "from": "labs/VNumberInput/index.mjs",
37
+ "styles": []
38
+ },
31
39
  "VPicker": {
32
40
  "from": "labs/VPicker/index.mjs",
33
41
  "styles": []
@@ -36,10 +44,6 @@
36
44
  "from": "labs/VPicker/index.mjs",
37
45
  "styles": []
38
46
  },
39
- "VFab": {
40
- "from": "labs/VFab/index.mjs",
41
- "styles": []
42
- },
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": []