@vuetify/nightly 3.4.0-alpha.1-dev.2023-08-31 → 3.4.0-alpha.1-dev.2023-09-06

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 (59) hide show
  1. package/CHANGELOG.md +9 -2
  2. package/dist/json/attributes.json +36 -0
  3. package/dist/json/tags.json +10 -1
  4. package/dist/json/web-types.json +95 -1
  5. package/dist/vuetify-labs.css +5050 -5042
  6. package/dist/vuetify-labs.d.ts +91 -0
  7. package/dist/vuetify-labs.esm.js +36 -13
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +36 -13
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +121 -111
  12. package/dist/vuetify.d.ts +91 -0
  13. package/dist/vuetify.esm.js +24 -8
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +24 -8
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +18 -18
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAppBar/index.d.mts +8 -0
  21. package/lib/components/VBanner/VBannerActions.mjs +1 -0
  22. package/lib/components/VBanner/VBannerActions.mjs.map +1 -1
  23. package/lib/components/VBtn/VBtn.css +3 -11
  24. package/lib/components/VBtn/VBtn.mjs +2 -0
  25. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  26. package/lib/components/VBtn/VBtn.sass +3 -13
  27. package/lib/components/VBtn/_variables.scss +4 -3
  28. package/lib/components/VBtn/index.d.mts +8 -0
  29. package/lib/components/VCard/VCardActions.mjs +1 -0
  30. package/lib/components/VCard/VCardActions.mjs.map +1 -1
  31. package/lib/components/VExpansionPanel/VExpansionPanel.css +2 -0
  32. package/lib/components/VExpansionPanel/VExpansionPanel.sass +3 -1
  33. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +3 -1
  34. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  35. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +3 -1
  36. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  37. package/lib/components/VExpansionPanel/index.d.mts +24 -0
  38. package/lib/components/VList/VList.mjs +2 -0
  39. package/lib/components/VList/VList.mjs.map +1 -1
  40. package/lib/components/VList/VListItem.css +16 -0
  41. package/lib/components/VList/VListItem.mjs +2 -0
  42. package/lib/components/VList/VListItem.mjs.map +1 -1
  43. package/lib/components/VList/VListItem.sass +20 -0
  44. package/lib/components/VList/_variables.scss +3 -0
  45. package/lib/components/VList/index.d.mts +16 -0
  46. package/lib/components/VSnackbar/VSnackbar.mjs +7 -3
  47. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  48. package/lib/components/VSnackbar/index.d.mts +27 -0
  49. package/lib/components/VTabs/index.d.mts +8 -0
  50. package/lib/components/index.d.mts +91 -0
  51. package/lib/entry-bundler.mjs +1 -1
  52. package/lib/framework.mjs +1 -1
  53. package/lib/labs/VDatePicker/VDatePicker.mjs +0 -2
  54. package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
  55. package/lib/labs/VPicker/VPicker.css +0 -2
  56. package/lib/labs/VPicker/VPicker.mjs +13 -3
  57. package/lib/labs/VPicker/VPicker.mjs.map +1 -1
  58. package/lib/labs/VPicker/VPicker.sass +0 -2
  59. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,8 +1,15 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.4.0-alpha.1-dev.2023-08-31...v) (2023-08-31)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.4.0-alpha.1-dev.2023-09-06...v) (2023-09-06)
2
2
 
3
3
 
4
4
 
5
- # [3.4.0-alpha.1-dev.2023-08-31](https://github.com/vuetifyjs/vuetify/compare/v3.4.0-alpha.1...v3.4.0-alpha.1-dev.2023-08-31) (2023-08-31)
5
+ # [3.4.0-alpha.1-dev.2023-09-06](https://github.com/vuetifyjs/vuetify/compare/v3.4.0-alpha.1...v3.4.0-alpha.1-dev.2023-09-06) (2023-09-06)
6
+
7
+
8
+ ### Features
9
+
10
+ * **VBtn|VListItem:** add new prop named slim ([#17562](https://github.com/vuetifyjs/vuetify/issues/17562)) ([788a583](https://github.com/vuetifyjs/vuetify/commit/788a5839beed07b901feac2ea8417d0c6b7d011c))
11
+ * **VExpansionPanels:** add new prop named static ([#18014](https://github.com/vuetifyjs/vuetify/issues/18014)) ([51f3c14](https://github.com/vuetifyjs/vuetify/commit/51f3c143647737ed07388993ebec7985c1d79a10))
12
+ * **VSnackbar:** add text prop ([44ee8ed](https://github.com/vuetifyjs/vuetify/commit/44ee8ed726d11431eeef24849e6936e2a7cc01ab))
6
13
 
7
14
 
8
15
 
@@ -315,6 +315,10 @@
315
315
  "type": "boolean\n",
316
316
  "description": "Expands the button to 100% of available space."
317
317
  },
318
+ "v-app-bar-nav-icon/slim": {
319
+ "type": "boolean\n",
320
+ "description": "MISSING DESCRIPTION"
321
+ },
318
322
  "v-app-bar-nav-icon/stacked": {
319
323
  "type": "boolean\n",
320
324
  "description": "Displays the button as a flex-column."
@@ -1319,6 +1323,10 @@
1319
1323
  "type": "boolean\n",
1320
1324
  "description": "Expands the button to 100% of available space."
1321
1325
  },
1326
+ "v-btn/slim": {
1327
+ "type": "boolean\n",
1328
+ "description": "MISSING DESCRIPTION"
1329
+ },
1322
1330
  "v-btn/stacked": {
1323
1331
  "type": "boolean\n",
1324
1332
  "description": "Displays the button as a flex-column."
@@ -4107,6 +4115,10 @@
4107
4115
  "type": "string | number\n",
4108
4116
  "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
4109
4117
  },
4118
+ "v-expansion-panel/static": {
4119
+ "type": "boolean\n",
4120
+ "description": "MISSING DESCRIPTION"
4121
+ },
4110
4122
  "v-expansion-panel/rounded": {
4111
4123
  "type": "string | number | boolean\n",
4112
4124
  "description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)."
@@ -4163,6 +4175,10 @@
4163
4175
  "type": "boolean\n",
4164
4176
  "description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
4165
4177
  },
4178
+ "v-expansion-panel-title/static": {
4179
+ "type": "boolean\n",
4180
+ "description": "MISSING DESCRIPTION"
4181
+ },
4166
4182
  "v-expansion-panel-title/color": {
4167
4183
  "type": "string\n",
4168
4184
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
@@ -4191,6 +4207,10 @@
4191
4207
  "type": "any\n",
4192
4208
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
4193
4209
  },
4210
+ "v-expansion-panels/static": {
4211
+ "type": "boolean\n",
4212
+ "description": "MISSING DESCRIPTION"
4213
+ },
4194
4214
  "v-expansion-panels/tag": {
4195
4215
  "type": "string\n",
4196
4216
  "description": "Specify a custom tag used on the root element."
@@ -5099,6 +5119,10 @@
5099
5119
  "type": "unknown[]\n",
5100
5120
  "description": "An array of strings or objects used for automatically generating children components"
5101
5121
  },
5122
+ "v-list/slim": {
5123
+ "type": "boolean\n",
5124
+ "description": "MISSING DESCRIPTION"
5125
+ },
5102
5126
  "v-list/disabled": {
5103
5127
  "type": "boolean\n",
5104
5128
  "description": "Puts all children inputs into a disabled state"
@@ -5299,6 +5323,10 @@
5299
5323
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
5300
5324
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot"
5301
5325
  },
5326
+ "v-list-item/slim": {
5327
+ "type": "boolean\n",
5328
+ "description": "MISSING DESCRIPTION"
5329
+ },
5302
5330
  "v-list-item/ripple": {
5303
5331
  "type": "boolean | { class: string }\n",
5304
5332
  "description": "Applies the [v-ripple](/directives/ripple) directive."
@@ -7775,6 +7803,10 @@
7775
7803
  "type": "string | number\n",
7776
7804
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/slider.json))"
7777
7805
  },
7806
+ "v-snackbar/text": {
7807
+ "type": "string\n",
7808
+ "description": "Specify content text for the component."
7809
+ },
7778
7810
  "v-snackbar/model-value": {
7779
7811
  "type": "boolean\n",
7780
7812
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
@@ -8307,6 +8339,10 @@
8307
8339
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
8308
8340
  "description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot"
8309
8341
  },
8342
+ "v-tab/slim": {
8343
+ "type": "boolean\n",
8344
+ "description": "MISSING DESCRIPTION"
8345
+ },
8310
8346
  "v-tab/stacked": {
8311
8347
  "type": "boolean\n",
8312
8348
  "description": "Displays the tab as a flex-column."
@@ -100,6 +100,7 @@
100
100
  "rounded",
101
101
  "selected-class",
102
102
  "size",
103
+ "slim",
103
104
  "stacked",
104
105
  "symbol",
105
106
  "tag",
@@ -416,6 +417,7 @@
416
417
  "rounded",
417
418
  "selected-class",
418
419
  "size",
420
+ "slim",
419
421
  "stacked",
420
422
  "symbol",
421
423
  "tag",
@@ -1340,6 +1342,7 @@
1340
1342
  "ripple",
1341
1343
  "rounded",
1342
1344
  "selected-class",
1345
+ "static",
1343
1346
  "tag",
1344
1347
  "text",
1345
1348
  "title",
@@ -1360,7 +1363,8 @@
1360
1363
  "expand-icon",
1361
1364
  "hide-actions",
1362
1365
  "readonly",
1363
- "ripple"
1366
+ "ripple",
1367
+ "static"
1364
1368
  ],
1365
1369
  "description": ""
1366
1370
  },
@@ -1374,6 +1378,7 @@
1374
1378
  "multiple",
1375
1379
  "readonly",
1376
1380
  "selected-class",
1381
+ "static",
1377
1382
  "tag",
1378
1383
  "theme",
1379
1384
  "variant"
@@ -1713,6 +1718,7 @@
1713
1718
  "rounded",
1714
1719
  "select-strategy",
1715
1720
  "selected",
1721
+ "slim",
1716
1722
  "tag",
1717
1723
  "theme",
1718
1724
  "variant",
@@ -1771,6 +1777,7 @@
1771
1777
  "replace",
1772
1778
  "ripple",
1773
1779
  "rounded",
1780
+ "slim",
1774
1781
  "subtitle",
1775
1782
  "tag",
1776
1783
  "theme",
@@ -2628,6 +2635,7 @@
2628
2635
  "position",
2629
2636
  "rounded",
2630
2637
  "target",
2638
+ "text",
2631
2639
  "theme",
2632
2640
  "timeout",
2633
2641
  "timer",
@@ -2786,6 +2794,7 @@
2786
2794
  "selected-class",
2787
2795
  "size",
2788
2796
  "slider-color",
2797
+ "slim",
2789
2798
  "stacked",
2790
2799
  "tag",
2791
2800
  "text",
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.4.0-alpha.1-dev.2023-08-31",
5
+ "version": "3.4.0-alpha.1-dev.2023-09-06",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -950,6 +950,16 @@
950
950
  "type": "boolean\n"
951
951
  }
952
952
  },
953
+ {
954
+ "name": "slim",
955
+ "description": "MISSING DESCRIPTION",
956
+ "doc-url": "https://vuetifyjs.com/api/v-app-bar-nav-icon#props",
957
+ "default": "false",
958
+ "value": {
959
+ "kind": "expression",
960
+ "type": "boolean\n"
961
+ }
962
+ },
953
963
  {
954
964
  "name": "stacked",
955
965
  "description": "Displays the button as a flex-column.",
@@ -4195,6 +4205,16 @@
4195
4205
  "type": "boolean\n"
4196
4206
  }
4197
4207
  },
4208
+ {
4209
+ "name": "slim",
4210
+ "description": "MISSING DESCRIPTION",
4211
+ "doc-url": "https://vuetifyjs.com/api/v-btn#props",
4212
+ "default": "false",
4213
+ "value": {
4214
+ "kind": "expression",
4215
+ "type": "boolean\n"
4216
+ }
4217
+ },
4198
4218
  {
4199
4219
  "name": "stacked",
4200
4220
  "description": "Displays the button as a flex-column.",
@@ -17012,6 +17032,16 @@
17012
17032
  "type": "string | number\n"
17013
17033
  }
17014
17034
  },
17035
+ {
17036
+ "name": "static",
17037
+ "description": "MISSING DESCRIPTION",
17038
+ "doc-url": "https://vuetifyjs.com/api/v-expansion-panel#props",
17039
+ "default": "false",
17040
+ "value": {
17041
+ "kind": "expression",
17042
+ "type": "boolean\n"
17043
+ }
17044
+ },
17015
17045
  {
17016
17046
  "name": "rounded",
17017
17047
  "description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
@@ -17216,6 +17246,16 @@
17216
17246
  "description": "",
17217
17247
  "doc-url": "https://vuetifyjs.com/api/v-expansion-panel-title",
17218
17248
  "attributes": [
17249
+ {
17250
+ "name": "static",
17251
+ "description": "MISSING DESCRIPTION",
17252
+ "doc-url": "https://vuetifyjs.com/api/v-expansion-panel-title#props",
17253
+ "default": "false",
17254
+ "value": {
17255
+ "kind": "expression",
17256
+ "type": "boolean\n"
17257
+ }
17258
+ },
17219
17259
  {
17220
17260
  "name": "color",
17221
17261
  "description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)",
@@ -17356,6 +17396,16 @@
17356
17396
  "type": "any\n"
17357
17397
  }
17358
17398
  },
17399
+ {
17400
+ "name": "static",
17401
+ "description": "MISSING DESCRIPTION",
17402
+ "doc-url": "https://vuetifyjs.com/api/v-expansion-panels#props",
17403
+ "default": "false",
17404
+ "value": {
17405
+ "kind": "expression",
17406
+ "type": "boolean\n"
17407
+ }
17408
+ },
17359
17409
  {
17360
17410
  "name": "tag",
17361
17411
  "description": "Specify a custom tag used on the root element.",
@@ -21091,6 +21141,16 @@
21091
21141
  "type": "unknown[]\n"
21092
21142
  }
21093
21143
  },
21144
+ {
21145
+ "name": "slim",
21146
+ "description": "MISSING DESCRIPTION",
21147
+ "doc-url": "https://vuetifyjs.com/api/v-list#props",
21148
+ "default": "false",
21149
+ "value": {
21150
+ "kind": "expression",
21151
+ "type": "boolean\n"
21152
+ }
21153
+ },
21094
21154
  {
21095
21155
  "name": "disabled",
21096
21156
  "description": "Puts all children inputs into a disabled state",
@@ -21759,6 +21819,16 @@
21759
21819
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
21760
21820
  }
21761
21821
  },
21822
+ {
21823
+ "name": "slim",
21824
+ "description": "MISSING DESCRIPTION",
21825
+ "doc-url": "https://vuetifyjs.com/api/v-list-item#props",
21826
+ "default": "false",
21827
+ "value": {
21828
+ "kind": "expression",
21829
+ "type": "boolean\n"
21830
+ }
21831
+ },
21762
21832
  {
21763
21833
  "name": "ripple",
21764
21834
  "description": "Applies the [v-ripple](/directives/ripple) directive.",
@@ -30875,6 +30945,15 @@
30875
30945
  "description": "",
30876
30946
  "doc-url": "https://vuetifyjs.com/api/v-snackbar",
30877
30947
  "attributes": [
30948
+ {
30949
+ "name": "text",
30950
+ "description": "Specify content text for the component.",
30951
+ "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
30952
+ "value": {
30953
+ "kind": "expression",
30954
+ "type": "string\n"
30955
+ }
30956
+ },
30878
30957
  {
30879
30958
  "name": "modelValue",
30880
30959
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array",
@@ -31288,6 +31367,11 @@
31288
31367
  "name": "actions",
31289
31368
  "description": "Used to bind styles to [v-btn](/components/buttons) to match MD2 specification.",
31290
31369
  "doc-url": "https://vuetifyjs.com/api/v-snackbar#slots"
31370
+ },
31371
+ {
31372
+ "name": "text",
31373
+ "description": "Slot for the component's text content",
31374
+ "doc-url": "https://vuetifyjs.com/api/v-snackbar#slots"
31291
31375
  }
31292
31376
  ],
31293
31377
  "vue-model": {
@@ -32722,6 +32806,16 @@
32722
32806
  "type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
32723
32807
  }
32724
32808
  },
32809
+ {
32810
+ "name": "slim",
32811
+ "description": "MISSING DESCRIPTION",
32812
+ "doc-url": "https://vuetifyjs.com/api/v-tab#props",
32813
+ "default": "false",
32814
+ "value": {
32815
+ "kind": "expression",
32816
+ "type": "boolean\n"
32817
+ }
32818
+ },
32725
32819
  {
32726
32820
  "name": "stacked",
32727
32821
  "description": "Displays the tab as a flex-column.",