vuetify 3.5.5 → 3.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +40 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +132 -128
- package/dist/json/tags.json +15 -0
- package/dist/json/web-types.json +292 -1
- package/dist/vuetify-labs.css +1632 -1635
- package/dist/vuetify-labs.d.ts +242 -1
- package/dist/vuetify-labs.esm.js +24 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +24 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +711 -714
- package/dist/vuetify.d.ts +281 -39
- package/dist/vuetify.esm.js +24 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -21
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +3 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- 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/VSelect/VSelect.mjs +4 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/index.d.mts +241 -1
- 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/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -38
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -23006,6 +23006,219 @@ type VDataTableHeadersSlots = {
|
|
|
23006
23006
|
} & {
|
|
23007
23007
|
[key: `header.${string}`]: VDataTableHeaderCellColumnSlotProps;
|
|
23008
23008
|
};
|
|
23009
|
+
declare const VDataTableHeaders: {
|
|
23010
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
23011
|
+
sticky: boolean;
|
|
23012
|
+
multiSort: boolean;
|
|
23013
|
+
sortAscIcon: IconValue;
|
|
23014
|
+
sortDescIcon: IconValue;
|
|
23015
|
+
} & {
|
|
23016
|
+
color?: string | undefined;
|
|
23017
|
+
loading?: string | boolean | undefined;
|
|
23018
|
+
headerProps?: Record<string, any> | undefined;
|
|
23019
|
+
} & {
|
|
23020
|
+
$children?: {} | vue.VNodeChild | {
|
|
23021
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23022
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23023
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23024
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23025
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23026
|
+
};
|
|
23027
|
+
'v-slots'?: {
|
|
23028
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23029
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23030
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23031
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23032
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23033
|
+
} | undefined;
|
|
23034
|
+
} & {
|
|
23035
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23036
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23037
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23038
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23039
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23040
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
23041
|
+
sticky: boolean;
|
|
23042
|
+
multiSort: boolean;
|
|
23043
|
+
sortAscIcon: IconValue;
|
|
23044
|
+
sortDescIcon: IconValue;
|
|
23045
|
+
} & {
|
|
23046
|
+
color?: string | undefined;
|
|
23047
|
+
loading?: string | boolean | undefined;
|
|
23048
|
+
headerProps?: Record<string, any> | undefined;
|
|
23049
|
+
} & {
|
|
23050
|
+
$children?: {} | vue.VNodeChild | {
|
|
23051
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23052
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23053
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23054
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23055
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23056
|
+
};
|
|
23057
|
+
'v-slots'?: {
|
|
23058
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23059
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23060
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23061
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23062
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23063
|
+
} | undefined;
|
|
23064
|
+
} & {
|
|
23065
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23066
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23067
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23068
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23069
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23070
|
+
}, {
|
|
23071
|
+
sticky: boolean;
|
|
23072
|
+
multiSort: boolean;
|
|
23073
|
+
sortAscIcon: IconValue;
|
|
23074
|
+
sortDescIcon: IconValue;
|
|
23075
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
23076
|
+
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23077
|
+
[key: string]: any;
|
|
23078
|
+
}>[];
|
|
23079
|
+
headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23080
|
+
[key: string]: any;
|
|
23081
|
+
}>[];
|
|
23082
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23083
|
+
[key: string]: any;
|
|
23084
|
+
}>[];
|
|
23085
|
+
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23086
|
+
[key: string]: any;
|
|
23087
|
+
}>[];
|
|
23088
|
+
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23089
|
+
[key: string]: any;
|
|
23090
|
+
}>[];
|
|
23091
|
+
}>>, {
|
|
23092
|
+
P: {};
|
|
23093
|
+
B: {};
|
|
23094
|
+
D: {};
|
|
23095
|
+
C: {};
|
|
23096
|
+
M: {};
|
|
23097
|
+
Defaults: {};
|
|
23098
|
+
}, {
|
|
23099
|
+
sticky: boolean;
|
|
23100
|
+
multiSort: boolean;
|
|
23101
|
+
sortAscIcon: IconValue;
|
|
23102
|
+
sortDescIcon: IconValue;
|
|
23103
|
+
} & {
|
|
23104
|
+
color?: string | undefined;
|
|
23105
|
+
loading?: string | boolean | undefined;
|
|
23106
|
+
headerProps?: Record<string, any> | undefined;
|
|
23107
|
+
} & {
|
|
23108
|
+
$children?: {} | vue.VNodeChild | {
|
|
23109
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23110
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23111
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23112
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23113
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23114
|
+
};
|
|
23115
|
+
'v-slots'?: {
|
|
23116
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23117
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23118
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23119
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23120
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23121
|
+
} | undefined;
|
|
23122
|
+
} & {
|
|
23123
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23124
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23125
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23126
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23127
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23128
|
+
}, {}, {}, {}, {}, {
|
|
23129
|
+
sticky: boolean;
|
|
23130
|
+
multiSort: boolean;
|
|
23131
|
+
sortAscIcon: IconValue;
|
|
23132
|
+
sortDescIcon: IconValue;
|
|
23133
|
+
}>;
|
|
23134
|
+
__isFragment?: undefined;
|
|
23135
|
+
__isTeleport?: undefined;
|
|
23136
|
+
__isSuspense?: undefined;
|
|
23137
|
+
} & vue.ComponentOptionsBase<{
|
|
23138
|
+
sticky: boolean;
|
|
23139
|
+
multiSort: boolean;
|
|
23140
|
+
sortAscIcon: IconValue;
|
|
23141
|
+
sortDescIcon: IconValue;
|
|
23142
|
+
} & {
|
|
23143
|
+
color?: string | undefined;
|
|
23144
|
+
loading?: string | boolean | undefined;
|
|
23145
|
+
headerProps?: Record<string, any> | undefined;
|
|
23146
|
+
} & {
|
|
23147
|
+
$children?: {} | vue.VNodeChild | {
|
|
23148
|
+
[x: `header.${string}`]: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23149
|
+
headers?: ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23150
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23151
|
+
'header.data-table-select'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23152
|
+
'header.data-table-expand'?: ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23153
|
+
};
|
|
23154
|
+
'v-slots'?: {
|
|
23155
|
+
[x: `header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23156
|
+
headers?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23157
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23158
|
+
'header.data-table-select'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23159
|
+
'header.data-table-expand'?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23160
|
+
} | undefined;
|
|
23161
|
+
} & {
|
|
23162
|
+
[x: `v-slot:header.${string}`]: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23163
|
+
"v-slot:headers"?: false | ((arg: HeadersSlotProps) => vue.VNodeChild) | undefined;
|
|
23164
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23165
|
+
"v-slot:header.data-table-select"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23166
|
+
"v-slot:header.data-table-expand"?: false | ((arg: VDataTableHeaderCellColumnSlotProps) => vue.VNodeChild) | undefined;
|
|
23167
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
23168
|
+
sticky: boolean;
|
|
23169
|
+
multiSort: boolean;
|
|
23170
|
+
sortAscIcon: IconValue;
|
|
23171
|
+
sortDescIcon: IconValue;
|
|
23172
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
23173
|
+
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23174
|
+
[key: string]: any;
|
|
23175
|
+
}>[];
|
|
23176
|
+
headers: (arg: HeadersSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23177
|
+
[key: string]: any;
|
|
23178
|
+
}>[];
|
|
23179
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23180
|
+
[key: string]: any;
|
|
23181
|
+
}>[];
|
|
23182
|
+
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23183
|
+
[key: string]: any;
|
|
23184
|
+
}>[];
|
|
23185
|
+
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
23186
|
+
[key: string]: any;
|
|
23187
|
+
}>[];
|
|
23188
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
23189
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
23190
|
+
color: StringConstructor;
|
|
23191
|
+
sticky: BooleanConstructor;
|
|
23192
|
+
multiSort: BooleanConstructor;
|
|
23193
|
+
sortAscIcon: {
|
|
23194
|
+
type: PropType<IconValue>;
|
|
23195
|
+
default: string;
|
|
23196
|
+
};
|
|
23197
|
+
sortDescIcon: {
|
|
23198
|
+
type: PropType<IconValue>;
|
|
23199
|
+
default: string;
|
|
23200
|
+
};
|
|
23201
|
+
headerProps: {
|
|
23202
|
+
type: PropType<Record<string, any>>;
|
|
23203
|
+
};
|
|
23204
|
+
}, vue.ExtractPropTypes<{
|
|
23205
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
23206
|
+
color: StringConstructor;
|
|
23207
|
+
sticky: BooleanConstructor;
|
|
23208
|
+
multiSort: BooleanConstructor;
|
|
23209
|
+
sortAscIcon: {
|
|
23210
|
+
type: PropType<IconValue>;
|
|
23211
|
+
default: string;
|
|
23212
|
+
};
|
|
23213
|
+
sortDescIcon: {
|
|
23214
|
+
type: PropType<IconValue>;
|
|
23215
|
+
default: string;
|
|
23216
|
+
};
|
|
23217
|
+
headerProps: {
|
|
23218
|
+
type: PropType<Record<string, any>>;
|
|
23219
|
+
};
|
|
23220
|
+
}>>;
|
|
23221
|
+
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
|
23009
23222
|
|
|
23010
23223
|
type VDataTableGroupHeaderRowSlots = {
|
|
23011
23224
|
'data-table-group': {
|
|
@@ -30869,6 +31082,7 @@ declare const VExpansionPanels: {
|
|
|
30869
31082
|
readonly: boolean;
|
|
30870
31083
|
static: boolean;
|
|
30871
31084
|
tag: string;
|
|
31085
|
+
focusable: boolean;
|
|
30872
31086
|
tile: boolean;
|
|
30873
31087
|
} & {
|
|
30874
31088
|
max?: number | undefined;
|
|
@@ -30900,6 +31114,7 @@ declare const VExpansionPanels: {
|
|
|
30900
31114
|
readonly: boolean;
|
|
30901
31115
|
static: boolean;
|
|
30902
31116
|
tag: string;
|
|
31117
|
+
focusable: boolean;
|
|
30903
31118
|
tile: boolean;
|
|
30904
31119
|
} & {
|
|
30905
31120
|
max?: number | undefined;
|
|
@@ -30929,6 +31144,7 @@ declare const VExpansionPanels: {
|
|
|
30929
31144
|
readonly: boolean;
|
|
30930
31145
|
static: boolean;
|
|
30931
31146
|
tag: string;
|
|
31147
|
+
focusable: boolean;
|
|
30932
31148
|
tile: boolean;
|
|
30933
31149
|
modelValue: any;
|
|
30934
31150
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -30951,6 +31167,7 @@ declare const VExpansionPanels: {
|
|
|
30951
31167
|
readonly: boolean;
|
|
30952
31168
|
static: boolean;
|
|
30953
31169
|
tag: string;
|
|
31170
|
+
focusable: boolean;
|
|
30954
31171
|
tile: boolean;
|
|
30955
31172
|
} & {
|
|
30956
31173
|
max?: number | undefined;
|
|
@@ -30980,6 +31197,7 @@ declare const VExpansionPanels: {
|
|
|
30980
31197
|
readonly: boolean;
|
|
30981
31198
|
static: boolean;
|
|
30982
31199
|
tag: string;
|
|
31200
|
+
focusable: boolean;
|
|
30983
31201
|
tile: boolean;
|
|
30984
31202
|
modelValue: any;
|
|
30985
31203
|
}>;
|
|
@@ -30995,6 +31213,7 @@ declare const VExpansionPanels: {
|
|
|
30995
31213
|
readonly: boolean;
|
|
30996
31214
|
static: boolean;
|
|
30997
31215
|
tag: string;
|
|
31216
|
+
focusable: boolean;
|
|
30998
31217
|
tile: boolean;
|
|
30999
31218
|
} & {
|
|
31000
31219
|
max?: number | undefined;
|
|
@@ -31026,6 +31245,7 @@ declare const VExpansionPanels: {
|
|
|
31026
31245
|
readonly: boolean;
|
|
31027
31246
|
static: boolean;
|
|
31028
31247
|
tag: string;
|
|
31248
|
+
focusable: boolean;
|
|
31029
31249
|
tile: boolean;
|
|
31030
31250
|
modelValue: any;
|
|
31031
31251
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -31054,6 +31274,7 @@ declare const VExpansionPanels: {
|
|
|
31054
31274
|
};
|
|
31055
31275
|
color: StringConstructor;
|
|
31056
31276
|
flat: BooleanConstructor;
|
|
31277
|
+
focusable: BooleanConstructor;
|
|
31057
31278
|
static: BooleanConstructor;
|
|
31058
31279
|
tile: BooleanConstructor;
|
|
31059
31280
|
variant: {
|
|
@@ -31084,6 +31305,7 @@ declare const VExpansionPanels: {
|
|
|
31084
31305
|
};
|
|
31085
31306
|
color: StringConstructor;
|
|
31086
31307
|
flat: BooleanConstructor;
|
|
31308
|
+
focusable: BooleanConstructor;
|
|
31087
31309
|
static: BooleanConstructor;
|
|
31088
31310
|
tile: BooleanConstructor;
|
|
31089
31311
|
variant: {
|
|
@@ -31103,6 +31325,7 @@ declare const VExpansionPanel: {
|
|
|
31103
31325
|
readonly: boolean;
|
|
31104
31326
|
static: boolean;
|
|
31105
31327
|
tag: string;
|
|
31328
|
+
focusable: boolean;
|
|
31106
31329
|
tile: boolean;
|
|
31107
31330
|
ripple: boolean | {
|
|
31108
31331
|
class: string;
|
|
@@ -31150,6 +31373,7 @@ declare const VExpansionPanel: {
|
|
|
31150
31373
|
readonly: boolean;
|
|
31151
31374
|
static: boolean;
|
|
31152
31375
|
tag: string;
|
|
31376
|
+
focusable: boolean;
|
|
31153
31377
|
tile: boolean;
|
|
31154
31378
|
ripple: boolean | {
|
|
31155
31379
|
class: string;
|
|
@@ -31193,6 +31417,7 @@ declare const VExpansionPanel: {
|
|
|
31193
31417
|
readonly: boolean;
|
|
31194
31418
|
static: boolean;
|
|
31195
31419
|
tag: string;
|
|
31420
|
+
focusable: boolean;
|
|
31196
31421
|
rounded: string | number | boolean;
|
|
31197
31422
|
tile: boolean;
|
|
31198
31423
|
ripple: boolean | {
|
|
@@ -31225,6 +31450,7 @@ declare const VExpansionPanel: {
|
|
|
31225
31450
|
readonly: boolean;
|
|
31226
31451
|
static: boolean;
|
|
31227
31452
|
tag: string;
|
|
31453
|
+
focusable: boolean;
|
|
31228
31454
|
tile: boolean;
|
|
31229
31455
|
ripple: boolean | {
|
|
31230
31456
|
class: string;
|
|
@@ -31268,6 +31494,7 @@ declare const VExpansionPanel: {
|
|
|
31268
31494
|
readonly: boolean;
|
|
31269
31495
|
static: boolean;
|
|
31270
31496
|
tag: string;
|
|
31497
|
+
focusable: boolean;
|
|
31271
31498
|
rounded: string | number | boolean;
|
|
31272
31499
|
tile: boolean;
|
|
31273
31500
|
ripple: boolean | {
|
|
@@ -31287,6 +31514,7 @@ declare const VExpansionPanel: {
|
|
|
31287
31514
|
readonly: boolean;
|
|
31288
31515
|
static: boolean;
|
|
31289
31516
|
tag: string;
|
|
31517
|
+
focusable: boolean;
|
|
31290
31518
|
tile: boolean;
|
|
31291
31519
|
ripple: boolean | {
|
|
31292
31520
|
class: string;
|
|
@@ -31334,6 +31562,7 @@ declare const VExpansionPanel: {
|
|
|
31334
31562
|
readonly: boolean;
|
|
31335
31563
|
static: boolean;
|
|
31336
31564
|
tag: string;
|
|
31565
|
+
focusable: boolean;
|
|
31337
31566
|
rounded: string | number | boolean;
|
|
31338
31567
|
tile: boolean;
|
|
31339
31568
|
ripple: boolean | {
|
|
@@ -31368,6 +31597,7 @@ declare const VExpansionPanel: {
|
|
|
31368
31597
|
default: string;
|
|
31369
31598
|
};
|
|
31370
31599
|
hideActions: BooleanConstructor;
|
|
31600
|
+
focusable: BooleanConstructor;
|
|
31371
31601
|
static: BooleanConstructor;
|
|
31372
31602
|
ripple: {
|
|
31373
31603
|
type: vue.PropType<boolean | {
|
|
@@ -31412,6 +31642,7 @@ declare const VExpansionPanel: {
|
|
|
31412
31642
|
default: string;
|
|
31413
31643
|
};
|
|
31414
31644
|
hideActions: BooleanConstructor;
|
|
31645
|
+
focusable: BooleanConstructor;
|
|
31415
31646
|
static: BooleanConstructor;
|
|
31416
31647
|
ripple: {
|
|
31417
31648
|
type: vue.PropType<boolean | {
|
|
@@ -31557,6 +31788,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31557
31788
|
style: vue.StyleValue;
|
|
31558
31789
|
readonly: boolean;
|
|
31559
31790
|
static: boolean;
|
|
31791
|
+
focusable: boolean;
|
|
31560
31792
|
ripple: boolean | {
|
|
31561
31793
|
class: string;
|
|
31562
31794
|
} | undefined;
|
|
@@ -31582,6 +31814,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31582
31814
|
style: vue.StyleValue;
|
|
31583
31815
|
readonly: boolean;
|
|
31584
31816
|
static: boolean;
|
|
31817
|
+
focusable: boolean;
|
|
31585
31818
|
ripple: boolean | {
|
|
31586
31819
|
class: string;
|
|
31587
31820
|
} | undefined;
|
|
@@ -31607,6 +31840,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31607
31840
|
style: vue.StyleValue;
|
|
31608
31841
|
readonly: boolean;
|
|
31609
31842
|
static: boolean;
|
|
31843
|
+
focusable: boolean;
|
|
31610
31844
|
ripple: boolean | {
|
|
31611
31845
|
class: string;
|
|
31612
31846
|
} | undefined;
|
|
@@ -31631,6 +31865,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31631
31865
|
style: vue.StyleValue;
|
|
31632
31866
|
readonly: boolean;
|
|
31633
31867
|
static: boolean;
|
|
31868
|
+
focusable: boolean;
|
|
31634
31869
|
ripple: boolean | {
|
|
31635
31870
|
class: string;
|
|
31636
31871
|
} | undefined;
|
|
@@ -31656,6 +31891,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31656
31891
|
style: vue.StyleValue;
|
|
31657
31892
|
readonly: boolean;
|
|
31658
31893
|
static: boolean;
|
|
31894
|
+
focusable: boolean;
|
|
31659
31895
|
ripple: boolean | {
|
|
31660
31896
|
class: string;
|
|
31661
31897
|
} | undefined;
|
|
@@ -31670,6 +31906,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31670
31906
|
style: vue.StyleValue;
|
|
31671
31907
|
readonly: boolean;
|
|
31672
31908
|
static: boolean;
|
|
31909
|
+
focusable: boolean;
|
|
31673
31910
|
ripple: boolean | {
|
|
31674
31911
|
class: string;
|
|
31675
31912
|
} | undefined;
|
|
@@ -31695,6 +31932,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31695
31932
|
style: vue.StyleValue;
|
|
31696
31933
|
readonly: boolean;
|
|
31697
31934
|
static: boolean;
|
|
31935
|
+
focusable: boolean;
|
|
31698
31936
|
ripple: boolean | {
|
|
31699
31937
|
class: string;
|
|
31700
31938
|
} | undefined;
|
|
@@ -31724,6 +31962,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31724
31962
|
default: string;
|
|
31725
31963
|
};
|
|
31726
31964
|
hideActions: BooleanConstructor;
|
|
31965
|
+
focusable: BooleanConstructor;
|
|
31727
31966
|
static: BooleanConstructor;
|
|
31728
31967
|
ripple: {
|
|
31729
31968
|
type: PropType<boolean | {
|
|
@@ -31748,6 +31987,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31748
31987
|
default: string;
|
|
31749
31988
|
};
|
|
31750
31989
|
hideActions: BooleanConstructor;
|
|
31990
|
+
focusable: BooleanConstructor;
|
|
31751
31991
|
static: BooleanConstructor;
|
|
31752
31992
|
ripple: {
|
|
31753
31993
|
type: PropType<boolean | {
|
|
@@ -67664,6 +67904,7 @@ declare const index_d$1_VCounter: typeof VCounter;
|
|
|
67664
67904
|
declare const index_d$1_VDataIterator: typeof VDataIterator;
|
|
67665
67905
|
declare const index_d$1_VDataTable: typeof VDataTable;
|
|
67666
67906
|
declare const index_d$1_VDataTableFooter: typeof VDataTableFooter;
|
|
67907
|
+
declare const index_d$1_VDataTableHeaders: typeof VDataTableHeaders;
|
|
67667
67908
|
declare const index_d$1_VDataTableRow: typeof VDataTableRow;
|
|
67668
67909
|
declare const index_d$1_VDataTableRows: typeof VDataTableRows;
|
|
67669
67910
|
declare const index_d$1_VDataTableServer: typeof VDataTableServer;
|
|
@@ -67778,7 +68019,7 @@ declare const index_d$1_VVirtualScroll: typeof VVirtualScroll;
|
|
|
67778
68019
|
declare const index_d$1_VWindow: typeof VWindow;
|
|
67779
68020
|
declare const index_d$1_VWindowItem: typeof VWindowItem;
|
|
67780
68021
|
declare namespace index_d$1 {
|
|
67781
|
-
export { type index_d$1_VAlert as VAlert, type index_d$1_VAlertTitle as VAlertTitle, type index_d$1_VApp as VApp, type index_d$1_VAppBar as VAppBar, type index_d$1_VAppBarNavIcon as VAppBarNavIcon, type index_d$1_VAppBarTitle as VAppBarTitle, type index_d$1_VAutocomplete as VAutocomplete, type index_d$1_VAvatar as VAvatar, type index_d$1_VBadge as VBadge, type index_d$1_VBanner as VBanner, type index_d$1_VBannerActions as VBannerActions, type index_d$1_VBannerText as VBannerText, type index_d$1_VBottomNavigation as VBottomNavigation, type index_d$1_VBottomSheet as VBottomSheet, type index_d$1_VBreadcrumbs as VBreadcrumbs, type index_d$1_VBreadcrumbsDivider as VBreadcrumbsDivider, type index_d$1_VBreadcrumbsItem as VBreadcrumbsItem, type index_d$1_VBtn as VBtn, type index_d$1_VBtnGroup as VBtnGroup, type index_d$1_VBtnToggle as VBtnToggle, type index_d$1_VCard as VCard, type index_d$1_VCardActions as VCardActions, type index_d$1_VCardItem as VCardItem, type index_d$1_VCardSubtitle as VCardSubtitle, type index_d$1_VCardText as VCardText, type index_d$1_VCardTitle as VCardTitle, type index_d$1_VCarousel as VCarousel, type index_d$1_VCarouselItem as VCarouselItem, type index_d$1_VCheckbox as VCheckbox, type index_d$1_VCheckboxBtn as VCheckboxBtn, type index_d$1_VChip as VChip, type index_d$1_VChipGroup as VChipGroup, type index_d$1_VClassIcon as VClassIcon, type index_d$1_VCode as VCode, type index_d$1_VCol as VCol, type index_d$1_VColorPicker as VColorPicker, type index_d$1_VCombobox as VCombobox, type index_d$1_VComponentIcon as VComponentIcon, type index_d$1_VContainer as VContainer, type index_d$1_VCounter as VCounter, type index_d$1_VDataIterator as VDataIterator, type index_d$1_VDataTable as VDataTable, index_d$1_VDataTableFooter as VDataTableFooter, type index_d$1_VDataTableRow as VDataTableRow, type index_d$1_VDataTableRows as VDataTableRows, type index_d$1_VDataTableServer as VDataTableServer, type index_d$1_VDataTableVirtual as VDataTableVirtual, type index_d$1_VDatePicker as VDatePicker, type index_d$1_VDatePickerControls as VDatePickerControls, type index_d$1_VDatePickerHeader as VDatePickerHeader, type index_d$1_VDatePickerMonth as VDatePickerMonth, type index_d$1_VDatePickerMonths as VDatePickerMonths, type index_d$1_VDatePickerYears as VDatePickerYears, type index_d$1_VDefaultsProvider as VDefaultsProvider, type index_d$1_VDialog as VDialog, type index_d$1_VDialogBottomTransition as VDialogBottomTransition, type index_d$1_VDialogTopTransition as VDialogTopTransition, type index_d$1_VDialogTransition as VDialogTransition, type index_d$1_VDivider as VDivider, type index_d$1_VExpandTransition as VExpandTransition, type index_d$1_VExpandXTransition as VExpandXTransition, type index_d$1_VExpansionPanel as VExpansionPanel, type index_d$1_VExpansionPanelText as VExpansionPanelText, type index_d$1_VExpansionPanelTitle as VExpansionPanelTitle, type index_d$1_VExpansionPanels as VExpansionPanels, type index_d$1_VFabTransition as VFabTransition, type index_d$1_VFadeTransition as VFadeTransition, type index_d$1_VField as VField, type index_d$1_VFieldLabel as VFieldLabel, type index_d$1_VFileInput as VFileInput, type index_d$1_VFooter as VFooter, type index_d$1_VForm as VForm, type index_d$1_VHover as VHover, type index_d$1_VIcon as VIcon, type index_d$1_VImg as VImg, type index_d$1_VInfiniteScroll as VInfiniteScroll, type index_d$1_VInput as VInput, type index_d$1_VItem as VItem, type index_d$1_VItemGroup as VItemGroup, type index_d$1_VKbd as VKbd, type index_d$1_VLabel as VLabel, type index_d$1_VLayout as VLayout, type index_d$1_VLayoutItem as VLayoutItem, type index_d$1_VLazy as VLazy, type index_d$1_VLigatureIcon as VLigatureIcon, type index_d$1_VList as VList, type index_d$1_VListGroup as VListGroup, type index_d$1_VListImg as VListImg, type index_d$1_VListItem as VListItem, type index_d$1_VListItemAction as VListItemAction, type index_d$1_VListItemMedia as VListItemMedia, type index_d$1_VListItemSubtitle as VListItemSubtitle, type index_d$1_VListItemTitle as VListItemTitle, type index_d$1_VListSubheader as VListSubheader, type index_d$1_VLocaleProvider as VLocaleProvider, type index_d$1_VMain as VMain, type index_d$1_VMenu as VMenu, type index_d$1_VMessages as VMessages, type index_d$1_VNavigationDrawer as VNavigationDrawer, type index_d$1_VNoSsr as VNoSsr, type index_d$1_VOtpInput as VOtpInput, type index_d$1_VOverlay as VOverlay, type index_d$1_VPagination as VPagination, type index_d$1_VParallax as VParallax, type index_d$1_VProgressCircular as VProgressCircular, type index_d$1_VProgressLinear as VProgressLinear, type index_d$1_VRadio as VRadio, type index_d$1_VRadioGroup as VRadioGroup, type index_d$1_VRangeSlider as VRangeSlider, type index_d$1_VRating as VRating, type index_d$1_VResponsive as VResponsive, type index_d$1_VRow as VRow, type index_d$1_VScaleTransition as VScaleTransition, type index_d$1_VScrollXReverseTransition as VScrollXReverseTransition, type index_d$1_VScrollXTransition as VScrollXTransition, type index_d$1_VScrollYReverseTransition as VScrollYReverseTransition, type index_d$1_VScrollYTransition as VScrollYTransition, type index_d$1_VSelect as VSelect, type index_d$1_VSelectionControl as VSelectionControl, type index_d$1_VSelectionControlGroup as VSelectionControlGroup, type index_d$1_VSheet as VSheet, type index_d$1_VSkeletonLoader as VSkeletonLoader, type index_d$1_VSlideGroup as VSlideGroup, type index_d$1_VSlideGroupItem as VSlideGroupItem, type index_d$1_VSlideXReverseTransition as VSlideXReverseTransition, type index_d$1_VSlideXTransition as VSlideXTransition, type index_d$1_VSlideYReverseTransition as VSlideYReverseTransition, type index_d$1_VSlideYTransition as VSlideYTransition, type index_d$1_VSlider as VSlider, type index_d$1_VSnackbar as VSnackbar, type index_d$1_VSpacer as VSpacer, type index_d$1_VStepper as VStepper, type index_d$1_VStepperActions as VStepperActions, type index_d$1_VStepperHeader as VStepperHeader, type index_d$1_VStepperItem as VStepperItem, type index_d$1_VStepperWindow as VStepperWindow, type index_d$1_VStepperWindowItem as VStepperWindowItem, type index_d$1_VSvgIcon as VSvgIcon, type index_d$1_VSwitch as VSwitch, type index_d$1_VSystemBar as VSystemBar, type index_d$1_VTab as VTab, type index_d$1_VTable as VTable, type index_d$1_VTabs as VTabs, type index_d$1_VTextField as VTextField, type index_d$1_VTextarea as VTextarea, type index_d$1_VThemeProvider as VThemeProvider, type index_d$1_VTimeline as VTimeline, type index_d$1_VTimelineItem as VTimelineItem, type index_d$1_VToolbar as VToolbar, type index_d$1_VToolbarItems as VToolbarItems, type index_d$1_VToolbarTitle as VToolbarTitle, type index_d$1_VTooltip as VTooltip, type index_d$1_VValidation as VValidation, type index_d$1_VVirtualScroll as VVirtualScroll, type index_d$1_VWindow as VWindow, type index_d$1_VWindowItem as VWindowItem };
|
|
68022
|
+
export { type index_d$1_VAlert as VAlert, type index_d$1_VAlertTitle as VAlertTitle, type index_d$1_VApp as VApp, type index_d$1_VAppBar as VAppBar, type index_d$1_VAppBarNavIcon as VAppBarNavIcon, type index_d$1_VAppBarTitle as VAppBarTitle, type index_d$1_VAutocomplete as VAutocomplete, type index_d$1_VAvatar as VAvatar, type index_d$1_VBadge as VBadge, type index_d$1_VBanner as VBanner, type index_d$1_VBannerActions as VBannerActions, type index_d$1_VBannerText as VBannerText, type index_d$1_VBottomNavigation as VBottomNavigation, type index_d$1_VBottomSheet as VBottomSheet, type index_d$1_VBreadcrumbs as VBreadcrumbs, type index_d$1_VBreadcrumbsDivider as VBreadcrumbsDivider, type index_d$1_VBreadcrumbsItem as VBreadcrumbsItem, type index_d$1_VBtn as VBtn, type index_d$1_VBtnGroup as VBtnGroup, type index_d$1_VBtnToggle as VBtnToggle, type index_d$1_VCard as VCard, type index_d$1_VCardActions as VCardActions, type index_d$1_VCardItem as VCardItem, type index_d$1_VCardSubtitle as VCardSubtitle, type index_d$1_VCardText as VCardText, type index_d$1_VCardTitle as VCardTitle, type index_d$1_VCarousel as VCarousel, type index_d$1_VCarouselItem as VCarouselItem, type index_d$1_VCheckbox as VCheckbox, type index_d$1_VCheckboxBtn as VCheckboxBtn, type index_d$1_VChip as VChip, type index_d$1_VChipGroup as VChipGroup, type index_d$1_VClassIcon as VClassIcon, type index_d$1_VCode as VCode, type index_d$1_VCol as VCol, type index_d$1_VColorPicker as VColorPicker, type index_d$1_VCombobox as VCombobox, type index_d$1_VComponentIcon as VComponentIcon, type index_d$1_VContainer as VContainer, type index_d$1_VCounter as VCounter, type index_d$1_VDataIterator as VDataIterator, type index_d$1_VDataTable as VDataTable, index_d$1_VDataTableFooter as VDataTableFooter, type index_d$1_VDataTableHeaders as VDataTableHeaders, type index_d$1_VDataTableRow as VDataTableRow, type index_d$1_VDataTableRows as VDataTableRows, type index_d$1_VDataTableServer as VDataTableServer, type index_d$1_VDataTableVirtual as VDataTableVirtual, type index_d$1_VDatePicker as VDatePicker, type index_d$1_VDatePickerControls as VDatePickerControls, type index_d$1_VDatePickerHeader as VDatePickerHeader, type index_d$1_VDatePickerMonth as VDatePickerMonth, type index_d$1_VDatePickerMonths as VDatePickerMonths, type index_d$1_VDatePickerYears as VDatePickerYears, type index_d$1_VDefaultsProvider as VDefaultsProvider, type index_d$1_VDialog as VDialog, type index_d$1_VDialogBottomTransition as VDialogBottomTransition, type index_d$1_VDialogTopTransition as VDialogTopTransition, type index_d$1_VDialogTransition as VDialogTransition, type index_d$1_VDivider as VDivider, type index_d$1_VExpandTransition as VExpandTransition, type index_d$1_VExpandXTransition as VExpandXTransition, type index_d$1_VExpansionPanel as VExpansionPanel, type index_d$1_VExpansionPanelText as VExpansionPanelText, type index_d$1_VExpansionPanelTitle as VExpansionPanelTitle, type index_d$1_VExpansionPanels as VExpansionPanels, type index_d$1_VFabTransition as VFabTransition, type index_d$1_VFadeTransition as VFadeTransition, type index_d$1_VField as VField, type index_d$1_VFieldLabel as VFieldLabel, type index_d$1_VFileInput as VFileInput, type index_d$1_VFooter as VFooter, type index_d$1_VForm as VForm, type index_d$1_VHover as VHover, type index_d$1_VIcon as VIcon, type index_d$1_VImg as VImg, type index_d$1_VInfiniteScroll as VInfiniteScroll, type index_d$1_VInput as VInput, type index_d$1_VItem as VItem, type index_d$1_VItemGroup as VItemGroup, type index_d$1_VKbd as VKbd, type index_d$1_VLabel as VLabel, type index_d$1_VLayout as VLayout, type index_d$1_VLayoutItem as VLayoutItem, type index_d$1_VLazy as VLazy, type index_d$1_VLigatureIcon as VLigatureIcon, type index_d$1_VList as VList, type index_d$1_VListGroup as VListGroup, type index_d$1_VListImg as VListImg, type index_d$1_VListItem as VListItem, type index_d$1_VListItemAction as VListItemAction, type index_d$1_VListItemMedia as VListItemMedia, type index_d$1_VListItemSubtitle as VListItemSubtitle, type index_d$1_VListItemTitle as VListItemTitle, type index_d$1_VListSubheader as VListSubheader, type index_d$1_VLocaleProvider as VLocaleProvider, type index_d$1_VMain as VMain, type index_d$1_VMenu as VMenu, type index_d$1_VMessages as VMessages, type index_d$1_VNavigationDrawer as VNavigationDrawer, type index_d$1_VNoSsr as VNoSsr, type index_d$1_VOtpInput as VOtpInput, type index_d$1_VOverlay as VOverlay, type index_d$1_VPagination as VPagination, type index_d$1_VParallax as VParallax, type index_d$1_VProgressCircular as VProgressCircular, type index_d$1_VProgressLinear as VProgressLinear, type index_d$1_VRadio as VRadio, type index_d$1_VRadioGroup as VRadioGroup, type index_d$1_VRangeSlider as VRangeSlider, type index_d$1_VRating as VRating, type index_d$1_VResponsive as VResponsive, type index_d$1_VRow as VRow, type index_d$1_VScaleTransition as VScaleTransition, type index_d$1_VScrollXReverseTransition as VScrollXReverseTransition, type index_d$1_VScrollXTransition as VScrollXTransition, type index_d$1_VScrollYReverseTransition as VScrollYReverseTransition, type index_d$1_VScrollYTransition as VScrollYTransition, type index_d$1_VSelect as VSelect, type index_d$1_VSelectionControl as VSelectionControl, type index_d$1_VSelectionControlGroup as VSelectionControlGroup, type index_d$1_VSheet as VSheet, type index_d$1_VSkeletonLoader as VSkeletonLoader, type index_d$1_VSlideGroup as VSlideGroup, type index_d$1_VSlideGroupItem as VSlideGroupItem, type index_d$1_VSlideXReverseTransition as VSlideXReverseTransition, type index_d$1_VSlideXTransition as VSlideXTransition, type index_d$1_VSlideYReverseTransition as VSlideYReverseTransition, type index_d$1_VSlideYTransition as VSlideYTransition, type index_d$1_VSlider as VSlider, type index_d$1_VSnackbar as VSnackbar, type index_d$1_VSpacer as VSpacer, type index_d$1_VStepper as VStepper, type index_d$1_VStepperActions as VStepperActions, type index_d$1_VStepperHeader as VStepperHeader, type index_d$1_VStepperItem as VStepperItem, type index_d$1_VStepperWindow as VStepperWindow, type index_d$1_VStepperWindowItem as VStepperWindowItem, type index_d$1_VSvgIcon as VSvgIcon, type index_d$1_VSwitch as VSwitch, type index_d$1_VSystemBar as VSystemBar, type index_d$1_VTab as VTab, type index_d$1_VTable as VTable, type index_d$1_VTabs as VTabs, type index_d$1_VTextField as VTextField, type index_d$1_VTextarea as VTextarea, type index_d$1_VThemeProvider as VThemeProvider, type index_d$1_VTimeline as VTimeline, type index_d$1_VTimelineItem as VTimelineItem, type index_d$1_VToolbar as VToolbar, type index_d$1_VToolbarItems as VToolbarItems, type index_d$1_VToolbarTitle as VToolbarTitle, type index_d$1_VTooltip as VTooltip, type index_d$1_VValidation as VValidation, type index_d$1_VVirtualScroll as VVirtualScroll, type index_d$1_VWindow as VWindow, type index_d$1_VWindowItem as VWindowItem };
|
|
67782
68023
|
}
|
|
67783
68024
|
|
|
67784
68025
|
interface ClickOutsideBindingArgs {
|
|
@@ -68018,47 +68259,41 @@ declare module '@vue/runtime-core' {
|
|
|
68018
68259
|
|
|
68019
68260
|
export interface GlobalComponents {
|
|
68020
68261
|
VApp: typeof import('vuetify/components')['VApp']
|
|
68262
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68263
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68021
68264
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68022
68265
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68023
68266
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68024
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68025
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68026
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68027
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68028
68267
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68268
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68029
68269
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68030
68270
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68031
68271
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68032
|
-
|
|
68272
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68033
68273
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68034
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68035
68274
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68036
68275
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68037
68276
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68038
|
-
|
|
68277
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68039
68278
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68279
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68040
68280
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68041
68281
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68282
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68042
68283
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68043
68284
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68044
68285
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68045
68286
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68046
68287
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68047
68288
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68048
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
68049
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
68050
68289
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68051
68290
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68052
|
-
|
|
68291
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
68292
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
68053
68293
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68054
68294
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68295
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68055
68296
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68056
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68057
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
68058
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
68059
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68060
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68061
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68062
68297
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68063
68298
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68064
68299
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -68067,25 +68302,33 @@ declare module '@vue/runtime-core' {
|
|
|
68067
68302
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68068
68303
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68069
68304
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
68305
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68306
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68307
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
68308
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
68309
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68310
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68311
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68312
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68313
|
+
VField: typeof import('vuetify/components')['VField']
|
|
68314
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68070
68315
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68071
68316
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68072
68317
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68073
68318
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68074
|
-
|
|
68075
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68076
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68319
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68077
68320
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
68078
68321
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
68079
68322
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68080
68323
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68081
68324
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
68082
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68083
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
68084
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
68085
68325
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68086
68326
|
VItem: typeof import('vuetify/components')['VItem']
|
|
68327
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
68087
68328
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68329
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
68088
68330
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68331
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68089
68332
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68090
68333
|
VList: typeof import('vuetify/components')['VList']
|
|
68091
68334
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
@@ -68097,53 +68340,52 @@ declare module '@vue/runtime-core' {
|
|
|
68097
68340
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
68098
68341
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
68099
68342
|
VMain: typeof import('vuetify/components')['VMain']
|
|
68100
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
68101
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68102
68343
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68103
68344
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68345
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
68104
68346
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
68105
68347
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68106
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
68107
68348
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
68349
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
68108
68350
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
68109
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
68110
68351
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
68352
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
68111
68353
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
68112
68354
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
68355
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68113
68356
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68114
|
-
|
|
68357
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
68115
68358
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
68116
68359
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
68117
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68118
68360
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
68119
68361
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
68120
68362
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
68121
68363
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
68122
68364
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
68123
68365
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
68124
|
-
|
|
68366
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
68125
68367
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68368
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68369
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
68126
68370
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
68127
68371
|
VTable: typeof import('vuetify/components')['VTable']
|
|
68128
68372
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
68373
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68374
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68129
68375
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68130
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68131
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
68132
68376
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
68133
68377
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
68134
68378
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
68135
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68136
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68137
68379
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68138
68380
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
68139
68381
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
68140
68382
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
68141
68383
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
68384
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
68142
68385
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
68143
68386
|
VCol: typeof import('vuetify/components')['VCol']
|
|
68144
68387
|
VRow: typeof import('vuetify/components')['VRow']
|
|
68145
68388
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
68146
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
68147
68389
|
VHover: typeof import('vuetify/components')['VHover']
|
|
68148
68390
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
68149
68391
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -68152,11 +68394,11 @@ declare module '@vue/runtime-core' {
|
|
|
68152
68394
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
68153
68395
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
68154
68396
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
68155
|
-
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
68156
68397
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
68398
|
+
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
68157
68399
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
68158
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68159
68400
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
68401
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68160
68402
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
68161
68403
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
68162
68404
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -68173,14 +68415,14 @@ declare module '@vue/runtime-core' {
|
|
|
68173
68415
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
68174
68416
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
68175
68417
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
68176
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68177
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
68178
68418
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
68179
68419
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
68180
68420
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
68181
68421
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
68182
68422
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
68183
68423
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
68424
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68425
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
68184
68426
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
68185
68427
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
68186
68428
|
}
|