@vuetify/nightly 3.6.4-master.2024-05-10 → 3.6.5-master.2024-05-11
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 +2 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +268 -4
- package/dist/json/importMap-labs.json +22 -10
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +81 -0
- package/dist/json/web-types.json +1253 -6
- package/dist/vuetify-labs.css +1684 -1616
- package/dist/vuetify-labs.d.ts +1615 -28
- package/dist/vuetify-labs.esm.js +298 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +298 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1239 -1239
- package/dist/vuetify.d.ts +97 -73
- package/dist/vuetify.esm.js +38 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +47 -48
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/index.d.mts +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +3 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +15 -4
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +82 -27
- package/lib/components/VSlideGroup/index.d.mts +2 -0
- package/lib/components/VStepper/VStepper.mjs +5 -2
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs +5 -2
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +1 -1
- package/lib/components/VTabs/index.d.mts +2 -0
- package/lib/components/VWindow/index.d.mts +2 -0
- package/lib/components/index.d.mts +48 -27
- package/lib/composables/group.mjs +8 -0
- package/lib/composables/group.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -46
- package/lib/labs/VStepperVertical/VStepperVertical.mjs +106 -0
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs +38 -0
- package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.css +69 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +134 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +74 -0
- package/lib/labs/VStepperVertical/_variables.scss +3 -0
- package/lib/labs/VStepperVertical/index.d.mts +1590 -0
- package/lib/labs/VStepperVertical/index.mjs +4 -0
- package/lib/labs/VStepperVertical/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +1599 -20
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -1810,6 +1810,8 @@ interface GroupProvide {
|
|
1810
1810
|
interface GroupItemProvide {
|
1811
1811
|
id: number;
|
1812
1812
|
isSelected: Ref<boolean>;
|
1813
|
+
isFirst: Ref<boolean>;
|
1814
|
+
isLast: Ref<boolean>;
|
1813
1815
|
toggle: () => void;
|
1814
1816
|
select: (value: boolean) => void;
|
1815
1817
|
selectedClass: Ref<(string | undefined)[] | false>;
|
@@ -32568,6 +32570,10 @@ declare const VEmptyState: {
|
|
32568
32570
|
}>>;
|
32569
32571
|
type VEmptyState = InstanceType<typeof VEmptyState>;
|
32570
32572
|
|
32573
|
+
type VExpansionPanelSlot = {
|
32574
|
+
prev: () => void;
|
32575
|
+
next: () => void;
|
32576
|
+
};
|
32571
32577
|
declare const VExpansionPanels: {
|
32572
32578
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
32573
32579
|
flat: boolean;
|
@@ -32603,16 +32609,19 @@ declare const VExpansionPanels: {
|
|
32603
32609
|
bgColor?: string | undefined;
|
32604
32610
|
} & {
|
32605
32611
|
$children?: vue.VNodeChild | {
|
32606
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32607
|
-
} | (() => vue.VNodeChild);
|
32612
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32613
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32608
32614
|
'v-slots'?: {
|
32609
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32615
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32610
32616
|
} | undefined;
|
32611
32617
|
} & {
|
32612
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32618
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32613
32619
|
} & {
|
32614
32620
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32615
|
-
}, {
|
32621
|
+
}, {
|
32622
|
+
next: () => void;
|
32623
|
+
prev: () => void;
|
32624
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32616
32625
|
'update:modelValue': (val: unknown) => boolean;
|
32617
32626
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
32618
32627
|
flat: boolean;
|
@@ -32648,13 +32657,13 @@ declare const VExpansionPanels: {
|
|
32648
32657
|
bgColor?: string | undefined;
|
32649
32658
|
} & {
|
32650
32659
|
$children?: vue.VNodeChild | {
|
32651
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32652
|
-
} | (() => vue.VNodeChild);
|
32660
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32661
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32653
32662
|
'v-slots'?: {
|
32654
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32663
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32655
32664
|
} | undefined;
|
32656
32665
|
} & {
|
32657
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32666
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32658
32667
|
} & {
|
32659
32668
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32660
32669
|
}, {
|
@@ -32678,7 +32687,7 @@ declare const VExpansionPanels: {
|
|
32678
32687
|
hideActions: boolean;
|
32679
32688
|
focusable: boolean;
|
32680
32689
|
}, true, {}, vue.SlotsType<Partial<{
|
32681
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32690
|
+
default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32682
32691
|
[key: string]: any;
|
32683
32692
|
}>[];
|
32684
32693
|
}>>, {
|
@@ -32722,16 +32731,19 @@ declare const VExpansionPanels: {
|
|
32722
32731
|
bgColor?: string | undefined;
|
32723
32732
|
} & {
|
32724
32733
|
$children?: vue.VNodeChild | {
|
32725
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32726
|
-
} | (() => vue.VNodeChild);
|
32734
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32735
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32727
32736
|
'v-slots'?: {
|
32728
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32737
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32729
32738
|
} | undefined;
|
32730
32739
|
} & {
|
32731
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32740
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32732
32741
|
} & {
|
32733
32742
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32734
|
-
}, {
|
32743
|
+
}, {
|
32744
|
+
next: () => void;
|
32745
|
+
prev: () => void;
|
32746
|
+
}, {}, {}, {}, {
|
32735
32747
|
flat: boolean;
|
32736
32748
|
style: vue.StyleValue;
|
32737
32749
|
disabled: boolean;
|
@@ -32789,16 +32801,19 @@ declare const VExpansionPanels: {
|
|
32789
32801
|
bgColor?: string | undefined;
|
32790
32802
|
} & {
|
32791
32803
|
$children?: vue.VNodeChild | {
|
32792
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32793
|
-
} | (() => vue.VNodeChild);
|
32804
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32805
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32794
32806
|
'v-slots'?: {
|
32795
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32807
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32796
32808
|
} | undefined;
|
32797
32809
|
} & {
|
32798
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32810
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32799
32811
|
} & {
|
32800
32812
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32801
|
-
}, {
|
32813
|
+
}, {
|
32814
|
+
next: () => void;
|
32815
|
+
prev: () => void;
|
32816
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32802
32817
|
'update:modelValue': (val: unknown) => boolean;
|
32803
32818
|
}, string, {
|
32804
32819
|
flat: boolean;
|
@@ -32821,7 +32836,7 @@ declare const VExpansionPanels: {
|
|
32821
32836
|
hideActions: boolean;
|
32822
32837
|
focusable: boolean;
|
32823
32838
|
}, {}, string, vue.SlotsType<Partial<{
|
32824
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32839
|
+
default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32825
32840
|
[key: string]: any;
|
32826
32841
|
}>[];
|
32827
32842
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
@@ -32990,10 +33005,12 @@ declare const VExpansionPanel: {
|
|
32990
33005
|
"onGroup:selected"?: ((val: {
|
32991
33006
|
value: boolean;
|
32992
33007
|
}) => any) | undefined;
|
32993
|
-
}, {
|
33008
|
+
}, {
|
33009
|
+
groupItem: GroupItemProvide;
|
33010
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32994
33011
|
'group:selected': (val: {
|
32995
33012
|
value: boolean;
|
32996
|
-
}) =>
|
33013
|
+
}) => true;
|
32997
33014
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
32998
33015
|
style: vue.StyleValue;
|
32999
33016
|
disabled: boolean;
|
@@ -33115,7 +33132,9 @@ declare const VExpansionPanel: {
|
|
33115
33132
|
"onGroup:selected"?: ((val: {
|
33116
33133
|
value: boolean;
|
33117
33134
|
}) => any) | undefined;
|
33118
|
-
}, {
|
33135
|
+
}, {
|
33136
|
+
groupItem: GroupItemProvide;
|
33137
|
+
}, {}, {}, {}, {
|
33119
33138
|
style: vue.StyleValue;
|
33120
33139
|
disabled: boolean;
|
33121
33140
|
tag: string;
|
@@ -33179,10 +33198,12 @@ declare const VExpansionPanel: {
|
|
33179
33198
|
"onGroup:selected"?: ((val: {
|
33180
33199
|
value: boolean;
|
33181
33200
|
}) => any) | undefined;
|
33182
|
-
}, {
|
33201
|
+
}, {
|
33202
|
+
groupItem: GroupItemProvide;
|
33203
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
33183
33204
|
'group:selected': (val: {
|
33184
33205
|
value: boolean;
|
33185
|
-
}) =>
|
33206
|
+
}) => true;
|
33186
33207
|
}, string, {
|
33187
33208
|
style: vue.StyleValue;
|
33188
33209
|
disabled: boolean;
|
@@ -58058,6 +58079,7 @@ declare const VSpeedDial: {
|
|
58058
58079
|
}>>;
|
58059
58080
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
58060
58081
|
|
58082
|
+
type StepperItem = string | Record<string, any>;
|
58061
58083
|
type StepperItemSlot = {
|
58062
58084
|
canEdit: boolean;
|
58063
58085
|
hasError: boolean;
|
@@ -58382,7 +58404,6 @@ declare const VStepperItem: {
|
|
58382
58404
|
}>>;
|
58383
58405
|
type VStepperItem = InstanceType<typeof VStepperItem>;
|
58384
58406
|
|
58385
|
-
type StepperItem = string | Record<string, any>;
|
58386
58407
|
type VStepperSlot = {
|
58387
58408
|
prev: () => void;
|
58388
58409
|
next: () => void;
|
@@ -73412,40 +73433,48 @@ declare module '@vue/runtime-core' {
|
|
73412
73433
|
}
|
73413
73434
|
|
73414
73435
|
export interface GlobalComponents {
|
73436
|
+
VApp: typeof import('vuetify/components')['VApp']
|
73415
73437
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73416
73438
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73417
73439
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73440
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73418
73441
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73419
73442
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73443
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73420
73444
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73421
|
-
|
73422
|
-
|
73445
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
73446
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73447
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73423
73448
|
VBadge: typeof import('vuetify/components')['VBadge']
|
73449
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73424
73450
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73425
73451
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73426
73452
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73427
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73428
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73429
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
73430
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73431
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73432
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73433
73453
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73454
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73455
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73456
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73457
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73458
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73434
73459
|
VCard: typeof import('vuetify/components')['VCard']
|
73435
73460
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73436
73461
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73437
73462
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73438
73463
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73439
73464
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73440
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73441
73465
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73442
73466
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73443
|
-
|
73444
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73445
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73446
|
-
VChip: typeof import('vuetify/components')['VChip']
|
73467
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73447
73468
|
VCode: typeof import('vuetify/components')['VCode']
|
73469
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73448
73470
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73471
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73472
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73473
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
73474
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
73475
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73476
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73477
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73449
73478
|
VCounter: typeof import('vuetify/components')['VCounter']
|
73450
73479
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73451
73480
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
@@ -73453,37 +73482,29 @@ declare module '@vue/runtime-core' {
|
|
73453
73482
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73454
73483
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73455
73484
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73456
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73457
73485
|
VDialog: typeof import('vuetify/components')['VDialog']
|
73458
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73459
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73460
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
73461
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
73462
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73463
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73464
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73465
73486
|
VDivider: typeof import('vuetify/components')['VDivider']
|
73466
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73467
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73468
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73469
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73470
73487
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73471
73488
|
VField: typeof import('vuetify/components')['VField']
|
73472
73489
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73490
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73473
73491
|
VFab: typeof import('vuetify/components')['VFab']
|
73474
73492
|
VFooter: typeof import('vuetify/components')['VFooter']
|
73475
|
-
|
73476
|
-
|
73493
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73494
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73495
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73496
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73477
73497
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73478
73498
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73479
73499
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73480
73500
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73481
73501
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73482
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73483
73502
|
VInput: typeof import('vuetify/components')['VInput']
|
73484
|
-
|
73503
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73504
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73485
73505
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73486
73506
|
VItem: typeof import('vuetify/components')['VItem']
|
73507
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
73487
73508
|
VKbd: typeof import('vuetify/components')['VKbd']
|
73488
73509
|
VList: typeof import('vuetify/components')['VList']
|
73489
73510
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -73494,61 +73515,61 @@ declare module '@vue/runtime-core' {
|
|
73494
73515
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73495
73516
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73496
73517
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73497
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
73498
73518
|
VMain: typeof import('vuetify/components')['VMain']
|
73519
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
73499
73520
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73500
73521
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73522
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73501
73523
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73502
73524
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73503
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73504
73525
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73505
73526
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73506
73527
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73507
73528
|
VRating: typeof import('vuetify/components')['VRating']
|
73508
73529
|
VSelect: typeof import('vuetify/components')['VSelect']
|
73509
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73510
73530
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73511
|
-
|
73512
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73531
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73513
73532
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73514
73533
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73515
73534
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73535
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73536
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
73537
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73538
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73539
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73516
73540
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73517
73541
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73518
73542
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73519
73543
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73520
73544
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73521
73545
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73522
|
-
|
73523
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73546
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
73524
73547
|
VTab: typeof import('vuetify/components')['VTab']
|
73525
73548
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73526
73549
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73527
73550
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73528
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73529
73551
|
VTable: typeof import('vuetify/components')['VTable']
|
73530
73552
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73531
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
73532
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73533
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73534
73553
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73535
73554
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73536
73555
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73537
73556
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73538
73557
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73539
73558
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73559
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73560
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73540
73561
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73541
73562
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73542
73563
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
73543
|
-
VForm: typeof import('vuetify/components')['VForm']
|
73544
|
-
VHover: typeof import('vuetify/components')['VHover']
|
73545
73564
|
VContainer: typeof import('vuetify/components')['VContainer']
|
73546
73565
|
VCol: typeof import('vuetify/components')['VCol']
|
73547
73566
|
VRow: typeof import('vuetify/components')['VRow']
|
73548
73567
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
73568
|
+
VForm: typeof import('vuetify/components')['VForm']
|
73569
|
+
VHover: typeof import('vuetify/components')['VHover']
|
73570
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
73549
73571
|
VLayout: typeof import('vuetify/components')['VLayout']
|
73550
73572
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
73551
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
73552
73573
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73553
73574
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73554
73575
|
VParallax: typeof import('vuetify/components')['VParallax']
|
@@ -73576,23 +73597,26 @@ declare module '@vue/runtime-core' {
|
|
73576
73597
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73577
73598
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73578
73599
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73600
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73601
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73579
73602
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73580
73603
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73581
73604
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
73582
73605
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
73583
73606
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73584
73607
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73585
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73586
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73587
73608
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73609
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73610
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73611
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73588
73612
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73589
73613
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73590
73614
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73591
73615
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73592
73616
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73593
73617
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73594
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73595
73618
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73619
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73596
73620
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73597
73621
|
}
|
73598
73622
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.5-master.2024-05-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -4573,6 +4573,12 @@ function useGroupItem(props, injectKey) {
|
|
4573
4573
|
const isSelected = computed(() => {
|
4574
4574
|
return group.isSelected(id);
|
4575
4575
|
});
|
4576
|
+
const isFirst = computed(() => {
|
4577
|
+
return group.items.value[0].id === id;
|
4578
|
+
});
|
4579
|
+
const isLast = computed(() => {
|
4580
|
+
return group.items.value[group.items.value.length - 1].id === id;
|
4581
|
+
});
|
4576
4582
|
const selectedClass = computed(() => isSelected.value && [group.selectedClass.value, props.selectedClass]);
|
4577
4583
|
watch(isSelected, value => {
|
4578
4584
|
vm.emit('group:selected', {
|
@@ -4584,6 +4590,8 @@ function useGroupItem(props, injectKey) {
|
|
4584
4590
|
return {
|
4585
4591
|
id,
|
4586
4592
|
isSelected,
|
4593
|
+
isFirst,
|
4594
|
+
isLast,
|
4587
4595
|
toggle: () => group.select(id, !isSelected.value),
|
4588
4596
|
select: value => group.select(id, value),
|
4589
4597
|
selectedClass,
|
@@ -22604,7 +22612,9 @@ const VExpansionPanel = genericComponent()({
|
|
22604
22612
|
}), slots.default?.()]
|
22605
22613
|
});
|
22606
22614
|
});
|
22607
|
-
return {
|
22615
|
+
return {
|
22616
|
+
groupItem
|
22617
|
+
};
|
22608
22618
|
}
|
22609
22619
|
});
|
22610
22620
|
|
@@ -22633,7 +22643,10 @@ const VExpansionPanels = genericComponent()({
|
|
22633
22643
|
let {
|
22634
22644
|
slots
|
22635
22645
|
} = _ref;
|
22636
|
-
|
22646
|
+
const {
|
22647
|
+
next,
|
22648
|
+
prev
|
22649
|
+
} = useGroup(props, VExpansionPanelSymbol);
|
22637
22650
|
const {
|
22638
22651
|
themeClasses
|
22639
22652
|
} = provideTheme(props);
|
@@ -22660,8 +22673,16 @@ const VExpansionPanels = genericComponent()({
|
|
22660
22673
|
'v-expansion-panels--tile': props.tile
|
22661
22674
|
}, themeClasses.value, variantClass.value, props.class],
|
22662
22675
|
"style": props.style
|
22663
|
-
},
|
22664
|
-
|
22676
|
+
}, {
|
22677
|
+
default: () => [slots.default?.({
|
22678
|
+
prev,
|
22679
|
+
next
|
22680
|
+
})]
|
22681
|
+
}));
|
22682
|
+
return {
|
22683
|
+
next,
|
22684
|
+
prev
|
22685
|
+
};
|
22665
22686
|
}
|
22666
22687
|
});
|
22667
22688
|
|
@@ -26024,7 +26045,7 @@ const VStepperHeader = createSimpleFunctional('v-stepper-header');
|
|
26024
26045
|
|
26025
26046
|
// Types
|
26026
26047
|
|
26027
|
-
const
|
26048
|
+
const makeStepperItemProps = propsFactory({
|
26028
26049
|
color: String,
|
26029
26050
|
title: String,
|
26030
26051
|
subtitle: String,
|
@@ -26051,7 +26072,10 @@ const makeVStepperItemProps = propsFactory({
|
|
26051
26072
|
rules: {
|
26052
26073
|
type: Array,
|
26053
26074
|
default: () => []
|
26054
|
-
}
|
26075
|
+
}
|
26076
|
+
}, 'StepperItem');
|
26077
|
+
const makeVStepperItemProps = propsFactory({
|
26078
|
+
...makeStepperItemProps(),
|
26055
26079
|
...makeGroupItemProps()
|
26056
26080
|
}, 'VStepperItem');
|
26057
26081
|
const VStepperItem = genericComponent()({
|
@@ -26202,7 +26226,7 @@ const VStepperWindowItem = genericComponent()({
|
|
26202
26226
|
// Types
|
26203
26227
|
|
26204
26228
|
const VStepperSymbol = Symbol.for('vuetify:v-stepper');
|
26205
|
-
const
|
26229
|
+
const makeStepperProps = propsFactory({
|
26206
26230
|
altLabels: Boolean,
|
26207
26231
|
bgColor: String,
|
26208
26232
|
editable: Boolean,
|
@@ -26221,7 +26245,10 @@ const makeVStepperProps = propsFactory({
|
|
26221
26245
|
},
|
26222
26246
|
mobile: Boolean,
|
26223
26247
|
nonLinear: Boolean,
|
26224
|
-
flat: Boolean
|
26248
|
+
flat: Boolean
|
26249
|
+
}, 'Stepper');
|
26250
|
+
const makeVStepperProps = propsFactory({
|
26251
|
+
...makeStepperProps(),
|
26225
26252
|
...makeGroupProps({
|
26226
26253
|
mandatory: 'force',
|
26227
26254
|
selectedClass: 'v-stepper-item--selected'
|
@@ -27967,7 +27994,7 @@ function createVuetify$1() {
|
|
27967
27994
|
goTo
|
27968
27995
|
};
|
27969
27996
|
}
|
27970
|
-
const version$1 = "3.6.
|
27997
|
+
const version$1 = "3.6.5-master.2024-05-11";
|
27971
27998
|
createVuetify$1.version = version$1;
|
27972
27999
|
|
27973
28000
|
// Vue's inject() can only be used in setup
|
@@ -27992,7 +28019,7 @@ const createVuetify = function () {
|
|
27992
28019
|
...options
|
27993
28020
|
});
|
27994
28021
|
};
|
27995
|
-
const version = "3.6.
|
28022
|
+
const version = "3.6.5-master.2024-05-11";
|
27996
28023
|
createVuetify.version = version;
|
27997
28024
|
|
27998
28025
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|