@vuetify/nightly 3.10.4-dev.2025-10-01 → 3.10.4-dev.2025-10-02
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 +8 -3
- package/dist/json/attributes.json +4040 -4040
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +7205 -7201
- package/dist/vuetify-labs.cjs +16 -8
- package/dist/vuetify-labs.css +4832 -4832
- package/dist/vuetify-labs.d.ts +65 -56
- package/dist/vuetify-labs.esm.js +16 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +16 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +16 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4299 -4299
- package/dist/vuetify.d.ts +65 -56
- package/dist/vuetify.esm.js +16 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +16 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -8
- package/dist/vuetify.min.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 +56 -56
- 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/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.4-dev.2025-10-
|
|
2
|
+
* Vuetify v3.10.4-dev.2025-10-02
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1676,25 +1676,28 @@
|
|
|
1676
1676
|
parentIndentLines,
|
|
1677
1677
|
variant
|
|
1678
1678
|
} = _ref;
|
|
1679
|
+
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1679
1680
|
if (!parentIndentLines || !depth) {
|
|
1680
1681
|
return {
|
|
1681
1682
|
leaf: undefined,
|
|
1682
1683
|
node: undefined,
|
|
1683
|
-
children: parentIndentLines
|
|
1684
|
+
children: parentIndentLines,
|
|
1685
|
+
footer: parentIndentLines && (!isLastLeaf || variant === 'simple') ? [...parentIndentLines, separateRoots ? 'none' : 'line'] : ['none']
|
|
1684
1686
|
};
|
|
1685
1687
|
}
|
|
1686
1688
|
if (variant === 'simple') {
|
|
1687
1689
|
return {
|
|
1688
1690
|
leaf: [...parentIndentLines, 'line'],
|
|
1689
1691
|
node: [...parentIndentLines, 'line'],
|
|
1690
|
-
children: [...parentIndentLines, 'line']
|
|
1692
|
+
children: [...parentIndentLines, 'line'],
|
|
1693
|
+
footer: [...parentIndentLines, 'line', 'line']
|
|
1691
1694
|
};
|
|
1692
1695
|
}
|
|
1693
|
-
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1694
1696
|
return {
|
|
1695
1697
|
leaf: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf', ...(leafLinks ? ['leaf-link'] : [])],
|
|
1696
1698
|
node: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf'],
|
|
1697
|
-
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1699
|
+
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line'],
|
|
1700
|
+
footer: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1698
1701
|
};
|
|
1699
1702
|
}
|
|
1700
1703
|
|
|
@@ -31335,6 +31338,10 @@
|
|
|
31335
31338
|
...props,
|
|
31336
31339
|
...treeItemProps
|
|
31337
31340
|
});
|
|
31341
|
+
const footerProps = {
|
|
31342
|
+
hideActions: props.hideActions,
|
|
31343
|
+
indentLines: indentLines.footer
|
|
31344
|
+
};
|
|
31338
31345
|
return children ? vue.createVNode(VTreeviewGroup, vue.mergeProps(treeviewGroupProps, {
|
|
31339
31346
|
"value": props.returnObject ? item.raw : treeviewGroupProps?.value,
|
|
31340
31347
|
"rawId": treeviewGroupProps?.value
|
|
@@ -31347,6 +31354,7 @@
|
|
|
31347
31354
|
...itemProps,
|
|
31348
31355
|
...activatorProps,
|
|
31349
31356
|
value: itemProps?.value,
|
|
31357
|
+
hideActions: props.hideActions,
|
|
31350
31358
|
indentLines: indentLines.node,
|
|
31351
31359
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
31352
31360
|
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
@@ -31360,7 +31368,6 @@
|
|
|
31360
31368
|
"ref": el => activatorItems.value[index] = el
|
|
31361
31369
|
}, listItemProps, {
|
|
31362
31370
|
"hasCustomPrepend": !!slots.prepend,
|
|
31363
|
-
"hideActions": props.hideActions,
|
|
31364
31371
|
"value": props.returnObject ? item.raw : itemProps.value,
|
|
31365
31372
|
"loading": loading
|
|
31366
31373
|
}), slotsWithItem));
|
|
@@ -31372,6 +31379,7 @@
|
|
|
31372
31379
|
"isLastGroup": nextItemHasChildren,
|
|
31373
31380
|
"returnObject": props.returnObject
|
|
31374
31381
|
}), slots), slots.footer?.({
|
|
31382
|
+
props: footerProps,
|
|
31375
31383
|
item: item.raw,
|
|
31376
31384
|
internalItem: item,
|
|
31377
31385
|
loading
|
|
@@ -37922,7 +37930,7 @@
|
|
|
37922
37930
|
};
|
|
37923
37931
|
});
|
|
37924
37932
|
}
|
|
37925
|
-
const version$1 = "3.10.4-dev.2025-10-
|
|
37933
|
+
const version$1 = "3.10.4-dev.2025-10-02";
|
|
37926
37934
|
createVuetify$1.version = version$1;
|
|
37927
37935
|
|
|
37928
37936
|
// Vue's inject() can only be used in setup
|
|
@@ -38220,7 +38228,7 @@
|
|
|
38220
38228
|
|
|
38221
38229
|
/* eslint-disable local-rules/sort-imports */
|
|
38222
38230
|
|
|
38223
|
-
const version = "3.10.4-dev.2025-10-
|
|
38231
|
+
const version = "3.10.4-dev.2025-10-02";
|
|
38224
38232
|
|
|
38225
38233
|
/* eslint-disable local-rules/sort-imports */
|
|
38226
38234
|
|