@vuetify/nightly 3.8.0-beta.0-dev.2025-03-26 → 3.8.0-beta.0-dev.2025-03-31
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/CHANGELOG.md +7 -3
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3154 -3038
- package/dist/json/importMap-labs.json +24 -20
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +34 -0
- package/dist/json/web-types.json +5829 -5511
- package/dist/vuetify-labs.cjs +204 -13
- package/dist/vuetify-labs.css +4590 -4409
- package/dist/vuetify-labs.d.ts +527 -230
- package/dist/vuetify-labs.esm.js +204 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +204 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +31 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2980 -2976
- package/dist/vuetify.d.ts +118 -143
- package/dist/vuetify.esm.js +31 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +31 -6
- package/lib/components/VConfirmEdit/VConfirmEdit.js +17 -2
- package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +33 -78
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +33 -78
- package/lib/composables/calendar.d.ts +12 -35
- package/lib/composables/calendar.js +11 -8
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +58 -57
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +33 -78
- package/lib/labs/VDateInput/VDateInput.d.ts +33 -78
- package/lib/labs/VDateInput/VDateInput.js +4 -0
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.css +178 -0
- package/lib/labs/VIconBtn/VIconBtn.d.ts +608 -0
- package/lib/labs/VIconBtn/VIconBtn.js +184 -0
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -0
- package/lib/labs/VIconBtn/VIconBtn.scss +110 -0
- package/lib/labs/VIconBtn/_variables.scss +36 -0
- package/lib/labs/VIconBtn/index.d.ts +1 -0
- package/lib/labs/VIconBtn/index.js +2 -0
- package/lib/labs/VIconBtn/index.js.map +1 -0
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/styles/main.css +4 -0
- package/lib/styles/settings/_utilities.scss +5 -0
- package/package.json +1 -1
@@ -0,0 +1,608 @@
|
|
1
|
+
import type { PropType } from 'vue';
|
2
|
+
import type { IconValue } from "../../composables/icons.js";
|
3
|
+
import type { Variant } from "../../composables/variant.js";
|
4
|
+
export type VIconBtnSlots = {
|
5
|
+
default: never;
|
6
|
+
loader: never;
|
7
|
+
};
|
8
|
+
export type VIconBtnSizes = 'x-small' | 'small' | 'default' | 'large' | 'x-large';
|
9
|
+
export declare const makeVIconBtnProps: <Defaults extends {
|
10
|
+
color?: unknown;
|
11
|
+
variant?: unknown;
|
12
|
+
theme?: unknown;
|
13
|
+
tag?: unknown;
|
14
|
+
rounded?: unknown;
|
15
|
+
tile?: unknown;
|
16
|
+
elevation?: unknown;
|
17
|
+
class?: unknown;
|
18
|
+
style?: unknown;
|
19
|
+
border?: unknown;
|
20
|
+
active?: unknown;
|
21
|
+
activeColor?: unknown;
|
22
|
+
activeIcon?: unknown;
|
23
|
+
activeVariant?: unknown;
|
24
|
+
baseVariant?: unknown;
|
25
|
+
disabled?: unknown;
|
26
|
+
height?: unknown;
|
27
|
+
width?: unknown;
|
28
|
+
hideOverlay?: unknown;
|
29
|
+
icon?: unknown;
|
30
|
+
iconColor?: unknown;
|
31
|
+
iconSize?: unknown;
|
32
|
+
iconSizes?: unknown;
|
33
|
+
loading?: unknown;
|
34
|
+
opacity?: unknown;
|
35
|
+
readonly?: unknown;
|
36
|
+
rotate?: unknown;
|
37
|
+
size?: unknown;
|
38
|
+
sizes?: unknown;
|
39
|
+
text?: unknown;
|
40
|
+
} = {}>(defaults?: Defaults | undefined) => {
|
41
|
+
color: unknown extends Defaults["color"] ? StringConstructor : {
|
42
|
+
type: PropType<unknown extends Defaults["color"] ? string : string | Defaults["color"]>;
|
43
|
+
default: unknown extends Defaults["color"] ? string : string | Defaults["color"];
|
44
|
+
};
|
45
|
+
variant: unknown extends Defaults["variant"] ? Omit<{
|
46
|
+
type: PropType<Variant>;
|
47
|
+
default: string;
|
48
|
+
validator: (v: any) => boolean;
|
49
|
+
}, "type" | "default"> & {
|
50
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
51
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
52
|
+
} : Omit<Omit<{
|
53
|
+
type: PropType<Variant>;
|
54
|
+
default: string;
|
55
|
+
validator: (v: any) => boolean;
|
56
|
+
}, "type" | "default"> & {
|
57
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
58
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
59
|
+
}, "type" | "default"> & {
|
60
|
+
type: PropType<unknown extends Defaults["variant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | Defaults["variant"]>;
|
61
|
+
default: unknown extends Defaults["variant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | Defaults["variant"];
|
62
|
+
};
|
63
|
+
theme: unknown extends Defaults["theme"] ? StringConstructor : {
|
64
|
+
type: PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
|
65
|
+
default: unknown extends Defaults["theme"] ? string : string | Defaults["theme"];
|
66
|
+
};
|
67
|
+
tag: unknown extends Defaults["tag"] ? Omit<{
|
68
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
69
|
+
default: string;
|
70
|
+
}, "type" | "default"> & {
|
71
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
72
|
+
default: NonNullable<string | import("../../util/index.js").JSXComponent>;
|
73
|
+
} : Omit<Omit<{
|
74
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
75
|
+
default: string;
|
76
|
+
}, "type" | "default"> & {
|
77
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
78
|
+
default: NonNullable<string | import("../../util/index.js").JSXComponent>;
|
79
|
+
}, "type" | "default"> & {
|
80
|
+
type: PropType<unknown extends Defaults["tag"] ? string | import("../../util/index.js").JSXComponent : string | import("../../util/index.js").JSXComponent | Defaults["tag"]>;
|
81
|
+
default: unknown extends Defaults["tag"] ? string | import("../../util/index.js").JSXComponent : NonNullable<string | import("../../util/index.js").JSXComponent> | Defaults["tag"];
|
82
|
+
};
|
83
|
+
rounded: unknown extends Defaults["rounded"] ? {
|
84
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
85
|
+
default: undefined;
|
86
|
+
} : Omit<{
|
87
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
88
|
+
default: undefined;
|
89
|
+
}, "type" | "default"> & {
|
90
|
+
type: PropType<unknown extends Defaults["rounded"] ? string | number | boolean : string | number | boolean | Defaults["rounded"]>;
|
91
|
+
default: unknown extends Defaults["rounded"] ? string | number | boolean : NonNullable<string | number | boolean> | Defaults["rounded"];
|
92
|
+
};
|
93
|
+
tile: unknown extends Defaults["tile"] ? BooleanConstructor : {
|
94
|
+
type: PropType<unknown extends Defaults["tile"] ? boolean : boolean | Defaults["tile"]>;
|
95
|
+
default: unknown extends Defaults["tile"] ? boolean : boolean | Defaults["tile"];
|
96
|
+
};
|
97
|
+
elevation: unknown extends Defaults["elevation"] ? {
|
98
|
+
type: (StringConstructor | NumberConstructor)[];
|
99
|
+
validator(v: any): boolean;
|
100
|
+
} : Omit<{
|
101
|
+
type: (StringConstructor | NumberConstructor)[];
|
102
|
+
validator(v: any): boolean;
|
103
|
+
}, "type" | "default"> & {
|
104
|
+
type: PropType<unknown extends Defaults["elevation"] ? string | number : string | number | Defaults["elevation"]>;
|
105
|
+
default: unknown extends Defaults["elevation"] ? string | number : NonNullable<string | number> | Defaults["elevation"];
|
106
|
+
};
|
107
|
+
class: unknown extends Defaults["class"] ? PropType<any> : {
|
108
|
+
type: PropType<unknown extends Defaults["class"] ? any : any>;
|
109
|
+
default: unknown extends Defaults["class"] ? any : any;
|
110
|
+
};
|
111
|
+
style: unknown extends Defaults["style"] ? {
|
112
|
+
type: PropType<import("vue").StyleValue>;
|
113
|
+
default: null;
|
114
|
+
} : Omit<{
|
115
|
+
type: PropType<import("vue").StyleValue>;
|
116
|
+
default: null;
|
117
|
+
}, "type" | "default"> & {
|
118
|
+
type: PropType<unknown extends Defaults["style"] ? import("vue").StyleValue : import("vue").StyleValue | Defaults["style"]>;
|
119
|
+
default: unknown extends Defaults["style"] ? import("vue").StyleValue : NonNullable<import("vue").StyleValue> | Defaults["style"];
|
120
|
+
};
|
121
|
+
border: unknown extends Defaults["border"] ? (StringConstructor | BooleanConstructor | NumberConstructor)[] : {
|
122
|
+
type: PropType<unknown extends Defaults["border"] ? string | number | boolean : string | number | boolean | Defaults["border"]>;
|
123
|
+
default: unknown extends Defaults["border"] ? string | number | boolean : NonNullable<string | number | boolean> | Defaults["border"];
|
124
|
+
};
|
125
|
+
active: unknown extends Defaults["active"] ? {
|
126
|
+
type: BooleanConstructor;
|
127
|
+
default: undefined;
|
128
|
+
} : Omit<{
|
129
|
+
type: BooleanConstructor;
|
130
|
+
default: undefined;
|
131
|
+
}, "type" | "default"> & {
|
132
|
+
type: PropType<unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"]>;
|
133
|
+
default: unknown extends Defaults["active"] ? boolean : boolean | Defaults["active"];
|
134
|
+
};
|
135
|
+
activeColor: unknown extends Defaults["activeColor"] ? StringConstructor : {
|
136
|
+
type: PropType<unknown extends Defaults["activeColor"] ? string : string | Defaults["activeColor"]>;
|
137
|
+
default: unknown extends Defaults["activeColor"] ? string : string | Defaults["activeColor"];
|
138
|
+
};
|
139
|
+
activeIcon: unknown extends Defaults["activeIcon"] ? PropType<IconValue> : {
|
140
|
+
type: PropType<unknown extends Defaults["activeIcon"] ? IconValue : IconValue | Defaults["activeIcon"]>;
|
141
|
+
default: unknown extends Defaults["activeIcon"] ? IconValue : NonNullable<IconValue> | Defaults["activeIcon"];
|
142
|
+
};
|
143
|
+
activeVariant: unknown extends Defaults["activeVariant"] ? PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> : {
|
144
|
+
type: PropType<unknown extends Defaults["activeVariant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | Defaults["activeVariant"]>;
|
145
|
+
default: unknown extends Defaults["activeVariant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | Defaults["activeVariant"];
|
146
|
+
};
|
147
|
+
baseVariant: unknown extends Defaults["baseVariant"] ? {
|
148
|
+
type: PropType<Variant>;
|
149
|
+
default: string;
|
150
|
+
} : Omit<{
|
151
|
+
type: PropType<Variant>;
|
152
|
+
default: string;
|
153
|
+
}, "type" | "default"> & {
|
154
|
+
type: PropType<unknown extends Defaults["baseVariant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | Defaults["baseVariant"]>;
|
155
|
+
default: unknown extends Defaults["baseVariant"] ? "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" : NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | Defaults["baseVariant"];
|
156
|
+
};
|
157
|
+
disabled: unknown extends Defaults["disabled"] ? BooleanConstructor : {
|
158
|
+
type: PropType<unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"]>;
|
159
|
+
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
160
|
+
};
|
161
|
+
height: unknown extends Defaults["height"] ? (StringConstructor | NumberConstructor)[] : {
|
162
|
+
type: PropType<unknown extends Defaults["height"] ? string | number : string | number | Defaults["height"]>;
|
163
|
+
default: unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"];
|
164
|
+
};
|
165
|
+
width: unknown extends Defaults["width"] ? (StringConstructor | NumberConstructor)[] : {
|
166
|
+
type: PropType<unknown extends Defaults["width"] ? string | number : string | number | Defaults["width"]>;
|
167
|
+
default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
|
168
|
+
};
|
169
|
+
hideOverlay: unknown extends Defaults["hideOverlay"] ? BooleanConstructor : {
|
170
|
+
type: PropType<unknown extends Defaults["hideOverlay"] ? boolean : boolean | Defaults["hideOverlay"]>;
|
171
|
+
default: unknown extends Defaults["hideOverlay"] ? boolean : boolean | Defaults["hideOverlay"];
|
172
|
+
};
|
173
|
+
icon: unknown extends Defaults["icon"] ? PropType<IconValue> : {
|
174
|
+
type: PropType<unknown extends Defaults["icon"] ? IconValue : IconValue | Defaults["icon"]>;
|
175
|
+
default: unknown extends Defaults["icon"] ? IconValue : NonNullable<IconValue> | Defaults["icon"];
|
176
|
+
};
|
177
|
+
iconColor: unknown extends Defaults["iconColor"] ? StringConstructor : {
|
178
|
+
type: PropType<unknown extends Defaults["iconColor"] ? string : string | Defaults["iconColor"]>;
|
179
|
+
default: unknown extends Defaults["iconColor"] ? string : string | Defaults["iconColor"];
|
180
|
+
};
|
181
|
+
iconSize: unknown extends Defaults["iconSize"] ? {
|
182
|
+
type: PropType<VIconBtnSizes | number | string>;
|
183
|
+
default: string;
|
184
|
+
} : Omit<{
|
185
|
+
type: PropType<VIconBtnSizes | number | string>;
|
186
|
+
default: string;
|
187
|
+
}, "type" | "default"> & {
|
188
|
+
type: PropType<unknown extends Defaults["iconSize"] ? string | number : string | number | Defaults["iconSize"]>;
|
189
|
+
default: unknown extends Defaults["iconSize"] ? string | number : NonNullable<string | number> | Defaults["iconSize"];
|
190
|
+
};
|
191
|
+
iconSizes: unknown extends Defaults["iconSizes"] ? {
|
192
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
193
|
+
default: () => (string | number)[][];
|
194
|
+
} : Omit<{
|
195
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
196
|
+
default: () => (string | number)[][];
|
197
|
+
}, "type" | "default"> & {
|
198
|
+
type: PropType<unknown extends Defaults["iconSizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["iconSizes"]>;
|
199
|
+
default: unknown extends Defaults["iconSizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["iconSizes"];
|
200
|
+
};
|
201
|
+
loading: unknown extends Defaults["loading"] ? BooleanConstructor : {
|
202
|
+
type: PropType<unknown extends Defaults["loading"] ? boolean : boolean | Defaults["loading"]>;
|
203
|
+
default: unknown extends Defaults["loading"] ? boolean : boolean | Defaults["loading"];
|
204
|
+
};
|
205
|
+
opacity: unknown extends Defaults["opacity"] ? (StringConstructor | NumberConstructor)[] : {
|
206
|
+
type: PropType<unknown extends Defaults["opacity"] ? string | number : string | number | Defaults["opacity"]>;
|
207
|
+
default: unknown extends Defaults["opacity"] ? string | number : NonNullable<string | number> | Defaults["opacity"];
|
208
|
+
};
|
209
|
+
readonly: unknown extends Defaults["readonly"] ? BooleanConstructor : {
|
210
|
+
type: PropType<unknown extends Defaults["readonly"] ? boolean : boolean | Defaults["readonly"]>;
|
211
|
+
default: unknown extends Defaults["readonly"] ? boolean : boolean | Defaults["readonly"];
|
212
|
+
};
|
213
|
+
rotate: unknown extends Defaults["rotate"] ? (StringConstructor | NumberConstructor)[] : {
|
214
|
+
type: PropType<unknown extends Defaults["rotate"] ? string | number : string | number | Defaults["rotate"]>;
|
215
|
+
default: unknown extends Defaults["rotate"] ? string | number : NonNullable<string | number> | Defaults["rotate"];
|
216
|
+
};
|
217
|
+
size: unknown extends Defaults["size"] ? {
|
218
|
+
type: PropType<VIconBtnSizes | number | string>;
|
219
|
+
default: string;
|
220
|
+
} : Omit<{
|
221
|
+
type: PropType<VIconBtnSizes | number | string>;
|
222
|
+
default: string;
|
223
|
+
}, "type" | "default"> & {
|
224
|
+
type: PropType<unknown extends Defaults["size"] ? string | number : string | number | Defaults["size"]>;
|
225
|
+
default: unknown extends Defaults["size"] ? string | number : NonNullable<string | number> | Defaults["size"];
|
226
|
+
};
|
227
|
+
sizes: unknown extends Defaults["sizes"] ? {
|
228
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
229
|
+
default: () => (string | number)[][];
|
230
|
+
} : Omit<{
|
231
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
232
|
+
default: () => (string | number)[][];
|
233
|
+
}, "type" | "default"> & {
|
234
|
+
type: PropType<unknown extends Defaults["sizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["sizes"]>;
|
235
|
+
default: unknown extends Defaults["sizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["sizes"];
|
236
|
+
};
|
237
|
+
text: unknown extends Defaults["text"] ? {
|
238
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
239
|
+
default: undefined;
|
240
|
+
} : Omit<{
|
241
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
242
|
+
default: undefined;
|
243
|
+
}, "type" | "default"> & {
|
244
|
+
type: PropType<unknown extends Defaults["text"] ? string | number | boolean : string | number | boolean | Defaults["text"]>;
|
245
|
+
default: unknown extends Defaults["text"] ? string | number | boolean : NonNullable<string | number | boolean> | Defaults["text"];
|
246
|
+
};
|
247
|
+
};
|
248
|
+
export declare const VIconBtn: {
|
249
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{
|
250
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
251
|
+
loading: boolean;
|
252
|
+
style: import("vue").StyleValue;
|
253
|
+
disabled: boolean;
|
254
|
+
size: string | number;
|
255
|
+
readonly: boolean;
|
256
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
257
|
+
sizes: [VIconBtnSizes, number][];
|
258
|
+
tile: boolean;
|
259
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
260
|
+
hideOverlay: boolean;
|
261
|
+
iconSize: string | number;
|
262
|
+
iconSizes: [VIconBtnSizes, number][];
|
263
|
+
} & {
|
264
|
+
height?: string | number | undefined;
|
265
|
+
width?: string | number | undefined;
|
266
|
+
active?: boolean | undefined;
|
267
|
+
border?: string | number | boolean | undefined;
|
268
|
+
color?: string | undefined;
|
269
|
+
opacity?: string | number | undefined;
|
270
|
+
rotate?: string | number | undefined;
|
271
|
+
text?: string | number | boolean | undefined;
|
272
|
+
class?: any;
|
273
|
+
theme?: string | undefined;
|
274
|
+
icon?: IconValue | undefined;
|
275
|
+
elevation?: string | number | undefined;
|
276
|
+
rounded?: string | number | boolean | undefined;
|
277
|
+
activeColor?: string | undefined;
|
278
|
+
iconColor?: string | undefined;
|
279
|
+
activeIcon?: IconValue | undefined;
|
280
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
281
|
+
} & {
|
282
|
+
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
283
|
+
default?: (() => import("vue").VNodeChild) | undefined;
|
284
|
+
loader?: (() => import("vue").VNodeChild) | undefined;
|
285
|
+
};
|
286
|
+
'v-slots'?: {
|
287
|
+
default?: false | (() => import("vue").VNodeChild) | undefined;
|
288
|
+
loader?: false | (() => import("vue").VNodeChild) | undefined;
|
289
|
+
} | undefined;
|
290
|
+
} & {
|
291
|
+
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
292
|
+
"v-slot:loader"?: false | (() => import("vue").VNodeChild) | undefined;
|
293
|
+
} & {
|
294
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
295
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
296
|
+
'update:active': (value: boolean) => true;
|
297
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
298
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
299
|
+
active: boolean;
|
300
|
+
loading: boolean;
|
301
|
+
style: import("vue").StyleValue;
|
302
|
+
text: string | number | boolean;
|
303
|
+
disabled: boolean;
|
304
|
+
size: string | number;
|
305
|
+
readonly: boolean;
|
306
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
307
|
+
sizes: [VIconBtnSizes, number][];
|
308
|
+
rounded: string | number | boolean;
|
309
|
+
tile: boolean;
|
310
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
311
|
+
hideOverlay: boolean;
|
312
|
+
iconSize: string | number;
|
313
|
+
iconSizes: [VIconBtnSizes, number][];
|
314
|
+
}, true, {}, import("vue").SlotsType<Partial<{
|
315
|
+
default: () => import("vue").VNode[];
|
316
|
+
loader: () => import("vue").VNode[];
|
317
|
+
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
318
|
+
P: {};
|
319
|
+
B: {};
|
320
|
+
D: {};
|
321
|
+
C: {};
|
322
|
+
M: {};
|
323
|
+
Defaults: {};
|
324
|
+
}, {
|
325
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
326
|
+
loading: boolean;
|
327
|
+
style: import("vue").StyleValue;
|
328
|
+
disabled: boolean;
|
329
|
+
size: string | number;
|
330
|
+
readonly: boolean;
|
331
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
332
|
+
sizes: [VIconBtnSizes, number][];
|
333
|
+
tile: boolean;
|
334
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
335
|
+
hideOverlay: boolean;
|
336
|
+
iconSize: string | number;
|
337
|
+
iconSizes: [VIconBtnSizes, number][];
|
338
|
+
} & {
|
339
|
+
height?: string | number | undefined;
|
340
|
+
width?: string | number | undefined;
|
341
|
+
active?: boolean | undefined;
|
342
|
+
border?: string | number | boolean | undefined;
|
343
|
+
color?: string | undefined;
|
344
|
+
opacity?: string | number | undefined;
|
345
|
+
rotate?: string | number | undefined;
|
346
|
+
text?: string | number | boolean | undefined;
|
347
|
+
class?: any;
|
348
|
+
theme?: string | undefined;
|
349
|
+
icon?: IconValue | undefined;
|
350
|
+
elevation?: string | number | undefined;
|
351
|
+
rounded?: string | number | boolean | undefined;
|
352
|
+
activeColor?: string | undefined;
|
353
|
+
iconColor?: string | undefined;
|
354
|
+
activeIcon?: IconValue | undefined;
|
355
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
356
|
+
} & {
|
357
|
+
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
358
|
+
default?: (() => import("vue").VNodeChild) | undefined;
|
359
|
+
loader?: (() => import("vue").VNodeChild) | undefined;
|
360
|
+
};
|
361
|
+
'v-slots'?: {
|
362
|
+
default?: false | (() => import("vue").VNodeChild) | undefined;
|
363
|
+
loader?: false | (() => import("vue").VNodeChild) | undefined;
|
364
|
+
} | undefined;
|
365
|
+
} & {
|
366
|
+
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
367
|
+
"v-slot:loader"?: false | (() => import("vue").VNodeChild) | undefined;
|
368
|
+
} & {
|
369
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
370
|
+
}, {}, {}, {}, {}, {
|
371
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
372
|
+
active: boolean;
|
373
|
+
loading: boolean;
|
374
|
+
style: import("vue").StyleValue;
|
375
|
+
text: string | number | boolean;
|
376
|
+
disabled: boolean;
|
377
|
+
size: string | number;
|
378
|
+
readonly: boolean;
|
379
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
380
|
+
sizes: [VIconBtnSizes, number][];
|
381
|
+
rounded: string | number | boolean;
|
382
|
+
tile: boolean;
|
383
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
384
|
+
hideOverlay: boolean;
|
385
|
+
iconSize: string | number;
|
386
|
+
iconSizes: [VIconBtnSizes, number][];
|
387
|
+
}>;
|
388
|
+
__isFragment?: never;
|
389
|
+
__isTeleport?: never;
|
390
|
+
__isSuspense?: never;
|
391
|
+
} & import("vue").ComponentOptionsBase<{
|
392
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
393
|
+
loading: boolean;
|
394
|
+
style: import("vue").StyleValue;
|
395
|
+
disabled: boolean;
|
396
|
+
size: string | number;
|
397
|
+
readonly: boolean;
|
398
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
399
|
+
sizes: [VIconBtnSizes, number][];
|
400
|
+
tile: boolean;
|
401
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
402
|
+
hideOverlay: boolean;
|
403
|
+
iconSize: string | number;
|
404
|
+
iconSizes: [VIconBtnSizes, number][];
|
405
|
+
} & {
|
406
|
+
height?: string | number | undefined;
|
407
|
+
width?: string | number | undefined;
|
408
|
+
active?: boolean | undefined;
|
409
|
+
border?: string | number | boolean | undefined;
|
410
|
+
color?: string | undefined;
|
411
|
+
opacity?: string | number | undefined;
|
412
|
+
rotate?: string | number | undefined;
|
413
|
+
text?: string | number | boolean | undefined;
|
414
|
+
class?: any;
|
415
|
+
theme?: string | undefined;
|
416
|
+
icon?: IconValue | undefined;
|
417
|
+
elevation?: string | number | undefined;
|
418
|
+
rounded?: string | number | boolean | undefined;
|
419
|
+
activeColor?: string | undefined;
|
420
|
+
iconColor?: string | undefined;
|
421
|
+
activeIcon?: IconValue | undefined;
|
422
|
+
activeVariant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
|
423
|
+
} & {
|
424
|
+
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
425
|
+
default?: (() => import("vue").VNodeChild) | undefined;
|
426
|
+
loader?: (() => import("vue").VNodeChild) | undefined;
|
427
|
+
};
|
428
|
+
'v-slots'?: {
|
429
|
+
default?: false | (() => import("vue").VNodeChild) | undefined;
|
430
|
+
loader?: false | (() => import("vue").VNodeChild) | undefined;
|
431
|
+
} | undefined;
|
432
|
+
} & {
|
433
|
+
"v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
|
434
|
+
"v-slot:loader"?: false | (() => import("vue").VNodeChild) | undefined;
|
435
|
+
} & {
|
436
|
+
"onUpdate:active"?: ((value: boolean) => any) | undefined;
|
437
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
438
|
+
'update:active': (value: boolean) => true;
|
439
|
+
}, string, {
|
440
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
441
|
+
active: boolean;
|
442
|
+
loading: boolean;
|
443
|
+
style: import("vue").StyleValue;
|
444
|
+
text: string | number | boolean;
|
445
|
+
disabled: boolean;
|
446
|
+
size: string | number;
|
447
|
+
readonly: boolean;
|
448
|
+
tag: string | import("../../util/index.js").JSXComponent;
|
449
|
+
sizes: [VIconBtnSizes, number][];
|
450
|
+
rounded: string | number | boolean;
|
451
|
+
tile: boolean;
|
452
|
+
baseVariant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
453
|
+
hideOverlay: boolean;
|
454
|
+
iconSize: string | number;
|
455
|
+
iconSizes: [VIconBtnSizes, number][];
|
456
|
+
}, {}, string, import("vue").SlotsType<Partial<{
|
457
|
+
default: () => import("vue").VNode[];
|
458
|
+
loader: () => import("vue").VNode[];
|
459
|
+
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
460
|
+
color: StringConstructor;
|
461
|
+
variant: Omit<{
|
462
|
+
type: PropType<Variant>;
|
463
|
+
default: string;
|
464
|
+
validator: (v: any) => boolean;
|
465
|
+
}, "type" | "default"> & {
|
466
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
467
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
468
|
+
};
|
469
|
+
theme: StringConstructor;
|
470
|
+
tag: Omit<{
|
471
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
472
|
+
default: string;
|
473
|
+
}, "type" | "default"> & {
|
474
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
475
|
+
default: NonNullable<string | import("../../util/index.js").JSXComponent>;
|
476
|
+
};
|
477
|
+
rounded: {
|
478
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
479
|
+
default: undefined;
|
480
|
+
};
|
481
|
+
tile: BooleanConstructor;
|
482
|
+
elevation: {
|
483
|
+
type: (StringConstructor | NumberConstructor)[];
|
484
|
+
validator(v: any): boolean;
|
485
|
+
};
|
486
|
+
class: PropType<import("../../composables/component.js").ClassValue>;
|
487
|
+
style: {
|
488
|
+
type: PropType<import("vue").StyleValue>;
|
489
|
+
default: null;
|
490
|
+
};
|
491
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
492
|
+
active: {
|
493
|
+
type: BooleanConstructor;
|
494
|
+
default: undefined;
|
495
|
+
};
|
496
|
+
activeColor: StringConstructor;
|
497
|
+
activeIcon: PropType<IconValue>;
|
498
|
+
activeVariant: PropType<Variant>;
|
499
|
+
baseVariant: {
|
500
|
+
type: PropType<Variant>;
|
501
|
+
default: string;
|
502
|
+
};
|
503
|
+
disabled: BooleanConstructor;
|
504
|
+
height: (StringConstructor | NumberConstructor)[];
|
505
|
+
width: (StringConstructor | NumberConstructor)[];
|
506
|
+
hideOverlay: BooleanConstructor;
|
507
|
+
icon: PropType<IconValue>;
|
508
|
+
iconColor: StringConstructor;
|
509
|
+
iconSize: {
|
510
|
+
type: PropType<VIconBtnSizes | number | string>;
|
511
|
+
default: string;
|
512
|
+
};
|
513
|
+
iconSizes: {
|
514
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
515
|
+
default: () => (string | number)[][];
|
516
|
+
};
|
517
|
+
loading: BooleanConstructor;
|
518
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
519
|
+
readonly: BooleanConstructor;
|
520
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
521
|
+
size: {
|
522
|
+
type: PropType<VIconBtnSizes | number | string>;
|
523
|
+
default: string;
|
524
|
+
};
|
525
|
+
sizes: {
|
526
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
527
|
+
default: () => (string | number)[][];
|
528
|
+
};
|
529
|
+
text: {
|
530
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
531
|
+
default: undefined;
|
532
|
+
};
|
533
|
+
}, import("vue").ExtractPropTypes<{
|
534
|
+
color: StringConstructor;
|
535
|
+
variant: Omit<{
|
536
|
+
type: PropType<Variant>;
|
537
|
+
default: string;
|
538
|
+
validator: (v: any) => boolean;
|
539
|
+
}, "type" | "default"> & {
|
540
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
541
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
542
|
+
};
|
543
|
+
theme: StringConstructor;
|
544
|
+
tag: Omit<{
|
545
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
546
|
+
default: string;
|
547
|
+
}, "type" | "default"> & {
|
548
|
+
type: PropType<string | import("../../util/index.js").JSXComponent>;
|
549
|
+
default: NonNullable<string | import("../../util/index.js").JSXComponent>;
|
550
|
+
};
|
551
|
+
rounded: {
|
552
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
553
|
+
default: undefined;
|
554
|
+
};
|
555
|
+
tile: BooleanConstructor;
|
556
|
+
elevation: {
|
557
|
+
type: (StringConstructor | NumberConstructor)[];
|
558
|
+
validator(v: any): boolean;
|
559
|
+
};
|
560
|
+
class: PropType<import("../../composables/component.js").ClassValue>;
|
561
|
+
style: {
|
562
|
+
type: PropType<import("vue").StyleValue>;
|
563
|
+
default: null;
|
564
|
+
};
|
565
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
566
|
+
active: {
|
567
|
+
type: BooleanConstructor;
|
568
|
+
default: undefined;
|
569
|
+
};
|
570
|
+
activeColor: StringConstructor;
|
571
|
+
activeIcon: PropType<IconValue>;
|
572
|
+
activeVariant: PropType<Variant>;
|
573
|
+
baseVariant: {
|
574
|
+
type: PropType<Variant>;
|
575
|
+
default: string;
|
576
|
+
};
|
577
|
+
disabled: BooleanConstructor;
|
578
|
+
height: (StringConstructor | NumberConstructor)[];
|
579
|
+
width: (StringConstructor | NumberConstructor)[];
|
580
|
+
hideOverlay: BooleanConstructor;
|
581
|
+
icon: PropType<IconValue>;
|
582
|
+
iconColor: StringConstructor;
|
583
|
+
iconSize: {
|
584
|
+
type: PropType<VIconBtnSizes | number | string>;
|
585
|
+
default: string;
|
586
|
+
};
|
587
|
+
iconSizes: {
|
588
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
589
|
+
default: () => (string | number)[][];
|
590
|
+
};
|
591
|
+
loading: BooleanConstructor;
|
592
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
593
|
+
readonly: BooleanConstructor;
|
594
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
595
|
+
size: {
|
596
|
+
type: PropType<VIconBtnSizes | number | string>;
|
597
|
+
default: string;
|
598
|
+
};
|
599
|
+
sizes: {
|
600
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
601
|
+
default: () => (string | number)[][];
|
602
|
+
};
|
603
|
+
text: {
|
604
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
605
|
+
default: undefined;
|
606
|
+
};
|
607
|
+
}>>;
|
608
|
+
export type VIconBtn = InstanceType<typeof VIconBtn>;
|