@vuetify/nightly 3.9.1-master.2025-07-17 → 3.9.2-master.2025-07-18
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 -8
- package/dist/json/attributes.json +3450 -3450
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +19741 -6363
- package/dist/vuetify-labs.cjs +64 -65
- package/dist/vuetify-labs.css +4852 -4852
- package/dist/vuetify-labs.d.ts +50 -50
- package/dist/vuetify-labs.esm.js +64 -65
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +64 -65
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +64 -65
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2681 -2681
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +64 -65
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +64 -65
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +2 -3
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.js +59 -59
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +50 -50
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.
|
2
|
+
* Vuetify v3.9.2-master.2025-07-18
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -30349,51 +30349,48 @@
|
|
30349
30349
|
parentIndentLines: props.parentIndentLines,
|
30350
30350
|
variant: props.indentLinesVariant
|
30351
30351
|
});
|
30352
|
-
|
30353
|
-
|
30354
|
-
|
30355
|
-
|
30356
|
-
|
30357
|
-
|
30358
|
-
|
30359
|
-
|
30360
|
-
|
30361
|
-
|
30362
|
-
|
30363
|
-
|
30364
|
-
|
30365
|
-
|
30366
|
-
|
30367
|
-
|
30368
|
-
|
30369
|
-
|
30370
|
-
|
30371
|
-
|
30372
|
-
|
30373
|
-
|
30374
|
-
|
30375
|
-
|
30376
|
-
|
30377
|
-
|
30378
|
-
|
30379
|
-
|
30380
|
-
|
30381
|
-
|
30382
|
-
|
30383
|
-
|
30384
|
-
|
30385
|
-
|
30386
|
-
|
30387
|
-
|
30388
|
-
|
30389
|
-
|
30390
|
-
|
30391
|
-
|
30392
|
-
|
30393
|
-
|
30394
|
-
$stable: true
|
30395
|
-
});
|
30396
|
-
}
|
30352
|
+
const slotsWithItem = {
|
30353
|
+
prepend: slotProps => vue.createElementVNode(vue.Fragment, null, [props.selectable && (!children || children && !['leaf', 'single-leaf'].includes(props.selectStrategy)) && vue.createElementVNode("div", null, [vue.createVNode(VCheckboxBtn, {
|
30354
|
+
"key": item.value,
|
30355
|
+
"modelValue": slotProps.isSelected,
|
30356
|
+
"disabled": props.disabled,
|
30357
|
+
"loading": loading,
|
30358
|
+
"color": props.selectedColor,
|
30359
|
+
"density": props.density,
|
30360
|
+
"indeterminate": slotProps.isIndeterminate,
|
30361
|
+
"indeterminateIcon": props.indeterminateIcon,
|
30362
|
+
"falseIcon": props.falseIcon,
|
30363
|
+
"trueIcon": props.trueIcon,
|
30364
|
+
"onUpdate:modelValue": v => selectItem(slotProps.select, v),
|
30365
|
+
"onClick": e => e.stopPropagation(),
|
30366
|
+
"onKeydown": e => {
|
30367
|
+
if (!['Enter', 'Space'].includes(e.key)) return;
|
30368
|
+
e.stopPropagation();
|
30369
|
+
selectItem(slotProps.select, slotProps.isSelected);
|
30370
|
+
}
|
30371
|
+
}, null)]), slots.prepend?.({
|
30372
|
+
...slotProps,
|
30373
|
+
...treeItemProps,
|
30374
|
+
item: item.raw,
|
30375
|
+
internalItem: item
|
30376
|
+
})]),
|
30377
|
+
append: slots.append ? slotProps => slots.append?.({
|
30378
|
+
...slotProps,
|
30379
|
+
...treeItemProps,
|
30380
|
+
item: item.raw,
|
30381
|
+
internalItem: item
|
30382
|
+
}) : undefined,
|
30383
|
+
title: slots.title ? slotProps => slots.title?.({
|
30384
|
+
...slotProps,
|
30385
|
+
item: item.raw,
|
30386
|
+
internalItem: item
|
30387
|
+
}) : undefined,
|
30388
|
+
subtitle: slots.subtitle ? slotProps => slots.subtitle?.({
|
30389
|
+
...slotProps,
|
30390
|
+
item: item.raw,
|
30391
|
+
internalItem: item
|
30392
|
+
}) : undefined
|
30393
|
+
};
|
30397
30394
|
const treeviewGroupProps = VTreeviewGroup.filterProps(itemProps);
|
30398
30395
|
const treeviewChildrenProps = VTreeviewChildren.filterProps({
|
30399
30396
|
...props,
|
@@ -30407,16 +30404,21 @@
|
|
30407
30404
|
let {
|
30408
30405
|
props: activatorProps
|
30409
30406
|
} = _ref2;
|
30410
|
-
|
30407
|
+
const listItemProps = {
|
30411
30408
|
...itemProps,
|
30412
30409
|
...activatorProps,
|
30413
|
-
|
30414
|
-
hideActions: props.hideActions,
|
30415
|
-
indentLines: indentLines.node,
|
30416
|
-
value: props.returnObject ? item.raw : itemProps.value,
|
30410
|
+
value: itemProps?.value,
|
30417
30411
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
30418
30412
|
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
30419
|
-
}
|
30413
|
+
};
|
30414
|
+
return vue.createVNode(VTreeviewItem, vue.mergeProps({
|
30415
|
+
"ref": el => activatorItems.value[index] = el
|
30416
|
+
}, listItemProps, {
|
30417
|
+
"hideActions": props.hideActions,
|
30418
|
+
"indentLines": indentLines.node,
|
30419
|
+
"value": props.returnObject ? item.raw : itemProps.value,
|
30420
|
+
"loading": loading
|
30421
|
+
}), slotsWithItem);
|
30420
30422
|
},
|
30421
30423
|
default: () => vue.createVNode(VTreeviewChildren, vue.mergeProps(treeviewChildrenProps, {
|
30422
30424
|
"items": children,
|
@@ -30424,8 +30426,7 @@
|
|
30424
30426
|
"parentIndentLines": indentLines.children,
|
30425
30427
|
"isLastGroup": nextItemHasChildren,
|
30426
30428
|
"returnObject": props.returnObject
|
30427
|
-
}), slots)
|
30428
|
-
$stable: true
|
30429
|
+
}), slots)
|
30429
30430
|
}) : renderSlot(slots.item, {
|
30430
30431
|
props: itemProps,
|
30431
30432
|
item: item.raw,
|
@@ -30441,12 +30442,11 @@
|
|
30441
30442
|
props: item.raw
|
30442
30443
|
}, () => vue.createVNode(VListSubheader, item.props, null));
|
30443
30444
|
}
|
30444
|
-
return
|
30445
|
-
|
30446
|
-
|
30447
|
-
|
30448
|
-
|
30449
|
-
});
|
30445
|
+
return vue.createVNode(VTreeviewItem, vue.mergeProps(itemProps, {
|
30446
|
+
"hideActions": props.hideActions,
|
30447
|
+
"indentLines": indentLines.leaf,
|
30448
|
+
"value": props.returnObject ? vue.toRaw(item.raw) : itemProps.value
|
30449
|
+
}), slotsWithItem);
|
30450
30450
|
});
|
30451
30451
|
});
|
30452
30452
|
}
|
@@ -30585,14 +30585,13 @@
|
|
30585
30585
|
"selected": selected.value,
|
30586
30586
|
"onUpdate:selected": $event => selected.value = $event
|
30587
30587
|
}), {
|
30588
|
-
default: () => vue.createVNode(VTreeviewChildren, vue.mergeProps(treeviewChildrenProps, {
|
30588
|
+
default: () => [vue.createVNode(VTreeviewChildren, vue.mergeProps(treeviewChildrenProps, {
|
30589
30589
|
"density": props.density,
|
30590
30590
|
"returnObject": props.returnObject,
|
30591
30591
|
"items": items.value,
|
30592
30592
|
"parentIndentLines": props.indentLines ? [] : undefined,
|
30593
30593
|
"indentLinesVariant": indentLinesVariant
|
30594
|
-
}), slots)
|
30595
|
-
$stable: true
|
30594
|
+
}), slots)]
|
30596
30595
|
});
|
30597
30596
|
});
|
30598
30597
|
return {};
|
@@ -33693,7 +33692,7 @@
|
|
33693
33692
|
};
|
33694
33693
|
});
|
33695
33694
|
}
|
33696
|
-
const version$1 = "3.9.
|
33695
|
+
const version$1 = "3.9.2-master.2025-07-18";
|
33697
33696
|
createVuetify$1.version = version$1;
|
33698
33697
|
|
33699
33698
|
// Vue's inject() can only be used in setup
|
@@ -33991,7 +33990,7 @@
|
|
33991
33990
|
|
33992
33991
|
/* eslint-disable local-rules/sort-imports */
|
33993
33992
|
|
33994
|
-
const version = "3.9.
|
33993
|
+
const version = "3.9.2-master.2025-07-18";
|
33995
33994
|
|
33996
33995
|
/* eslint-disable local-rules/sort-imports */
|
33997
33996
|
|