vuetify 3.3.20 → 3.3.22

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 (85) hide show
  1. package/dist/json/attributes.json +222 -6
  2. package/dist/json/importMap.json +50 -50
  3. package/dist/json/tags.json +60 -3
  4. package/dist/json/web-types.json +977 -80
  5. package/dist/vuetify-labs.css +5608 -5595
  6. package/dist/vuetify-labs.d.ts +273 -67
  7. package/dist/vuetify-labs.esm.js +97 -29
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +97 -29
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +4408 -4399
  12. package/dist/vuetify.d.ts +16 -14
  13. package/dist/vuetify.esm.js +31 -5
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +31 -5
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +798 -795
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/blueprints/index.d.mts +2 -0
  21. package/lib/blueprints/md1.d.mts +2 -0
  22. package/lib/blueprints/md2.d.mts +2 -0
  23. package/lib/blueprints/md3.d.mts +2 -0
  24. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.sass +2 -2
  26. package/lib/components/VAutocomplete/_variables.scss +1 -0
  27. package/lib/components/VCard/VCard.css +3 -1
  28. package/lib/components/VCard/VCard.sass +2 -1
  29. package/lib/components/VCard/_variables.scss +7 -5
  30. package/lib/components/VChip/VChip.css +67 -67
  31. package/lib/components/VChip/_variables.scss +1 -1
  32. package/lib/components/VColorPicker/VColorPickerCanvas.mjs +1 -0
  33. package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
  34. package/lib/components/VCombobox/VCombobox.mjs +3 -3
  35. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  36. package/lib/components/VField/VField.css +3 -0
  37. package/lib/components/VField/VField.sass +3 -0
  38. package/lib/components/VField/_variables.scss +1 -0
  39. package/lib/components/VList/VListItem.css +0 -4
  40. package/lib/components/VList/VListItem.sass +0 -5
  41. package/lib/components/VNavigationDrawer/VNavigationDrawer.css +5 -0
  42. package/lib/components/VNavigationDrawer/VNavigationDrawer.sass +4 -0
  43. package/lib/components/VTable/VTable.css +3 -0
  44. package/lib/components/VTable/VTable.sass +3 -0
  45. package/lib/components/VToolbar/_variables.scss +6 -3
  46. package/lib/entry-bundler.mjs +1 -1
  47. package/lib/framework.mjs +1 -1
  48. package/lib/index.d.mts +16 -14
  49. package/lib/labs/VDataTable/VDataTable.css +0 -6
  50. package/lib/labs/VDataTable/VDataTable.sass +0 -1
  51. package/lib/labs/VDataTable/VDataTableFooter.mjs +12 -4
  52. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
  53. package/lib/labs/VDataTable/index.d.mts +48 -48
  54. package/lib/labs/VDatePicker/VDatePickerMonth.mjs +14 -2
  55. package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  56. package/lib/labs/VDatePicker/index.d.mts +18 -0
  57. package/lib/labs/VDateRangePicker/index.d.mts +12 -0
  58. package/lib/labs/VOtpInput/VOtpInput.css +3 -2
  59. package/lib/labs/VOtpInput/VOtpInput.mjs +7 -4
  60. package/lib/labs/VOtpInput/VOtpInput.mjs.map +1 -1
  61. package/lib/labs/VOtpInput/VOtpInput.sass +9 -8
  62. package/lib/labs/VOtpInput/_variables.scss +9 -0
  63. package/lib/labs/VStepper/VStepper.css +9 -0
  64. package/lib/labs/VStepper/VStepper.mjs +1 -2
  65. package/lib/labs/VStepper/VStepper.mjs.map +1 -1
  66. package/lib/labs/VStepper/VStepper.sass +17 -8
  67. package/lib/labs/VStepper/VStepperActions.mjs +34 -13
  68. package/lib/labs/VStepper/VStepperActions.mjs.map +1 -1
  69. package/lib/labs/VStepper/VStepperItem.mjs.map +1 -1
  70. package/lib/labs/VStepper/VStepperItem.sass +15 -15
  71. package/lib/labs/VStepper/_variables.scss +24 -1
  72. package/lib/labs/VStepper/index.d.mts +205 -19
  73. package/lib/labs/components.d.mts +271 -67
  74. package/lib/labs/date/DateAdapter.mjs.map +1 -1
  75. package/lib/labs/date/adapters/vuetify.d.mts +4 -0
  76. package/lib/labs/date/adapters/vuetify.mjs +18 -1
  77. package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
  78. package/lib/labs/date/index.d.mts +4 -0
  79. package/lib/locale/de.mjs +20 -20
  80. package/lib/locale/de.mjs.map +1 -1
  81. package/lib/locale/nl.mjs +22 -22
  82. package/lib/locale/nl.mjs.map +1 -1
  83. package/lib/util/helpers.mjs +4 -0
  84. package/lib/util/helpers.mjs.map +1 -1
  85. package/package.json +2 -2
@@ -3036,7 +3036,7 @@
3036
3036
  "description": "Label for last page."
3037
3037
  },
3038
3038
  "v-data-table/items-per-page-options": {
3039
- "type": "{ title: string; value: number }[]\n",
3039
+ "type": "(number | { title: string; value: number })[]\n",
3040
3040
  "description": "Array of options to show in the items-per-page dropdown."
3041
3041
  },
3042
3042
  "v-data-table/show-current-page": {
@@ -3268,7 +3268,7 @@
3268
3268
  "description": "Label for last page."
3269
3269
  },
3270
3270
  "v-data-table-server/items-per-page-options": {
3271
- "type": "{ title: string; value: number }[]\n",
3271
+ "type": "(number | { title: string; value: number })[]\n",
3272
3272
  "description": "Array of options to show in the items-per-page dropdown."
3273
3273
  },
3274
3274
  "v-data-table-server/show-current-page": {
@@ -3507,6 +3507,10 @@
3507
3507
  "type": "'month' | 'year'\n",
3508
3508
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerControls.json))"
3509
3509
  },
3510
+ "v-date-card/allowed-dates": {
3511
+ "type": "Function | unknown[]\n",
3512
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonth.json))"
3513
+ },
3510
3514
  "v-date-card/show-adjacent-months": {
3511
3515
  "type": "boolean\n",
3512
3516
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonth.json))"
@@ -3659,6 +3663,10 @@
3659
3663
  "type": "'month' | 'year'\n",
3660
3664
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerControls.json))"
3661
3665
  },
3666
+ "v-date-picker/allowed-dates": {
3667
+ "type": "Function | unknown[]\n",
3668
+ "description": "Restricts which dates can be selected."
3669
+ },
3662
3670
  "v-date-picker/show-adjacent-months": {
3663
3671
  "type": "boolean\n",
3664
3672
  "description": "Toggles visibility of days from previous and next months."
@@ -3771,6 +3779,10 @@
3771
3779
  "type": "any\n",
3772
3780
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/date.json))"
3773
3781
  },
3782
+ "v-date-picker-month/allowed-dates": {
3783
+ "type": "Function | unknown[]\n",
3784
+ "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonth.json))"
3785
+ },
3774
3786
  "v-date-picker-month/show-adjacent-months": {
3775
3787
  "type": "boolean\n",
3776
3788
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDatePickerMonth.json))"
@@ -5729,11 +5741,11 @@
5729
5741
  },
5730
5742
  "v-otp-input/autofocus": {
5731
5743
  "type": "boolean\n",
5732
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VOtpInput.json))"
5744
+ "description": "Automatically focuses the first input on page load"
5733
5745
  },
5734
5746
  "v-otp-input/placeholder": {
5735
5747
  "type": "string\n",
5736
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VOtpInput.json))"
5748
+ "description": "Sets the input’s placeholder text."
5737
5749
  },
5738
5750
  "v-otp-input/focused": {
5739
5751
  "type": "boolean\n",
@@ -5749,11 +5761,11 @@
5749
5761
  },
5750
5762
  "v-otp-input/divider": {
5751
5763
  "type": "string\n",
5752
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VOtpInput.json))"
5764
+ "description": "Specifies the dividing character between items."
5753
5765
  },
5754
5766
  "v-otp-input/focus-all": {
5755
5767
  "type": "boolean\n",
5756
- "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VOtpInput.json))"
5768
+ "description": "Puts all inputs into a focus state when any are focused"
5757
5769
  },
5758
5770
  "v-overlay/model-value": {
5759
5771
  "type": "boolean\n",
@@ -7879,10 +7891,214 @@
7879
7891
  "type": "string\n",
7880
7892
  "description": "Specify a custom tag used on the root element."
7881
7893
  },
7894
+ "v-stepper/flat": {
7895
+ "type": "boolean\n",
7896
+ "description": "Removes the stepper's elevation."
7897
+ },
7898
+ "v-stepper/border": {
7899
+ "type": "string | number | boolean\n",
7900
+ "description": "Applies border styles to component."
7901
+ },
7902
+ "v-stepper/model-value": {
7903
+ "type": "any\n",
7904
+ "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
7905
+ },
7906
+ "v-stepper/height": {
7907
+ "type": "string | number\n",
7908
+ "description": "Sets the height for the component."
7909
+ },
7910
+ "v-stepper/max-height": {
7911
+ "type": "string | number\n",
7912
+ "description": "Sets the maximum height for the component."
7913
+ },
7914
+ "v-stepper/max-width": {
7915
+ "type": "string | number\n",
7916
+ "description": "Sets the maximum width for the component."
7917
+ },
7918
+ "v-stepper/min-height": {
7919
+ "type": "string | number\n",
7920
+ "description": "Sets the minimum height for the component."
7921
+ },
7922
+ "v-stepper/min-width": {
7923
+ "type": "string | number\n",
7924
+ "description": "Sets the minimum width for the component."
7925
+ },
7926
+ "v-stepper/width": {
7927
+ "type": "string | number\n",
7928
+ "description": "Sets the width for the component."
7929
+ },
7930
+ "v-stepper/elevation": {
7931
+ "type": "string | number\n",
7932
+ "description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
7933
+ },
7934
+ "v-stepper/location": {
7935
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
7936
+ "description": "Specifies the component's location. Can combine by using a space separated string."
7937
+ },
7938
+ "v-stepper/position": {
7939
+ "type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
7940
+ "description": "Sets the position for the component."
7941
+ },
7942
+ "v-stepper/rounded": {
7943
+ "type": "string | number | boolean\n",
7944
+ "description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)."
7945
+ },
7946
+ "v-stepper/tag": {
7947
+ "type": "string\n",
7948
+ "description": "Specify a custom tag used on the root element."
7949
+ },
7950
+ "v-stepper/theme": {
7951
+ "type": "string\n",
7952
+ "description": "Specify a theme for this component and all of its children."
7953
+ },
7954
+ "v-stepper/color": {
7955
+ "type": "string\n",
7956
+ "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)."
7957
+ },
7958
+ "v-stepper/items": {
7959
+ "type": "(string | Record<string, any>)[]\n",
7960
+ "description": "An array of strings or objects used for automatically generating children components."
7961
+ },
7962
+ "v-stepper/disabled": {
7963
+ "type": "boolean\n",
7964
+ "description": "Puts all children components into a disabled state."
7965
+ },
7966
+ "v-stepper/selected-class": {
7967
+ "type": "string\n",
7968
+ "description": "Configure the active CSS class applied when an item is selected."
7969
+ },
7970
+ "v-stepper/multiple": {
7971
+ "type": "boolean\n",
7972
+ "description": "Allows one to select multiple items."
7973
+ },
7974
+ "v-stepper/item-title": {
7975
+ "type": "string\n",
7976
+ "description": "Property on supplied `items` that contains its title."
7977
+ },
7978
+ "v-stepper/item-value": {
7979
+ "type": "string\n",
7980
+ "description": "Property on supplied `items` that contains its value."
7981
+ },
7982
+ "v-stepper/bg-color": {
7983
+ "type": "string\n",
7984
+ "description": "Applies specified color to the control's background. Used on components that also support the **color** prop. - supports utility colors (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)."
7985
+ },
7986
+ "v-stepper/max": {
7987
+ "type": "number\n",
7988
+ "description": "Sets a maximum number of selections that can be made."
7989
+ },
7990
+ "v-stepper/mandatory": {
7991
+ "type": "boolean | 'force'\n",
7992
+ "description": "Forces at least one item to always be selected (if available)."
7993
+ },
7994
+ "v-stepper/hide-actions": {
7995
+ "type": "boolean\n",
7996
+ "description": "Hide actions bar (prev and next buttons)."
7997
+ },
7998
+ "v-stepper/mobile": {
7999
+ "type": "boolean\n",
8000
+ "description": "Forces the stepper into a mobile state, removing labels from stepper items."
8001
+ },
8002
+ "v-stepper/alt-labels": {
8003
+ "type": "boolean\n",
8004
+ "description": "Places the labels beneath the step."
8005
+ },
8006
+ "v-stepper/editable": {
8007
+ "type": "boolean\n",
8008
+ "description": "Marks step as editable."
8009
+ },
8010
+ "v-stepper/non-linear": {
8011
+ "type": "boolean\n",
8012
+ "description": "Allow user to jump to any step."
8013
+ },
8014
+ "v-stepper/prev-text": {
8015
+ "type": "string\n",
8016
+ "description": "The text used for the Prev button."
8017
+ },
8018
+ "v-stepper/next-text": {
8019
+ "type": "string\n",
8020
+ "description": "The text used for the Next button."
8021
+ },
8022
+ "v-stepper-actions/color": {
8023
+ "type": "string\n",
8024
+ "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)."
8025
+ },
8026
+ "v-stepper-actions/disabled": {
8027
+ "type": "boolean | 'next' | 'prev'\n",
8028
+ "description": "Removes the ability to click or target the component."
8029
+ },
8030
+ "v-stepper-actions/prev-text": {
8031
+ "type": "string\n",
8032
+ "description": "The text used for the Prev button."
8033
+ },
8034
+ "v-stepper-actions/next-text": {
8035
+ "type": "string\n",
8036
+ "description": "The text used for the Next button."
8037
+ },
7882
8038
  "v-stepper-header/tag": {
7883
8039
  "type": "string\n",
7884
8040
  "description": "Specify a custom tag used on the root element."
7885
8041
  },
8042
+ "v-stepper-item/title": {
8043
+ "type": "string\n",
8044
+ "description": "Specify a title text for the component."
8045
+ },
8046
+ "v-stepper-item/icon": {
8047
+ "type": "string\n",
8048
+ "description": "Apply a specific icon using the [v-icon](/components/icons/) component."
8049
+ },
8050
+ "v-stepper-item/error": {
8051
+ "type": "boolean\n",
8052
+ "description": "Puts the stepper item in a manual error state."
8053
+ },
8054
+ "v-stepper-item/color": {
8055
+ "type": "string\n",
8056
+ "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)."
8057
+ },
8058
+ "v-stepper-item/value": {
8059
+ "type": "any\n",
8060
+ "description": "The value used when the component is selected in a group. If not provided, a unique ID will be used."
8061
+ },
8062
+ "v-stepper-item/ripple": {
8063
+ "type": "boolean | { class: string }\n",
8064
+ "description": "Applies the [v-ripple](/directives/ripple) directive."
8065
+ },
8066
+ "v-stepper-item/disabled": {
8067
+ "type": "boolean\n",
8068
+ "description": "Removes the ability to click or target the component."
8069
+ },
8070
+ "v-stepper-item/selected-class": {
8071
+ "type": "string\n",
8072
+ "description": "Configure the active CSS class applied when an item is selected."
8073
+ },
8074
+ "v-stepper-item/rules": {
8075
+ "type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/labs/VStepper/VStepperItem.tsx#L39-L39\" target=\"_blank\">ValidationRule</a>[]\n",
8076
+ "description": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`."
8077
+ },
8078
+ "v-stepper-item/subtitle": {
8079
+ "type": "string\n",
8080
+ "description": "Specify a subtitle text for the component."
8081
+ },
8082
+ "v-stepper-item/editable": {
8083
+ "type": "boolean\n",
8084
+ "description": "Marks step as editable."
8085
+ },
8086
+ "v-stepper-item/complete": {
8087
+ "type": "boolean\n",
8088
+ "description": "Marks step as complete."
8089
+ },
8090
+ "v-stepper-item/complete-icon": {
8091
+ "type": "string\n",
8092
+ "description": "Icon to display when step is marked as completed."
8093
+ },
8094
+ "v-stepper-item/edit-icon": {
8095
+ "type": "string\n",
8096
+ "description": "Icon to display when step is editable."
8097
+ },
8098
+ "v-stepper-item/error-icon": {
8099
+ "type": "string\n",
8100
+ "description": "Icon to display when step has an error."
8101
+ },
7886
8102
  "v-stepper-window/model-value": {
7887
8103
  "type": "any\n",
7888
8104
  "description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array."
@@ -1,9 +1,5 @@
1
1
  {
2
2
  "components": {
3
- "VSwitch": {
4
- "from": "components/VSwitch/index.mjs",
5
- "styles": []
6
- },
7
3
  "VSystemBar": {
8
4
  "from": "components/VSystemBar/index.mjs",
9
5
  "styles": []
@@ -16,6 +12,42 @@
16
12
  "from": "components/VTabs/index.mjs",
17
13
  "styles": []
18
14
  },
15
+ "VTable": {
16
+ "from": "components/VTable/index.mjs",
17
+ "styles": []
18
+ },
19
+ "VTextarea": {
20
+ "from": "components/VTextarea/index.mjs",
21
+ "styles": []
22
+ },
23
+ "VTextField": {
24
+ "from": "components/VTextField/index.mjs",
25
+ "styles": []
26
+ },
27
+ "VTimeline": {
28
+ "from": "components/VTimeline/index.mjs",
29
+ "styles": []
30
+ },
31
+ "VTimelineItem": {
32
+ "from": "components/VTimeline/index.mjs",
33
+ "styles": []
34
+ },
35
+ "VToolbar": {
36
+ "from": "components/VToolbar/index.mjs",
37
+ "styles": []
38
+ },
39
+ "VToolbarTitle": {
40
+ "from": "components/VToolbar/index.mjs",
41
+ "styles": []
42
+ },
43
+ "VToolbarItems": {
44
+ "from": "components/VToolbar/index.mjs",
45
+ "styles": []
46
+ },
47
+ "VTooltip": {
48
+ "from": "components/VTooltip/index.mjs",
49
+ "styles": []
50
+ },
19
51
  "VApp": {
20
52
  "from": "components/VApp/index.mjs",
21
53
  "styles": []
@@ -52,18 +84,6 @@
52
84
  "from": "components/VBadge/index.mjs",
53
85
  "styles": []
54
86
  },
55
- "VBanner": {
56
- "from": "components/VBanner/index.mjs",
57
- "styles": []
58
- },
59
- "VBannerActions": {
60
- "from": "components/VBanner/index.mjs",
61
- "styles": []
62
- },
63
- "VBannerText": {
64
- "from": "components/VBanner/index.mjs",
65
- "styles": []
66
- },
67
87
  "VBottomNavigation": {
68
88
  "from": "components/VBottomNavigation/index.mjs",
69
89
  "styles": []
@@ -348,48 +368,32 @@
348
368
  "from": "components/VSnackbar/index.mjs",
349
369
  "styles": []
350
370
  },
351
- "VTable": {
352
- "from": "components/VTable/index.mjs",
353
- "styles": []
354
- },
355
- "VTextarea": {
356
- "from": "components/VTextarea/index.mjs",
357
- "styles": []
358
- },
359
- "VTextField": {
360
- "from": "components/VTextField/index.mjs",
361
- "styles": []
362
- },
363
- "VTimeline": {
364
- "from": "components/VTimeline/index.mjs",
365
- "styles": []
366
- },
367
- "VTimelineItem": {
368
- "from": "components/VTimeline/index.mjs",
371
+ "VSwitch": {
372
+ "from": "components/VSwitch/index.mjs",
369
373
  "styles": []
370
374
  },
371
- "VToolbar": {
372
- "from": "components/VToolbar/index.mjs",
375
+ "VWindow": {
376
+ "from": "components/VWindow/index.mjs",
373
377
  "styles": []
374
378
  },
375
- "VToolbarTitle": {
376
- "from": "components/VToolbar/index.mjs",
379
+ "VWindowItem": {
380
+ "from": "components/VWindow/index.mjs",
377
381
  "styles": []
378
382
  },
379
- "VToolbarItems": {
380
- "from": "components/VToolbar/index.mjs",
383
+ "VBanner": {
384
+ "from": "components/VBanner/index.mjs",
381
385
  "styles": []
382
386
  },
383
- "VTooltip": {
384
- "from": "components/VTooltip/index.mjs",
387
+ "VBannerActions": {
388
+ "from": "components/VBanner/index.mjs",
385
389
  "styles": []
386
390
  },
387
- "VWindow": {
388
- "from": "components/VWindow/index.mjs",
391
+ "VBannerText": {
392
+ "from": "components/VBanner/index.mjs",
389
393
  "styles": []
390
394
  },
391
- "VWindowItem": {
392
- "from": "components/VWindow/index.mjs",
395
+ "VThemeProvider": {
396
+ "from": "components/VThemeProvider/index.mjs",
393
397
  "styles": []
394
398
  },
395
399
  "VDefaultsProvider": {
@@ -456,10 +460,6 @@
456
460
  "from": "components/VResponsive/index.mjs",
457
461
  "styles": []
458
462
  },
459
- "VThemeProvider": {
460
- "from": "components/VThemeProvider/index.mjs",
461
- "styles": []
462
- },
463
463
  "VValidation": {
464
464
  "from": "components/VValidation/index.mjs",
465
465
  "styles": []
@@ -1094,6 +1094,7 @@
1094
1094
  },
1095
1095
  "v-date-card": {
1096
1096
  "attributes": [
1097
+ "allowed-dates",
1097
1098
  "cancel-text",
1098
1099
  "color",
1099
1100
  "disabled",
@@ -1123,6 +1124,7 @@
1123
1124
  },
1124
1125
  "v-date-picker": {
1125
1126
  "attributes": [
1127
+ "allowed-dates",
1126
1128
  "bg-color",
1127
1129
  "border",
1128
1130
  "calendar-icon",
@@ -1192,6 +1194,7 @@
1192
1194
  },
1193
1195
  "v-date-picker-month": {
1194
1196
  "attributes": [
1197
+ "allowed-dates",
1195
1198
  "color",
1196
1199
  "display-date",
1197
1200
  "format",
@@ -2632,11 +2635,49 @@
2632
2635
  "description": ""
2633
2636
  },
2634
2637
  "v-stepper": {
2635
- "attributes": [],
2638
+ "attributes": [
2639
+ "alt-labels",
2640
+ "bg-color",
2641
+ "border",
2642
+ "color",
2643
+ "disabled",
2644
+ "editable",
2645
+ "elevation",
2646
+ "flat",
2647
+ "height",
2648
+ "hide-actions",
2649
+ "item-title",
2650
+ "item-value",
2651
+ "items",
2652
+ "location",
2653
+ "mandatory",
2654
+ "max",
2655
+ "max-height",
2656
+ "max-width",
2657
+ "min-height",
2658
+ "min-width",
2659
+ "mobile",
2660
+ "model-value",
2661
+ "multiple",
2662
+ "next-text",
2663
+ "non-linear",
2664
+ "position",
2665
+ "prev-text",
2666
+ "rounded",
2667
+ "selected-class",
2668
+ "tag",
2669
+ "theme",
2670
+ "width"
2671
+ ],
2636
2672
  "description": ""
2637
2673
  },
2638
2674
  "v-stepper-actions": {
2639
- "attributes": [],
2675
+ "attributes": [
2676
+ "color",
2677
+ "disabled",
2678
+ "next-text",
2679
+ "prev-text"
2680
+ ],
2640
2681
  "description": ""
2641
2682
  },
2642
2683
  "v-stepper-header": {
@@ -2646,7 +2687,23 @@
2646
2687
  "description": ""
2647
2688
  },
2648
2689
  "v-stepper-item": {
2649
- "attributes": [],
2690
+ "attributes": [
2691
+ "color",
2692
+ "complete",
2693
+ "complete-icon",
2694
+ "disabled",
2695
+ "edit-icon",
2696
+ "editable",
2697
+ "error",
2698
+ "error-icon",
2699
+ "icon",
2700
+ "ripple",
2701
+ "rules",
2702
+ "selected-class",
2703
+ "subtitle",
2704
+ "title",
2705
+ "value"
2706
+ ],
2650
2707
  "description": ""
2651
2708
  },
2652
2709
  "v-stepper-window": {