@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.d.ts
CHANGED
|
@@ -102273,6 +102273,9 @@ type VTreeviewChildrenSlots<T> = {
|
|
|
102273
102273
|
loading: boolean;
|
|
102274
102274
|
};
|
|
102275
102275
|
footer: {
|
|
102276
|
+
props: {
|
|
102277
|
+
indentLines?: IndentLineType[];
|
|
102278
|
+
};
|
|
102276
102279
|
item: T;
|
|
102277
102280
|
internalItem: InternalListItem<T>;
|
|
102278
102281
|
loading: boolean;
|
|
@@ -102487,6 +102490,9 @@ declare const VTreeview: {
|
|
|
102487
102490
|
[key: string]: any;
|
|
102488
102491
|
}>[];
|
|
102489
102492
|
footer: (arg: {
|
|
102493
|
+
props: {
|
|
102494
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102495
|
+
};
|
|
102490
102496
|
item: unknown;
|
|
102491
102497
|
internalItem: InternalListItem<unknown>;
|
|
102492
102498
|
loading: boolean;
|
|
@@ -102845,6 +102851,9 @@ declare const VTreeview: {
|
|
|
102845
102851
|
[key: string]: any;
|
|
102846
102852
|
}>[];
|
|
102847
102853
|
footer: (arg: {
|
|
102854
|
+
props: {
|
|
102855
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102856
|
+
};
|
|
102848
102857
|
item: unknown;
|
|
102849
102858
|
internalItem: InternalListItem<unknown>;
|
|
102850
102859
|
loading: boolean;
|
|
@@ -142657,25 +142666,28 @@ declare module 'vue' {
|
|
|
142657
142666
|
$children?: VNodeChild
|
|
142658
142667
|
}
|
|
142659
142668
|
export interface GlobalComponents {
|
|
142660
|
-
VApp: VApp
|
|
142661
|
-
VAlert: VAlert
|
|
142662
|
-
VAlertTitle: VAlertTitle
|
|
142663
|
-
VAutocomplete: VAutocomplete
|
|
142664
142669
|
VAppBar: VAppBar
|
|
142665
142670
|
VAppBarNavIcon: VAppBarNavIcon
|
|
142666
142671
|
VAppBarTitle: VAppBarTitle
|
|
142667
142672
|
VBadge: VBadge
|
|
142673
|
+
VApp: VApp
|
|
142674
|
+
VAlert: VAlert
|
|
142675
|
+
VAlertTitle: VAlertTitle
|
|
142668
142676
|
VAvatar: VAvatar
|
|
142669
|
-
VBottomSheet: VBottomSheet
|
|
142670
|
-
VBottomNavigation: VBottomNavigation
|
|
142671
|
-
VBtn: VBtn
|
|
142672
142677
|
VBanner: VBanner
|
|
142673
142678
|
VBannerActions: VBannerActions
|
|
142674
142679
|
VBannerText: VBannerText
|
|
142680
|
+
VAutocomplete: VAutocomplete
|
|
142681
|
+
VBottomSheet: VBottomSheet
|
|
142675
142682
|
VBreadcrumbs: VBreadcrumbs
|
|
142676
142683
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
142677
142684
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142678
142685
|
VBtnGroup: VBtnGroup
|
|
142686
|
+
VBottomNavigation: VBottomNavigation
|
|
142687
|
+
VBtn: VBtn
|
|
142688
|
+
VCheckbox: VCheckbox
|
|
142689
|
+
VCheckboxBtn: VCheckboxBtn
|
|
142690
|
+
VBtnToggle: VBtnToggle
|
|
142679
142691
|
VCarousel: VCarousel
|
|
142680
142692
|
VCarouselItem: VCarouselItem
|
|
142681
142693
|
VCard: VCard
|
|
@@ -142684,28 +142696,20 @@ declare module 'vue' {
|
|
|
142684
142696
|
VCardSubtitle: VCardSubtitle
|
|
142685
142697
|
VCardText: VCardText
|
|
142686
142698
|
VCardTitle: VCardTitle
|
|
142687
|
-
|
|
142688
|
-
VCheckboxBtn: VCheckboxBtn
|
|
142689
|
-
VBtnToggle: VBtnToggle
|
|
142690
|
-
VChip: VChip
|
|
142699
|
+
VCode: VCode
|
|
142691
142700
|
VChipGroup: VChipGroup
|
|
142692
|
-
|
|
142693
|
-
VCombobox: VCombobox
|
|
142694
|
-
VCounter: VCounter
|
|
142701
|
+
VChip: VChip
|
|
142695
142702
|
VDialog: VDialog
|
|
142703
|
+
VCounter: VCounter
|
|
142704
|
+
VCombobox: VCombobox
|
|
142696
142705
|
VDatePicker: VDatePicker
|
|
142697
142706
|
VDatePickerControls: VDatePickerControls
|
|
142698
142707
|
VDatePickerHeader: VDatePickerHeader
|
|
142699
142708
|
VDatePickerMonth: VDatePickerMonth
|
|
142700
142709
|
VDatePickerMonths: VDatePickerMonths
|
|
142701
142710
|
VDatePickerYears: VDatePickerYears
|
|
142702
|
-
|
|
142711
|
+
VColorPicker: VColorPicker
|
|
142703
142712
|
VDivider: VDivider
|
|
142704
|
-
VEmptyState: VEmptyState
|
|
142705
|
-
VExpansionPanels: VExpansionPanels
|
|
142706
|
-
VExpansionPanel: VExpansionPanel
|
|
142707
|
-
VExpansionPanelText: VExpansionPanelText
|
|
142708
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
|
142709
142713
|
VDataTable: VDataTable
|
|
142710
142714
|
VDataTableHeaders: VDataTableHeaders
|
|
142711
142715
|
VDataTableFooter: VDataTableFooter
|
|
@@ -142713,22 +142717,29 @@ declare module 'vue' {
|
|
|
142713
142717
|
VDataTableRow: VDataTableRow
|
|
142714
142718
|
VDataTableVirtual: VDataTableVirtual
|
|
142715
142719
|
VDataTableServer: VDataTableServer
|
|
142720
|
+
VFab: VFab
|
|
142716
142721
|
VField: VField
|
|
142717
142722
|
VFieldLabel: VFieldLabel
|
|
142718
|
-
|
|
142723
|
+
VEmptyState: VEmptyState
|
|
142724
|
+
VExpansionPanels: VExpansionPanels
|
|
142725
|
+
VExpansionPanel: VExpansionPanel
|
|
142726
|
+
VExpansionPanelText: VExpansionPanelText
|
|
142727
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
|
142719
142728
|
VFileInput: VFileInput
|
|
142720
142729
|
VImg: VImg
|
|
142730
|
+
VFooter: VFooter
|
|
142721
142731
|
VIcon: VIcon
|
|
142722
142732
|
VComponentIcon: VComponentIcon
|
|
142723
142733
|
VSvgIcon: VSvgIcon
|
|
142724
142734
|
VLigatureIcon: VLigatureIcon
|
|
142725
142735
|
VClassIcon: VClassIcon
|
|
142726
142736
|
VInfiniteScroll: VInfiniteScroll
|
|
142727
|
-
VItemGroup: VItemGroup
|
|
142728
|
-
VItem: VItem
|
|
142729
|
-
VFooter: VFooter
|
|
142730
142737
|
VKbd: VKbd
|
|
142731
142738
|
VInput: VInput
|
|
142739
|
+
VItemGroup: VItemGroup
|
|
142740
|
+
VItem: VItem
|
|
142741
|
+
VLabel: VLabel
|
|
142742
|
+
VMain: VMain
|
|
142732
142743
|
VList: VList
|
|
142733
142744
|
VListGroup: VListGroup
|
|
142734
142745
|
VListImg: VListImg
|
|
@@ -142738,73 +142749,71 @@ declare module 'vue' {
|
|
|
142738
142749
|
VListItemSubtitle: VListItemSubtitle
|
|
142739
142750
|
VListItemTitle: VListItemTitle
|
|
142740
142751
|
VListSubheader: VListSubheader
|
|
142741
|
-
|
|
142742
|
-
VMain: VMain
|
|
142752
|
+
VMenu: VMenu
|
|
142743
142753
|
VMessages: VMessages
|
|
142744
142754
|
VNumberInput: VNumberInput
|
|
142745
|
-
VMenu: VMenu
|
|
142746
|
-
VOverlay: VOverlay
|
|
142747
142755
|
VNavigationDrawer: VNavigationDrawer
|
|
142756
|
+
VOverlay: VOverlay
|
|
142748
142757
|
VOtpInput: VOtpInput
|
|
142749
|
-
VRadioGroup: VRadioGroup
|
|
142750
|
-
VProgressLinear: VProgressLinear
|
|
142751
142758
|
VPagination: VPagination
|
|
142759
|
+
VRating: VRating
|
|
142760
|
+
VProgressLinear: VProgressLinear
|
|
142752
142761
|
VProgressCircular: VProgressCircular
|
|
142762
|
+
VRadioGroup: VRadioGroup
|
|
142753
142763
|
VSelect: VSelect
|
|
142764
|
+
VSheet: VSheet
|
|
142765
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
142754
142766
|
VSelectionControl: VSelectionControl
|
|
142755
|
-
VRating: VRating
|
|
142756
|
-
VSlideGroup: VSlideGroup
|
|
142757
|
-
VSlideGroupItem: VSlideGroupItem
|
|
142758
142767
|
VSkeletonLoader: VSkeletonLoader
|
|
142759
|
-
VSnackbar: VSnackbar
|
|
142760
142768
|
VSlider: VSlider
|
|
142761
|
-
|
|
142769
|
+
VSnackbar: VSnackbar
|
|
142770
|
+
VTable: VTable
|
|
142771
|
+
VSlideGroup: VSlideGroup
|
|
142772
|
+
VSlideGroupItem: VSlideGroupItem
|
|
142762
142773
|
VStepper: VStepper
|
|
142763
142774
|
VStepperActions: VStepperActions
|
|
142764
142775
|
VStepperHeader: VStepperHeader
|
|
142765
142776
|
VStepperItem: VStepperItem
|
|
142766
142777
|
VStepperWindow: VStepperWindow
|
|
142767
142778
|
VStepperWindowItem: VStepperWindowItem
|
|
142768
|
-
VSheet: VSheet
|
|
142769
|
-
VTextarea: VTextarea
|
|
142770
142779
|
VSystemBar: VSystemBar
|
|
142771
|
-
|
|
142772
|
-
|
|
142773
|
-
|
|
142774
|
-
VToolbarItems: VToolbarItems
|
|
142780
|
+
VSwitch: VSwitch
|
|
142781
|
+
VTextarea: VTextarea
|
|
142782
|
+
VTextField: VTextField
|
|
142775
142783
|
VTab: VTab
|
|
142776
142784
|
VTabs: VTabs
|
|
142777
142785
|
VTabsWindow: VTabsWindow
|
|
142778
142786
|
VTabsWindowItem: VTabsWindowItem
|
|
142779
|
-
|
|
142780
|
-
|
|
142787
|
+
VToolbar: VToolbar
|
|
142788
|
+
VToolbarTitle: VToolbarTitle
|
|
142789
|
+
VToolbarItems: VToolbarItems
|
|
142781
142790
|
VTimePicker: VTimePicker
|
|
142782
142791
|
VTimePickerClock: VTimePickerClock
|
|
142783
142792
|
VTimePickerControls: VTimePickerControls
|
|
142784
|
-
VTextField: VTextField
|
|
142785
142793
|
VTooltip: VTooltip
|
|
142794
|
+
VTimeline: VTimeline
|
|
142795
|
+
VTimelineItem: VTimelineItem
|
|
142796
|
+
VWindow: VWindow
|
|
142797
|
+
VWindowItem: VWindowItem
|
|
142786
142798
|
VTreeview: VTreeview
|
|
142787
142799
|
VTreeviewItem: VTreeviewItem
|
|
142788
142800
|
VTreeviewGroup: VTreeviewGroup
|
|
142789
|
-
VWindow: VWindow
|
|
142790
|
-
VWindowItem: VWindowItem
|
|
142791
|
-
VSwitch: VSwitch
|
|
142792
142801
|
VConfirmEdit: VConfirmEdit
|
|
142793
142802
|
VDataIterator: VDataIterator
|
|
142794
142803
|
VDefaultsProvider: VDefaultsProvider
|
|
142795
142804
|
VForm: VForm
|
|
142796
|
-
VHover: VHover
|
|
142797
|
-
VLayout: VLayout
|
|
142798
|
-
VLayoutItem: VLayoutItem
|
|
142799
|
-
VLazy: VLazy
|
|
142800
142805
|
VContainer: VContainer
|
|
142801
142806
|
VCol: VCol
|
|
142802
142807
|
VRow: VRow
|
|
142803
142808
|
VSpacer: VSpacer
|
|
142809
|
+
VHover: VHover
|
|
142810
|
+
VLayout: VLayout
|
|
142811
|
+
VLayoutItem: VLayoutItem
|
|
142804
142812
|
VLocaleProvider: VLocaleProvider
|
|
142813
|
+
VLazy: VLazy
|
|
142814
|
+
VRadio: VRadio
|
|
142805
142815
|
VNoSsr: VNoSsr
|
|
142806
142816
|
VParallax: VParallax
|
|
142807
|
-
VRadio: VRadio
|
|
142808
142817
|
VRangeSlider: VRangeSlider
|
|
142809
142818
|
VResponsive: VResponsive
|
|
142810
142819
|
VSnackbarQueue: VSnackbarQueue
|
|
@@ -142830,22 +142839,22 @@ declare module 'vue' {
|
|
|
142830
142839
|
VExpandXTransition: VExpandXTransition
|
|
142831
142840
|
VDialogTransition: VDialogTransition
|
|
142832
142841
|
VColorInput: VColorInput
|
|
142833
|
-
VCalendar: VCalendar
|
|
142834
142842
|
VIconBtn: VIconBtn
|
|
142835
142843
|
VFileUpload: VFileUpload
|
|
142836
142844
|
VFileUploadItem: VFileUploadItem
|
|
142845
|
+
VPicker: VPicker
|
|
142846
|
+
VPickerTitle: VPickerTitle
|
|
142847
|
+
VCalendar: VCalendar
|
|
142837
142848
|
VPie: VPie
|
|
142838
142849
|
VPieSegment: VPieSegment
|
|
142839
142850
|
VPieTooltip: VPieTooltip
|
|
142840
|
-
VPicker: VPicker
|
|
142841
|
-
VPickerTitle: VPickerTitle
|
|
142842
142851
|
VStepperVertical: VStepperVertical
|
|
142843
142852
|
VStepperVerticalItem: VStepperVerticalItem
|
|
142844
142853
|
VStepperVerticalActions: VStepperVerticalActions
|
|
142854
|
+
VHotkey: VHotkey
|
|
142845
142855
|
VVideo: VVideo
|
|
142846
142856
|
VVideoControls: VVideoControls
|
|
142847
142857
|
VVideoVolume: VVideoVolume
|
|
142848
|
-
VHotkey: VHotkey
|
|
142849
142858
|
VDateInput: VDateInput
|
|
142850
142859
|
VMaskInput: VMaskInput
|
|
142851
142860
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify-labs.esm.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
|
*/
|
|
@@ -1672,25 +1672,28 @@ function getIndentLines(_ref) {
|
|
|
1672
1672
|
parentIndentLines,
|
|
1673
1673
|
variant
|
|
1674
1674
|
} = _ref;
|
|
1675
|
+
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1675
1676
|
if (!parentIndentLines || !depth) {
|
|
1676
1677
|
return {
|
|
1677
1678
|
leaf: undefined,
|
|
1678
1679
|
node: undefined,
|
|
1679
|
-
children: parentIndentLines
|
|
1680
|
+
children: parentIndentLines,
|
|
1681
|
+
footer: parentIndentLines && (!isLastLeaf || variant === 'simple') ? [...parentIndentLines, separateRoots ? 'none' : 'line'] : ['none']
|
|
1680
1682
|
};
|
|
1681
1683
|
}
|
|
1682
1684
|
if (variant === 'simple') {
|
|
1683
1685
|
return {
|
|
1684
1686
|
leaf: [...parentIndentLines, 'line'],
|
|
1685
1687
|
node: [...parentIndentLines, 'line'],
|
|
1686
|
-
children: [...parentIndentLines, 'line']
|
|
1688
|
+
children: [...parentIndentLines, 'line'],
|
|
1689
|
+
footer: [...parentIndentLines, 'line', 'line']
|
|
1687
1690
|
};
|
|
1688
1691
|
}
|
|
1689
|
-
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1690
1692
|
return {
|
|
1691
1693
|
leaf: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf', ...(leafLinks ? ['leaf-link'] : [])],
|
|
1692
1694
|
node: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf'],
|
|
1693
|
-
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1695
|
+
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line'],
|
|
1696
|
+
footer: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1694
1697
|
};
|
|
1695
1698
|
}
|
|
1696
1699
|
|
|
@@ -31331,6 +31334,10 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31331
31334
|
...props,
|
|
31332
31335
|
...treeItemProps
|
|
31333
31336
|
});
|
|
31337
|
+
const footerProps = {
|
|
31338
|
+
hideActions: props.hideActions,
|
|
31339
|
+
indentLines: indentLines.footer
|
|
31340
|
+
};
|
|
31334
31341
|
return children ? createVNode(VTreeviewGroup, mergeProps(treeviewGroupProps, {
|
|
31335
31342
|
"value": props.returnObject ? item.raw : treeviewGroupProps?.value,
|
|
31336
31343
|
"rawId": treeviewGroupProps?.value
|
|
@@ -31343,6 +31350,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31343
31350
|
...itemProps,
|
|
31344
31351
|
...activatorProps,
|
|
31345
31352
|
value: itemProps?.value,
|
|
31353
|
+
hideActions: props.hideActions,
|
|
31346
31354
|
indentLines: indentLines.node,
|
|
31347
31355
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
31348
31356
|
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
@@ -31356,7 +31364,6 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31356
31364
|
"ref": el => activatorItems.value[index] = el
|
|
31357
31365
|
}, listItemProps, {
|
|
31358
31366
|
"hasCustomPrepend": !!slots.prepend,
|
|
31359
|
-
"hideActions": props.hideActions,
|
|
31360
31367
|
"value": props.returnObject ? item.raw : itemProps.value,
|
|
31361
31368
|
"loading": loading
|
|
31362
31369
|
}), slotsWithItem));
|
|
@@ -31368,6 +31375,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31368
31375
|
"isLastGroup": nextItemHasChildren,
|
|
31369
31376
|
"returnObject": props.returnObject
|
|
31370
31377
|
}), slots), slots.footer?.({
|
|
31378
|
+
props: footerProps,
|
|
31371
31379
|
item: item.raw,
|
|
31372
31380
|
internalItem: item,
|
|
31373
31381
|
loading
|
|
@@ -37918,7 +37926,7 @@ function createVuetify$1() {
|
|
|
37918
37926
|
};
|
|
37919
37927
|
});
|
|
37920
37928
|
}
|
|
37921
|
-
const version$1 = "3.10.4-dev.2025-10-
|
|
37929
|
+
const version$1 = "3.10.4-dev.2025-10-02";
|
|
37922
37930
|
createVuetify$1.version = version$1;
|
|
37923
37931
|
|
|
37924
37932
|
// Vue's inject() can only be used in setup
|
|
@@ -38216,7 +38224,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
38216
38224
|
|
|
38217
38225
|
/* eslint-disable local-rules/sort-imports */
|
|
38218
38226
|
|
|
38219
|
-
const version = "3.10.4-dev.2025-10-
|
|
38227
|
+
const version = "3.10.4-dev.2025-10-02";
|
|
38220
38228
|
|
|
38221
38229
|
/* eslint-disable local-rules/sort-imports */
|
|
38222
38230
|
|