@vuetify/nightly 3.11.2-dev.2025-12-03 → 3.11.2-dev.2025-12-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 +14 -3
- package/dist/json/attributes.json +2019 -2015
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +178 -178
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3666 -3656
- package/dist/vuetify-labs.cjs +46 -8
- package/dist/vuetify-labs.css +3910 -3896
- package/dist/vuetify-labs.d.ts +86 -70
- package/dist/vuetify-labs.esm.js +46 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +46 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +46 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +6857 -6843
- package/dist/vuetify.d.ts +86 -70
- package/dist/vuetify.esm.js +46 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +46 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +23 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VHotkey/_variables.scss +1 -0
- package/lib/components/VOtpInput/VOtpInput.css +15 -1
- package/lib/components/VOtpInput/VOtpInput.d.ts +29 -0
- package/lib/components/VOtpInput/VOtpInput.js +8 -2
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.sass +11 -2
- package/lib/components/VOtpInput/_variables.scss +1 -0
- package/lib/components/VWindow/VWindow.js +3 -3
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/composables/nested/nested.d.ts +1 -1
- package/lib/composables/nested/nested.js +3 -1
- package/lib/composables/nested/nested.js.map +1 -1
- package/lib/composables/nested/selectStrategies.d.ts +1 -0
- package/lib/composables/nested/selectStrategies.js +31 -0
- package/lib/composables/nested/selectStrategies.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +69 -69
- package/lib/framework.js +1 -1
- package/package.json +6 -4
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -7241,7 +7241,7 @@ interface ListItem<T = any> extends InternalItem<T> {
|
|
|
7241
7241
|
}
|
|
7242
7242
|
|
|
7243
7243
|
type ActiveStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | ActiveStrategy | ((mandatory: boolean) => ActiveStrategy);
|
|
7244
|
-
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | 'trunk' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
|
7244
|
+
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | 'trunk' | 'branch' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
|
7245
7245
|
type OpenStrategyProp = 'single' | 'multiple' | 'list' | OpenStrategy;
|
|
7246
7246
|
type ItemsRegistrationType = 'props' | 'render';
|
|
7247
7247
|
|
|
@@ -75765,6 +75765,7 @@ declare const VOtpInput: {
|
|
|
75765
75765
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
75766
75766
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75767
75767
|
focused: boolean;
|
|
75768
|
+
density: Density;
|
|
75768
75769
|
disabled: boolean;
|
|
75769
75770
|
error: boolean;
|
|
75770
75771
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75823,6 +75824,7 @@ declare const VOtpInput: {
|
|
|
75823
75824
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
75824
75825
|
style: vue.StyleValue;
|
|
75825
75826
|
focused: boolean;
|
|
75827
|
+
density: Density;
|
|
75826
75828
|
rounded: string | number | boolean;
|
|
75827
75829
|
disabled: boolean;
|
|
75828
75830
|
error: boolean;
|
|
@@ -75850,6 +75852,7 @@ declare const VOtpInput: {
|
|
|
75850
75852
|
}, {
|
|
75851
75853
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75852
75854
|
focused: boolean;
|
|
75855
|
+
density: Density;
|
|
75853
75856
|
disabled: boolean;
|
|
75854
75857
|
error: boolean;
|
|
75855
75858
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75904,6 +75907,7 @@ declare const VOtpInput: {
|
|
|
75904
75907
|
}, {}, {}, {}, {
|
|
75905
75908
|
style: vue.StyleValue;
|
|
75906
75909
|
focused: boolean;
|
|
75910
|
+
density: Density;
|
|
75907
75911
|
rounded: string | number | boolean;
|
|
75908
75912
|
disabled: boolean;
|
|
75909
75913
|
error: boolean;
|
|
@@ -75921,6 +75925,7 @@ declare const VOtpInput: {
|
|
|
75921
75925
|
} & vue.ComponentOptionsBase<{
|
|
75922
75926
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75923
75927
|
focused: boolean;
|
|
75928
|
+
density: Density;
|
|
75924
75929
|
disabled: boolean;
|
|
75925
75930
|
error: boolean;
|
|
75926
75931
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75979,6 +75984,7 @@ declare const VOtpInput: {
|
|
|
75979
75984
|
}, string, {
|
|
75980
75985
|
style: vue.StyleValue;
|
|
75981
75986
|
focused: boolean;
|
|
75987
|
+
density: Density;
|
|
75982
75988
|
rounded: string | number | boolean;
|
|
75983
75989
|
disabled: boolean;
|
|
75984
75990
|
error: boolean;
|
|
@@ -76005,6 +76011,11 @@ declare const VOtpInput: {
|
|
|
76005
76011
|
};
|
|
76006
76012
|
focused: BooleanConstructor;
|
|
76007
76013
|
"onUpdate:focused": PropType<(args_0: boolean) => void>;
|
|
76014
|
+
density: {
|
|
76015
|
+
type: PropType<Density>;
|
|
76016
|
+
default: string;
|
|
76017
|
+
validator: (v: any) => boolean;
|
|
76018
|
+
};
|
|
76008
76019
|
rounded: {
|
|
76009
76020
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
76010
76021
|
default: undefined;
|
|
@@ -76061,6 +76072,11 @@ declare const VOtpInput: {
|
|
|
76061
76072
|
};
|
|
76062
76073
|
focused: BooleanConstructor;
|
|
76063
76074
|
"onUpdate:focused": PropType<(args_0: boolean) => void>;
|
|
76075
|
+
density: {
|
|
76076
|
+
type: PropType<Density>;
|
|
76077
|
+
default: string;
|
|
76078
|
+
validator: (v: any) => boolean;
|
|
76079
|
+
};
|
|
76064
76080
|
rounded: {
|
|
76065
76081
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
76066
76082
|
default: undefined;
|
|
@@ -144335,24 +144351,24 @@ declare module 'vue' {
|
|
|
144335
144351
|
$children?: VNodeChild
|
|
144336
144352
|
}
|
|
144337
144353
|
export interface GlobalComponents {
|
|
144354
|
+
VAppBar: VAppBar
|
|
144355
|
+
VAppBarNavIcon: VAppBarNavIcon
|
|
144356
|
+
VAppBarTitle: VAppBarTitle
|
|
144338
144357
|
VApp: VApp
|
|
144339
144358
|
VAlert: VAlert
|
|
144340
144359
|
VAlertTitle: VAlertTitle
|
|
144341
144360
|
VAutocomplete: VAutocomplete
|
|
144361
|
+
VBtn: VBtn
|
|
144342
144362
|
VAvatar: VAvatar
|
|
144343
144363
|
VBadge: VBadge
|
|
144344
144364
|
VBanner: VBanner
|
|
144345
144365
|
VBannerActions: VBannerActions
|
|
144346
144366
|
VBannerText: VBannerText
|
|
144347
|
-
VBottomSheet: VBottomSheet
|
|
144348
|
-
VBtn: VBtn
|
|
144349
|
-
VAppBar: VAppBar
|
|
144350
|
-
VAppBarNavIcon: VAppBarNavIcon
|
|
144351
|
-
VAppBarTitle: VAppBarTitle
|
|
144352
144367
|
VBottomNavigation: VBottomNavigation
|
|
144353
144368
|
VBreadcrumbs: VBreadcrumbs
|
|
144354
144369
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
144355
144370
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
144371
|
+
VBottomSheet: VBottomSheet
|
|
144356
144372
|
VCard: VCard
|
|
144357
144373
|
VCardActions: VCardActions
|
|
144358
144374
|
VCardItem: VCardItem
|
|
@@ -144360,18 +144376,24 @@ declare module 'vue' {
|
|
|
144360
144376
|
VCardText: VCardText
|
|
144361
144377
|
VCardTitle: VCardTitle
|
|
144362
144378
|
VBtnToggle: VBtnToggle
|
|
144379
|
+
VCarousel: VCarousel
|
|
144380
|
+
VCarouselItem: VCarouselItem
|
|
144363
144381
|
VBtnGroup: VBtnGroup
|
|
144364
144382
|
VCheckbox: VCheckbox
|
|
144365
144383
|
VCheckboxBtn: VCheckboxBtn
|
|
144366
|
-
VCalendar: VCalendar
|
|
144367
144384
|
VChipGroup: VChipGroup
|
|
144368
|
-
|
|
144369
|
-
VCarouselItem: VCarouselItem
|
|
144370
|
-
VChip: VChip
|
|
144371
|
-
VColorPicker: VColorPicker
|
|
144372
|
-
VCounter: VCounter
|
|
144385
|
+
VCalendar: VCalendar
|
|
144373
144386
|
VCode: VCode
|
|
144387
|
+
VDatePicker: VDatePicker
|
|
144388
|
+
VDatePickerControls: VDatePickerControls
|
|
144389
|
+
VDatePickerHeader: VDatePickerHeader
|
|
144390
|
+
VDatePickerMonth: VDatePickerMonth
|
|
144391
|
+
VDatePickerMonths: VDatePickerMonths
|
|
144392
|
+
VDatePickerYears: VDatePickerYears
|
|
144374
144393
|
VCombobox: VCombobox
|
|
144394
|
+
VColorPicker: VColorPicker
|
|
144395
|
+
VCounter: VCounter
|
|
144396
|
+
VChip: VChip
|
|
144375
144397
|
VDataTable: VDataTable
|
|
144376
144398
|
VDataTableHeaders: VDataTableHeaders
|
|
144377
144399
|
VDataTableFooter: VDataTableFooter
|
|
@@ -144379,37 +144401,31 @@ declare module 'vue' {
|
|
|
144379
144401
|
VDataTableRow: VDataTableRow
|
|
144380
144402
|
VDataTableVirtual: VDataTableVirtual
|
|
144381
144403
|
VDataTableServer: VDataTableServer
|
|
144382
|
-
VDialog: VDialog
|
|
144383
|
-
VDatePicker: VDatePicker
|
|
144384
|
-
VDatePickerControls: VDatePickerControls
|
|
144385
|
-
VDatePickerHeader: VDatePickerHeader
|
|
144386
|
-
VDatePickerMonth: VDatePickerMonth
|
|
144387
|
-
VDatePickerMonths: VDatePickerMonths
|
|
144388
|
-
VDatePickerYears: VDatePickerYears
|
|
144389
|
-
VEmptyState: VEmptyState
|
|
144390
|
-
VDivider: VDivider
|
|
144391
|
-
VField: VField
|
|
144392
|
-
VFieldLabel: VFieldLabel
|
|
144393
144404
|
VExpansionPanels: VExpansionPanels
|
|
144394
144405
|
VExpansionPanel: VExpansionPanel
|
|
144395
144406
|
VExpansionPanelText: VExpansionPanelText
|
|
144396
144407
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
144397
|
-
|
|
144408
|
+
VDialog: VDialog
|
|
144409
|
+
VDivider: VDivider
|
|
144398
144410
|
VFab: VFab
|
|
144411
|
+
VEmptyState: VEmptyState
|
|
144412
|
+
VFileInput: VFileInput
|
|
144413
|
+
VField: VField
|
|
144414
|
+
VFieldLabel: VFieldLabel
|
|
144415
|
+
VHotkey: VHotkey
|
|
144399
144416
|
VFooter: VFooter
|
|
144417
|
+
VInfiniteScroll: VInfiniteScroll
|
|
144418
|
+
VImg: VImg
|
|
144419
|
+
VItemGroup: VItemGroup
|
|
144420
|
+
VItem: VItem
|
|
144421
|
+
VInput: VInput
|
|
144400
144422
|
VIcon: VIcon
|
|
144401
144423
|
VComponentIcon: VComponentIcon
|
|
144402
144424
|
VSvgIcon: VSvgIcon
|
|
144403
144425
|
VLigatureIcon: VLigatureIcon
|
|
144404
144426
|
VClassIcon: VClassIcon
|
|
144405
|
-
VHotkey: VHotkey
|
|
144406
|
-
VImg: VImg
|
|
144407
|
-
VInput: VInput
|
|
144408
|
-
VInfiniteScroll: VInfiniteScroll
|
|
144409
|
-
VItemGroup: VItemGroup
|
|
144410
|
-
VItem: VItem
|
|
144411
144427
|
VKbd: VKbd
|
|
144412
|
-
|
|
144428
|
+
VMenu: VMenu
|
|
144413
144429
|
VList: VList
|
|
144414
144430
|
VListGroup: VListGroup
|
|
144415
144431
|
VListImg: VListImg
|
|
@@ -144419,78 +144435,79 @@ declare module 'vue' {
|
|
|
144419
144435
|
VListItemSubtitle: VListItemSubtitle
|
|
144420
144436
|
VListItemTitle: VListItemTitle
|
|
144421
144437
|
VListSubheader: VListSubheader
|
|
144422
|
-
VMenu: VMenu
|
|
144423
|
-
VMain: VMain
|
|
144424
|
-
VNavigationDrawer: VNavigationDrawer
|
|
144425
144438
|
VMessages: VMessages
|
|
144426
|
-
|
|
144439
|
+
VNumberInput: VNumberInput
|
|
144440
|
+
VNavigationDrawer: VNavigationDrawer
|
|
144441
|
+
VMain: VMain
|
|
144427
144442
|
VOtpInput: VOtpInput
|
|
144428
|
-
VPagination: VPagination
|
|
144429
144443
|
VProgressCircular: VProgressCircular
|
|
144430
|
-
|
|
144431
|
-
|
|
144444
|
+
VPagination: VPagination
|
|
144445
|
+
VOverlay: VOverlay
|
|
144432
144446
|
VRadioGroup: VRadioGroup
|
|
144433
|
-
VSelectionControl: VSelectionControl
|
|
144434
|
-
VSelect: VSelect
|
|
144435
144447
|
VRating: VRating
|
|
144436
|
-
|
|
144448
|
+
VProgressLinear: VProgressLinear
|
|
144449
|
+
VSelect: VSelect
|
|
144450
|
+
VLabel: VLabel
|
|
144437
144451
|
VSkeletonLoader: VSkeletonLoader
|
|
144438
|
-
|
|
144452
|
+
VSheet: VSheet
|
|
144453
|
+
VSelectionControl: VSelectionControl
|
|
144454
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
144439
144455
|
VSlideGroup: VSlideGroup
|
|
144440
144456
|
VSlideGroupItem: VSlideGroupItem
|
|
144457
|
+
VSnackbar: VSnackbar
|
|
144458
|
+
VSystemBar: VSystemBar
|
|
144459
|
+
VSlider: VSlider
|
|
144460
|
+
VSwitch: VSwitch
|
|
144441
144461
|
VStepper: VStepper
|
|
144442
144462
|
VStepperActions: VStepperActions
|
|
144443
144463
|
VStepperHeader: VStepperHeader
|
|
144444
144464
|
VStepperItem: VStepperItem
|
|
144445
144465
|
VStepperWindow: VStepperWindow
|
|
144446
144466
|
VStepperWindowItem: VStepperWindowItem
|
|
144447
|
-
VSheet: VSheet
|
|
144448
|
-
VSnackbar: VSnackbar
|
|
144449
144467
|
VTab: VTab
|
|
144450
144468
|
VTabs: VTabs
|
|
144451
144469
|
VTabsWindow: VTabsWindow
|
|
144452
144470
|
VTabsWindowItem: VTabsWindowItem
|
|
144453
|
-
VSwitch: VSwitch
|
|
144454
|
-
VSystemBar: VSystemBar
|
|
144455
|
-
VTable: VTable
|
|
144456
144471
|
VTextarea: VTextarea
|
|
144457
|
-
|
|
144458
|
-
VWindowItem: VWindowItem
|
|
144459
|
-
VTimeline: VTimeline
|
|
144460
|
-
VTimelineItem: VTimelineItem
|
|
144472
|
+
VTable: VTable
|
|
144461
144473
|
VTextField: VTextField
|
|
144462
|
-
|
|
144474
|
+
VToolbar: VToolbar
|
|
144475
|
+
VToolbarTitle: VToolbarTitle
|
|
144476
|
+
VToolbarItems: VToolbarItems
|
|
144463
144477
|
VTimePicker: VTimePicker
|
|
144464
144478
|
VTimePickerClock: VTimePickerClock
|
|
144465
144479
|
VTimePickerControls: VTimePickerControls
|
|
144466
144480
|
VTreeview: VTreeview
|
|
144467
144481
|
VTreeviewItem: VTreeviewItem
|
|
144468
144482
|
VTreeviewGroup: VTreeviewGroup
|
|
144469
|
-
|
|
144470
|
-
|
|
144471
|
-
|
|
144472
|
-
|
|
144483
|
+
VTooltip: VTooltip
|
|
144484
|
+
VWindow: VWindow
|
|
144485
|
+
VWindowItem: VWindowItem
|
|
144486
|
+
VTimeline: VTimeline
|
|
144487
|
+
VTimelineItem: VTimelineItem
|
|
144473
144488
|
VDataIterator: VDataIterator
|
|
144489
|
+
VConfirmEdit: VConfirmEdit
|
|
144474
144490
|
VDefaultsProvider: VDefaultsProvider
|
|
144475
|
-
VHover: VHover
|
|
144476
144491
|
VContainer: VContainer
|
|
144477
144492
|
VCol: VCol
|
|
144478
144493
|
VRow: VRow
|
|
144479
144494
|
VSpacer: VSpacer
|
|
144480
144495
|
VForm: VForm
|
|
144496
|
+
VHover: VHover
|
|
144481
144497
|
VLazy: VLazy
|
|
144482
|
-
VLayout: VLayout
|
|
144483
|
-
VLayoutItem: VLayoutItem
|
|
144484
144498
|
VLocaleProvider: VLocaleProvider
|
|
144485
144499
|
VNoSsr: VNoSsr
|
|
144486
|
-
|
|
144500
|
+
VLayout: VLayout
|
|
144501
|
+
VLayoutItem: VLayoutItem
|
|
144487
144502
|
VRadio: VRadio
|
|
144503
|
+
VParallax: VParallax
|
|
144488
144504
|
VRangeSlider: VRangeSlider
|
|
144489
144505
|
VResponsive: VResponsive
|
|
144490
144506
|
VSnackbarQueue: VSnackbarQueue
|
|
144491
144507
|
VSparkline: VSparkline
|
|
144492
144508
|
VSpeedDial: VSpeedDial
|
|
144493
144509
|
VThemeProvider: VThemeProvider
|
|
144510
|
+
VValidation: VValidation
|
|
144494
144511
|
VVirtualScroll: VVirtualScroll
|
|
144495
144512
|
VFabTransition: VFabTransition
|
|
144496
144513
|
VDialogBottomTransition: VDialogBottomTransition
|
|
@@ -144508,22 +144525,21 @@ declare module 'vue' {
|
|
|
144508
144525
|
VExpandTransition: VExpandTransition
|
|
144509
144526
|
VExpandXTransition: VExpandXTransition
|
|
144510
144527
|
VDialogTransition: VDialogTransition
|
|
144511
|
-
|
|
144512
|
-
|
|
144513
|
-
VColorInput: VColorInput
|
|
144528
|
+
VFileUpload: VFileUpload
|
|
144529
|
+
VFileUploadItem: VFileUploadItem
|
|
144514
144530
|
VPie: VPie
|
|
144515
144531
|
VPieSegment: VPieSegment
|
|
144516
144532
|
VPieTooltip: VPieTooltip
|
|
144517
|
-
|
|
144518
|
-
VPickerTitle: VPickerTitle
|
|
144519
|
-
VVideo: VVideo
|
|
144520
|
-
VVideoControls: VVideoControls
|
|
144521
|
-
VVideoVolume: VVideoVolume
|
|
144533
|
+
VColorInput: VColorInput
|
|
144522
144534
|
VStepperVertical: VStepperVertical
|
|
144523
144535
|
VStepperVerticalItem: VStepperVerticalItem
|
|
144524
144536
|
VStepperVerticalActions: VStepperVerticalActions
|
|
144525
|
-
|
|
144526
|
-
|
|
144537
|
+
VIconBtn: VIconBtn
|
|
144538
|
+
VVideo: VVideo
|
|
144539
|
+
VVideoControls: VVideoControls
|
|
144540
|
+
VVideoVolume: VVideoVolume
|
|
144541
|
+
VPicker: VPicker
|
|
144542
|
+
VPickerTitle: VPickerTitle
|
|
144527
144543
|
VDateInput: VDateInput
|
|
144528
144544
|
VMaskInput: VMaskInput
|
|
144529
144545
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.2-dev.2025-12-
|
|
2
|
+
* Vuetify v3.11.2-dev.2025-12-06
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -9342,6 +9342,37 @@ const trunkSelectStrategy = mandatory => {
|
|
|
9342
9342
|
};
|
|
9343
9343
|
return strategy;
|
|
9344
9344
|
};
|
|
9345
|
+
const branchSelectStrategy = mandatory => {
|
|
9346
|
+
const parentStrategy = classicSelectStrategy(mandatory);
|
|
9347
|
+
const strategy = {
|
|
9348
|
+
select: parentStrategy.select,
|
|
9349
|
+
in: (v, children, parents, disabled) => {
|
|
9350
|
+
let map = new Map();
|
|
9351
|
+
for (const id of v || []) {
|
|
9352
|
+
if (children.has(id)) continue;
|
|
9353
|
+
map = strategy.select({
|
|
9354
|
+
id,
|
|
9355
|
+
value: true,
|
|
9356
|
+
selected: map,
|
|
9357
|
+
children,
|
|
9358
|
+
parents,
|
|
9359
|
+
disabled
|
|
9360
|
+
});
|
|
9361
|
+
}
|
|
9362
|
+
return map;
|
|
9363
|
+
},
|
|
9364
|
+
out: v => {
|
|
9365
|
+
const arr = [];
|
|
9366
|
+
for (const [key, value] of v.entries()) {
|
|
9367
|
+
if (value === 'on' || value === 'indeterminate') {
|
|
9368
|
+
arr.push(key);
|
|
9369
|
+
}
|
|
9370
|
+
}
|
|
9371
|
+
return arr;
|
|
9372
|
+
}
|
|
9373
|
+
};
|
|
9374
|
+
return strategy;
|
|
9375
|
+
};
|
|
9345
9376
|
|
|
9346
9377
|
// Composables
|
|
9347
9378
|
|
|
@@ -9426,6 +9457,8 @@ const useNested = (props, _ref) => {
|
|
|
9426
9457
|
return independentSingleSelectStrategy(props.mandatory);
|
|
9427
9458
|
case 'trunk':
|
|
9428
9459
|
return trunkSelectStrategy(props.mandatory);
|
|
9460
|
+
case 'branch':
|
|
9461
|
+
return branchSelectStrategy(props.mandatory);
|
|
9429
9462
|
case 'classic':
|
|
9430
9463
|
default:
|
|
9431
9464
|
return classicSelectStrategy(props.mandatory);
|
|
@@ -20150,9 +20183,9 @@ const VWindow = genericComponent()({
|
|
|
20150
20183
|
'v-window--vertical-arrows': !!props.verticalArrows,
|
|
20151
20184
|
'v-window--crossfade': !!props.crossfade
|
|
20152
20185
|
}, themeClasses.value, props.class]),
|
|
20153
|
-
"style": normalizeStyle([props.style,
|
|
20154
|
-
'--v-window-transition-duration': convertToUnit(props.transitionDuration, 'ms')
|
|
20155
|
-
}
|
|
20186
|
+
"style": normalizeStyle([props.style, {
|
|
20187
|
+
'--v-window-transition-duration': !PREFERS_REDUCED_MOTION() ? convertToUnit(props.transitionDuration, 'ms') : null
|
|
20188
|
+
}])
|
|
20156
20189
|
}, {
|
|
20157
20190
|
default: () => [createElementVNode("div", {
|
|
20158
20191
|
"class": "v-window__container",
|
|
@@ -30765,6 +30798,7 @@ const makeVOtpInputProps = propsFactory({
|
|
|
30765
30798
|
type: String,
|
|
30766
30799
|
default: 'number'
|
|
30767
30800
|
},
|
|
30801
|
+
...makeDensityProps(),
|
|
30768
30802
|
...makeDimensionProps(),
|
|
30769
30803
|
...makeFocusProps(),
|
|
30770
30804
|
...pick(makeVFieldProps({
|
|
@@ -30785,6 +30819,9 @@ const VOtpInput = genericComponent()({
|
|
|
30785
30819
|
emit,
|
|
30786
30820
|
slots
|
|
30787
30821
|
} = _ref;
|
|
30822
|
+
const {
|
|
30823
|
+
densityClasses
|
|
30824
|
+
} = useDensity(props);
|
|
30788
30825
|
const {
|
|
30789
30826
|
dimensionStyles
|
|
30790
30827
|
} = useDimension(props);
|
|
@@ -30902,7 +30939,8 @@ const VOtpInput = genericComponent()({
|
|
|
30902
30939
|
baseColor: toRef(() => props.baseColor),
|
|
30903
30940
|
disabled: toRef(() => props.disabled),
|
|
30904
30941
|
error: toRef(() => props.error),
|
|
30905
|
-
variant: toRef(() => props.variant)
|
|
30942
|
+
variant: toRef(() => props.variant),
|
|
30943
|
+
rounded: toRef(() => props.rounded)
|
|
30906
30944
|
}
|
|
30907
30945
|
}, {
|
|
30908
30946
|
scoped: true
|
|
@@ -30925,7 +30963,7 @@ const VOtpInput = genericComponent()({
|
|
|
30925
30963
|
return createElementVNode("div", mergeProps({
|
|
30926
30964
|
"class": ['v-otp-input', {
|
|
30927
30965
|
'v-otp-input--divided': !!props.divider
|
|
30928
|
-
}, props.class],
|
|
30966
|
+
}, densityClasses.value, props.class],
|
|
30929
30967
|
"style": [props.style]
|
|
30930
30968
|
}, rootAttrs), [createElementVNode("div", {
|
|
30931
30969
|
"ref": contentRef,
|
|
@@ -39121,7 +39159,7 @@ function createVuetify$1() {
|
|
|
39121
39159
|
};
|
|
39122
39160
|
});
|
|
39123
39161
|
}
|
|
39124
|
-
const version$1 = "3.11.2-dev.2025-12-
|
|
39162
|
+
const version$1 = "3.11.2-dev.2025-12-06";
|
|
39125
39163
|
createVuetify$1.version = version$1;
|
|
39126
39164
|
|
|
39127
39165
|
// Vue's inject() can only be used in setup
|
|
@@ -39424,7 +39462,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
39424
39462
|
|
|
39425
39463
|
/* eslint-disable local-rules/sort-imports */
|
|
39426
39464
|
|
|
39427
|
-
const version = "3.11.2-dev.2025-12-
|
|
39465
|
+
const version = "3.11.2-dev.2025-12-06";
|
|
39428
39466
|
|
|
39429
39467
|
/* eslint-disable local-rules/sort-imports */
|
|
39430
39468
|
|