@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-29

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 (42) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/dist/json/attributes.json +40 -0
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +11 -1
  6. package/dist/json/web-types.json +91 -1
  7. package/dist/vuetify-labs.css +1766 -1766
  8. package/dist/vuetify-labs.d.ts +147 -75
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1119 -1119
  14. package/dist/vuetify.d.ts +183 -111
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +10 -10
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +12 -12
  24. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  25. package/lib/components/VBtn/VBtn.mjs +3 -1
  26. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  27. package/lib/components/VBtn/index.d.mts +6 -0
  28. package/lib/components/VCombobox/index.d.mts +12 -12
  29. package/lib/components/VFab/index.d.mts +6 -0
  30. package/lib/components/VGrid/VContainer.mjs +6 -1
  31. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  32. package/lib/components/VGrid/index.d.mts +36 -0
  33. package/lib/components/VList/index.d.mts +12 -12
  34. package/lib/components/VSelect/index.d.mts +12 -12
  35. package/lib/components/VTabs/index.d.mts +21 -3
  36. package/lib/components/index.d.mts +131 -59
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/index.d.mts +52 -52
  40. package/lib/labs/VTreeview/index.d.mts +16 -16
  41. package/lib/labs/components.d.mts +16 -16
  42. package/package.json +1 -1
@@ -77,6 +77,7 @@
77
77
  "VAppBarNavIcon": {
78
78
  "attributes": [
79
79
  "active",
80
+ "active-color",
80
81
  "append-icon",
81
82
  "base-color",
82
83
  "block",
@@ -414,6 +415,7 @@
414
415
  "VBtn": {
415
416
  "attributes": [
416
417
  "active",
418
+ "active-color",
417
419
  "append-icon",
418
420
  "base-color",
419
421
  "block",
@@ -1036,7 +1038,13 @@
1036
1038
  "VContainer": {
1037
1039
  "attributes": [
1038
1040
  "fluid",
1039
- "tag"
1041
+ "height",
1042
+ "max-height",
1043
+ "max-width",
1044
+ "min-height",
1045
+ "min-width",
1046
+ "tag",
1047
+ "width"
1040
1048
  ],
1041
1049
  "description": ""
1042
1050
  },
@@ -1711,6 +1719,7 @@
1711
1719
  "attributes": [
1712
1720
  "absolute",
1713
1721
  "active",
1722
+ "active-color",
1714
1723
  "app",
1715
1724
  "appear",
1716
1725
  "append-icon",
@@ -3432,6 +3441,7 @@
3432
3441
  },
3433
3442
  "VTab": {
3434
3443
  "attributes": [
3444
+ "active-color",
3435
3445
  "append-icon",
3436
3446
  "base-color",
3437
3447
  "border",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.6.3-dev.2024-05-06",
5
+ "version": "3.6.3-dev.2024-05-29",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -752,6 +752,15 @@
752
752
  "type": "boolean"
753
753
  }
754
754
  },
755
+ {
756
+ "name": "activeColor",
757
+ "description": "The applied color when the component is in an active state.",
758
+ "doc-url": "https://vuetifyjs.com/api/VAppBarNavIcon#props",
759
+ "value": {
760
+ "kind": "expression",
761
+ "type": "string"
762
+ }
763
+ },
755
764
  {
756
765
  "name": "baseColor",
757
766
  "description": "Sets the color of component when not focused.",
@@ -4201,6 +4210,15 @@
4201
4210
  "type": "boolean"
4202
4211
  }
4203
4212
  },
4213
+ {
4214
+ "name": "activeColor",
4215
+ "description": "The applied color when the component is in an active state.",
4216
+ "doc-url": "https://vuetifyjs.com/api/VBtn#props",
4217
+ "value": {
4218
+ "kind": "expression",
4219
+ "type": "string"
4220
+ }
4221
+ },
4204
4222
  {
4205
4223
  "name": "baseColor",
4206
4224
  "description": "Sets the color of component when not focused.",
@@ -10747,6 +10765,60 @@
10747
10765
  "type": "boolean"
10748
10766
  }
10749
10767
  },
10768
+ {
10769
+ "name": "height",
10770
+ "description": "Sets the height for the component.",
10771
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10772
+ "value": {
10773
+ "kind": "expression",
10774
+ "type": "string | number"
10775
+ }
10776
+ },
10777
+ {
10778
+ "name": "maxHeight",
10779
+ "description": "Sets the maximum height for the component.",
10780
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10781
+ "value": {
10782
+ "kind": "expression",
10783
+ "type": "string | number"
10784
+ }
10785
+ },
10786
+ {
10787
+ "name": "maxWidth",
10788
+ "description": "Sets the maximum width for the component.",
10789
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10790
+ "value": {
10791
+ "kind": "expression",
10792
+ "type": "string | number"
10793
+ }
10794
+ },
10795
+ {
10796
+ "name": "minHeight",
10797
+ "description": "Sets the minimum height for the component.",
10798
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10799
+ "value": {
10800
+ "kind": "expression",
10801
+ "type": "string | number"
10802
+ }
10803
+ },
10804
+ {
10805
+ "name": "minWidth",
10806
+ "description": "Sets the minimum width for the component.",
10807
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10808
+ "value": {
10809
+ "kind": "expression",
10810
+ "type": "string | number"
10811
+ }
10812
+ },
10813
+ {
10814
+ "name": "width",
10815
+ "description": "Sets the width for the component.",
10816
+ "doc-url": "https://vuetifyjs.com/api/VContainer#props",
10817
+ "value": {
10818
+ "kind": "expression",
10819
+ "type": "string | number"
10820
+ }
10821
+ },
10750
10822
  {
10751
10823
  "name": "tag",
10752
10824
  "description": "Specify a custom tag used on the root element.",
@@ -21258,6 +21330,15 @@
21258
21330
  "type": "boolean"
21259
21331
  }
21260
21332
  },
21333
+ {
21334
+ "name": "activeColor",
21335
+ "description": "The applied color when the component is in an active state.",
21336
+ "doc-url": "https://vuetifyjs.com/api/VFab#props",
21337
+ "value": {
21338
+ "kind": "expression",
21339
+ "type": "string"
21340
+ }
21341
+ },
21261
21342
  {
21262
21343
  "name": "baseColor",
21263
21344
  "description": "Sets the color of component when not focused.",
@@ -40213,6 +40294,15 @@
40213
40294
  "type": "'horizontal' | 'vertical'"
40214
40295
  }
40215
40296
  },
40297
+ {
40298
+ "name": "activeColor",
40299
+ "description": "The applied color when the component is in an active state.",
40300
+ "doc-url": "https://vuetifyjs.com/api/VTab#props",
40301
+ "value": {
40302
+ "kind": "expression",
40303
+ "type": "string"
40304
+ }
40305
+ },
40216
40306
  {
40217
40307
  "name": "baseColor",
40218
40308
  "description": "Sets the color of component when not focused.",