@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.d.ts
CHANGED
|
@@ -6950,7 +6950,7 @@ interface ListItem<T = any> extends InternalItem<T> {
|
|
|
6950
6950
|
}
|
|
6951
6951
|
|
|
6952
6952
|
type ActiveStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | ActiveStrategy | ((mandatory: boolean) => ActiveStrategy);
|
|
6953
|
-
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | 'trunk' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
|
6953
|
+
type SelectStrategyProp = 'single-leaf' | 'leaf' | 'independent' | 'single-independent' | 'classic' | 'trunk' | 'branch' | SelectStrategy | ((mandatory: boolean) => SelectStrategy);
|
|
6954
6954
|
type OpenStrategyProp = 'single' | 'multiple' | 'list' | OpenStrategy;
|
|
6955
6955
|
type ItemsRegistrationType = 'props' | 'render';
|
|
6956
6956
|
|
|
@@ -75194,6 +75194,7 @@ declare const VOtpInput: {
|
|
|
75194
75194
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
75195
75195
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75196
75196
|
focused: boolean;
|
|
75197
|
+
density: Density;
|
|
75197
75198
|
disabled: boolean;
|
|
75198
75199
|
error: boolean;
|
|
75199
75200
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75252,6 +75253,7 @@ declare const VOtpInput: {
|
|
|
75252
75253
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
75253
75254
|
style: vue.StyleValue;
|
|
75254
75255
|
focused: boolean;
|
|
75256
|
+
density: Density;
|
|
75255
75257
|
rounded: string | number | boolean;
|
|
75256
75258
|
disabled: boolean;
|
|
75257
75259
|
error: boolean;
|
|
@@ -75279,6 +75281,7 @@ declare const VOtpInput: {
|
|
|
75279
75281
|
}, {
|
|
75280
75282
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75281
75283
|
focused: boolean;
|
|
75284
|
+
density: Density;
|
|
75282
75285
|
disabled: boolean;
|
|
75283
75286
|
error: boolean;
|
|
75284
75287
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75333,6 +75336,7 @@ declare const VOtpInput: {
|
|
|
75333
75336
|
}, {}, {}, {}, {
|
|
75334
75337
|
style: vue.StyleValue;
|
|
75335
75338
|
focused: boolean;
|
|
75339
|
+
density: Density;
|
|
75336
75340
|
rounded: string | number | boolean;
|
|
75337
75341
|
disabled: boolean;
|
|
75338
75342
|
error: boolean;
|
|
@@ -75350,6 +75354,7 @@ declare const VOtpInput: {
|
|
|
75350
75354
|
} & vue.ComponentOptionsBase<{
|
|
75351
75355
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
75352
75356
|
focused: boolean;
|
|
75357
|
+
density: Density;
|
|
75353
75358
|
disabled: boolean;
|
|
75354
75359
|
error: boolean;
|
|
75355
75360
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
@@ -75408,6 +75413,7 @@ declare const VOtpInput: {
|
|
|
75408
75413
|
}, string, {
|
|
75409
75414
|
style: vue.StyleValue;
|
|
75410
75415
|
focused: boolean;
|
|
75416
|
+
density: Density;
|
|
75411
75417
|
rounded: string | number | boolean;
|
|
75412
75418
|
disabled: boolean;
|
|
75413
75419
|
error: boolean;
|
|
@@ -75434,6 +75440,11 @@ declare const VOtpInput: {
|
|
|
75434
75440
|
};
|
|
75435
75441
|
focused: BooleanConstructor;
|
|
75436
75442
|
"onUpdate:focused": PropType<(args_0: boolean) => void>;
|
|
75443
|
+
density: {
|
|
75444
|
+
type: PropType<Density>;
|
|
75445
|
+
default: string;
|
|
75446
|
+
validator: (v: any) => boolean;
|
|
75447
|
+
};
|
|
75437
75448
|
rounded: {
|
|
75438
75449
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
75439
75450
|
default: undefined;
|
|
@@ -75490,6 +75501,11 @@ declare const VOtpInput: {
|
|
|
75490
75501
|
};
|
|
75491
75502
|
focused: BooleanConstructor;
|
|
75492
75503
|
"onUpdate:focused": PropType<(args_0: boolean) => void>;
|
|
75504
|
+
density: {
|
|
75505
|
+
type: PropType<Density>;
|
|
75506
|
+
default: string;
|
|
75507
|
+
validator: (v: any) => boolean;
|
|
75508
|
+
};
|
|
75493
75509
|
rounded: {
|
|
75494
75510
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
75495
75511
|
default: undefined;
|
|
@@ -114452,24 +114468,24 @@ declare module 'vue' {
|
|
|
114452
114468
|
$children?: VNodeChild
|
|
114453
114469
|
}
|
|
114454
114470
|
export interface GlobalComponents {
|
|
114471
|
+
VAppBar: VAppBar
|
|
114472
|
+
VAppBarNavIcon: VAppBarNavIcon
|
|
114473
|
+
VAppBarTitle: VAppBarTitle
|
|
114455
114474
|
VApp: VApp
|
|
114456
114475
|
VAlert: VAlert
|
|
114457
114476
|
VAlertTitle: VAlertTitle
|
|
114458
114477
|
VAutocomplete: VAutocomplete
|
|
114478
|
+
VBtn: VBtn
|
|
114459
114479
|
VAvatar: VAvatar
|
|
114460
114480
|
VBadge: VBadge
|
|
114461
114481
|
VBanner: VBanner
|
|
114462
114482
|
VBannerActions: VBannerActions
|
|
114463
114483
|
VBannerText: VBannerText
|
|
114464
|
-
VBottomSheet: VBottomSheet
|
|
114465
|
-
VBtn: VBtn
|
|
114466
|
-
VAppBar: VAppBar
|
|
114467
|
-
VAppBarNavIcon: VAppBarNavIcon
|
|
114468
|
-
VAppBarTitle: VAppBarTitle
|
|
114469
114484
|
VBottomNavigation: VBottomNavigation
|
|
114470
114485
|
VBreadcrumbs: VBreadcrumbs
|
|
114471
114486
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
114472
114487
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
114488
|
+
VBottomSheet: VBottomSheet
|
|
114473
114489
|
VCard: VCard
|
|
114474
114490
|
VCardActions: VCardActions
|
|
114475
114491
|
VCardItem: VCardItem
|
|
@@ -114477,18 +114493,24 @@ declare module 'vue' {
|
|
|
114477
114493
|
VCardText: VCardText
|
|
114478
114494
|
VCardTitle: VCardTitle
|
|
114479
114495
|
VBtnToggle: VBtnToggle
|
|
114496
|
+
VCarousel: VCarousel
|
|
114497
|
+
VCarouselItem: VCarouselItem
|
|
114480
114498
|
VBtnGroup: VBtnGroup
|
|
114481
114499
|
VCheckbox: VCheckbox
|
|
114482
114500
|
VCheckboxBtn: VCheckboxBtn
|
|
114483
|
-
VCalendar: VCalendar
|
|
114484
114501
|
VChipGroup: VChipGroup
|
|
114485
|
-
|
|
114486
|
-
VCarouselItem: VCarouselItem
|
|
114487
|
-
VChip: VChip
|
|
114488
|
-
VColorPicker: VColorPicker
|
|
114489
|
-
VCounter: VCounter
|
|
114502
|
+
VCalendar: VCalendar
|
|
114490
114503
|
VCode: VCode
|
|
114504
|
+
VDatePicker: VDatePicker
|
|
114505
|
+
VDatePickerControls: VDatePickerControls
|
|
114506
|
+
VDatePickerHeader: VDatePickerHeader
|
|
114507
|
+
VDatePickerMonth: VDatePickerMonth
|
|
114508
|
+
VDatePickerMonths: VDatePickerMonths
|
|
114509
|
+
VDatePickerYears: VDatePickerYears
|
|
114491
114510
|
VCombobox: VCombobox
|
|
114511
|
+
VColorPicker: VColorPicker
|
|
114512
|
+
VCounter: VCounter
|
|
114513
|
+
VChip: VChip
|
|
114492
114514
|
VDataTable: VDataTable
|
|
114493
114515
|
VDataTableHeaders: VDataTableHeaders
|
|
114494
114516
|
VDataTableFooter: VDataTableFooter
|
|
@@ -114496,37 +114518,31 @@ declare module 'vue' {
|
|
|
114496
114518
|
VDataTableRow: VDataTableRow
|
|
114497
114519
|
VDataTableVirtual: VDataTableVirtual
|
|
114498
114520
|
VDataTableServer: VDataTableServer
|
|
114499
|
-
VDialog: VDialog
|
|
114500
|
-
VDatePicker: VDatePicker
|
|
114501
|
-
VDatePickerControls: VDatePickerControls
|
|
114502
|
-
VDatePickerHeader: VDatePickerHeader
|
|
114503
|
-
VDatePickerMonth: VDatePickerMonth
|
|
114504
|
-
VDatePickerMonths: VDatePickerMonths
|
|
114505
|
-
VDatePickerYears: VDatePickerYears
|
|
114506
|
-
VEmptyState: VEmptyState
|
|
114507
|
-
VDivider: VDivider
|
|
114508
|
-
VField: VField
|
|
114509
|
-
VFieldLabel: VFieldLabel
|
|
114510
114521
|
VExpansionPanels: VExpansionPanels
|
|
114511
114522
|
VExpansionPanel: VExpansionPanel
|
|
114512
114523
|
VExpansionPanelText: VExpansionPanelText
|
|
114513
114524
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
114514
|
-
|
|
114525
|
+
VDialog: VDialog
|
|
114526
|
+
VDivider: VDivider
|
|
114515
114527
|
VFab: VFab
|
|
114528
|
+
VEmptyState: VEmptyState
|
|
114529
|
+
VFileInput: VFileInput
|
|
114530
|
+
VField: VField
|
|
114531
|
+
VFieldLabel: VFieldLabel
|
|
114532
|
+
VHotkey: VHotkey
|
|
114516
114533
|
VFooter: VFooter
|
|
114534
|
+
VInfiniteScroll: VInfiniteScroll
|
|
114535
|
+
VImg: VImg
|
|
114536
|
+
VItemGroup: VItemGroup
|
|
114537
|
+
VItem: VItem
|
|
114538
|
+
VInput: VInput
|
|
114517
114539
|
VIcon: VIcon
|
|
114518
114540
|
VComponentIcon: VComponentIcon
|
|
114519
114541
|
VSvgIcon: VSvgIcon
|
|
114520
114542
|
VLigatureIcon: VLigatureIcon
|
|
114521
114543
|
VClassIcon: VClassIcon
|
|
114522
|
-
VHotkey: VHotkey
|
|
114523
|
-
VImg: VImg
|
|
114524
|
-
VInput: VInput
|
|
114525
|
-
VInfiniteScroll: VInfiniteScroll
|
|
114526
|
-
VItemGroup: VItemGroup
|
|
114527
|
-
VItem: VItem
|
|
114528
114544
|
VKbd: VKbd
|
|
114529
|
-
|
|
114545
|
+
VMenu: VMenu
|
|
114530
114546
|
VList: VList
|
|
114531
114547
|
VListGroup: VListGroup
|
|
114532
114548
|
VListImg: VListImg
|
|
@@ -114536,78 +114552,79 @@ declare module 'vue' {
|
|
|
114536
114552
|
VListItemSubtitle: VListItemSubtitle
|
|
114537
114553
|
VListItemTitle: VListItemTitle
|
|
114538
114554
|
VListSubheader: VListSubheader
|
|
114539
|
-
VMenu: VMenu
|
|
114540
|
-
VMain: VMain
|
|
114541
|
-
VNavigationDrawer: VNavigationDrawer
|
|
114542
114555
|
VMessages: VMessages
|
|
114543
|
-
|
|
114556
|
+
VNumberInput: VNumberInput
|
|
114557
|
+
VNavigationDrawer: VNavigationDrawer
|
|
114558
|
+
VMain: VMain
|
|
114544
114559
|
VOtpInput: VOtpInput
|
|
114545
|
-
VPagination: VPagination
|
|
114546
114560
|
VProgressCircular: VProgressCircular
|
|
114547
|
-
|
|
114548
|
-
|
|
114561
|
+
VPagination: VPagination
|
|
114562
|
+
VOverlay: VOverlay
|
|
114549
114563
|
VRadioGroup: VRadioGroup
|
|
114550
|
-
VSelectionControl: VSelectionControl
|
|
114551
|
-
VSelect: VSelect
|
|
114552
114564
|
VRating: VRating
|
|
114553
|
-
|
|
114565
|
+
VProgressLinear: VProgressLinear
|
|
114566
|
+
VSelect: VSelect
|
|
114567
|
+
VLabel: VLabel
|
|
114554
114568
|
VSkeletonLoader: VSkeletonLoader
|
|
114555
|
-
|
|
114569
|
+
VSheet: VSheet
|
|
114570
|
+
VSelectionControl: VSelectionControl
|
|
114571
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
114556
114572
|
VSlideGroup: VSlideGroup
|
|
114557
114573
|
VSlideGroupItem: VSlideGroupItem
|
|
114574
|
+
VSnackbar: VSnackbar
|
|
114575
|
+
VSystemBar: VSystemBar
|
|
114576
|
+
VSlider: VSlider
|
|
114577
|
+
VSwitch: VSwitch
|
|
114558
114578
|
VStepper: VStepper
|
|
114559
114579
|
VStepperActions: VStepperActions
|
|
114560
114580
|
VStepperHeader: VStepperHeader
|
|
114561
114581
|
VStepperItem: VStepperItem
|
|
114562
114582
|
VStepperWindow: VStepperWindow
|
|
114563
114583
|
VStepperWindowItem: VStepperWindowItem
|
|
114564
|
-
VSheet: VSheet
|
|
114565
|
-
VSnackbar: VSnackbar
|
|
114566
114584
|
VTab: VTab
|
|
114567
114585
|
VTabs: VTabs
|
|
114568
114586
|
VTabsWindow: VTabsWindow
|
|
114569
114587
|
VTabsWindowItem: VTabsWindowItem
|
|
114570
|
-
VSwitch: VSwitch
|
|
114571
|
-
VSystemBar: VSystemBar
|
|
114572
|
-
VTable: VTable
|
|
114573
114588
|
VTextarea: VTextarea
|
|
114574
|
-
|
|
114575
|
-
VWindowItem: VWindowItem
|
|
114576
|
-
VTimeline: VTimeline
|
|
114577
|
-
VTimelineItem: VTimelineItem
|
|
114589
|
+
VTable: VTable
|
|
114578
114590
|
VTextField: VTextField
|
|
114579
|
-
|
|
114591
|
+
VToolbar: VToolbar
|
|
114592
|
+
VToolbarTitle: VToolbarTitle
|
|
114593
|
+
VToolbarItems: VToolbarItems
|
|
114580
114594
|
VTimePicker: VTimePicker
|
|
114581
114595
|
VTimePickerClock: VTimePickerClock
|
|
114582
114596
|
VTimePickerControls: VTimePickerControls
|
|
114583
114597
|
VTreeview: VTreeview
|
|
114584
114598
|
VTreeviewItem: VTreeviewItem
|
|
114585
114599
|
VTreeviewGroup: VTreeviewGroup
|
|
114586
|
-
|
|
114587
|
-
|
|
114588
|
-
|
|
114589
|
-
|
|
114600
|
+
VTooltip: VTooltip
|
|
114601
|
+
VWindow: VWindow
|
|
114602
|
+
VWindowItem: VWindowItem
|
|
114603
|
+
VTimeline: VTimeline
|
|
114604
|
+
VTimelineItem: VTimelineItem
|
|
114590
114605
|
VDataIterator: VDataIterator
|
|
114606
|
+
VConfirmEdit: VConfirmEdit
|
|
114591
114607
|
VDefaultsProvider: VDefaultsProvider
|
|
114592
|
-
VHover: VHover
|
|
114593
114608
|
VContainer: VContainer
|
|
114594
114609
|
VCol: VCol
|
|
114595
114610
|
VRow: VRow
|
|
114596
114611
|
VSpacer: VSpacer
|
|
114597
114612
|
VForm: VForm
|
|
114613
|
+
VHover: VHover
|
|
114598
114614
|
VLazy: VLazy
|
|
114599
|
-
VLayout: VLayout
|
|
114600
|
-
VLayoutItem: VLayoutItem
|
|
114601
114615
|
VLocaleProvider: VLocaleProvider
|
|
114602
114616
|
VNoSsr: VNoSsr
|
|
114603
|
-
|
|
114617
|
+
VLayout: VLayout
|
|
114618
|
+
VLayoutItem: VLayoutItem
|
|
114604
114619
|
VRadio: VRadio
|
|
114620
|
+
VParallax: VParallax
|
|
114605
114621
|
VRangeSlider: VRangeSlider
|
|
114606
114622
|
VResponsive: VResponsive
|
|
114607
114623
|
VSnackbarQueue: VSnackbarQueue
|
|
114608
114624
|
VSparkline: VSparkline
|
|
114609
114625
|
VSpeedDial: VSpeedDial
|
|
114610
114626
|
VThemeProvider: VThemeProvider
|
|
114627
|
+
VValidation: VValidation
|
|
114611
114628
|
VVirtualScroll: VVirtualScroll
|
|
114612
114629
|
VFabTransition: VFabTransition
|
|
114613
114630
|
VDialogBottomTransition: VDialogBottomTransition
|
|
@@ -114625,22 +114642,21 @@ declare module 'vue' {
|
|
|
114625
114642
|
VExpandTransition: VExpandTransition
|
|
114626
114643
|
VExpandXTransition: VExpandXTransition
|
|
114627
114644
|
VDialogTransition: VDialogTransition
|
|
114628
|
-
|
|
114629
|
-
|
|
114630
|
-
VColorInput: VColorInput
|
|
114645
|
+
VFileUpload: VFileUpload
|
|
114646
|
+
VFileUploadItem: VFileUploadItem
|
|
114631
114647
|
VPie: VPie
|
|
114632
114648
|
VPieSegment: VPieSegment
|
|
114633
114649
|
VPieTooltip: VPieTooltip
|
|
114634
|
-
|
|
114635
|
-
VPickerTitle: VPickerTitle
|
|
114636
|
-
VVideo: VVideo
|
|
114637
|
-
VVideoControls: VVideoControls
|
|
114638
|
-
VVideoVolume: VVideoVolume
|
|
114650
|
+
VColorInput: VColorInput
|
|
114639
114651
|
VStepperVertical: VStepperVertical
|
|
114640
114652
|
VStepperVerticalItem: VStepperVerticalItem
|
|
114641
114653
|
VStepperVerticalActions: VStepperVerticalActions
|
|
114642
|
-
|
|
114643
|
-
|
|
114654
|
+
VIconBtn: VIconBtn
|
|
114655
|
+
VVideo: VVideo
|
|
114656
|
+
VVideoControls: VVideoControls
|
|
114657
|
+
VVideoVolume: VVideoVolume
|
|
114658
|
+
VPicker: VPicker
|
|
114659
|
+
VPickerTitle: VPickerTitle
|
|
114644
114660
|
VDateInput: VDateInput
|
|
114645
114661
|
VMaskInput: VMaskInput
|
|
114646
114662
|
VPullToRefresh: VPullToRefresh
|
package/dist/vuetify.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
|
*/
|
|
@@ -9671,6 +9671,37 @@ const trunkSelectStrategy = mandatory => {
|
|
|
9671
9671
|
};
|
|
9672
9672
|
return strategy;
|
|
9673
9673
|
};
|
|
9674
|
+
const branchSelectStrategy = mandatory => {
|
|
9675
|
+
const parentStrategy = classicSelectStrategy(mandatory);
|
|
9676
|
+
const strategy = {
|
|
9677
|
+
select: parentStrategy.select,
|
|
9678
|
+
in: (v, children, parents, disabled) => {
|
|
9679
|
+
let map = new Map();
|
|
9680
|
+
for (const id of v || []) {
|
|
9681
|
+
if (children.has(id)) continue;
|
|
9682
|
+
map = strategy.select({
|
|
9683
|
+
id,
|
|
9684
|
+
value: true,
|
|
9685
|
+
selected: map,
|
|
9686
|
+
children,
|
|
9687
|
+
parents,
|
|
9688
|
+
disabled
|
|
9689
|
+
});
|
|
9690
|
+
}
|
|
9691
|
+
return map;
|
|
9692
|
+
},
|
|
9693
|
+
out: v => {
|
|
9694
|
+
const arr = [];
|
|
9695
|
+
for (const [key, value] of v.entries()) {
|
|
9696
|
+
if (value === 'on' || value === 'indeterminate') {
|
|
9697
|
+
arr.push(key);
|
|
9698
|
+
}
|
|
9699
|
+
}
|
|
9700
|
+
return arr;
|
|
9701
|
+
}
|
|
9702
|
+
};
|
|
9703
|
+
return strategy;
|
|
9704
|
+
};
|
|
9674
9705
|
|
|
9675
9706
|
// Composables
|
|
9676
9707
|
|
|
@@ -9755,6 +9786,8 @@ const useNested = (props, _ref) => {
|
|
|
9755
9786
|
return independentSingleSelectStrategy(props.mandatory);
|
|
9756
9787
|
case 'trunk':
|
|
9757
9788
|
return trunkSelectStrategy(props.mandatory);
|
|
9789
|
+
case 'branch':
|
|
9790
|
+
return branchSelectStrategy(props.mandatory);
|
|
9758
9791
|
case 'classic':
|
|
9759
9792
|
default:
|
|
9760
9793
|
return classicSelectStrategy(props.mandatory);
|
|
@@ -20470,9 +20503,9 @@ const VWindow = genericComponent()({
|
|
|
20470
20503
|
'v-window--vertical-arrows': !!props.verticalArrows,
|
|
20471
20504
|
'v-window--crossfade': !!props.crossfade
|
|
20472
20505
|
}, themeClasses.value, props.class]),
|
|
20473
|
-
"style": normalizeStyle([props.style,
|
|
20474
|
-
'--v-window-transition-duration': convertToUnit(props.transitionDuration, 'ms')
|
|
20475
|
-
}
|
|
20506
|
+
"style": normalizeStyle([props.style, {
|
|
20507
|
+
'--v-window-transition-duration': !PREFERS_REDUCED_MOTION() ? convertToUnit(props.transitionDuration, 'ms') : null
|
|
20508
|
+
}])
|
|
20476
20509
|
}, {
|
|
20477
20510
|
default: () => [createElementVNode("div", {
|
|
20478
20511
|
"class": "v-window__container",
|
|
@@ -31085,6 +31118,7 @@ const makeVOtpInputProps = propsFactory({
|
|
|
31085
31118
|
type: String,
|
|
31086
31119
|
default: 'number'
|
|
31087
31120
|
},
|
|
31121
|
+
...makeDensityProps(),
|
|
31088
31122
|
...makeDimensionProps(),
|
|
31089
31123
|
...makeFocusProps(),
|
|
31090
31124
|
...pick(makeVFieldProps({
|
|
@@ -31105,6 +31139,9 @@ const VOtpInput = genericComponent()({
|
|
|
31105
31139
|
emit,
|
|
31106
31140
|
slots
|
|
31107
31141
|
} = _ref;
|
|
31142
|
+
const {
|
|
31143
|
+
densityClasses
|
|
31144
|
+
} = useDensity(props);
|
|
31108
31145
|
const {
|
|
31109
31146
|
dimensionStyles
|
|
31110
31147
|
} = useDimension(props);
|
|
@@ -31222,7 +31259,8 @@ const VOtpInput = genericComponent()({
|
|
|
31222
31259
|
baseColor: toRef(() => props.baseColor),
|
|
31223
31260
|
disabled: toRef(() => props.disabled),
|
|
31224
31261
|
error: toRef(() => props.error),
|
|
31225
|
-
variant: toRef(() => props.variant)
|
|
31262
|
+
variant: toRef(() => props.variant),
|
|
31263
|
+
rounded: toRef(() => props.rounded)
|
|
31226
31264
|
}
|
|
31227
31265
|
}, {
|
|
31228
31266
|
scoped: true
|
|
@@ -31245,7 +31283,7 @@ const VOtpInput = genericComponent()({
|
|
|
31245
31283
|
return createElementVNode("div", mergeProps({
|
|
31246
31284
|
"class": ['v-otp-input', {
|
|
31247
31285
|
'v-otp-input--divided': !!props.divider
|
|
31248
|
-
}, props.class],
|
|
31286
|
+
}, densityClasses.value, props.class],
|
|
31249
31287
|
"style": [props.style]
|
|
31250
31288
|
}, rootAttrs), [createElementVNode("div", {
|
|
31251
31289
|
"ref": contentRef,
|
|
@@ -36595,7 +36633,7 @@ function createVuetify$1() {
|
|
|
36595
36633
|
};
|
|
36596
36634
|
});
|
|
36597
36635
|
}
|
|
36598
|
-
const version$1 = "3.11.2-dev.2025-12-
|
|
36636
|
+
const version$1 = "3.11.2-dev.2025-12-06";
|
|
36599
36637
|
createVuetify$1.version = version$1;
|
|
36600
36638
|
|
|
36601
36639
|
// Vue's inject() can only be used in setup
|
|
@@ -36620,7 +36658,7 @@ const createVuetify = function () {
|
|
|
36620
36658
|
...options
|
|
36621
36659
|
});
|
|
36622
36660
|
};
|
|
36623
|
-
const version = "3.11.2-dev.2025-12-
|
|
36661
|
+
const version = "3.11.2-dev.2025-12-06";
|
|
36624
36662
|
createVuetify.version = version;
|
|
36625
36663
|
|
|
36626
36664
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version };
|