vuetify 3.3.2 → 3.3.3
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/dist/json/attributes.json +8 -8
- package/dist/json/importMap.json +4 -4
- package/dist/json/web-types.json +26 -15
- package/dist/vuetify-labs.css +53 -61
- package/dist/vuetify-labs.d.ts +253 -119
- package/dist/vuetify-labs.esm.js +196 -82
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +195 -81
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +10 -8
- package/dist/vuetify.d.ts +254 -120
- package/dist/vuetify.esm.js +191 -78
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +190 -77
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +780 -771
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +2 -2
- package/lib/blueprints/md1.d.mts +2 -2
- package/lib/blueprints/md2.d.mts +2 -2
- package/lib/blueprints/md3.d.mts +2 -2
- package/lib/components/VAppBar/index.d.mts +24 -8
- package/lib/components/VAutocomplete/VAutocomplete.mjs +16 -11
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +1 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +24 -8
- package/lib/components/VCard/VCard.mjs +1 -1
- package/lib/components/VCard/VCard.mjs.map +1 -1
- package/lib/components/VCard/index.d.mts +44 -28
- package/lib/components/VCheckbox/VCheckbox.mjs +8 -1
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.mts +7 -1
- package/lib/components/VChip/VChip.mjs +2 -2
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.mts +48 -32
- package/lib/components/VCombobox/VCombobox.mjs +16 -8
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +56 -24
- package/lib/components/VField/VField.css +1 -0
- package/lib/components/VField/VField.sass +1 -0
- package/lib/components/VIcon/VIcon.mjs +2 -2
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +1 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +24 -8
- package/lib/components/VMenu/VMenu.mjs +29 -3
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +7 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +29 -35
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +15 -10
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +2 -2
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VTabs/VTabs.css +1 -0
- package/lib/components/VTabs/VTabs.sass +1 -0
- package/lib/components/VTabs/index.d.mts +24 -8
- package/lib/components/VTextarea/VTextarea.css +7 -7
- package/lib/components/VTextarea/VTextarea.sass +9 -9
- package/lib/components/index.d.mts +251 -117
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/theme.mjs +1 -1
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/mdi-svg.mjs +35 -35
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/index.d.mts +3 -3
- package/lib/labs/VDataTable/VDataTable.css +4 -14
- package/lib/labs/VDataTable/VDataTable.sass +6 -15
- package/lib/labs/VDataTable/VDataTableHeaders.mjs +2 -2
- package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/select.mjs +3 -2
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
- package/lib/util/bindProps.mjs +49 -0
- package/lib/util/bindProps.mjs.map +1 -0
- package/lib/util/helpers.mjs +3 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/index.mjs +1 -0
- package/lib/util/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -270,9 +270,9 @@ interface IconSet {
|
|
|
270
270
|
component: IconComponent;
|
|
271
271
|
}
|
|
272
272
|
type IconOptions = {
|
|
273
|
-
defaultSet
|
|
273
|
+
defaultSet?: string;
|
|
274
274
|
aliases?: Partial<IconAliases>;
|
|
275
|
-
sets
|
|
275
|
+
sets?: Record<string, IconSet>;
|
|
276
276
|
};
|
|
277
277
|
declare const VComponentIcon: {
|
|
278
278
|
new (...args: any[]): {
|
|
@@ -2172,7 +2172,9 @@ declare const VAppBarNavIcon: {
|
|
|
2172
2172
|
density?: Density | undefined;
|
|
2173
2173
|
variant?: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">> | undefined;
|
|
2174
2174
|
stacked?: boolean | undefined;
|
|
2175
|
-
ripple?: boolean |
|
|
2175
|
+
ripple?: boolean | {
|
|
2176
|
+
class: string;
|
|
2177
|
+
} | undefined;
|
|
2176
2178
|
key?: string | number | symbol | undefined;
|
|
2177
2179
|
location?: Anchor | undefined;
|
|
2178
2180
|
height?: string | number | undefined;
|
|
@@ -2291,7 +2293,9 @@ declare const VAppBarNavIcon: {
|
|
|
2291
2293
|
density: Density;
|
|
2292
2294
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2293
2295
|
stacked: boolean;
|
|
2294
|
-
ripple: boolean
|
|
2296
|
+
ripple: boolean | {
|
|
2297
|
+
class: string;
|
|
2298
|
+
} | undefined;
|
|
2295
2299
|
} & {
|
|
2296
2300
|
location?: Anchor | undefined;
|
|
2297
2301
|
height?: string | number | undefined;
|
|
@@ -2350,7 +2354,9 @@ declare const VAppBarNavIcon: {
|
|
|
2350
2354
|
density: Density;
|
|
2351
2355
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2352
2356
|
stacked: boolean;
|
|
2353
|
-
ripple: boolean
|
|
2357
|
+
ripple: boolean | {
|
|
2358
|
+
class: string;
|
|
2359
|
+
} | undefined;
|
|
2354
2360
|
}, {}, string, vue.SlotsType<Partial<{
|
|
2355
2361
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2356
2362
|
[key: string]: any;
|
|
@@ -2398,7 +2404,9 @@ declare const VAppBarNavIcon: {
|
|
|
2398
2404
|
density: Density;
|
|
2399
2405
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2400
2406
|
stacked: boolean;
|
|
2401
|
-
ripple: boolean
|
|
2407
|
+
ripple: boolean | {
|
|
2408
|
+
class: string;
|
|
2409
|
+
} | undefined;
|
|
2402
2410
|
} & {
|
|
2403
2411
|
location?: Anchor | undefined;
|
|
2404
2412
|
height?: string | number | undefined;
|
|
@@ -2459,7 +2467,9 @@ declare const VAppBarNavIcon: {
|
|
|
2459
2467
|
density: Density;
|
|
2460
2468
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2461
2469
|
stacked: boolean;
|
|
2462
|
-
ripple: boolean
|
|
2470
|
+
ripple: boolean | {
|
|
2471
|
+
class: string;
|
|
2472
|
+
} | undefined;
|
|
2463
2473
|
} & {
|
|
2464
2474
|
location?: Anchor | undefined;
|
|
2465
2475
|
height?: string | number | undefined;
|
|
@@ -2518,7 +2528,9 @@ declare const VAppBarNavIcon: {
|
|
|
2518
2528
|
density: Density;
|
|
2519
2529
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2520
2530
|
stacked: boolean;
|
|
2521
|
-
ripple: boolean
|
|
2531
|
+
ripple: boolean | {
|
|
2532
|
+
class: string;
|
|
2533
|
+
} | undefined;
|
|
2522
2534
|
}, {}, string, vue.SlotsType<Partial<{
|
|
2523
2535
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2524
2536
|
[key: string]: any;
|
|
@@ -2613,7 +2625,9 @@ declare const VAppBarNavIcon: {
|
|
|
2613
2625
|
block: BooleanConstructor;
|
|
2614
2626
|
stacked: BooleanConstructor;
|
|
2615
2627
|
ripple: {
|
|
2616
|
-
type:
|
|
2628
|
+
type: vue.PropType<boolean | {
|
|
2629
|
+
class: string;
|
|
2630
|
+
} | undefined>;
|
|
2617
2631
|
default: boolean;
|
|
2618
2632
|
};
|
|
2619
2633
|
text: StringConstructor;
|
|
@@ -2698,7 +2712,9 @@ declare const VAppBarNavIcon: {
|
|
|
2698
2712
|
block: BooleanConstructor;
|
|
2699
2713
|
stacked: BooleanConstructor;
|
|
2700
2714
|
ripple: {
|
|
2701
|
-
type:
|
|
2715
|
+
type: vue.PropType<boolean | {
|
|
2716
|
+
class: string;
|
|
2717
|
+
} | undefined>;
|
|
2702
2718
|
default: boolean;
|
|
2703
2719
|
};
|
|
2704
2720
|
text: StringConstructor;
|
|
@@ -9371,7 +9387,9 @@ declare const VBtn: {
|
|
|
9371
9387
|
density?: Density | undefined;
|
|
9372
9388
|
variant?: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | undefined;
|
|
9373
9389
|
stacked?: boolean | undefined;
|
|
9374
|
-
ripple?: boolean |
|
|
9390
|
+
ripple?: boolean | {
|
|
9391
|
+
class: string;
|
|
9392
|
+
} | undefined;
|
|
9375
9393
|
key?: string | number | symbol | undefined;
|
|
9376
9394
|
location?: Anchor | undefined;
|
|
9377
9395
|
height?: string | number | undefined;
|
|
@@ -9495,7 +9513,9 @@ declare const VBtn: {
|
|
|
9495
9513
|
density: Density;
|
|
9496
9514
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
9497
9515
|
stacked: boolean;
|
|
9498
|
-
ripple: boolean
|
|
9516
|
+
ripple: boolean | {
|
|
9517
|
+
class: string;
|
|
9518
|
+
} | undefined;
|
|
9499
9519
|
} & {
|
|
9500
9520
|
location?: Anchor | undefined;
|
|
9501
9521
|
height?: string | number | undefined;
|
|
@@ -9562,7 +9582,9 @@ declare const VBtn: {
|
|
|
9562
9582
|
density: Density;
|
|
9563
9583
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
9564
9584
|
stacked: boolean;
|
|
9565
|
-
ripple: boolean
|
|
9585
|
+
ripple: boolean | {
|
|
9586
|
+
class: string;
|
|
9587
|
+
} | undefined;
|
|
9566
9588
|
}, {}, string, vue.SlotsType<Partial<{
|
|
9567
9589
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
9568
9590
|
[key: string]: any;
|
|
@@ -9609,7 +9631,9 @@ declare const VBtn: {
|
|
|
9609
9631
|
density: Density;
|
|
9610
9632
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
9611
9633
|
stacked: boolean;
|
|
9612
|
-
ripple: boolean
|
|
9634
|
+
ripple: boolean | {
|
|
9635
|
+
class: string;
|
|
9636
|
+
} | undefined;
|
|
9613
9637
|
} & {
|
|
9614
9638
|
location?: Anchor | undefined;
|
|
9615
9639
|
height?: string | number | undefined;
|
|
@@ -9674,7 +9698,9 @@ declare const VBtn: {
|
|
|
9674
9698
|
density: Density;
|
|
9675
9699
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
9676
9700
|
stacked: boolean;
|
|
9677
|
-
ripple: boolean
|
|
9701
|
+
ripple: boolean | {
|
|
9702
|
+
class: string;
|
|
9703
|
+
} | undefined;
|
|
9678
9704
|
} & {
|
|
9679
9705
|
location?: Anchor | undefined;
|
|
9680
9706
|
height?: string | number | undefined;
|
|
@@ -9741,7 +9767,9 @@ declare const VBtn: {
|
|
|
9741
9767
|
density: Density;
|
|
9742
9768
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
9743
9769
|
stacked: boolean;
|
|
9744
|
-
ripple: boolean
|
|
9770
|
+
ripple: boolean | {
|
|
9771
|
+
class: string;
|
|
9772
|
+
} | undefined;
|
|
9745
9773
|
}, {}, string, vue.SlotsType<Partial<{
|
|
9746
9774
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
9747
9775
|
[key: string]: any;
|
|
@@ -9830,7 +9858,9 @@ declare const VBtn: {
|
|
|
9830
9858
|
block: BooleanConstructor;
|
|
9831
9859
|
stacked: BooleanConstructor;
|
|
9832
9860
|
ripple: {
|
|
9833
|
-
type:
|
|
9861
|
+
type: PropType<boolean | {
|
|
9862
|
+
class: string;
|
|
9863
|
+
} | undefined>;
|
|
9834
9864
|
default: boolean;
|
|
9835
9865
|
};
|
|
9836
9866
|
text: StringConstructor;
|
|
@@ -9909,7 +9939,9 @@ declare const VBtn: {
|
|
|
9909
9939
|
block: BooleanConstructor;
|
|
9910
9940
|
stacked: BooleanConstructor;
|
|
9911
9941
|
ripple: {
|
|
9912
|
-
type:
|
|
9942
|
+
type: PropType<boolean | {
|
|
9943
|
+
class: string;
|
|
9944
|
+
} | undefined>;
|
|
9913
9945
|
default: boolean;
|
|
9914
9946
|
};
|
|
9915
9947
|
text: StringConstructor;
|
|
@@ -10823,7 +10855,9 @@ declare const VCard: {
|
|
|
10823
10855
|
rounded?: string | number | boolean | undefined;
|
|
10824
10856
|
density?: Density | undefined;
|
|
10825
10857
|
variant?: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | undefined;
|
|
10826
|
-
ripple?: boolean |
|
|
10858
|
+
ripple?: boolean | {
|
|
10859
|
+
class: string;
|
|
10860
|
+
} | undefined;
|
|
10827
10861
|
hover?: boolean | undefined;
|
|
10828
10862
|
key?: string | number | symbol | undefined;
|
|
10829
10863
|
location?: Anchor | undefined;
|
|
@@ -10977,7 +11011,9 @@ declare const VCard: {
|
|
|
10977
11011
|
tag: string;
|
|
10978
11012
|
density: Density;
|
|
10979
11013
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
10980
|
-
ripple: boolean
|
|
11014
|
+
ripple: boolean | {
|
|
11015
|
+
class: string;
|
|
11016
|
+
} | undefined;
|
|
10981
11017
|
hover: boolean;
|
|
10982
11018
|
} & {
|
|
10983
11019
|
link?: boolean | undefined;
|
|
@@ -11053,7 +11089,9 @@ declare const VCard: {
|
|
|
11053
11089
|
rounded: string | number | boolean;
|
|
11054
11090
|
density: Density;
|
|
11055
11091
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11056
|
-
ripple: boolean
|
|
11092
|
+
ripple: boolean | {
|
|
11093
|
+
class: string;
|
|
11094
|
+
} | undefined;
|
|
11057
11095
|
hover: boolean;
|
|
11058
11096
|
}, {}, string, vue.SlotsType<Partial<{
|
|
11059
11097
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -11115,7 +11153,9 @@ declare const VCard: {
|
|
|
11115
11153
|
tag: string;
|
|
11116
11154
|
density: Density;
|
|
11117
11155
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11118
|
-
ripple: boolean
|
|
11156
|
+
ripple: boolean | {
|
|
11157
|
+
class: string;
|
|
11158
|
+
} | undefined;
|
|
11119
11159
|
hover: boolean;
|
|
11120
11160
|
} & {
|
|
11121
11161
|
link?: boolean | undefined;
|
|
@@ -11193,7 +11233,9 @@ declare const VCard: {
|
|
|
11193
11233
|
tag: string;
|
|
11194
11234
|
density: Density;
|
|
11195
11235
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11196
|
-
ripple: boolean
|
|
11236
|
+
ripple: boolean | {
|
|
11237
|
+
class: string;
|
|
11238
|
+
} | undefined;
|
|
11197
11239
|
hover: boolean;
|
|
11198
11240
|
} & {
|
|
11199
11241
|
link?: boolean | undefined;
|
|
@@ -11269,7 +11311,9 @@ declare const VCard: {
|
|
|
11269
11311
|
rounded: string | number | boolean;
|
|
11270
11312
|
density: Density;
|
|
11271
11313
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11272
|
-
ripple: boolean
|
|
11314
|
+
ripple: boolean | {
|
|
11315
|
+
class: string;
|
|
11316
|
+
} | undefined;
|
|
11273
11317
|
hover: boolean;
|
|
11274
11318
|
}, {}, string, vue.SlotsType<Partial<{
|
|
11275
11319
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -11305,11 +11349,11 @@ declare const VCard: {
|
|
|
11305
11349
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
11306
11350
|
color: StringConstructor;
|
|
11307
11351
|
variant: Omit<{
|
|
11308
|
-
type:
|
|
11352
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11309
11353
|
default: string;
|
|
11310
11354
|
validator: (v: any) => boolean;
|
|
11311
11355
|
}, "type" | "default"> & {
|
|
11312
|
-
type:
|
|
11356
|
+
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
11313
11357
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11314
11358
|
};
|
|
11315
11359
|
theme: StringConstructor;
|
|
@@ -11319,17 +11363,17 @@ declare const VCard: {
|
|
|
11319
11363
|
};
|
|
11320
11364
|
href: StringConstructor;
|
|
11321
11365
|
replace: BooleanConstructor;
|
|
11322
|
-
to:
|
|
11366
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
|
11323
11367
|
exact: BooleanConstructor;
|
|
11324
11368
|
rounded: {
|
|
11325
11369
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11326
11370
|
default: undefined;
|
|
11327
11371
|
};
|
|
11328
11372
|
position: {
|
|
11329
|
-
type:
|
|
11373
|
+
type: PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
11330
11374
|
validator: (v: any) => boolean;
|
|
11331
11375
|
};
|
|
11332
|
-
location:
|
|
11376
|
+
location: PropType<Anchor>;
|
|
11333
11377
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
11334
11378
|
elevation: {
|
|
11335
11379
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -11342,18 +11386,18 @@ declare const VCard: {
|
|
|
11342
11386
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
11343
11387
|
width: (StringConstructor | NumberConstructor)[];
|
|
11344
11388
|
density: {
|
|
11345
|
-
type:
|
|
11389
|
+
type: PropType<Density>;
|
|
11346
11390
|
default: string;
|
|
11347
11391
|
validator: (v: any) => boolean;
|
|
11348
11392
|
};
|
|
11349
|
-
class:
|
|
11393
|
+
class: PropType<any>;
|
|
11350
11394
|
style: {
|
|
11351
|
-
type:
|
|
11395
|
+
type: PropType<vue.StyleValue>;
|
|
11352
11396
|
default: null;
|
|
11353
11397
|
};
|
|
11354
11398
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11355
11399
|
appendAvatar: StringConstructor;
|
|
11356
|
-
appendIcon:
|
|
11400
|
+
appendIcon: PropType<IconValue>;
|
|
11357
11401
|
disabled: BooleanConstructor;
|
|
11358
11402
|
flat: BooleanConstructor;
|
|
11359
11403
|
hover: BooleanConstructor;
|
|
@@ -11363,9 +11407,11 @@ declare const VCard: {
|
|
|
11363
11407
|
default: undefined;
|
|
11364
11408
|
};
|
|
11365
11409
|
prependAvatar: StringConstructor;
|
|
11366
|
-
prependIcon:
|
|
11410
|
+
prependIcon: PropType<IconValue>;
|
|
11367
11411
|
ripple: {
|
|
11368
|
-
type:
|
|
11412
|
+
type: PropType<boolean | {
|
|
11413
|
+
class: string;
|
|
11414
|
+
} | undefined>;
|
|
11369
11415
|
default: boolean;
|
|
11370
11416
|
};
|
|
11371
11417
|
subtitle: StringConstructor;
|
|
@@ -11374,11 +11420,11 @@ declare const VCard: {
|
|
|
11374
11420
|
}, vue.ExtractPropTypes<{
|
|
11375
11421
|
color: StringConstructor;
|
|
11376
11422
|
variant: Omit<{
|
|
11377
|
-
type:
|
|
11423
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11378
11424
|
default: string;
|
|
11379
11425
|
validator: (v: any) => boolean;
|
|
11380
11426
|
}, "type" | "default"> & {
|
|
11381
|
-
type:
|
|
11427
|
+
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
11382
11428
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
11383
11429
|
};
|
|
11384
11430
|
theme: StringConstructor;
|
|
@@ -11388,17 +11434,17 @@ declare const VCard: {
|
|
|
11388
11434
|
};
|
|
11389
11435
|
href: StringConstructor;
|
|
11390
11436
|
replace: BooleanConstructor;
|
|
11391
|
-
to:
|
|
11437
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
|
11392
11438
|
exact: BooleanConstructor;
|
|
11393
11439
|
rounded: {
|
|
11394
11440
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11395
11441
|
default: undefined;
|
|
11396
11442
|
};
|
|
11397
11443
|
position: {
|
|
11398
|
-
type:
|
|
11444
|
+
type: PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
11399
11445
|
validator: (v: any) => boolean;
|
|
11400
11446
|
};
|
|
11401
|
-
location:
|
|
11447
|
+
location: PropType<Anchor>;
|
|
11402
11448
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
11403
11449
|
elevation: {
|
|
11404
11450
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -11411,18 +11457,18 @@ declare const VCard: {
|
|
|
11411
11457
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
11412
11458
|
width: (StringConstructor | NumberConstructor)[];
|
|
11413
11459
|
density: {
|
|
11414
|
-
type:
|
|
11460
|
+
type: PropType<Density>;
|
|
11415
11461
|
default: string;
|
|
11416
11462
|
validator: (v: any) => boolean;
|
|
11417
11463
|
};
|
|
11418
|
-
class:
|
|
11464
|
+
class: PropType<any>;
|
|
11419
11465
|
style: {
|
|
11420
|
-
type:
|
|
11466
|
+
type: PropType<vue.StyleValue>;
|
|
11421
11467
|
default: null;
|
|
11422
11468
|
};
|
|
11423
11469
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
11424
11470
|
appendAvatar: StringConstructor;
|
|
11425
|
-
appendIcon:
|
|
11471
|
+
appendIcon: PropType<IconValue>;
|
|
11426
11472
|
disabled: BooleanConstructor;
|
|
11427
11473
|
flat: BooleanConstructor;
|
|
11428
11474
|
hover: BooleanConstructor;
|
|
@@ -11432,9 +11478,11 @@ declare const VCard: {
|
|
|
11432
11478
|
default: undefined;
|
|
11433
11479
|
};
|
|
11434
11480
|
prependAvatar: StringConstructor;
|
|
11435
|
-
prependIcon:
|
|
11481
|
+
prependIcon: PropType<IconValue>;
|
|
11436
11482
|
ripple: {
|
|
11437
|
-
type:
|
|
11483
|
+
type: PropType<boolean | {
|
|
11484
|
+
class: string;
|
|
11485
|
+
} | undefined>;
|
|
11438
11486
|
default: boolean;
|
|
11439
11487
|
};
|
|
11440
11488
|
subtitle: StringConstructor;
|
|
@@ -14724,6 +14772,7 @@ declare const VCheckbox: {
|
|
|
14724
14772
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
14725
14773
|
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
14726
14774
|
modelValue?: any;
|
|
14775
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
14727
14776
|
prependIcon?: IconValue | undefined;
|
|
14728
14777
|
appendIcon?: IconValue | undefined;
|
|
14729
14778
|
defaultsTarget?: string | undefined;
|
|
@@ -14778,7 +14827,7 @@ declare const VCheckbox: {
|
|
|
14778
14827
|
}>;
|
|
14779
14828
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
14780
14829
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
14781
|
-
$emit: (event: "update:focused", focused: boolean) => void;
|
|
14830
|
+
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
14782
14831
|
$el: any;
|
|
14783
14832
|
$options: vue.ComponentOptionsBase<{
|
|
14784
14833
|
error: boolean;
|
|
@@ -14860,8 +14909,10 @@ declare const VCheckbox: {
|
|
|
14860
14909
|
}) => vue.VNodeChild) | undefined;
|
|
14861
14910
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
14862
14911
|
} & {
|
|
14912
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
14863
14913
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
14864
14914
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
14915
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
14865
14916
|
'update:focused': (focused: boolean) => boolean;
|
|
14866
14917
|
}, string, {
|
|
14867
14918
|
error: boolean;
|
|
@@ -15009,6 +15060,7 @@ declare const VCheckbox: {
|
|
|
15009
15060
|
}) => vue.VNodeChild) | undefined;
|
|
15010
15061
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
15011
15062
|
} & {
|
|
15063
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15012
15064
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
15013
15065
|
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
15014
15066
|
__isFragment?: undefined;
|
|
@@ -15094,8 +15146,10 @@ declare const VCheckbox: {
|
|
|
15094
15146
|
}) => vue.VNodeChild) | undefined;
|
|
15095
15147
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
15096
15148
|
} & {
|
|
15149
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15097
15150
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
15098
15151
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
15152
|
+
'update:modelValue': (value: boolean) => boolean;
|
|
15099
15153
|
'update:focused': (focused: boolean) => boolean;
|
|
15100
15154
|
}, string, {
|
|
15101
15155
|
error: boolean;
|
|
@@ -15809,7 +15863,9 @@ declare const VChip: {
|
|
|
15809
15863
|
density?: Density | undefined;
|
|
15810
15864
|
variant?: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | undefined;
|
|
15811
15865
|
modelValue?: boolean | undefined;
|
|
15812
|
-
ripple?: boolean |
|
|
15866
|
+
ripple?: boolean | {
|
|
15867
|
+
class: string;
|
|
15868
|
+
} | undefined;
|
|
15813
15869
|
closable?: boolean | undefined;
|
|
15814
15870
|
closeIcon?: IconValue | undefined;
|
|
15815
15871
|
closeLabel?: string | undefined;
|
|
@@ -15982,7 +16038,9 @@ declare const VChip: {
|
|
|
15982
16038
|
density: Density;
|
|
15983
16039
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
15984
16040
|
modelValue: boolean;
|
|
15985
|
-
ripple: boolean
|
|
16041
|
+
ripple: boolean | {
|
|
16042
|
+
class: string;
|
|
16043
|
+
} | undefined;
|
|
15986
16044
|
closable: boolean;
|
|
15987
16045
|
closeIcon: IconValue;
|
|
15988
16046
|
closeLabel: string;
|
|
@@ -16089,7 +16147,9 @@ declare const VChip: {
|
|
|
16089
16147
|
density: Density;
|
|
16090
16148
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16091
16149
|
modelValue: boolean;
|
|
16092
|
-
ripple: boolean
|
|
16150
|
+
ripple: boolean | {
|
|
16151
|
+
class: string;
|
|
16152
|
+
} | undefined;
|
|
16093
16153
|
closable: boolean;
|
|
16094
16154
|
closeIcon: IconValue;
|
|
16095
16155
|
closeLabel: string;
|
|
@@ -16154,7 +16214,9 @@ declare const VChip: {
|
|
|
16154
16214
|
density: Density;
|
|
16155
16215
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16156
16216
|
modelValue: boolean;
|
|
16157
|
-
ripple: boolean
|
|
16217
|
+
ripple: boolean | {
|
|
16218
|
+
class: string;
|
|
16219
|
+
} | undefined;
|
|
16158
16220
|
closable: boolean;
|
|
16159
16221
|
closeIcon: IconValue;
|
|
16160
16222
|
closeLabel: string;
|
|
@@ -16256,7 +16318,9 @@ declare const VChip: {
|
|
|
16256
16318
|
density: Density;
|
|
16257
16319
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16258
16320
|
modelValue: boolean;
|
|
16259
|
-
ripple: boolean
|
|
16321
|
+
ripple: boolean | {
|
|
16322
|
+
class: string;
|
|
16323
|
+
} | undefined;
|
|
16260
16324
|
closable: boolean;
|
|
16261
16325
|
closeIcon: IconValue;
|
|
16262
16326
|
closeLabel: string;
|
|
@@ -16363,7 +16427,9 @@ declare const VChip: {
|
|
|
16363
16427
|
density: Density;
|
|
16364
16428
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16365
16429
|
modelValue: boolean;
|
|
16366
|
-
ripple: boolean
|
|
16430
|
+
ripple: boolean | {
|
|
16431
|
+
class: string;
|
|
16432
|
+
} | undefined;
|
|
16367
16433
|
closable: boolean;
|
|
16368
16434
|
closeIcon: IconValue;
|
|
16369
16435
|
closeLabel: string;
|
|
@@ -16398,11 +16464,11 @@ declare const VChip: {
|
|
|
16398
16464
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
16399
16465
|
color: StringConstructor;
|
|
16400
16466
|
variant: Omit<{
|
|
16401
|
-
type:
|
|
16467
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16402
16468
|
default: string;
|
|
16403
16469
|
validator: (v: any) => boolean;
|
|
16404
16470
|
}, "type" | "default"> & {
|
|
16405
|
-
type:
|
|
16471
|
+
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
16406
16472
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16407
16473
|
};
|
|
16408
16474
|
theme: StringConstructor;
|
|
@@ -16410,7 +16476,7 @@ declare const VChip: {
|
|
|
16410
16476
|
type: StringConstructor;
|
|
16411
16477
|
default: string;
|
|
16412
16478
|
}, "type" | "default"> & {
|
|
16413
|
-
type:
|
|
16479
|
+
type: PropType<string>;
|
|
16414
16480
|
default: string;
|
|
16415
16481
|
};
|
|
16416
16482
|
size: {
|
|
@@ -16419,7 +16485,7 @@ declare const VChip: {
|
|
|
16419
16485
|
};
|
|
16420
16486
|
href: StringConstructor;
|
|
16421
16487
|
replace: BooleanConstructor;
|
|
16422
|
-
to:
|
|
16488
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
|
16423
16489
|
exact: BooleanConstructor;
|
|
16424
16490
|
rounded: {
|
|
16425
16491
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -16433,22 +16499,22 @@ declare const VChip: {
|
|
|
16433
16499
|
validator(v: any): boolean;
|
|
16434
16500
|
};
|
|
16435
16501
|
density: {
|
|
16436
|
-
type:
|
|
16502
|
+
type: PropType<Density>;
|
|
16437
16503
|
default: string;
|
|
16438
16504
|
validator: (v: any) => boolean;
|
|
16439
16505
|
};
|
|
16440
|
-
class:
|
|
16506
|
+
class: PropType<any>;
|
|
16441
16507
|
style: {
|
|
16442
|
-
type:
|
|
16508
|
+
type: PropType<vue.StyleValue>;
|
|
16443
16509
|
default: null;
|
|
16444
16510
|
};
|
|
16445
16511
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16446
16512
|
activeClass: StringConstructor;
|
|
16447
16513
|
appendAvatar: StringConstructor;
|
|
16448
|
-
appendIcon:
|
|
16514
|
+
appendIcon: PropType<IconValue>;
|
|
16449
16515
|
closable: BooleanConstructor;
|
|
16450
16516
|
closeIcon: {
|
|
16451
|
-
type:
|
|
16517
|
+
type: PropType<IconValue>;
|
|
16452
16518
|
default: string;
|
|
16453
16519
|
};
|
|
16454
16520
|
closeLabel: {
|
|
@@ -16468,9 +16534,11 @@ declare const VChip: {
|
|
|
16468
16534
|
};
|
|
16469
16535
|
pill: BooleanConstructor;
|
|
16470
16536
|
prependAvatar: StringConstructor;
|
|
16471
|
-
prependIcon:
|
|
16537
|
+
prependIcon: PropType<IconValue>;
|
|
16472
16538
|
ripple: {
|
|
16473
|
-
type:
|
|
16539
|
+
type: PropType<boolean | {
|
|
16540
|
+
class: string;
|
|
16541
|
+
} | undefined>;
|
|
16474
16542
|
default: boolean;
|
|
16475
16543
|
};
|
|
16476
16544
|
text: StringConstructor;
|
|
@@ -16478,16 +16546,16 @@ declare const VChip: {
|
|
|
16478
16546
|
type: BooleanConstructor;
|
|
16479
16547
|
default: boolean;
|
|
16480
16548
|
};
|
|
16481
|
-
onClick:
|
|
16482
|
-
onClickOnce:
|
|
16549
|
+
onClick: PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
16550
|
+
onClickOnce: PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
16483
16551
|
}, vue.ExtractPropTypes<{
|
|
16484
16552
|
color: StringConstructor;
|
|
16485
16553
|
variant: Omit<{
|
|
16486
|
-
type:
|
|
16554
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16487
16555
|
default: string;
|
|
16488
16556
|
validator: (v: any) => boolean;
|
|
16489
16557
|
}, "type" | "default"> & {
|
|
16490
|
-
type:
|
|
16558
|
+
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
16491
16559
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
16492
16560
|
};
|
|
16493
16561
|
theme: StringConstructor;
|
|
@@ -16495,7 +16563,7 @@ declare const VChip: {
|
|
|
16495
16563
|
type: StringConstructor;
|
|
16496
16564
|
default: string;
|
|
16497
16565
|
}, "type" | "default"> & {
|
|
16498
|
-
type:
|
|
16566
|
+
type: PropType<string>;
|
|
16499
16567
|
default: string;
|
|
16500
16568
|
};
|
|
16501
16569
|
size: {
|
|
@@ -16504,7 +16572,7 @@ declare const VChip: {
|
|
|
16504
16572
|
};
|
|
16505
16573
|
href: StringConstructor;
|
|
16506
16574
|
replace: BooleanConstructor;
|
|
16507
|
-
to:
|
|
16575
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
|
16508
16576
|
exact: BooleanConstructor;
|
|
16509
16577
|
rounded: {
|
|
16510
16578
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -16518,22 +16586,22 @@ declare const VChip: {
|
|
|
16518
16586
|
validator(v: any): boolean;
|
|
16519
16587
|
};
|
|
16520
16588
|
density: {
|
|
16521
|
-
type:
|
|
16589
|
+
type: PropType<Density>;
|
|
16522
16590
|
default: string;
|
|
16523
16591
|
validator: (v: any) => boolean;
|
|
16524
16592
|
};
|
|
16525
|
-
class:
|
|
16593
|
+
class: PropType<any>;
|
|
16526
16594
|
style: {
|
|
16527
|
-
type:
|
|
16595
|
+
type: PropType<vue.StyleValue>;
|
|
16528
16596
|
default: null;
|
|
16529
16597
|
};
|
|
16530
16598
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
16531
16599
|
activeClass: StringConstructor;
|
|
16532
16600
|
appendAvatar: StringConstructor;
|
|
16533
|
-
appendIcon:
|
|
16601
|
+
appendIcon: PropType<IconValue>;
|
|
16534
16602
|
closable: BooleanConstructor;
|
|
16535
16603
|
closeIcon: {
|
|
16536
|
-
type:
|
|
16604
|
+
type: PropType<IconValue>;
|
|
16537
16605
|
default: string;
|
|
16538
16606
|
};
|
|
16539
16607
|
closeLabel: {
|
|
@@ -16553,9 +16621,11 @@ declare const VChip: {
|
|
|
16553
16621
|
};
|
|
16554
16622
|
pill: BooleanConstructor;
|
|
16555
16623
|
prependAvatar: StringConstructor;
|
|
16556
|
-
prependIcon:
|
|
16624
|
+
prependIcon: PropType<IconValue>;
|
|
16557
16625
|
ripple: {
|
|
16558
|
-
type:
|
|
16626
|
+
type: PropType<boolean | {
|
|
16627
|
+
class: string;
|
|
16628
|
+
} | undefined>;
|
|
16559
16629
|
default: boolean;
|
|
16560
16630
|
};
|
|
16561
16631
|
text: StringConstructor;
|
|
@@ -16563,8 +16633,8 @@ declare const VChip: {
|
|
|
16563
16633
|
type: BooleanConstructor;
|
|
16564
16634
|
default: boolean;
|
|
16565
16635
|
};
|
|
16566
|
-
onClick:
|
|
16567
|
-
onClickOnce:
|
|
16636
|
+
onClick: PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
16637
|
+
onClickOnce: PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
16568
16638
|
}>>;
|
|
16569
16639
|
type VChip = InstanceType<typeof VChip>;
|
|
16570
16640
|
|
|
@@ -22315,7 +22385,9 @@ declare const VExpansionPanel: {
|
|
|
22315
22385
|
readonly?: boolean | undefined;
|
|
22316
22386
|
tag?: string | undefined;
|
|
22317
22387
|
rounded?: string | number | boolean | undefined;
|
|
22318
|
-
ripple?: boolean |
|
|
22388
|
+
ripple?: boolean | {
|
|
22389
|
+
class: string;
|
|
22390
|
+
} | undefined;
|
|
22319
22391
|
collapseIcon?: IconValue | undefined;
|
|
22320
22392
|
expandIcon?: IconValue | undefined;
|
|
22321
22393
|
hideActions?: boolean | undefined;
|
|
@@ -22415,7 +22487,9 @@ declare const VExpansionPanel: {
|
|
|
22415
22487
|
disabled: boolean;
|
|
22416
22488
|
readonly: boolean;
|
|
22417
22489
|
tag: string;
|
|
22418
|
-
ripple: boolean |
|
|
22490
|
+
ripple: boolean | {
|
|
22491
|
+
class: string;
|
|
22492
|
+
} | undefined;
|
|
22419
22493
|
collapseIcon: IconValue;
|
|
22420
22494
|
expandIcon: IconValue;
|
|
22421
22495
|
hideActions: boolean;
|
|
@@ -22459,7 +22533,9 @@ declare const VExpansionPanel: {
|
|
|
22459
22533
|
readonly: boolean;
|
|
22460
22534
|
tag: string;
|
|
22461
22535
|
rounded: string | number | boolean;
|
|
22462
|
-
ripple: boolean |
|
|
22536
|
+
ripple: boolean | {
|
|
22537
|
+
class: string;
|
|
22538
|
+
} | undefined;
|
|
22463
22539
|
collapseIcon: IconValue;
|
|
22464
22540
|
expandIcon: IconValue;
|
|
22465
22541
|
hideActions: boolean;
|
|
@@ -22499,7 +22575,9 @@ declare const VExpansionPanel: {
|
|
|
22499
22575
|
disabled: boolean;
|
|
22500
22576
|
readonly: boolean;
|
|
22501
22577
|
tag: string;
|
|
22502
|
-
ripple: boolean |
|
|
22578
|
+
ripple: boolean | {
|
|
22579
|
+
class: string;
|
|
22580
|
+
} | undefined;
|
|
22503
22581
|
collapseIcon: IconValue;
|
|
22504
22582
|
expandIcon: IconValue;
|
|
22505
22583
|
hideActions: boolean;
|
|
@@ -22542,7 +22620,9 @@ declare const VExpansionPanel: {
|
|
|
22542
22620
|
disabled: boolean;
|
|
22543
22621
|
readonly: boolean;
|
|
22544
22622
|
tag: string;
|
|
22545
|
-
ripple: boolean |
|
|
22623
|
+
ripple: boolean | {
|
|
22624
|
+
class: string;
|
|
22625
|
+
} | undefined;
|
|
22546
22626
|
collapseIcon: IconValue;
|
|
22547
22627
|
expandIcon: IconValue;
|
|
22548
22628
|
hideActions: boolean;
|
|
@@ -22586,7 +22666,9 @@ declare const VExpansionPanel: {
|
|
|
22586
22666
|
readonly: boolean;
|
|
22587
22667
|
tag: string;
|
|
22588
22668
|
rounded: string | number | boolean;
|
|
22589
|
-
ripple: boolean |
|
|
22669
|
+
ripple: boolean | {
|
|
22670
|
+
class: string;
|
|
22671
|
+
} | undefined;
|
|
22590
22672
|
collapseIcon: IconValue;
|
|
22591
22673
|
expandIcon: IconValue;
|
|
22592
22674
|
hideActions: boolean;
|
|
@@ -22617,7 +22699,9 @@ declare const VExpansionPanel: {
|
|
|
22617
22699
|
};
|
|
22618
22700
|
hideActions: BooleanConstructor;
|
|
22619
22701
|
ripple: {
|
|
22620
|
-
type:
|
|
22702
|
+
type: vue.PropType<boolean | {
|
|
22703
|
+
class: string;
|
|
22704
|
+
} | undefined>;
|
|
22621
22705
|
default: boolean;
|
|
22622
22706
|
};
|
|
22623
22707
|
readonly: BooleanConstructor;
|
|
@@ -22657,7 +22741,9 @@ declare const VExpansionPanel: {
|
|
|
22657
22741
|
};
|
|
22658
22742
|
hideActions: BooleanConstructor;
|
|
22659
22743
|
ripple: {
|
|
22660
|
-
type:
|
|
22744
|
+
type: vue.PropType<boolean | {
|
|
22745
|
+
class: string;
|
|
22746
|
+
} | undefined>;
|
|
22661
22747
|
default: boolean;
|
|
22662
22748
|
};
|
|
22663
22749
|
readonly: BooleanConstructor;
|
|
@@ -22867,7 +22953,9 @@ declare const VExpansionPanelTitle: {
|
|
|
22867
22953
|
$props: {
|
|
22868
22954
|
style?: vue.StyleValue | undefined;
|
|
22869
22955
|
readonly?: boolean | undefined;
|
|
22870
|
-
ripple?: boolean |
|
|
22956
|
+
ripple?: boolean | {
|
|
22957
|
+
class: string;
|
|
22958
|
+
} | undefined;
|
|
22871
22959
|
collapseIcon?: IconValue | undefined;
|
|
22872
22960
|
expandIcon?: IconValue | undefined;
|
|
22873
22961
|
hideActions?: boolean | undefined;
|
|
@@ -22947,7 +23035,9 @@ declare const VExpansionPanelTitle: {
|
|
|
22947
23035
|
$options: vue.ComponentOptionsBase<{
|
|
22948
23036
|
style: vue.StyleValue;
|
|
22949
23037
|
readonly: boolean;
|
|
22950
|
-
ripple: boolean |
|
|
23038
|
+
ripple: boolean | {
|
|
23039
|
+
class: string;
|
|
23040
|
+
} | undefined;
|
|
22951
23041
|
collapseIcon: IconValue;
|
|
22952
23042
|
expandIcon: IconValue;
|
|
22953
23043
|
hideActions: boolean;
|
|
@@ -22969,7 +23059,9 @@ declare const VExpansionPanelTitle: {
|
|
|
22969
23059
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
22970
23060
|
style: vue.StyleValue;
|
|
22971
23061
|
readonly: boolean;
|
|
22972
|
-
ripple: boolean |
|
|
23062
|
+
ripple: boolean | {
|
|
23063
|
+
class: string;
|
|
23064
|
+
} | undefined;
|
|
22973
23065
|
collapseIcon: IconValue;
|
|
22974
23066
|
expandIcon: IconValue;
|
|
22975
23067
|
hideActions: boolean;
|
|
@@ -23003,7 +23095,9 @@ declare const VExpansionPanelTitle: {
|
|
|
23003
23095
|
} & {
|
|
23004
23096
|
style: vue.StyleValue;
|
|
23005
23097
|
readonly: boolean;
|
|
23006
|
-
ripple: boolean |
|
|
23098
|
+
ripple: boolean | {
|
|
23099
|
+
class: string;
|
|
23100
|
+
} | undefined;
|
|
23007
23101
|
collapseIcon: IconValue;
|
|
23008
23102
|
expandIcon: IconValue;
|
|
23009
23103
|
hideActions: boolean;
|
|
@@ -23029,7 +23123,9 @@ declare const VExpansionPanelTitle: {
|
|
|
23029
23123
|
} & vue.ComponentOptionsBase<{
|
|
23030
23124
|
style: vue.StyleValue;
|
|
23031
23125
|
readonly: boolean;
|
|
23032
|
-
ripple: boolean |
|
|
23126
|
+
ripple: boolean | {
|
|
23127
|
+
class: string;
|
|
23128
|
+
} | undefined;
|
|
23033
23129
|
collapseIcon: IconValue;
|
|
23034
23130
|
expandIcon: IconValue;
|
|
23035
23131
|
hideActions: boolean;
|
|
@@ -23051,7 +23147,9 @@ declare const VExpansionPanelTitle: {
|
|
|
23051
23147
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
23052
23148
|
style: vue.StyleValue;
|
|
23053
23149
|
readonly: boolean;
|
|
23054
|
-
ripple: boolean |
|
|
23150
|
+
ripple: boolean | {
|
|
23151
|
+
class: string;
|
|
23152
|
+
} | undefined;
|
|
23055
23153
|
collapseIcon: IconValue;
|
|
23056
23154
|
expandIcon: IconValue;
|
|
23057
23155
|
hideActions: boolean;
|
|
@@ -23063,44 +23161,48 @@ declare const VExpansionPanelTitle: {
|
|
|
23063
23161
|
[key: string]: any;
|
|
23064
23162
|
}>[];
|
|
23065
23163
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
23066
|
-
class:
|
|
23164
|
+
class: PropType<any>;
|
|
23067
23165
|
style: {
|
|
23068
|
-
type:
|
|
23166
|
+
type: PropType<vue.StyleValue>;
|
|
23069
23167
|
default: null;
|
|
23070
23168
|
};
|
|
23071
23169
|
color: StringConstructor;
|
|
23072
23170
|
expandIcon: {
|
|
23073
|
-
type:
|
|
23171
|
+
type: PropType<IconValue>;
|
|
23074
23172
|
default: string;
|
|
23075
23173
|
};
|
|
23076
23174
|
collapseIcon: {
|
|
23077
|
-
type:
|
|
23175
|
+
type: PropType<IconValue>;
|
|
23078
23176
|
default: string;
|
|
23079
23177
|
};
|
|
23080
23178
|
hideActions: BooleanConstructor;
|
|
23081
23179
|
ripple: {
|
|
23082
|
-
type:
|
|
23180
|
+
type: PropType<boolean | {
|
|
23181
|
+
class: string;
|
|
23182
|
+
} | undefined>;
|
|
23083
23183
|
default: boolean;
|
|
23084
23184
|
};
|
|
23085
23185
|
readonly: BooleanConstructor;
|
|
23086
23186
|
}, vue.ExtractPropTypes<{
|
|
23087
|
-
class:
|
|
23187
|
+
class: PropType<any>;
|
|
23088
23188
|
style: {
|
|
23089
|
-
type:
|
|
23189
|
+
type: PropType<vue.StyleValue>;
|
|
23090
23190
|
default: null;
|
|
23091
23191
|
};
|
|
23092
23192
|
color: StringConstructor;
|
|
23093
23193
|
expandIcon: {
|
|
23094
|
-
type:
|
|
23194
|
+
type: PropType<IconValue>;
|
|
23095
23195
|
default: string;
|
|
23096
23196
|
};
|
|
23097
23197
|
collapseIcon: {
|
|
23098
|
-
type:
|
|
23198
|
+
type: PropType<IconValue>;
|
|
23099
23199
|
default: string;
|
|
23100
23200
|
};
|
|
23101
23201
|
hideActions: BooleanConstructor;
|
|
23102
23202
|
ripple: {
|
|
23103
|
-
type:
|
|
23203
|
+
type: PropType<boolean | {
|
|
23204
|
+
class: string;
|
|
23205
|
+
} | undefined>;
|
|
23104
23206
|
default: boolean;
|
|
23105
23207
|
};
|
|
23106
23208
|
readonly: BooleanConstructor;
|
|
@@ -29639,7 +29741,9 @@ declare const VListItem: {
|
|
|
29639
29741
|
rounded?: string | number | boolean | undefined;
|
|
29640
29742
|
density?: Density | undefined;
|
|
29641
29743
|
variant?: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | undefined;
|
|
29642
|
-
ripple?: boolean |
|
|
29744
|
+
ripple?: boolean | {
|
|
29745
|
+
class: string;
|
|
29746
|
+
} | undefined;
|
|
29643
29747
|
key?: string | number | symbol | undefined;
|
|
29644
29748
|
height?: string | number | undefined;
|
|
29645
29749
|
width?: string | number | undefined;
|
|
@@ -29764,7 +29868,9 @@ declare const VListItem: {
|
|
|
29764
29868
|
tag: string;
|
|
29765
29869
|
density: Density;
|
|
29766
29870
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
29767
|
-
ripple: boolean
|
|
29871
|
+
ripple: boolean | {
|
|
29872
|
+
class: string;
|
|
29873
|
+
} | undefined;
|
|
29768
29874
|
} & {
|
|
29769
29875
|
link?: boolean | undefined;
|
|
29770
29876
|
height?: string | number | undefined;
|
|
@@ -29832,7 +29938,9 @@ declare const VListItem: {
|
|
|
29832
29938
|
rounded: string | number | boolean;
|
|
29833
29939
|
density: Density;
|
|
29834
29940
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
29835
|
-
ripple: boolean
|
|
29941
|
+
ripple: boolean | {
|
|
29942
|
+
class: string;
|
|
29943
|
+
} | undefined;
|
|
29836
29944
|
}, {}, string, vue.SlotsType<Partial<{
|
|
29837
29945
|
prepend: (arg: ListItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
29838
29946
|
[key: string]: any;
|
|
@@ -29878,7 +29986,9 @@ declare const VListItem: {
|
|
|
29878
29986
|
tag: string;
|
|
29879
29987
|
density: Density;
|
|
29880
29988
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
29881
|
-
ripple: boolean
|
|
29989
|
+
ripple: boolean | {
|
|
29990
|
+
class: string;
|
|
29991
|
+
} | undefined;
|
|
29882
29992
|
} & {
|
|
29883
29993
|
link?: boolean | undefined;
|
|
29884
29994
|
height?: string | number | undefined;
|
|
@@ -29945,7 +30055,9 @@ declare const VListItem: {
|
|
|
29945
30055
|
tag: string;
|
|
29946
30056
|
density: Density;
|
|
29947
30057
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
29948
|
-
ripple: boolean
|
|
30058
|
+
ripple: boolean | {
|
|
30059
|
+
class: string;
|
|
30060
|
+
} | undefined;
|
|
29949
30061
|
} & {
|
|
29950
30062
|
link?: boolean | undefined;
|
|
29951
30063
|
height?: string | number | undefined;
|
|
@@ -30013,7 +30125,9 @@ declare const VListItem: {
|
|
|
30013
30125
|
rounded: string | number | boolean;
|
|
30014
30126
|
density: Density;
|
|
30015
30127
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
30016
|
-
ripple: boolean
|
|
30128
|
+
ripple: boolean | {
|
|
30129
|
+
class: string;
|
|
30130
|
+
} | undefined;
|
|
30017
30131
|
}, {}, string, vue.SlotsType<Partial<{
|
|
30018
30132
|
prepend: (arg: ListItemSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
30019
30133
|
[key: string]: any;
|
|
@@ -30093,7 +30207,9 @@ declare const VListItem: {
|
|
|
30093
30207
|
prependAvatar: StringConstructor;
|
|
30094
30208
|
prependIcon: PropType<IconValue>;
|
|
30095
30209
|
ripple: {
|
|
30096
|
-
type:
|
|
30210
|
+
type: PropType<boolean | {
|
|
30211
|
+
class: string;
|
|
30212
|
+
} | undefined>;
|
|
30097
30213
|
default: boolean;
|
|
30098
30214
|
};
|
|
30099
30215
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -30164,7 +30280,9 @@ declare const VListItem: {
|
|
|
30164
30280
|
prependAvatar: StringConstructor;
|
|
30165
30281
|
prependIcon: PropType<IconValue>;
|
|
30166
30282
|
ripple: {
|
|
30167
|
-
type:
|
|
30283
|
+
type: PropType<boolean | {
|
|
30284
|
+
class: string;
|
|
30285
|
+
} | undefined>;
|
|
30168
30286
|
default: boolean;
|
|
30169
30287
|
};
|
|
30170
30288
|
subtitle: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -46648,7 +46766,9 @@ declare const VTab: {
|
|
|
46648
46766
|
variant?: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">> | undefined;
|
|
46649
46767
|
selectedClass?: string | undefined;
|
|
46650
46768
|
stacked?: boolean | undefined;
|
|
46651
|
-
ripple?: boolean |
|
|
46769
|
+
ripple?: boolean | {
|
|
46770
|
+
class: string;
|
|
46771
|
+
} | undefined;
|
|
46652
46772
|
hideSlider?: boolean | undefined;
|
|
46653
46773
|
key?: string | number | symbol | undefined;
|
|
46654
46774
|
height?: string | number | undefined;
|
|
@@ -46748,7 +46868,9 @@ declare const VTab: {
|
|
|
46748
46868
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
46749
46869
|
selectedClass: string;
|
|
46750
46870
|
stacked: boolean;
|
|
46751
|
-
ripple: boolean
|
|
46871
|
+
ripple: boolean | {
|
|
46872
|
+
class: string;
|
|
46873
|
+
} | undefined;
|
|
46752
46874
|
hideSlider: boolean;
|
|
46753
46875
|
} & {
|
|
46754
46876
|
height?: string | number | undefined;
|
|
@@ -46795,7 +46917,9 @@ declare const VTab: {
|
|
|
46795
46917
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
46796
46918
|
selectedClass: string;
|
|
46797
46919
|
stacked: boolean;
|
|
46798
|
-
ripple: boolean
|
|
46920
|
+
ripple: boolean | {
|
|
46921
|
+
class: string;
|
|
46922
|
+
} | undefined;
|
|
46799
46923
|
hideSlider: boolean;
|
|
46800
46924
|
}, {}, string, vue.SlotsType<Partial<{
|
|
46801
46925
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -46834,7 +46958,9 @@ declare const VTab: {
|
|
|
46834
46958
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
46835
46959
|
selectedClass: string;
|
|
46836
46960
|
stacked: boolean;
|
|
46837
|
-
ripple: boolean
|
|
46961
|
+
ripple: boolean | {
|
|
46962
|
+
class: string;
|
|
46963
|
+
} | undefined;
|
|
46838
46964
|
hideSlider: boolean;
|
|
46839
46965
|
} & {
|
|
46840
46966
|
height?: string | number | undefined;
|
|
@@ -46884,7 +47010,9 @@ declare const VTab: {
|
|
|
46884
47010
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
46885
47011
|
selectedClass: string;
|
|
46886
47012
|
stacked: boolean;
|
|
46887
|
-
ripple: boolean
|
|
47013
|
+
ripple: boolean | {
|
|
47014
|
+
class: string;
|
|
47015
|
+
} | undefined;
|
|
46888
47016
|
hideSlider: boolean;
|
|
46889
47017
|
} & {
|
|
46890
47018
|
height?: string | number | undefined;
|
|
@@ -46931,7 +47059,9 @@ declare const VTab: {
|
|
|
46931
47059
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
46932
47060
|
selectedClass: string;
|
|
46933
47061
|
stacked: boolean;
|
|
46934
|
-
ripple: boolean
|
|
47062
|
+
ripple: boolean | {
|
|
47063
|
+
class: string;
|
|
47064
|
+
} | undefined;
|
|
46935
47065
|
hideSlider: boolean;
|
|
46936
47066
|
}, {}, string, vue.SlotsType<Partial<{
|
|
46937
47067
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -47004,7 +47134,9 @@ declare const VTab: {
|
|
|
47004
47134
|
appendIcon: PropType<IconValue>;
|
|
47005
47135
|
stacked: BooleanConstructor;
|
|
47006
47136
|
ripple: {
|
|
47007
|
-
type:
|
|
47137
|
+
type: PropType<boolean | {
|
|
47138
|
+
class: string;
|
|
47139
|
+
} | undefined>;
|
|
47008
47140
|
default: boolean;
|
|
47009
47141
|
};
|
|
47010
47142
|
fixed: BooleanConstructor;
|
|
@@ -47081,7 +47213,9 @@ declare const VTab: {
|
|
|
47081
47213
|
appendIcon: PropType<IconValue>;
|
|
47082
47214
|
stacked: BooleanConstructor;
|
|
47083
47215
|
ripple: {
|
|
47084
|
-
type:
|
|
47216
|
+
type: PropType<boolean | {
|
|
47217
|
+
class: string;
|
|
47218
|
+
} | undefined>;
|
|
47085
47219
|
default: boolean;
|
|
47086
47220
|
};
|
|
47087
47221
|
fixed: BooleanConstructor;
|