vuetify 3.5.5 → 3.5.7
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 +2 -0
- package/dist/json/attributes.json +352 -40
- package/dist/json/importMap-labs.json +16 -8
- package/dist/json/importMap.json +122 -118
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +1084 -52
- package/dist/vuetify-labs.css +2121 -1996
- package/dist/vuetify-labs.d.ts +1336 -128
- package/dist/vuetify-labs.esm.js +332 -81
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +332 -81
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +838 -839
- package/dist/vuetify.d.ts +320 -145
- package/dist/vuetify.esm.js +87 -75
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +87 -75
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +60 -58
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VApp/index.d.mts +8 -6
- package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs +33 -29
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +4 -4
- package/lib/components/VCombobox/VCombobox.mjs +22 -23
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +50 -94
- package/lib/components/VDataTable/index.d.mts +214 -1
- package/lib/components/VDataTable/index.mjs +1 -0
- package/lib/components/VDataTable/index.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
- package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +27 -0
- package/lib/components/VLayout/index.d.mts +8 -6
- package/lib/components/VSelect/VSelect.mjs +20 -18
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +3 -1
- package/lib/components/VToolbar/VToolbar.sass +2 -1
- package/lib/components/index.d.mts +279 -106
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/goto.mjs +2 -2
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -39
- package/lib/labs/VEmptyState/VEmptyState.css +59 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
- package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
- package/lib/labs/VEmptyState/_variables.scss +22 -0
- package/lib/labs/VEmptyState/index.d.mts +415 -0
- package/lib/labs/VEmptyState/index.mjs +2 -0
- package/lib/labs/VEmptyState/index.mjs.map +1 -0
- package/lib/labs/VFab/VFab.css +69 -0
- package/lib/labs/VFab/VFab.mjs +114 -0
- package/lib/labs/VFab/VFab.mjs.map +1 -0
- package/lib/labs/VFab/VFab.sass +82 -0
- package/lib/labs/VFab/_mixins.scss +22 -0
- package/lib/labs/VFab/_variables.scss +33 -0
- package/lib/labs/VFab/index.d.mts +656 -0
- package/lib/labs/VFab/index.mjs +2 -0
- package/lib/labs/VFab/index.mjs.map +1 -0
- package/lib/labs/VSparkline/VBarline.mjs +4 -4
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +6 -2
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +12 -0
- package/lib/labs/VSparkline/util/line.mjs +2 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/components.d.mts +1066 -2
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -112,6 +112,8 @@ type MaybeRef<T> = T | Ref<T>;
|
|
|
112
112
|
type EventProp<T extends any[] = any[], F = (...args: T) => void> = F;
|
|
113
113
|
declare const EventProp: <T extends any[] = any[]>() => PropType<(...args: T) => void>;
|
|
114
114
|
|
|
115
|
+
type Position = 'top' | 'left' | 'right' | 'bottom';
|
|
116
|
+
|
|
115
117
|
declare const VApp: {
|
|
116
118
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
117
119
|
style: vue.StyleValue;
|
|
@@ -132,7 +134,7 @@ declare const VApp: {
|
|
|
132
134
|
}, {
|
|
133
135
|
getLayoutItem: (id: string) => {
|
|
134
136
|
size: number;
|
|
135
|
-
position:
|
|
137
|
+
position: Position;
|
|
136
138
|
top: number;
|
|
137
139
|
bottom: number;
|
|
138
140
|
left: number;
|
|
@@ -141,7 +143,7 @@ declare const VApp: {
|
|
|
141
143
|
} | undefined;
|
|
142
144
|
items: vue.ComputedRef<{
|
|
143
145
|
size: number;
|
|
144
|
-
position:
|
|
146
|
+
position: Position;
|
|
145
147
|
top: number;
|
|
146
148
|
bottom: number;
|
|
147
149
|
left: number;
|
|
@@ -198,7 +200,7 @@ declare const VApp: {
|
|
|
198
200
|
}, {
|
|
199
201
|
getLayoutItem: (id: string) => {
|
|
200
202
|
size: number;
|
|
201
|
-
position:
|
|
203
|
+
position: Position;
|
|
202
204
|
top: number;
|
|
203
205
|
bottom: number;
|
|
204
206
|
left: number;
|
|
@@ -207,7 +209,7 @@ declare const VApp: {
|
|
|
207
209
|
} | undefined;
|
|
208
210
|
items: vue.ComputedRef<{
|
|
209
211
|
size: number;
|
|
210
|
-
position:
|
|
212
|
+
position: Position;
|
|
211
213
|
top: number;
|
|
212
214
|
bottom: number;
|
|
213
215
|
left: number;
|
|
@@ -241,7 +243,7 @@ declare const VApp: {
|
|
|
241
243
|
}, {
|
|
242
244
|
getLayoutItem: (id: string) => {
|
|
243
245
|
size: number;
|
|
244
|
-
position:
|
|
246
|
+
position: Position;
|
|
245
247
|
top: number;
|
|
246
248
|
bottom: number;
|
|
247
249
|
left: number;
|
|
@@ -250,7 +252,7 @@ declare const VApp: {
|
|
|
250
252
|
} | undefined;
|
|
251
253
|
items: vue.ComputedRef<{
|
|
252
254
|
size: number;
|
|
253
|
-
position:
|
|
255
|
+
position: Position;
|
|
254
256
|
top: number;
|
|
255
257
|
bottom: number;
|
|
256
258
|
left: number;
|
|
@@ -22106,7 +22108,7 @@ interface DataIteratorItem<T = any> extends GroupableItem<T>, SelectableItem {
|
|
|
22106
22108
|
value: unknown;
|
|
22107
22109
|
}
|
|
22108
22110
|
|
|
22109
|
-
type VDataIteratorSlotProps = {
|
|
22111
|
+
type VDataIteratorSlotProps<T> = {
|
|
22110
22112
|
page: number;
|
|
22111
22113
|
itemsPerPage: number;
|
|
22112
22114
|
sortBy: readonly SortItem[];
|
|
@@ -22124,8 +22126,14 @@ type VDataIteratorSlotProps = {
|
|
|
22124
22126
|
toggleExpand: ReturnType<typeof provideExpanded>['toggleExpand'];
|
|
22125
22127
|
isGroupOpen: ReturnType<typeof provideGroupBy>['isGroupOpen'];
|
|
22126
22128
|
toggleGroup: ReturnType<typeof provideGroupBy>['toggleGroup'];
|
|
22127
|
-
items: readonly DataIteratorItem[];
|
|
22128
|
-
groupedItems: readonly (DataIteratorItem | Group<DataIteratorItem
|
|
22129
|
+
items: readonly DataIteratorItem<T>[];
|
|
22130
|
+
groupedItems: readonly (DataIteratorItem<T> | Group<DataIteratorItem<T>>)[];
|
|
22131
|
+
};
|
|
22132
|
+
type VDataIteratorSlots<T> = {
|
|
22133
|
+
default: VDataIteratorSlotProps<T>;
|
|
22134
|
+
header: VDataIteratorSlotProps<T>;
|
|
22135
|
+
footer: VDataIteratorSlotProps<T>;
|
|
22136
|
+
'no-data': never;
|
|
22129
22137
|
};
|
|
22130
22138
|
declare const VDataIterator: {
|
|
22131
22139
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
@@ -22135,7 +22143,6 @@ declare const VDataIterator: {
|
|
|
22135
22143
|
expanded: readonly string[];
|
|
22136
22144
|
tag: string;
|
|
22137
22145
|
sortBy: readonly SortItem[];
|
|
22138
|
-
items: any[];
|
|
22139
22146
|
modelValue: readonly any[];
|
|
22140
22147
|
valueComparator: typeof deepEqual;
|
|
22141
22148
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22158,24 +22165,6 @@ declare const VDataIterator: {
|
|
|
22158
22165
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22159
22166
|
filterKeys?: FilterKeys | undefined;
|
|
22160
22167
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22161
|
-
} & {
|
|
22162
|
-
$children?: vue.VNodeChild | {
|
|
22163
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22164
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22165
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22166
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22167
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22168
|
-
'v-slots'?: {
|
|
22169
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22170
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22171
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22172
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22173
|
-
} | undefined;
|
|
22174
|
-
} & {
|
|
22175
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22176
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22177
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22178
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22179
22168
|
} & {
|
|
22180
22169
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22181
22170
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22185,7 +22174,7 @@ declare const VDataIterator: {
|
|
|
22185
22174
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
22186
22175
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
22187
22176
|
"onUpdate:currentItems"?: ((value: any) => any) | undefined;
|
|
22188
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
22177
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22189
22178
|
'update:modelValue': (value: any[]) => boolean;
|
|
22190
22179
|
'update:groupBy': (value: any) => boolean;
|
|
22191
22180
|
'update:page': (value: number) => boolean;
|
|
@@ -22194,14 +22183,13 @@ declare const VDataIterator: {
|
|
|
22194
22183
|
'update:options': (value: any) => boolean;
|
|
22195
22184
|
'update:expanded': (value: any) => boolean;
|
|
22196
22185
|
'update:currentItems': (value: any) => boolean;
|
|
22197
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
22186
|
+
}, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
22198
22187
|
page: string | number;
|
|
22199
22188
|
loading: boolean;
|
|
22200
22189
|
style: vue.StyleValue;
|
|
22201
22190
|
expanded: readonly string[];
|
|
22202
22191
|
tag: string;
|
|
22203
22192
|
sortBy: readonly SortItem[];
|
|
22204
|
-
items: any[];
|
|
22205
22193
|
modelValue: readonly any[];
|
|
22206
22194
|
valueComparator: typeof deepEqual;
|
|
22207
22195
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22224,24 +22212,6 @@ declare const VDataIterator: {
|
|
|
22224
22212
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22225
22213
|
filterKeys?: FilterKeys | undefined;
|
|
22226
22214
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22227
|
-
} & {
|
|
22228
|
-
$children?: vue.VNodeChild | {
|
|
22229
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22230
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22231
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22232
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22233
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22234
|
-
'v-slots'?: {
|
|
22235
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22236
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22237
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22238
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22239
|
-
} | undefined;
|
|
22240
|
-
} & {
|
|
22241
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22242
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22243
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22244
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22245
22215
|
} & {
|
|
22246
22216
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22247
22217
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22258,7 +22228,6 @@ declare const VDataIterator: {
|
|
|
22258
22228
|
expanded: readonly string[];
|
|
22259
22229
|
tag: string;
|
|
22260
22230
|
sortBy: readonly SortItem[];
|
|
22261
|
-
items: any[];
|
|
22262
22231
|
modelValue: readonly any[];
|
|
22263
22232
|
valueComparator: typeof deepEqual;
|
|
22264
22233
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22275,13 +22244,13 @@ declare const VDataIterator: {
|
|
|
22275
22244
|
showExpand: boolean;
|
|
22276
22245
|
itemsPerPage: NonNullable<string | number>;
|
|
22277
22246
|
}, true, {}, vue.SlotsType<Partial<{
|
|
22278
|
-
default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22247
|
+
default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22279
22248
|
[key: string]: any;
|
|
22280
22249
|
}>[];
|
|
22281
|
-
header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22250
|
+
header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22282
22251
|
[key: string]: any;
|
|
22283
22252
|
}>[];
|
|
22284
|
-
footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22253
|
+
footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22285
22254
|
[key: string]: any;
|
|
22286
22255
|
}>[];
|
|
22287
22256
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -22301,7 +22270,6 @@ declare const VDataIterator: {
|
|
|
22301
22270
|
expanded: readonly string[];
|
|
22302
22271
|
tag: string;
|
|
22303
22272
|
sortBy: readonly SortItem[];
|
|
22304
|
-
items: any[];
|
|
22305
22273
|
modelValue: readonly any[];
|
|
22306
22274
|
valueComparator: typeof deepEqual;
|
|
22307
22275
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22324,24 +22292,6 @@ declare const VDataIterator: {
|
|
|
22324
22292
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22325
22293
|
filterKeys?: FilterKeys | undefined;
|
|
22326
22294
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22327
|
-
} & {
|
|
22328
|
-
$children?: vue.VNodeChild | {
|
|
22329
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22330
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22331
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22332
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22333
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22334
|
-
'v-slots'?: {
|
|
22335
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22336
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22337
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22338
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22339
|
-
} | undefined;
|
|
22340
|
-
} & {
|
|
22341
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22342
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22343
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22344
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22345
22295
|
} & {
|
|
22346
22296
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22347
22297
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22358,7 +22308,6 @@ declare const VDataIterator: {
|
|
|
22358
22308
|
expanded: readonly string[];
|
|
22359
22309
|
tag: string;
|
|
22360
22310
|
sortBy: readonly SortItem[];
|
|
22361
|
-
items: any[];
|
|
22362
22311
|
modelValue: readonly any[];
|
|
22363
22312
|
valueComparator: typeof deepEqual;
|
|
22364
22313
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22385,7 +22334,6 @@ declare const VDataIterator: {
|
|
|
22385
22334
|
expanded: readonly string[];
|
|
22386
22335
|
tag: string;
|
|
22387
22336
|
sortBy: readonly SortItem[];
|
|
22388
|
-
items: any[];
|
|
22389
22337
|
modelValue: readonly any[];
|
|
22390
22338
|
valueComparator: typeof deepEqual;
|
|
22391
22339
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22408,24 +22356,6 @@ declare const VDataIterator: {
|
|
|
22408
22356
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
22409
22357
|
filterKeys?: FilterKeys | undefined;
|
|
22410
22358
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
22411
|
-
} & {
|
|
22412
|
-
$children?: vue.VNodeChild | {
|
|
22413
|
-
default?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22414
|
-
header?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22415
|
-
footer?: ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22416
|
-
'no-data'?: (() => vue.VNodeChild) | undefined;
|
|
22417
|
-
} | ((arg: VDataIteratorSlotProps) => vue.VNodeChild);
|
|
22418
|
-
'v-slots'?: {
|
|
22419
|
-
default?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22420
|
-
header?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22421
|
-
footer?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22422
|
-
'no-data'?: false | (() => vue.VNodeChild) | undefined;
|
|
22423
|
-
} | undefined;
|
|
22424
|
-
} & {
|
|
22425
|
-
"v-slot:default"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22426
|
-
"v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22427
|
-
"v-slot:footer"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
|
|
22428
|
-
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
22429
22359
|
} & {
|
|
22430
22360
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
22431
22361
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
@@ -22435,7 +22365,7 @@ declare const VDataIterator: {
|
|
|
22435
22365
|
"onUpdate:itemsPerPage"?: ((value: number) => any) | undefined;
|
|
22436
22366
|
"onUpdate:options"?: ((value: any) => any) | undefined;
|
|
22437
22367
|
"onUpdate:currentItems"?: ((value: any) => any) | undefined;
|
|
22438
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
22368
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22439
22369
|
'update:modelValue': (value: any[]) => boolean;
|
|
22440
22370
|
'update:groupBy': (value: any) => boolean;
|
|
22441
22371
|
'update:page': (value: number) => boolean;
|
|
@@ -22444,14 +22374,13 @@ declare const VDataIterator: {
|
|
|
22444
22374
|
'update:options': (value: any) => boolean;
|
|
22445
22375
|
'update:expanded': (value: any) => boolean;
|
|
22446
22376
|
'update:currentItems': (value: any) => boolean;
|
|
22447
|
-
}, string, {
|
|
22377
|
+
}, "$children" | "v-slot:default" | "v-slots" | "items" | "v-slot:header" | "v-slot:no-data" | "v-slot:footer">, string, {
|
|
22448
22378
|
page: string | number;
|
|
22449
22379
|
loading: boolean;
|
|
22450
22380
|
style: vue.StyleValue;
|
|
22451
22381
|
expanded: readonly string[];
|
|
22452
22382
|
tag: string;
|
|
22453
22383
|
sortBy: readonly SortItem[];
|
|
22454
|
-
items: any[];
|
|
22455
22384
|
modelValue: readonly any[];
|
|
22456
22385
|
valueComparator: typeof deepEqual;
|
|
22457
22386
|
selectStrategy: "all" | "page" | "single";
|
|
@@ -22468,19 +22397,23 @@ declare const VDataIterator: {
|
|
|
22468
22397
|
showExpand: boolean;
|
|
22469
22398
|
itemsPerPage: NonNullable<string | number>;
|
|
22470
22399
|
}, {}, string, vue.SlotsType<Partial<{
|
|
22471
|
-
default: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22400
|
+
default: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22472
22401
|
[key: string]: any;
|
|
22473
22402
|
}>[];
|
|
22474
|
-
header: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22403
|
+
header: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22475
22404
|
[key: string]: any;
|
|
22476
22405
|
}>[];
|
|
22477
|
-
footer: (arg: VDataIteratorSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22406
|
+
footer: (arg: VDataIteratorSlotProps<unknown>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22478
22407
|
[key: string]: any;
|
|
22479
22408
|
}>[];
|
|
22480
22409
|
'no-data': () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22481
22410
|
[key: string]: any;
|
|
22482
22411
|
}>[];
|
|
22483
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps &
|
|
22412
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
22413
|
+
items?: readonly T[] | undefined;
|
|
22414
|
+
}, slots: VDataIteratorSlots<T>) => GenericProps<{
|
|
22415
|
+
items?: readonly T[] | undefined;
|
|
22416
|
+
}, VDataIteratorSlots<T>>) & FilterPropsOptions<{
|
|
22484
22417
|
tag: {
|
|
22485
22418
|
type: StringConstructor;
|
|
22486
22419
|
default: string;
|
|
@@ -22660,6 +22593,219 @@ type VDataTableHeadersSlots = {
|
|
|
22660
22593
|
} & {
|
|
22661
22594
|
[key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps;
|
|
22662
22595
|
};
|
|
22596
|
+
declare const VDataTableHeaders: {
|
|
22597
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
22598
|
+
sticky: boolean;
|
|
22599
|
+
multiSort: boolean;
|
|
22600
|
+
sortAscIcon: IconValue;
|
|
22601
|
+
sortDescIcon: IconValue;
|
|
22602
|
+
} & {
|
|
22603
|
+
color?: string | undefined;
|
|
22604
|
+
loading?: string | boolean | undefined;
|
|
22605
|
+
headerProps?: Record<string, any> | undefined;
|
|
22606
|
+
} & {
|
|
22607
|
+
$children?: {} | vue.VNodeChild | {
|
|
22608
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22609
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22610
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22611
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22612
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22613
|
+
};
|
|
22614
|
+
'v-slots'?: {
|
|
22615
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22616
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22617
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22618
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22619
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22620
|
+
} | undefined;
|
|
22621
|
+
} & {
|
|
22622
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22623
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22624
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22625
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22626
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22627
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
22628
|
+
sticky: boolean;
|
|
22629
|
+
multiSort: boolean;
|
|
22630
|
+
sortAscIcon: IconValue;
|
|
22631
|
+
sortDescIcon: IconValue;
|
|
22632
|
+
} & {
|
|
22633
|
+
color?: string | undefined;
|
|
22634
|
+
loading?: string | boolean | undefined;
|
|
22635
|
+
headerProps?: Record<string, any> | undefined;
|
|
22636
|
+
} & {
|
|
22637
|
+
$children?: {} | vue.VNodeChild | {
|
|
22638
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22639
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22640
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22641
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22642
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22643
|
+
};
|
|
22644
|
+
'v-slots'?: {
|
|
22645
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22646
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22647
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22648
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22649
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22650
|
+
} | undefined;
|
|
22651
|
+
} & {
|
|
22652
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22653
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22654
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22655
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22656
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22657
|
+
}, {
|
|
22658
|
+
sticky: boolean;
|
|
22659
|
+
multiSort: boolean;
|
|
22660
|
+
sortAscIcon: IconValue;
|
|
22661
|
+
sortDescIcon: IconValue;
|
|
22662
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
22663
|
+
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22664
|
+
[key: string]: any;
|
|
22665
|
+
}>[];
|
|
22666
|
+
headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22667
|
+
[key: string]: any;
|
|
22668
|
+
}>[];
|
|
22669
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22670
|
+
[key: string]: any;
|
|
22671
|
+
}>[];
|
|
22672
|
+
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22673
|
+
[key: string]: any;
|
|
22674
|
+
}>[];
|
|
22675
|
+
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22676
|
+
[key: string]: any;
|
|
22677
|
+
}>[];
|
|
22678
|
+
}>>, {
|
|
22679
|
+
P: {};
|
|
22680
|
+
B: {};
|
|
22681
|
+
D: {};
|
|
22682
|
+
C: {};
|
|
22683
|
+
M: {};
|
|
22684
|
+
Defaults: {};
|
|
22685
|
+
}, {
|
|
22686
|
+
sticky: boolean;
|
|
22687
|
+
multiSort: boolean;
|
|
22688
|
+
sortAscIcon: IconValue;
|
|
22689
|
+
sortDescIcon: IconValue;
|
|
22690
|
+
} & {
|
|
22691
|
+
color?: string | undefined;
|
|
22692
|
+
loading?: string | boolean | undefined;
|
|
22693
|
+
headerProps?: Record<string, any> | undefined;
|
|
22694
|
+
} & {
|
|
22695
|
+
$children?: {} | vue.VNodeChild | {
|
|
22696
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22697
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22698
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22699
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22700
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22701
|
+
};
|
|
22702
|
+
'v-slots'?: {
|
|
22703
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22704
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22705
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22706
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22707
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22708
|
+
} | undefined;
|
|
22709
|
+
} & {
|
|
22710
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22711
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22712
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22713
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22714
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22715
|
+
}, {}, {}, {}, {}, {
|
|
22716
|
+
sticky: boolean;
|
|
22717
|
+
multiSort: boolean;
|
|
22718
|
+
sortAscIcon: IconValue;
|
|
22719
|
+
sortDescIcon: IconValue;
|
|
22720
|
+
}>;
|
|
22721
|
+
__isFragment?: undefined;
|
|
22722
|
+
__isTeleport?: undefined;
|
|
22723
|
+
__isSuspense?: undefined;
|
|
22724
|
+
} & vue.ComponentOptionsBase<{
|
|
22725
|
+
sticky: boolean;
|
|
22726
|
+
multiSort: boolean;
|
|
22727
|
+
sortAscIcon: IconValue;
|
|
22728
|
+
sortDescIcon: IconValue;
|
|
22729
|
+
} & {
|
|
22730
|
+
color?: string | undefined;
|
|
22731
|
+
loading?: string | boolean | undefined;
|
|
22732
|
+
headerProps?: Record<string, any> | undefined;
|
|
22733
|
+
} & {
|
|
22734
|
+
$children?: {} | vue.VNodeChild | {
|
|
22735
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22736
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22737
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22738
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22739
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22740
|
+
};
|
|
22741
|
+
'v-slots'?: {
|
|
22742
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22743
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22744
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22745
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22746
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22747
|
+
} | undefined;
|
|
22748
|
+
} & {
|
|
22749
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22750
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
22751
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22752
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22753
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
22754
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
22755
|
+
sticky: boolean;
|
|
22756
|
+
multiSort: boolean;
|
|
22757
|
+
sortAscIcon: IconValue;
|
|
22758
|
+
sortDescIcon: IconValue;
|
|
22759
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
22760
|
+
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22761
|
+
[key: string]: any;
|
|
22762
|
+
}>[];
|
|
22763
|
+
headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22764
|
+
[key: string]: any;
|
|
22765
|
+
}>[];
|
|
22766
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22767
|
+
[key: string]: any;
|
|
22768
|
+
}>[];
|
|
22769
|
+
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22770
|
+
[key: string]: any;
|
|
22771
|
+
}>[];
|
|
22772
|
+
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
22773
|
+
[key: string]: any;
|
|
22774
|
+
}>[];
|
|
22775
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
22776
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22777
|
+
color: StringConstructor;
|
|
22778
|
+
sticky: BooleanConstructor;
|
|
22779
|
+
multiSort: BooleanConstructor;
|
|
22780
|
+
sortAscIcon: {
|
|
22781
|
+
type: PropType<IconValue>;
|
|
22782
|
+
default: string;
|
|
22783
|
+
};
|
|
22784
|
+
sortDescIcon: {
|
|
22785
|
+
type: PropType<IconValue>;
|
|
22786
|
+
default: string;
|
|
22787
|
+
};
|
|
22788
|
+
headerProps: {
|
|
22789
|
+
type: PropType<Record<string, any>>;
|
|
22790
|
+
};
|
|
22791
|
+
}, vue.ExtractPropTypes<{
|
|
22792
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22793
|
+
color: StringConstructor;
|
|
22794
|
+
sticky: BooleanConstructor;
|
|
22795
|
+
multiSort: BooleanConstructor;
|
|
22796
|
+
sortAscIcon: {
|
|
22797
|
+
type: PropType<IconValue>;
|
|
22798
|
+
default: string;
|
|
22799
|
+
};
|
|
22800
|
+
sortDescIcon: {
|
|
22801
|
+
type: PropType<IconValue>;
|
|
22802
|
+
default: string;
|
|
22803
|
+
};
|
|
22804
|
+
headerProps: {
|
|
22805
|
+
type: PropType<Record<string, any>>;
|
|
22806
|
+
};
|
|
22807
|
+
}>>;
|
|
22808
|
+
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
|
22663
22809
|
|
|
22664
22810
|
type VDataTableGroupHeaderRowSlots = {
|
|
22665
22811
|
'data-table-group': {
|
|
@@ -30523,6 +30669,7 @@ declare const VExpansionPanels: {
|
|
|
30523
30669
|
readonly: boolean;
|
|
30524
30670
|
static: boolean;
|
|
30525
30671
|
tag: string;
|
|
30672
|
+
focusable: boolean;
|
|
30526
30673
|
tile: boolean;
|
|
30527
30674
|
} & {
|
|
30528
30675
|
max?: number | undefined;
|
|
@@ -30554,6 +30701,7 @@ declare const VExpansionPanels: {
|
|
|
30554
30701
|
readonly: boolean;
|
|
30555
30702
|
static: boolean;
|
|
30556
30703
|
tag: string;
|
|
30704
|
+
focusable: boolean;
|
|
30557
30705
|
tile: boolean;
|
|
30558
30706
|
} & {
|
|
30559
30707
|
max?: number | undefined;
|
|
@@ -30583,6 +30731,7 @@ declare const VExpansionPanels: {
|
|
|
30583
30731
|
readonly: boolean;
|
|
30584
30732
|
static: boolean;
|
|
30585
30733
|
tag: string;
|
|
30734
|
+
focusable: boolean;
|
|
30586
30735
|
tile: boolean;
|
|
30587
30736
|
modelValue: any;
|
|
30588
30737
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -30605,6 +30754,7 @@ declare const VExpansionPanels: {
|
|
|
30605
30754
|
readonly: boolean;
|
|
30606
30755
|
static: boolean;
|
|
30607
30756
|
tag: string;
|
|
30757
|
+
focusable: boolean;
|
|
30608
30758
|
tile: boolean;
|
|
30609
30759
|
} & {
|
|
30610
30760
|
max?: number | undefined;
|
|
@@ -30634,6 +30784,7 @@ declare const VExpansionPanels: {
|
|
|
30634
30784
|
readonly: boolean;
|
|
30635
30785
|
static: boolean;
|
|
30636
30786
|
tag: string;
|
|
30787
|
+
focusable: boolean;
|
|
30637
30788
|
tile: boolean;
|
|
30638
30789
|
modelValue: any;
|
|
30639
30790
|
}>;
|
|
@@ -30649,6 +30800,7 @@ declare const VExpansionPanels: {
|
|
|
30649
30800
|
readonly: boolean;
|
|
30650
30801
|
static: boolean;
|
|
30651
30802
|
tag: string;
|
|
30803
|
+
focusable: boolean;
|
|
30652
30804
|
tile: boolean;
|
|
30653
30805
|
} & {
|
|
30654
30806
|
max?: number | undefined;
|
|
@@ -30680,6 +30832,7 @@ declare const VExpansionPanels: {
|
|
|
30680
30832
|
readonly: boolean;
|
|
30681
30833
|
static: boolean;
|
|
30682
30834
|
tag: string;
|
|
30835
|
+
focusable: boolean;
|
|
30683
30836
|
tile: boolean;
|
|
30684
30837
|
modelValue: any;
|
|
30685
30838
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -30708,6 +30861,7 @@ declare const VExpansionPanels: {
|
|
|
30708
30861
|
};
|
|
30709
30862
|
color: StringConstructor;
|
|
30710
30863
|
flat: BooleanConstructor;
|
|
30864
|
+
focusable: BooleanConstructor;
|
|
30711
30865
|
static: BooleanConstructor;
|
|
30712
30866
|
tile: BooleanConstructor;
|
|
30713
30867
|
variant: {
|
|
@@ -30738,6 +30892,7 @@ declare const VExpansionPanels: {
|
|
|
30738
30892
|
};
|
|
30739
30893
|
color: StringConstructor;
|
|
30740
30894
|
flat: BooleanConstructor;
|
|
30895
|
+
focusable: BooleanConstructor;
|
|
30741
30896
|
static: BooleanConstructor;
|
|
30742
30897
|
tile: BooleanConstructor;
|
|
30743
30898
|
variant: {
|
|
@@ -30757,6 +30912,7 @@ declare const VExpansionPanel: {
|
|
|
30757
30912
|
readonly: boolean;
|
|
30758
30913
|
static: boolean;
|
|
30759
30914
|
tag: string;
|
|
30915
|
+
focusable: boolean;
|
|
30760
30916
|
tile: boolean;
|
|
30761
30917
|
ripple: boolean | {
|
|
30762
30918
|
class: string;
|
|
@@ -30804,6 +30960,7 @@ declare const VExpansionPanel: {
|
|
|
30804
30960
|
readonly: boolean;
|
|
30805
30961
|
static: boolean;
|
|
30806
30962
|
tag: string;
|
|
30963
|
+
focusable: boolean;
|
|
30807
30964
|
tile: boolean;
|
|
30808
30965
|
ripple: boolean | {
|
|
30809
30966
|
class: string;
|
|
@@ -30847,6 +31004,7 @@ declare const VExpansionPanel: {
|
|
|
30847
31004
|
readonly: boolean;
|
|
30848
31005
|
static: boolean;
|
|
30849
31006
|
tag: string;
|
|
31007
|
+
focusable: boolean;
|
|
30850
31008
|
rounded: string | number | boolean;
|
|
30851
31009
|
tile: boolean;
|
|
30852
31010
|
ripple: boolean | {
|
|
@@ -30879,6 +31037,7 @@ declare const VExpansionPanel: {
|
|
|
30879
31037
|
readonly: boolean;
|
|
30880
31038
|
static: boolean;
|
|
30881
31039
|
tag: string;
|
|
31040
|
+
focusable: boolean;
|
|
30882
31041
|
tile: boolean;
|
|
30883
31042
|
ripple: boolean | {
|
|
30884
31043
|
class: string;
|
|
@@ -30922,6 +31081,7 @@ declare const VExpansionPanel: {
|
|
|
30922
31081
|
readonly: boolean;
|
|
30923
31082
|
static: boolean;
|
|
30924
31083
|
tag: string;
|
|
31084
|
+
focusable: boolean;
|
|
30925
31085
|
rounded: string | number | boolean;
|
|
30926
31086
|
tile: boolean;
|
|
30927
31087
|
ripple: boolean | {
|
|
@@ -30941,6 +31101,7 @@ declare const VExpansionPanel: {
|
|
|
30941
31101
|
readonly: boolean;
|
|
30942
31102
|
static: boolean;
|
|
30943
31103
|
tag: string;
|
|
31104
|
+
focusable: boolean;
|
|
30944
31105
|
tile: boolean;
|
|
30945
31106
|
ripple: boolean | {
|
|
30946
31107
|
class: string;
|
|
@@ -30988,6 +31149,7 @@ declare const VExpansionPanel: {
|
|
|
30988
31149
|
readonly: boolean;
|
|
30989
31150
|
static: boolean;
|
|
30990
31151
|
tag: string;
|
|
31152
|
+
focusable: boolean;
|
|
30991
31153
|
rounded: string | number | boolean;
|
|
30992
31154
|
tile: boolean;
|
|
30993
31155
|
ripple: boolean | {
|
|
@@ -31022,6 +31184,7 @@ declare const VExpansionPanel: {
|
|
|
31022
31184
|
default: string;
|
|
31023
31185
|
};
|
|
31024
31186
|
hideActions: BooleanConstructor;
|
|
31187
|
+
focusable: BooleanConstructor;
|
|
31025
31188
|
static: BooleanConstructor;
|
|
31026
31189
|
ripple: {
|
|
31027
31190
|
type: vue.PropType<boolean | {
|
|
@@ -31066,6 +31229,7 @@ declare const VExpansionPanel: {
|
|
|
31066
31229
|
default: string;
|
|
31067
31230
|
};
|
|
31068
31231
|
hideActions: BooleanConstructor;
|
|
31232
|
+
focusable: BooleanConstructor;
|
|
31069
31233
|
static: BooleanConstructor;
|
|
31070
31234
|
ripple: {
|
|
31071
31235
|
type: vue.PropType<boolean | {
|
|
@@ -31211,6 +31375,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31211
31375
|
style: vue.StyleValue;
|
|
31212
31376
|
readonly: boolean;
|
|
31213
31377
|
static: boolean;
|
|
31378
|
+
focusable: boolean;
|
|
31214
31379
|
ripple: boolean | {
|
|
31215
31380
|
class: string;
|
|
31216
31381
|
} | undefined;
|
|
@@ -31236,6 +31401,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31236
31401
|
style: vue.StyleValue;
|
|
31237
31402
|
readonly: boolean;
|
|
31238
31403
|
static: boolean;
|
|
31404
|
+
focusable: boolean;
|
|
31239
31405
|
ripple: boolean | {
|
|
31240
31406
|
class: string;
|
|
31241
31407
|
} | undefined;
|
|
@@ -31261,6 +31427,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31261
31427
|
style: vue.StyleValue;
|
|
31262
31428
|
readonly: boolean;
|
|
31263
31429
|
static: boolean;
|
|
31430
|
+
focusable: boolean;
|
|
31264
31431
|
ripple: boolean | {
|
|
31265
31432
|
class: string;
|
|
31266
31433
|
} | undefined;
|
|
@@ -31285,6 +31452,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31285
31452
|
style: vue.StyleValue;
|
|
31286
31453
|
readonly: boolean;
|
|
31287
31454
|
static: boolean;
|
|
31455
|
+
focusable: boolean;
|
|
31288
31456
|
ripple: boolean | {
|
|
31289
31457
|
class: string;
|
|
31290
31458
|
} | undefined;
|
|
@@ -31310,6 +31478,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31310
31478
|
style: vue.StyleValue;
|
|
31311
31479
|
readonly: boolean;
|
|
31312
31480
|
static: boolean;
|
|
31481
|
+
focusable: boolean;
|
|
31313
31482
|
ripple: boolean | {
|
|
31314
31483
|
class: string;
|
|
31315
31484
|
} | undefined;
|
|
@@ -31324,6 +31493,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31324
31493
|
style: vue.StyleValue;
|
|
31325
31494
|
readonly: boolean;
|
|
31326
31495
|
static: boolean;
|
|
31496
|
+
focusable: boolean;
|
|
31327
31497
|
ripple: boolean | {
|
|
31328
31498
|
class: string;
|
|
31329
31499
|
} | undefined;
|
|
@@ -31349,6 +31519,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31349
31519
|
style: vue.StyleValue;
|
|
31350
31520
|
readonly: boolean;
|
|
31351
31521
|
static: boolean;
|
|
31522
|
+
focusable: boolean;
|
|
31352
31523
|
ripple: boolean | {
|
|
31353
31524
|
class: string;
|
|
31354
31525
|
} | undefined;
|
|
@@ -31378,6 +31549,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31378
31549
|
default: string;
|
|
31379
31550
|
};
|
|
31380
31551
|
hideActions: BooleanConstructor;
|
|
31552
|
+
focusable: BooleanConstructor;
|
|
31381
31553
|
static: BooleanConstructor;
|
|
31382
31554
|
ripple: {
|
|
31383
31555
|
type: PropType<boolean | {
|
|
@@ -31402,6 +31574,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31402
31574
|
default: string;
|
|
31403
31575
|
};
|
|
31404
31576
|
hideActions: BooleanConstructor;
|
|
31577
|
+
focusable: BooleanConstructor;
|
|
31405
31578
|
static: BooleanConstructor;
|
|
31406
31579
|
ripple: {
|
|
31407
31580
|
type: PropType<boolean | {
|
|
@@ -36235,7 +36408,7 @@ declare const VLayout: {
|
|
|
36235
36408
|
}, {
|
|
36236
36409
|
getLayoutItem: (id: string) => {
|
|
36237
36410
|
size: number;
|
|
36238
|
-
position:
|
|
36411
|
+
position: Position;
|
|
36239
36412
|
top: number;
|
|
36240
36413
|
bottom: number;
|
|
36241
36414
|
left: number;
|
|
@@ -36244,7 +36417,7 @@ declare const VLayout: {
|
|
|
36244
36417
|
} | undefined;
|
|
36245
36418
|
items: vue.ComputedRef<{
|
|
36246
36419
|
size: number;
|
|
36247
|
-
position:
|
|
36420
|
+
position: Position;
|
|
36248
36421
|
top: number;
|
|
36249
36422
|
bottom: number;
|
|
36250
36423
|
left: number;
|
|
@@ -36298,7 +36471,7 @@ declare const VLayout: {
|
|
|
36298
36471
|
}, {
|
|
36299
36472
|
getLayoutItem: (id: string) => {
|
|
36300
36473
|
size: number;
|
|
36301
|
-
position:
|
|
36474
|
+
position: Position;
|
|
36302
36475
|
top: number;
|
|
36303
36476
|
bottom: number;
|
|
36304
36477
|
left: number;
|
|
@@ -36307,7 +36480,7 @@ declare const VLayout: {
|
|
|
36307
36480
|
} | undefined;
|
|
36308
36481
|
items: vue.ComputedRef<{
|
|
36309
36482
|
size: number;
|
|
36310
|
-
position:
|
|
36483
|
+
position: Position;
|
|
36311
36484
|
top: number;
|
|
36312
36485
|
bottom: number;
|
|
36313
36486
|
left: number;
|
|
@@ -36339,7 +36512,7 @@ declare const VLayout: {
|
|
|
36339
36512
|
}, {
|
|
36340
36513
|
getLayoutItem: (id: string) => {
|
|
36341
36514
|
size: number;
|
|
36342
|
-
position:
|
|
36515
|
+
position: Position;
|
|
36343
36516
|
top: number;
|
|
36344
36517
|
bottom: number;
|
|
36345
36518
|
left: number;
|
|
@@ -36348,7 +36521,7 @@ declare const VLayout: {
|
|
|
36348
36521
|
} | undefined;
|
|
36349
36522
|
items: vue.ComputedRef<{
|
|
36350
36523
|
size: number;
|
|
36351
|
-
position:
|
|
36524
|
+
position: Position;
|
|
36352
36525
|
top: number;
|
|
36353
36526
|
bottom: number;
|
|
36354
36527
|
left: number;
|
|
@@ -67273,4 +67446,4 @@ declare const VExpandXTransition: {
|
|
|
67273
67446
|
}>>;
|
|
67274
67447
|
type VExpandXTransition = InstanceType<typeof VExpandXTransition>;
|
|
67275
67448
|
|
|
67276
|
-
export { VAlert, VAlertTitle, VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAutocomplete, VAvatar, VBadge, VBanner, VBannerActions, VBannerText, VBottomNavigation, VBottomSheet, VBreadcrumbs, VBreadcrumbsDivider, VBreadcrumbsItem, VBtn, VBtnGroup, VBtnToggle, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VCheckboxBtn, VChip, VChipGroup, VClassIcon, VCode, VCol, VColorPicker, VCombobox, VComponentIcon, VContainer, VCounter, VDataIterator, VDataTable, VDataTableFooter, VDataTableRow, VDataTableRows, VDataTableServer, VDataTableVirtual, VDatePicker, VDatePickerControls, VDatePickerHeader, VDatePickerMonth, VDatePickerMonths, VDatePickerYears, VDefaultsProvider, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VDivider, VExpandTransition, VExpandXTransition, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VExpansionPanels, VFabTransition, VFadeTransition, VField, VFieldLabel, VFileInput, VFooter, VForm, VHover, VIcon, VImg, VInfiniteScroll, VInput, VItem, VItemGroup, VKbd, VLabel, VLayout, VLayoutItem, VLazy, VLigatureIcon, VList, VListGroup, VListImg, VListItem, VListItemAction, VListItemMedia, VListItemSubtitle, VListItemTitle, VListSubheader, VLocaleProvider, VMain, VMenu, VMessages, VNavigationDrawer, VNoSsr, VOtpInput, VOverlay, VPagination, VParallax, VProgressCircular, VProgressLinear, VRadio, VRadioGroup, VRangeSlider, VRating, VResponsive, VRow, VScaleTransition, VScrollXReverseTransition, VScrollXTransition, VScrollYReverseTransition, VScrollYTransition, VSelect, VSelectionControl, VSelectionControlGroup, VSheet, VSkeletonLoader, VSlideGroup, VSlideGroupItem, VSlideXReverseTransition, VSlideXTransition, VSlideYReverseTransition, VSlideYTransition, VSlider, VSnackbar, VSpacer, VStepper, VStepperActions, VStepperHeader, VStepperItem, VStepperWindow, VStepperWindowItem, VSvgIcon, VSwitch, VSystemBar, VTab, VTable, VTabs, VTextField, VTextarea, VThemeProvider, VTimeline, VTimelineItem, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VValidation, VVirtualScroll, VWindow, VWindowItem };
|
|
67449
|
+
export { VAlert, VAlertTitle, VApp, VAppBar, VAppBarNavIcon, VAppBarTitle, VAutocomplete, VAvatar, VBadge, VBanner, VBannerActions, VBannerText, VBottomNavigation, VBottomSheet, VBreadcrumbs, VBreadcrumbsDivider, VBreadcrumbsItem, VBtn, VBtnGroup, VBtnToggle, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VCarousel, VCarouselItem, VCheckbox, VCheckboxBtn, VChip, VChipGroup, VClassIcon, VCode, VCol, VColorPicker, VCombobox, VComponentIcon, VContainer, VCounter, VDataIterator, VDataTable, VDataTableFooter, VDataTableHeaders, VDataTableRow, VDataTableRows, VDataTableServer, VDataTableVirtual, VDatePicker, VDatePickerControls, VDatePickerHeader, VDatePickerMonth, VDatePickerMonths, VDatePickerYears, VDefaultsProvider, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VDivider, VExpandTransition, VExpandXTransition, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VExpansionPanels, VFabTransition, VFadeTransition, VField, VFieldLabel, VFileInput, VFooter, VForm, VHover, VIcon, VImg, VInfiniteScroll, VInput, VItem, VItemGroup, VKbd, VLabel, VLayout, VLayoutItem, VLazy, VLigatureIcon, VList, VListGroup, VListImg, VListItem, VListItemAction, VListItemMedia, VListItemSubtitle, VListItemTitle, VListSubheader, VLocaleProvider, VMain, VMenu, VMessages, VNavigationDrawer, VNoSsr, VOtpInput, VOverlay, VPagination, VParallax, VProgressCircular, VProgressLinear, VRadio, VRadioGroup, VRangeSlider, VRating, VResponsive, VRow, VScaleTransition, VScrollXReverseTransition, VScrollXTransition, VScrollYReverseTransition, VScrollYTransition, VSelect, VSelectionControl, VSelectionControlGroup, VSheet, VSkeletonLoader, VSlideGroup, VSlideGroupItem, VSlideXReverseTransition, VSlideXTransition, VSlideYReverseTransition, VSlideYTransition, VSlider, VSnackbar, VSpacer, VStepper, VStepperActions, VStepperHeader, VStepperItem, VStepperWindow, VStepperWindowItem, VSvgIcon, VSwitch, VSystemBar, VTab, VTable, VTabs, VTextField, VTextarea, VThemeProvider, VTimeline, VTimelineItem, VToolbar, VToolbarItems, VToolbarTitle, VTooltip, VValidation, VVirtualScroll, VWindow, VWindowItem };
|