vuetify 3.3.17 → 3.3.19

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 (77) hide show
  1. package/dist/json/attributes.json +25 -9
  2. package/dist/json/importMap.json +4 -4
  3. package/dist/json/tags.json +5 -1
  4. package/dist/json/web-types.json +322 -750
  5. package/dist/vuetify-labs.css +6260 -6265
  6. package/dist/vuetify-labs.d.ts +1175 -2641
  7. package/dist/vuetify-labs.esm.js +71 -50
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +70 -49
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +5632 -5637
  12. package/dist/vuetify.d.ts +50 -50
  13. package/dist/vuetify.esm.js +34 -21
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +34 -21
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +25 -23
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAutocomplete/VAutocomplete.mjs +4 -2
  21. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  22. package/lib/components/VAutocomplete/index.d.mts +12 -12
  23. package/lib/components/VCombobox/VCombobox.mjs +4 -2
  24. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  25. package/lib/components/VCombobox/index.d.mts +12 -12
  26. package/lib/components/VList/VList.mjs +2 -1
  27. package/lib/components/VList/VList.mjs.map +1 -1
  28. package/lib/components/VList/VListChildren.mjs +12 -7
  29. package/lib/components/VList/VListChildren.mjs.map +1 -1
  30. package/lib/components/VList/index.d.mts +10 -10
  31. package/lib/components/VSelect/VSelect.mjs +3 -1
  32. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  33. package/lib/components/VSelect/index.d.mts +12 -12
  34. package/lib/components/VTable/VTable.css +4 -2
  35. package/lib/components/VTable/VTable.sass +3 -1
  36. package/lib/components/VTable/_variables.scss +1 -1
  37. package/lib/components/VTextField/VTextField.mjs +2 -2
  38. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  39. package/lib/components/VTextField/index.d.mts +6 -6
  40. package/lib/components/VTimeline/VTimeline.css +15 -22
  41. package/lib/components/VTimeline/VTimeline.sass +15 -25
  42. package/lib/components/index.d.mts +49 -49
  43. package/lib/entry-bundler.mjs +1 -1
  44. package/lib/framework.mjs +1 -1
  45. package/lib/index.d.mts +1 -1
  46. package/lib/labs/VBottomSheet/VBottomSheet.mjs +2 -1
  47. package/lib/labs/VBottomSheet/VBottomSheet.mjs.map +1 -1
  48. package/lib/labs/VDataIterator/index.d.mts +66 -48
  49. package/lib/labs/VDataTable/VDataTableRow.mjs +8 -6
  50. package/lib/labs/VDataTable/VDataTableRow.mjs.map +1 -1
  51. package/lib/labs/VDataTable/VDataTableRows.mjs +6 -4
  52. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  53. package/lib/labs/VDataTable/VDataTableServer.mjs +1 -2
  54. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  55. package/lib/labs/VDataTable/VDataTableVirtual.mjs +1 -2
  56. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  57. package/lib/labs/VDataTable/composables/headers.mjs +5 -7
  58. package/lib/labs/VDataTable/composables/headers.mjs.map +1 -1
  59. package/lib/labs/VDataTable/composables/items.mjs +1 -1
  60. package/lib/labs/VDataTable/composables/items.mjs.map +1 -1
  61. package/lib/labs/VDataTable/composables/select.mjs +14 -8
  62. package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
  63. package/lib/labs/VDataTable/composables/sort.mjs +1 -0
  64. package/lib/labs/VDataTable/composables/sort.mjs.map +1 -1
  65. package/lib/labs/VDataTable/index.d.mts +1135 -2614
  66. package/lib/labs/VDataTable/types.mjs.map +1 -1
  67. package/lib/labs/VDateInput/index.d.mts +6 -6
  68. package/lib/labs/VDatePicker/VDatePicker.mjs +1 -1
  69. package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
  70. package/lib/labs/VOtpInput/VOtpInput.mjs +1 -1
  71. package/lib/labs/VOtpInput/VOtpInput.mjs.map +1 -1
  72. package/lib/labs/components.d.mts +1393 -2858
  73. package/lib/labs/date/adapters/vuetify.mjs +2 -2
  74. package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
  75. package/lib/util/helpers.mjs +2 -1
  76. package/lib/util/helpers.mjs.map +1 -1
  77. package/package.json +2 -2
@@ -221,7 +221,7 @@
221
221
  },
222
222
  "v-app-bar-nav-icon/flat": {
223
223
  "type": "boolean\n",
224
- "description": "Removes the button box shadow."
224
+ "description": "Removes the button box shadow. This is different than using the 'flat' variant."
225
225
  },
226
226
  "v-app-bar-nav-icon/border": {
227
227
  "type": "string | number | boolean\n",
@@ -656,7 +656,7 @@
656
656
  "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
657
657
  },
658
658
  "v-autocomplete/counter-value": {
659
- "type": "(value: any) => number\n",
659
+ "type": "number | ((value: any) => number)\n",
660
660
  "description": "Function returns the counter display text."
661
661
  },
662
662
  "v-autocomplete/model-modifiers": {
@@ -1213,7 +1213,7 @@
1213
1213
  },
1214
1214
  "v-btn/flat": {
1215
1215
  "type": "boolean\n",
1216
- "description": "Removes the button box shadow."
1216
+ "description": "Removes the button box shadow. This is different than using the 'flat' variant."
1217
1217
  },
1218
1218
  "v-btn/border": {
1219
1219
  "type": "string | number | boolean\n",
@@ -2680,7 +2680,7 @@
2680
2680
  "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
2681
2681
  },
2682
2682
  "v-combobox/counter-value": {
2683
- "type": "(value: any) => number\n",
2683
+ "type": "number | ((value: any) => number)\n",
2684
2684
  "description": "Function returns the counter display text."
2685
2685
  },
2686
2686
  "v-combobox/model-modifiers": {
@@ -2771,6 +2771,10 @@
2771
2771
  "type": "boolean\n",
2772
2772
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
2773
2773
  },
2774
+ "v-data-iterator/value-comparator": {
2775
+ "type": "(a: any, b: any) => boolean\n",
2776
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2777
+ },
2774
2778
  "v-data-iterator/item-selectable": {
2775
2779
  "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>\n",
2776
2780
  "description": "Property on supplied `items` that contains the boolean value indicating if the item is selectable."
@@ -2903,6 +2907,10 @@
2903
2907
  "type": "boolean\n",
2904
2908
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
2905
2909
  },
2910
+ "v-data-table/value-comparator": {
2911
+ "type": "(a: any, b: any) => boolean\n",
2912
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
2913
+ },
2906
2914
  "v-data-table/hover": {
2907
2915
  "type": "boolean\n",
2908
2916
  "description": "Adds a hover effects to a table rows."
@@ -3036,15 +3044,15 @@
3036
3044
  "description": "Show current page number between prev/next icons."
3037
3045
  },
3038
3046
  "v-data-table-row/item": {
3039
- "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L34-L40\" target=\"_blank\">DataTableItem</a>\n",
3047
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L37-L43\" target=\"_blank\">DataTableItem</a>\n",
3040
3048
  "description": "Data (key, index and column values) of the displayed item."
3041
3049
  },
3042
3050
  "v-data-table-row/index": {
3043
- "type": "Number\n",
3051
+ "type": "number\n",
3044
3052
  "description": "Row index."
3045
3053
  },
3046
3054
  "v-data-table-rows/items": {
3047
- "type": "(<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L34-L40\" target=\"_blank\">DataTableItem</a> | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/composables/group.ts#L18-L25\" target=\"_blank\">Group</a>)[]\n",
3055
+ "type": "(<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/types.ts#L37-L43\" target=\"_blank\">DataTableItem</a> | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VDataTable/composables/group.ts#L18-L25\" target=\"_blank\">Group</a>)[]\n",
3048
3056
  "description": "An array of strings or objects used for automatically generating children components."
3049
3057
  },
3050
3058
  "v-data-table-rows/loading": {
@@ -3127,6 +3135,10 @@
3127
3135
  "type": "boolean\n",
3128
3136
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3129
3137
  },
3138
+ "v-data-table-server/value-comparator": {
3139
+ "type": "(a: any, b: any) => boolean\n",
3140
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3141
+ },
3130
3142
  "v-data-table-server/hover": {
3131
3143
  "type": "boolean\n",
3132
3144
  "description": "Will add a hover effect to a table's row when the mouse is over it."
@@ -3343,6 +3355,10 @@
3343
3355
  "type": "boolean\n",
3344
3356
  "description": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**."
3345
3357
  },
3358
+ "v-data-table-virtual/value-comparator": {
3359
+ "type": "(a: any, b: any) => boolean\n",
3360
+ "description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
3361
+ },
3346
3362
  "v-data-table-virtual/hover": {
3347
3363
  "type": "boolean\n",
3348
3364
  "description": "Will add a hover effect to a table's row when the mouse is over it."
@@ -7132,7 +7148,7 @@
7132
7148
  "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
7133
7149
  },
7134
7150
  "v-select/counter-value": {
7135
- "type": "(value: any) => number\n",
7151
+ "type": "number | ((value: any) => number)\n",
7136
7152
  "description": "Function returns the counter display text."
7137
7153
  },
7138
7154
  "v-select/model-modifiers": {
@@ -8596,7 +8612,7 @@
8596
8612
  "description": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation."
8597
8613
  },
8598
8614
  "v-text-field/counter-value": {
8599
- "type": "(value: any) => number\n",
8615
+ "type": "number | ((value: any) => number)\n",
8600
8616
  "description": "Function returns the counter display text."
8601
8617
  },
8602
8618
  "v-text-field/model-modifiers": {
@@ -276,14 +276,14 @@
276
276
  "from": "components/VNavigationDrawer/index.mjs",
277
277
  "styles": []
278
278
  },
279
- "VOverlay": {
280
- "from": "components/VOverlay/index.mjs",
281
- "styles": []
282
- },
283
279
  "VPagination": {
284
280
  "from": "components/VPagination/index.mjs",
285
281
  "styles": []
286
282
  },
283
+ "VOverlay": {
284
+ "from": "components/VOverlay/index.mjs",
285
+ "styles": []
286
+ },
287
287
  "VProgressCircular": {
288
288
  "from": "components/VProgressCircular/index.mjs",
289
289
  "styles": []
@@ -905,7 +905,8 @@
905
905
  "show-expand",
906
906
  "show-select",
907
907
  "sort-by",
908
- "tag"
908
+ "tag",
909
+ "value-comparator"
909
910
  ],
910
911
  "description": ""
911
912
  },
@@ -963,6 +964,7 @@
963
964
  "sticky",
964
965
  "tag",
965
966
  "theme",
967
+ "value-comparator",
966
968
  "width"
967
969
  ],
968
970
  "description": ""
@@ -1039,6 +1041,7 @@
1039
1041
  "sticky",
1040
1042
  "tag",
1041
1043
  "theme",
1044
+ "value-comparator",
1042
1045
  "width"
1043
1046
  ],
1044
1047
  "description": ""
@@ -1084,6 +1087,7 @@
1084
1087
  "sticky",
1085
1088
  "tag",
1086
1089
  "theme",
1090
+ "value-comparator",
1087
1091
  "width"
1088
1092
  ],
1089
1093
  "description": ""