vuetify 3.4.2 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +2187 -2187
- package/dist/json/importMap.json +114 -114
- package/dist/json/web-types.json +3977 -3962
- package/dist/vuetify-labs.css +1645 -1636
- package/dist/vuetify-labs.d.ts +298 -151
- package/dist/vuetify-labs.esm.js +710 -696
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +709 -695
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +915 -906
- package/dist/vuetify.d.ts +332 -185
- package/dist/vuetify.esm.js +710 -696
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +709 -695
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +222 -221
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +48 -48
- package/lib/blueprints/md1.d.mts +48 -48
- package/lib/blueprints/md2.d.mts +48 -48
- package/lib/blueprints/md3.d.mts +48 -48
- package/lib/components/VBtn/VBtn.css +3 -0
- package/lib/components/VBtn/VBtn.sass +4 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VCarousel/VCarousel.css +2 -1
- package/lib/components/VCarousel/VCarousel.mjs +1 -1
- package/lib/components/VCarousel/VCarousel.mjs.map +1 -1
- package/lib/components/VCarousel/VCarousel.sass +3 -1
- package/lib/components/VCarousel/_variables.scss +6 -0
- package/lib/components/VCheckbox/index.d.mts +32 -20
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.css +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs +18 -31
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/_variables.scss +1 -1
- package/lib/components/VDataTable/index.d.mts +3 -3
- package/lib/components/VDatePicker/VDatePicker.mjs +3 -3
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +18 -15
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -0
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VPagination/VPagination.mjs +2 -2
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +16 -10
- package/lib/components/VRadioGroup/index.d.mts +16 -10
- package/lib/components/VSelect/VSelect.mjs +3 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +16 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +4 -1
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSelectionControlGroup/index.d.mts +16 -10
- package/lib/components/VSlideGroup/VSlideGroup.mjs +2 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSwitch/index.d.mts +16 -10
- package/lib/components/VTable/VTable.css +6 -1
- package/lib/components/VTable/VTable.sass +6 -1
- package/lib/components/VTable/_variables.scss +2 -0
- package/lib/components/VTabs/VTab.mjs +4 -3
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +72 -0
- package/lib/components/index.d.mts +187 -73
- package/lib/composables/date/date.mjs +21 -13
- package/lib/composables/date/date.mjs.map +1 -1
- package/lib/composables/router.mjs +7 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +4 -3
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +145 -112
- package/lib/locale/fr.mjs +1 -1
- package/lib/locale/fr.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -5,6 +5,37 @@ import * as vue_router from 'vue-router';
|
|
|
5
5
|
// @ts-ignore
|
|
6
6
|
import { RouteLocationRaw } from 'vue-router';
|
|
7
7
|
|
|
8
|
+
interface DateAdapter<T = unknown> {
|
|
9
|
+
date(value?: any): T | null;
|
|
10
|
+
format(date: T, formatString: string): string;
|
|
11
|
+
toJsDate(value: T): Date;
|
|
12
|
+
parseISO(date: string): T;
|
|
13
|
+
toISO(date: T): string;
|
|
14
|
+
startOfDay(date: T): T;
|
|
15
|
+
endOfDay(date: T): T;
|
|
16
|
+
startOfMonth(date: T): T;
|
|
17
|
+
endOfMonth(date: T): T;
|
|
18
|
+
startOfYear(date: T): T;
|
|
19
|
+
endOfYear(date: T): T;
|
|
20
|
+
isBefore(date: T, comparing: T): boolean;
|
|
21
|
+
isAfter(date: T, comparing: T): boolean;
|
|
22
|
+
isEqual(date: T, comparing: T): boolean;
|
|
23
|
+
isSameDay(date: T, comparing: T): boolean;
|
|
24
|
+
isSameMonth(date: T, comparing: T): boolean;
|
|
25
|
+
isValid(date: any): boolean;
|
|
26
|
+
isWithinRange(date: T, range: [T, T]): boolean;
|
|
27
|
+
addDays(date: T, amount: number): T;
|
|
28
|
+
addMonths(date: T, amount: number): T;
|
|
29
|
+
getYear(date: T): number;
|
|
30
|
+
setYear(date: T, year: number): T;
|
|
31
|
+
getDiff(date: T, comparing: T | string, unit?: string): number;
|
|
32
|
+
getWeekArray(date: T): T[][];
|
|
33
|
+
getWeekdays(): string[];
|
|
34
|
+
getMonth(date: T): number;
|
|
35
|
+
setMonth(date: T, month: number): T;
|
|
36
|
+
getNextMonth(date: T): T;
|
|
37
|
+
}
|
|
38
|
+
|
|
8
39
|
interface LocaleMessages {
|
|
9
40
|
[key: string]: LocaleMessages | string;
|
|
10
41
|
}
|
|
@@ -37,6 +68,54 @@ declare function useRtl(): {
|
|
|
37
68
|
rtlClasses: Ref<string>;
|
|
38
69
|
};
|
|
39
70
|
|
|
71
|
+
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
|
72
|
+
locale?: any;
|
|
73
|
+
}
|
|
74
|
+
/** Supports module augmentation to specify date object types */
|
|
75
|
+
interface DateInstanceType {
|
|
76
|
+
instanceType: unknown;
|
|
77
|
+
}
|
|
78
|
+
type InternalDateOptions<T = unknown> = {
|
|
79
|
+
adapter: (new (options: {
|
|
80
|
+
locale: any;
|
|
81
|
+
formats?: any;
|
|
82
|
+
}) => DateInstance<T>) | DateInstance<T>;
|
|
83
|
+
formats?: Record<string, any>;
|
|
84
|
+
locale: Record<string, any>;
|
|
85
|
+
};
|
|
86
|
+
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
|
87
|
+
declare function useDate(): {
|
|
88
|
+
locale?: any;
|
|
89
|
+
date: (value?: any) => unknown;
|
|
90
|
+
format: (date: unknown, formatString: string) => string;
|
|
91
|
+
toJsDate: (value: unknown) => Date;
|
|
92
|
+
parseISO: (date: string) => unknown;
|
|
93
|
+
toISO: (date: unknown) => string;
|
|
94
|
+
startOfDay: (date: unknown) => unknown;
|
|
95
|
+
endOfDay: (date: unknown) => unknown;
|
|
96
|
+
startOfMonth: (date: unknown) => unknown;
|
|
97
|
+
endOfMonth: (date: unknown) => unknown;
|
|
98
|
+
startOfYear: (date: unknown) => unknown;
|
|
99
|
+
endOfYear: (date: unknown) => unknown;
|
|
100
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
101
|
+
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
102
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
103
|
+
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
104
|
+
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
105
|
+
isValid: (date: any) => boolean;
|
|
106
|
+
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
107
|
+
addDays: (date: unknown, amount: number) => unknown;
|
|
108
|
+
addMonths: (date: unknown, amount: number) => unknown;
|
|
109
|
+
getYear: (date: unknown) => number;
|
|
110
|
+
setYear: (date: unknown, year: number) => unknown;
|
|
111
|
+
getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
|
|
112
|
+
getWeekArray: (date: unknown) => unknown[][];
|
|
113
|
+
getWeekdays: () => string[];
|
|
114
|
+
getMonth: (date: unknown) => number;
|
|
115
|
+
setMonth: (date: unknown, month: number) => unknown;
|
|
116
|
+
getNextMonth: (date: unknown) => unknown;
|
|
117
|
+
};
|
|
118
|
+
|
|
40
119
|
type DeepPartial<T> = T extends object ? {
|
|
41
120
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
42
121
|
} : T;
|
|
@@ -254,55 +333,6 @@ type DefaultsOptions = Partial<DefaultsInstance>;
|
|
|
254
333
|
declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
|
|
255
334
|
declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
|
|
256
335
|
|
|
257
|
-
interface DateAdapter<T = unknown> {
|
|
258
|
-
date(value?: any): T | null;
|
|
259
|
-
format(date: T, formatString: string): string;
|
|
260
|
-
toJsDate(value: T): Date;
|
|
261
|
-
parseISO(date: string): T;
|
|
262
|
-
toISO(date: T): string;
|
|
263
|
-
startOfDay(date: T): T;
|
|
264
|
-
endOfDay(date: T): T;
|
|
265
|
-
startOfMonth(date: T): T;
|
|
266
|
-
endOfMonth(date: T): T;
|
|
267
|
-
startOfYear(date: T): T;
|
|
268
|
-
endOfYear(date: T): T;
|
|
269
|
-
isBefore(date: T, comparing: T): boolean;
|
|
270
|
-
isAfter(date: T, comparing: T): boolean;
|
|
271
|
-
isEqual(date: T, comparing: T): boolean;
|
|
272
|
-
isSameDay(date: T, comparing: T): boolean;
|
|
273
|
-
isSameMonth(date: T, comparing: T): boolean;
|
|
274
|
-
isValid(date: any): boolean;
|
|
275
|
-
isWithinRange(date: T, range: [T, T]): boolean;
|
|
276
|
-
addDays(date: T, amount: number): T;
|
|
277
|
-
addMonths(date: T, amount: number): T;
|
|
278
|
-
getYear(date: T): number;
|
|
279
|
-
setYear(date: T, year: number): T;
|
|
280
|
-
getDiff(date: T, comparing: T | string, unit?: string): number;
|
|
281
|
-
getWeekArray(date: T): T[][];
|
|
282
|
-
getWeekdays(): string[];
|
|
283
|
-
getMonth(date: T): number;
|
|
284
|
-
setMonth(date: T, month: number): T;
|
|
285
|
-
getNextMonth(date: T): T;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
interface DateInstance<T = DateInstanceType['instanceType']> extends DateAdapter<T> {
|
|
289
|
-
locale?: any;
|
|
290
|
-
}
|
|
291
|
-
/** Supports module augmentation to specify date object types */
|
|
292
|
-
interface DateInstanceType {
|
|
293
|
-
instanceType: unknown;
|
|
294
|
-
}
|
|
295
|
-
type InternalDateOptions<T = unknown> = {
|
|
296
|
-
adapter: (new (options: {
|
|
297
|
-
locale: any;
|
|
298
|
-
formats?: any;
|
|
299
|
-
}) => DateInstance<T>) | DateInstance<T>;
|
|
300
|
-
formats?: Record<string, any>;
|
|
301
|
-
locale: Record<string, any>;
|
|
302
|
-
};
|
|
303
|
-
type DateOptions<T = any> = Partial<InternalDateOptions<T>>;
|
|
304
|
-
declare function useDate(): DateInstance<unknown>;
|
|
305
|
-
|
|
306
336
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
307
337
|
declare const IconValue: PropType<IconValue>;
|
|
308
338
|
interface IconAliases {
|
|
@@ -15311,7 +15341,7 @@ declare const VSelectionControlGroup: {
|
|
|
15311
15341
|
style: vue.StyleValue;
|
|
15312
15342
|
disabled: boolean | null;
|
|
15313
15343
|
multiple: boolean | null;
|
|
15314
|
-
readonly: boolean;
|
|
15344
|
+
readonly: boolean | null;
|
|
15315
15345
|
density: Density;
|
|
15316
15346
|
ripple: boolean;
|
|
15317
15347
|
defaultsTarget: string;
|
|
@@ -15322,7 +15352,7 @@ declare const VSelectionControlGroup: {
|
|
|
15322
15352
|
style: vue.StyleValue;
|
|
15323
15353
|
disabled: boolean | null;
|
|
15324
15354
|
multiple: boolean | null;
|
|
15325
|
-
readonly: boolean;
|
|
15355
|
+
readonly: boolean | null;
|
|
15326
15356
|
density: Density;
|
|
15327
15357
|
ripple: boolean;
|
|
15328
15358
|
defaultsTarget: string;
|
|
@@ -15341,7 +15371,7 @@ declare const VSelectionControlGroup: {
|
|
|
15341
15371
|
style: vue.StyleValue;
|
|
15342
15372
|
disabled: boolean | null;
|
|
15343
15373
|
multiple: boolean | null;
|
|
15344
|
-
readonly: boolean;
|
|
15374
|
+
readonly: boolean | null;
|
|
15345
15375
|
density: Density;
|
|
15346
15376
|
ripple: boolean;
|
|
15347
15377
|
defaultsTarget: string;
|
|
@@ -15377,7 +15407,7 @@ declare const VSelectionControlGroup: {
|
|
|
15377
15407
|
style: vue.StyleValue;
|
|
15378
15408
|
disabled: boolean | null;
|
|
15379
15409
|
multiple: boolean | null;
|
|
15380
|
-
readonly: boolean;
|
|
15410
|
+
readonly: boolean | null;
|
|
15381
15411
|
density: Density;
|
|
15382
15412
|
ripple: boolean;
|
|
15383
15413
|
defaultsTarget: string;
|
|
@@ -15399,7 +15429,7 @@ declare const VSelectionControlGroup: {
|
|
|
15399
15429
|
style: vue.StyleValue;
|
|
15400
15430
|
disabled: boolean | null;
|
|
15401
15431
|
multiple: boolean | null;
|
|
15402
|
-
readonly: boolean;
|
|
15432
|
+
readonly: boolean | null;
|
|
15403
15433
|
density: Density;
|
|
15404
15434
|
ripple: boolean;
|
|
15405
15435
|
defaultsTarget: string;
|
|
@@ -15434,7 +15464,7 @@ declare const VSelectionControlGroup: {
|
|
|
15434
15464
|
style: vue.StyleValue;
|
|
15435
15465
|
disabled: boolean | null;
|
|
15436
15466
|
multiple: boolean | null;
|
|
15437
|
-
readonly: boolean;
|
|
15467
|
+
readonly: boolean | null;
|
|
15438
15468
|
density: Density;
|
|
15439
15469
|
ripple: boolean;
|
|
15440
15470
|
defaultsTarget: string;
|
|
@@ -15458,7 +15488,7 @@ declare const VSelectionControlGroup: {
|
|
|
15458
15488
|
style: vue.StyleValue;
|
|
15459
15489
|
disabled: boolean | null;
|
|
15460
15490
|
multiple: boolean | null;
|
|
15461
|
-
readonly: boolean;
|
|
15491
|
+
readonly: boolean | null;
|
|
15462
15492
|
density: Density;
|
|
15463
15493
|
ripple: boolean;
|
|
15464
15494
|
defaultsTarget: string;
|
|
@@ -15480,7 +15510,7 @@ declare const VSelectionControlGroup: {
|
|
|
15480
15510
|
style: vue.StyleValue;
|
|
15481
15511
|
disabled: boolean | null;
|
|
15482
15512
|
multiple: boolean | null;
|
|
15483
|
-
readonly: boolean;
|
|
15513
|
+
readonly: boolean | null;
|
|
15484
15514
|
density: Density;
|
|
15485
15515
|
ripple: boolean;
|
|
15486
15516
|
defaultsTarget: string;
|
|
@@ -15534,7 +15564,10 @@ declare const VSelectionControlGroup: {
|
|
|
15534
15564
|
default: null;
|
|
15535
15565
|
};
|
|
15536
15566
|
name: StringConstructor;
|
|
15537
|
-
readonly:
|
|
15567
|
+
readonly: {
|
|
15568
|
+
type: PropType<boolean | null>;
|
|
15569
|
+
default: null;
|
|
15570
|
+
};
|
|
15538
15571
|
modelValue: null;
|
|
15539
15572
|
type: StringConstructor;
|
|
15540
15573
|
valueComparator: {
|
|
@@ -15576,7 +15609,10 @@ declare const VSelectionControlGroup: {
|
|
|
15576
15609
|
default: null;
|
|
15577
15610
|
};
|
|
15578
15611
|
name: StringConstructor;
|
|
15579
|
-
readonly:
|
|
15612
|
+
readonly: {
|
|
15613
|
+
type: PropType<boolean | null>;
|
|
15614
|
+
default: null;
|
|
15615
|
+
};
|
|
15580
15616
|
modelValue: null;
|
|
15581
15617
|
type: StringConstructor;
|
|
15582
15618
|
valueComparator: {
|
|
@@ -15621,7 +15657,7 @@ declare const VSelectionControl: {
|
|
|
15621
15657
|
style: vue.StyleValue;
|
|
15622
15658
|
disabled: boolean | null;
|
|
15623
15659
|
multiple: boolean | null;
|
|
15624
|
-
readonly: boolean;
|
|
15660
|
+
readonly: boolean | null;
|
|
15625
15661
|
density: Density;
|
|
15626
15662
|
ripple: boolean;
|
|
15627
15663
|
valueComparator: typeof deepEqual;
|
|
@@ -15631,7 +15667,7 @@ declare const VSelectionControl: {
|
|
|
15631
15667
|
style: vue.StyleValue;
|
|
15632
15668
|
disabled: boolean | null;
|
|
15633
15669
|
multiple: boolean | null;
|
|
15634
|
-
readonly: boolean;
|
|
15670
|
+
readonly: boolean | null;
|
|
15635
15671
|
density: Density;
|
|
15636
15672
|
ripple: boolean;
|
|
15637
15673
|
valueComparator: typeof deepEqual;
|
|
@@ -15655,7 +15691,7 @@ declare const VSelectionControl: {
|
|
|
15655
15691
|
style: vue.StyleValue;
|
|
15656
15692
|
disabled: boolean | null;
|
|
15657
15693
|
multiple: boolean | null;
|
|
15658
|
-
readonly: boolean;
|
|
15694
|
+
readonly: boolean | null;
|
|
15659
15695
|
density: Density;
|
|
15660
15696
|
ripple: boolean;
|
|
15661
15697
|
valueComparator: typeof deepEqual;
|
|
@@ -15708,7 +15744,7 @@ declare const VSelectionControl: {
|
|
|
15708
15744
|
style: vue.StyleValue;
|
|
15709
15745
|
disabled: boolean | null;
|
|
15710
15746
|
multiple: boolean | null;
|
|
15711
|
-
readonly: boolean;
|
|
15747
|
+
readonly: boolean | null;
|
|
15712
15748
|
density: Density;
|
|
15713
15749
|
ripple: boolean;
|
|
15714
15750
|
valueComparator: typeof deepEqual;
|
|
@@ -15738,7 +15774,7 @@ declare const VSelectionControl: {
|
|
|
15738
15774
|
style: vue.StyleValue;
|
|
15739
15775
|
disabled: boolean | null;
|
|
15740
15776
|
multiple: boolean | null;
|
|
15741
|
-
readonly: boolean;
|
|
15777
|
+
readonly: boolean | null;
|
|
15742
15778
|
density: Density;
|
|
15743
15779
|
ripple: boolean;
|
|
15744
15780
|
valueComparator: typeof deepEqual;
|
|
@@ -15784,7 +15820,7 @@ declare const VSelectionControl: {
|
|
|
15784
15820
|
style: vue.StyleValue;
|
|
15785
15821
|
disabled: boolean | null;
|
|
15786
15822
|
multiple: boolean | null;
|
|
15787
|
-
readonly: boolean;
|
|
15823
|
+
readonly: boolean | null;
|
|
15788
15824
|
density: Density;
|
|
15789
15825
|
ripple: boolean;
|
|
15790
15826
|
valueComparator: typeof deepEqual;
|
|
@@ -15816,7 +15852,7 @@ declare const VSelectionControl: {
|
|
|
15816
15852
|
style: vue.StyleValue;
|
|
15817
15853
|
disabled: boolean | null;
|
|
15818
15854
|
multiple: boolean | null;
|
|
15819
|
-
readonly: boolean;
|
|
15855
|
+
readonly: boolean | null;
|
|
15820
15856
|
density: Density;
|
|
15821
15857
|
ripple: boolean;
|
|
15822
15858
|
valueComparator: typeof deepEqual;
|
|
@@ -15846,7 +15882,7 @@ declare const VSelectionControl: {
|
|
|
15846
15882
|
style: vue.StyleValue;
|
|
15847
15883
|
disabled: boolean | null;
|
|
15848
15884
|
multiple: boolean | null;
|
|
15849
|
-
readonly: boolean;
|
|
15885
|
+
readonly: boolean | null;
|
|
15850
15886
|
density: Density;
|
|
15851
15887
|
ripple: boolean;
|
|
15852
15888
|
valueComparator: typeof deepEqual;
|
|
@@ -15904,7 +15940,10 @@ declare const VSelectionControl: {
|
|
|
15904
15940
|
default: null;
|
|
15905
15941
|
};
|
|
15906
15942
|
name: StringConstructor;
|
|
15907
|
-
readonly:
|
|
15943
|
+
readonly: {
|
|
15944
|
+
type: vue.PropType<boolean | null>;
|
|
15945
|
+
default: null;
|
|
15946
|
+
};
|
|
15908
15947
|
modelValue: null;
|
|
15909
15948
|
type: StringConstructor;
|
|
15910
15949
|
valueComparator: {
|
|
@@ -15948,7 +15987,10 @@ declare const VSelectionControl: {
|
|
|
15948
15987
|
default: null;
|
|
15949
15988
|
};
|
|
15950
15989
|
name: StringConstructor;
|
|
15951
|
-
readonly:
|
|
15990
|
+
readonly: {
|
|
15991
|
+
type: vue.PropType<boolean | null>;
|
|
15992
|
+
default: null;
|
|
15993
|
+
};
|
|
15952
15994
|
modelValue: null;
|
|
15953
15995
|
type: StringConstructor;
|
|
15954
15996
|
valueComparator: {
|
|
@@ -15974,7 +16016,7 @@ declare const VCheckbox: {
|
|
|
15974
16016
|
style: vue.StyleValue;
|
|
15975
16017
|
disabled: boolean | null;
|
|
15976
16018
|
multiple: boolean | null;
|
|
15977
|
-
readonly: boolean;
|
|
16019
|
+
readonly: boolean | null;
|
|
15978
16020
|
indeterminate: boolean;
|
|
15979
16021
|
messages: string | readonly string[];
|
|
15980
16022
|
density: Density;
|
|
@@ -15996,7 +16038,7 @@ declare const VCheckbox: {
|
|
|
15996
16038
|
style: vue.StyleValue;
|
|
15997
16039
|
disabled: boolean | null;
|
|
15998
16040
|
multiple: boolean | null;
|
|
15999
|
-
readonly: boolean;
|
|
16041
|
+
readonly: boolean | null;
|
|
16000
16042
|
indeterminate: boolean;
|
|
16001
16043
|
messages: string | readonly string[];
|
|
16002
16044
|
density: Density;
|
|
@@ -16039,7 +16081,7 @@ declare const VCheckbox: {
|
|
|
16039
16081
|
style: vue.StyleValue;
|
|
16040
16082
|
disabled: boolean | null;
|
|
16041
16083
|
multiple: boolean | null;
|
|
16042
|
-
readonly: boolean;
|
|
16084
|
+
readonly: boolean | null;
|
|
16043
16085
|
indeterminate: boolean;
|
|
16044
16086
|
messages: string | readonly string[];
|
|
16045
16087
|
density: Density;
|
|
@@ -16125,7 +16167,7 @@ declare const VCheckbox: {
|
|
|
16125
16167
|
style: vue.StyleValue;
|
|
16126
16168
|
disabled: boolean | null;
|
|
16127
16169
|
multiple: boolean | null;
|
|
16128
|
-
readonly: boolean;
|
|
16170
|
+
readonly: boolean | null;
|
|
16129
16171
|
indeterminate: boolean;
|
|
16130
16172
|
messages: string | readonly string[];
|
|
16131
16173
|
density: Density;
|
|
@@ -16174,7 +16216,7 @@ declare const VCheckbox: {
|
|
|
16174
16216
|
style: vue.StyleValue;
|
|
16175
16217
|
disabled: boolean | null;
|
|
16176
16218
|
multiple: boolean | null;
|
|
16177
|
-
readonly: boolean;
|
|
16219
|
+
readonly: boolean | null;
|
|
16178
16220
|
indeterminate: boolean;
|
|
16179
16221
|
messages: string | readonly string[];
|
|
16180
16222
|
density: Density;
|
|
@@ -16244,7 +16286,7 @@ declare const VCheckbox: {
|
|
|
16244
16286
|
style: vue.StyleValue;
|
|
16245
16287
|
disabled: boolean | null;
|
|
16246
16288
|
multiple: boolean | null;
|
|
16247
|
-
readonly: boolean;
|
|
16289
|
+
readonly: boolean | null;
|
|
16248
16290
|
indeterminate: boolean;
|
|
16249
16291
|
messages: string | readonly string[];
|
|
16250
16292
|
density: Density;
|
|
@@ -16294,7 +16336,7 @@ declare const VCheckbox: {
|
|
|
16294
16336
|
style: vue.StyleValue;
|
|
16295
16337
|
disabled: boolean | null;
|
|
16296
16338
|
multiple: boolean | null;
|
|
16297
|
-
readonly: boolean;
|
|
16339
|
+
readonly: boolean | null;
|
|
16298
16340
|
indeterminate: boolean;
|
|
16299
16341
|
messages: string | readonly string[];
|
|
16300
16342
|
density: Density;
|
|
@@ -16343,7 +16385,7 @@ declare const VCheckbox: {
|
|
|
16343
16385
|
style: vue.StyleValue;
|
|
16344
16386
|
disabled: boolean | null;
|
|
16345
16387
|
multiple: boolean | null;
|
|
16346
|
-
readonly: boolean;
|
|
16388
|
+
readonly: boolean | null;
|
|
16347
16389
|
indeterminate: boolean;
|
|
16348
16390
|
messages: string | readonly string[];
|
|
16349
16391
|
density: Density;
|
|
@@ -16413,7 +16455,10 @@ declare const VCheckbox: {
|
|
|
16413
16455
|
type: vue.PropType<boolean | null>;
|
|
16414
16456
|
default: null;
|
|
16415
16457
|
};
|
|
16416
|
-
readonly:
|
|
16458
|
+
readonly: {
|
|
16459
|
+
type: vue.PropType<boolean | null>;
|
|
16460
|
+
default: null;
|
|
16461
|
+
};
|
|
16417
16462
|
class: vue.PropType<any>;
|
|
16418
16463
|
indeterminate: BooleanConstructor;
|
|
16419
16464
|
theme: StringConstructor;
|
|
@@ -16504,7 +16549,10 @@ declare const VCheckbox: {
|
|
|
16504
16549
|
type: vue.PropType<boolean | null>;
|
|
16505
16550
|
default: null;
|
|
16506
16551
|
};
|
|
16507
|
-
readonly:
|
|
16552
|
+
readonly: {
|
|
16553
|
+
type: vue.PropType<boolean | null>;
|
|
16554
|
+
default: null;
|
|
16555
|
+
};
|
|
16508
16556
|
class: vue.PropType<any>;
|
|
16509
16557
|
indeterminate: BooleanConstructor;
|
|
16510
16558
|
theme: StringConstructor;
|
|
@@ -16588,7 +16636,7 @@ declare const VCheckboxBtn: {
|
|
|
16588
16636
|
style: vue.StyleValue;
|
|
16589
16637
|
disabled: boolean | null;
|
|
16590
16638
|
multiple: boolean | null;
|
|
16591
|
-
readonly: boolean;
|
|
16639
|
+
readonly: boolean | null;
|
|
16592
16640
|
indeterminate: boolean;
|
|
16593
16641
|
density: Density;
|
|
16594
16642
|
ripple: boolean;
|
|
@@ -16602,7 +16650,7 @@ declare const VCheckboxBtn: {
|
|
|
16602
16650
|
style: vue.StyleValue;
|
|
16603
16651
|
disabled: boolean | null;
|
|
16604
16652
|
multiple: boolean | null;
|
|
16605
|
-
readonly: boolean;
|
|
16653
|
+
readonly: boolean | null;
|
|
16606
16654
|
indeterminate: boolean;
|
|
16607
16655
|
density: Density;
|
|
16608
16656
|
ripple: boolean;
|
|
@@ -16629,7 +16677,7 @@ declare const VCheckboxBtn: {
|
|
|
16629
16677
|
style: vue.StyleValue;
|
|
16630
16678
|
disabled: boolean | null;
|
|
16631
16679
|
multiple: boolean | null;
|
|
16632
|
-
readonly: boolean;
|
|
16680
|
+
readonly: boolean | null;
|
|
16633
16681
|
indeterminate: boolean;
|
|
16634
16682
|
density: Density;
|
|
16635
16683
|
ripple: boolean;
|
|
@@ -16686,7 +16734,7 @@ declare const VCheckboxBtn: {
|
|
|
16686
16734
|
style: vue.StyleValue;
|
|
16687
16735
|
disabled: boolean | null;
|
|
16688
16736
|
multiple: boolean | null;
|
|
16689
|
-
readonly: boolean;
|
|
16737
|
+
readonly: boolean | null;
|
|
16690
16738
|
indeterminate: boolean;
|
|
16691
16739
|
density: Density;
|
|
16692
16740
|
ripple: boolean;
|
|
@@ -16718,7 +16766,7 @@ declare const VCheckboxBtn: {
|
|
|
16718
16766
|
style: vue.StyleValue;
|
|
16719
16767
|
disabled: boolean | null;
|
|
16720
16768
|
multiple: boolean | null;
|
|
16721
|
-
readonly: boolean;
|
|
16769
|
+
readonly: boolean | null;
|
|
16722
16770
|
indeterminate: boolean;
|
|
16723
16771
|
density: Density;
|
|
16724
16772
|
ripple: boolean;
|
|
@@ -16768,7 +16816,7 @@ declare const VCheckboxBtn: {
|
|
|
16768
16816
|
style: vue.StyleValue;
|
|
16769
16817
|
disabled: boolean | null;
|
|
16770
16818
|
multiple: boolean | null;
|
|
16771
|
-
readonly: boolean;
|
|
16819
|
+
readonly: boolean | null;
|
|
16772
16820
|
indeterminate: boolean;
|
|
16773
16821
|
density: Density;
|
|
16774
16822
|
ripple: boolean;
|
|
@@ -16801,7 +16849,7 @@ declare const VCheckboxBtn: {
|
|
|
16801
16849
|
style: vue.StyleValue;
|
|
16802
16850
|
disabled: boolean | null;
|
|
16803
16851
|
multiple: boolean | null;
|
|
16804
|
-
readonly: boolean;
|
|
16852
|
+
readonly: boolean | null;
|
|
16805
16853
|
indeterminate: boolean;
|
|
16806
16854
|
density: Density;
|
|
16807
16855
|
ripple: boolean;
|
|
@@ -16833,7 +16881,7 @@ declare const VCheckboxBtn: {
|
|
|
16833
16881
|
style: vue.StyleValue;
|
|
16834
16882
|
disabled: boolean | null;
|
|
16835
16883
|
multiple: boolean | null;
|
|
16836
|
-
readonly: boolean;
|
|
16884
|
+
readonly: boolean | null;
|
|
16837
16885
|
indeterminate: boolean;
|
|
16838
16886
|
density: Density;
|
|
16839
16887
|
ripple: boolean;
|
|
@@ -16901,7 +16949,10 @@ declare const VCheckboxBtn: {
|
|
|
16901
16949
|
default: null;
|
|
16902
16950
|
};
|
|
16903
16951
|
name: StringConstructor;
|
|
16904
|
-
readonly:
|
|
16952
|
+
readonly: {
|
|
16953
|
+
type: vue.PropType<boolean | null>;
|
|
16954
|
+
default: null;
|
|
16955
|
+
};
|
|
16905
16956
|
modelValue: null;
|
|
16906
16957
|
type: StringConstructor;
|
|
16907
16958
|
valueComparator: {
|
|
@@ -16956,7 +17007,10 @@ declare const VCheckboxBtn: {
|
|
|
16956
17007
|
default: null;
|
|
16957
17008
|
};
|
|
16958
17009
|
name: StringConstructor;
|
|
16959
|
-
readonly:
|
|
17010
|
+
readonly: {
|
|
17011
|
+
type: vue.PropType<boolean | null>;
|
|
17012
|
+
default: null;
|
|
17013
|
+
};
|
|
16960
17014
|
modelValue: null;
|
|
16961
17015
|
type: StringConstructor;
|
|
16962
17016
|
valueComparator: {
|
|
@@ -24405,7 +24459,7 @@ declare const VDataTableFooter: {
|
|
|
24405
24459
|
} | undefined;
|
|
24406
24460
|
} & {
|
|
24407
24461
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
24408
|
-
},
|
|
24462
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
24409
24463
|
itemsPerPageText: string;
|
|
24410
24464
|
pageText: string;
|
|
24411
24465
|
nextIcon: string;
|
|
@@ -24470,7 +24524,7 @@ declare const VDataTableFooter: {
|
|
|
24470
24524
|
} | undefined;
|
|
24471
24525
|
} & {
|
|
24472
24526
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
24473
|
-
} & vue.ShallowUnwrapRef<
|
|
24527
|
+
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
24474
24528
|
__isFragment?: undefined;
|
|
24475
24529
|
__isTeleport?: undefined;
|
|
24476
24530
|
__isSuspense?: undefined;
|
|
@@ -24499,7 +24553,7 @@ declare const VDataTableFooter: {
|
|
|
24499
24553
|
} | undefined;
|
|
24500
24554
|
} & {
|
|
24501
24555
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
24502
|
-
},
|
|
24556
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
24503
24557
|
itemsPerPageText: string;
|
|
24504
24558
|
pageText: string;
|
|
24505
24559
|
nextIcon: string;
|
|
@@ -48240,7 +48294,7 @@ declare const VRadio: {
|
|
|
48240
48294
|
style: vue.StyleValue;
|
|
48241
48295
|
disabled: boolean | null;
|
|
48242
48296
|
multiple: boolean | null;
|
|
48243
|
-
readonly: boolean;
|
|
48297
|
+
readonly: boolean | null;
|
|
48244
48298
|
density: Density;
|
|
48245
48299
|
ripple: boolean;
|
|
48246
48300
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48252,7 +48306,7 @@ declare const VRadio: {
|
|
|
48252
48306
|
style: vue.StyleValue;
|
|
48253
48307
|
disabled: boolean | null;
|
|
48254
48308
|
multiple: boolean | null;
|
|
48255
|
-
readonly: boolean;
|
|
48309
|
+
readonly: boolean | null;
|
|
48256
48310
|
density: Density;
|
|
48257
48311
|
ripple: boolean;
|
|
48258
48312
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48311,7 +48365,7 @@ declare const VRadio: {
|
|
|
48311
48365
|
style: vue.StyleValue;
|
|
48312
48366
|
disabled: boolean | null;
|
|
48313
48367
|
multiple: boolean | null;
|
|
48314
|
-
readonly: boolean;
|
|
48368
|
+
readonly: boolean | null;
|
|
48315
48369
|
density: Density;
|
|
48316
48370
|
ripple: boolean;
|
|
48317
48371
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48401,7 +48455,7 @@ declare const VRadio: {
|
|
|
48401
48455
|
style: vue.StyleValue;
|
|
48402
48456
|
disabled: boolean | null;
|
|
48403
48457
|
multiple: boolean | null;
|
|
48404
|
-
readonly: boolean;
|
|
48458
|
+
readonly: boolean | null;
|
|
48405
48459
|
density: Density;
|
|
48406
48460
|
ripple: boolean;
|
|
48407
48461
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48463,7 +48517,7 @@ declare const VRadio: {
|
|
|
48463
48517
|
style: vue.StyleValue;
|
|
48464
48518
|
disabled: boolean | null;
|
|
48465
48519
|
multiple: boolean | null;
|
|
48466
|
-
readonly: boolean;
|
|
48520
|
+
readonly: boolean | null;
|
|
48467
48521
|
density: Density;
|
|
48468
48522
|
ripple: boolean;
|
|
48469
48523
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48511,7 +48565,7 @@ declare const VRadio: {
|
|
|
48511
48565
|
style: vue.StyleValue;
|
|
48512
48566
|
disabled: boolean | null;
|
|
48513
48567
|
multiple: boolean | null;
|
|
48514
|
-
readonly: boolean;
|
|
48568
|
+
readonly: boolean | null;
|
|
48515
48569
|
density: Density;
|
|
48516
48570
|
ripple: boolean;
|
|
48517
48571
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48577,7 +48631,7 @@ declare const VRadio: {
|
|
|
48577
48631
|
style: vue.StyleValue;
|
|
48578
48632
|
disabled: boolean | null;
|
|
48579
48633
|
multiple: boolean | null;
|
|
48580
|
-
readonly: boolean;
|
|
48634
|
+
readonly: boolean | null;
|
|
48581
48635
|
density: Density;
|
|
48582
48636
|
ripple: boolean;
|
|
48583
48637
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48639,7 +48693,7 @@ declare const VRadio: {
|
|
|
48639
48693
|
style: vue.StyleValue;
|
|
48640
48694
|
disabled: boolean | null;
|
|
48641
48695
|
multiple: boolean | null;
|
|
48642
|
-
readonly: boolean;
|
|
48696
|
+
readonly: boolean | null;
|
|
48643
48697
|
density: Density;
|
|
48644
48698
|
ripple: boolean;
|
|
48645
48699
|
falseIcon: NonNullable<IconValue>;
|
|
@@ -48699,7 +48753,10 @@ declare const VRadio: {
|
|
|
48699
48753
|
default: null;
|
|
48700
48754
|
};
|
|
48701
48755
|
name: StringConstructor;
|
|
48702
|
-
readonly:
|
|
48756
|
+
readonly: {
|
|
48757
|
+
type: vue.PropType<boolean | null>;
|
|
48758
|
+
default: null;
|
|
48759
|
+
};
|
|
48703
48760
|
modelValue: null;
|
|
48704
48761
|
type: StringConstructor;
|
|
48705
48762
|
valueComparator: {
|
|
@@ -48749,7 +48806,10 @@ declare const VRadio: {
|
|
|
48749
48806
|
default: null;
|
|
48750
48807
|
};
|
|
48751
48808
|
name: StringConstructor;
|
|
48752
|
-
readonly:
|
|
48809
|
+
readonly: {
|
|
48810
|
+
type: vue.PropType<boolean | null>;
|
|
48811
|
+
default: null;
|
|
48812
|
+
};
|
|
48753
48813
|
modelValue: null;
|
|
48754
48814
|
type: StringConstructor;
|
|
48755
48815
|
valueComparator: {
|
|
@@ -48783,7 +48843,7 @@ declare const VRadioGroup: {
|
|
|
48783
48843
|
direction: "horizontal" | "vertical";
|
|
48784
48844
|
style: vue.StyleValue;
|
|
48785
48845
|
disabled: boolean | null;
|
|
48786
|
-
readonly: boolean;
|
|
48846
|
+
readonly: boolean | null;
|
|
48787
48847
|
messages: string | readonly string[];
|
|
48788
48848
|
density: Density;
|
|
48789
48849
|
ripple: boolean;
|
|
@@ -48805,7 +48865,7 @@ declare const VRadioGroup: {
|
|
|
48805
48865
|
direction: "horizontal" | "vertical";
|
|
48806
48866
|
style: vue.StyleValue;
|
|
48807
48867
|
disabled: boolean | null;
|
|
48808
|
-
readonly: boolean;
|
|
48868
|
+
readonly: boolean | null;
|
|
48809
48869
|
messages: string | readonly string[];
|
|
48810
48870
|
density: Density;
|
|
48811
48871
|
ripple: boolean;
|
|
@@ -48843,7 +48903,7 @@ declare const VRadioGroup: {
|
|
|
48843
48903
|
direction: "horizontal" | "vertical";
|
|
48844
48904
|
style: vue.StyleValue;
|
|
48845
48905
|
disabled: boolean | null;
|
|
48846
|
-
readonly: boolean;
|
|
48906
|
+
readonly: boolean | null;
|
|
48847
48907
|
messages: string | readonly string[];
|
|
48848
48908
|
density: Density;
|
|
48849
48909
|
ripple: boolean;
|
|
@@ -48916,7 +48976,7 @@ declare const VRadioGroup: {
|
|
|
48916
48976
|
direction: "horizontal" | "vertical";
|
|
48917
48977
|
style: vue.StyleValue;
|
|
48918
48978
|
disabled: boolean | null;
|
|
48919
|
-
readonly: boolean;
|
|
48979
|
+
readonly: boolean | null;
|
|
48920
48980
|
messages: string | readonly string[];
|
|
48921
48981
|
density: Density;
|
|
48922
48982
|
ripple: boolean;
|
|
@@ -48957,7 +49017,7 @@ declare const VRadioGroup: {
|
|
|
48957
49017
|
direction: "horizontal" | "vertical";
|
|
48958
49018
|
style: vue.StyleValue;
|
|
48959
49019
|
disabled: boolean | null;
|
|
48960
|
-
readonly: boolean;
|
|
49020
|
+
readonly: boolean | null;
|
|
48961
49021
|
messages: string | readonly string[];
|
|
48962
49022
|
density: Density;
|
|
48963
49023
|
ripple: boolean;
|
|
@@ -49021,7 +49081,7 @@ declare const VRadioGroup: {
|
|
|
49021
49081
|
direction: "horizontal" | "vertical";
|
|
49022
49082
|
style: vue.StyleValue;
|
|
49023
49083
|
disabled: boolean | null;
|
|
49024
|
-
readonly: boolean;
|
|
49084
|
+
readonly: boolean | null;
|
|
49025
49085
|
messages: string | readonly string[];
|
|
49026
49086
|
density: Density;
|
|
49027
49087
|
ripple: boolean;
|
|
@@ -49064,7 +49124,7 @@ declare const VRadioGroup: {
|
|
|
49064
49124
|
direction: "horizontal" | "vertical";
|
|
49065
49125
|
style: vue.StyleValue;
|
|
49066
49126
|
disabled: boolean | null;
|
|
49067
|
-
readonly: boolean;
|
|
49127
|
+
readonly: boolean | null;
|
|
49068
49128
|
messages: string | readonly string[];
|
|
49069
49129
|
density: Density;
|
|
49070
49130
|
ripple: boolean;
|
|
@@ -49105,7 +49165,7 @@ declare const VRadioGroup: {
|
|
|
49105
49165
|
direction: "horizontal" | "vertical";
|
|
49106
49166
|
style: vue.StyleValue;
|
|
49107
49167
|
disabled: boolean | null;
|
|
49108
|
-
readonly: boolean;
|
|
49168
|
+
readonly: boolean | null;
|
|
49109
49169
|
messages: string | readonly string[];
|
|
49110
49170
|
density: Density;
|
|
49111
49171
|
ripple: boolean;
|
|
@@ -49173,7 +49233,10 @@ declare const VRadioGroup: {
|
|
|
49173
49233
|
type: vue.PropType<boolean | null>;
|
|
49174
49234
|
default: null;
|
|
49175
49235
|
};
|
|
49176
|
-
readonly:
|
|
49236
|
+
readonly: {
|
|
49237
|
+
type: vue.PropType<boolean | null>;
|
|
49238
|
+
default: null;
|
|
49239
|
+
};
|
|
49177
49240
|
class: vue.PropType<any>;
|
|
49178
49241
|
theme: StringConstructor;
|
|
49179
49242
|
density: {
|
|
@@ -49259,7 +49322,10 @@ declare const VRadioGroup: {
|
|
|
49259
49322
|
type: vue.PropType<boolean | null>;
|
|
49260
49323
|
default: null;
|
|
49261
49324
|
};
|
|
49262
|
-
readonly:
|
|
49325
|
+
readonly: {
|
|
49326
|
+
type: vue.PropType<boolean | null>;
|
|
49327
|
+
default: null;
|
|
49328
|
+
};
|
|
49263
49329
|
class: vue.PropType<any>;
|
|
49264
49330
|
theme: StringConstructor;
|
|
49265
49331
|
density: {
|
|
@@ -59623,7 +59689,7 @@ declare const VSwitch: {
|
|
|
59623
59689
|
style: vue.StyleValue;
|
|
59624
59690
|
disabled: boolean | null;
|
|
59625
59691
|
multiple: boolean | null;
|
|
59626
|
-
readonly: boolean;
|
|
59692
|
+
readonly: boolean | null;
|
|
59627
59693
|
indeterminate: boolean;
|
|
59628
59694
|
messages: string | readonly string[];
|
|
59629
59695
|
density: Density;
|
|
@@ -59646,7 +59712,7 @@ declare const VSwitch: {
|
|
|
59646
59712
|
style: vue.StyleValue;
|
|
59647
59713
|
disabled: boolean | null;
|
|
59648
59714
|
multiple: boolean | null;
|
|
59649
|
-
readonly: boolean;
|
|
59715
|
+
readonly: boolean | null;
|
|
59650
59716
|
indeterminate: boolean;
|
|
59651
59717
|
messages: string | readonly string[];
|
|
59652
59718
|
density: Density;
|
|
@@ -59693,7 +59759,7 @@ declare const VSwitch: {
|
|
|
59693
59759
|
style: vue.StyleValue;
|
|
59694
59760
|
disabled: boolean | null;
|
|
59695
59761
|
multiple: boolean | null;
|
|
59696
|
-
readonly: boolean;
|
|
59762
|
+
readonly: boolean | null;
|
|
59697
59763
|
indeterminate: boolean;
|
|
59698
59764
|
messages: string | readonly string[];
|
|
59699
59765
|
density: Density;
|
|
@@ -59786,7 +59852,7 @@ declare const VSwitch: {
|
|
|
59786
59852
|
style: vue.StyleValue;
|
|
59787
59853
|
disabled: boolean | null;
|
|
59788
59854
|
multiple: boolean | null;
|
|
59789
|
-
readonly: boolean;
|
|
59855
|
+
readonly: boolean | null;
|
|
59790
59856
|
indeterminate: boolean;
|
|
59791
59857
|
messages: string | readonly string[];
|
|
59792
59858
|
density: Density;
|
|
@@ -59840,7 +59906,7 @@ declare const VSwitch: {
|
|
|
59840
59906
|
style: vue.StyleValue;
|
|
59841
59907
|
disabled: boolean | null;
|
|
59842
59908
|
multiple: boolean | null;
|
|
59843
|
-
readonly: boolean;
|
|
59909
|
+
readonly: boolean | null;
|
|
59844
59910
|
indeterminate: boolean;
|
|
59845
59911
|
messages: string | readonly string[];
|
|
59846
59912
|
density: Density;
|
|
@@ -59914,7 +59980,7 @@ declare const VSwitch: {
|
|
|
59914
59980
|
style: vue.StyleValue;
|
|
59915
59981
|
disabled: boolean | null;
|
|
59916
59982
|
multiple: boolean | null;
|
|
59917
|
-
readonly: boolean;
|
|
59983
|
+
readonly: boolean | null;
|
|
59918
59984
|
indeterminate: boolean;
|
|
59919
59985
|
messages: string | readonly string[];
|
|
59920
59986
|
density: Density;
|
|
@@ -59968,7 +60034,7 @@ declare const VSwitch: {
|
|
|
59968
60034
|
style: vue.StyleValue;
|
|
59969
60035
|
disabled: boolean | null;
|
|
59970
60036
|
multiple: boolean | null;
|
|
59971
|
-
readonly: boolean;
|
|
60037
|
+
readonly: boolean | null;
|
|
59972
60038
|
indeterminate: boolean;
|
|
59973
60039
|
messages: string | readonly string[];
|
|
59974
60040
|
density: Density;
|
|
@@ -60022,7 +60088,7 @@ declare const VSwitch: {
|
|
|
60022
60088
|
style: vue.StyleValue;
|
|
60023
60089
|
disabled: boolean | null;
|
|
60024
60090
|
multiple: boolean | null;
|
|
60025
|
-
readonly: boolean;
|
|
60091
|
+
readonly: boolean | null;
|
|
60026
60092
|
indeterminate: boolean;
|
|
60027
60093
|
messages: string | readonly string[];
|
|
60028
60094
|
density: Density;
|
|
@@ -60104,7 +60170,10 @@ declare const VSwitch: {
|
|
|
60104
60170
|
default: null;
|
|
60105
60171
|
};
|
|
60106
60172
|
name: StringConstructor;
|
|
60107
|
-
readonly:
|
|
60173
|
+
readonly: {
|
|
60174
|
+
type: vue.PropType<boolean | null>;
|
|
60175
|
+
default: null;
|
|
60176
|
+
};
|
|
60108
60177
|
modelValue: null;
|
|
60109
60178
|
type: StringConstructor;
|
|
60110
60179
|
valueComparator: {
|
|
@@ -60192,7 +60261,10 @@ declare const VSwitch: {
|
|
|
60192
60261
|
default: null;
|
|
60193
60262
|
};
|
|
60194
60263
|
name: StringConstructor;
|
|
60195
|
-
readonly:
|
|
60264
|
+
readonly: {
|
|
60265
|
+
type: vue.PropType<boolean | null>;
|
|
60266
|
+
default: null;
|
|
60267
|
+
};
|
|
60196
60268
|
modelValue: null;
|
|
60197
60269
|
type: StringConstructor;
|
|
60198
60270
|
valueComparator: {
|
|
@@ -61024,11 +61096,20 @@ declare const VTab: {
|
|
|
61024
61096
|
sliderColor?: string | undefined;
|
|
61025
61097
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61026
61098
|
default?: (() => vue.VNodeChild) | undefined;
|
|
61099
|
+
prepend?: (() => vue.VNodeChild) | undefined;
|
|
61100
|
+
append?: (() => vue.VNodeChild) | undefined;
|
|
61101
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
61027
61102
|
};
|
|
61028
61103
|
'v-slots'?: {
|
|
61029
61104
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61105
|
+
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
61106
|
+
append?: false | (() => vue.VNodeChild) | undefined;
|
|
61107
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
61030
61108
|
} | undefined;
|
|
61031
61109
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61110
|
+
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
61111
|
+
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
61112
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
61032
61113
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
61033
61114
|
replace: boolean;
|
|
61034
61115
|
fixed: boolean;
|
|
@@ -61072,12 +61153,21 @@ declare const VTab: {
|
|
|
61072
61153
|
} & {
|
|
61073
61154
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61074
61155
|
default?: (() => vue.VNodeChild) | undefined;
|
|
61156
|
+
prepend?: (() => vue.VNodeChild) | undefined;
|
|
61157
|
+
append?: (() => vue.VNodeChild) | undefined;
|
|
61158
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
61075
61159
|
};
|
|
61076
61160
|
'v-slots'?: {
|
|
61077
61161
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61162
|
+
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
61163
|
+
append?: false | (() => vue.VNodeChild) | undefined;
|
|
61164
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
61078
61165
|
} | undefined;
|
|
61079
61166
|
} & {
|
|
61080
61167
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61168
|
+
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
61169
|
+
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
61170
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
61081
61171
|
}, "replace" | "fixed" | "exact" | "direction" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "variant" | "selectedClass" | "slim" | "stacked" | "ripple" | "hideSlider">;
|
|
61082
61172
|
$attrs: {
|
|
61083
61173
|
[x: string]: unknown;
|
|
@@ -61089,6 +61179,15 @@ declare const VTab: {
|
|
|
61089
61179
|
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61090
61180
|
[key: string]: any;
|
|
61091
61181
|
}>[]) | undefined;
|
|
61182
|
+
prepend?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61183
|
+
[key: string]: any;
|
|
61184
|
+
}>[]) | undefined;
|
|
61185
|
+
append?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61186
|
+
[key: string]: any;
|
|
61187
|
+
}>[]) | undefined;
|
|
61188
|
+
loader?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61189
|
+
[key: string]: any;
|
|
61190
|
+
}>[]) | undefined;
|
|
61092
61191
|
}>;
|
|
61093
61192
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
61094
61193
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
@@ -61137,12 +61236,21 @@ declare const VTab: {
|
|
|
61137
61236
|
} & {
|
|
61138
61237
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61139
61238
|
default?: (() => vue.VNodeChild) | undefined;
|
|
61239
|
+
prepend?: (() => vue.VNodeChild) | undefined;
|
|
61240
|
+
append?: (() => vue.VNodeChild) | undefined;
|
|
61241
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
61140
61242
|
};
|
|
61141
61243
|
'v-slots'?: {
|
|
61142
61244
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61245
|
+
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
61246
|
+
append?: false | (() => vue.VNodeChild) | undefined;
|
|
61247
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
61143
61248
|
} | undefined;
|
|
61144
61249
|
} & {
|
|
61145
61250
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61251
|
+
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
61252
|
+
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
61253
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
61146
61254
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
61147
61255
|
replace: boolean;
|
|
61148
61256
|
fixed: boolean;
|
|
@@ -61166,6 +61274,15 @@ declare const VTab: {
|
|
|
61166
61274
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61167
61275
|
[key: string]: any;
|
|
61168
61276
|
}>[];
|
|
61277
|
+
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61278
|
+
[key: string]: any;
|
|
61279
|
+
}>[];
|
|
61280
|
+
append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61281
|
+
[key: string]: any;
|
|
61282
|
+
}>[];
|
|
61283
|
+
loader: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61284
|
+
[key: string]: any;
|
|
61285
|
+
}>[];
|
|
61169
61286
|
}>>> & {
|
|
61170
61287
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
61171
61288
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -61229,12 +61346,21 @@ declare const VTab: {
|
|
|
61229
61346
|
} & {
|
|
61230
61347
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61231
61348
|
default?: (() => vue.VNodeChild) | undefined;
|
|
61349
|
+
prepend?: (() => vue.VNodeChild) | undefined;
|
|
61350
|
+
append?: (() => vue.VNodeChild) | undefined;
|
|
61351
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
61232
61352
|
};
|
|
61233
61353
|
'v-slots'?: {
|
|
61234
61354
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61355
|
+
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
61356
|
+
append?: false | (() => vue.VNodeChild) | undefined;
|
|
61357
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
61235
61358
|
} | undefined;
|
|
61236
61359
|
} & {
|
|
61237
61360
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61361
|
+
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
61362
|
+
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
61363
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
61238
61364
|
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
61239
61365
|
__isFragment?: undefined;
|
|
61240
61366
|
__isTeleport?: undefined;
|
|
@@ -61282,12 +61408,21 @@ declare const VTab: {
|
|
|
61282
61408
|
} & {
|
|
61283
61409
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61284
61410
|
default?: (() => vue.VNodeChild) | undefined;
|
|
61411
|
+
prepend?: (() => vue.VNodeChild) | undefined;
|
|
61412
|
+
append?: (() => vue.VNodeChild) | undefined;
|
|
61413
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
61285
61414
|
};
|
|
61286
61415
|
'v-slots'?: {
|
|
61287
61416
|
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61417
|
+
prepend?: false | (() => vue.VNodeChild) | undefined;
|
|
61418
|
+
append?: false | (() => vue.VNodeChild) | undefined;
|
|
61419
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
61288
61420
|
} | undefined;
|
|
61289
61421
|
} & {
|
|
61290
61422
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61423
|
+
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
61424
|
+
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
61425
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
61291
61426
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
61292
61427
|
replace: boolean;
|
|
61293
61428
|
fixed: boolean;
|
|
@@ -61311,6 +61446,15 @@ declare const VTab: {
|
|
|
61311
61446
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61312
61447
|
[key: string]: any;
|
|
61313
61448
|
}>[];
|
|
61449
|
+
prepend: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61450
|
+
[key: string]: any;
|
|
61451
|
+
}>[];
|
|
61452
|
+
append: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61453
|
+
[key: string]: any;
|
|
61454
|
+
}>[];
|
|
61455
|
+
loader: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61456
|
+
[key: string]: any;
|
|
61457
|
+
}>[];
|
|
61314
61458
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
61315
61459
|
replace: BooleanConstructor;
|
|
61316
61460
|
exact: BooleanConstructor;
|
|
@@ -73449,35 +73593,38 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
|
73449
73593
|
provide: (props: LocaleOptions) => LocaleInstance;
|
|
73450
73594
|
};
|
|
73451
73595
|
date: {
|
|
73452
|
-
|
|
73453
|
-
|
|
73454
|
-
|
|
73455
|
-
|
|
73456
|
-
|
|
73457
|
-
|
|
73458
|
-
|
|
73459
|
-
|
|
73460
|
-
|
|
73461
|
-
|
|
73462
|
-
|
|
73463
|
-
|
|
73464
|
-
|
|
73465
|
-
|
|
73466
|
-
|
|
73467
|
-
|
|
73468
|
-
|
|
73469
|
-
|
|
73470
|
-
|
|
73471
|
-
|
|
73472
|
-
|
|
73473
|
-
|
|
73474
|
-
|
|
73475
|
-
|
|
73476
|
-
|
|
73477
|
-
|
|
73478
|
-
|
|
73479
|
-
|
|
73480
|
-
|
|
73596
|
+
options: InternalDateOptions<unknown>;
|
|
73597
|
+
instance: {
|
|
73598
|
+
locale?: any;
|
|
73599
|
+
date: (value?: any) => unknown;
|
|
73600
|
+
format: (date: unknown, formatString: string) => string;
|
|
73601
|
+
toJsDate: (value: unknown) => Date;
|
|
73602
|
+
parseISO: (date: string) => unknown;
|
|
73603
|
+
toISO: (date: unknown) => string;
|
|
73604
|
+
startOfDay: (date: unknown) => unknown;
|
|
73605
|
+
endOfDay: (date: unknown) => unknown;
|
|
73606
|
+
startOfMonth: (date: unknown) => unknown;
|
|
73607
|
+
endOfMonth: (date: unknown) => unknown;
|
|
73608
|
+
startOfYear: (date: unknown) => unknown;
|
|
73609
|
+
endOfYear: (date: unknown) => unknown;
|
|
73610
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
73611
|
+
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
73612
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
73613
|
+
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
73614
|
+
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
73615
|
+
isValid: (date: any) => boolean;
|
|
73616
|
+
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
73617
|
+
addDays: (date: unknown, amount: number) => unknown;
|
|
73618
|
+
addMonths: (date: unknown, amount: number) => unknown;
|
|
73619
|
+
getYear: (date: unknown) => number;
|
|
73620
|
+
setYear: (date: unknown, year: number) => unknown;
|
|
73621
|
+
getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
|
|
73622
|
+
getWeekArray: (date: unknown) => unknown[][];
|
|
73623
|
+
getWeekdays: () => string[];
|
|
73624
|
+
getMonth: (date: unknown) => number;
|
|
73625
|
+
setMonth: (date: unknown, month: number) => unknown;
|
|
73626
|
+
getNextMonth: (date: unknown) => unknown;
|
|
73627
|
+
};
|
|
73481
73628
|
};
|
|
73482
73629
|
};
|
|
73483
73630
|
|