vuetify 3.5.5 → 3.5.6

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 (45) hide show
  1. package/dist/json/attributes.json +40 -0
  2. package/dist/json/importMap-labs.json +8 -8
  3. package/dist/json/importMap.json +132 -128
  4. package/dist/json/tags.json +15 -0
  5. package/dist/json/web-types.json +292 -1
  6. package/dist/vuetify-labs.css +1632 -1635
  7. package/dist/vuetify-labs.d.ts +242 -1
  8. package/dist/vuetify-labs.esm.js +24 -13
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +24 -13
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +711 -714
  13. package/dist/vuetify.d.ts +281 -39
  14. package/dist/vuetify.esm.js +24 -13
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +24 -13
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +22 -21
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  23. package/lib/components/VCombobox/VCombobox.mjs +3 -1
  24. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  25. package/lib/components/VDataTable/index.d.mts +214 -1
  26. package/lib/components/VDataTable/index.mjs +1 -0
  27. package/lib/components/VDataTable/index.mjs.map +1 -1
  28. package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
  29. package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
  30. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
  31. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  32. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
  33. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  34. package/lib/components/VExpansionPanel/index.d.mts +27 -0
  35. package/lib/components/VSelect/VSelect.mjs +4 -3
  36. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  37. package/lib/components/index.d.mts +241 -1
  38. package/lib/composables/filter.mjs +1 -1
  39. package/lib/composables/filter.mjs.map +1 -1
  40. package/lib/composables/goto.mjs +2 -2
  41. package/lib/composables/goto.mjs.map +1 -1
  42. package/lib/entry-bundler.mjs +1 -1
  43. package/lib/framework.mjs +1 -1
  44. package/lib/index.d.mts +39 -38
  45. package/package.json +2 -2
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.5.5",
5
+ "version": "3.5.6",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -13079,6 +13079,267 @@
13079
13079
  "event": "update:modelValue"
13080
13080
  }
13081
13081
  },
13082
+ {
13083
+ "name": "VDataTableHeaders",
13084
+ "source": {
13085
+ "module": "./src/components/index.ts",
13086
+ "symbol": "VDataTableHeaders"
13087
+ },
13088
+ "description": "",
13089
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers",
13090
+ "attributes": [
13091
+ {
13092
+ "name": "color",
13093
+ "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).",
13094
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13095
+ "value": {
13096
+ "kind": "expression",
13097
+ "type": "string"
13098
+ }
13099
+ },
13100
+ {
13101
+ "name": "sticky",
13102
+ "description": "Sticks the header to the top of the table.",
13103
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13104
+ "default": "false",
13105
+ "value": {
13106
+ "kind": "expression",
13107
+ "type": "boolean"
13108
+ }
13109
+ },
13110
+ {
13111
+ "name": "multiSort",
13112
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))",
13113
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13114
+ "default": "false",
13115
+ "value": {
13116
+ "kind": "expression",
13117
+ "type": "boolean"
13118
+ }
13119
+ },
13120
+ {
13121
+ "name": "sortAscIcon",
13122
+ "description": "Icon used for ascending sort button.",
13123
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13124
+ "default": "'$sortAsc'",
13125
+ "value": {
13126
+ "kind": "expression",
13127
+ "type": "any"
13128
+ }
13129
+ },
13130
+ {
13131
+ "name": "sortDescIcon",
13132
+ "description": "Icon used for descending sort button.",
13133
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13134
+ "default": "'$sortDesc'",
13135
+ "value": {
13136
+ "kind": "expression",
13137
+ "type": "any"
13138
+ }
13139
+ },
13140
+ {
13141
+ "name": "headerProps",
13142
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))",
13143
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13144
+ "value": {
13145
+ "kind": "expression",
13146
+ "type": "unknown"
13147
+ }
13148
+ },
13149
+ {
13150
+ "name": "loading",
13151
+ "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color.",
13152
+ "doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
13153
+ "default": "false",
13154
+ "value": {
13155
+ "kind": "expression",
13156
+ "type": "string | boolean"
13157
+ }
13158
+ }
13159
+ ],
13160
+ "events": [],
13161
+ "slots": [
13162
+ {
13163
+ "name": "headers",
13164
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L25-L35.json))",
13165
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
13166
+ "vue-properties": [
13167
+ {
13168
+ "name": "headers",
13169
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>[][]"
13170
+ },
13171
+ {
13172
+ "name": "columns",
13173
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>[]"
13174
+ },
13175
+ {
13176
+ "name": "sortBy",
13177
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
13178
+ },
13179
+ {
13180
+ "name": "someSelected",
13181
+ "type": "boolean"
13182
+ },
13183
+ {
13184
+ "name": "allSelected",
13185
+ "type": "boolean"
13186
+ },
13187
+ {
13188
+ "name": "toggleSort",
13189
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
13190
+ },
13191
+ {
13192
+ "name": "selectAll",
13193
+ "type": "(value: boolean) => void"
13194
+ },
13195
+ {
13196
+ "name": "getSortIcon",
13197
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
13198
+ },
13199
+ {
13200
+ "name": "isSorted",
13201
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
13202
+ }
13203
+ ]
13204
+ },
13205
+ {
13206
+ "name": "loader",
13207
+ "description": "Slot for custom loader (displayed when [loading](#props-loading) prop is equal to true).",
13208
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
13209
+ "vue-properties": [
13210
+ {
13211
+ "name": "color",
13212
+ "type": "string"
13213
+ },
13214
+ {
13215
+ "name": "isActive",
13216
+ "type": "boolean"
13217
+ }
13218
+ ]
13219
+ },
13220
+ {
13221
+ "name": "header.data-table-select",
13222
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
13223
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
13224
+ "vue-properties": [
13225
+ {
13226
+ "name": "column",
13227
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
13228
+ },
13229
+ {
13230
+ "name": "selectAll",
13231
+ "type": "(value: boolean) => void"
13232
+ },
13233
+ {
13234
+ "name": "isSorted",
13235
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
13236
+ },
13237
+ {
13238
+ "name": "toggleSort",
13239
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
13240
+ },
13241
+ {
13242
+ "name": "sortBy",
13243
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
13244
+ },
13245
+ {
13246
+ "name": "someSelected",
13247
+ "type": "boolean"
13248
+ },
13249
+ {
13250
+ "name": "allSelected",
13251
+ "type": "boolean"
13252
+ },
13253
+ {
13254
+ "name": "getSortIcon",
13255
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
13256
+ }
13257
+ ]
13258
+ },
13259
+ {
13260
+ "name": "header.data-table-expand",
13261
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
13262
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
13263
+ "vue-properties": [
13264
+ {
13265
+ "name": "column",
13266
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
13267
+ },
13268
+ {
13269
+ "name": "selectAll",
13270
+ "type": "(value: boolean) => void"
13271
+ },
13272
+ {
13273
+ "name": "isSorted",
13274
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
13275
+ },
13276
+ {
13277
+ "name": "toggleSort",
13278
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
13279
+ },
13280
+ {
13281
+ "name": "sortBy",
13282
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
13283
+ },
13284
+ {
13285
+ "name": "someSelected",
13286
+ "type": "boolean"
13287
+ },
13288
+ {
13289
+ "name": "allSelected",
13290
+ "type": "boolean"
13291
+ },
13292
+ {
13293
+ "name": "getSortIcon",
13294
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
13295
+ }
13296
+ ]
13297
+ },
13298
+ {
13299
+ "name": "[`header.${string}`]",
13300
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
13301
+ "doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
13302
+ "vue-properties": [
13303
+ {
13304
+ "name": "column",
13305
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
13306
+ },
13307
+ {
13308
+ "name": "selectAll",
13309
+ "type": "(value: boolean) => void"
13310
+ },
13311
+ {
13312
+ "name": "isSorted",
13313
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
13314
+ },
13315
+ {
13316
+ "name": "toggleSort",
13317
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
13318
+ },
13319
+ {
13320
+ "name": "sortBy",
13321
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
13322
+ },
13323
+ {
13324
+ "name": "someSelected",
13325
+ "type": "boolean"
13326
+ },
13327
+ {
13328
+ "name": "allSelected",
13329
+ "type": "boolean"
13330
+ },
13331
+ {
13332
+ "name": "getSortIcon",
13333
+ "type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
13334
+ }
13335
+ ]
13336
+ }
13337
+ ],
13338
+ "vue-model": {
13339
+ "prop": "modelValue",
13340
+ "event": "update:modelValue"
13341
+ }
13342
+ },
13082
13343
  {
13083
13344
  "name": "VDataTableRow",
13084
13345
  "source": {
@@ -18400,6 +18661,16 @@
18400
18661
  "type": "boolean"
18401
18662
  }
18402
18663
  },
18664
+ {
18665
+ "name": "focusable",
18666
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
18667
+ "doc-url": "https://vuetifyjs.com/api/VExpansionPanel#props",
18668
+ "default": "false",
18669
+ "value": {
18670
+ "kind": "expression",
18671
+ "type": "boolean"
18672
+ }
18673
+ },
18403
18674
  {
18404
18675
  "name": "static",
18405
18676
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
@@ -18547,6 +18818,16 @@
18547
18818
  "type": "boolean"
18548
18819
  }
18549
18820
  },
18821
+ {
18822
+ "name": "focusable",
18823
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
18824
+ "doc-url": "https://vuetifyjs.com/api/VExpansionPanelTitle#props",
18825
+ "default": "false",
18826
+ "value": {
18827
+ "kind": "expression",
18828
+ "type": "boolean"
18829
+ }
18830
+ },
18550
18831
  {
18551
18832
  "name": "static",
18552
18833
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
@@ -18668,6 +18949,16 @@
18668
18949
  "type": "string"
18669
18950
  }
18670
18951
  },
18952
+ {
18953
+ "name": "focusable",
18954
+ "description": "Makes the expansion-panel headers focusable.",
18955
+ "doc-url": "https://vuetifyjs.com/api/VExpansionPanels#props",
18956
+ "default": "false",
18957
+ "value": {
18958
+ "kind": "expression",
18959
+ "type": "boolean"
18960
+ }
18961
+ },
18671
18962
  {
18672
18963
  "name": "static",
18673
18964
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanels.json))",