vuetify 3.8.0-beta.0 → 3.8.0
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/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3162 -3030
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +38 -0
- package/dist/json/web-types.json +6016 -5639
- package/dist/vuetify-labs.cjs +320 -55
- package/dist/vuetify-labs.css +5453 -5271
- package/dist/vuetify-labs.d.ts +612 -267
- package/dist/vuetify-labs.esm.js +320 -55
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +320 -55
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +74 -36
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3042 -3037
- package/dist/vuetify.d.ts +161 -178
- package/dist/vuetify.esm.js +74 -36
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +74 -36
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +32 -32
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +5 -10
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.js +4 -3
- package/lib/components/VColorPicker/VColorPickerPreview.js.map +1 -1
- package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +31 -6
- package/lib/components/VConfirmEdit/VConfirmEdit.js +17 -2
- package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableRow.d.ts +9 -6
- package/lib/components/VDataTable/VDataTableRow.js +18 -3
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableServer.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -4
- package/lib/components/VDatePicker/VDatePicker.d.ts +33 -78
- package/lib/components/VDatePicker/VDatePicker.js +1 -1
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +33 -78
- package/lib/components/VEmptyState/VEmptyState.js +3 -1
- package/lib/components/VEmptyState/VEmptyState.js.map +1 -1
- package/lib/components/VField/VField.css +2 -2
- package/lib/components/VField/VField.js +5 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/_variables.scss +1 -1
- package/lib/components/VIcon/VIcon.css +1 -0
- package/lib/components/VIcon/VIcon.d.ts +10 -0
- package/lib/components/VIcon/VIcon.js +6 -3
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/components/VIcon/VIcon.sass +1 -0
- package/lib/components/VInput/VInput.css +7 -7
- package/lib/components/VInput/VInput.sass +5 -2
- package/lib/composables/calendar.d.ts +12 -35
- package/lib/composables/calendar.js +12 -9
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +61 -60
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +33 -78
- package/lib/labs/VDateInput/VDateInput.d.ts +103 -81
- package/lib/labs/VDateInput/VDateInput.js +77 -19
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js +2 -1
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.css +178 -0
- package/lib/labs/VIconBtn/VIconBtn.d.ts +608 -0
- package/lib/labs/VIconBtn/VIconBtn.js +184 -0
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -0
- package/lib/labs/VIconBtn/VIconBtn.scss +110 -0
- package/lib/labs/VIconBtn/_variables.scss +36 -0
- package/lib/labs/VIconBtn/index.d.ts +1 -0
- package/lib/labs/VIconBtn/index.js +2 -0
- package/lib/labs/VIconBtn/index.js.map +1 -0
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/styles/main.css +4 -0
- package/lib/styles/settings/_utilities.scss +5 -0
- package/lib/util/helpers.d.ts +1 -2
- package/lib/util/helpers.js +2 -12
- package/lib/util/helpers.js.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -22007,6 +22007,7 @@ declare const VConfirmEdit: {
|
|
|
22007
22007
|
hideActions: boolean;
|
|
22008
22008
|
} & {
|
|
22009
22009
|
color?: string | undefined;
|
|
22010
|
+
disabled?: boolean | ("cancel" | "save")[] | undefined;
|
|
22010
22011
|
} & {
|
|
22011
22012
|
onCancel?: (() => any) | undefined;
|
|
22012
22013
|
}, {
|
|
@@ -22018,6 +22019,7 @@ declare const VConfirmEdit: {
|
|
|
22018
22019
|
save: (value: any) => true;
|
|
22019
22020
|
'update:modelValue': (value: any) => true;
|
|
22020
22021
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "save">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
22022
|
+
disabled: boolean | ("cancel" | "save")[];
|
|
22021
22023
|
cancelText: string;
|
|
22022
22024
|
okText: string;
|
|
22023
22025
|
hideActions: boolean;
|
|
@@ -22042,6 +22044,7 @@ declare const VConfirmEdit: {
|
|
|
22042
22044
|
hideActions: boolean;
|
|
22043
22045
|
} & {
|
|
22044
22046
|
color?: string | undefined;
|
|
22047
|
+
disabled?: boolean | ("cancel" | "save")[] | undefined;
|
|
22045
22048
|
} & {
|
|
22046
22049
|
onCancel?: (() => any) | undefined;
|
|
22047
22050
|
}, {
|
|
@@ -22049,6 +22052,7 @@ declare const VConfirmEdit: {
|
|
|
22049
22052
|
cancel: () => void;
|
|
22050
22053
|
isPristine: vue.ComputedRef<boolean>;
|
|
22051
22054
|
}, {}, {}, {}, {
|
|
22055
|
+
disabled: boolean | ("cancel" | "save")[];
|
|
22052
22056
|
cancelText: string;
|
|
22053
22057
|
okText: string;
|
|
22054
22058
|
hideActions: boolean;
|
|
@@ -22062,6 +22066,7 @@ declare const VConfirmEdit: {
|
|
|
22062
22066
|
hideActions: boolean;
|
|
22063
22067
|
} & {
|
|
22064
22068
|
color?: string | undefined;
|
|
22069
|
+
disabled?: boolean | ("cancel" | "save")[] | undefined;
|
|
22065
22070
|
} & {
|
|
22066
22071
|
onCancel?: (() => any) | undefined;
|
|
22067
22072
|
}, {
|
|
@@ -22073,6 +22078,7 @@ declare const VConfirmEdit: {
|
|
|
22073
22078
|
save: (value: any) => true;
|
|
22074
22079
|
'update:modelValue': (value: any) => true;
|
|
22075
22080
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue" | "save">, string, {
|
|
22081
|
+
disabled: boolean | ("cancel" | "save")[];
|
|
22076
22082
|
cancelText: string;
|
|
22077
22083
|
okText: string;
|
|
22078
22084
|
hideActions: boolean;
|
|
@@ -22099,6 +22105,10 @@ declare const VConfirmEdit: {
|
|
|
22099
22105
|
type: StringConstructor;
|
|
22100
22106
|
default: string;
|
|
22101
22107
|
};
|
|
22108
|
+
disabled: {
|
|
22109
|
+
type: PropType<boolean | ("save" | "cancel")[]>;
|
|
22110
|
+
default: undefined;
|
|
22111
|
+
};
|
|
22102
22112
|
hideActions: BooleanConstructor;
|
|
22103
22113
|
}, vue.ExtractPropTypes<{
|
|
22104
22114
|
modelValue: null;
|
|
@@ -22111,6 +22121,10 @@ declare const VConfirmEdit: {
|
|
|
22111
22121
|
type: StringConstructor;
|
|
22112
22122
|
default: string;
|
|
22113
22123
|
};
|
|
22124
|
+
disabled: {
|
|
22125
|
+
type: PropType<boolean | ("save" | "cancel")[]>;
|
|
22126
|
+
default: undefined;
|
|
22127
|
+
};
|
|
22114
22128
|
hideActions: BooleanConstructor;
|
|
22115
22129
|
}>>;
|
|
22116
22130
|
type VConfirmEdit = InstanceType<typeof VConfirmEdit>;
|
|
@@ -23031,20 +23045,12 @@ declare const VDataTableHeaders: {
|
|
|
23031
23045
|
}>>;
|
|
23032
23046
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
|
23033
23047
|
|
|
23034
|
-
type
|
|
23035
|
-
|
|
23036
|
-
item: Group;
|
|
23037
|
-
count: number;
|
|
23038
|
-
props: Record<string, unknown>;
|
|
23039
|
-
};
|
|
23040
|
-
'data-table-select': {
|
|
23041
|
-
props: Record<string, unknown>;
|
|
23042
|
-
};
|
|
23048
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
|
23049
|
+
props: Record<string, unknown>;
|
|
23043
23050
|
};
|
|
23044
|
-
|
|
23045
23051
|
type VDataTableRowSlots<T> = {
|
|
23046
|
-
'item.data-table-select':
|
|
23047
|
-
'item.data-table-expand':
|
|
23052
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
|
23053
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
|
23048
23054
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
|
23049
23055
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
|
23050
23056
|
} & {
|
|
@@ -23065,8 +23071,8 @@ declare const VDataTableRow: {
|
|
|
23065
23071
|
}, true, {}, vue.SlotsType<Partial<{
|
|
23066
23072
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
23067
23073
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23068
|
-
'item.data-table-select': (arg:
|
|
23069
|
-
'item.data-table-expand': (arg:
|
|
23074
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23075
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23070
23076
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23071
23077
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23072
23078
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
@@ -23103,8 +23109,8 @@ declare const VDataTableRow: {
|
|
|
23103
23109
|
}, {}, string, vue.SlotsType<Partial<{
|
|
23104
23110
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
23105
23111
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23106
|
-
'item.data-table-select': (arg:
|
|
23107
|
-
'item.data-table-expand': (arg:
|
|
23112
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23113
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23108
23114
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23109
23115
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23110
23116
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
@@ -23137,6 +23143,17 @@ declare const VDataTableRow: {
|
|
|
23137
23143
|
}>>;
|
|
23138
23144
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
|
23139
23145
|
|
|
23146
|
+
type VDataTableGroupHeaderRowSlots = {
|
|
23147
|
+
'data-table-group': {
|
|
23148
|
+
item: Group;
|
|
23149
|
+
count: number;
|
|
23150
|
+
props: Record<string, unknown>;
|
|
23151
|
+
};
|
|
23152
|
+
'data-table-select': {
|
|
23153
|
+
props: Record<string, unknown>;
|
|
23154
|
+
};
|
|
23155
|
+
};
|
|
23156
|
+
|
|
23140
23157
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
|
23141
23158
|
item: ItemSlot$1<T> & {
|
|
23142
23159
|
props: Record<string, any>;
|
|
@@ -23173,8 +23190,8 @@ declare const VDataTableRows: {
|
|
|
23173
23190
|
'data-table-select': (arg: {
|
|
23174
23191
|
props: Record<string, unknown>;
|
|
23175
23192
|
}) => vue.VNode[];
|
|
23176
|
-
'item.data-table-select': (arg:
|
|
23177
|
-
'item.data-table-expand': (arg:
|
|
23193
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23194
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23178
23195
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23179
23196
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23180
23197
|
item: (arg: {
|
|
@@ -23246,8 +23263,8 @@ declare const VDataTableRows: {
|
|
|
23246
23263
|
'data-table-select': (arg: {
|
|
23247
23264
|
props: Record<string, unknown>;
|
|
23248
23265
|
}) => vue.VNode[];
|
|
23249
|
-
'item.data-table-select': (arg:
|
|
23250
|
-
'item.data-table-expand': (arg:
|
|
23266
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23267
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
23251
23268
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23252
23269
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23253
23270
|
item: (arg: {
|
|
@@ -23492,8 +23509,8 @@ declare const VDataTable: {
|
|
|
23492
23509
|
'data-table-select': (arg: {
|
|
23493
23510
|
props: Record<string, unknown>;
|
|
23494
23511
|
}) => vue.VNode[];
|
|
23495
|
-
'item.data-table-select': (arg:
|
|
23496
|
-
'item.data-table-expand': (arg:
|
|
23512
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
23513
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
23497
23514
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23498
23515
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23499
23516
|
item: (arg: {
|
|
@@ -23793,8 +23810,8 @@ declare const VDataTable: {
|
|
|
23793
23810
|
'data-table-select': (arg: {
|
|
23794
23811
|
props: Record<string, unknown>;
|
|
23795
23812
|
}) => vue.VNode[];
|
|
23796
|
-
'item.data-table-select': (arg:
|
|
23797
|
-
'item.data-table-expand': (arg:
|
|
23813
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
23814
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
23798
23815
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23799
23816
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
23800
23817
|
item: (arg: {
|
|
@@ -24584,8 +24601,8 @@ declare const VDataTableVirtual: {
|
|
|
24584
24601
|
'data-table-select': (arg: {
|
|
24585
24602
|
props: Record<string, unknown>;
|
|
24586
24603
|
}) => vue.VNode[];
|
|
24587
|
-
'item.data-table-select': (arg:
|
|
24588
|
-
'item.data-table-expand': (arg:
|
|
24604
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
24605
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
24589
24606
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24590
24607
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24591
24608
|
item: (arg: {
|
|
@@ -24907,8 +24924,8 @@ declare const VDataTableVirtual: {
|
|
|
24907
24924
|
'data-table-select': (arg: {
|
|
24908
24925
|
props: Record<string, unknown>;
|
|
24909
24926
|
}) => vue.VNode[];
|
|
24910
|
-
'item.data-table-select': (arg:
|
|
24911
|
-
'item.data-table-expand': (arg:
|
|
24927
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
24928
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
24912
24929
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24913
24930
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24914
24931
|
item: (arg: {
|
|
@@ -25358,8 +25375,8 @@ declare const VDataTableServer: {
|
|
|
25358
25375
|
'data-table-select': (arg: {
|
|
25359
25376
|
props: Record<string, unknown>;
|
|
25360
25377
|
}) => vue.VNode[];
|
|
25361
|
-
'item.data-table-select': (arg:
|
|
25362
|
-
'item.data-table-expand': (arg:
|
|
25378
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25379
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25363
25380
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25364
25381
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25365
25382
|
item: (arg: {
|
|
@@ -25730,8 +25747,8 @@ declare const VDataTableServer: {
|
|
|
25730
25747
|
'data-table-select': (arg: {
|
|
25731
25748
|
props: Record<string, unknown>;
|
|
25732
25749
|
}) => vue.VNode[];
|
|
25733
|
-
'item.data-table-select': (arg:
|
|
25734
|
-
'item.data-table-expand': (arg:
|
|
25750
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25751
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25735
25752
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25736
25753
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25737
25754
|
item: (arg: {
|
|
@@ -26101,6 +26118,8 @@ declare const VDataTableServer: {
|
|
|
26101
26118
|
}>>;
|
|
26102
26119
|
type VDataTableServer = InstanceType<typeof VDataTableServer>;
|
|
26103
26120
|
|
|
26121
|
+
type CalendarWeekdays = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
26122
|
+
|
|
26104
26123
|
type VPickerSlots = {
|
|
26105
26124
|
header: never;
|
|
26106
26125
|
default: never;
|
|
@@ -26382,8 +26401,9 @@ declare const VDatePicker: {
|
|
|
26382
26401
|
modeIcon: IconValue;
|
|
26383
26402
|
viewMode: "month" | "year" | "months";
|
|
26384
26403
|
showAdjacentMonths: boolean;
|
|
26385
|
-
weekdays:
|
|
26404
|
+
weekdays: CalendarWeekdays[];
|
|
26386
26405
|
weeksInMonth: "static" | "dynamic";
|
|
26406
|
+
firstDayOfWeek: string | number;
|
|
26387
26407
|
hideWeekdays: boolean;
|
|
26388
26408
|
showWeek: boolean;
|
|
26389
26409
|
} & {
|
|
@@ -26410,7 +26430,6 @@ declare const VDatePicker: {
|
|
|
26410
26430
|
bgColor?: string | undefined;
|
|
26411
26431
|
controlHeight?: string | number | undefined;
|
|
26412
26432
|
headerColor?: string | undefined;
|
|
26413
|
-
firstDayOfWeek?: string | number | undefined;
|
|
26414
26433
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26415
26434
|
} & {
|
|
26416
26435
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26440,8 +26459,9 @@ declare const VDatePicker: {
|
|
|
26440
26459
|
modeIcon: IconValue;
|
|
26441
26460
|
viewMode: "month" | "year" | "months";
|
|
26442
26461
|
showAdjacentMonths: boolean;
|
|
26443
|
-
weekdays:
|
|
26462
|
+
weekdays: CalendarWeekdays[];
|
|
26444
26463
|
weeksInMonth: "static" | "dynamic";
|
|
26464
|
+
firstDayOfWeek: string | number;
|
|
26445
26465
|
hideWeekdays: boolean;
|
|
26446
26466
|
showWeek: boolean;
|
|
26447
26467
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -26476,8 +26496,9 @@ declare const VDatePicker: {
|
|
|
26476
26496
|
modeIcon: IconValue;
|
|
26477
26497
|
viewMode: "month" | "year" | "months";
|
|
26478
26498
|
showAdjacentMonths: boolean;
|
|
26479
|
-
weekdays:
|
|
26499
|
+
weekdays: CalendarWeekdays[];
|
|
26480
26500
|
weeksInMonth: "static" | "dynamic";
|
|
26501
|
+
firstDayOfWeek: string | number;
|
|
26481
26502
|
hideWeekdays: boolean;
|
|
26482
26503
|
showWeek: boolean;
|
|
26483
26504
|
} & {
|
|
@@ -26504,7 +26525,6 @@ declare const VDatePicker: {
|
|
|
26504
26525
|
bgColor?: string | undefined;
|
|
26505
26526
|
controlHeight?: string | number | undefined;
|
|
26506
26527
|
headerColor?: string | undefined;
|
|
26507
|
-
firstDayOfWeek?: string | number | undefined;
|
|
26508
26528
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26509
26529
|
} & {
|
|
26510
26530
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26529,8 +26549,9 @@ declare const VDatePicker: {
|
|
|
26529
26549
|
modeIcon: IconValue;
|
|
26530
26550
|
viewMode: "month" | "year" | "months";
|
|
26531
26551
|
showAdjacentMonths: boolean;
|
|
26532
|
-
weekdays:
|
|
26552
|
+
weekdays: CalendarWeekdays[];
|
|
26533
26553
|
weeksInMonth: "static" | "dynamic";
|
|
26554
|
+
firstDayOfWeek: string | number;
|
|
26534
26555
|
hideWeekdays: boolean;
|
|
26535
26556
|
showWeek: boolean;
|
|
26536
26557
|
}>;
|
|
@@ -26554,8 +26575,9 @@ declare const VDatePicker: {
|
|
|
26554
26575
|
modeIcon: IconValue;
|
|
26555
26576
|
viewMode: "month" | "year" | "months";
|
|
26556
26577
|
showAdjacentMonths: boolean;
|
|
26557
|
-
weekdays:
|
|
26578
|
+
weekdays: CalendarWeekdays[];
|
|
26558
26579
|
weeksInMonth: "static" | "dynamic";
|
|
26580
|
+
firstDayOfWeek: string | number;
|
|
26559
26581
|
hideWeekdays: boolean;
|
|
26560
26582
|
showWeek: boolean;
|
|
26561
26583
|
} & {
|
|
@@ -26582,7 +26604,6 @@ declare const VDatePicker: {
|
|
|
26582
26604
|
bgColor?: string | undefined;
|
|
26583
26605
|
controlHeight?: string | number | undefined;
|
|
26584
26606
|
headerColor?: string | undefined;
|
|
26585
|
-
firstDayOfWeek?: string | number | undefined;
|
|
26586
26607
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
26587
26608
|
} & {
|
|
26588
26609
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
@@ -26612,8 +26633,9 @@ declare const VDatePicker: {
|
|
|
26612
26633
|
modeIcon: IconValue;
|
|
26613
26634
|
viewMode: "month" | "year" | "months";
|
|
26614
26635
|
showAdjacentMonths: boolean;
|
|
26615
|
-
weekdays:
|
|
26636
|
+
weekdays: CalendarWeekdays[];
|
|
26616
26637
|
weeksInMonth: "static" | "dynamic";
|
|
26638
|
+
firstDayOfWeek: string | number;
|
|
26617
26639
|
hideWeekdays: boolean;
|
|
26618
26640
|
showWeek: boolean;
|
|
26619
26641
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -26680,22 +26702,7 @@ declare const VDatePicker: {
|
|
|
26680
26702
|
month: (StringConstructor | NumberConstructor)[];
|
|
26681
26703
|
showAdjacentMonths: BooleanConstructor;
|
|
26682
26704
|
weekdays: {
|
|
26683
|
-
type:
|
|
26684
|
-
(arrayLength: number): number[];
|
|
26685
|
-
(...items: number[]): number[];
|
|
26686
|
-
new (arrayLength: number): number[];
|
|
26687
|
-
new (...items: number[]): number[];
|
|
26688
|
-
isArray(arg: any): arg is any[];
|
|
26689
|
-
readonly prototype: any[];
|
|
26690
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
26691
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
26692
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
26693
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
26694
|
-
of<T>(...items: T[]): T[];
|
|
26695
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
26696
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
26697
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
26698
|
-
};
|
|
26705
|
+
type: vue.PropType<CalendarWeekdays[]>;
|
|
26699
26706
|
default: () => number[];
|
|
26700
26707
|
};
|
|
26701
26708
|
weeksInMonth: Omit<{
|
|
@@ -26705,7 +26712,10 @@ declare const VDatePicker: {
|
|
|
26705
26712
|
type: vue.PropType<"static" | "dynamic">;
|
|
26706
26713
|
default: NonNullable<"static" | "dynamic">;
|
|
26707
26714
|
};
|
|
26708
|
-
firstDayOfWeek:
|
|
26715
|
+
firstDayOfWeek: {
|
|
26716
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
26717
|
+
default: number;
|
|
26718
|
+
};
|
|
26709
26719
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
26710
26720
|
hideWeekdays: BooleanConstructor;
|
|
26711
26721
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
|
@@ -26797,22 +26807,7 @@ declare const VDatePicker: {
|
|
|
26797
26807
|
month: (StringConstructor | NumberConstructor)[];
|
|
26798
26808
|
showAdjacentMonths: BooleanConstructor;
|
|
26799
26809
|
weekdays: {
|
|
26800
|
-
type:
|
|
26801
|
-
(arrayLength: number): number[];
|
|
26802
|
-
(...items: number[]): number[];
|
|
26803
|
-
new (arrayLength: number): number[];
|
|
26804
|
-
new (...items: number[]): number[];
|
|
26805
|
-
isArray(arg: any): arg is any[];
|
|
26806
|
-
readonly prototype: any[];
|
|
26807
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
26808
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
26809
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
26810
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
26811
|
-
of<T>(...items: T[]): T[];
|
|
26812
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
26813
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
26814
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
26815
|
-
};
|
|
26810
|
+
type: vue.PropType<CalendarWeekdays[]>;
|
|
26816
26811
|
default: () => number[];
|
|
26817
26812
|
};
|
|
26818
26813
|
weeksInMonth: Omit<{
|
|
@@ -26822,7 +26817,10 @@ declare const VDatePicker: {
|
|
|
26822
26817
|
type: vue.PropType<"static" | "dynamic">;
|
|
26823
26818
|
default: NonNullable<"static" | "dynamic">;
|
|
26824
26819
|
};
|
|
26825
|
-
firstDayOfWeek:
|
|
26820
|
+
firstDayOfWeek: {
|
|
26821
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
26822
|
+
default: number;
|
|
26823
|
+
};
|
|
26826
26824
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
26827
26825
|
hideWeekdays: BooleanConstructor;
|
|
26828
26826
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
|
@@ -27165,8 +27163,9 @@ declare const VDatePickerMonth: {
|
|
|
27165
27163
|
disabled: boolean;
|
|
27166
27164
|
reverseTransition: string;
|
|
27167
27165
|
showAdjacentMonths: boolean;
|
|
27168
|
-
weekdays:
|
|
27166
|
+
weekdays: CalendarWeekdays[];
|
|
27169
27167
|
weeksInMonth: "static" | "dynamic";
|
|
27168
|
+
firstDayOfWeek: string | number;
|
|
27170
27169
|
hideWeekdays: boolean;
|
|
27171
27170
|
showWeek: boolean;
|
|
27172
27171
|
} & {
|
|
@@ -27177,7 +27176,6 @@ declare const VDatePickerMonth: {
|
|
|
27177
27176
|
month?: string | number | undefined;
|
|
27178
27177
|
year?: string | number | undefined;
|
|
27179
27178
|
modelValue?: unknown[] | undefined;
|
|
27180
|
-
firstDayOfWeek?: string | number | undefined;
|
|
27181
27179
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27182
27180
|
} & {
|
|
27183
27181
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27219,8 +27217,9 @@ declare const VDatePickerMonth: {
|
|
|
27219
27217
|
disabled: boolean;
|
|
27220
27218
|
reverseTransition: string;
|
|
27221
27219
|
showAdjacentMonths: boolean;
|
|
27222
|
-
weekdays:
|
|
27220
|
+
weekdays: CalendarWeekdays[];
|
|
27223
27221
|
weeksInMonth: "static" | "dynamic";
|
|
27222
|
+
firstDayOfWeek: string | number;
|
|
27224
27223
|
hideWeekdays: boolean;
|
|
27225
27224
|
showWeek: boolean;
|
|
27226
27225
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -27243,8 +27242,9 @@ declare const VDatePickerMonth: {
|
|
|
27243
27242
|
disabled: boolean;
|
|
27244
27243
|
reverseTransition: string;
|
|
27245
27244
|
showAdjacentMonths: boolean;
|
|
27246
|
-
weekdays:
|
|
27245
|
+
weekdays: CalendarWeekdays[];
|
|
27247
27246
|
weeksInMonth: "static" | "dynamic";
|
|
27247
|
+
firstDayOfWeek: string | number;
|
|
27248
27248
|
hideWeekdays: boolean;
|
|
27249
27249
|
showWeek: boolean;
|
|
27250
27250
|
} & {
|
|
@@ -27255,7 +27255,6 @@ declare const VDatePickerMonth: {
|
|
|
27255
27255
|
month?: string | number | undefined;
|
|
27256
27256
|
year?: string | number | undefined;
|
|
27257
27257
|
modelValue?: unknown[] | undefined;
|
|
27258
|
-
firstDayOfWeek?: string | number | undefined;
|
|
27259
27258
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27260
27259
|
} & {
|
|
27261
27260
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27293,8 +27292,9 @@ declare const VDatePickerMonth: {
|
|
|
27293
27292
|
disabled: boolean;
|
|
27294
27293
|
reverseTransition: string;
|
|
27295
27294
|
showAdjacentMonths: boolean;
|
|
27296
|
-
weekdays:
|
|
27295
|
+
weekdays: CalendarWeekdays[];
|
|
27297
27296
|
weeksInMonth: "static" | "dynamic";
|
|
27297
|
+
firstDayOfWeek: string | number;
|
|
27298
27298
|
hideWeekdays: boolean;
|
|
27299
27299
|
showWeek: boolean;
|
|
27300
27300
|
}>;
|
|
@@ -27306,8 +27306,9 @@ declare const VDatePickerMonth: {
|
|
|
27306
27306
|
disabled: boolean;
|
|
27307
27307
|
reverseTransition: string;
|
|
27308
27308
|
showAdjacentMonths: boolean;
|
|
27309
|
-
weekdays:
|
|
27309
|
+
weekdays: CalendarWeekdays[];
|
|
27310
27310
|
weeksInMonth: "static" | "dynamic";
|
|
27311
|
+
firstDayOfWeek: string | number;
|
|
27311
27312
|
hideWeekdays: boolean;
|
|
27312
27313
|
showWeek: boolean;
|
|
27313
27314
|
} & {
|
|
@@ -27318,7 +27319,6 @@ declare const VDatePickerMonth: {
|
|
|
27318
27319
|
month?: string | number | undefined;
|
|
27319
27320
|
year?: string | number | undefined;
|
|
27320
27321
|
modelValue?: unknown[] | undefined;
|
|
27321
|
-
firstDayOfWeek?: string | number | undefined;
|
|
27322
27322
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
27323
27323
|
} & {
|
|
27324
27324
|
$children?: {} | vue.VNodeChild | {
|
|
@@ -27360,8 +27360,9 @@ declare const VDatePickerMonth: {
|
|
|
27360
27360
|
disabled: boolean;
|
|
27361
27361
|
reverseTransition: string;
|
|
27362
27362
|
showAdjacentMonths: boolean;
|
|
27363
|
-
weekdays:
|
|
27363
|
+
weekdays: CalendarWeekdays[];
|
|
27364
27364
|
weeksInMonth: "static" | "dynamic";
|
|
27365
|
+
firstDayOfWeek: string | number;
|
|
27365
27366
|
hideWeekdays: boolean;
|
|
27366
27367
|
showWeek: boolean;
|
|
27367
27368
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -27384,29 +27385,17 @@ declare const VDatePickerMonth: {
|
|
|
27384
27385
|
modelValue: PropType<unknown[]>;
|
|
27385
27386
|
showAdjacentMonths: BooleanConstructor;
|
|
27386
27387
|
weekdays: {
|
|
27387
|
-
type:
|
|
27388
|
-
(arrayLength: number): number[];
|
|
27389
|
-
(...items: number[]): number[];
|
|
27390
|
-
new (arrayLength: number): number[];
|
|
27391
|
-
new (...items: number[]): number[];
|
|
27392
|
-
isArray(arg: any): arg is any[];
|
|
27393
|
-
readonly prototype: any[];
|
|
27394
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
27395
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27396
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
27397
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27398
|
-
of<T>(...items: T[]): T[];
|
|
27399
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
27400
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
27401
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
27402
|
-
};
|
|
27388
|
+
type: PropType<CalendarWeekdays[]>;
|
|
27403
27389
|
default: () => number[];
|
|
27404
27390
|
};
|
|
27405
27391
|
weeksInMonth: {
|
|
27406
27392
|
type: PropType<"dynamic" | "static">;
|
|
27407
27393
|
default: string;
|
|
27408
27394
|
};
|
|
27409
|
-
firstDayOfWeek:
|
|
27395
|
+
firstDayOfWeek: {
|
|
27396
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
27397
|
+
default: number;
|
|
27398
|
+
};
|
|
27410
27399
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
27411
27400
|
color: StringConstructor;
|
|
27412
27401
|
hideWeekdays: BooleanConstructor;
|
|
@@ -27432,29 +27421,17 @@ declare const VDatePickerMonth: {
|
|
|
27432
27421
|
modelValue: PropType<unknown[]>;
|
|
27433
27422
|
showAdjacentMonths: BooleanConstructor;
|
|
27434
27423
|
weekdays: {
|
|
27435
|
-
type:
|
|
27436
|
-
(arrayLength: number): number[];
|
|
27437
|
-
(...items: number[]): number[];
|
|
27438
|
-
new (arrayLength: number): number[];
|
|
27439
|
-
new (...items: number[]): number[];
|
|
27440
|
-
isArray(arg: any): arg is any[];
|
|
27441
|
-
readonly prototype: any[];
|
|
27442
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
27443
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27444
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
27445
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
27446
|
-
of<T>(...items: T[]): T[];
|
|
27447
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
27448
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
27449
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
27450
|
-
};
|
|
27424
|
+
type: PropType<CalendarWeekdays[]>;
|
|
27451
27425
|
default: () => number[];
|
|
27452
27426
|
};
|
|
27453
27427
|
weeksInMonth: {
|
|
27454
27428
|
type: PropType<"dynamic" | "static">;
|
|
27455
27429
|
default: string;
|
|
27456
27430
|
};
|
|
27457
|
-
firstDayOfWeek:
|
|
27431
|
+
firstDayOfWeek: {
|
|
27432
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
27433
|
+
default: number;
|
|
27434
|
+
};
|
|
27458
27435
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
27459
27436
|
color: StringConstructor;
|
|
27460
27437
|
hideWeekdays: BooleanConstructor;
|
|
@@ -35370,6 +35347,7 @@ declare const VIcon: {
|
|
|
35370
35347
|
tag: string | JSXComponent;
|
|
35371
35348
|
} & {
|
|
35372
35349
|
color?: string | undefined;
|
|
35350
|
+
opacity?: string | number | undefined;
|
|
35373
35351
|
class?: any;
|
|
35374
35352
|
theme?: string | undefined;
|
|
35375
35353
|
icon?: IconValue | undefined;
|
|
@@ -35407,6 +35385,7 @@ declare const VIcon: {
|
|
|
35407
35385
|
tag: string | JSXComponent;
|
|
35408
35386
|
} & {
|
|
35409
35387
|
color?: string | undefined;
|
|
35388
|
+
opacity?: string | number | undefined;
|
|
35410
35389
|
class?: any;
|
|
35411
35390
|
theme?: string | undefined;
|
|
35412
35391
|
icon?: IconValue | undefined;
|
|
@@ -35439,6 +35418,7 @@ declare const VIcon: {
|
|
|
35439
35418
|
tag: string | JSXComponent;
|
|
35440
35419
|
} & {
|
|
35441
35420
|
color?: string | undefined;
|
|
35421
|
+
opacity?: string | number | undefined;
|
|
35442
35422
|
class?: any;
|
|
35443
35423
|
theme?: string | undefined;
|
|
35444
35424
|
icon?: IconValue | undefined;
|
|
@@ -35483,6 +35463,7 @@ declare const VIcon: {
|
|
|
35483
35463
|
start: BooleanConstructor;
|
|
35484
35464
|
end: BooleanConstructor;
|
|
35485
35465
|
icon: vue.PropType<IconValue>;
|
|
35466
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
35486
35467
|
}, vue.ExtractPropTypes<{
|
|
35487
35468
|
theme: StringConstructor;
|
|
35488
35469
|
tag: Omit<{
|
|
@@ -35506,6 +35487,7 @@ declare const VIcon: {
|
|
|
35506
35487
|
start: BooleanConstructor;
|
|
35507
35488
|
end: BooleanConstructor;
|
|
35508
35489
|
icon: vue.PropType<IconValue>;
|
|
35490
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
35509
35491
|
}>>;
|
|
35510
35492
|
type VIcon = InstanceType<typeof VIcon>;
|
|
35511
35493
|
|
|
@@ -65205,8 +65187,9 @@ declare const VCalendar: {
|
|
|
65205
65187
|
hideHeader: boolean;
|
|
65206
65188
|
viewMode: "day" | "month" | "week";
|
|
65207
65189
|
showAdjacentMonths: boolean;
|
|
65208
|
-
weekdays:
|
|
65190
|
+
weekdays: CalendarWeekdays[];
|
|
65209
65191
|
weeksInMonth: "static" | "dynamic";
|
|
65192
|
+
firstDayOfWeek: string | number;
|
|
65210
65193
|
intervalDivisions: number;
|
|
65211
65194
|
intervalDuration: number;
|
|
65212
65195
|
intervalHeight: number;
|
|
@@ -65223,7 +65206,6 @@ declare const VCalendar: {
|
|
|
65223
65206
|
year?: string | number | undefined;
|
|
65224
65207
|
events?: any[] | undefined;
|
|
65225
65208
|
modelValue?: unknown[] | undefined;
|
|
65226
|
-
firstDayOfWeek?: string | number | undefined;
|
|
65227
65209
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
65228
65210
|
displayValue?: unknown;
|
|
65229
65211
|
dayIndex?: number | undefined;
|
|
@@ -65329,8 +65311,9 @@ declare const VCalendar: {
|
|
|
65329
65311
|
hideHeader: boolean;
|
|
65330
65312
|
viewMode: "day" | "month" | "week";
|
|
65331
65313
|
showAdjacentMonths: boolean;
|
|
65332
|
-
weekdays:
|
|
65314
|
+
weekdays: CalendarWeekdays[];
|
|
65333
65315
|
weeksInMonth: "static" | "dynamic";
|
|
65316
|
+
firstDayOfWeek: string | number;
|
|
65334
65317
|
intervalDivisions: number;
|
|
65335
65318
|
intervalDuration: number;
|
|
65336
65319
|
intervalHeight: number;
|
|
@@ -65364,8 +65347,9 @@ declare const VCalendar: {
|
|
|
65364
65347
|
hideHeader: boolean;
|
|
65365
65348
|
viewMode: "day" | "month" | "week";
|
|
65366
65349
|
showAdjacentMonths: boolean;
|
|
65367
|
-
weekdays:
|
|
65350
|
+
weekdays: CalendarWeekdays[];
|
|
65368
65351
|
weeksInMonth: "static" | "dynamic";
|
|
65352
|
+
firstDayOfWeek: string | number;
|
|
65369
65353
|
intervalDivisions: number;
|
|
65370
65354
|
intervalDuration: number;
|
|
65371
65355
|
intervalHeight: number;
|
|
@@ -65382,7 +65366,6 @@ declare const VCalendar: {
|
|
|
65382
65366
|
year?: string | number | undefined;
|
|
65383
65367
|
events?: any[] | undefined;
|
|
65384
65368
|
modelValue?: unknown[] | undefined;
|
|
65385
|
-
firstDayOfWeek?: string | number | undefined;
|
|
65386
65369
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
65387
65370
|
displayValue?: unknown;
|
|
65388
65371
|
dayIndex?: number | undefined;
|
|
@@ -65484,8 +65467,9 @@ declare const VCalendar: {
|
|
|
65484
65467
|
hideHeader: boolean;
|
|
65485
65468
|
viewMode: "day" | "month" | "week";
|
|
65486
65469
|
showAdjacentMonths: boolean;
|
|
65487
|
-
weekdays:
|
|
65470
|
+
weekdays: CalendarWeekdays[];
|
|
65488
65471
|
weeksInMonth: "static" | "dynamic";
|
|
65472
|
+
firstDayOfWeek: string | number;
|
|
65489
65473
|
intervalDivisions: number;
|
|
65490
65474
|
intervalDuration: number;
|
|
65491
65475
|
intervalHeight: number;
|
|
@@ -65507,8 +65491,9 @@ declare const VCalendar: {
|
|
|
65507
65491
|
hideHeader: boolean;
|
|
65508
65492
|
viewMode: "day" | "month" | "week";
|
|
65509
65493
|
showAdjacentMonths: boolean;
|
|
65510
|
-
weekdays:
|
|
65494
|
+
weekdays: CalendarWeekdays[];
|
|
65511
65495
|
weeksInMonth: "static" | "dynamic";
|
|
65496
|
+
firstDayOfWeek: string | number;
|
|
65512
65497
|
intervalDivisions: number;
|
|
65513
65498
|
intervalDuration: number;
|
|
65514
65499
|
intervalHeight: number;
|
|
@@ -65525,7 +65510,6 @@ declare const VCalendar: {
|
|
|
65525
65510
|
year?: string | number | undefined;
|
|
65526
65511
|
events?: any[] | undefined;
|
|
65527
65512
|
modelValue?: unknown[] | undefined;
|
|
65528
|
-
firstDayOfWeek?: string | number | undefined;
|
|
65529
65513
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
65530
65514
|
displayValue?: unknown;
|
|
65531
65515
|
dayIndex?: number | undefined;
|
|
@@ -65631,8 +65615,9 @@ declare const VCalendar: {
|
|
|
65631
65615
|
hideHeader: boolean;
|
|
65632
65616
|
viewMode: "day" | "month" | "week";
|
|
65633
65617
|
showAdjacentMonths: boolean;
|
|
65634
|
-
weekdays:
|
|
65618
|
+
weekdays: CalendarWeekdays[];
|
|
65635
65619
|
weeksInMonth: "static" | "dynamic";
|
|
65620
|
+
firstDayOfWeek: string | number;
|
|
65636
65621
|
intervalDivisions: number;
|
|
65637
65622
|
intervalDuration: number;
|
|
65638
65623
|
intervalHeight: number;
|
|
@@ -65727,29 +65712,17 @@ declare const VCalendar: {
|
|
|
65727
65712
|
showAdjacentMonths: BooleanConstructor;
|
|
65728
65713
|
year: (StringConstructor | NumberConstructor)[];
|
|
65729
65714
|
weekdays: {
|
|
65730
|
-
type:
|
|
65731
|
-
(arrayLength: number): number[];
|
|
65732
|
-
(...items: number[]): number[];
|
|
65733
|
-
new (arrayLength: number): number[];
|
|
65734
|
-
new (...items: number[]): number[];
|
|
65735
|
-
isArray(arg: any): arg is any[];
|
|
65736
|
-
readonly prototype: any[];
|
|
65737
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
65738
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
65739
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
65740
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
65741
|
-
of<T>(...items: T[]): T[];
|
|
65742
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
65743
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
65744
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
65745
|
-
};
|
|
65715
|
+
type: vue.PropType<CalendarWeekdays[]>;
|
|
65746
65716
|
default: () => number[];
|
|
65747
65717
|
};
|
|
65748
65718
|
weeksInMonth: {
|
|
65749
65719
|
type: vue.PropType<"dynamic" | "static">;
|
|
65750
65720
|
default: string;
|
|
65751
65721
|
};
|
|
65752
|
-
firstDayOfWeek:
|
|
65722
|
+
firstDayOfWeek: {
|
|
65723
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
65724
|
+
default: number;
|
|
65725
|
+
};
|
|
65753
65726
|
hideHeader: BooleanConstructor;
|
|
65754
65727
|
hideWeekNumber: BooleanConstructor;
|
|
65755
65728
|
}, vue.ExtractPropTypes<{
|
|
@@ -65829,29 +65802,17 @@ declare const VCalendar: {
|
|
|
65829
65802
|
showAdjacentMonths: BooleanConstructor;
|
|
65830
65803
|
year: (StringConstructor | NumberConstructor)[];
|
|
65831
65804
|
weekdays: {
|
|
65832
|
-
type:
|
|
65833
|
-
(arrayLength: number): number[];
|
|
65834
|
-
(...items: number[]): number[];
|
|
65835
|
-
new (arrayLength: number): number[];
|
|
65836
|
-
new (...items: number[]): number[];
|
|
65837
|
-
isArray(arg: any): arg is any[];
|
|
65838
|
-
readonly prototype: any[];
|
|
65839
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
65840
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
65841
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
65842
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
65843
|
-
of<T>(...items: T[]): T[];
|
|
65844
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
65845
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
65846
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
65847
|
-
};
|
|
65805
|
+
type: vue.PropType<CalendarWeekdays[]>;
|
|
65848
65806
|
default: () => number[];
|
|
65849
65807
|
};
|
|
65850
65808
|
weeksInMonth: {
|
|
65851
65809
|
type: vue.PropType<"dynamic" | "static">;
|
|
65852
65810
|
default: string;
|
|
65853
65811
|
};
|
|
65854
|
-
firstDayOfWeek:
|
|
65812
|
+
firstDayOfWeek: {
|
|
65813
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
65814
|
+
default: number;
|
|
65815
|
+
};
|
|
65855
65816
|
hideHeader: BooleanConstructor;
|
|
65856
65817
|
hideWeekNumber: BooleanConstructor;
|
|
65857
65818
|
}>>;
|
|
@@ -66767,6 +66728,7 @@ declare const VDateInput: {
|
|
|
66767
66728
|
style: vue.StyleValue;
|
|
66768
66729
|
title: string;
|
|
66769
66730
|
autofocus: boolean;
|
|
66731
|
+
mobile: boolean | null;
|
|
66770
66732
|
disabled: boolean;
|
|
66771
66733
|
readonly: boolean | null;
|
|
66772
66734
|
tag: string | JSXComponent;
|
|
@@ -66801,8 +66763,9 @@ declare const VDateInput: {
|
|
|
66801
66763
|
modeIcon: IconValue;
|
|
66802
66764
|
viewMode: "month" | "year" | "months";
|
|
66803
66765
|
showAdjacentMonths: boolean;
|
|
66804
|
-
weekdays:
|
|
66766
|
+
weekdays: CalendarWeekdays[];
|
|
66805
66767
|
weeksInMonth: "static" | "dynamic";
|
|
66768
|
+
firstDayOfWeek: string | number;
|
|
66806
66769
|
hideWeekdays: boolean;
|
|
66807
66770
|
showWeek: boolean;
|
|
66808
66771
|
} & {
|
|
@@ -66831,6 +66794,7 @@ declare const VDateInput: {
|
|
|
66831
66794
|
theme?: string | undefined;
|
|
66832
66795
|
elevation?: string | number | undefined;
|
|
66833
66796
|
counter?: string | number | boolean | undefined;
|
|
66797
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
66834
66798
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
66835
66799
|
modelValue?: any;
|
|
66836
66800
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
|
@@ -66855,8 +66819,8 @@ declare const VDateInput: {
|
|
|
66855
66819
|
suffix?: string | undefined;
|
|
66856
66820
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
66857
66821
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
66858
|
-
firstDayOfWeek?: string | number | undefined;
|
|
66859
66822
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
66823
|
+
displayFormat?: string | Function | undefined;
|
|
66860
66824
|
} & {
|
|
66861
66825
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
66862
66826
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -66915,8 +66879,12 @@ declare const VDateInput: {
|
|
|
66915
66879
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
66916
66880
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
66917
66881
|
} & {
|
|
66882
|
+
onCancel?: (() => any) | undefined;
|
|
66918
66883
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
66884
|
+
onSave?: ((value: string) => any) | undefined;
|
|
66919
66885
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
66886
|
+
save: (value: string) => true;
|
|
66887
|
+
cancel: () => true;
|
|
66920
66888
|
'update:modelValue': (val: string) => true;
|
|
66921
66889
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
66922
66890
|
flat: boolean;
|
|
@@ -66932,6 +66900,7 @@ declare const VDateInput: {
|
|
|
66932
66900
|
style: vue.StyleValue;
|
|
66933
66901
|
title: string;
|
|
66934
66902
|
autofocus: boolean;
|
|
66903
|
+
mobile: boolean | null;
|
|
66935
66904
|
disabled: boolean;
|
|
66936
66905
|
readonly: boolean | null;
|
|
66937
66906
|
tag: string | JSXComponent;
|
|
@@ -66968,8 +66937,9 @@ declare const VDateInput: {
|
|
|
66968
66937
|
modeIcon: IconValue;
|
|
66969
66938
|
viewMode: "month" | "year" | "months";
|
|
66970
66939
|
showAdjacentMonths: boolean;
|
|
66971
|
-
weekdays:
|
|
66940
|
+
weekdays: CalendarWeekdays[];
|
|
66972
66941
|
weeksInMonth: "static" | "dynamic";
|
|
66942
|
+
firstDayOfWeek: string | number;
|
|
66973
66943
|
hideWeekdays: boolean;
|
|
66974
66944
|
showWeek: boolean;
|
|
66975
66945
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -67011,6 +66981,7 @@ declare const VDateInput: {
|
|
|
67011
66981
|
style: vue.StyleValue;
|
|
67012
66982
|
title: string;
|
|
67013
66983
|
autofocus: boolean;
|
|
66984
|
+
mobile: boolean | null;
|
|
67014
66985
|
disabled: boolean;
|
|
67015
66986
|
readonly: boolean | null;
|
|
67016
66987
|
tag: string | JSXComponent;
|
|
@@ -67045,8 +67016,9 @@ declare const VDateInput: {
|
|
|
67045
67016
|
modeIcon: IconValue;
|
|
67046
67017
|
viewMode: "month" | "year" | "months";
|
|
67047
67018
|
showAdjacentMonths: boolean;
|
|
67048
|
-
weekdays:
|
|
67019
|
+
weekdays: CalendarWeekdays[];
|
|
67049
67020
|
weeksInMonth: "static" | "dynamic";
|
|
67021
|
+
firstDayOfWeek: string | number;
|
|
67050
67022
|
hideWeekdays: boolean;
|
|
67051
67023
|
showWeek: boolean;
|
|
67052
67024
|
} & {
|
|
@@ -67075,6 +67047,7 @@ declare const VDateInput: {
|
|
|
67075
67047
|
theme?: string | undefined;
|
|
67076
67048
|
elevation?: string | number | undefined;
|
|
67077
67049
|
counter?: string | number | boolean | undefined;
|
|
67050
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
67078
67051
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
67079
67052
|
modelValue?: any;
|
|
67080
67053
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
|
@@ -67099,8 +67072,8 @@ declare const VDateInput: {
|
|
|
67099
67072
|
suffix?: string | undefined;
|
|
67100
67073
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
67101
67074
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
67102
|
-
firstDayOfWeek?: string | number | undefined;
|
|
67103
67075
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
67076
|
+
displayFormat?: string | Function | undefined;
|
|
67104
67077
|
} & {
|
|
67105
67078
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
67106
67079
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -67159,7 +67132,9 @@ declare const VDateInput: {
|
|
|
67159
67132
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
67160
67133
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
67161
67134
|
} & {
|
|
67135
|
+
onCancel?: (() => any) | undefined;
|
|
67162
67136
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
67137
|
+
onSave?: ((value: string) => any) | undefined;
|
|
67163
67138
|
}, any, {}, {}, {}, {
|
|
67164
67139
|
flat: boolean;
|
|
67165
67140
|
reverse: boolean;
|
|
@@ -67174,6 +67149,7 @@ declare const VDateInput: {
|
|
|
67174
67149
|
style: vue.StyleValue;
|
|
67175
67150
|
title: string;
|
|
67176
67151
|
autofocus: boolean;
|
|
67152
|
+
mobile: boolean | null;
|
|
67177
67153
|
disabled: boolean;
|
|
67178
67154
|
readonly: boolean | null;
|
|
67179
67155
|
tag: string | JSXComponent;
|
|
@@ -67210,8 +67186,9 @@ declare const VDateInput: {
|
|
|
67210
67186
|
modeIcon: IconValue;
|
|
67211
67187
|
viewMode: "month" | "year" | "months";
|
|
67212
67188
|
showAdjacentMonths: boolean;
|
|
67213
|
-
weekdays:
|
|
67189
|
+
weekdays: CalendarWeekdays[];
|
|
67214
67190
|
weeksInMonth: "static" | "dynamic";
|
|
67191
|
+
firstDayOfWeek: string | number;
|
|
67215
67192
|
hideWeekdays: boolean;
|
|
67216
67193
|
showWeek: boolean;
|
|
67217
67194
|
}>;
|
|
@@ -67232,6 +67209,7 @@ declare const VDateInput: {
|
|
|
67232
67209
|
style: vue.StyleValue;
|
|
67233
67210
|
title: string;
|
|
67234
67211
|
autofocus: boolean;
|
|
67212
|
+
mobile: boolean | null;
|
|
67235
67213
|
disabled: boolean;
|
|
67236
67214
|
readonly: boolean | null;
|
|
67237
67215
|
tag: string | JSXComponent;
|
|
@@ -67266,8 +67244,9 @@ declare const VDateInput: {
|
|
|
67266
67244
|
modeIcon: IconValue;
|
|
67267
67245
|
viewMode: "month" | "year" | "months";
|
|
67268
67246
|
showAdjacentMonths: boolean;
|
|
67269
|
-
weekdays:
|
|
67247
|
+
weekdays: CalendarWeekdays[];
|
|
67270
67248
|
weeksInMonth: "static" | "dynamic";
|
|
67249
|
+
firstDayOfWeek: string | number;
|
|
67271
67250
|
hideWeekdays: boolean;
|
|
67272
67251
|
showWeek: boolean;
|
|
67273
67252
|
} & {
|
|
@@ -67296,6 +67275,7 @@ declare const VDateInput: {
|
|
|
67296
67275
|
theme?: string | undefined;
|
|
67297
67276
|
elevation?: string | number | undefined;
|
|
67298
67277
|
counter?: string | number | boolean | undefined;
|
|
67278
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
67299
67279
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
67300
67280
|
modelValue?: any;
|
|
67301
67281
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
|
@@ -67320,8 +67300,8 @@ declare const VDateInput: {
|
|
|
67320
67300
|
suffix?: string | undefined;
|
|
67321
67301
|
counterValue?: number | ((value: any) => number) | undefined;
|
|
67322
67302
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
67323
|
-
firstDayOfWeek?: string | number | undefined;
|
|
67324
67303
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
67304
|
+
displayFormat?: string | Function | undefined;
|
|
67325
67305
|
} & {
|
|
67326
67306
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
67327
67307
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -67380,8 +67360,12 @@ declare const VDateInput: {
|
|
|
67380
67360
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
67381
67361
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
67382
67362
|
} & {
|
|
67363
|
+
onCancel?: (() => any) | undefined;
|
|
67383
67364
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
67365
|
+
onSave?: ((value: string) => any) | undefined;
|
|
67384
67366
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
67367
|
+
save: (value: string) => true;
|
|
67368
|
+
cancel: () => true;
|
|
67385
67369
|
'update:modelValue': (val: string) => true;
|
|
67386
67370
|
}, string, {
|
|
67387
67371
|
flat: boolean;
|
|
@@ -67397,6 +67381,7 @@ declare const VDateInput: {
|
|
|
67397
67381
|
style: vue.StyleValue;
|
|
67398
67382
|
title: string;
|
|
67399
67383
|
autofocus: boolean;
|
|
67384
|
+
mobile: boolean | null;
|
|
67400
67385
|
disabled: boolean;
|
|
67401
67386
|
readonly: boolean | null;
|
|
67402
67387
|
tag: string | JSXComponent;
|
|
@@ -67433,8 +67418,9 @@ declare const VDateInput: {
|
|
|
67433
67418
|
modeIcon: IconValue;
|
|
67434
67419
|
viewMode: "month" | "year" | "months";
|
|
67435
67420
|
showAdjacentMonths: boolean;
|
|
67436
|
-
weekdays:
|
|
67421
|
+
weekdays: CalendarWeekdays[];
|
|
67437
67422
|
weeksInMonth: "static" | "dynamic";
|
|
67423
|
+
firstDayOfWeek: string | number;
|
|
67438
67424
|
hideWeekdays: boolean;
|
|
67439
67425
|
showWeek: boolean;
|
|
67440
67426
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -67540,22 +67526,7 @@ declare const VDateInput: {
|
|
|
67540
67526
|
default: boolean;
|
|
67541
67527
|
};
|
|
67542
67528
|
weekdays: {
|
|
67543
|
-
type:
|
|
67544
|
-
(arrayLength: number): number[];
|
|
67545
|
-
(...items: number[]): number[];
|
|
67546
|
-
new (arrayLength: number): number[];
|
|
67547
|
-
new (...items: number[]): number[];
|
|
67548
|
-
isArray(arg: any): arg is any[];
|
|
67549
|
-
readonly prototype: any[];
|
|
67550
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
67551
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
67552
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
67553
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
67554
|
-
of<T>(...items: T[]): T[];
|
|
67555
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
67556
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
67557
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
67558
|
-
};
|
|
67529
|
+
type: PropType<CalendarWeekdays[]>;
|
|
67559
67530
|
default: () => number[];
|
|
67560
67531
|
};
|
|
67561
67532
|
weeksInMonth: Omit<{
|
|
@@ -67565,7 +67536,10 @@ declare const VDateInput: {
|
|
|
67565
67536
|
type: PropType<"static" | "dynamic">;
|
|
67566
67537
|
default: NonNullable<"static" | "dynamic">;
|
|
67567
67538
|
};
|
|
67568
|
-
firstDayOfWeek:
|
|
67539
|
+
firstDayOfWeek: {
|
|
67540
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
67541
|
+
default: number;
|
|
67542
|
+
};
|
|
67569
67543
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
67570
67544
|
hideWeekdays: BooleanConstructor;
|
|
67571
67545
|
showWeek: BooleanConstructor;
|
|
@@ -67676,7 +67650,16 @@ declare const VDateInput: {
|
|
|
67676
67650
|
type: StringConstructor;
|
|
67677
67651
|
default: string;
|
|
67678
67652
|
};
|
|
67679
|
-
hideActions:
|
|
67653
|
+
hideActions: {
|
|
67654
|
+
type: PropType<boolean>;
|
|
67655
|
+
default: boolean;
|
|
67656
|
+
};
|
|
67657
|
+
mobile: {
|
|
67658
|
+
type: PropType<boolean | null>;
|
|
67659
|
+
default: boolean;
|
|
67660
|
+
};
|
|
67661
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
67662
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
|
67680
67663
|
location: {
|
|
67681
67664
|
type: PropType<StrategyProps$1["location"]>;
|
|
67682
67665
|
default: string;
|
|
@@ -67766,22 +67749,7 @@ declare const VDateInput: {
|
|
|
67766
67749
|
default: boolean;
|
|
67767
67750
|
};
|
|
67768
67751
|
weekdays: {
|
|
67769
|
-
type:
|
|
67770
|
-
(arrayLength: number): number[];
|
|
67771
|
-
(...items: number[]): number[];
|
|
67772
|
-
new (arrayLength: number): number[];
|
|
67773
|
-
new (...items: number[]): number[];
|
|
67774
|
-
isArray(arg: any): arg is any[];
|
|
67775
|
-
readonly prototype: any[];
|
|
67776
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
67777
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
67778
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
67779
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
67780
|
-
of<T>(...items: T[]): T[];
|
|
67781
|
-
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
67782
|
-
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
67783
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
67784
|
-
};
|
|
67752
|
+
type: PropType<CalendarWeekdays[]>;
|
|
67785
67753
|
default: () => number[];
|
|
67786
67754
|
};
|
|
67787
67755
|
weeksInMonth: Omit<{
|
|
@@ -67791,7 +67759,10 @@ declare const VDateInput: {
|
|
|
67791
67759
|
type: PropType<"static" | "dynamic">;
|
|
67792
67760
|
default: NonNullable<"static" | "dynamic">;
|
|
67793
67761
|
};
|
|
67794
|
-
firstDayOfWeek:
|
|
67762
|
+
firstDayOfWeek: {
|
|
67763
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
67764
|
+
default: number;
|
|
67765
|
+
};
|
|
67795
67766
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
67796
67767
|
hideWeekdays: BooleanConstructor;
|
|
67797
67768
|
showWeek: BooleanConstructor;
|
|
@@ -67902,7 +67873,16 @@ declare const VDateInput: {
|
|
|
67902
67873
|
type: StringConstructor;
|
|
67903
67874
|
default: string;
|
|
67904
67875
|
};
|
|
67905
|
-
hideActions:
|
|
67876
|
+
hideActions: {
|
|
67877
|
+
type: PropType<boolean>;
|
|
67878
|
+
default: boolean;
|
|
67879
|
+
};
|
|
67880
|
+
mobile: {
|
|
67881
|
+
type: PropType<boolean | null>;
|
|
67882
|
+
default: boolean;
|
|
67883
|
+
};
|
|
67884
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
67885
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
|
67906
67886
|
location: {
|
|
67907
67887
|
type: PropType<StrategyProps$1["location"]>;
|
|
67908
67888
|
default: string;
|
|
@@ -69052,6 +69032,369 @@ declare const VFileUploadItem: {
|
|
|
69052
69032
|
}>>;
|
|
69053
69033
|
type VFileUploadItem = InstanceType<typeof VFileUploadItem>;
|
|
69054
69034
|
|
|
69035
|
+
type VIconBtnSizes = 'x-small' | 'small' | 'default' | 'large' | 'x-large';
|
|
69036
|
+
declare const VIconBtn: {
|
|
69037
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
69038
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69039
|
+
loading: boolean;
|
|
69040
|
+
style: vue.StyleValue;
|
|
69041
|
+
disabled: boolean;
|
|
69042
|
+
size: string | number;
|
|
69043
|
+
readonly: boolean;
|
|
69044
|
+
tag: string | JSXComponent;
|
|
69045
|
+
sizes: [VIconBtnSizes, number][];
|
|
69046
|
+
tile: boolean;
|
|
69047
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69048
|
+
hideOverlay: boolean;
|
|
69049
|
+
iconSize: string | number;
|
|
69050
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69051
|
+
} & {
|
|
69052
|
+
height?: string | number | undefined;
|
|
69053
|
+
width?: string | number | undefined;
|
|
69054
|
+
active?: boolean | undefined;
|
|
69055
|
+
border?: string | number | boolean | undefined;
|
|
69056
|
+
color?: string | undefined;
|
|
69057
|
+
opacity?: string | number | undefined;
|
|
69058
|
+
rotate?: string | number | undefined;
|
|
69059
|
+
text?: string | number | boolean | undefined;
|
|
69060
|
+
class?: any;
|
|
69061
|
+
theme?: string | undefined;
|
|
69062
|
+
icon?: IconValue | undefined;
|
|
69063
|
+
elevation?: string | number | undefined;
|
|
69064
|
+
rounded?: string | number | boolean | undefined;
|
|
69065
|
+
activeColor?: string | undefined;
|
|
69066
|
+
iconColor?: string | undefined;
|
|
69067
|
+
activeIcon?: IconValue | undefined;
|
|
69068
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
|
69069
|
+
} & {
|
|
69070
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69071
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
69072
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
69073
|
+
};
|
|
69074
|
+
'v-slots'?: {
|
|
69075
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
69076
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
69077
|
+
} | undefined;
|
|
69078
|
+
} & {
|
|
69079
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69080
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
69081
|
+
} & {
|
|
69082
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
|
69083
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
69084
|
+
'update:active': (value: boolean) => true;
|
|
69085
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
69086
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69087
|
+
active: boolean;
|
|
69088
|
+
loading: boolean;
|
|
69089
|
+
style: vue.StyleValue;
|
|
69090
|
+
text: string | number | boolean;
|
|
69091
|
+
disabled: boolean;
|
|
69092
|
+
size: string | number;
|
|
69093
|
+
readonly: boolean;
|
|
69094
|
+
tag: string | JSXComponent;
|
|
69095
|
+
sizes: [VIconBtnSizes, number][];
|
|
69096
|
+
rounded: string | number | boolean;
|
|
69097
|
+
tile: boolean;
|
|
69098
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69099
|
+
hideOverlay: boolean;
|
|
69100
|
+
iconSize: string | number;
|
|
69101
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69102
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
69103
|
+
default: () => vue.VNode[];
|
|
69104
|
+
loader: () => vue.VNode[];
|
|
69105
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
69106
|
+
P: {};
|
|
69107
|
+
B: {};
|
|
69108
|
+
D: {};
|
|
69109
|
+
C: {};
|
|
69110
|
+
M: {};
|
|
69111
|
+
Defaults: {};
|
|
69112
|
+
}, {
|
|
69113
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69114
|
+
loading: boolean;
|
|
69115
|
+
style: vue.StyleValue;
|
|
69116
|
+
disabled: boolean;
|
|
69117
|
+
size: string | number;
|
|
69118
|
+
readonly: boolean;
|
|
69119
|
+
tag: string | JSXComponent;
|
|
69120
|
+
sizes: [VIconBtnSizes, number][];
|
|
69121
|
+
tile: boolean;
|
|
69122
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69123
|
+
hideOverlay: boolean;
|
|
69124
|
+
iconSize: string | number;
|
|
69125
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69126
|
+
} & {
|
|
69127
|
+
height?: string | number | undefined;
|
|
69128
|
+
width?: string | number | undefined;
|
|
69129
|
+
active?: boolean | undefined;
|
|
69130
|
+
border?: string | number | boolean | undefined;
|
|
69131
|
+
color?: string | undefined;
|
|
69132
|
+
opacity?: string | number | undefined;
|
|
69133
|
+
rotate?: string | number | undefined;
|
|
69134
|
+
text?: string | number | boolean | undefined;
|
|
69135
|
+
class?: any;
|
|
69136
|
+
theme?: string | undefined;
|
|
69137
|
+
icon?: IconValue | undefined;
|
|
69138
|
+
elevation?: string | number | undefined;
|
|
69139
|
+
rounded?: string | number | boolean | undefined;
|
|
69140
|
+
activeColor?: string | undefined;
|
|
69141
|
+
iconColor?: string | undefined;
|
|
69142
|
+
activeIcon?: IconValue | undefined;
|
|
69143
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
|
69144
|
+
} & {
|
|
69145
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69146
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
69147
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
69148
|
+
};
|
|
69149
|
+
'v-slots'?: {
|
|
69150
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
69151
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
69152
|
+
} | undefined;
|
|
69153
|
+
} & {
|
|
69154
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69155
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
69156
|
+
} & {
|
|
69157
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
|
69158
|
+
}, {}, {}, {}, {}, {
|
|
69159
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69160
|
+
active: boolean;
|
|
69161
|
+
loading: boolean;
|
|
69162
|
+
style: vue.StyleValue;
|
|
69163
|
+
text: string | number | boolean;
|
|
69164
|
+
disabled: boolean;
|
|
69165
|
+
size: string | number;
|
|
69166
|
+
readonly: boolean;
|
|
69167
|
+
tag: string | JSXComponent;
|
|
69168
|
+
sizes: [VIconBtnSizes, number][];
|
|
69169
|
+
rounded: string | number | boolean;
|
|
69170
|
+
tile: boolean;
|
|
69171
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69172
|
+
hideOverlay: boolean;
|
|
69173
|
+
iconSize: string | number;
|
|
69174
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69175
|
+
}>;
|
|
69176
|
+
__isFragment?: never;
|
|
69177
|
+
__isTeleport?: never;
|
|
69178
|
+
__isSuspense?: never;
|
|
69179
|
+
} & vue.ComponentOptionsBase<{
|
|
69180
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69181
|
+
loading: boolean;
|
|
69182
|
+
style: vue.StyleValue;
|
|
69183
|
+
disabled: boolean;
|
|
69184
|
+
size: string | number;
|
|
69185
|
+
readonly: boolean;
|
|
69186
|
+
tag: string | JSXComponent;
|
|
69187
|
+
sizes: [VIconBtnSizes, number][];
|
|
69188
|
+
tile: boolean;
|
|
69189
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69190
|
+
hideOverlay: boolean;
|
|
69191
|
+
iconSize: string | number;
|
|
69192
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69193
|
+
} & {
|
|
69194
|
+
height?: string | number | undefined;
|
|
69195
|
+
width?: string | number | undefined;
|
|
69196
|
+
active?: boolean | undefined;
|
|
69197
|
+
border?: string | number | boolean | undefined;
|
|
69198
|
+
color?: string | undefined;
|
|
69199
|
+
opacity?: string | number | undefined;
|
|
69200
|
+
rotate?: string | number | undefined;
|
|
69201
|
+
text?: string | number | boolean | undefined;
|
|
69202
|
+
class?: any;
|
|
69203
|
+
theme?: string | undefined;
|
|
69204
|
+
icon?: IconValue | undefined;
|
|
69205
|
+
elevation?: string | number | undefined;
|
|
69206
|
+
rounded?: string | number | boolean | undefined;
|
|
69207
|
+
activeColor?: string | undefined;
|
|
69208
|
+
iconColor?: string | undefined;
|
|
69209
|
+
activeIcon?: IconValue | undefined;
|
|
69210
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
|
69211
|
+
} & {
|
|
69212
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69213
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
69214
|
+
loader?: (() => vue.VNodeChild) | undefined;
|
|
69215
|
+
};
|
|
69216
|
+
'v-slots'?: {
|
|
69217
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
69218
|
+
loader?: false | (() => vue.VNodeChild) | undefined;
|
|
69219
|
+
} | undefined;
|
|
69220
|
+
} & {
|
|
69221
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69222
|
+
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
69223
|
+
} & {
|
|
69224
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
|
69225
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
69226
|
+
'update:active': (value: boolean) => true;
|
|
69227
|
+
}, string, {
|
|
69228
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69229
|
+
active: boolean;
|
|
69230
|
+
loading: boolean;
|
|
69231
|
+
style: vue.StyleValue;
|
|
69232
|
+
text: string | number | boolean;
|
|
69233
|
+
disabled: boolean;
|
|
69234
|
+
size: string | number;
|
|
69235
|
+
readonly: boolean;
|
|
69236
|
+
tag: string | JSXComponent;
|
|
69237
|
+
sizes: [VIconBtnSizes, number][];
|
|
69238
|
+
rounded: string | number | boolean;
|
|
69239
|
+
tile: boolean;
|
|
69240
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
69241
|
+
hideOverlay: boolean;
|
|
69242
|
+
iconSize: string | number;
|
|
69243
|
+
iconSizes: [VIconBtnSizes, number][];
|
|
69244
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
69245
|
+
default: () => vue.VNode[];
|
|
69246
|
+
loader: () => vue.VNode[];
|
|
69247
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
69248
|
+
color: StringConstructor;
|
|
69249
|
+
variant: Omit<{
|
|
69250
|
+
type: PropType<Variant$2>;
|
|
69251
|
+
default: string;
|
|
69252
|
+
validator: (v: any) => boolean;
|
|
69253
|
+
}, "type" | "default"> & {
|
|
69254
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
69255
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
69256
|
+
};
|
|
69257
|
+
theme: StringConstructor;
|
|
69258
|
+
tag: Omit<{
|
|
69259
|
+
type: PropType<string | JSXComponent>;
|
|
69260
|
+
default: string;
|
|
69261
|
+
}, "type" | "default"> & {
|
|
69262
|
+
type: PropType<string | JSXComponent>;
|
|
69263
|
+
default: NonNullable<string | JSXComponent>;
|
|
69264
|
+
};
|
|
69265
|
+
rounded: {
|
|
69266
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69267
|
+
default: undefined;
|
|
69268
|
+
};
|
|
69269
|
+
tile: BooleanConstructor;
|
|
69270
|
+
elevation: {
|
|
69271
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
69272
|
+
validator(v: any): boolean;
|
|
69273
|
+
};
|
|
69274
|
+
class: PropType<ClassValue>;
|
|
69275
|
+
style: {
|
|
69276
|
+
type: PropType<vue.StyleValue>;
|
|
69277
|
+
default: null;
|
|
69278
|
+
};
|
|
69279
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69280
|
+
active: {
|
|
69281
|
+
type: BooleanConstructor;
|
|
69282
|
+
default: undefined;
|
|
69283
|
+
};
|
|
69284
|
+
activeColor: StringConstructor;
|
|
69285
|
+
activeIcon: PropType<IconValue>;
|
|
69286
|
+
activeVariant: PropType<Variant$2>;
|
|
69287
|
+
baseVariant: {
|
|
69288
|
+
type: PropType<Variant$2>;
|
|
69289
|
+
default: string;
|
|
69290
|
+
};
|
|
69291
|
+
disabled: BooleanConstructor;
|
|
69292
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
69293
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
69294
|
+
hideOverlay: BooleanConstructor;
|
|
69295
|
+
icon: PropType<IconValue>;
|
|
69296
|
+
iconColor: StringConstructor;
|
|
69297
|
+
iconSize: {
|
|
69298
|
+
type: PropType<VIconBtnSizes | number | string>;
|
|
69299
|
+
default: string;
|
|
69300
|
+
};
|
|
69301
|
+
iconSizes: {
|
|
69302
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
|
69303
|
+
default: () => (string | number)[][];
|
|
69304
|
+
};
|
|
69305
|
+
loading: BooleanConstructor;
|
|
69306
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
69307
|
+
readonly: BooleanConstructor;
|
|
69308
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
|
69309
|
+
size: {
|
|
69310
|
+
type: PropType<VIconBtnSizes | number | string>;
|
|
69311
|
+
default: string;
|
|
69312
|
+
};
|
|
69313
|
+
sizes: {
|
|
69314
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
|
69315
|
+
default: () => (string | number)[][];
|
|
69316
|
+
};
|
|
69317
|
+
text: {
|
|
69318
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69319
|
+
default: undefined;
|
|
69320
|
+
};
|
|
69321
|
+
}, vue.ExtractPropTypes<{
|
|
69322
|
+
color: StringConstructor;
|
|
69323
|
+
variant: Omit<{
|
|
69324
|
+
type: PropType<Variant$2>;
|
|
69325
|
+
default: string;
|
|
69326
|
+
validator: (v: any) => boolean;
|
|
69327
|
+
}, "type" | "default"> & {
|
|
69328
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
69329
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
69330
|
+
};
|
|
69331
|
+
theme: StringConstructor;
|
|
69332
|
+
tag: Omit<{
|
|
69333
|
+
type: PropType<string | JSXComponent>;
|
|
69334
|
+
default: string;
|
|
69335
|
+
}, "type" | "default"> & {
|
|
69336
|
+
type: PropType<string | JSXComponent>;
|
|
69337
|
+
default: NonNullable<string | JSXComponent>;
|
|
69338
|
+
};
|
|
69339
|
+
rounded: {
|
|
69340
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69341
|
+
default: undefined;
|
|
69342
|
+
};
|
|
69343
|
+
tile: BooleanConstructor;
|
|
69344
|
+
elevation: {
|
|
69345
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
69346
|
+
validator(v: any): boolean;
|
|
69347
|
+
};
|
|
69348
|
+
class: PropType<ClassValue>;
|
|
69349
|
+
style: {
|
|
69350
|
+
type: PropType<vue.StyleValue>;
|
|
69351
|
+
default: null;
|
|
69352
|
+
};
|
|
69353
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69354
|
+
active: {
|
|
69355
|
+
type: BooleanConstructor;
|
|
69356
|
+
default: undefined;
|
|
69357
|
+
};
|
|
69358
|
+
activeColor: StringConstructor;
|
|
69359
|
+
activeIcon: PropType<IconValue>;
|
|
69360
|
+
activeVariant: PropType<Variant$2>;
|
|
69361
|
+
baseVariant: {
|
|
69362
|
+
type: PropType<Variant$2>;
|
|
69363
|
+
default: string;
|
|
69364
|
+
};
|
|
69365
|
+
disabled: BooleanConstructor;
|
|
69366
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
69367
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
69368
|
+
hideOverlay: BooleanConstructor;
|
|
69369
|
+
icon: PropType<IconValue>;
|
|
69370
|
+
iconColor: StringConstructor;
|
|
69371
|
+
iconSize: {
|
|
69372
|
+
type: PropType<VIconBtnSizes | number | string>;
|
|
69373
|
+
default: string;
|
|
69374
|
+
};
|
|
69375
|
+
iconSizes: {
|
|
69376
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
|
69377
|
+
default: () => (string | number)[][];
|
|
69378
|
+
};
|
|
69379
|
+
loading: BooleanConstructor;
|
|
69380
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
69381
|
+
readonly: BooleanConstructor;
|
|
69382
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
|
69383
|
+
size: {
|
|
69384
|
+
type: PropType<VIconBtnSizes | number | string>;
|
|
69385
|
+
default: string;
|
|
69386
|
+
};
|
|
69387
|
+
sizes: {
|
|
69388
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
|
69389
|
+
default: () => (string | number)[][];
|
|
69390
|
+
};
|
|
69391
|
+
text: {
|
|
69392
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69393
|
+
default: undefined;
|
|
69394
|
+
};
|
|
69395
|
+
}>>;
|
|
69396
|
+
type VIconBtn = InstanceType<typeof VIconBtn>;
|
|
69397
|
+
|
|
69055
69398
|
declare const VPickerTitle: {
|
|
69056
69399
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
69057
69400
|
style: vue.StyleValue;
|
|
@@ -72674,6 +73017,7 @@ declare const allComponents_d_VFooter: typeof VFooter;
|
|
|
72674
73017
|
declare const allComponents_d_VForm: typeof VForm;
|
|
72675
73018
|
declare const allComponents_d_VHover: typeof VHover;
|
|
72676
73019
|
declare const allComponents_d_VIcon: typeof VIcon;
|
|
73020
|
+
declare const allComponents_d_VIconBtn: typeof VIconBtn;
|
|
72677
73021
|
declare const allComponents_d_VImg: typeof VImg;
|
|
72678
73022
|
declare const allComponents_d_VInfiniteScroll: typeof VInfiniteScroll;
|
|
72679
73023
|
declare const allComponents_d_VInput: typeof VInput;
|
|
@@ -72775,7 +73119,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
|
72775
73119
|
declare const allComponents_d_VWindow: typeof VWindow;
|
|
72776
73120
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
|
72777
73121
|
declare namespace allComponents_d {
|
|
72778
|
-
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
|
73122
|
+
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
|
72779
73123
|
}
|
|
72780
73124
|
|
|
72781
73125
|
declare const md1: Blueprint;
|
|
@@ -73023,41 +73367,43 @@ declare module 'vue' {
|
|
|
73023
73367
|
$children?: VNodeChild
|
|
73024
73368
|
}
|
|
73025
73369
|
export interface GlobalComponents {
|
|
73026
|
-
VAlert: VAlert
|
|
73027
|
-
VAlertTitle: VAlertTitle
|
|
73028
73370
|
VApp: VApp
|
|
73029
73371
|
VAppBar: VAppBar
|
|
73030
73372
|
VAppBarNavIcon: VAppBarNavIcon
|
|
73031
73373
|
VAppBarTitle: VAppBarTitle
|
|
73032
|
-
|
|
73033
|
-
|
|
73374
|
+
VAlert: VAlert
|
|
73375
|
+
VAlertTitle: VAlertTitle
|
|
73376
|
+
VAvatar: VAvatar
|
|
73034
73377
|
VBadge: VBadge
|
|
73378
|
+
VAutocomplete: VAutocomplete
|
|
73035
73379
|
VBanner: VBanner
|
|
73036
73380
|
VBannerActions: VBannerActions
|
|
73037
73381
|
VBannerText: VBannerText
|
|
73038
|
-
|
|
73039
|
-
|
|
73040
|
-
|
|
73382
|
+
VBottomSheet: VBottomSheet
|
|
73383
|
+
VBreadcrumbs: VBreadcrumbs
|
|
73384
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
73385
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
73041
73386
|
VBtn: VBtn
|
|
73387
|
+
VBtnToggle: VBtnToggle
|
|
73388
|
+
VBottomNavigation: VBottomNavigation
|
|
73389
|
+
VBtnGroup: VBtnGroup
|
|
73390
|
+
VCarousel: VCarousel
|
|
73391
|
+
VCarouselItem: VCarouselItem
|
|
73392
|
+
VCheckbox: VCheckbox
|
|
73393
|
+
VCheckboxBtn: VCheckboxBtn
|
|
73042
73394
|
VChip: VChip
|
|
73395
|
+
VCode: VCode
|
|
73043
73396
|
VCard: VCard
|
|
73044
73397
|
VCardActions: VCardActions
|
|
73045
73398
|
VCardItem: VCardItem
|
|
73046
73399
|
VCardSubtitle: VCardSubtitle
|
|
73047
73400
|
VCardText: VCardText
|
|
73048
73401
|
VCardTitle: VCardTitle
|
|
73049
|
-
VBtnGroup: VBtnGroup
|
|
73050
|
-
VCarousel: VCarousel
|
|
73051
|
-
VCarouselItem: VCarouselItem
|
|
73052
|
-
VBreadcrumbs: VBreadcrumbs
|
|
73053
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
73054
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
73055
|
-
VCheckbox: VCheckbox
|
|
73056
|
-
VCheckboxBtn: VCheckboxBtn
|
|
73057
|
-
VColorPicker: VColorPicker
|
|
73058
73402
|
VChipGroup: VChipGroup
|
|
73403
|
+
VColorPicker: VColorPicker
|
|
73059
73404
|
VCounter: VCounter
|
|
73060
73405
|
VCombobox: VCombobox
|
|
73406
|
+
VDialog: VDialog
|
|
73061
73407
|
VDataTable: VDataTable
|
|
73062
73408
|
VDataTableHeaders: VDataTableHeaders
|
|
73063
73409
|
VDataTableFooter: VDataTableFooter
|
|
@@ -73065,36 +73411,33 @@ declare module 'vue' {
|
|
|
73065
73411
|
VDataTableRow: VDataTableRow
|
|
73066
73412
|
VDataTableVirtual: VDataTableVirtual
|
|
73067
73413
|
VDataTableServer: VDataTableServer
|
|
73068
|
-
VCode: VCode
|
|
73069
|
-
VDialog: VDialog
|
|
73070
|
-
VExpansionPanels: VExpansionPanels
|
|
73071
|
-
VExpansionPanel: VExpansionPanel
|
|
73072
|
-
VExpansionPanelText: VExpansionPanelText
|
|
73073
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
|
73074
73414
|
VDatePicker: VDatePicker
|
|
73075
73415
|
VDatePickerControls: VDatePickerControls
|
|
73076
73416
|
VDatePickerHeader: VDatePickerHeader
|
|
73077
73417
|
VDatePickerMonth: VDatePickerMonth
|
|
73078
73418
|
VDatePickerMonths: VDatePickerMonths
|
|
73079
73419
|
VDatePickerYears: VDatePickerYears
|
|
73080
|
-
VDivider: VDivider
|
|
73081
73420
|
VEmptyState: VEmptyState
|
|
73421
|
+
VExpansionPanels: VExpansionPanels
|
|
73422
|
+
VExpansionPanel: VExpansionPanel
|
|
73423
|
+
VExpansionPanelText: VExpansionPanelText
|
|
73424
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
|
73425
|
+
VDivider: VDivider
|
|
73426
|
+
VFab: VFab
|
|
73082
73427
|
VField: VField
|
|
73083
73428
|
VFieldLabel: VFieldLabel
|
|
73084
|
-
|
|
73429
|
+
VFileInput: VFileInput
|
|
73085
73430
|
VFooter: VFooter
|
|
73086
73431
|
VImg: VImg
|
|
73087
|
-
|
|
73432
|
+
VInfiniteScroll: VInfiniteScroll
|
|
73088
73433
|
VIcon: VIcon
|
|
73089
73434
|
VComponentIcon: VComponentIcon
|
|
73090
73435
|
VSvgIcon: VSvgIcon
|
|
73091
73436
|
VLigatureIcon: VLigatureIcon
|
|
73092
73437
|
VClassIcon: VClassIcon
|
|
73093
|
-
VInfiniteScroll: VInfiniteScroll
|
|
73094
|
-
VInput: VInput
|
|
73095
73438
|
VKbd: VKbd
|
|
73096
|
-
|
|
73097
|
-
|
|
73439
|
+
VLabel: VLabel
|
|
73440
|
+
VInput: VInput
|
|
73098
73441
|
VList: VList
|
|
73099
73442
|
VListGroup: VListGroup
|
|
73100
73443
|
VListImg: VListImg
|
|
@@ -73104,75 +73447,75 @@ declare module 'vue' {
|
|
|
73104
73447
|
VListItemSubtitle: VListItemSubtitle
|
|
73105
73448
|
VListItemTitle: VListItemTitle
|
|
73106
73449
|
VListSubheader: VListSubheader
|
|
73107
|
-
VLabel: VLabel
|
|
73108
|
-
VNumberInput: VNumberInput
|
|
73109
|
-
VMessages: VMessages
|
|
73110
73450
|
VMain: VMain
|
|
73451
|
+
VMessages: VMessages
|
|
73111
73452
|
VMenu: VMenu
|
|
73112
|
-
VPagination: VPagination
|
|
73113
73453
|
VNavigationDrawer: VNavigationDrawer
|
|
73114
|
-
|
|
73115
|
-
|
|
73454
|
+
VItemGroup: VItemGroup
|
|
73455
|
+
VItem: VItem
|
|
73116
73456
|
VOtpInput: VOtpInput
|
|
73117
|
-
|
|
73118
|
-
|
|
73457
|
+
VNumberInput: VNumberInput
|
|
73458
|
+
VOverlay: VOverlay
|
|
73459
|
+
VProgressCircular: VProgressCircular
|
|
73460
|
+
VPagination: VPagination
|
|
73461
|
+
VSelect: VSelect
|
|
73119
73462
|
VRadioGroup: VRadioGroup
|
|
73463
|
+
VProgressLinear: VProgressLinear
|
|
73120
73464
|
VRating: VRating
|
|
73121
|
-
VSelectionControl: VSelectionControl
|
|
73122
|
-
VSelect: VSelect
|
|
73123
|
-
VSkeletonLoader: VSkeletonLoader
|
|
73124
73465
|
VSnackbar: VSnackbar
|
|
73466
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
73467
|
+
VSelectionControl: VSelectionControl
|
|
73125
73468
|
VSheet: VSheet
|
|
73469
|
+
VSkeletonLoader: VSkeletonLoader
|
|
73126
73470
|
VSlider: VSlider
|
|
73127
73471
|
VSlideGroup: VSlideGroup
|
|
73128
73472
|
VSlideGroupItem: VSlideGroupItem
|
|
73473
|
+
VSwitch: VSwitch
|
|
73129
73474
|
VStepper: VStepper
|
|
73130
73475
|
VStepperActions: VStepperActions
|
|
73131
73476
|
VStepperHeader: VStepperHeader
|
|
73132
73477
|
VStepperItem: VStepperItem
|
|
73133
73478
|
VStepperWindow: VStepperWindow
|
|
73134
73479
|
VStepperWindowItem: VStepperWindowItem
|
|
73135
|
-
VSystemBar: VSystemBar
|
|
73136
73480
|
VTab: VTab
|
|
73137
73481
|
VTabs: VTabs
|
|
73138
73482
|
VTabsWindow: VTabsWindow
|
|
73139
73483
|
VTabsWindowItem: VTabsWindowItem
|
|
73140
|
-
|
|
73141
|
-
VTextField: VTextField
|
|
73142
|
-
VTooltip: VTooltip
|
|
73484
|
+
VSystemBar: VSystemBar
|
|
73143
73485
|
VTextarea: VTextarea
|
|
73144
73486
|
VTable: VTable
|
|
73145
|
-
|
|
73146
|
-
VWindowItem: VWindowItem
|
|
73487
|
+
VTextField: VTextField
|
|
73147
73488
|
VToolbar: VToolbar
|
|
73148
73489
|
VToolbarTitle: VToolbarTitle
|
|
73149
73490
|
VToolbarItems: VToolbarItems
|
|
73491
|
+
VTooltip: VTooltip
|
|
73150
73492
|
VTimeline: VTimeline
|
|
73151
73493
|
VTimelineItem: VTimelineItem
|
|
73152
|
-
|
|
73494
|
+
VWindow: VWindow
|
|
73495
|
+
VWindowItem: VWindowItem
|
|
73153
73496
|
VConfirmEdit: VConfirmEdit
|
|
73497
|
+
VDataIterator: VDataIterator
|
|
73154
73498
|
VDefaultsProvider: VDefaultsProvider
|
|
73155
|
-
VForm: VForm
|
|
73156
73499
|
VContainer: VContainer
|
|
73157
73500
|
VCol: VCol
|
|
73158
73501
|
VRow: VRow
|
|
73159
73502
|
VSpacer: VSpacer
|
|
73503
|
+
VForm: VForm
|
|
73160
73504
|
VHover: VHover
|
|
73161
73505
|
VLazy: VLazy
|
|
73162
73506
|
VLayout: VLayout
|
|
73163
73507
|
VLayoutItem: VLayoutItem
|
|
73164
73508
|
VLocaleProvider: VLocaleProvider
|
|
73165
|
-
VParallax: VParallax
|
|
73166
73509
|
VNoSsr: VNoSsr
|
|
73167
|
-
|
|
73510
|
+
VParallax: VParallax
|
|
73168
73511
|
VRangeSlider: VRangeSlider
|
|
73512
|
+
VRadio: VRadio
|
|
73169
73513
|
VResponsive: VResponsive
|
|
73170
|
-
VSparkline: VSparkline
|
|
73171
73514
|
VSnackbarQueue: VSnackbarQueue
|
|
73172
73515
|
VSpeedDial: VSpeedDial
|
|
73516
|
+
VSparkline: VSparkline
|
|
73173
73517
|
VValidation: VValidation
|
|
73174
73518
|
VThemeProvider: VThemeProvider
|
|
73175
|
-
VVirtualScroll: VVirtualScroll
|
|
73176
73519
|
VFabTransition: VFabTransition
|
|
73177
73520
|
VDialogBottomTransition: VDialogBottomTransition
|
|
73178
73521
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -73189,26 +73532,28 @@ declare module 'vue' {
|
|
|
73189
73532
|
VExpandTransition: VExpandTransition
|
|
73190
73533
|
VExpandXTransition: VExpandXTransition
|
|
73191
73534
|
VDialogTransition: VDialogTransition
|
|
73535
|
+
VVirtualScroll: VVirtualScroll
|
|
73536
|
+
VPicker: VPicker
|
|
73537
|
+
VPickerTitle: VPickerTitle
|
|
73538
|
+
VFileUpload: VFileUpload
|
|
73539
|
+
VFileUploadItem: VFileUploadItem
|
|
73192
73540
|
VCalendar: VCalendar
|
|
73193
73541
|
VCalendarDay: VCalendarDay
|
|
73194
73542
|
VCalendarHeader: VCalendarHeader
|
|
73195
73543
|
VCalendarInterval: VCalendarInterval
|
|
73196
73544
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
|
73197
73545
|
VCalendarMonthDay: VCalendarMonthDay
|
|
73546
|
+
VIconBtn: VIconBtn
|
|
73547
|
+
VTimePicker: VTimePicker
|
|
73548
|
+
VTimePickerClock: VTimePickerClock
|
|
73549
|
+
VTimePickerControls: VTimePickerControls
|
|
73198
73550
|
VStepperVertical: VStepperVertical
|
|
73199
73551
|
VStepperVerticalItem: VStepperVerticalItem
|
|
73200
73552
|
VStepperVerticalActions: VStepperVerticalActions
|
|
73201
|
-
VPicker: VPicker
|
|
73202
|
-
VPickerTitle: VPickerTitle
|
|
73203
|
-
VFileUpload: VFileUpload
|
|
73204
|
-
VFileUploadItem: VFileUploadItem
|
|
73205
73553
|
VTreeview: VTreeview
|
|
73206
73554
|
VTreeviewItem: VTreeviewItem
|
|
73207
73555
|
VTreeviewGroup: VTreeviewGroup
|
|
73208
|
-
VTimePicker: VTimePicker
|
|
73209
|
-
VTimePickerClock: VTimePickerClock
|
|
73210
|
-
VTimePickerControls: VTimePickerControls
|
|
73211
|
-
VDateInput: VDateInput
|
|
73212
73556
|
VPullToRefresh: VPullToRefresh
|
|
73557
|
+
VDateInput: VDateInput
|
|
73213
73558
|
}
|
|
73214
73559
|
}
|