@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.d.ts
CHANGED
|
@@ -101698,6 +101698,9 @@ type VTreeviewChildrenSlots<T> = {
|
|
|
101698
101698
|
loading: boolean;
|
|
101699
101699
|
};
|
|
101700
101700
|
footer: {
|
|
101701
|
+
props: {
|
|
101702
|
+
indentLines?: IndentLineType[];
|
|
101703
|
+
};
|
|
101701
101704
|
item: T;
|
|
101702
101705
|
internalItem: InternalListItem<T>;
|
|
101703
101706
|
loading: boolean;
|
|
@@ -101912,6 +101915,9 @@ declare const VTreeview: {
|
|
|
101912
101915
|
[key: string]: any;
|
|
101913
101916
|
}>[];
|
|
101914
101917
|
footer: (arg: {
|
|
101918
|
+
props: {
|
|
101919
|
+
indentLines?: IndentLineType[] | undefined;
|
|
101920
|
+
};
|
|
101915
101921
|
item: unknown;
|
|
101916
101922
|
internalItem: InternalListItem<unknown>;
|
|
101917
101923
|
loading: boolean;
|
|
@@ -102270,6 +102276,9 @@ declare const VTreeview: {
|
|
|
102270
102276
|
[key: string]: any;
|
|
102271
102277
|
}>[];
|
|
102272
102278
|
footer: (arg: {
|
|
102279
|
+
props: {
|
|
102280
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102281
|
+
};
|
|
102273
102282
|
item: unknown;
|
|
102274
102283
|
internalItem: InternalListItem<unknown>;
|
|
102275
102284
|
loading: boolean;
|
|
@@ -105765,25 +105774,28 @@ declare module 'vue' {
|
|
|
105765
105774
|
$children?: VNodeChild
|
|
105766
105775
|
}
|
|
105767
105776
|
export interface GlobalComponents {
|
|
105768
|
-
VApp: VApp
|
|
105769
|
-
VAlert: VAlert
|
|
105770
|
-
VAlertTitle: VAlertTitle
|
|
105771
|
-
VAutocomplete: VAutocomplete
|
|
105772
105777
|
VAppBar: VAppBar
|
|
105773
105778
|
VAppBarNavIcon: VAppBarNavIcon
|
|
105774
105779
|
VAppBarTitle: VAppBarTitle
|
|
105775
105780
|
VBadge: VBadge
|
|
105781
|
+
VApp: VApp
|
|
105782
|
+
VAlert: VAlert
|
|
105783
|
+
VAlertTitle: VAlertTitle
|
|
105776
105784
|
VAvatar: VAvatar
|
|
105777
|
-
VBottomSheet: VBottomSheet
|
|
105778
|
-
VBottomNavigation: VBottomNavigation
|
|
105779
|
-
VBtn: VBtn
|
|
105780
105785
|
VBanner: VBanner
|
|
105781
105786
|
VBannerActions: VBannerActions
|
|
105782
105787
|
VBannerText: VBannerText
|
|
105788
|
+
VAutocomplete: VAutocomplete
|
|
105789
|
+
VBottomSheet: VBottomSheet
|
|
105783
105790
|
VBreadcrumbs: VBreadcrumbs
|
|
105784
105791
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
105785
105792
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
105786
105793
|
VBtnGroup: VBtnGroup
|
|
105794
|
+
VBottomNavigation: VBottomNavigation
|
|
105795
|
+
VBtn: VBtn
|
|
105796
|
+
VCheckbox: VCheckbox
|
|
105797
|
+
VCheckboxBtn: VCheckboxBtn
|
|
105798
|
+
VBtnToggle: VBtnToggle
|
|
105787
105799
|
VCarousel: VCarousel
|
|
105788
105800
|
VCarouselItem: VCarouselItem
|
|
105789
105801
|
VCard: VCard
|
|
@@ -105792,28 +105804,20 @@ declare module 'vue' {
|
|
|
105792
105804
|
VCardSubtitle: VCardSubtitle
|
|
105793
105805
|
VCardText: VCardText
|
|
105794
105806
|
VCardTitle: VCardTitle
|
|
105795
|
-
|
|
105796
|
-
VCheckboxBtn: VCheckboxBtn
|
|
105797
|
-
VBtnToggle: VBtnToggle
|
|
105798
|
-
VChip: VChip
|
|
105807
|
+
VCode: VCode
|
|
105799
105808
|
VChipGroup: VChipGroup
|
|
105800
|
-
|
|
105801
|
-
VCombobox: VCombobox
|
|
105802
|
-
VCounter: VCounter
|
|
105809
|
+
VChip: VChip
|
|
105803
105810
|
VDialog: VDialog
|
|
105811
|
+
VCounter: VCounter
|
|
105812
|
+
VCombobox: VCombobox
|
|
105804
105813
|
VDatePicker: VDatePicker
|
|
105805
105814
|
VDatePickerControls: VDatePickerControls
|
|
105806
105815
|
VDatePickerHeader: VDatePickerHeader
|
|
105807
105816
|
VDatePickerMonth: VDatePickerMonth
|
|
105808
105817
|
VDatePickerMonths: VDatePickerMonths
|
|
105809
105818
|
VDatePickerYears: VDatePickerYears
|
|
105810
|
-
|
|
105819
|
+
VColorPicker: VColorPicker
|
|
105811
105820
|
VDivider: VDivider
|
|
105812
|
-
VEmptyState: VEmptyState
|
|
105813
|
-
VExpansionPanels: VExpansionPanels
|
|
105814
|
-
VExpansionPanel: VExpansionPanel
|
|
105815
|
-
VExpansionPanelText: VExpansionPanelText
|
|
105816
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
|
105817
105821
|
VDataTable: VDataTable
|
|
105818
105822
|
VDataTableHeaders: VDataTableHeaders
|
|
105819
105823
|
VDataTableFooter: VDataTableFooter
|
|
@@ -105821,22 +105825,29 @@ declare module 'vue' {
|
|
|
105821
105825
|
VDataTableRow: VDataTableRow
|
|
105822
105826
|
VDataTableVirtual: VDataTableVirtual
|
|
105823
105827
|
VDataTableServer: VDataTableServer
|
|
105828
|
+
VFab: VFab
|
|
105824
105829
|
VField: VField
|
|
105825
105830
|
VFieldLabel: VFieldLabel
|
|
105826
|
-
|
|
105831
|
+
VEmptyState: VEmptyState
|
|
105832
|
+
VExpansionPanels: VExpansionPanels
|
|
105833
|
+
VExpansionPanel: VExpansionPanel
|
|
105834
|
+
VExpansionPanelText: VExpansionPanelText
|
|
105835
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
|
105827
105836
|
VFileInput: VFileInput
|
|
105828
105837
|
VImg: VImg
|
|
105838
|
+
VFooter: VFooter
|
|
105829
105839
|
VIcon: VIcon
|
|
105830
105840
|
VComponentIcon: VComponentIcon
|
|
105831
105841
|
VSvgIcon: VSvgIcon
|
|
105832
105842
|
VLigatureIcon: VLigatureIcon
|
|
105833
105843
|
VClassIcon: VClassIcon
|
|
105834
105844
|
VInfiniteScroll: VInfiniteScroll
|
|
105835
|
-
VItemGroup: VItemGroup
|
|
105836
|
-
VItem: VItem
|
|
105837
|
-
VFooter: VFooter
|
|
105838
105845
|
VKbd: VKbd
|
|
105839
105846
|
VInput: VInput
|
|
105847
|
+
VItemGroup: VItemGroup
|
|
105848
|
+
VItem: VItem
|
|
105849
|
+
VLabel: VLabel
|
|
105850
|
+
VMain: VMain
|
|
105840
105851
|
VList: VList
|
|
105841
105852
|
VListGroup: VListGroup
|
|
105842
105853
|
VListImg: VListImg
|
|
@@ -105846,73 +105857,71 @@ declare module 'vue' {
|
|
|
105846
105857
|
VListItemSubtitle: VListItemSubtitle
|
|
105847
105858
|
VListItemTitle: VListItemTitle
|
|
105848
105859
|
VListSubheader: VListSubheader
|
|
105849
|
-
|
|
105850
|
-
VMain: VMain
|
|
105860
|
+
VMenu: VMenu
|
|
105851
105861
|
VMessages: VMessages
|
|
105852
105862
|
VNumberInput: VNumberInput
|
|
105853
|
-
VMenu: VMenu
|
|
105854
|
-
VOverlay: VOverlay
|
|
105855
105863
|
VNavigationDrawer: VNavigationDrawer
|
|
105864
|
+
VOverlay: VOverlay
|
|
105856
105865
|
VOtpInput: VOtpInput
|
|
105857
|
-
VRadioGroup: VRadioGroup
|
|
105858
|
-
VProgressLinear: VProgressLinear
|
|
105859
105866
|
VPagination: VPagination
|
|
105867
|
+
VRating: VRating
|
|
105868
|
+
VProgressLinear: VProgressLinear
|
|
105860
105869
|
VProgressCircular: VProgressCircular
|
|
105870
|
+
VRadioGroup: VRadioGroup
|
|
105861
105871
|
VSelect: VSelect
|
|
105872
|
+
VSheet: VSheet
|
|
105873
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
105862
105874
|
VSelectionControl: VSelectionControl
|
|
105863
|
-
VRating: VRating
|
|
105864
|
-
VSlideGroup: VSlideGroup
|
|
105865
|
-
VSlideGroupItem: VSlideGroupItem
|
|
105866
105875
|
VSkeletonLoader: VSkeletonLoader
|
|
105867
|
-
VSnackbar: VSnackbar
|
|
105868
105876
|
VSlider: VSlider
|
|
105869
|
-
|
|
105877
|
+
VSnackbar: VSnackbar
|
|
105878
|
+
VTable: VTable
|
|
105879
|
+
VSlideGroup: VSlideGroup
|
|
105880
|
+
VSlideGroupItem: VSlideGroupItem
|
|
105870
105881
|
VStepper: VStepper
|
|
105871
105882
|
VStepperActions: VStepperActions
|
|
105872
105883
|
VStepperHeader: VStepperHeader
|
|
105873
105884
|
VStepperItem: VStepperItem
|
|
105874
105885
|
VStepperWindow: VStepperWindow
|
|
105875
105886
|
VStepperWindowItem: VStepperWindowItem
|
|
105876
|
-
VSheet: VSheet
|
|
105877
|
-
VTextarea: VTextarea
|
|
105878
105887
|
VSystemBar: VSystemBar
|
|
105879
|
-
|
|
105880
|
-
|
|
105881
|
-
|
|
105882
|
-
VToolbarItems: VToolbarItems
|
|
105888
|
+
VSwitch: VSwitch
|
|
105889
|
+
VTextarea: VTextarea
|
|
105890
|
+
VTextField: VTextField
|
|
105883
105891
|
VTab: VTab
|
|
105884
105892
|
VTabs: VTabs
|
|
105885
105893
|
VTabsWindow: VTabsWindow
|
|
105886
105894
|
VTabsWindowItem: VTabsWindowItem
|
|
105887
|
-
|
|
105888
|
-
|
|
105895
|
+
VToolbar: VToolbar
|
|
105896
|
+
VToolbarTitle: VToolbarTitle
|
|
105897
|
+
VToolbarItems: VToolbarItems
|
|
105889
105898
|
VTimePicker: VTimePicker
|
|
105890
105899
|
VTimePickerClock: VTimePickerClock
|
|
105891
105900
|
VTimePickerControls: VTimePickerControls
|
|
105892
|
-
VTextField: VTextField
|
|
105893
105901
|
VTooltip: VTooltip
|
|
105902
|
+
VTimeline: VTimeline
|
|
105903
|
+
VTimelineItem: VTimelineItem
|
|
105904
|
+
VWindow: VWindow
|
|
105905
|
+
VWindowItem: VWindowItem
|
|
105894
105906
|
VTreeview: VTreeview
|
|
105895
105907
|
VTreeviewItem: VTreeviewItem
|
|
105896
105908
|
VTreeviewGroup: VTreeviewGroup
|
|
105897
|
-
VWindow: VWindow
|
|
105898
|
-
VWindowItem: VWindowItem
|
|
105899
|
-
VSwitch: VSwitch
|
|
105900
105909
|
VConfirmEdit: VConfirmEdit
|
|
105901
105910
|
VDataIterator: VDataIterator
|
|
105902
105911
|
VDefaultsProvider: VDefaultsProvider
|
|
105903
105912
|
VForm: VForm
|
|
105904
|
-
VHover: VHover
|
|
105905
|
-
VLayout: VLayout
|
|
105906
|
-
VLayoutItem: VLayoutItem
|
|
105907
|
-
VLazy: VLazy
|
|
105908
105913
|
VContainer: VContainer
|
|
105909
105914
|
VCol: VCol
|
|
105910
105915
|
VRow: VRow
|
|
105911
105916
|
VSpacer: VSpacer
|
|
105917
|
+
VHover: VHover
|
|
105918
|
+
VLayout: VLayout
|
|
105919
|
+
VLayoutItem: VLayoutItem
|
|
105912
105920
|
VLocaleProvider: VLocaleProvider
|
|
105921
|
+
VLazy: VLazy
|
|
105922
|
+
VRadio: VRadio
|
|
105913
105923
|
VNoSsr: VNoSsr
|
|
105914
105924
|
VParallax: VParallax
|
|
105915
|
-
VRadio: VRadio
|
|
105916
105925
|
VRangeSlider: VRangeSlider
|
|
105917
105926
|
VResponsive: VResponsive
|
|
105918
105927
|
VSnackbarQueue: VSnackbarQueue
|
|
@@ -105938,22 +105947,22 @@ declare module 'vue' {
|
|
|
105938
105947
|
VExpandXTransition: VExpandXTransition
|
|
105939
105948
|
VDialogTransition: VDialogTransition
|
|
105940
105949
|
VColorInput: VColorInput
|
|
105941
|
-
VCalendar: VCalendar
|
|
105942
105950
|
VIconBtn: VIconBtn
|
|
105943
105951
|
VFileUpload: VFileUpload
|
|
105944
105952
|
VFileUploadItem: VFileUploadItem
|
|
105953
|
+
VPicker: VPicker
|
|
105954
|
+
VPickerTitle: VPickerTitle
|
|
105955
|
+
VCalendar: VCalendar
|
|
105945
105956
|
VPie: VPie
|
|
105946
105957
|
VPieSegment: VPieSegment
|
|
105947
105958
|
VPieTooltip: VPieTooltip
|
|
105948
|
-
VPicker: VPicker
|
|
105949
|
-
VPickerTitle: VPickerTitle
|
|
105950
105959
|
VStepperVertical: VStepperVertical
|
|
105951
105960
|
VStepperVerticalItem: VStepperVerticalItem
|
|
105952
105961
|
VStepperVerticalActions: VStepperVerticalActions
|
|
105962
|
+
VHotkey: VHotkey
|
|
105953
105963
|
VVideo: VVideo
|
|
105954
105964
|
VVideoControls: VVideoControls
|
|
105955
105965
|
VVideoVolume: VVideoVolume
|
|
105956
|
-
VHotkey: VHotkey
|
|
105957
105966
|
VDateInput: VDateInput
|
|
105958
105967
|
VMaskInput: VMaskInput
|
|
105959
105968
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify.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
|
*/
|
|
@@ -1638,25 +1638,28 @@ function getIndentLines(_ref) {
|
|
|
1638
1638
|
parentIndentLines,
|
|
1639
1639
|
variant
|
|
1640
1640
|
} = _ref;
|
|
1641
|
+
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1641
1642
|
if (!parentIndentLines || !depth) {
|
|
1642
1643
|
return {
|
|
1643
1644
|
leaf: undefined,
|
|
1644
1645
|
node: undefined,
|
|
1645
|
-
children: parentIndentLines
|
|
1646
|
+
children: parentIndentLines,
|
|
1647
|
+
footer: parentIndentLines && (!isLastLeaf || variant === 'simple') ? [...parentIndentLines, separateRoots ? 'none' : 'line'] : ['none']
|
|
1646
1648
|
};
|
|
1647
1649
|
}
|
|
1648
1650
|
if (variant === 'simple') {
|
|
1649
1651
|
return {
|
|
1650
1652
|
leaf: [...parentIndentLines, 'line'],
|
|
1651
1653
|
node: [...parentIndentLines, 'line'],
|
|
1652
|
-
children: [...parentIndentLines, 'line']
|
|
1654
|
+
children: [...parentIndentLines, 'line'],
|
|
1655
|
+
footer: [...parentIndentLines, 'line', 'line']
|
|
1653
1656
|
};
|
|
1654
1657
|
}
|
|
1655
|
-
const isLastLeaf = isLast && (!isLastGroup || separateRoots || depth > 1);
|
|
1656
1658
|
return {
|
|
1657
1659
|
leaf: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf', ...(leafLinks ? ['leaf-link'] : [])],
|
|
1658
1660
|
node: [...parentIndentLines, isLastLeaf ? 'last-leaf' : 'leaf'],
|
|
1659
|
-
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1661
|
+
children: [...parentIndentLines, isLastLeaf ? 'none' : 'line'],
|
|
1662
|
+
footer: [...parentIndentLines, isLastLeaf ? 'none' : 'line']
|
|
1660
1663
|
};
|
|
1661
1664
|
}
|
|
1662
1665
|
|
|
@@ -31568,6 +31571,10 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31568
31571
|
...props,
|
|
31569
31572
|
...treeItemProps
|
|
31570
31573
|
});
|
|
31574
|
+
const footerProps = {
|
|
31575
|
+
hideActions: props.hideActions,
|
|
31576
|
+
indentLines: indentLines.footer
|
|
31577
|
+
};
|
|
31571
31578
|
return children ? createVNode(VTreeviewGroup, mergeProps(treeviewGroupProps, {
|
|
31572
31579
|
"value": props.returnObject ? item.raw : treeviewGroupProps?.value,
|
|
31573
31580
|
"rawId": treeviewGroupProps?.value
|
|
@@ -31580,6 +31587,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31580
31587
|
...itemProps,
|
|
31581
31588
|
...activatorProps,
|
|
31582
31589
|
value: itemProps?.value,
|
|
31590
|
+
hideActions: props.hideActions,
|
|
31583
31591
|
indentLines: indentLines.node,
|
|
31584
31592
|
onToggleExpand: [() => checkChildren(item), activatorProps.onClick],
|
|
31585
31593
|
onClick: isClickOnOpen.value ? [() => checkChildren(item), activatorProps.onClick] : () => selectItem(activatorItems.value[index]?.select, !activatorItems.value[index]?.isSelected)
|
|
@@ -31593,7 +31601,6 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31593
31601
|
"ref": el => activatorItems.value[index] = el
|
|
31594
31602
|
}, listItemProps, {
|
|
31595
31603
|
"hasCustomPrepend": !!slots.prepend,
|
|
31596
|
-
"hideActions": props.hideActions,
|
|
31597
31604
|
"value": props.returnObject ? item.raw : itemProps.value,
|
|
31598
31605
|
"loading": loading
|
|
31599
31606
|
}), slotsWithItem));
|
|
@@ -31605,6 +31612,7 @@ const VTreeviewChildren = genericComponent()({
|
|
|
31605
31612
|
"isLastGroup": nextItemHasChildren,
|
|
31606
31613
|
"returnObject": props.returnObject
|
|
31607
31614
|
}), slots), slots.footer?.({
|
|
31615
|
+
props: footerProps,
|
|
31608
31616
|
item: item.raw,
|
|
31609
31617
|
internalItem: item,
|
|
31610
31618
|
loading
|
|
@@ -32292,7 +32300,7 @@ function createVuetify$1() {
|
|
|
32292
32300
|
};
|
|
32293
32301
|
});
|
|
32294
32302
|
}
|
|
32295
|
-
const version$1 = "3.10.4-dev.2025-10-
|
|
32303
|
+
const version$1 = "3.10.4-dev.2025-10-02";
|
|
32296
32304
|
createVuetify$1.version = version$1;
|
|
32297
32305
|
|
|
32298
32306
|
// Vue's inject() can only be used in setup
|
|
@@ -32317,7 +32325,7 @@ const createVuetify = function () {
|
|
|
32317
32325
|
...options
|
|
32318
32326
|
});
|
|
32319
32327
|
};
|
|
32320
|
-
const version = "3.10.4-dev.2025-10-
|
|
32328
|
+
const version = "3.10.4-dev.2025-10-02";
|
|
32321
32329
|
createVuetify.version = version;
|
|
32322
32330
|
|
|
32323
32331
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|