@vuetify/nightly 3.6.4-master.2024-05-09 → 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 -11
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +292 -4
- package/dist/json/importMap-labs.json +28 -16
- package/dist/json/importMap.json +120 -120
- package/dist/json/tags.json +87 -0
- package/dist/json/web-types.json +1313 -6
- package/dist/vuetify-labs.css +1683 -1615
- package/dist/vuetify-labs.d.ts +1669 -28
- package/dist/vuetify-labs.esm.js +310 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +310 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +963 -963
- package/dist/vuetify.d.ts +147 -69
- package/dist/vuetify.esm.js +50 -16
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -16
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +51 -52
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/index.d.mts +2 -0
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +54 -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 +102 -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 +45 -42
- 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>;
|
@@ -24490,6 +24492,8 @@ declare const VDataTable: {
|
|
24490
24492
|
sortDescIcon: IconValue;
|
24491
24493
|
fixedHeader: boolean;
|
24492
24494
|
fixedFooter: boolean;
|
24495
|
+
hideDefaultFooter: boolean;
|
24496
|
+
hideDefaultHeader: boolean;
|
24493
24497
|
} & {
|
24494
24498
|
search?: string | undefined;
|
24495
24499
|
class?: any;
|
@@ -24565,6 +24569,8 @@ declare const VDataTable: {
|
|
24565
24569
|
sortDescIcon: IconValue;
|
24566
24570
|
fixedHeader: boolean;
|
24567
24571
|
fixedFooter: boolean;
|
24572
|
+
hideDefaultFooter: boolean;
|
24573
|
+
hideDefaultHeader: boolean;
|
24568
24574
|
} & {
|
24569
24575
|
search?: string | undefined;
|
24570
24576
|
class?: any;
|
@@ -24631,6 +24637,8 @@ declare const VDataTable: {
|
|
24631
24637
|
sortDescIcon: IconValue;
|
24632
24638
|
fixedHeader: boolean;
|
24633
24639
|
fixedFooter: boolean;
|
24640
|
+
hideDefaultFooter: boolean;
|
24641
|
+
hideDefaultHeader: boolean;
|
24634
24642
|
}, true, {}, vue.SlotsType<Partial<{
|
24635
24643
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
24636
24644
|
[key: string]: any;
|
@@ -24779,6 +24787,8 @@ declare const VDataTable: {
|
|
24779
24787
|
sortDescIcon: IconValue;
|
24780
24788
|
fixedHeader: boolean;
|
24781
24789
|
fixedFooter: boolean;
|
24790
|
+
hideDefaultFooter: boolean;
|
24791
|
+
hideDefaultHeader: boolean;
|
24782
24792
|
} & {
|
24783
24793
|
search?: string | undefined;
|
24784
24794
|
class?: any;
|
@@ -24845,6 +24855,8 @@ declare const VDataTable: {
|
|
24845
24855
|
sortDescIcon: IconValue;
|
24846
24856
|
fixedHeader: boolean;
|
24847
24857
|
fixedFooter: boolean;
|
24858
|
+
hideDefaultFooter: boolean;
|
24859
|
+
hideDefaultHeader: boolean;
|
24848
24860
|
}>;
|
24849
24861
|
__isFragment?: undefined;
|
24850
24862
|
__isTeleport?: undefined;
|
@@ -24893,6 +24905,8 @@ declare const VDataTable: {
|
|
24893
24905
|
sortDescIcon: IconValue;
|
24894
24906
|
fixedHeader: boolean;
|
24895
24907
|
fixedFooter: boolean;
|
24908
|
+
hideDefaultFooter: boolean;
|
24909
|
+
hideDefaultHeader: boolean;
|
24896
24910
|
} & {
|
24897
24911
|
search?: string | undefined;
|
24898
24912
|
class?: any;
|
@@ -24968,6 +24982,8 @@ declare const VDataTable: {
|
|
24968
24982
|
sortDescIcon: IconValue;
|
24969
24983
|
fixedHeader: boolean;
|
24970
24984
|
fixedFooter: boolean;
|
24985
|
+
hideDefaultFooter: boolean;
|
24986
|
+
hideDefaultHeader: boolean;
|
24971
24987
|
}, {}, string, vue.SlotsType<Partial<{
|
24972
24988
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
24973
24989
|
[key: string]: any;
|
@@ -25315,6 +25331,8 @@ declare const VDataTable: {
|
|
25315
25331
|
type: vue.PropType<readonly string[]>;
|
25316
25332
|
default: () => never[];
|
25317
25333
|
};
|
25334
|
+
hideDefaultFooter: BooleanConstructor;
|
25335
|
+
hideDefaultHeader: BooleanConstructor;
|
25318
25336
|
width: (StringConstructor | NumberConstructor)[];
|
25319
25337
|
search: StringConstructor;
|
25320
25338
|
loadingText: {
|
@@ -25522,6 +25540,8 @@ declare const VDataTable: {
|
|
25522
25540
|
type: vue.PropType<readonly string[]>;
|
25523
25541
|
default: () => never[];
|
25524
25542
|
};
|
25543
|
+
hideDefaultFooter: BooleanConstructor;
|
25544
|
+
hideDefaultHeader: BooleanConstructor;
|
25525
25545
|
width: (StringConstructor | NumberConstructor)[];
|
25526
25546
|
search: StringConstructor;
|
25527
25547
|
loadingText: {
|
@@ -25860,6 +25880,8 @@ declare const VDataTableVirtual: {
|
|
25860
25880
|
sortDescIcon: IconValue;
|
25861
25881
|
fixedHeader: boolean;
|
25862
25882
|
fixedFooter: boolean;
|
25883
|
+
hideDefaultFooter: boolean;
|
25884
|
+
hideDefaultHeader: boolean;
|
25863
25885
|
} & {
|
25864
25886
|
search?: string | undefined;
|
25865
25887
|
class?: any;
|
@@ -25958,6 +25980,8 @@ declare const VDataTableVirtual: {
|
|
25958
25980
|
sortDescIcon: IconValue;
|
25959
25981
|
fixedHeader: boolean;
|
25960
25982
|
fixedFooter: boolean;
|
25983
|
+
hideDefaultFooter: boolean;
|
25984
|
+
hideDefaultHeader: boolean;
|
25961
25985
|
} & {
|
25962
25986
|
search?: string | undefined;
|
25963
25987
|
class?: any;
|
@@ -26050,6 +26074,8 @@ declare const VDataTableVirtual: {
|
|
26050
26074
|
sortDescIcon: IconValue;
|
26051
26075
|
fixedHeader: boolean;
|
26052
26076
|
fixedFooter: boolean;
|
26077
|
+
hideDefaultFooter: boolean;
|
26078
|
+
hideDefaultHeader: boolean;
|
26053
26079
|
}, true, {}, vue.SlotsType<Partial<{
|
26054
26080
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
26055
26081
|
[key: string]: any;
|
@@ -26166,6 +26192,8 @@ declare const VDataTableVirtual: {
|
|
26166
26192
|
sortDescIcon: IconValue;
|
26167
26193
|
fixedHeader: boolean;
|
26168
26194
|
fixedFooter: boolean;
|
26195
|
+
hideDefaultFooter: boolean;
|
26196
|
+
hideDefaultHeader: boolean;
|
26169
26197
|
} & {
|
26170
26198
|
search?: string | undefined;
|
26171
26199
|
class?: any;
|
@@ -26258,6 +26286,8 @@ declare const VDataTableVirtual: {
|
|
26258
26286
|
sortDescIcon: IconValue;
|
26259
26287
|
fixedHeader: boolean;
|
26260
26288
|
fixedFooter: boolean;
|
26289
|
+
hideDefaultFooter: boolean;
|
26290
|
+
hideDefaultHeader: boolean;
|
26261
26291
|
}>;
|
26262
26292
|
__isFragment?: undefined;
|
26263
26293
|
__isTeleport?: undefined;
|
@@ -26290,6 +26320,8 @@ declare const VDataTableVirtual: {
|
|
26290
26320
|
sortDescIcon: IconValue;
|
26291
26321
|
fixedHeader: boolean;
|
26292
26322
|
fixedFooter: boolean;
|
26323
|
+
hideDefaultFooter: boolean;
|
26324
|
+
hideDefaultHeader: boolean;
|
26293
26325
|
} & {
|
26294
26326
|
search?: string | undefined;
|
26295
26327
|
class?: any;
|
@@ -26388,6 +26420,8 @@ declare const VDataTableVirtual: {
|
|
26388
26420
|
sortDescIcon: IconValue;
|
26389
26421
|
fixedHeader: boolean;
|
26390
26422
|
fixedFooter: boolean;
|
26423
|
+
hideDefaultFooter: boolean;
|
26424
|
+
hideDefaultHeader: boolean;
|
26391
26425
|
}, {}, string, vue.SlotsType<Partial<{
|
26392
26426
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
26393
26427
|
[key: string]: any;
|
@@ -26626,6 +26660,8 @@ declare const VDataTableVirtual: {
|
|
26626
26660
|
type: vue.PropType<readonly string[]>;
|
26627
26661
|
default: () => never[];
|
26628
26662
|
};
|
26663
|
+
hideDefaultFooter: BooleanConstructor;
|
26664
|
+
hideDefaultHeader: BooleanConstructor;
|
26629
26665
|
width: (StringConstructor | NumberConstructor)[];
|
26630
26666
|
search: StringConstructor;
|
26631
26667
|
loadingText: {
|
@@ -26778,6 +26814,8 @@ declare const VDataTableVirtual: {
|
|
26778
26814
|
type: vue.PropType<readonly string[]>;
|
26779
26815
|
default: () => never[];
|
26780
26816
|
};
|
26817
|
+
hideDefaultFooter: BooleanConstructor;
|
26818
|
+
hideDefaultHeader: BooleanConstructor;
|
26781
26819
|
width: (StringConstructor | NumberConstructor)[];
|
26782
26820
|
search: StringConstructor;
|
26783
26821
|
loadingText: {
|
@@ -26837,6 +26875,8 @@ declare const VDataTableServer: {
|
|
26837
26875
|
sortDescIcon: IconValue;
|
26838
26876
|
fixedHeader: boolean;
|
26839
26877
|
fixedFooter: boolean;
|
26878
|
+
hideDefaultFooter: boolean;
|
26879
|
+
hideDefaultHeader: boolean;
|
26840
26880
|
} & {
|
26841
26881
|
search?: string | undefined;
|
26842
26882
|
class?: any;
|
@@ -26951,6 +26991,8 @@ declare const VDataTableServer: {
|
|
26951
26991
|
sortDescIcon: IconValue;
|
26952
26992
|
fixedHeader: boolean;
|
26953
26993
|
fixedFooter: boolean;
|
26994
|
+
hideDefaultFooter: boolean;
|
26995
|
+
hideDefaultHeader: boolean;
|
26954
26996
|
} & {
|
26955
26997
|
search?: string | undefined;
|
26956
26998
|
class?: any;
|
@@ -27056,6 +27098,8 @@ declare const VDataTableServer: {
|
|
27056
27098
|
sortDescIcon: IconValue;
|
27057
27099
|
fixedHeader: boolean;
|
27058
27100
|
fixedFooter: boolean;
|
27101
|
+
hideDefaultFooter: boolean;
|
27102
|
+
hideDefaultHeader: boolean;
|
27059
27103
|
}, true, {}, vue.SlotsType<Partial<{
|
27060
27104
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
27061
27105
|
[key: string]: any;
|
@@ -27203,6 +27247,8 @@ declare const VDataTableServer: {
|
|
27203
27247
|
sortDescIcon: IconValue;
|
27204
27248
|
fixedHeader: boolean;
|
27205
27249
|
fixedFooter: boolean;
|
27250
|
+
hideDefaultFooter: boolean;
|
27251
|
+
hideDefaultHeader: boolean;
|
27206
27252
|
} & {
|
27207
27253
|
search?: string | undefined;
|
27208
27254
|
class?: any;
|
@@ -27308,6 +27354,8 @@ declare const VDataTableServer: {
|
|
27308
27354
|
sortDescIcon: IconValue;
|
27309
27355
|
fixedHeader: boolean;
|
27310
27356
|
fixedFooter: boolean;
|
27357
|
+
hideDefaultFooter: boolean;
|
27358
|
+
hideDefaultHeader: boolean;
|
27311
27359
|
}>;
|
27312
27360
|
__isFragment?: undefined;
|
27313
27361
|
__isTeleport?: undefined;
|
@@ -27355,6 +27403,8 @@ declare const VDataTableServer: {
|
|
27355
27403
|
sortDescIcon: IconValue;
|
27356
27404
|
fixedHeader: boolean;
|
27357
27405
|
fixedFooter: boolean;
|
27406
|
+
hideDefaultFooter: boolean;
|
27407
|
+
hideDefaultHeader: boolean;
|
27358
27408
|
} & {
|
27359
27409
|
search?: string | undefined;
|
27360
27410
|
class?: any;
|
@@ -27468,6 +27518,8 @@ declare const VDataTableServer: {
|
|
27468
27518
|
sortDescIcon: IconValue;
|
27469
27519
|
fixedHeader: boolean;
|
27470
27520
|
fixedFooter: boolean;
|
27521
|
+
hideDefaultFooter: boolean;
|
27522
|
+
hideDefaultHeader: boolean;
|
27471
27523
|
}, {}, string, vue.SlotsType<Partial<{
|
27472
27524
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
27473
27525
|
[key: string]: any;
|
@@ -27761,6 +27813,8 @@ declare const VDataTableServer: {
|
|
27761
27813
|
type: vue.PropType<readonly string[]>;
|
27762
27814
|
default: () => never[];
|
27763
27815
|
};
|
27816
|
+
hideDefaultFooter: BooleanConstructor;
|
27817
|
+
hideDefaultHeader: BooleanConstructor;
|
27764
27818
|
width: (StringConstructor | NumberConstructor)[];
|
27765
27819
|
search: StringConstructor;
|
27766
27820
|
loadingText: {
|
@@ -27964,6 +28018,8 @@ declare const VDataTableServer: {
|
|
27964
28018
|
type: vue.PropType<readonly string[]>;
|
27965
28019
|
default: () => never[];
|
27966
28020
|
};
|
28021
|
+
hideDefaultFooter: BooleanConstructor;
|
28022
|
+
hideDefaultHeader: BooleanConstructor;
|
27967
28023
|
width: (StringConstructor | NumberConstructor)[];
|
27968
28024
|
search: StringConstructor;
|
27969
28025
|
loadingText: {
|
@@ -32514,6 +32570,10 @@ declare const VEmptyState: {
|
|
32514
32570
|
}>>;
|
32515
32571
|
type VEmptyState = InstanceType<typeof VEmptyState>;
|
32516
32572
|
|
32573
|
+
type VExpansionPanelSlot = {
|
32574
|
+
prev: () => void;
|
32575
|
+
next: () => void;
|
32576
|
+
};
|
32517
32577
|
declare const VExpansionPanels: {
|
32518
32578
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
32519
32579
|
flat: boolean;
|
@@ -32549,16 +32609,19 @@ declare const VExpansionPanels: {
|
|
32549
32609
|
bgColor?: string | undefined;
|
32550
32610
|
} & {
|
32551
32611
|
$children?: vue.VNodeChild | {
|
32552
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32553
|
-
} | (() => vue.VNodeChild);
|
32612
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32613
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32554
32614
|
'v-slots'?: {
|
32555
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32615
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32556
32616
|
} | undefined;
|
32557
32617
|
} & {
|
32558
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32618
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32559
32619
|
} & {
|
32560
32620
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32561
|
-
}, {
|
32621
|
+
}, {
|
32622
|
+
next: () => void;
|
32623
|
+
prev: () => void;
|
32624
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32562
32625
|
'update:modelValue': (val: unknown) => boolean;
|
32563
32626
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
32564
32627
|
flat: boolean;
|
@@ -32594,13 +32657,13 @@ declare const VExpansionPanels: {
|
|
32594
32657
|
bgColor?: string | undefined;
|
32595
32658
|
} & {
|
32596
32659
|
$children?: vue.VNodeChild | {
|
32597
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32598
|
-
} | (() => vue.VNodeChild);
|
32660
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32661
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32599
32662
|
'v-slots'?: {
|
32600
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32663
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32601
32664
|
} | undefined;
|
32602
32665
|
} & {
|
32603
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32666
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32604
32667
|
} & {
|
32605
32668
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32606
32669
|
}, {
|
@@ -32624,7 +32687,7 @@ declare const VExpansionPanels: {
|
|
32624
32687
|
hideActions: boolean;
|
32625
32688
|
focusable: boolean;
|
32626
32689
|
}, true, {}, vue.SlotsType<Partial<{
|
32627
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32690
|
+
default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32628
32691
|
[key: string]: any;
|
32629
32692
|
}>[];
|
32630
32693
|
}>>, {
|
@@ -32668,16 +32731,19 @@ declare const VExpansionPanels: {
|
|
32668
32731
|
bgColor?: string | undefined;
|
32669
32732
|
} & {
|
32670
32733
|
$children?: vue.VNodeChild | {
|
32671
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32672
|
-
} | (() => vue.VNodeChild);
|
32734
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32735
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32673
32736
|
'v-slots'?: {
|
32674
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32737
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32675
32738
|
} | undefined;
|
32676
32739
|
} & {
|
32677
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32740
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32678
32741
|
} & {
|
32679
32742
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32680
|
-
}, {
|
32743
|
+
}, {
|
32744
|
+
next: () => void;
|
32745
|
+
prev: () => void;
|
32746
|
+
}, {}, {}, {}, {
|
32681
32747
|
flat: boolean;
|
32682
32748
|
style: vue.StyleValue;
|
32683
32749
|
disabled: boolean;
|
@@ -32735,16 +32801,19 @@ declare const VExpansionPanels: {
|
|
32735
32801
|
bgColor?: string | undefined;
|
32736
32802
|
} & {
|
32737
32803
|
$children?: vue.VNodeChild | {
|
32738
|
-
default?: (() => vue.VNodeChild) | undefined;
|
32739
|
-
} | (() => vue.VNodeChild);
|
32804
|
+
default?: ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32805
|
+
} | ((arg: VExpansionPanelSlot) => vue.VNodeChild);
|
32740
32806
|
'v-slots'?: {
|
32741
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
32807
|
+
default?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32742
32808
|
} | undefined;
|
32743
32809
|
} & {
|
32744
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
32810
|
+
"v-slot:default"?: false | ((arg: VExpansionPanelSlot) => vue.VNodeChild) | undefined;
|
32745
32811
|
} & {
|
32746
32812
|
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
32747
|
-
}, {
|
32813
|
+
}, {
|
32814
|
+
next: () => void;
|
32815
|
+
prev: () => void;
|
32816
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32748
32817
|
'update:modelValue': (val: unknown) => boolean;
|
32749
32818
|
}, string, {
|
32750
32819
|
flat: boolean;
|
@@ -32767,7 +32836,7 @@ declare const VExpansionPanels: {
|
|
32767
32836
|
hideActions: boolean;
|
32768
32837
|
focusable: boolean;
|
32769
32838
|
}, {}, string, vue.SlotsType<Partial<{
|
32770
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32839
|
+
default: (arg: VExpansionPanelSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
32771
32840
|
[key: string]: any;
|
32772
32841
|
}>[];
|
32773
32842
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
@@ -32936,10 +33005,12 @@ declare const VExpansionPanel: {
|
|
32936
33005
|
"onGroup:selected"?: ((val: {
|
32937
33006
|
value: boolean;
|
32938
33007
|
}) => any) | undefined;
|
32939
|
-
}, {
|
33008
|
+
}, {
|
33009
|
+
groupItem: GroupItemProvide;
|
33010
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
32940
33011
|
'group:selected': (val: {
|
32941
33012
|
value: boolean;
|
32942
|
-
}) =>
|
33013
|
+
}) => true;
|
32943
33014
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
32944
33015
|
style: vue.StyleValue;
|
32945
33016
|
disabled: boolean;
|
@@ -33061,7 +33132,9 @@ declare const VExpansionPanel: {
|
|
33061
33132
|
"onGroup:selected"?: ((val: {
|
33062
33133
|
value: boolean;
|
33063
33134
|
}) => any) | undefined;
|
33064
|
-
}, {
|
33135
|
+
}, {
|
33136
|
+
groupItem: GroupItemProvide;
|
33137
|
+
}, {}, {}, {}, {
|
33065
33138
|
style: vue.StyleValue;
|
33066
33139
|
disabled: boolean;
|
33067
33140
|
tag: string;
|
@@ -33125,10 +33198,12 @@ declare const VExpansionPanel: {
|
|
33125
33198
|
"onGroup:selected"?: ((val: {
|
33126
33199
|
value: boolean;
|
33127
33200
|
}) => any) | undefined;
|
33128
|
-
}, {
|
33201
|
+
}, {
|
33202
|
+
groupItem: GroupItemProvide;
|
33203
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
33129
33204
|
'group:selected': (val: {
|
33130
33205
|
value: boolean;
|
33131
|
-
}) =>
|
33206
|
+
}) => true;
|
33132
33207
|
}, string, {
|
33133
33208
|
style: vue.StyleValue;
|
33134
33209
|
disabled: boolean;
|
@@ -58004,6 +58079,7 @@ declare const VSpeedDial: {
|
|
58004
58079
|
}>>;
|
58005
58080
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
58006
58081
|
|
58082
|
+
type StepperItem = string | Record<string, any>;
|
58007
58083
|
type StepperItemSlot = {
|
58008
58084
|
canEdit: boolean;
|
58009
58085
|
hasError: boolean;
|
@@ -58328,7 +58404,6 @@ declare const VStepperItem: {
|
|
58328
58404
|
}>>;
|
58329
58405
|
type VStepperItem = InstanceType<typeof VStepperItem>;
|
58330
58406
|
|
58331
|
-
type StepperItem = string | Record<string, any>;
|
58332
58407
|
type VStepperSlot = {
|
58333
58408
|
prev: () => void;
|
58334
58409
|
next: () => void;
|
@@ -73362,38 +73437,37 @@ declare module '@vue/runtime-core' {
|
|
73362
73437
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73363
73438
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73364
73439
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73440
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73365
73441
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73366
73442
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73443
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73367
73444
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73368
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73369
73445
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73370
73446
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73371
73447
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73372
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73373
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73374
73448
|
VBadge: typeof import('vuetify/components')['VBadge']
|
73449
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73375
73450
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73376
73451
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73377
73452
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73378
73453
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73379
73454
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73455
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73456
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73380
73457
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73458
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73381
73459
|
VCard: typeof import('vuetify/components')['VCard']
|
73382
73460
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73383
73461
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73384
73462
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73385
73463
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73386
73464
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73387
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73388
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73389
73465
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73390
73466
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73391
|
-
VCode: typeof import('vuetify/components')['VCode']
|
73392
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73393
|
-
VChip: typeof import('vuetify/components')['VChip']
|
73394
73467
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73468
|
+
VCode: typeof import('vuetify/components')['VCode']
|
73395
73469
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73396
|
-
|
73470
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73397
73471
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73398
73472
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73399
73473
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -73401,6 +73475,7 @@ declare module '@vue/runtime-core' {
|
|
73401
73475
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73402
73476
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73403
73477
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73478
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
73404
73479
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73405
73480
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73406
73481
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -73410,27 +73485,27 @@ declare module '@vue/runtime-core' {
|
|
73410
73485
|
VDialog: typeof import('vuetify/components')['VDialog']
|
73411
73486
|
VDivider: typeof import('vuetify/components')['VDivider']
|
73412
73487
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73488
|
+
VField: typeof import('vuetify/components')['VField']
|
73489
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73490
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73491
|
+
VFab: typeof import('vuetify/components')['VFab']
|
73492
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
73413
73493
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73414
73494
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73415
73495
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73416
73496
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73417
|
-
VFab: typeof import('vuetify/components')['VFab']
|
73418
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73419
|
-
VField: typeof import('vuetify/components')['VField']
|
73420
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73421
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
73422
73497
|
VIcon: typeof import('vuetify/components')['VIcon']
|
73423
73498
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
73424
73499
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73425
73500
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73426
73501
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73427
73502
|
VInput: typeof import('vuetify/components')['VInput']
|
73428
|
-
VImg: typeof import('vuetify/components')['VImg']
|
73429
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
73430
73503
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73431
|
-
|
73504
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73432
73505
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73433
73506
|
VItem: typeof import('vuetify/components')['VItem']
|
73507
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
73508
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
73434
73509
|
VList: typeof import('vuetify/components')['VList']
|
73435
73510
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73436
73511
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73440,71 +73515,71 @@ declare module '@vue/runtime-core' {
|
|
73440
73515
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73441
73516
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73442
73517
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73518
|
+
VMain: typeof import('vuetify/components')['VMain']
|
73443
73519
|
VMenu: typeof import('vuetify/components')['VMenu']
|
73444
73520
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73445
|
-
VMain: typeof import('vuetify/components')['VMain']
|
73446
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73447
73521
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73522
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73523
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73448
73524
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73449
73525
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73450
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73451
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73452
73526
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73527
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73453
73528
|
VRating: typeof import('vuetify/components')['VRating']
|
73454
73529
|
VSelect: typeof import('vuetify/components')['VSelect']
|
73455
|
-
|
73530
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73456
73531
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73457
|
-
|
73532
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73458
73533
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73459
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']
|
73460
73540
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73461
73541
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73462
73542
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73463
73543
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73464
73544
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73465
73545
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73466
|
-
|
73467
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
73468
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73469
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73546
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
73470
73547
|
VTab: typeof import('vuetify/components')['VTab']
|
73471
73548
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73472
73549
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73473
73550
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73474
73551
|
VTable: typeof import('vuetify/components')['VTable']
|
73475
73552
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73476
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73477
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73478
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
73479
73553
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73480
73554
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73481
73555
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73482
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73483
73556
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73484
73557
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73485
73558
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73559
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73560
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73486
73561
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73487
73562
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73488
73563
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
73489
|
-
VForm: typeof import('vuetify/components')['VForm']
|
73490
73564
|
VContainer: typeof import('vuetify/components')['VContainer']
|
73491
73565
|
VCol: typeof import('vuetify/components')['VCol']
|
73492
73566
|
VRow: typeof import('vuetify/components')['VRow']
|
73493
73567
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
73568
|
+
VForm: typeof import('vuetify/components')['VForm']
|
73494
73569
|
VHover: typeof import('vuetify/components')['VHover']
|
73495
|
-
|
73570
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
73496
73571
|
VLayout: typeof import('vuetify/components')['VLayout']
|
73497
73572
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
73498
|
-
|
73573
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73499
73574
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73500
73575
|
VParallax: typeof import('vuetify/components')['VParallax']
|
73501
73576
|
VRadio: typeof import('vuetify/components')['VRadio']
|
73502
73577
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73503
73578
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73504
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73505
73579
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73506
|
-
|
73580
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73507
73581
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73582
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
73508
73583
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73509
73584
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
73510
73585
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -73522,23 +73597,26 @@ declare module '@vue/runtime-core' {
|
|
73522
73597
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73523
73598
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73524
73599
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73600
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73601
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73525
73602
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73526
73603
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73527
73604
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
73528
73605
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
73529
73606
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73530
73607
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73531
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73532
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73533
73608
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73534
|
-
|
73535
|
-
|
73536
|
-
|
73609
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73610
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73611
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73537
73612
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73538
73613
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73539
73614
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73540
|
-
|
73615
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73616
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73617
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73541
73618
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73542
73619
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73620
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73543
73621
|
}
|
73544
73622
|
}
|