@vuetify/nightly 3.9.0-beta.1-dev.2025-07-05 → 3.9.0-dev.2025-07-08
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.
- package/CHANGELOG.md +3 -117
- package/dist/json/attributes.json +3156 -3120
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +196 -196
- package/dist/json/tags.json +9 -0
- package/dist/json/web-types.json +6143 -6054
- package/dist/vuetify-labs.cjs +124 -32
- package/dist/vuetify-labs.css +4807 -4750
- package/dist/vuetify-labs.d.ts +281 -186
- package/dist/vuetify-labs.esm.js +124 -32
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +124 -32
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +123 -31
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4212 -4155
- package/dist/vuetify.d.ts +281 -186
- package/dist/vuetify.esm.js +123 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +123 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1083 -1079
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +39 -14
- package/lib/components/VAutocomplete/VAutocomplete.js +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +39 -14
- package/lib/components/VCombobox/VCombobox.js +2 -2
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataIterator/composables/items.d.ts +2 -1
- package/lib/components/VDataIterator/composables/items.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +1 -1
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +2 -1
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VList/VList.d.ts +24 -27
- package/lib/components/VList/VList.js +0 -4
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +58 -22
- package/lib/components/VSelect/VSelect.js +2 -2
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +229 -167
- package/lib/components/VTreeview/VTreeview.js +7 -3
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +81 -10
- package/lib/components/VTreeview/VTreeviewChildren.js +50 -11
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.css +57 -0
- package/lib/components/VTreeview/VTreeviewItem.d.ts +119 -94
- package/lib/components/VTreeview/VTreeviewItem.js +13 -3
- package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.sass +60 -0
- package/lib/components/VTreeview/_variables.scss +15 -0
- package/lib/composables/filter.d.ts +1 -0
- package/lib/composables/filter.js +1 -1
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/list-items.d.ts +14 -1
- package/lib/composables/list-items.js +9 -3
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +66 -65
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.js +1 -1
- package/lib/labs/VCalendar/VCalendar.js.map +1 -1
- package/lib/util/helpers.d.ts +3 -0
- package/lib/util/helpers.js +4 -0
- package/lib/util/helpers.js.map +1 -1
- package/lib/util/indentLines.d.ts +17 -0
- package/lib/util/indentLines.js +34 -0
- package/lib/util/indentLines.js.map +1 -0
- package/lib/util/index.d.ts +1 -0
- package/lib/util/index.js +1 -0
- package/lib/util/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,127 +1,13 @@
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.9.0-
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.9.0-dev.2025-07-08...v) (2025-07-08)
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
# [3.9.0-
|
6
|
-
|
7
|
-
|
8
|
-
### :rocket: Features
|
9
|
-
|
10
|
-
* **VDataTable:** support `fixed: 'end'` columns ([#21665](https://github.com/vuetifyjs/vuetify/issues/21665)) ([415c267](https://github.com/vuetifyjs/vuetify/commit/415c267d057ad49334d9801c4fdb0c6aa9dcdcd1)), closes [#20020](https://github.com/vuetifyjs/vuetify/issues/20020) [#21153](https://github.com/vuetifyjs/vuetify/issues/21153)
|
11
|
-
|
12
|
-
|
13
|
-
### :wrench: Bug Fixes
|
14
|
-
|
15
|
-
* **VTreeview:** don't select disabled children with parent ([#20962](https://github.com/vuetifyjs/vuetify/issues/20962)) ([0772bc1](https://github.com/vuetifyjs/vuetify/commit/0772bc11c10cd55ca1dd186a64819337b38bc3fd)), closes [#20386](https://github.com/vuetifyjs/vuetify/issues/20386)
|
16
|
-
* **VTreeview:** active state from router ([#21644](https://github.com/vuetifyjs/vuetify/issues/21644)) ([01c7a4f](https://github.com/vuetifyjs/vuetify/commit/01c7a4f8a0af4b62eda99bcd7eac56ef452e22d8))
|
17
|
-
* **VTreeview:** modelValue reactivity ([6daf53d](https://github.com/vuetifyjs/vuetify/commit/6daf53ddbd7f66155f1e1cce870968153fc2b1df))
|
18
|
-
|
19
|
-
|
20
|
-
### :test_tube: Labs
|
21
|
-
|
22
|
-
* **VHotkey:** add new component ([#21598](https://github.com/vuetifyjs/vuetify/issues/21598)) ([99c721c](https://github.com/vuetifyjs/vuetify/commit/99c721c381e47b403429c7de194306013c0ec679))
|
23
|
-
|
24
|
-
|
25
|
-
### Other Commits
|
26
|
-
|
27
|
-
* chore(release): publish v3.9.0-beta.1-dev.2025-07-05 ([f4b1e2d](https://github.com/vuetifyjs/vuetify/commit/f4b1e2d116b1233ea5d5786041a60e0f041b1587))
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
# [3.9.0-beta.1](https://github.com/vuetifyjs/vuetify/compare/v3.8.11...v3.9.0-beta.1) "Other Commits" (2025-06-26)
|
32
|
-
|
33
|
-
|
34
|
-
### :wrench: Bug Fixes
|
35
|
-
|
36
|
-
* **nested:** restore props.opened reactivity ([36c55ed](https://github.com/vuetifyjs/vuetify/commit/36c55edaaa094a8466875fafdca8593757a585f5))
|
37
|
-
* **VTimePicker:** auto width ([#21613](https://github.com/vuetifyjs/vuetify/issues/21613)) ([5d1ceab](https://github.com/vuetifyjs/vuetify/commit/5d1ceab3e519974cdde29f7e7610ffb5972ac6a7))
|
38
|
-
* **VTreeview:** restore reactivity with computed items ([107dd0c](https://github.com/vuetifyjs/vuetify/commit/107dd0c6822a5f029e302627f040a43a82bebb58)), closes [#20900](https://github.com/vuetifyjs/vuetify/issues/20900)
|
39
|
-
* **VTreeview:** activatable implies openOnClick=false ([c0b7d7b](https://github.com/vuetifyjs/vuetify/commit/c0b7d7b518727f8d43e4463dd3e69edfa4c43d73))
|
40
|
-
* **VTreeview:** select trunk nodes on click when openOnClick=false ([e6a1710](https://github.com/vuetifyjs/vuetify/commit/e6a1710296ea0cb67d6877a9c587766b5565f90d)), closes [#21599](https://github.com/vuetifyjs/vuetify/issues/21599)
|
41
|
-
* **VTreeview:** prevent checkbox deselection when mandatory ([431af5f](https://github.com/vuetifyjs/vuetify/commit/431af5fa7df28d98d7bb76f88a1803ec98a62719)), closes [#21614](https://github.com/vuetifyjs/vuetify/issues/21614)
|
42
|
-
|
43
|
-
|
44
|
-
### Other Commits
|
45
|
-
|
46
|
-
* chore(release): publish v3.9.0-beta.1 ([c4b2af6](https://github.com/vuetifyjs/vuetify/commit/c4b2af64c9300cdc734456feeae1d26a395ad9fe))
|
47
|
-
* chore: remove unused import ([bccf6ea](https://github.com/vuetifyjs/vuetify/commit/bccf6eac30675c3be819a32b2f90ec9c5385eb46))
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
# [3.9.0-beta.0](https://github.com/vuetifyjs/vuetify/compare/v3.8.10...v3.9.0-beta.0) "Other Commits" (2025-06-20)
|
52
|
-
|
53
|
-
|
54
|
-
### :rocket: Features
|
55
|
-
|
56
|
-
* add StringDateAdapter ([#21174](https://github.com/vuetifyjs/vuetify/issues/21174)) ([7fe9152](https://github.com/vuetifyjs/vuetify/commit/7fe91520fb9ab3ae58d4f7eeba6c0a7b431e6198)), closes [#20967](https://github.com/vuetifyjs/vuetify/issues/20967)
|
57
|
-
* deprecate `firstDayOfWeek` prop ([#21207](https://github.com/vuetifyjs/vuetify/issues/21207)) ([97d1104](https://github.com/vuetifyjs/vuetify/commit/97d11042b98cadcf70379933381340c519c4b406))
|
58
|
-
* **date:** export VuetifyDateAdapter ([#21252](https://github.com/vuetifyjs/vuetify/issues/21252)) ([1a98d03](https://github.com/vuetifyjs/vuetify/commit/1a98d030a7b9547d519b1491e14e97f3e554ee6e)), closes [#19904](https://github.com/vuetifyjs/vuetify/issues/19904)
|
59
|
-
* **theme:** add new theme 'system' ([#20407](https://github.com/vuetifyjs/vuetify/issues/20407)) ([#21244](https://github.com/vuetifyjs/vuetify/issues/21244)) ([8393a41](https://github.com/vuetifyjs/vuetify/commit/8393a41287d34dba56cb2140bcc1aa44de62ffcb))
|
60
|
-
* **theme:** add new option 'unimportant' to gen classes without important ([3190331](https://github.com/vuetifyjs/vuetify/commit/3190331e70f42b7fdf4d7ee04f662b15eefde026))
|
61
|
-
* **theme:** add change, toggle, and cycle functions ([#21224](https://github.com/vuetifyjs/vuetify/issues/21224)) ([3570254](https://github.com/vuetifyjs/vuetify/commit/357025485c7e8ac8dbc254a9fb37a3360e8c8d79))
|
62
|
-
* **transition:** expose create transition classes ([#21352](https://github.com/vuetifyjs/vuetify/issues/21352)) ([79f36aa](https://github.com/vuetifyjs/vuetify/commit/79f36aa042284471c7a7cb248721de884e4ef329))
|
63
|
-
* **types:** emit GlobalDirectives ([136dfdf](https://github.com/vuetifyjs/vuetify/commit/136dfdf99380063ed20ca8d0672e1e450faf5431)), closes [#21475](https://github.com/vuetifyjs/vuetify/issues/21475)
|
64
|
-
* **VAlert:** better aligment with prepend icon ([#20700](https://github.com/vuetifyjs/vuetify/issues/20700)) ([5231b95](https://github.com/vuetifyjs/vuetify/commit/5231b956c39477e913648dcbaef4030c284b1ece))
|
65
|
-
* **VBadge:** add size width and height props to VBadge ([#28037](https://github.com/vuetifyjs/vuetify/issues/28037)) ([#21509](https://github.com/vuetifyjs/vuetify/issues/21509)) ([b87f179](https://github.com/vuetifyjs/vuetify/commit/b87f17933b31cf63289ffccdd78eda3682decc07))
|
66
|
-
* **VBtnGroup:** add direction prop ([#17878](https://github.com/vuetifyjs/vuetify/issues/17878)) ([5f39b85](https://github.com/vuetifyjs/vuetify/commit/5f39b8586e99c4529da9ef71576c048e711757e8)), closes [#17492](https://github.com/vuetifyjs/vuetify/issues/17492)
|
67
|
-
* **VCombobox:** scroll to first item on search result ([#20572](https://github.com/vuetifyjs/vuetify/issues/20572)) ([#21255](https://github.com/vuetifyjs/vuetify/issues/21255)) ([57bb5ad](https://github.com/vuetifyjs/vuetify/commit/57bb5adb426372ca6af48b961a5b3533efa7d703))
|
68
|
-
* **VDataTable:** add new lastFixed property ([#21153](https://github.com/vuetifyjs/vuetify/issues/21153)) ([#21168](https://github.com/vuetifyjs/vuetify/issues/21168)) ([5e1d653](https://github.com/vuetifyjs/vuetify/commit/5e1d65347068697a1248c5ed3d73346b7ebb5d8d))
|
69
|
-
* **VDatePicker:** expose slots from underlying components ([#21532](https://github.com/vuetifyjs/vuetify/issues/21532)) ([1e351a2](https://github.com/vuetifyjs/vuetify/commit/1e351a2015db61564c3432662e4fc7700dff3a84)), closes [#20236](https://github.com/vuetifyjs/vuetify/issues/20236)
|
70
|
-
* **VDatePicker:** restore `weekday-format` ([#21290](https://github.com/vuetifyjs/vuetify/issues/21290)) ([b13b15c](https://github.com/vuetifyjs/vuetify/commit/b13b15c865252f43f09ef590feeaeaac6a49bc1b))
|
71
|
-
* **VInfiniteScroll:** add reset method ([#20637](https://github.com/vuetifyjs/vuetify/issues/20637)) ([2e5bc43](https://github.com/vuetifyjs/vuetify/commit/2e5bc4330bf7409870516b818dcdd8bb0f36d0d5)), closes [#20308](https://github.com/vuetifyjs/vuetify/issues/20308) [#19935](https://github.com/vuetifyjs/vuetify/issues/19935)
|
72
|
-
* **VKbd:** update default styling, add configurable options ([8ea20d9](https://github.com/vuetifyjs/vuetify/commit/8ea20d9fccaca572465d31af780f460d03f489db))
|
73
|
-
* **VNumberInput:** custom decimal separator ([#21489](https://github.com/vuetifyjs/vuetify/issues/21489)) ([534c1e7](https://github.com/vuetifyjs/vuetify/commit/534c1e72363dadfee213f0360272c29d308b28af)), closes [#20254](https://github.com/vuetifyjs/vuetify/issues/20254)
|
74
|
-
* **VNumberInput:** more flexible precision display ([#21315](https://github.com/vuetifyjs/vuetify/issues/21315)) ([d5779cd](https://github.com/vuetifyjs/vuetify/commit/d5779cd8529c6589d215569453733700b095ffe9))
|
75
|
-
* **VOtpInput:** allow to keep focus on paste ([#21275](https://github.com/vuetifyjs/vuetify/issues/21275)) ([#21356](https://github.com/vuetifyjs/vuetify/issues/21356)) ([cb8015d](https://github.com/vuetifyjs/vuetify/commit/cb8015daad38b7d9c6853e1053d78ab148574804))
|
76
|
-
* **VOverlay:** align scrim color with MD3 ([#21219](https://github.com/vuetifyjs/vuetify/issues/21219)) ([29d22a6](https://github.com/vuetifyjs/vuetify/commit/29d22a6737fa7e68bdd49c522a5b36dca3cabe11)), closes [#20244](https://github.com/vuetifyjs/vuetify/issues/20244)
|
77
|
-
* **VSelect:** add new auto scroll props ([#20237](https://github.com/vuetifyjs/vuetify/issues/20237)) ([#21254](https://github.com/vuetifyjs/vuetify/issues/21254)) ([1e0f1c1](https://github.com/vuetifyjs/vuetify/commit/1e0f1c1a527deb5256844e4663d6931840736968))
|
78
|
-
* **VSelects:** support divider and subheader ([#21348](https://github.com/vuetifyjs/vuetify/issues/21348)) ([0953ed2](https://github.com/vuetifyjs/vuetify/commit/0953ed22c81c1c8d51505a2e35e222af1880698a))
|
79
|
-
* **VSlideGroup:** add content class to VSlideGroup props ([#21431](https://github.com/vuetifyjs/vuetify/issues/21431)) ([935351c](https://github.com/vuetifyjs/vuetify/commit/935351cc0e80c2327701a071eeeff15f1a128310))
|
80
|
-
* **VSlider:** expose focus method ([#21575](https://github.com/vuetifyjs/vuetify/issues/21575)) ([6790e1e](https://github.com/vuetifyjs/vuetify/commit/6790e1ebfa820506f92a68f4c9055a2a36413b4b)), closes [#17602](https://github.com/vuetifyjs/vuetify/issues/17602)
|
81
|
-
* **VTable:** add striped prop ([#19735](https://github.com/vuetifyjs/vuetify/issues/19735)) ([35b3304](https://github.com/vuetifyjs/vuetify/commit/35b3304a18bdb39df3431b71eef52cdef11130c9))
|
82
|
-
* **VTextarea:** add update:rows event ([#21226](https://github.com/vuetifyjs/vuetify/issues/21226)) ([e72d4d3](https://github.com/vuetifyjs/vuetify/commit/e72d4d30088ef47d5abf2e4533cc62c8ee91f823)), closes [#21133](https://github.com/vuetifyjs/vuetify/issues/21133)
|
83
|
-
* **VTimePicker:** promote from labs ([7ce2cd6](https://github.com/vuetifyjs/vuetify/commit/7ce2cd68cb40d8de9c2135bdf33c9be9140d22c3))
|
84
|
-
* **VTimePicker:** remove ampmInTitle prop ([#21595](https://github.com/vuetifyjs/vuetify/issues/21595)) ([e32796a](https://github.com/vuetifyjs/vuetify/commit/e32796a114711f2b30d3401abea11bfd8b8c2460)), closes [#19637](https://github.com/vuetifyjs/vuetify/issues/19637) [#19957](https://github.com/vuetifyjs/vuetify/issues/19957)
|
85
|
-
* **VToolbar:** allow for explicit extension="false" ([#21264](https://github.com/vuetifyjs/vuetify/issues/21264)) ([092e64a](https://github.com/vuetifyjs/vuetify/commit/092e64a10aa6e1b476e0e7fddaf01d1bb1df3793)), closes [#7317](https://github.com/vuetifyjs/vuetify/issues/7317)
|
86
|
-
* **VTreeview:** promote from labs ([b610813](https://github.com/vuetifyjs/vuetify/commit/b6108138fdbfb2cc157a29602817708676a23491))
|
87
|
-
* **VTreeview:** expose depth, path, index in slots ([#19833](https://github.com/vuetifyjs/vuetify/issues/19833)) ([bd908af](https://github.com/vuetifyjs/vuetify/commit/bd908afc7e335904c2fb35aa73541d8c04a9fcfb)), closes [#13863](https://github.com/vuetifyjs/vuetify/issues/13863)
|
88
|
-
* **VVirtualScroll:** support fractional scroll index ([#20407](https://github.com/vuetifyjs/vuetify/issues/20407)) ([adad9e2](https://github.com/vuetifyjs/vuetify/commit/adad9e2629fffa52b0abbb7d18297a5c0078074f))
|
89
|
-
* **VWindow:** vertical arrows ([#21587](https://github.com/vuetifyjs/vuetify/issues/21587)) ([663b9a8](https://github.com/vuetifyjs/vuetify/commit/663b9a83ee602200adae115500594d462ddfff16))
|
90
|
-
|
91
|
-
|
92
|
-
### :wrench: Bug Fixes
|
93
|
-
|
94
|
-
* **inputs:** expose missing validation methods ([be64296](https://github.com/vuetifyjs/vuetify/commit/be6429615af6e0e9e0aad7ef21bfe7a1403229ec)), closes [#19934](https://github.com/vuetifyjs/vuetify/issues/19934)
|
95
|
-
* **types:** don't use primitive object wrappers ([32007ed](https://github.com/vuetifyjs/vuetify/commit/32007ed2d34f9a131eb73faeb7629c0ff515f7b2))
|
96
|
-
* **VAutocomplete, VCombobox:** space key should not select ([#21311](https://github.com/vuetifyjs/vuetify/issues/21311)) ([f9288ad](https://github.com/vuetifyjs/vuetify/commit/f9288ad7dbfb3547d36e036932e653270eb9ff08))
|
97
|
-
* **VDatePicker:** round font-size from 13.6 to 14px ([#21590](https://github.com/vuetifyjs/vuetify/issues/21590)) ([d81a4a0](https://github.com/vuetifyjs/vuetify/commit/d81a4a0cf81353c96f6c5557d8c9be77df7a5836))
|
98
|
-
* **VMenu:** let persistent menus coexist with regular ones ([#21449](https://github.com/vuetifyjs/vuetify/issues/21449)) ([30ac0fc](https://github.com/vuetifyjs/vuetify/commit/30ac0fcdd491d0eba970d383023d183aafcef491)), closes [#20976](https://github.com/vuetifyjs/vuetify/issues/20976)
|
99
|
-
|
100
|
-
|
101
|
-
### :microscope: Code Refactoring
|
102
|
-
|
103
|
-
* **theme:** add internal methods for testing tw implementation ([abfdb77](https://github.com/vuetifyjs/vuetify/commit/abfdb777e0e00d4a1798f52d7e4c118e7409fcb9))
|
104
|
-
|
105
|
-
|
106
|
-
### :test_tube: Labs
|
107
|
-
|
108
|
-
* **VMaskInput:** Create new component ([#21519](https://github.com/vuetifyjs/vuetify/issues/21519)) ([117443a](https://github.com/vuetifyjs/vuetify/commit/117443afbe676d5d31ab20b4a549cb7405994493))
|
5
|
+
# [3.9.0-dev.2025-07-08](https://github.com/vuetifyjs/vuetify/compare/v3.9.0...v3.9.0-dev.2025-07-08) "Other Commits" (2025-07-08)
|
109
6
|
|
110
7
|
|
111
8
|
### Other Commits
|
112
9
|
|
113
|
-
* chore(release): publish v3.9.0-
|
114
|
-
* chore(VKbd): inherited props last ([8c9fc16](https://github.com/vuetifyjs/vuetify/commit/8c9fc169e7666d6c3d7d8567ce4f680956366148))
|
115
|
-
* chore(VInfiniteScroll): add comment about nested raf ([c219894](https://github.com/vuetifyjs/vuetify/commit/c219894d65f6422a1ff4338e33ad21b36d744df7))
|
116
|
-
* chore(VDatePicker): explicit slots passthrough ([9114f12](https://github.com/vuetifyjs/vuetify/commit/9114f12ceb22a8ce2ebf0d028a972a0a689d0831))
|
117
|
-
* docs: update browser support table ([b349e49](https://github.com/vuetifyjs/vuetify/commit/b349e497f16e143b5d67941d424fdfef907aaed3))
|
118
|
-
* chore(theme): use Reflect for proxy operations ([ee1f855](https://github.com/vuetifyjs/vuetify/commit/ee1f85524e70208333be7f6aaa9d171c19c29f30))
|
119
|
-
* chore(theme): keep defaultTheme string enum type hint ([c47c329](https://github.com/vuetifyjs/vuetify/commit/c47c329749ae3fbbe00e29cd8a3094b35d28d8db))
|
120
|
-
* docs: update emphasized pages ([4b2590a](https://github.com/vuetifyjs/vuetify/commit/4b2590af5e87a2c41dc65402bdabe1e5d728d7a8))
|
121
|
-
* chore: enforce forwardRefs required arguments ([59c2c6c](https://github.com/vuetifyjs/vuetify/commit/59c2c6c4a1fe4347857b5f81b028ddad58a4be14))
|
122
|
-
* chore: un-deprecate firstDayOfWeek ([#21454](https://github.com/vuetifyjs/vuetify/issues/21454)) ([de95deb](https://github.com/vuetifyjs/vuetify/commit/de95deba32a15b38f80a86dbe7ae65e030a586ac))
|
123
|
-
* chore: move createTransition export to util ([3e9a613](https://github.com/vuetifyjs/vuetify/commit/3e9a613f5edca1d9455c2ea07af8834b24a549c1))
|
124
|
-
* chore(theme): change upsertStyles parameters ([a0d03be](https://github.com/vuetifyjs/vuetify/commit/a0d03bed68e2e5052785536852b6b09231ae661d))
|
10
|
+
* chore(release): publish v3.9.0-dev.2025-07-08 ([6d93a08](https://github.com/vuetifyjs/vuetify/commit/6d93a08e198cd3d32efb5005d8b4410d902333fe))
|
125
11
|
|
126
12
|
|
127
13
|
|