vuetify 3.5.7 → 3.5.8
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 +149 -1
- package/dist/json/importMap-labs.json +14 -10
- package/dist/json/importMap.json +120 -120
- package/dist/json/tags.json +42 -0
- package/dist/json/web-types.json +381 -2
- package/dist/vuetify-labs.css +1790 -1778
- package/dist/vuetify-labs.d.ts +579 -1
- package/dist/vuetify-labs.esm.js +119 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +119 -25
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +938 -934
- package/dist/vuetify.d.ts +41 -38
- package/dist/vuetify.esm.js +56 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +56 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +115 -104
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +23 -7
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.css +9 -5
- package/lib/components/VSwitch/VSwitch.mjs +2 -0
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +10 -7
- package/lib/components/VSwitch/_variables.scss +2 -0
- package/lib/composables/date/adapters/vuetify.mjs +21 -3
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/transition.mjs +7 -5
- package/lib/composables/transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -38
- package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
- package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
- package/lib/labs/VFab/VFab.css +1 -1
- package/lib/labs/VFab/VFab.sass +1 -1
- package/lib/labs/VSparkline/VBarline.mjs +4 -3
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +9 -5
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +15 -0
- package/lib/labs/VSparkline/util/line.mjs +4 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
- package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
- package/lib/labs/VSpeedDial/index.d.mts +649 -0
- package/lib/labs/VSpeedDial/index.mjs +2 -0
- package/lib/labs/VSpeedDial/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +652 -2
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, Ref, PropType, JSXComponent, ComponentInternalInstance, ComputedRef } from 'vue';
|
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, Ref, PropType, JSXComponent, ComponentInternalInstance, ComputedRef, EffectScope } from 'vue';
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
import * as vue_router from 'vue-router';
|
|
5
5
|
|
|
@@ -9,6 +9,23 @@ type Tblock = typeof block[number];
|
|
|
9
9
|
type Tinline = typeof inline[number];
|
|
10
10
|
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
|
11
11
|
|
|
12
|
+
declare class Box {
|
|
13
|
+
x: number;
|
|
14
|
+
y: number;
|
|
15
|
+
width: number;
|
|
16
|
+
height: number;
|
|
17
|
+
constructor({ x, y, width, height }: {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
});
|
|
23
|
+
get top(): number;
|
|
24
|
+
get bottom(): number;
|
|
25
|
+
get left(): number;
|
|
26
|
+
get right(): number;
|
|
27
|
+
}
|
|
28
|
+
|
|
12
29
|
type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
|
|
13
30
|
$children?: (VNodeChild | (T extends {
|
|
14
31
|
default: infer V;
|
|
@@ -2811,6 +2828,7 @@ declare const VSparkline: {
|
|
|
2811
2828
|
labels: SparklineItem[];
|
|
2812
2829
|
gradient: string[];
|
|
2813
2830
|
modelValue: SparklineItem[];
|
|
2831
|
+
itemValue: string;
|
|
2814
2832
|
autoDraw: boolean;
|
|
2815
2833
|
autoDrawEasing: string;
|
|
2816
2834
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -2855,6 +2873,7 @@ declare const VSparkline: {
|
|
|
2855
2873
|
labels: SparklineItem[];
|
|
2856
2874
|
gradient: string[];
|
|
2857
2875
|
modelValue: SparklineItem[];
|
|
2876
|
+
itemValue: string;
|
|
2858
2877
|
autoDraw: boolean;
|
|
2859
2878
|
autoDrawEasing: string;
|
|
2860
2879
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -2899,6 +2918,7 @@ declare const VSparkline: {
|
|
|
2899
2918
|
labels: SparklineItem[];
|
|
2900
2919
|
gradient: string[];
|
|
2901
2920
|
modelValue: SparklineItem[];
|
|
2921
|
+
itemValue: string;
|
|
2902
2922
|
autoDraw: boolean;
|
|
2903
2923
|
autoDrawEasing: string;
|
|
2904
2924
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -2933,6 +2953,7 @@ declare const VSparkline: {
|
|
|
2933
2953
|
labels: SparklineItem[];
|
|
2934
2954
|
gradient: string[];
|
|
2935
2955
|
modelValue: SparklineItem[];
|
|
2956
|
+
itemValue: string;
|
|
2936
2957
|
autoDraw: boolean;
|
|
2937
2958
|
autoDrawEasing: string;
|
|
2938
2959
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -2977,6 +2998,7 @@ declare const VSparkline: {
|
|
|
2977
2998
|
labels: SparklineItem[];
|
|
2978
2999
|
gradient: string[];
|
|
2979
3000
|
modelValue: SparklineItem[];
|
|
3001
|
+
itemValue: string;
|
|
2980
3002
|
autoDraw: boolean;
|
|
2981
3003
|
autoDrawEasing: string;
|
|
2982
3004
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -2998,6 +3020,7 @@ declare const VSparkline: {
|
|
|
2998
3020
|
labels: SparklineItem[];
|
|
2999
3021
|
gradient: string[];
|
|
3000
3022
|
modelValue: SparklineItem[];
|
|
3023
|
+
itemValue: string;
|
|
3001
3024
|
autoDraw: boolean;
|
|
3002
3025
|
autoDrawEasing: string;
|
|
3003
3026
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -3042,6 +3065,7 @@ declare const VSparkline: {
|
|
|
3042
3065
|
labels: SparklineItem[];
|
|
3043
3066
|
gradient: string[];
|
|
3044
3067
|
modelValue: SparklineItem[];
|
|
3068
|
+
itemValue: string;
|
|
3045
3069
|
autoDraw: boolean;
|
|
3046
3070
|
autoDrawEasing: string;
|
|
3047
3071
|
gradientDirection: "left" | "top" | "bottom" | "right";
|
|
@@ -3093,6 +3117,10 @@ declare const VSparkline: {
|
|
|
3093
3117
|
default: number;
|
|
3094
3118
|
};
|
|
3095
3119
|
id: StringConstructor;
|
|
3120
|
+
itemValue: {
|
|
3121
|
+
type: StringConstructor;
|
|
3122
|
+
default: string;
|
|
3123
|
+
};
|
|
3096
3124
|
modelValue: {
|
|
3097
3125
|
type: PropType<SparklineItem[]>;
|
|
3098
3126
|
default: () => never[];
|
|
@@ -3149,6 +3177,10 @@ declare const VSparkline: {
|
|
|
3149
3177
|
default: number;
|
|
3150
3178
|
};
|
|
3151
3179
|
id: StringConstructor;
|
|
3180
|
+
itemValue: {
|
|
3181
|
+
type: StringConstructor;
|
|
3182
|
+
default: string;
|
|
3183
|
+
};
|
|
3152
3184
|
modelValue: {
|
|
3153
3185
|
type: PropType<SparklineItem[]>;
|
|
3154
3186
|
default: () => never[];
|
|
@@ -3174,6 +3206,624 @@ declare const VSparkline: {
|
|
|
3174
3206
|
}>>;
|
|
3175
3207
|
type VSparkline = InstanceType<typeof VSparkline>;
|
|
3176
3208
|
|
|
3209
|
+
interface ScrollStrategyData {
|
|
3210
|
+
root: Ref<HTMLElement | undefined>;
|
|
3211
|
+
contentEl: Ref<HTMLElement | undefined>;
|
|
3212
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
3213
|
+
isActive: Ref<boolean>;
|
|
3214
|
+
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
3215
|
+
}
|
|
3216
|
+
type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope) => void;
|
|
3217
|
+
declare const scrollStrategies: {
|
|
3218
|
+
none: null;
|
|
3219
|
+
close: typeof closeScrollStrategy;
|
|
3220
|
+
block: typeof blockScrollStrategy;
|
|
3221
|
+
reposition: typeof repositionScrollStrategy;
|
|
3222
|
+
};
|
|
3223
|
+
interface StrategyProps$1 {
|
|
3224
|
+
scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFn;
|
|
3225
|
+
contained: boolean | undefined;
|
|
3226
|
+
}
|
|
3227
|
+
declare function closeScrollStrategy(data: ScrollStrategyData): void;
|
|
3228
|
+
declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1): void;
|
|
3229
|
+
declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps$1, scope: EffectScope): void;
|
|
3230
|
+
|
|
3231
|
+
interface LocationStrategyData {
|
|
3232
|
+
contentEl: Ref<HTMLElement | undefined>;
|
|
3233
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
3234
|
+
isActive: Ref<boolean>;
|
|
3235
|
+
isRtl: Ref<boolean>;
|
|
3236
|
+
}
|
|
3237
|
+
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
|
3238
|
+
updateLocation: (e: Event) => void;
|
|
3239
|
+
};
|
|
3240
|
+
declare const locationStrategies: {
|
|
3241
|
+
static: typeof staticLocationStrategy;
|
|
3242
|
+
connected: typeof connectedLocationStrategy;
|
|
3243
|
+
};
|
|
3244
|
+
interface StrategyProps {
|
|
3245
|
+
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
|
3246
|
+
location: Anchor;
|
|
3247
|
+
origin: Anchor | 'auto' | 'overlap';
|
|
3248
|
+
offset?: number | string | number[];
|
|
3249
|
+
maxHeight?: number | string;
|
|
3250
|
+
maxWidth?: number | string;
|
|
3251
|
+
minHeight?: number | string;
|
|
3252
|
+
minWidth?: number | string;
|
|
3253
|
+
}
|
|
3254
|
+
declare function staticLocationStrategy(): void;
|
|
3255
|
+
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>): {
|
|
3256
|
+
updateLocation: () => {
|
|
3257
|
+
available: {
|
|
3258
|
+
x: number;
|
|
3259
|
+
y: number;
|
|
3260
|
+
};
|
|
3261
|
+
contentBox: Box;
|
|
3262
|
+
} | undefined;
|
|
3263
|
+
};
|
|
3264
|
+
|
|
3265
|
+
declare const VSpeedDial: {
|
|
3266
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
3267
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3268
|
+
location: NonNullable<Anchor>;
|
|
3269
|
+
origin: "auto" | Anchor | "overlap";
|
|
3270
|
+
minWidth: NonNullable<string | number>;
|
|
3271
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3272
|
+
component?: vue.Component | undefined;
|
|
3273
|
+
})>;
|
|
3274
|
+
zIndex: string | number;
|
|
3275
|
+
style: vue.StyleValue;
|
|
3276
|
+
eager: boolean;
|
|
3277
|
+
disabled: boolean;
|
|
3278
|
+
modelValue: boolean;
|
|
3279
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3280
|
+
updateLocation: (e: Event) => void;
|
|
3281
|
+
} | undefined)>;
|
|
3282
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3283
|
+
closeDelay: NonNullable<string | number>;
|
|
3284
|
+
openDelay: NonNullable<string | number>;
|
|
3285
|
+
activatorProps: Record<string, any>;
|
|
3286
|
+
openOnHover: boolean;
|
|
3287
|
+
closeOnContentClick: boolean;
|
|
3288
|
+
closeOnBack: boolean;
|
|
3289
|
+
contained: boolean;
|
|
3290
|
+
noClickAnimation: boolean;
|
|
3291
|
+
persistent: boolean;
|
|
3292
|
+
scrim: NonNullable<string | boolean>;
|
|
3293
|
+
} & {
|
|
3294
|
+
id?: string | undefined;
|
|
3295
|
+
height?: string | number | undefined;
|
|
3296
|
+
width?: string | number | undefined;
|
|
3297
|
+
maxHeight?: string | number | undefined;
|
|
3298
|
+
maxWidth?: string | number | undefined;
|
|
3299
|
+
minHeight?: string | number | undefined;
|
|
3300
|
+
opacity?: string | number | undefined;
|
|
3301
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
3302
|
+
class?: any;
|
|
3303
|
+
theme?: string | undefined;
|
|
3304
|
+
contentClass?: any;
|
|
3305
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
3306
|
+
openOnClick?: boolean | undefined;
|
|
3307
|
+
openOnFocus?: boolean | undefined;
|
|
3308
|
+
contentProps?: any;
|
|
3309
|
+
attach?: string | boolean | Element | undefined;
|
|
3310
|
+
} & {
|
|
3311
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3312
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
3313
|
+
};
|
|
3314
|
+
'v-slots'?: {
|
|
3315
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
3316
|
+
} | undefined;
|
|
3317
|
+
} & {
|
|
3318
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3319
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
3320
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3321
|
+
location: NonNullable<Anchor>;
|
|
3322
|
+
origin: "auto" | Anchor | "overlap";
|
|
3323
|
+
minWidth: NonNullable<string | number>;
|
|
3324
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3325
|
+
component?: vue.Component | undefined;
|
|
3326
|
+
})>;
|
|
3327
|
+
zIndex: string | number;
|
|
3328
|
+
style: vue.StyleValue;
|
|
3329
|
+
eager: boolean;
|
|
3330
|
+
disabled: boolean;
|
|
3331
|
+
modelValue: boolean;
|
|
3332
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3333
|
+
updateLocation: (e: Event) => void;
|
|
3334
|
+
} | undefined)>;
|
|
3335
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3336
|
+
closeDelay: NonNullable<string | number>;
|
|
3337
|
+
openDelay: NonNullable<string | number>;
|
|
3338
|
+
activatorProps: Record<string, any>;
|
|
3339
|
+
openOnHover: boolean;
|
|
3340
|
+
closeOnContentClick: boolean;
|
|
3341
|
+
closeOnBack: boolean;
|
|
3342
|
+
contained: boolean;
|
|
3343
|
+
noClickAnimation: boolean;
|
|
3344
|
+
persistent: boolean;
|
|
3345
|
+
scrim: NonNullable<string | boolean>;
|
|
3346
|
+
} & {
|
|
3347
|
+
id?: string | undefined;
|
|
3348
|
+
height?: string | number | undefined;
|
|
3349
|
+
width?: string | number | undefined;
|
|
3350
|
+
maxHeight?: string | number | undefined;
|
|
3351
|
+
maxWidth?: string | number | undefined;
|
|
3352
|
+
minHeight?: string | number | undefined;
|
|
3353
|
+
opacity?: string | number | undefined;
|
|
3354
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
3355
|
+
class?: any;
|
|
3356
|
+
theme?: string | undefined;
|
|
3357
|
+
contentClass?: any;
|
|
3358
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
3359
|
+
openOnClick?: boolean | undefined;
|
|
3360
|
+
openOnFocus?: boolean | undefined;
|
|
3361
|
+
contentProps?: any;
|
|
3362
|
+
attach?: string | boolean | Element | undefined;
|
|
3363
|
+
} & {
|
|
3364
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3365
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
3366
|
+
};
|
|
3367
|
+
'v-slots'?: {
|
|
3368
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
3369
|
+
} | undefined;
|
|
3370
|
+
} & {
|
|
3371
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3372
|
+
}, {
|
|
3373
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3374
|
+
location: NonNullable<Anchor>;
|
|
3375
|
+
origin: "auto" | Anchor | "overlap";
|
|
3376
|
+
minWidth: NonNullable<string | number>;
|
|
3377
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3378
|
+
component?: vue.Component | undefined;
|
|
3379
|
+
})>;
|
|
3380
|
+
zIndex: string | number;
|
|
3381
|
+
style: vue.StyleValue;
|
|
3382
|
+
eager: boolean;
|
|
3383
|
+
disabled: boolean;
|
|
3384
|
+
modelValue: boolean;
|
|
3385
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3386
|
+
updateLocation: (e: Event) => void;
|
|
3387
|
+
} | undefined)>;
|
|
3388
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3389
|
+
closeDelay: NonNullable<string | number>;
|
|
3390
|
+
openDelay: NonNullable<string | number>;
|
|
3391
|
+
activatorProps: Record<string, any>;
|
|
3392
|
+
openOnClick: boolean;
|
|
3393
|
+
openOnHover: boolean;
|
|
3394
|
+
openOnFocus: boolean;
|
|
3395
|
+
closeOnContentClick: boolean;
|
|
3396
|
+
closeOnBack: boolean;
|
|
3397
|
+
contained: boolean;
|
|
3398
|
+
noClickAnimation: boolean;
|
|
3399
|
+
persistent: boolean;
|
|
3400
|
+
scrim: NonNullable<string | boolean>;
|
|
3401
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
3402
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3403
|
+
[key: string]: any;
|
|
3404
|
+
}>[];
|
|
3405
|
+
}>>, {
|
|
3406
|
+
P: {};
|
|
3407
|
+
B: {};
|
|
3408
|
+
D: {};
|
|
3409
|
+
C: {};
|
|
3410
|
+
M: {};
|
|
3411
|
+
Defaults: {};
|
|
3412
|
+
}, {
|
|
3413
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3414
|
+
location: NonNullable<Anchor>;
|
|
3415
|
+
origin: "auto" | Anchor | "overlap";
|
|
3416
|
+
minWidth: NonNullable<string | number>;
|
|
3417
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3418
|
+
component?: vue.Component | undefined;
|
|
3419
|
+
})>;
|
|
3420
|
+
zIndex: string | number;
|
|
3421
|
+
style: vue.StyleValue;
|
|
3422
|
+
eager: boolean;
|
|
3423
|
+
disabled: boolean;
|
|
3424
|
+
modelValue: boolean;
|
|
3425
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3426
|
+
updateLocation: (e: Event) => void;
|
|
3427
|
+
} | undefined)>;
|
|
3428
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3429
|
+
closeDelay: NonNullable<string | number>;
|
|
3430
|
+
openDelay: NonNullable<string | number>;
|
|
3431
|
+
activatorProps: Record<string, any>;
|
|
3432
|
+
openOnHover: boolean;
|
|
3433
|
+
closeOnContentClick: boolean;
|
|
3434
|
+
closeOnBack: boolean;
|
|
3435
|
+
contained: boolean;
|
|
3436
|
+
noClickAnimation: boolean;
|
|
3437
|
+
persistent: boolean;
|
|
3438
|
+
scrim: NonNullable<string | boolean>;
|
|
3439
|
+
} & {
|
|
3440
|
+
id?: string | undefined;
|
|
3441
|
+
height?: string | number | undefined;
|
|
3442
|
+
width?: string | number | undefined;
|
|
3443
|
+
maxHeight?: string | number | undefined;
|
|
3444
|
+
maxWidth?: string | number | undefined;
|
|
3445
|
+
minHeight?: string | number | undefined;
|
|
3446
|
+
opacity?: string | number | undefined;
|
|
3447
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
3448
|
+
class?: any;
|
|
3449
|
+
theme?: string | undefined;
|
|
3450
|
+
contentClass?: any;
|
|
3451
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
3452
|
+
openOnClick?: boolean | undefined;
|
|
3453
|
+
openOnFocus?: boolean | undefined;
|
|
3454
|
+
contentProps?: any;
|
|
3455
|
+
attach?: string | boolean | Element | undefined;
|
|
3456
|
+
} & {
|
|
3457
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3458
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
3459
|
+
};
|
|
3460
|
+
'v-slots'?: {
|
|
3461
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
3462
|
+
} | undefined;
|
|
3463
|
+
} & {
|
|
3464
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3465
|
+
}, {}, {}, {}, {}, {
|
|
3466
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3467
|
+
location: NonNullable<Anchor>;
|
|
3468
|
+
origin: "auto" | Anchor | "overlap";
|
|
3469
|
+
minWidth: NonNullable<string | number>;
|
|
3470
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3471
|
+
component?: vue.Component | undefined;
|
|
3472
|
+
})>;
|
|
3473
|
+
zIndex: string | number;
|
|
3474
|
+
style: vue.StyleValue;
|
|
3475
|
+
eager: boolean;
|
|
3476
|
+
disabled: boolean;
|
|
3477
|
+
modelValue: boolean;
|
|
3478
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3479
|
+
updateLocation: (e: Event) => void;
|
|
3480
|
+
} | undefined)>;
|
|
3481
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3482
|
+
closeDelay: NonNullable<string | number>;
|
|
3483
|
+
openDelay: NonNullable<string | number>;
|
|
3484
|
+
activatorProps: Record<string, any>;
|
|
3485
|
+
openOnClick: boolean;
|
|
3486
|
+
openOnHover: boolean;
|
|
3487
|
+
openOnFocus: boolean;
|
|
3488
|
+
closeOnContentClick: boolean;
|
|
3489
|
+
closeOnBack: boolean;
|
|
3490
|
+
contained: boolean;
|
|
3491
|
+
noClickAnimation: boolean;
|
|
3492
|
+
persistent: boolean;
|
|
3493
|
+
scrim: NonNullable<string | boolean>;
|
|
3494
|
+
}>;
|
|
3495
|
+
__isFragment?: undefined;
|
|
3496
|
+
__isTeleport?: undefined;
|
|
3497
|
+
__isSuspense?: undefined;
|
|
3498
|
+
} & vue.ComponentOptionsBase<{
|
|
3499
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3500
|
+
location: NonNullable<Anchor>;
|
|
3501
|
+
origin: "auto" | Anchor | "overlap";
|
|
3502
|
+
minWidth: NonNullable<string | number>;
|
|
3503
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3504
|
+
component?: vue.Component | undefined;
|
|
3505
|
+
})>;
|
|
3506
|
+
zIndex: string | number;
|
|
3507
|
+
style: vue.StyleValue;
|
|
3508
|
+
eager: boolean;
|
|
3509
|
+
disabled: boolean;
|
|
3510
|
+
modelValue: boolean;
|
|
3511
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3512
|
+
updateLocation: (e: Event) => void;
|
|
3513
|
+
} | undefined)>;
|
|
3514
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3515
|
+
closeDelay: NonNullable<string | number>;
|
|
3516
|
+
openDelay: NonNullable<string | number>;
|
|
3517
|
+
activatorProps: Record<string, any>;
|
|
3518
|
+
openOnHover: boolean;
|
|
3519
|
+
closeOnContentClick: boolean;
|
|
3520
|
+
closeOnBack: boolean;
|
|
3521
|
+
contained: boolean;
|
|
3522
|
+
noClickAnimation: boolean;
|
|
3523
|
+
persistent: boolean;
|
|
3524
|
+
scrim: NonNullable<string | boolean>;
|
|
3525
|
+
} & {
|
|
3526
|
+
id?: string | undefined;
|
|
3527
|
+
height?: string | number | undefined;
|
|
3528
|
+
width?: string | number | undefined;
|
|
3529
|
+
maxHeight?: string | number | undefined;
|
|
3530
|
+
maxWidth?: string | number | undefined;
|
|
3531
|
+
minHeight?: string | number | undefined;
|
|
3532
|
+
opacity?: string | number | undefined;
|
|
3533
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
3534
|
+
class?: any;
|
|
3535
|
+
theme?: string | undefined;
|
|
3536
|
+
contentClass?: any;
|
|
3537
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
3538
|
+
openOnClick?: boolean | undefined;
|
|
3539
|
+
openOnFocus?: boolean | undefined;
|
|
3540
|
+
contentProps?: any;
|
|
3541
|
+
attach?: string | boolean | Element | undefined;
|
|
3542
|
+
} & {
|
|
3543
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3544
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
3545
|
+
};
|
|
3546
|
+
'v-slots'?: {
|
|
3547
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
3548
|
+
} | undefined;
|
|
3549
|
+
} & {
|
|
3550
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3551
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
3552
|
+
offset: NonNullable<string | number | number[] | undefined>;
|
|
3553
|
+
location: NonNullable<Anchor>;
|
|
3554
|
+
origin: "auto" | Anchor | "overlap";
|
|
3555
|
+
minWidth: NonNullable<string | number>;
|
|
3556
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3557
|
+
component?: vue.Component | undefined;
|
|
3558
|
+
})>;
|
|
3559
|
+
zIndex: string | number;
|
|
3560
|
+
style: vue.StyleValue;
|
|
3561
|
+
eager: boolean;
|
|
3562
|
+
disabled: boolean;
|
|
3563
|
+
modelValue: boolean;
|
|
3564
|
+
locationStrategy: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3565
|
+
updateLocation: (e: Event) => void;
|
|
3566
|
+
} | undefined)>;
|
|
3567
|
+
scrollStrategy: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3568
|
+
closeDelay: NonNullable<string | number>;
|
|
3569
|
+
openDelay: NonNullable<string | number>;
|
|
3570
|
+
activatorProps: Record<string, any>;
|
|
3571
|
+
openOnClick: boolean;
|
|
3572
|
+
openOnHover: boolean;
|
|
3573
|
+
openOnFocus: boolean;
|
|
3574
|
+
closeOnContentClick: boolean;
|
|
3575
|
+
closeOnBack: boolean;
|
|
3576
|
+
contained: boolean;
|
|
3577
|
+
noClickAnimation: boolean;
|
|
3578
|
+
persistent: boolean;
|
|
3579
|
+
scrim: NonNullable<string | boolean>;
|
|
3580
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
3581
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3582
|
+
[key: string]: any;
|
|
3583
|
+
}>[];
|
|
3584
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
3585
|
+
transition: Omit<{
|
|
3586
|
+
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
3587
|
+
component?: vue.Component | undefined;
|
|
3588
|
+
})>;
|
|
3589
|
+
default: string;
|
|
3590
|
+
validator: (val: unknown) => boolean;
|
|
3591
|
+
}, "type" | "default"> & {
|
|
3592
|
+
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3593
|
+
component?: vue.Component | undefined;
|
|
3594
|
+
})>>;
|
|
3595
|
+
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3596
|
+
component?: vue.Component | undefined;
|
|
3597
|
+
})>;
|
|
3598
|
+
};
|
|
3599
|
+
offset: {
|
|
3600
|
+
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
|
3601
|
+
default: NonNullable<string | number | number[] | undefined>;
|
|
3602
|
+
};
|
|
3603
|
+
location: Omit<{
|
|
3604
|
+
type: vue.PropType<Anchor>;
|
|
3605
|
+
default: string;
|
|
3606
|
+
}, "type" | "default"> & {
|
|
3607
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
3608
|
+
default: NonNullable<Anchor>;
|
|
3609
|
+
};
|
|
3610
|
+
origin: {
|
|
3611
|
+
type: vue.PropType<"auto" | Anchor | "overlap">;
|
|
3612
|
+
default: string;
|
|
3613
|
+
};
|
|
3614
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
3615
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
3616
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
3617
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
3618
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
3619
|
+
minWidth: {
|
|
3620
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3621
|
+
default: NonNullable<string | number>;
|
|
3622
|
+
};
|
|
3623
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
3624
|
+
zIndex: {
|
|
3625
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3626
|
+
default: number;
|
|
3627
|
+
};
|
|
3628
|
+
style: {
|
|
3629
|
+
type: vue.PropType<vue.StyleValue>;
|
|
3630
|
+
default: null;
|
|
3631
|
+
};
|
|
3632
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
3633
|
+
eager: BooleanConstructor;
|
|
3634
|
+
disabled: BooleanConstructor;
|
|
3635
|
+
class: vue.PropType<any>;
|
|
3636
|
+
theme: StringConstructor;
|
|
3637
|
+
contentClass: null;
|
|
3638
|
+
modelValue: BooleanConstructor;
|
|
3639
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
3640
|
+
locationStrategy: Omit<{
|
|
3641
|
+
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3642
|
+
updateLocation: (e: Event) => void;
|
|
3643
|
+
} | undefined)>;
|
|
3644
|
+
default: string;
|
|
3645
|
+
validator: (val: any) => boolean;
|
|
3646
|
+
}, "type" | "default"> & {
|
|
3647
|
+
type: vue.PropType<NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3648
|
+
updateLocation: (e: Event) => void;
|
|
3649
|
+
} | undefined)>>;
|
|
3650
|
+
default: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3651
|
+
updateLocation: (e: Event) => void;
|
|
3652
|
+
} | undefined)>;
|
|
3653
|
+
};
|
|
3654
|
+
scrollStrategy: Omit<{
|
|
3655
|
+
type: vue.PropType<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3656
|
+
default: string;
|
|
3657
|
+
validator: (val: any) => boolean;
|
|
3658
|
+
}, "type" | "default"> & {
|
|
3659
|
+
type: vue.PropType<NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">>;
|
|
3660
|
+
default: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3661
|
+
};
|
|
3662
|
+
closeDelay: {
|
|
3663
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3664
|
+
default: NonNullable<string | number>;
|
|
3665
|
+
};
|
|
3666
|
+
openDelay: {
|
|
3667
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3668
|
+
default: NonNullable<string | number>;
|
|
3669
|
+
};
|
|
3670
|
+
activatorProps: {
|
|
3671
|
+
type: vue.PropType<Record<string, any>>;
|
|
3672
|
+
default: () => {};
|
|
3673
|
+
};
|
|
3674
|
+
openOnClick: {
|
|
3675
|
+
type: BooleanConstructor;
|
|
3676
|
+
default: undefined;
|
|
3677
|
+
};
|
|
3678
|
+
openOnHover: BooleanConstructor;
|
|
3679
|
+
openOnFocus: {
|
|
3680
|
+
type: BooleanConstructor;
|
|
3681
|
+
default: undefined;
|
|
3682
|
+
};
|
|
3683
|
+
closeOnContentClick: {
|
|
3684
|
+
type: vue.PropType<boolean>;
|
|
3685
|
+
default: boolean;
|
|
3686
|
+
};
|
|
3687
|
+
closeOnBack: {
|
|
3688
|
+
type: BooleanConstructor;
|
|
3689
|
+
default: boolean;
|
|
3690
|
+
};
|
|
3691
|
+
contained: BooleanConstructor;
|
|
3692
|
+
contentProps: null;
|
|
3693
|
+
noClickAnimation: BooleanConstructor;
|
|
3694
|
+
persistent: BooleanConstructor;
|
|
3695
|
+
scrim: Omit<{
|
|
3696
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3697
|
+
default: boolean;
|
|
3698
|
+
}, "type" | "default"> & {
|
|
3699
|
+
type: vue.PropType<NonNullable<string | boolean>>;
|
|
3700
|
+
default: NonNullable<string | boolean>;
|
|
3701
|
+
};
|
|
3702
|
+
attach: vue.PropType<string | boolean | Element>;
|
|
3703
|
+
id: StringConstructor;
|
|
3704
|
+
}, vue.ExtractPropTypes<{
|
|
3705
|
+
transition: Omit<{
|
|
3706
|
+
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
3707
|
+
component?: vue.Component | undefined;
|
|
3708
|
+
})>;
|
|
3709
|
+
default: string;
|
|
3710
|
+
validator: (val: unknown) => boolean;
|
|
3711
|
+
}, "type" | "default"> & {
|
|
3712
|
+
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3713
|
+
component?: vue.Component | undefined;
|
|
3714
|
+
})>>;
|
|
3715
|
+
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
3716
|
+
component?: vue.Component | undefined;
|
|
3717
|
+
})>;
|
|
3718
|
+
};
|
|
3719
|
+
offset: {
|
|
3720
|
+
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
|
3721
|
+
default: NonNullable<string | number | number[] | undefined>;
|
|
3722
|
+
};
|
|
3723
|
+
location: Omit<{
|
|
3724
|
+
type: vue.PropType<Anchor>;
|
|
3725
|
+
default: string;
|
|
3726
|
+
}, "type" | "default"> & {
|
|
3727
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
3728
|
+
default: NonNullable<Anchor>;
|
|
3729
|
+
};
|
|
3730
|
+
origin: {
|
|
3731
|
+
type: vue.PropType<"auto" | Anchor | "overlap">;
|
|
3732
|
+
default: string;
|
|
3733
|
+
};
|
|
3734
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
3735
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
3736
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
3737
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
3738
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
3739
|
+
minWidth: {
|
|
3740
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3741
|
+
default: NonNullable<string | number>;
|
|
3742
|
+
};
|
|
3743
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
3744
|
+
zIndex: {
|
|
3745
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3746
|
+
default: number;
|
|
3747
|
+
};
|
|
3748
|
+
style: {
|
|
3749
|
+
type: vue.PropType<vue.StyleValue>;
|
|
3750
|
+
default: null;
|
|
3751
|
+
};
|
|
3752
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
3753
|
+
eager: BooleanConstructor;
|
|
3754
|
+
disabled: BooleanConstructor;
|
|
3755
|
+
class: vue.PropType<any>;
|
|
3756
|
+
theme: StringConstructor;
|
|
3757
|
+
contentClass: null;
|
|
3758
|
+
modelValue: BooleanConstructor;
|
|
3759
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
3760
|
+
locationStrategy: Omit<{
|
|
3761
|
+
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3762
|
+
updateLocation: (e: Event) => void;
|
|
3763
|
+
} | undefined)>;
|
|
3764
|
+
default: string;
|
|
3765
|
+
validator: (val: any) => boolean;
|
|
3766
|
+
}, "type" | "default"> & {
|
|
3767
|
+
type: vue.PropType<NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3768
|
+
updateLocation: (e: Event) => void;
|
|
3769
|
+
} | undefined)>>;
|
|
3770
|
+
default: NonNullable<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
3771
|
+
updateLocation: (e: Event) => void;
|
|
3772
|
+
} | undefined)>;
|
|
3773
|
+
};
|
|
3774
|
+
scrollStrategy: Omit<{
|
|
3775
|
+
type: vue.PropType<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3776
|
+
default: string;
|
|
3777
|
+
validator: (val: any) => boolean;
|
|
3778
|
+
}, "type" | "default"> & {
|
|
3779
|
+
type: vue.PropType<NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">>;
|
|
3780
|
+
default: NonNullable<"none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps$1, scope: vue.EffectScope) => void) | "reposition">;
|
|
3781
|
+
};
|
|
3782
|
+
closeDelay: {
|
|
3783
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3784
|
+
default: NonNullable<string | number>;
|
|
3785
|
+
};
|
|
3786
|
+
openDelay: {
|
|
3787
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
3788
|
+
default: NonNullable<string | number>;
|
|
3789
|
+
};
|
|
3790
|
+
activatorProps: {
|
|
3791
|
+
type: vue.PropType<Record<string, any>>;
|
|
3792
|
+
default: () => {};
|
|
3793
|
+
};
|
|
3794
|
+
openOnClick: {
|
|
3795
|
+
type: BooleanConstructor;
|
|
3796
|
+
default: undefined;
|
|
3797
|
+
};
|
|
3798
|
+
openOnHover: BooleanConstructor;
|
|
3799
|
+
openOnFocus: {
|
|
3800
|
+
type: BooleanConstructor;
|
|
3801
|
+
default: undefined;
|
|
3802
|
+
};
|
|
3803
|
+
closeOnContentClick: {
|
|
3804
|
+
type: vue.PropType<boolean>;
|
|
3805
|
+
default: boolean;
|
|
3806
|
+
};
|
|
3807
|
+
closeOnBack: {
|
|
3808
|
+
type: BooleanConstructor;
|
|
3809
|
+
default: boolean;
|
|
3810
|
+
};
|
|
3811
|
+
contained: BooleanConstructor;
|
|
3812
|
+
contentProps: null;
|
|
3813
|
+
noClickAnimation: BooleanConstructor;
|
|
3814
|
+
persistent: BooleanConstructor;
|
|
3815
|
+
scrim: Omit<{
|
|
3816
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3817
|
+
default: boolean;
|
|
3818
|
+
}, "type" | "default"> & {
|
|
3819
|
+
type: vue.PropType<NonNullable<string | boolean>>;
|
|
3820
|
+
default: NonNullable<string | boolean>;
|
|
3821
|
+
};
|
|
3822
|
+
attach: vue.PropType<string | boolean | Element>;
|
|
3823
|
+
id: StringConstructor;
|
|
3824
|
+
}>>;
|
|
3825
|
+
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
|
3826
|
+
|
|
3177
3827
|
declare const VEmptyState: {
|
|
3178
3828
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
3179
3829
|
style: vue.StyleValue;
|
|
@@ -3578,4 +4228,4 @@ declare const VEmptyState: {
|
|
|
3578
4228
|
}>>;
|
|
3579
4229
|
type VEmptyState = InstanceType<typeof VEmptyState>;
|
|
3580
4230
|
|
|
3581
|
-
export { VCalendar, VCalendarDay, VCalendarHeader, VCalendarInterval, VCalendarIntervalEvent, VCalendarMonthDay, VConfirmEdit, VEmptyState, VFab, VPicker, VPickerTitle, VSparkline };
|
|
4231
|
+
export { VCalendar, VCalendarDay, VCalendarHeader, VCalendarInterval, VCalendarIntervalEvent, VCalendarMonthDay, VConfirmEdit, VEmptyState, VFab, VPicker, VPickerTitle, VSparkline, VSpeedDial };
|