@vuetify/nightly 3.7.6-master.2025-01-15 → 3.7.6-master.2025-01-16
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 +3190 -3190
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +6252 -6232
- package/dist/vuetify-labs.css +2912 -2909
- package/dist/vuetify-labs.d.ts +129 -104
- package/dist/vuetify-labs.esm.js +53 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3437 -3434
- package/dist/vuetify.d.ts +62 -65
- package/dist/vuetify.esm.js +33 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +33 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +29 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.css +5 -2
- package/lib/components/VDialog/VDialog.sass +6 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs +12 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSparkline/VBarline.mjs +3 -2
- package/lib/components/VSparkline/VBarline.mjs.map +1 -1
- package/lib/components/VSparkline/VTrendline.mjs +2 -1
- package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/components/VSparkline/index.d.mts +7 -10
- package/lib/components/VSparkline/util/line.mjs +1 -1
- package/lib/components/VSparkline/util/line.mjs.map +1 -1
- package/lib/components/index.d.mts +7 -10
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +55 -55
- package/lib/labs/VDateInput/VDateInput.mjs +19 -5
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +176 -97
- package/lib/labs/components.d.mts +227 -199
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding, ComputedRef,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, Ref, DirectiveBinding, ComputedRef, nextTick, EffectScope } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -1828,6 +1828,45 @@ type JSXComponent<Props = any> = {
|
|
1828
1828
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
1829
1829
|
declare const IconValue: PropType<IconValue>;
|
1830
1830
|
|
1831
|
+
interface LocationStrategyData {
|
1832
|
+
contentEl: Ref<HTMLElement | undefined>;
|
1833
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
1834
|
+
isActive: Ref<boolean>;
|
1835
|
+
isRtl: Ref<boolean>;
|
1836
|
+
}
|
1837
|
+
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
1838
|
+
updateLocation: (e?: Event) => void;
|
1839
|
+
};
|
1840
|
+
declare const locationStrategies: {
|
1841
|
+
static: typeof staticLocationStrategy;
|
1842
|
+
connected: typeof connectedLocationStrategy;
|
1843
|
+
};
|
1844
|
+
interface StrategyProps$1 {
|
1845
|
+
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
1846
|
+
location: Anchor;
|
1847
|
+
origin: Anchor | 'auto' | 'overlap';
|
1848
|
+
offset?: number | string | number[];
|
1849
|
+
maxHeight?: number | string;
|
1850
|
+
maxWidth?: number | string;
|
1851
|
+
minHeight?: number | string;
|
1852
|
+
minWidth?: number | string;
|
1853
|
+
}
|
1854
|
+
declare function staticLocationStrategy(): void;
|
1855
|
+
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>): {
|
1856
|
+
updateLocation: () => {
|
1857
|
+
available: {
|
1858
|
+
x: number;
|
1859
|
+
y: number;
|
1860
|
+
};
|
1861
|
+
contentBox: Box;
|
1862
|
+
} | undefined;
|
1863
|
+
};
|
1864
|
+
|
1865
|
+
type VDateInputActionsSlot = {
|
1866
|
+
save: () => void;
|
1867
|
+
cancel: () => void;
|
1868
|
+
isPristine: boolean;
|
1869
|
+
};
|
1831
1870
|
declare const VDateInput: {
|
1832
1871
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
1833
1872
|
flat: boolean;
|
@@ -1835,6 +1874,7 @@ declare const VDateInput: {
|
|
1835
1874
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
1836
1875
|
type: string;
|
1837
1876
|
error: boolean;
|
1877
|
+
location: Anchor;
|
1838
1878
|
active: boolean;
|
1839
1879
|
direction: "horizontal" | "vertical";
|
1840
1880
|
transition: string;
|
@@ -1881,7 +1921,6 @@ declare const VDateInput: {
|
|
1881
1921
|
} & {
|
1882
1922
|
name?: string | undefined;
|
1883
1923
|
max?: unknown;
|
1884
|
-
location?: Anchor | null | undefined;
|
1885
1924
|
id?: string | undefined;
|
1886
1925
|
height?: string | number | undefined;
|
1887
1926
|
width?: string | number | undefined;
|
@@ -1930,13 +1969,16 @@ declare const VDateInput: {
|
|
1930
1969
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
1931
1970
|
displayValue?: unknown;
|
1932
1971
|
} & {
|
1933
|
-
$children?: vue.VNodeChild | {
|
1972
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1973
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
1934
1974
|
default?: (() => vue.VNodeChild) | undefined;
|
1935
|
-
}
|
1975
|
+
};
|
1936
1976
|
'v-slots'?: {
|
1977
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
1937
1978
|
default?: false | (() => vue.VNodeChild) | undefined;
|
1938
1979
|
} | undefined;
|
1939
1980
|
} & {
|
1981
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
1940
1982
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
1941
1983
|
} & {
|
1942
1984
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -1948,6 +1990,7 @@ declare const VDateInput: {
|
|
1948
1990
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
1949
1991
|
type: string;
|
1950
1992
|
error: boolean;
|
1993
|
+
location: Anchor;
|
1951
1994
|
active: boolean;
|
1952
1995
|
direction: "horizontal" | "vertical";
|
1953
1996
|
transition: string;
|
@@ -1994,7 +2037,6 @@ declare const VDateInput: {
|
|
1994
2037
|
} & {
|
1995
2038
|
name?: string | undefined;
|
1996
2039
|
max?: unknown;
|
1997
|
-
location?: Anchor | null | undefined;
|
1998
2040
|
id?: string | undefined;
|
1999
2041
|
height?: string | number | undefined;
|
2000
2042
|
width?: string | number | undefined;
|
@@ -2043,13 +2085,16 @@ declare const VDateInput: {
|
|
2043
2085
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2044
2086
|
displayValue?: unknown;
|
2045
2087
|
} & {
|
2046
|
-
$children?: vue.VNodeChild | {
|
2088
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2089
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2047
2090
|
default?: (() => vue.VNodeChild) | undefined;
|
2048
|
-
}
|
2091
|
+
};
|
2049
2092
|
'v-slots'?: {
|
2093
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2050
2094
|
default?: false | (() => vue.VNodeChild) | undefined;
|
2051
2095
|
} | undefined;
|
2052
2096
|
} & {
|
2097
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2053
2098
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
2054
2099
|
} & {
|
2055
2100
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -2059,6 +2104,7 @@ declare const VDateInput: {
|
|
2059
2104
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
2060
2105
|
type: string;
|
2061
2106
|
error: boolean;
|
2107
|
+
location: Anchor;
|
2062
2108
|
active: boolean;
|
2063
2109
|
direction: "horizontal" | "vertical";
|
2064
2110
|
transition: string;
|
@@ -2105,6 +2151,7 @@ declare const VDateInput: {
|
|
2105
2151
|
hideHeader: boolean;
|
2106
2152
|
hideActions: boolean;
|
2107
2153
|
}, true, {}, vue.SlotsType<Partial<{
|
2154
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
2108
2155
|
default: () => vue.VNode[];
|
2109
2156
|
}>>, {
|
2110
2157
|
P: {};
|
@@ -2119,6 +2166,7 @@ declare const VDateInput: {
|
|
2119
2166
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
2120
2167
|
type: string;
|
2121
2168
|
error: boolean;
|
2169
|
+
location: Anchor;
|
2122
2170
|
active: boolean;
|
2123
2171
|
direction: "horizontal" | "vertical";
|
2124
2172
|
transition: string;
|
@@ -2165,7 +2213,6 @@ declare const VDateInput: {
|
|
2165
2213
|
} & {
|
2166
2214
|
name?: string | undefined;
|
2167
2215
|
max?: unknown;
|
2168
|
-
location?: Anchor | null | undefined;
|
2169
2216
|
id?: string | undefined;
|
2170
2217
|
height?: string | number | undefined;
|
2171
2218
|
width?: string | number | undefined;
|
@@ -2214,13 +2261,16 @@ declare const VDateInput: {
|
|
2214
2261
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2215
2262
|
displayValue?: unknown;
|
2216
2263
|
} & {
|
2217
|
-
$children?: vue.VNodeChild | {
|
2264
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2265
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2218
2266
|
default?: (() => vue.VNodeChild) | undefined;
|
2219
|
-
}
|
2267
|
+
};
|
2220
2268
|
'v-slots'?: {
|
2269
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2221
2270
|
default?: false | (() => vue.VNodeChild) | undefined;
|
2222
2271
|
} | undefined;
|
2223
2272
|
} & {
|
2273
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2224
2274
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
2225
2275
|
} & {
|
2226
2276
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -2230,6 +2280,7 @@ declare const VDateInput: {
|
|
2230
2280
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
2231
2281
|
type: string;
|
2232
2282
|
error: boolean;
|
2283
|
+
location: Anchor;
|
2233
2284
|
active: boolean;
|
2234
2285
|
direction: "horizontal" | "vertical";
|
2235
2286
|
transition: string;
|
@@ -2285,6 +2336,7 @@ declare const VDateInput: {
|
|
2285
2336
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
2286
2337
|
type: string;
|
2287
2338
|
error: boolean;
|
2339
|
+
location: Anchor;
|
2288
2340
|
active: boolean;
|
2289
2341
|
direction: "horizontal" | "vertical";
|
2290
2342
|
transition: string;
|
@@ -2331,7 +2383,6 @@ declare const VDateInput: {
|
|
2331
2383
|
} & {
|
2332
2384
|
name?: string | undefined;
|
2333
2385
|
max?: unknown;
|
2334
|
-
location?: Anchor | null | undefined;
|
2335
2386
|
id?: string | undefined;
|
2336
2387
|
height?: string | number | undefined;
|
2337
2388
|
width?: string | number | undefined;
|
@@ -2380,13 +2431,16 @@ declare const VDateInput: {
|
|
2380
2431
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
2381
2432
|
displayValue?: unknown;
|
2382
2433
|
} & {
|
2383
|
-
$children?: vue.VNodeChild | {
|
2434
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
2435
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2384
2436
|
default?: (() => vue.VNodeChild) | undefined;
|
2385
|
-
}
|
2437
|
+
};
|
2386
2438
|
'v-slots'?: {
|
2439
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2387
2440
|
default?: false | (() => vue.VNodeChild) | undefined;
|
2388
2441
|
} | undefined;
|
2389
2442
|
} & {
|
2443
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
2390
2444
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
2391
2445
|
} & {
|
2392
2446
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -2398,6 +2452,7 @@ declare const VDateInput: {
|
|
2398
2452
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
2399
2453
|
type: string;
|
2400
2454
|
error: boolean;
|
2455
|
+
location: Anchor;
|
2401
2456
|
active: boolean;
|
2402
2457
|
direction: "horizontal" | "vertical";
|
2403
2458
|
transition: string;
|
@@ -2444,13 +2499,13 @@ declare const VDateInput: {
|
|
2444
2499
|
hideHeader: boolean;
|
2445
2500
|
hideActions: boolean;
|
2446
2501
|
}, {}, string, vue.SlotsType<Partial<{
|
2502
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
2447
2503
|
default: () => vue.VNode[];
|
2448
2504
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
2449
|
-
max:
|
2450
|
-
location: vue.PropType<Anchor | null>;
|
2505
|
+
max: PropType<unknown>;
|
2451
2506
|
height: (StringConstructor | NumberConstructor)[];
|
2452
2507
|
width: (StringConstructor | NumberConstructor)[];
|
2453
|
-
min:
|
2508
|
+
min: PropType<unknown>;
|
2454
2509
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2455
2510
|
color: StringConstructor;
|
2456
2511
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -2458,7 +2513,7 @@ declare const VDateInput: {
|
|
2458
2513
|
minHeight: (StringConstructor | NumberConstructor)[];
|
2459
2514
|
minWidth: (StringConstructor | NumberConstructor)[];
|
2460
2515
|
position: {
|
2461
|
-
type:
|
2516
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
2462
2517
|
validator: (v: any) => boolean;
|
2463
2518
|
};
|
2464
2519
|
transition: {
|
@@ -2470,19 +2525,19 @@ declare const VDateInput: {
|
|
2470
2525
|
default: string;
|
2471
2526
|
};
|
2472
2527
|
style: {
|
2473
|
-
type:
|
2528
|
+
type: PropType<vue.StyleValue>;
|
2474
2529
|
default: null;
|
2475
2530
|
};
|
2476
2531
|
title: {
|
2477
|
-
type:
|
2532
|
+
type: PropType<string>;
|
2478
2533
|
default: string;
|
2479
2534
|
};
|
2480
2535
|
text: StringConstructor;
|
2481
2536
|
disabled: BooleanConstructor;
|
2482
|
-
multiple:
|
2537
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
2483
2538
|
month: (StringConstructor | NumberConstructor)[];
|
2484
2539
|
year: NumberConstructor;
|
2485
|
-
class:
|
2540
|
+
class: PropType<ClassValue>;
|
2486
2541
|
theme: StringConstructor;
|
2487
2542
|
tag: {
|
2488
2543
|
type: StringConstructor;
|
@@ -2501,11 +2556,11 @@ declare const VDateInput: {
|
|
2501
2556
|
tile: BooleanConstructor;
|
2502
2557
|
bgColor: StringConstructor;
|
2503
2558
|
nextIcon: {
|
2504
|
-
type:
|
2559
|
+
type: PropType<IconValue>;
|
2505
2560
|
default: string;
|
2506
2561
|
};
|
2507
2562
|
prevIcon: {
|
2508
|
-
type:
|
2563
|
+
type: PropType<IconValue>;
|
2509
2564
|
default: string;
|
2510
2565
|
};
|
2511
2566
|
reverseTransition: {
|
@@ -2513,11 +2568,11 @@ declare const VDateInput: {
|
|
2513
2568
|
default: string;
|
2514
2569
|
};
|
2515
2570
|
modeIcon: {
|
2516
|
-
type:
|
2571
|
+
type: PropType<IconValue>;
|
2517
2572
|
default: string;
|
2518
2573
|
};
|
2519
2574
|
viewMode: {
|
2520
|
-
type:
|
2575
|
+
type: PropType<"month" | "months" | "year">;
|
2521
2576
|
default: string;
|
2522
2577
|
};
|
2523
2578
|
showAdjacentMonths: BooleanConstructor;
|
@@ -2541,29 +2596,29 @@ declare const VDateInput: {
|
|
2541
2596
|
default: () => number[];
|
2542
2597
|
};
|
2543
2598
|
weeksInMonth: Omit<Omit<{
|
2544
|
-
type:
|
2599
|
+
type: PropType<"dynamic" | "static">;
|
2545
2600
|
default: string;
|
2546
2601
|
}, "type" | "default"> & {
|
2547
|
-
type:
|
2602
|
+
type: PropType<"static" | "dynamic">;
|
2548
2603
|
default: NonNullable<"static" | "dynamic">;
|
2549
2604
|
}, "type" | "default"> & {
|
2550
|
-
type:
|
2605
|
+
type: PropType<"static" | "dynamic">;
|
2551
2606
|
default: NonNullable<"static" | "dynamic">;
|
2552
2607
|
};
|
2553
2608
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
2554
|
-
allowedDates:
|
2555
|
-
displayValue:
|
2609
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
2610
|
+
displayValue: PropType<unknown>;
|
2556
2611
|
hideWeekdays: BooleanConstructor;
|
2557
2612
|
showWeek: BooleanConstructor;
|
2558
2613
|
hideHeader: {
|
2559
|
-
type:
|
2614
|
+
type: PropType<boolean>;
|
2560
2615
|
default: boolean;
|
2561
2616
|
};
|
2562
2617
|
loading: (StringConstructor | BooleanConstructor)[];
|
2563
|
-
appendInnerIcon:
|
2618
|
+
appendInnerIcon: PropType<IconValue>;
|
2564
2619
|
clearable: BooleanConstructor;
|
2565
2620
|
clearIcon: {
|
2566
|
-
type:
|
2621
|
+
type: PropType<IconValue>;
|
2567
2622
|
default: string;
|
2568
2623
|
};
|
2569
2624
|
active: BooleanConstructor;
|
@@ -2577,21 +2632,21 @@ declare const VDateInput: {
|
|
2577
2632
|
flat: BooleanConstructor;
|
2578
2633
|
label: StringConstructor;
|
2579
2634
|
persistentClear: BooleanConstructor;
|
2580
|
-
prependInnerIcon:
|
2635
|
+
prependInnerIcon: PropType<IconValue>;
|
2581
2636
|
reverse: BooleanConstructor;
|
2582
2637
|
singleLine: BooleanConstructor;
|
2583
2638
|
variant: {
|
2584
|
-
type:
|
2639
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
2585
2640
|
default: string;
|
2586
2641
|
validator: (v: any) => boolean;
|
2587
2642
|
};
|
2588
|
-
'onClick:clear':
|
2589
|
-
'onClick:appendInner':
|
2590
|
-
'onClick:prependInner':
|
2643
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
2644
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
2645
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
2591
2646
|
focused: BooleanConstructor;
|
2592
|
-
'onUpdate:focused':
|
2647
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
2593
2648
|
errorMessages: {
|
2594
|
-
type:
|
2649
|
+
type: PropType<string | readonly string[] | null>;
|
2595
2650
|
default: () => never[];
|
2596
2651
|
};
|
2597
2652
|
maxErrors: {
|
@@ -2600,47 +2655,47 @@ declare const VDateInput: {
|
|
2600
2655
|
};
|
2601
2656
|
name: StringConstructor;
|
2602
2657
|
readonly: {
|
2603
|
-
type:
|
2658
|
+
type: PropType<boolean | null>;
|
2604
2659
|
default: null;
|
2605
2660
|
};
|
2606
2661
|
rules: {
|
2607
|
-
type:
|
2662
|
+
type: PropType<readonly ValidationRule$1[]>;
|
2608
2663
|
default: () => never[];
|
2609
2664
|
};
|
2610
|
-
validateOn:
|
2665
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
2611
2666
|
validationValue: null;
|
2612
2667
|
density: {
|
2613
|
-
type:
|
2668
|
+
type: PropType<Density>;
|
2614
2669
|
default: string;
|
2615
2670
|
validator: (v: any) => boolean;
|
2616
2671
|
};
|
2617
2672
|
id: StringConstructor;
|
2618
|
-
appendIcon:
|
2673
|
+
appendIcon: PropType<IconValue>;
|
2619
2674
|
prependIcon: {
|
2620
|
-
type:
|
2675
|
+
type: PropType<IconValue>;
|
2621
2676
|
default: NonNullable<IconValue>;
|
2622
2677
|
};
|
2623
|
-
hideDetails:
|
2678
|
+
hideDetails: PropType<boolean | "auto">;
|
2624
2679
|
hideSpinButtons: BooleanConstructor;
|
2625
2680
|
hint: StringConstructor;
|
2626
2681
|
persistentHint: BooleanConstructor;
|
2627
2682
|
messages: {
|
2628
|
-
type:
|
2683
|
+
type: PropType<string | readonly string[]>;
|
2629
2684
|
default: () => never[];
|
2630
2685
|
};
|
2631
2686
|
direction: {
|
2632
|
-
type:
|
2687
|
+
type: PropType<"horizontal" | "vertical">;
|
2633
2688
|
default: string;
|
2634
2689
|
validator: (v: any) => boolean;
|
2635
2690
|
};
|
2636
|
-
'onClick:prepend':
|
2637
|
-
'onClick:append':
|
2691
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
2692
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
2638
2693
|
autofocus: BooleanConstructor;
|
2639
2694
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2640
|
-
counterValue:
|
2695
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
2641
2696
|
prefix: StringConstructor;
|
2642
2697
|
placeholder: {
|
2643
|
-
type:
|
2698
|
+
type: PropType<string>;
|
2644
2699
|
default: string;
|
2645
2700
|
};
|
2646
2701
|
persistentPlaceholder: BooleanConstructor;
|
@@ -2651,7 +2706,7 @@ declare const VDateInput: {
|
|
2651
2706
|
type: StringConstructor;
|
2652
2707
|
default: string;
|
2653
2708
|
};
|
2654
|
-
modelModifiers:
|
2709
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
2655
2710
|
cancelText: {
|
2656
2711
|
type: StringConstructor;
|
2657
2712
|
default: string;
|
@@ -2661,12 +2716,15 @@ declare const VDateInput: {
|
|
2661
2716
|
default: string;
|
2662
2717
|
};
|
2663
2718
|
hideActions: BooleanConstructor;
|
2719
|
+
location: {
|
2720
|
+
type: PropType<StrategyProps$1["location"]>;
|
2721
|
+
default: string;
|
2722
|
+
};
|
2664
2723
|
}, vue.ExtractPropTypes<{
|
2665
|
-
max:
|
2666
|
-
location: vue.PropType<Anchor | null>;
|
2724
|
+
max: PropType<unknown>;
|
2667
2725
|
height: (StringConstructor | NumberConstructor)[];
|
2668
2726
|
width: (StringConstructor | NumberConstructor)[];
|
2669
|
-
min:
|
2727
|
+
min: PropType<unknown>;
|
2670
2728
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2671
2729
|
color: StringConstructor;
|
2672
2730
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -2674,7 +2732,7 @@ declare const VDateInput: {
|
|
2674
2732
|
minHeight: (StringConstructor | NumberConstructor)[];
|
2675
2733
|
minWidth: (StringConstructor | NumberConstructor)[];
|
2676
2734
|
position: {
|
2677
|
-
type:
|
2735
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
2678
2736
|
validator: (v: any) => boolean;
|
2679
2737
|
};
|
2680
2738
|
transition: {
|
@@ -2686,19 +2744,19 @@ declare const VDateInput: {
|
|
2686
2744
|
default: string;
|
2687
2745
|
};
|
2688
2746
|
style: {
|
2689
|
-
type:
|
2747
|
+
type: PropType<vue.StyleValue>;
|
2690
2748
|
default: null;
|
2691
2749
|
};
|
2692
2750
|
title: {
|
2693
|
-
type:
|
2751
|
+
type: PropType<string>;
|
2694
2752
|
default: string;
|
2695
2753
|
};
|
2696
2754
|
text: StringConstructor;
|
2697
2755
|
disabled: BooleanConstructor;
|
2698
|
-
multiple:
|
2756
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
2699
2757
|
month: (StringConstructor | NumberConstructor)[];
|
2700
2758
|
year: NumberConstructor;
|
2701
|
-
class:
|
2759
|
+
class: PropType<ClassValue>;
|
2702
2760
|
theme: StringConstructor;
|
2703
2761
|
tag: {
|
2704
2762
|
type: StringConstructor;
|
@@ -2717,11 +2775,11 @@ declare const VDateInput: {
|
|
2717
2775
|
tile: BooleanConstructor;
|
2718
2776
|
bgColor: StringConstructor;
|
2719
2777
|
nextIcon: {
|
2720
|
-
type:
|
2778
|
+
type: PropType<IconValue>;
|
2721
2779
|
default: string;
|
2722
2780
|
};
|
2723
2781
|
prevIcon: {
|
2724
|
-
type:
|
2782
|
+
type: PropType<IconValue>;
|
2725
2783
|
default: string;
|
2726
2784
|
};
|
2727
2785
|
reverseTransition: {
|
@@ -2729,11 +2787,11 @@ declare const VDateInput: {
|
|
2729
2787
|
default: string;
|
2730
2788
|
};
|
2731
2789
|
modeIcon: {
|
2732
|
-
type:
|
2790
|
+
type: PropType<IconValue>;
|
2733
2791
|
default: string;
|
2734
2792
|
};
|
2735
2793
|
viewMode: {
|
2736
|
-
type:
|
2794
|
+
type: PropType<"month" | "months" | "year">;
|
2737
2795
|
default: string;
|
2738
2796
|
};
|
2739
2797
|
showAdjacentMonths: BooleanConstructor;
|
@@ -2757,29 +2815,29 @@ declare const VDateInput: {
|
|
2757
2815
|
default: () => number[];
|
2758
2816
|
};
|
2759
2817
|
weeksInMonth: Omit<Omit<{
|
2760
|
-
type:
|
2818
|
+
type: PropType<"dynamic" | "static">;
|
2761
2819
|
default: string;
|
2762
2820
|
}, "type" | "default"> & {
|
2763
|
-
type:
|
2821
|
+
type: PropType<"static" | "dynamic">;
|
2764
2822
|
default: NonNullable<"static" | "dynamic">;
|
2765
2823
|
}, "type" | "default"> & {
|
2766
|
-
type:
|
2824
|
+
type: PropType<"static" | "dynamic">;
|
2767
2825
|
default: NonNullable<"static" | "dynamic">;
|
2768
2826
|
};
|
2769
2827
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
2770
|
-
allowedDates:
|
2771
|
-
displayValue:
|
2828
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
2829
|
+
displayValue: PropType<unknown>;
|
2772
2830
|
hideWeekdays: BooleanConstructor;
|
2773
2831
|
showWeek: BooleanConstructor;
|
2774
2832
|
hideHeader: {
|
2775
|
-
type:
|
2833
|
+
type: PropType<boolean>;
|
2776
2834
|
default: boolean;
|
2777
2835
|
};
|
2778
2836
|
loading: (StringConstructor | BooleanConstructor)[];
|
2779
|
-
appendInnerIcon:
|
2837
|
+
appendInnerIcon: PropType<IconValue>;
|
2780
2838
|
clearable: BooleanConstructor;
|
2781
2839
|
clearIcon: {
|
2782
|
-
type:
|
2840
|
+
type: PropType<IconValue>;
|
2783
2841
|
default: string;
|
2784
2842
|
};
|
2785
2843
|
active: BooleanConstructor;
|
@@ -2793,21 +2851,21 @@ declare const VDateInput: {
|
|
2793
2851
|
flat: BooleanConstructor;
|
2794
2852
|
label: StringConstructor;
|
2795
2853
|
persistentClear: BooleanConstructor;
|
2796
|
-
prependInnerIcon:
|
2854
|
+
prependInnerIcon: PropType<IconValue>;
|
2797
2855
|
reverse: BooleanConstructor;
|
2798
2856
|
singleLine: BooleanConstructor;
|
2799
2857
|
variant: {
|
2800
|
-
type:
|
2858
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
2801
2859
|
default: string;
|
2802
2860
|
validator: (v: any) => boolean;
|
2803
2861
|
};
|
2804
|
-
'onClick:clear':
|
2805
|
-
'onClick:appendInner':
|
2806
|
-
'onClick:prependInner':
|
2862
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
2863
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
2864
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
2807
2865
|
focused: BooleanConstructor;
|
2808
|
-
'onUpdate:focused':
|
2866
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
2809
2867
|
errorMessages: {
|
2810
|
-
type:
|
2868
|
+
type: PropType<string | readonly string[] | null>;
|
2811
2869
|
default: () => never[];
|
2812
2870
|
};
|
2813
2871
|
maxErrors: {
|
@@ -2816,47 +2874,47 @@ declare const VDateInput: {
|
|
2816
2874
|
};
|
2817
2875
|
name: StringConstructor;
|
2818
2876
|
readonly: {
|
2819
|
-
type:
|
2877
|
+
type: PropType<boolean | null>;
|
2820
2878
|
default: null;
|
2821
2879
|
};
|
2822
2880
|
rules: {
|
2823
|
-
type:
|
2881
|
+
type: PropType<readonly ValidationRule$1[]>;
|
2824
2882
|
default: () => never[];
|
2825
2883
|
};
|
2826
|
-
validateOn:
|
2884
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
2827
2885
|
validationValue: null;
|
2828
2886
|
density: {
|
2829
|
-
type:
|
2887
|
+
type: PropType<Density>;
|
2830
2888
|
default: string;
|
2831
2889
|
validator: (v: any) => boolean;
|
2832
2890
|
};
|
2833
2891
|
id: StringConstructor;
|
2834
|
-
appendIcon:
|
2892
|
+
appendIcon: PropType<IconValue>;
|
2835
2893
|
prependIcon: {
|
2836
|
-
type:
|
2894
|
+
type: PropType<IconValue>;
|
2837
2895
|
default: NonNullable<IconValue>;
|
2838
2896
|
};
|
2839
|
-
hideDetails:
|
2897
|
+
hideDetails: PropType<boolean | "auto">;
|
2840
2898
|
hideSpinButtons: BooleanConstructor;
|
2841
2899
|
hint: StringConstructor;
|
2842
2900
|
persistentHint: BooleanConstructor;
|
2843
2901
|
messages: {
|
2844
|
-
type:
|
2902
|
+
type: PropType<string | readonly string[]>;
|
2845
2903
|
default: () => never[];
|
2846
2904
|
};
|
2847
2905
|
direction: {
|
2848
|
-
type:
|
2906
|
+
type: PropType<"horizontal" | "vertical">;
|
2849
2907
|
default: string;
|
2850
2908
|
validator: (v: any) => boolean;
|
2851
2909
|
};
|
2852
|
-
'onClick:prepend':
|
2853
|
-
'onClick:append':
|
2910
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
2911
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
2854
2912
|
autofocus: BooleanConstructor;
|
2855
2913
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
2856
|
-
counterValue:
|
2914
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
2857
2915
|
prefix: StringConstructor;
|
2858
2916
|
placeholder: {
|
2859
|
-
type:
|
2917
|
+
type: PropType<string>;
|
2860
2918
|
default: string;
|
2861
2919
|
};
|
2862
2920
|
persistentPlaceholder: BooleanConstructor;
|
@@ -2867,7 +2925,7 @@ declare const VDateInput: {
|
|
2867
2925
|
type: StringConstructor;
|
2868
2926
|
default: string;
|
2869
2927
|
};
|
2870
|
-
modelModifiers:
|
2928
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
2871
2929
|
cancelText: {
|
2872
2930
|
type: StringConstructor;
|
2873
2931
|
default: string;
|
@@ -2877,6 +2935,10 @@ declare const VDateInput: {
|
|
2877
2935
|
default: string;
|
2878
2936
|
};
|
2879
2937
|
hideActions: BooleanConstructor;
|
2938
|
+
location: {
|
2939
|
+
type: PropType<StrategyProps$1["location"]>;
|
2940
|
+
default: string;
|
2941
|
+
};
|
2880
2942
|
}>>;
|
2881
2943
|
type VDateInput = InstanceType<typeof VDateInput>;
|
2882
2944
|
|
@@ -11765,54 +11827,20 @@ interface ScrollStrategyData {
|
|
11765
11827
|
isActive: Ref<boolean>;
|
11766
11828
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
11767
11829
|
}
|
11768
|
-
type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps
|
11830
|
+
type ScrollStrategyFn = (data: ScrollStrategyData, props: StrategyProps, scope: EffectScope) => void;
|
11769
11831
|
declare const scrollStrategies: {
|
11770
11832
|
none: null;
|
11771
11833
|
close: typeof closeScrollStrategy;
|
11772
11834
|
block: typeof blockScrollStrategy;
|
11773
11835
|
reposition: typeof repositionScrollStrategy;
|
11774
11836
|
};
|
11775
|
-
interface StrategyProps
|
11837
|
+
interface StrategyProps {
|
11776
11838
|
scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFn;
|
11777
11839
|
contained: boolean | undefined;
|
11778
11840
|
}
|
11779
11841
|
declare function closeScrollStrategy(data: ScrollStrategyData): void;
|
11780
|
-
declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps
|
11781
|
-
declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps
|
11782
|
-
|
11783
|
-
interface LocationStrategyData {
|
11784
|
-
contentEl: Ref<HTMLElement | undefined>;
|
11785
|
-
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
11786
|
-
isActive: Ref<boolean>;
|
11787
|
-
isRtl: Ref<boolean>;
|
11788
|
-
}
|
11789
|
-
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
11790
|
-
updateLocation: (e?: Event) => void;
|
11791
|
-
};
|
11792
|
-
declare const locationStrategies: {
|
11793
|
-
static: typeof staticLocationStrategy;
|
11794
|
-
connected: typeof connectedLocationStrategy;
|
11795
|
-
};
|
11796
|
-
interface StrategyProps {
|
11797
|
-
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
11798
|
-
location: Anchor;
|
11799
|
-
origin: Anchor | 'auto' | 'overlap';
|
11800
|
-
offset?: number | string | number[];
|
11801
|
-
maxHeight?: number | string;
|
11802
|
-
maxWidth?: number | string;
|
11803
|
-
minHeight?: number | string;
|
11804
|
-
minWidth?: number | string;
|
11805
|
-
}
|
11806
|
-
declare function staticLocationStrategy(): void;
|
11807
|
-
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>): {
|
11808
|
-
updateLocation: () => {
|
11809
|
-
available: {
|
11810
|
-
x: number;
|
11811
|
-
y: number;
|
11812
|
-
};
|
11813
|
-
contentBox: Box;
|
11814
|
-
} | undefined;
|
11815
|
-
};
|
11842
|
+
declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps): void;
|
11843
|
+
declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps, scope: EffectScope): void;
|
11816
11844
|
|
11817
11845
|
type ActiveStrategyFn = (data: {
|
11818
11846
|
id: unknown;
|
@@ -11909,7 +11937,7 @@ declare const VSnackbar: {
|
|
11909
11937
|
vertical: boolean;
|
11910
11938
|
modelValue: boolean;
|
11911
11939
|
tile: boolean;
|
11912
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
11940
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
11913
11941
|
updateLocation: (e?: Event) => void;
|
11914
11942
|
});
|
11915
11943
|
activatorProps: Record<string, any>;
|
@@ -11994,10 +12022,10 @@ declare const VSnackbar: {
|
|
11994
12022
|
disabled: boolean;
|
11995
12023
|
persistent: boolean;
|
11996
12024
|
modelValue: boolean;
|
11997
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12025
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
11998
12026
|
updateLocation: (e?: Event) => void;
|
11999
12027
|
});
|
12000
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12028
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12001
12029
|
activatorProps: Record<string, any>;
|
12002
12030
|
openOnClick: boolean;
|
12003
12031
|
openOnHover: boolean;
|
@@ -12021,10 +12049,10 @@ declare const VSnackbar: {
|
|
12021
12049
|
disabled: boolean;
|
12022
12050
|
persistent: boolean;
|
12023
12051
|
modelValue: boolean;
|
12024
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12052
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12025
12053
|
updateLocation: (e?: Event) => void;
|
12026
12054
|
});
|
12027
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12055
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12028
12056
|
activatorProps: Record<string, any>;
|
12029
12057
|
openOnHover: boolean;
|
12030
12058
|
closeOnContentClick: boolean;
|
@@ -12099,10 +12127,10 @@ declare const VSnackbar: {
|
|
12099
12127
|
disabled: boolean;
|
12100
12128
|
persistent: boolean;
|
12101
12129
|
modelValue: boolean;
|
12102
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12130
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12103
12131
|
updateLocation: (e?: Event) => void;
|
12104
12132
|
});
|
12105
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12133
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12106
12134
|
activatorProps: Record<string, any>;
|
12107
12135
|
openOnHover: boolean;
|
12108
12136
|
closeOnContentClick: boolean;
|
@@ -12202,10 +12230,10 @@ declare const VSnackbar: {
|
|
12202
12230
|
disabled: boolean;
|
12203
12231
|
persistent: boolean;
|
12204
12232
|
modelValue: boolean;
|
12205
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12233
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12206
12234
|
updateLocation: (e?: Event) => void;
|
12207
12235
|
});
|
12208
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12236
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12209
12237
|
activatorProps: Record<string, any>;
|
12210
12238
|
openOnHover: boolean;
|
12211
12239
|
closeOnContentClick: boolean;
|
@@ -12298,10 +12326,10 @@ declare const VSnackbar: {
|
|
12298
12326
|
disabled: boolean;
|
12299
12327
|
persistent: boolean;
|
12300
12328
|
modelValue: boolean;
|
12301
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12329
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12302
12330
|
updateLocation: (e?: Event) => void;
|
12303
12331
|
});
|
12304
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12332
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12305
12333
|
activatorProps: Record<string, any>;
|
12306
12334
|
openOnClick: boolean;
|
12307
12335
|
openOnHover: boolean;
|
@@ -12354,10 +12382,10 @@ declare const VSnackbar: {
|
|
12354
12382
|
disabled: boolean;
|
12355
12383
|
persistent: boolean;
|
12356
12384
|
modelValue: boolean;
|
12357
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12385
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12358
12386
|
updateLocation: (e?: Event) => void;
|
12359
12387
|
});
|
12360
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12388
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12361
12389
|
activatorProps: Record<string, any>;
|
12362
12390
|
openOnHover: boolean;
|
12363
12391
|
closeOnContentClick: boolean;
|
@@ -12461,7 +12489,7 @@ declare const VSnackbar: {
|
|
12461
12489
|
vertical: boolean;
|
12462
12490
|
modelValue: boolean;
|
12463
12491
|
tile: boolean;
|
12464
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12492
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12465
12493
|
updateLocation: (e?: Event) => void;
|
12466
12494
|
});
|
12467
12495
|
activatorProps: Record<string, any>;
|
@@ -12547,7 +12575,7 @@ declare const VSnackbar: {
|
|
12547
12575
|
modelValue: boolean;
|
12548
12576
|
rounded: string | number | boolean;
|
12549
12577
|
tile: boolean;
|
12550
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12578
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12551
12579
|
updateLocation: (e?: Event) => void;
|
12552
12580
|
});
|
12553
12581
|
activatorProps: Record<string, any>;
|
@@ -12591,7 +12619,7 @@ declare const VSnackbar: {
|
|
12591
12619
|
vertical: boolean;
|
12592
12620
|
modelValue: boolean;
|
12593
12621
|
tile: boolean;
|
12594
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12622
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12595
12623
|
updateLocation: (e?: Event) => void;
|
12596
12624
|
});
|
12597
12625
|
activatorProps: Record<string, any>;
|
@@ -12676,10 +12704,10 @@ declare const VSnackbar: {
|
|
12676
12704
|
disabled: boolean;
|
12677
12705
|
persistent: boolean;
|
12678
12706
|
modelValue: boolean;
|
12679
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12707
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12680
12708
|
updateLocation: (e?: Event) => void;
|
12681
12709
|
});
|
12682
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12710
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12683
12711
|
activatorProps: Record<string, any>;
|
12684
12712
|
openOnClick: boolean;
|
12685
12713
|
openOnHover: boolean;
|
@@ -12703,10 +12731,10 @@ declare const VSnackbar: {
|
|
12703
12731
|
disabled: boolean;
|
12704
12732
|
persistent: boolean;
|
12705
12733
|
modelValue: boolean;
|
12706
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12734
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12707
12735
|
updateLocation: (e?: Event) => void;
|
12708
12736
|
});
|
12709
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12737
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12710
12738
|
activatorProps: Record<string, any>;
|
12711
12739
|
openOnHover: boolean;
|
12712
12740
|
closeOnContentClick: boolean;
|
@@ -12781,10 +12809,10 @@ declare const VSnackbar: {
|
|
12781
12809
|
disabled: boolean;
|
12782
12810
|
persistent: boolean;
|
12783
12811
|
modelValue: boolean;
|
12784
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12812
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12785
12813
|
updateLocation: (e?: Event) => void;
|
12786
12814
|
});
|
12787
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12815
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12788
12816
|
activatorProps: Record<string, any>;
|
12789
12817
|
openOnHover: boolean;
|
12790
12818
|
closeOnContentClick: boolean;
|
@@ -12884,10 +12912,10 @@ declare const VSnackbar: {
|
|
12884
12912
|
disabled: boolean;
|
12885
12913
|
persistent: boolean;
|
12886
12914
|
modelValue: boolean;
|
12887
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12915
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12888
12916
|
updateLocation: (e?: Event) => void;
|
12889
12917
|
});
|
12890
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
12918
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12891
12919
|
activatorProps: Record<string, any>;
|
12892
12920
|
openOnHover: boolean;
|
12893
12921
|
closeOnContentClick: boolean;
|
@@ -12980,10 +13008,10 @@ declare const VSnackbar: {
|
|
12980
13008
|
disabled: boolean;
|
12981
13009
|
persistent: boolean;
|
12982
13010
|
modelValue: boolean;
|
12983
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13011
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
12984
13012
|
updateLocation: (e?: Event) => void;
|
12985
13013
|
});
|
12986
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13014
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
12987
13015
|
activatorProps: Record<string, any>;
|
12988
13016
|
openOnClick: boolean;
|
12989
13017
|
openOnHover: boolean;
|
@@ -13036,10 +13064,10 @@ declare const VSnackbar: {
|
|
13036
13064
|
disabled: boolean;
|
13037
13065
|
persistent: boolean;
|
13038
13066
|
modelValue: boolean;
|
13039
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13067
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13040
13068
|
updateLocation: (e?: Event) => void;
|
13041
13069
|
});
|
13042
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13070
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13043
13071
|
activatorProps: Record<string, any>;
|
13044
13072
|
openOnHover: boolean;
|
13045
13073
|
closeOnContentClick: boolean;
|
@@ -13142,7 +13170,7 @@ declare const VSnackbar: {
|
|
13142
13170
|
modelValue: boolean;
|
13143
13171
|
rounded: string | number | boolean;
|
13144
13172
|
tile: boolean;
|
13145
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13173
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13146
13174
|
updateLocation: (e?: Event) => void;
|
13147
13175
|
});
|
13148
13176
|
activatorProps: Record<string, any>;
|
@@ -13173,7 +13201,7 @@ declare const VSnackbar: {
|
|
13173
13201
|
vertical: boolean;
|
13174
13202
|
modelValue: boolean;
|
13175
13203
|
tile: boolean;
|
13176
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13204
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13177
13205
|
updateLocation: (e?: Event) => void;
|
13178
13206
|
});
|
13179
13207
|
activatorProps: Record<string, any>;
|
@@ -13258,10 +13286,10 @@ declare const VSnackbar: {
|
|
13258
13286
|
disabled: boolean;
|
13259
13287
|
persistent: boolean;
|
13260
13288
|
modelValue: boolean;
|
13261
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13289
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13262
13290
|
updateLocation: (e?: Event) => void;
|
13263
13291
|
});
|
13264
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13292
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13265
13293
|
activatorProps: Record<string, any>;
|
13266
13294
|
openOnClick: boolean;
|
13267
13295
|
openOnHover: boolean;
|
@@ -13285,10 +13313,10 @@ declare const VSnackbar: {
|
|
13285
13313
|
disabled: boolean;
|
13286
13314
|
persistent: boolean;
|
13287
13315
|
modelValue: boolean;
|
13288
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13316
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13289
13317
|
updateLocation: (e?: Event) => void;
|
13290
13318
|
});
|
13291
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13319
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13292
13320
|
activatorProps: Record<string, any>;
|
13293
13321
|
openOnHover: boolean;
|
13294
13322
|
closeOnContentClick: boolean;
|
@@ -13363,10 +13391,10 @@ declare const VSnackbar: {
|
|
13363
13391
|
disabled: boolean;
|
13364
13392
|
persistent: boolean;
|
13365
13393
|
modelValue: boolean;
|
13366
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13394
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13367
13395
|
updateLocation: (e?: Event) => void;
|
13368
13396
|
});
|
13369
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13397
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13370
13398
|
activatorProps: Record<string, any>;
|
13371
13399
|
openOnHover: boolean;
|
13372
13400
|
closeOnContentClick: boolean;
|
@@ -13466,10 +13494,10 @@ declare const VSnackbar: {
|
|
13466
13494
|
disabled: boolean;
|
13467
13495
|
persistent: boolean;
|
13468
13496
|
modelValue: boolean;
|
13469
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13497
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13470
13498
|
updateLocation: (e?: Event) => void;
|
13471
13499
|
});
|
13472
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13500
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13473
13501
|
activatorProps: Record<string, any>;
|
13474
13502
|
openOnHover: boolean;
|
13475
13503
|
closeOnContentClick: boolean;
|
@@ -13562,10 +13590,10 @@ declare const VSnackbar: {
|
|
13562
13590
|
disabled: boolean;
|
13563
13591
|
persistent: boolean;
|
13564
13592
|
modelValue: boolean;
|
13565
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13593
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13566
13594
|
updateLocation: (e?: Event) => void;
|
13567
13595
|
});
|
13568
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13596
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13569
13597
|
activatorProps: Record<string, any>;
|
13570
13598
|
openOnClick: boolean;
|
13571
13599
|
openOnHover: boolean;
|
@@ -13618,10 +13646,10 @@ declare const VSnackbar: {
|
|
13618
13646
|
disabled: boolean;
|
13619
13647
|
persistent: boolean;
|
13620
13648
|
modelValue: boolean;
|
13621
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13649
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13622
13650
|
updateLocation: (e?: Event) => void;
|
13623
13651
|
});
|
13624
|
-
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps
|
13652
|
+
scrollStrategy: "none" | "block" | "close" | ((data: ScrollStrategyData, props: StrategyProps, scope: vue.EffectScope) => void) | "reposition";
|
13625
13653
|
activatorProps: Record<string, any>;
|
13626
13654
|
openOnHover: boolean;
|
13627
13655
|
closeOnContentClick: boolean;
|
@@ -13726,7 +13754,7 @@ declare const VSnackbar: {
|
|
13726
13754
|
modelValue: boolean;
|
13727
13755
|
rounded: string | number | boolean;
|
13728
13756
|
tile: boolean;
|
13729
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13757
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
13730
13758
|
updateLocation: (e?: Event) => void;
|
13731
13759
|
});
|
13732
13760
|
activatorProps: Record<string, any>;
|
@@ -13748,14 +13776,14 @@ declare const VSnackbar: {
|
|
13748
13776
|
}) => vue.VNode[];
|
13749
13777
|
text: () => vue.VNode[];
|
13750
13778
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
13751
|
-
offset: vue.PropType<StrategyProps["offset"]>;
|
13779
|
+
offset: vue.PropType<StrategyProps$1["offset"]>;
|
13752
13780
|
absolute: BooleanConstructor;
|
13753
13781
|
location: {
|
13754
|
-
type: vue.PropType<StrategyProps["location"]>;
|
13782
|
+
type: vue.PropType<StrategyProps$1["location"]>;
|
13755
13783
|
default: string;
|
13756
13784
|
};
|
13757
13785
|
origin: {
|
13758
|
-
type: vue.PropType<StrategyProps["origin"]>;
|
13786
|
+
type: vue.PropType<StrategyProps$1["origin"]>;
|
13759
13787
|
default: string;
|
13760
13788
|
};
|
13761
13789
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -13796,7 +13824,7 @@ declare const VSnackbar: {
|
|
13796
13824
|
contentClass: null;
|
13797
13825
|
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
13798
13826
|
locationStrategy: {
|
13799
|
-
type: vue.PropType<StrategyProps["locationStrategy"]>;
|
13827
|
+
type: vue.PropType<StrategyProps$1["locationStrategy"]>;
|
13800
13828
|
default: string;
|
13801
13829
|
validator: (val: any) => boolean;
|
13802
13830
|
};
|
@@ -13847,14 +13875,14 @@ declare const VSnackbar: {
|
|
13847
13875
|
};
|
13848
13876
|
vertical: BooleanConstructor;
|
13849
13877
|
}, vue.ExtractPropTypes<{
|
13850
|
-
offset: vue.PropType<StrategyProps["offset"]>;
|
13878
|
+
offset: vue.PropType<StrategyProps$1["offset"]>;
|
13851
13879
|
absolute: BooleanConstructor;
|
13852
13880
|
location: {
|
13853
|
-
type: vue.PropType<StrategyProps["location"]>;
|
13881
|
+
type: vue.PropType<StrategyProps$1["location"]>;
|
13854
13882
|
default: string;
|
13855
13883
|
};
|
13856
13884
|
origin: {
|
13857
|
-
type: vue.PropType<StrategyProps["origin"]>;
|
13885
|
+
type: vue.PropType<StrategyProps$1["origin"]>;
|
13858
13886
|
default: string;
|
13859
13887
|
};
|
13860
13888
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -13895,7 +13923,7 @@ declare const VSnackbar: {
|
|
13895
13923
|
contentClass: null;
|
13896
13924
|
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
13897
13925
|
locationStrategy: {
|
13898
|
-
type: vue.PropType<StrategyProps["locationStrategy"]>;
|
13926
|
+
type: vue.PropType<StrategyProps$1["locationStrategy"]>;
|
13899
13927
|
default: string;
|
13900
13928
|
validator: (val: any) => boolean;
|
13901
13929
|
};
|
@@ -15700,7 +15728,7 @@ declare const VSnackbarQueue: {
|
|
15700
15728
|
timeout: string | number;
|
15701
15729
|
vertical: boolean;
|
15702
15730
|
tile: boolean;
|
15703
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15731
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15704
15732
|
updateLocation: (e?: Event) => void;
|
15705
15733
|
});
|
15706
15734
|
activatorProps: Record<string, any>;
|
@@ -15753,7 +15781,7 @@ declare const VSnackbarQueue: {
|
|
15753
15781
|
timeout: string | number;
|
15754
15782
|
vertical: boolean;
|
15755
15783
|
tile: boolean;
|
15756
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15784
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15757
15785
|
updateLocation: (e?: Event) => void;
|
15758
15786
|
});
|
15759
15787
|
activatorProps: Record<string, any>;
|
@@ -15805,7 +15833,7 @@ declare const VSnackbarQueue: {
|
|
15805
15833
|
vertical: boolean;
|
15806
15834
|
rounded: string | number | boolean;
|
15807
15835
|
tile: boolean;
|
15808
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15836
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15809
15837
|
updateLocation: (e?: Event) => void;
|
15810
15838
|
});
|
15811
15839
|
activatorProps: Record<string, any>;
|
@@ -15852,7 +15880,7 @@ declare const VSnackbarQueue: {
|
|
15852
15880
|
timeout: string | number;
|
15853
15881
|
vertical: boolean;
|
15854
15882
|
tile: boolean;
|
15855
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15883
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15856
15884
|
updateLocation: (e?: Event) => void;
|
15857
15885
|
});
|
15858
15886
|
activatorProps: Record<string, any>;
|
@@ -15904,7 +15932,7 @@ declare const VSnackbarQueue: {
|
|
15904
15932
|
vertical: boolean;
|
15905
15933
|
rounded: string | number | boolean;
|
15906
15934
|
tile: boolean;
|
15907
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15935
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15908
15936
|
updateLocation: (e?: Event) => void;
|
15909
15937
|
});
|
15910
15938
|
activatorProps: Record<string, any>;
|
@@ -15935,7 +15963,7 @@ declare const VSnackbarQueue: {
|
|
15935
15963
|
timeout: string | number;
|
15936
15964
|
vertical: boolean;
|
15937
15965
|
tile: boolean;
|
15938
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15966
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15939
15967
|
updateLocation: (e?: Event) => void;
|
15940
15968
|
});
|
15941
15969
|
activatorProps: Record<string, any>;
|
@@ -15989,7 +16017,7 @@ declare const VSnackbarQueue: {
|
|
15989
16017
|
vertical: boolean;
|
15990
16018
|
rounded: string | number | boolean;
|
15991
16019
|
tile: boolean;
|
15992
|
-
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
16020
|
+
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
15993
16021
|
updateLocation: (e?: Event) => void;
|
15994
16022
|
});
|
15995
16023
|
activatorProps: Record<string, any>;
|
@@ -16023,14 +16051,14 @@ declare const VSnackbarQueue: {
|
|
16023
16051
|
default: string;
|
16024
16052
|
validator: (v: any) => boolean;
|
16025
16053
|
};
|
16026
|
-
offset: PropType<StrategyProps["offset"]>;
|
16054
|
+
offset: PropType<StrategyProps$1["offset"]>;
|
16027
16055
|
absolute: BooleanConstructor;
|
16028
16056
|
location: {
|
16029
|
-
type: PropType<StrategyProps["location"]>;
|
16057
|
+
type: PropType<StrategyProps$1["location"]>;
|
16030
16058
|
default: string;
|
16031
16059
|
};
|
16032
16060
|
origin: {
|
16033
|
-
type: PropType<StrategyProps["origin"]>;
|
16061
|
+
type: PropType<StrategyProps$1["origin"]>;
|
16034
16062
|
default: string;
|
16035
16063
|
};
|
16036
16064
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -16087,7 +16115,7 @@ declare const VSnackbarQueue: {
|
|
16087
16115
|
tile: BooleanConstructor;
|
16088
16116
|
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
16089
16117
|
locationStrategy: {
|
16090
|
-
type: PropType<StrategyProps["locationStrategy"]>;
|
16118
|
+
type: PropType<StrategyProps$1["locationStrategy"]>;
|
16091
16119
|
default: string;
|
16092
16120
|
validator: (val: any) => boolean;
|
16093
16121
|
};
|
@@ -16130,14 +16158,14 @@ declare const VSnackbarQueue: {
|
|
16130
16158
|
default: string;
|
16131
16159
|
validator: (v: any) => boolean;
|
16132
16160
|
};
|
16133
|
-
offset: PropType<StrategyProps["offset"]>;
|
16161
|
+
offset: PropType<StrategyProps$1["offset"]>;
|
16134
16162
|
absolute: BooleanConstructor;
|
16135
16163
|
location: {
|
16136
|
-
type: PropType<StrategyProps["location"]>;
|
16164
|
+
type: PropType<StrategyProps$1["location"]>;
|
16137
16165
|
default: string;
|
16138
16166
|
};
|
16139
16167
|
origin: {
|
16140
|
-
type: PropType<StrategyProps["origin"]>;
|
16168
|
+
type: PropType<StrategyProps$1["origin"]>;
|
16141
16169
|
default: string;
|
16142
16170
|
};
|
16143
16171
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -16194,7 +16222,7 @@ declare const VSnackbarQueue: {
|
|
16194
16222
|
tile: BooleanConstructor;
|
16195
16223
|
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
16196
16224
|
locationStrategy: {
|
16197
|
-
type: PropType<StrategyProps["locationStrategy"]>;
|
16225
|
+
type: PropType<StrategyProps$1["locationStrategy"]>;
|
16198
16226
|
default: string;
|
16199
16227
|
validator: (val: any) => boolean;
|
16200
16228
|
};
|