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-labs.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': {
|
|
@@ -31168,6 +31381,7 @@ declare const VExpansionPanels: {
|
|
|
31168
31381
|
readonly: boolean;
|
|
31169
31382
|
static: boolean;
|
|
31170
31383
|
tag: string;
|
|
31384
|
+
focusable: boolean;
|
|
31171
31385
|
tile: boolean;
|
|
31172
31386
|
} & {
|
|
31173
31387
|
max?: number | undefined;
|
|
@@ -31199,6 +31413,7 @@ declare const VExpansionPanels: {
|
|
|
31199
31413
|
readonly: boolean;
|
|
31200
31414
|
static: boolean;
|
|
31201
31415
|
tag: string;
|
|
31416
|
+
focusable: boolean;
|
|
31202
31417
|
tile: boolean;
|
|
31203
31418
|
} & {
|
|
31204
31419
|
max?: number | undefined;
|
|
@@ -31228,6 +31443,7 @@ declare const VExpansionPanels: {
|
|
|
31228
31443
|
readonly: boolean;
|
|
31229
31444
|
static: boolean;
|
|
31230
31445
|
tag: string;
|
|
31446
|
+
focusable: boolean;
|
|
31231
31447
|
tile: boolean;
|
|
31232
31448
|
modelValue: any;
|
|
31233
31449
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -31250,6 +31466,7 @@ declare const VExpansionPanels: {
|
|
|
31250
31466
|
readonly: boolean;
|
|
31251
31467
|
static: boolean;
|
|
31252
31468
|
tag: string;
|
|
31469
|
+
focusable: boolean;
|
|
31253
31470
|
tile: boolean;
|
|
31254
31471
|
} & {
|
|
31255
31472
|
max?: number | undefined;
|
|
@@ -31279,6 +31496,7 @@ declare const VExpansionPanels: {
|
|
|
31279
31496
|
readonly: boolean;
|
|
31280
31497
|
static: boolean;
|
|
31281
31498
|
tag: string;
|
|
31499
|
+
focusable: boolean;
|
|
31282
31500
|
tile: boolean;
|
|
31283
31501
|
modelValue: any;
|
|
31284
31502
|
}>;
|
|
@@ -31294,6 +31512,7 @@ declare const VExpansionPanels: {
|
|
|
31294
31512
|
readonly: boolean;
|
|
31295
31513
|
static: boolean;
|
|
31296
31514
|
tag: string;
|
|
31515
|
+
focusable: boolean;
|
|
31297
31516
|
tile: boolean;
|
|
31298
31517
|
} & {
|
|
31299
31518
|
max?: number | undefined;
|
|
@@ -31325,6 +31544,7 @@ declare const VExpansionPanels: {
|
|
|
31325
31544
|
readonly: boolean;
|
|
31326
31545
|
static: boolean;
|
|
31327
31546
|
tag: string;
|
|
31547
|
+
focusable: boolean;
|
|
31328
31548
|
tile: boolean;
|
|
31329
31549
|
modelValue: any;
|
|
31330
31550
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -31353,6 +31573,7 @@ declare const VExpansionPanels: {
|
|
|
31353
31573
|
};
|
|
31354
31574
|
color: StringConstructor;
|
|
31355
31575
|
flat: BooleanConstructor;
|
|
31576
|
+
focusable: BooleanConstructor;
|
|
31356
31577
|
static: BooleanConstructor;
|
|
31357
31578
|
tile: BooleanConstructor;
|
|
31358
31579
|
variant: {
|
|
@@ -31383,6 +31604,7 @@ declare const VExpansionPanels: {
|
|
|
31383
31604
|
};
|
|
31384
31605
|
color: StringConstructor;
|
|
31385
31606
|
flat: BooleanConstructor;
|
|
31607
|
+
focusable: BooleanConstructor;
|
|
31386
31608
|
static: BooleanConstructor;
|
|
31387
31609
|
tile: BooleanConstructor;
|
|
31388
31610
|
variant: {
|
|
@@ -31402,6 +31624,7 @@ declare const VExpansionPanel: {
|
|
|
31402
31624
|
readonly: boolean;
|
|
31403
31625
|
static: boolean;
|
|
31404
31626
|
tag: string;
|
|
31627
|
+
focusable: boolean;
|
|
31405
31628
|
tile: boolean;
|
|
31406
31629
|
ripple: boolean | {
|
|
31407
31630
|
class: string;
|
|
@@ -31449,6 +31672,7 @@ declare const VExpansionPanel: {
|
|
|
31449
31672
|
readonly: boolean;
|
|
31450
31673
|
static: boolean;
|
|
31451
31674
|
tag: string;
|
|
31675
|
+
focusable: boolean;
|
|
31452
31676
|
tile: boolean;
|
|
31453
31677
|
ripple: boolean | {
|
|
31454
31678
|
class: string;
|
|
@@ -31492,6 +31716,7 @@ declare const VExpansionPanel: {
|
|
|
31492
31716
|
readonly: boolean;
|
|
31493
31717
|
static: boolean;
|
|
31494
31718
|
tag: string;
|
|
31719
|
+
focusable: boolean;
|
|
31495
31720
|
rounded: string | number | boolean;
|
|
31496
31721
|
tile: boolean;
|
|
31497
31722
|
ripple: boolean | {
|
|
@@ -31524,6 +31749,7 @@ declare const VExpansionPanel: {
|
|
|
31524
31749
|
readonly: boolean;
|
|
31525
31750
|
static: boolean;
|
|
31526
31751
|
tag: string;
|
|
31752
|
+
focusable: boolean;
|
|
31527
31753
|
tile: boolean;
|
|
31528
31754
|
ripple: boolean | {
|
|
31529
31755
|
class: string;
|
|
@@ -31567,6 +31793,7 @@ declare const VExpansionPanel: {
|
|
|
31567
31793
|
readonly: boolean;
|
|
31568
31794
|
static: boolean;
|
|
31569
31795
|
tag: string;
|
|
31796
|
+
focusable: boolean;
|
|
31570
31797
|
rounded: string | number | boolean;
|
|
31571
31798
|
tile: boolean;
|
|
31572
31799
|
ripple: boolean | {
|
|
@@ -31586,6 +31813,7 @@ declare const VExpansionPanel: {
|
|
|
31586
31813
|
readonly: boolean;
|
|
31587
31814
|
static: boolean;
|
|
31588
31815
|
tag: string;
|
|
31816
|
+
focusable: boolean;
|
|
31589
31817
|
tile: boolean;
|
|
31590
31818
|
ripple: boolean | {
|
|
31591
31819
|
class: string;
|
|
@@ -31633,6 +31861,7 @@ declare const VExpansionPanel: {
|
|
|
31633
31861
|
readonly: boolean;
|
|
31634
31862
|
static: boolean;
|
|
31635
31863
|
tag: string;
|
|
31864
|
+
focusable: boolean;
|
|
31636
31865
|
rounded: string | number | boolean;
|
|
31637
31866
|
tile: boolean;
|
|
31638
31867
|
ripple: boolean | {
|
|
@@ -31667,6 +31896,7 @@ declare const VExpansionPanel: {
|
|
|
31667
31896
|
default: string;
|
|
31668
31897
|
};
|
|
31669
31898
|
hideActions: BooleanConstructor;
|
|
31899
|
+
focusable: BooleanConstructor;
|
|
31670
31900
|
static: BooleanConstructor;
|
|
31671
31901
|
ripple: {
|
|
31672
31902
|
type: vue.PropType<boolean | {
|
|
@@ -31711,6 +31941,7 @@ declare const VExpansionPanel: {
|
|
|
31711
31941
|
default: string;
|
|
31712
31942
|
};
|
|
31713
31943
|
hideActions: BooleanConstructor;
|
|
31944
|
+
focusable: BooleanConstructor;
|
|
31714
31945
|
static: BooleanConstructor;
|
|
31715
31946
|
ripple: {
|
|
31716
31947
|
type: vue.PropType<boolean | {
|
|
@@ -31856,6 +32087,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31856
32087
|
style: vue.StyleValue;
|
|
31857
32088
|
readonly: boolean;
|
|
31858
32089
|
static: boolean;
|
|
32090
|
+
focusable: boolean;
|
|
31859
32091
|
ripple: boolean | {
|
|
31860
32092
|
class: string;
|
|
31861
32093
|
} | undefined;
|
|
@@ -31881,6 +32113,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31881
32113
|
style: vue.StyleValue;
|
|
31882
32114
|
readonly: boolean;
|
|
31883
32115
|
static: boolean;
|
|
32116
|
+
focusable: boolean;
|
|
31884
32117
|
ripple: boolean | {
|
|
31885
32118
|
class: string;
|
|
31886
32119
|
} | undefined;
|
|
@@ -31906,6 +32139,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31906
32139
|
style: vue.StyleValue;
|
|
31907
32140
|
readonly: boolean;
|
|
31908
32141
|
static: boolean;
|
|
32142
|
+
focusable: boolean;
|
|
31909
32143
|
ripple: boolean | {
|
|
31910
32144
|
class: string;
|
|
31911
32145
|
} | undefined;
|
|
@@ -31930,6 +32164,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31930
32164
|
style: vue.StyleValue;
|
|
31931
32165
|
readonly: boolean;
|
|
31932
32166
|
static: boolean;
|
|
32167
|
+
focusable: boolean;
|
|
31933
32168
|
ripple: boolean | {
|
|
31934
32169
|
class: string;
|
|
31935
32170
|
} | undefined;
|
|
@@ -31955,6 +32190,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31955
32190
|
style: vue.StyleValue;
|
|
31956
32191
|
readonly: boolean;
|
|
31957
32192
|
static: boolean;
|
|
32193
|
+
focusable: boolean;
|
|
31958
32194
|
ripple: boolean | {
|
|
31959
32195
|
class: string;
|
|
31960
32196
|
} | undefined;
|
|
@@ -31969,6 +32205,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31969
32205
|
style: vue.StyleValue;
|
|
31970
32206
|
readonly: boolean;
|
|
31971
32207
|
static: boolean;
|
|
32208
|
+
focusable: boolean;
|
|
31972
32209
|
ripple: boolean | {
|
|
31973
32210
|
class: string;
|
|
31974
32211
|
} | undefined;
|
|
@@ -31994,6 +32231,7 @@ declare const VExpansionPanelTitle: {
|
|
|
31994
32231
|
style: vue.StyleValue;
|
|
31995
32232
|
readonly: boolean;
|
|
31996
32233
|
static: boolean;
|
|
32234
|
+
focusable: boolean;
|
|
31997
32235
|
ripple: boolean | {
|
|
31998
32236
|
class: string;
|
|
31999
32237
|
} | undefined;
|
|
@@ -32023,6 +32261,7 @@ declare const VExpansionPanelTitle: {
|
|
|
32023
32261
|
default: string;
|
|
32024
32262
|
};
|
|
32025
32263
|
hideActions: BooleanConstructor;
|
|
32264
|
+
focusable: BooleanConstructor;
|
|
32026
32265
|
static: BooleanConstructor;
|
|
32027
32266
|
ripple: {
|
|
32028
32267
|
type: PropType<boolean | {
|
|
@@ -32047,6 +32286,7 @@ declare const VExpansionPanelTitle: {
|
|
|
32047
32286
|
default: string;
|
|
32048
32287
|
};
|
|
32049
32288
|
hideActions: BooleanConstructor;
|
|
32289
|
+
focusable: BooleanConstructor;
|
|
32050
32290
|
static: BooleanConstructor;
|
|
32051
32291
|
ripple: {
|
|
32052
32292
|
type: PropType<boolean | {
|
|
@@ -70148,6 +70388,7 @@ declare const allComponents_d_VCounter: typeof VCounter;
|
|
|
70148
70388
|
declare const allComponents_d_VDataIterator: typeof VDataIterator;
|
|
70149
70389
|
declare const allComponents_d_VDataTable: typeof VDataTable;
|
|
70150
70390
|
declare const allComponents_d_VDataTableFooter: typeof VDataTableFooter;
|
|
70391
|
+
declare const allComponents_d_VDataTableHeaders: typeof VDataTableHeaders;
|
|
70151
70392
|
declare const allComponents_d_VDataTableRow: typeof VDataTableRow;
|
|
70152
70393
|
declare const allComponents_d_VDataTableRows: typeof VDataTableRows;
|
|
70153
70394
|
declare const allComponents_d_VDataTableServer: typeof VDataTableServer;
|
|
@@ -70265,7 +70506,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
|
70265
70506
|
declare const allComponents_d_VWindow: typeof VWindow;
|
|
70266
70507
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
|
70267
70508
|
declare namespace allComponents_d {
|
|
70268
|
-
export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
|
|
70509
|
+
export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
|
|
70269
70510
|
}
|
|
70270
70511
|
|
|
70271
70512
|
interface ClickOutsideBindingArgs {
|
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.6
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -11845,9 +11845,10 @@ const VSelect = genericComponent()({
|
|
|
11845
11845
|
}
|
|
11846
11846
|
}
|
|
11847
11847
|
function select(item) {
|
|
11848
|
-
|
|
11849
|
-
const add = index === -1;
|
|
11848
|
+
let add = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
|
|
11850
11849
|
if (props.multiple) {
|
|
11850
|
+
const index = model.value.findIndex(selection => props.valueComparator(selection.value, item.value));
|
|
11851
|
+
add = index === -1;
|
|
11851
11852
|
if (add) {
|
|
11852
11853
|
model.value = [...model.value, item];
|
|
11853
11854
|
} else {
|
|
@@ -12008,7 +12009,7 @@ const VSelect = genericComponent()({
|
|
|
12008
12009
|
function onChipClose(e) {
|
|
12009
12010
|
e.stopPropagation();
|
|
12010
12011
|
e.preventDefault();
|
|
12011
|
-
select(item);
|
|
12012
|
+
select(item, false);
|
|
12012
12013
|
}
|
|
12013
12014
|
const slotProps = {
|
|
12014
12015
|
'onClick:close': onChipClose,
|
|
@@ -12118,7 +12119,7 @@ function filterItems(items, query, options) {
|
|
|
12118
12119
|
if (typeof item === 'object') {
|
|
12119
12120
|
const filterKeys = keys || Object.keys(transformed);
|
|
12120
12121
|
for (const key of filterKeys) {
|
|
12121
|
-
const value = getPropertyFromItem(transformed, key
|
|
12122
|
+
const value = getPropertyFromItem(transformed, key);
|
|
12122
12123
|
const keyFilter = options?.customKeyFilter?.[key];
|
|
12123
12124
|
match = keyFilter ? keyFilter(value, query, item) : filter(value, query, item);
|
|
12124
12125
|
if (match !== -1 && match !== false) {
|
|
@@ -12393,10 +12394,11 @@ const VAutocomplete = genericComponent()({
|
|
|
12393
12394
|
}
|
|
12394
12395
|
const isSelecting = shallowRef(false);
|
|
12395
12396
|
function select(item) {
|
|
12397
|
+
let add = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
|
|
12396
12398
|
if (item.props.disabled) return;
|
|
12397
|
-
const index = model.value.findIndex(selection => props.valueComparator(selection.value, item.value));
|
|
12398
|
-
const add = index === -1;
|
|
12399
12399
|
if (props.multiple) {
|
|
12400
|
+
const index = model.value.findIndex(selection => props.valueComparator(selection.value, item.value));
|
|
12401
|
+
add = index === -1;
|
|
12400
12402
|
if (add) {
|
|
12401
12403
|
model.value = [...model.value, item];
|
|
12402
12404
|
} else {
|
|
@@ -12539,7 +12541,9 @@ const VAutocomplete = genericComponent()({
|
|
|
12539
12541
|
item,
|
|
12540
12542
|
index,
|
|
12541
12543
|
props: itemProps
|
|
12542
|
-
}) ?? createVNode(VListItem, itemProps, {
|
|
12544
|
+
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
|
12545
|
+
"role": "option"
|
|
12546
|
+
}), {
|
|
12543
12547
|
prepend: _ref4 => {
|
|
12544
12548
|
let {
|
|
12545
12549
|
isSelected
|
|
@@ -12566,7 +12570,7 @@ const VAutocomplete = genericComponent()({
|
|
|
12566
12570
|
function onChipClose(e) {
|
|
12567
12571
|
e.stopPropagation();
|
|
12568
12572
|
e.preventDefault();
|
|
12569
|
-
select(item);
|
|
12573
|
+
select(item, false);
|
|
12570
12574
|
}
|
|
12571
12575
|
const slotProps = {
|
|
12572
12576
|
'onClick:close': onChipClose,
|
|
@@ -16329,7 +16333,9 @@ const VCombobox = genericComponent()({
|
|
|
16329
16333
|
item,
|
|
16330
16334
|
index,
|
|
16331
16335
|
props: itemProps
|
|
16332
|
-
}) ?? createVNode(VListItem, itemProps, {
|
|
16336
|
+
}) ?? createVNode(VListItem, mergeProps(itemProps, {
|
|
16337
|
+
"role": "option"
|
|
16338
|
+
}), {
|
|
16333
16339
|
prepend: _ref4 => {
|
|
16334
16340
|
let {
|
|
16335
16341
|
isSelected
|
|
@@ -17672,7 +17678,7 @@ async function scrollTo(_target, _options, horizontal, goTo) {
|
|
|
17672
17678
|
return new Promise(resolve => requestAnimationFrame(function step(currentTime) {
|
|
17673
17679
|
const timeElapsed = currentTime - startTime;
|
|
17674
17680
|
const progress = timeElapsed / options.duration;
|
|
17675
|
-
const location = Math.floor(startLocation + (targetLocation - startLocation) * ease(
|
|
17681
|
+
const location = Math.floor(startLocation + (targetLocation - startLocation) * ease(clamp(progress, 0, 1)));
|
|
17676
17682
|
container[property] = location;
|
|
17677
17683
|
|
|
17678
17684
|
// Allow for some jitter if target time has elapsed
|
|
@@ -21096,6 +21102,7 @@ const allowedVariants = ['default', 'accordion', 'inset', 'popout'];
|
|
|
21096
21102
|
const makeVExpansionPanelsProps = propsFactory({
|
|
21097
21103
|
color: String,
|
|
21098
21104
|
flat: Boolean,
|
|
21105
|
+
focusable: Boolean,
|
|
21099
21106
|
static: Boolean,
|
|
21100
21107
|
tile: Boolean,
|
|
21101
21108
|
variant: {
|
|
@@ -21130,6 +21137,7 @@ const VExpansionPanels = genericComponent()({
|
|
|
21130
21137
|
readonly: toRef(props, 'readonly')
|
|
21131
21138
|
},
|
|
21132
21139
|
VExpansionPanelTitle: {
|
|
21140
|
+
focusable: toRef(props, 'focusable'),
|
|
21133
21141
|
static: toRef(props, 'static')
|
|
21134
21142
|
}
|
|
21135
21143
|
});
|
|
@@ -21188,6 +21196,7 @@ const makeVExpansionPanelTitleProps = propsFactory({
|
|
|
21188
21196
|
default: '$collapse'
|
|
21189
21197
|
},
|
|
21190
21198
|
hideActions: Boolean,
|
|
21199
|
+
focusable: Boolean,
|
|
21191
21200
|
static: Boolean,
|
|
21192
21201
|
ripple: {
|
|
21193
21202
|
type: [Boolean, Object],
|
|
@@ -21222,6 +21231,7 @@ const VExpansionPanelTitle = genericComponent()({
|
|
|
21222
21231
|
useRender(() => withDirectives(createVNode("button", {
|
|
21223
21232
|
"class": ['v-expansion-panel-title', {
|
|
21224
21233
|
'v-expansion-panel-title--active': expansionPanel.isSelected.value,
|
|
21234
|
+
'v-expansion-panel-title--focusable': props.focusable,
|
|
21225
21235
|
'v-expansion-panel-title--static': props.static
|
|
21226
21236
|
}, backgroundColorClasses.value, props.class],
|
|
21227
21237
|
"style": [backgroundColorStyles.value, props.style],
|
|
@@ -26376,6 +26386,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
26376
26386
|
VDataIterator: VDataIterator,
|
|
26377
26387
|
VDataTable: VDataTable,
|
|
26378
26388
|
VDataTableFooter: VDataTableFooter,
|
|
26389
|
+
VDataTableHeaders: VDataTableHeaders,
|
|
26379
26390
|
VDataTableRow: VDataTableRow,
|
|
26380
26391
|
VDataTableRows: VDataTableRows,
|
|
26381
26392
|
VDataTableServer: VDataTableServer,
|
|
@@ -26714,7 +26725,7 @@ function createVuetify$1() {
|
|
|
26714
26725
|
goTo
|
|
26715
26726
|
};
|
|
26716
26727
|
}
|
|
26717
|
-
const version$1 = "3.5.
|
|
26728
|
+
const version$1 = "3.5.6";
|
|
26718
26729
|
createVuetify$1.version = version$1;
|
|
26719
26730
|
|
|
26720
26731
|
// Vue's inject() can only be used in setup
|
|
@@ -26728,7 +26739,7 @@ function inject(key) {
|
|
|
26728
26739
|
|
|
26729
26740
|
/* eslint-disable local-rules/sort-imports */
|
|
26730
26741
|
|
|
26731
|
-
const version = "3.5.
|
|
26742
|
+
const version = "3.5.6";
|
|
26732
26743
|
|
|
26733
26744
|
/* eslint-disable local-rules/sort-imports */
|
|
26734
26745
|
|