@vuetify/nightly 3.10.4-dev.2025-10-01 → 3.10.4-dev.2025-10-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.
- package/CHANGELOG.md +10 -3
- package/dist/json/attributes.json +1626 -1610
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +208 -208
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3135 -3091
- package/dist/vuetify-labs.cjs +93 -30
- package/dist/vuetify-labs.css +4262 -4262
- package/dist/vuetify-labs.d.ts +209 -105
- package/dist/vuetify-labs.esm.js +93 -30
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +93 -30
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +93 -30
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3923 -3923
- package/dist/vuetify.d.ts +209 -105
- package/dist/vuetify.esm.js +93 -30
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +93 -30
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +40 -37
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +52 -11
- package/lib/components/VDataIterator/VDataIterator.js +2 -0
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +78 -18
- package/lib/components/VDataTable/VDataTable.js +9 -5
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +2 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +54 -13
- package/lib/components/VDataTable/VDataTableServer.js +8 -4
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +54 -13
- package/lib/components/VDataTable/VDataTableVirtual.js +7 -3
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/composables/sort.d.ts +36 -8
- package/lib/components/VDataTable/composables/sort.js +55 -14
- package/lib/components/VDataTable/composables/sort.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +6 -0
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +9 -0
- package/lib/components/VTreeview/VTreeviewChildren.js +6 -1
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -71
- package/lib/framework.js +1 -1
- package/lib/util/indentLines.d.ts +1 -0
- package/lib/util/indentLines.js +7 -4
- package/lib/util/indentLines.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.10.4-dev.2025-10-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.10.4-dev.2025-10-06...v) (2025-10-06)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
## [3.10.4-dev.2025-10-
|
|
5
|
+
## [3.10.4-dev.2025-10-06](https://github.com/vuetifyjs/vuetify/compare/v3.10.4...v3.10.4-dev.2025-10-06) "Other Commits" (2025-10-06)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### :rocket: Features
|
|
9
9
|
|
|
10
|
+
* **VDataTable:** add `initial-sort-order` prop ([#22156](https://github.com/vuetifyjs/vuetify/issues/22156)) ([b2f632f](https://github.com/vuetifyjs/vuetify/commit/b2f632fceb3b89e412eae09ed8de2af50b13f168)), closes [#11117](https://github.com/vuetifyjs/vuetify/issues/11117) [#20615](https://github.com/vuetifyjs/vuetify/issues/20615)
|
|
11
|
+
* **VDataTable:** multi-sort mode and keyboard modifiers ([#22133](https://github.com/vuetifyjs/vuetify/issues/22133)) ([54bbc84](https://github.com/vuetifyjs/vuetify/commit/54bbc84d5447b08f37a11c276cad68e35b045701)), closes [#22132](https://github.com/vuetifyjs/vuetify/issues/22132)
|
|
10
12
|
* **VProgressCircular:** add `rounded` prop ([#22051](https://github.com/vuetifyjs/vuetify/issues/22051)) ([2bd681d](https://github.com/vuetifyjs/vuetify/commit/2bd681de36b7edfaca515d036aabf4a441f1426a))
|
|
11
13
|
* **VTreeview:** add `footer` slot ([#22130](https://github.com/vuetifyjs/vuetify/issues/22130)) ([a87a3fd](https://github.com/vuetifyjs/vuetify/commit/a87a3fdd6197825bd2b08bd36acfed0768744e82)), closes [#22100](https://github.com/vuetifyjs/vuetify/issues/22100)
|
|
12
14
|
|
|
13
15
|
|
|
16
|
+
### :wrench: Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **VTreeview:** `indent-lines` support for `footer` slot ([efa50e4](https://github.com/vuetifyjs/vuetify/commit/efa50e462d082224e6b2c964877da666705c0b70))
|
|
19
|
+
|
|
20
|
+
|
|
14
21
|
### Other Commits
|
|
15
22
|
|
|
16
|
-
* chore(release): publish v3.10.4-dev.2025-10-
|
|
23
|
+
* chore(release): publish v3.10.4-dev.2025-10-06 ([9855ea8](https://github.com/vuetifyjs/vuetify/commit/9855ea8eab2fcaa4ac3b7dfaf72bbc6321650214))
|
|
17
24
|
|
|
18
25
|
|
|
19
26
|
|