manolis-ui 0.22.3 → 0.22.4
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/index.d.ts +851 -74
- package/dist/manolis-ui.css +1 -1
- package/dist/manolis-ui.js +2191 -1028
- package/dist/manolis-ui.umd.cjs +10 -10
- package/package.json +1 -1
- package/dist/style.css +0 -4717
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ComputedRef } from 'vue';
|
|
|
4
4
|
import { DefineComponent } from 'vue';
|
|
5
5
|
import { ExtractPropTypes } from 'vue';
|
|
6
6
|
import { default as FilterableSelect } from './components/data-input/filterableSelect.vue';
|
|
7
|
+
import { PropType } from 'vue';
|
|
7
8
|
import { PublicProps } from 'vue';
|
|
8
9
|
import { Ref } from 'vue';
|
|
9
10
|
|
|
@@ -14,7 +15,46 @@ loading: boolean;
|
|
|
14
15
|
disabled: boolean;
|
|
15
16
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
16
17
|
|
|
17
|
-
declare const __VLS_component_10: DefineComponent<
|
|
18
|
+
declare const __VLS_component_10: DefineComponent<KbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<KbdProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
19
|
+
|
|
20
|
+
declare const __VLS_component_11: DefineComponent<StatsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StatsProps> & Readonly<{}>, {
|
|
21
|
+
horizontal: boolean;
|
|
22
|
+
vertical: boolean;
|
|
23
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
|
+
|
|
25
|
+
declare const __VLS_component_12: DefineComponent<StatProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StatProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
+
|
|
27
|
+
declare const __VLS_component_13: DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
28
|
+
zebra: boolean;
|
|
29
|
+
pinRows: boolean;
|
|
30
|
+
pinCols: boolean;
|
|
31
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
32
|
+
|
|
33
|
+
declare const __VLS_component_14: DefineComponent<TimelineProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TimelineProps> & Readonly<{}>, {
|
|
34
|
+
horizontal: boolean;
|
|
35
|
+
vertical: boolean;
|
|
36
|
+
compact: boolean;
|
|
37
|
+
snapIcon: boolean;
|
|
38
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
|
|
39
|
+
|
|
40
|
+
declare const __VLS_component_15: DefineComponent<Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
41
|
+
search: () => any;
|
|
42
|
+
"update:search-data": (payload: {
|
|
43
|
+
tab: string;
|
|
44
|
+
data: any;
|
|
45
|
+
}) => any;
|
|
46
|
+
}, string, PublicProps, Readonly<Props_10> & Readonly<{
|
|
47
|
+
onSearch?: (() => any) | undefined;
|
|
48
|
+
"onUpdate:search-data"?: ((payload: {
|
|
49
|
+
tab: string;
|
|
50
|
+
data: any;
|
|
51
|
+
}) => any) | undefined;
|
|
52
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
53
|
+
searchContainer: HTMLDivElement;
|
|
54
|
+
inlineComponentRef: unknown;
|
|
55
|
+
}, any>;
|
|
56
|
+
|
|
57
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
18
58
|
"update:modelValue": (value: string[]) => any;
|
|
19
59
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
60
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
@@ -22,7 +62,7 @@ declare const __VLS_component_10: DefineComponent<__VLS_Props, {}, {}, {}, {}, C
|
|
|
22
62
|
inputRef: HTMLInputElement;
|
|
23
63
|
}, HTMLDivElement>;
|
|
24
64
|
|
|
25
|
-
declare const
|
|
65
|
+
declare const __VLS_component_17: DefineComponent<Props_13, {
|
|
26
66
|
focusInput: () => void;
|
|
27
67
|
isValid: typeof isValid;
|
|
28
68
|
isTouched: typeof isTouched;
|
|
@@ -55,25 +95,14 @@ successMessage: string;
|
|
|
55
95
|
inputElement: HTMLInputElement;
|
|
56
96
|
}, HTMLDivElement>;
|
|
57
97
|
|
|
58
|
-
declare const
|
|
59
|
-
|
|
98
|
+
declare const __VLS_component_18: DefineComponent<SkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SkeletonProps> & Readonly<{}>, {
|
|
99
|
+
text: boolean;
|
|
60
100
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
61
101
|
|
|
62
|
-
declare const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
67
|
-
|
|
68
|
-
declare const __VLS_component_15: DefineComponent<Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
69
|
-
"tab-changed": (...args: any[]) => void;
|
|
70
|
-
}, string, PublicProps, Readonly<Props_18> & Readonly<{
|
|
71
|
-
"onTab-changed"?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
}>, {
|
|
73
|
-
withControlls: boolean;
|
|
74
|
-
rotateTabsAfter: number;
|
|
75
|
-
buttonOnlyMode: boolean;
|
|
76
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
102
|
+
declare const __VLS_component_19: DefineComponent<ToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ToastProps> & Readonly<{}>, {
|
|
103
|
+
position: "start" | "center" | "end";
|
|
104
|
+
vertical: "top" | "middle" | "bottom";
|
|
105
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
77
106
|
|
|
78
107
|
declare const __VLS_component_2: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {
|
|
79
108
|
position: keyof typeof dropdownPosition;
|
|
@@ -82,6 +111,56 @@ openOnHover: boolean;
|
|
|
82
111
|
forceOpen: boolean;
|
|
83
112
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
84
113
|
|
|
114
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
115
|
+
"update:modelValue": (value: boolean) => any;
|
|
116
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
117
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
118
|
+
}>, {
|
|
119
|
+
type: AlertType;
|
|
120
|
+
modelValue: boolean;
|
|
121
|
+
closable: boolean;
|
|
122
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
123
|
+
|
|
124
|
+
declare const __VLS_component_21: DefineComponent<DividerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DividerProps> & Readonly<{}>, {
|
|
125
|
+
horizontal: boolean;
|
|
126
|
+
vertical: boolean;
|
|
127
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
128
|
+
|
|
129
|
+
declare const __VLS_component_22: DefineComponent<DrawerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
130
|
+
"update:modelValue": (value: boolean) => any;
|
|
131
|
+
}, string, PublicProps, Readonly<DrawerProps> & Readonly<{
|
|
132
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
133
|
+
}>, {
|
|
134
|
+
end: boolean;
|
|
135
|
+
modelValue: boolean;
|
|
136
|
+
open: boolean;
|
|
137
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
138
|
+
|
|
139
|
+
declare const __VLS_component_23: DefineComponent<Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_15> & Readonly<{}>, {
|
|
140
|
+
rows: number;
|
|
141
|
+
collapseOnMobile: boolean;
|
|
142
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
143
|
+
|
|
144
|
+
declare const __VLS_component_24: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
145
|
+
|
|
146
|
+
declare const __VLS_component_25: DefineComponent<JoinProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<JoinProps> & Readonly<{}>, {
|
|
147
|
+
horizontal: boolean;
|
|
148
|
+
vertical: boolean;
|
|
149
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
150
|
+
|
|
151
|
+
declare const __VLS_component_26: DefineComponent<StackProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StackProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
152
|
+
|
|
153
|
+
declare const __VLS_component_27: DefineComponent<MenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuProps> & Readonly<{}>, {
|
|
154
|
+
horizontal: boolean;
|
|
155
|
+
vertical: boolean;
|
|
156
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
|
|
157
|
+
|
|
158
|
+
declare const __VLS_component_28: DefineComponent<NavbarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NavbarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
159
|
+
|
|
160
|
+
declare const __VLS_component_29: DefineComponent<Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_17> & Readonly<{}>, {
|
|
161
|
+
isCollapsed: boolean;
|
|
162
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
163
|
+
|
|
85
164
|
declare const __VLS_component_3: DefineComponent<Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_3> & Readonly<{}>, {
|
|
86
165
|
position: keyof typeof modalPosition;
|
|
87
166
|
forceOpen: boolean | null;
|
|
@@ -90,6 +169,16 @@ withBackdrop: boolean;
|
|
|
90
169
|
dialog: HTMLDialogElement;
|
|
91
170
|
}, any>;
|
|
92
171
|
|
|
172
|
+
declare const __VLS_component_30: DefineComponent<Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
173
|
+
"tab-changed": (...args: any[]) => void;
|
|
174
|
+
}, string, PublicProps, Readonly<Props_18> & Readonly<{
|
|
175
|
+
"onTab-changed"?: ((...args: any[]) => any) | undefined;
|
|
176
|
+
}>, {
|
|
177
|
+
withControlls: boolean;
|
|
178
|
+
rotateTabsAfter: number;
|
|
179
|
+
buttonOnlyMode: boolean;
|
|
180
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
181
|
+
|
|
93
182
|
declare const __VLS_component_4: DefineComponent<Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
94
183
|
|
|
95
184
|
declare const __VLS_component_5: DefineComponent<Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_8> & Readonly<{}>, {
|
|
@@ -147,8 +236,34 @@ type: NumberConstructor;
|
|
|
147
236
|
default: number;
|
|
148
237
|
validator: (value: number) => boolean;
|
|
149
238
|
};
|
|
239
|
+
breakpoints: {
|
|
240
|
+
type: PropType<CarouselBreakpoints>;
|
|
241
|
+
default: () => {};
|
|
242
|
+
};
|
|
243
|
+
infinite: {
|
|
244
|
+
type: BooleanConstructor;
|
|
245
|
+
default: boolean;
|
|
246
|
+
};
|
|
247
|
+
autoplay: {
|
|
248
|
+
type: BooleanConstructor;
|
|
249
|
+
default: boolean;
|
|
250
|
+
};
|
|
251
|
+
autoplayInterval: {
|
|
252
|
+
type: NumberConstructor;
|
|
253
|
+
default: number;
|
|
254
|
+
validator: (value: number) => boolean;
|
|
255
|
+
};
|
|
256
|
+
containerBreakout: {
|
|
257
|
+
type: BooleanConstructor;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
260
|
+
peekAmount: {
|
|
261
|
+
type: NumberConstructor;
|
|
262
|
+
default: number;
|
|
263
|
+
validator: (value: number) => boolean;
|
|
264
|
+
};
|
|
150
265
|
}>, {
|
|
151
|
-
scrollToSlide: (index: number) => Promise<void>;
|
|
266
|
+
scrollToSlide: (index: number, instant?: boolean) => Promise<void>;
|
|
152
267
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
153
268
|
showIndicators: {
|
|
154
269
|
type: BooleanConstructor;
|
|
@@ -183,6 +298,32 @@ type: NumberConstructor;
|
|
|
183
298
|
default: number;
|
|
184
299
|
validator: (value: number) => boolean;
|
|
185
300
|
};
|
|
301
|
+
breakpoints: {
|
|
302
|
+
type: PropType<CarouselBreakpoints>;
|
|
303
|
+
default: () => {};
|
|
304
|
+
};
|
|
305
|
+
infinite: {
|
|
306
|
+
type: BooleanConstructor;
|
|
307
|
+
default: boolean;
|
|
308
|
+
};
|
|
309
|
+
autoplay: {
|
|
310
|
+
type: BooleanConstructor;
|
|
311
|
+
default: boolean;
|
|
312
|
+
};
|
|
313
|
+
autoplayInterval: {
|
|
314
|
+
type: NumberConstructor;
|
|
315
|
+
default: number;
|
|
316
|
+
validator: (value: number) => boolean;
|
|
317
|
+
};
|
|
318
|
+
containerBreakout: {
|
|
319
|
+
type: BooleanConstructor;
|
|
320
|
+
default: boolean;
|
|
321
|
+
};
|
|
322
|
+
peekAmount: {
|
|
323
|
+
type: NumberConstructor;
|
|
324
|
+
default: number;
|
|
325
|
+
validator: (value: number) => boolean;
|
|
326
|
+
};
|
|
186
327
|
}>> & Readonly<{}>, {
|
|
187
328
|
showIndicators: boolean;
|
|
188
329
|
showNavigationButtons: boolean;
|
|
@@ -191,28 +332,20 @@ initialSlide: number;
|
|
|
191
332
|
slidesPerView: number;
|
|
192
333
|
gap: number;
|
|
193
334
|
slideDuration: number;
|
|
335
|
+
breakpoints: CarouselBreakpoints;
|
|
336
|
+
infinite: boolean;
|
|
337
|
+
autoplay: boolean;
|
|
338
|
+
autoplayInterval: number;
|
|
339
|
+
containerBreakout: boolean;
|
|
340
|
+
peekAmount: number;
|
|
194
341
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
195
342
|
carouselContainer: HTMLDivElement;
|
|
343
|
+
slidesContainer: HTMLDivElement;
|
|
196
344
|
}, HTMLDivElement>;
|
|
197
345
|
|
|
198
346
|
declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
199
347
|
|
|
200
|
-
declare const __VLS_component_9: DefineComponent<
|
|
201
|
-
search: () => any;
|
|
202
|
-
"update:search-data": (payload: {
|
|
203
|
-
tab: string;
|
|
204
|
-
data: any;
|
|
205
|
-
}) => any;
|
|
206
|
-
}, string, PublicProps, Readonly<Props_10> & Readonly<{
|
|
207
|
-
onSearch?: (() => any) | undefined;
|
|
208
|
-
"onUpdate:search-data"?: ((payload: {
|
|
209
|
-
tab: string;
|
|
210
|
-
data: any;
|
|
211
|
-
}) => any) | undefined;
|
|
212
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
213
|
-
searchContainer: HTMLDivElement;
|
|
214
|
-
inlineComponentRef: unknown;
|
|
215
|
-
}, any>;
|
|
348
|
+
declare const __VLS_component_9: DefineComponent<ChatProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ChatProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
216
349
|
|
|
217
350
|
declare type __VLS_Props = {
|
|
218
351
|
modelValue: string[];
|
|
@@ -228,6 +361,13 @@ declare type __VLS_Props_2 = {
|
|
|
228
361
|
modelValue: string | number | object | null;
|
|
229
362
|
};
|
|
230
363
|
|
|
364
|
+
declare type __VLS_Props_3 = {
|
|
365
|
+
type?: AlertType;
|
|
366
|
+
message: string;
|
|
367
|
+
closable?: boolean;
|
|
368
|
+
modelValue?: boolean;
|
|
369
|
+
};
|
|
370
|
+
|
|
231
371
|
declare function __VLS_template(): {
|
|
232
372
|
attrs: Partial<{}>;
|
|
233
373
|
slots: {
|
|
@@ -238,6 +378,64 @@ declare function __VLS_template(): {
|
|
|
238
378
|
};
|
|
239
379
|
|
|
240
380
|
declare function __VLS_template_10(): {
|
|
381
|
+
attrs: Partial<{}>;
|
|
382
|
+
slots: {
|
|
383
|
+
default?(_: {}): any;
|
|
384
|
+
};
|
|
385
|
+
refs: {};
|
|
386
|
+
rootEl: HTMLElement;
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
declare function __VLS_template_11(): {
|
|
390
|
+
attrs: Partial<{}>;
|
|
391
|
+
slots: {
|
|
392
|
+
default?(_: {}): any;
|
|
393
|
+
};
|
|
394
|
+
refs: {};
|
|
395
|
+
rootEl: HTMLDivElement;
|
|
396
|
+
};
|
|
397
|
+
|
|
398
|
+
declare function __VLS_template_12(): {
|
|
399
|
+
attrs: Partial<{}>;
|
|
400
|
+
slots: {
|
|
401
|
+
figure?(_: {}): any;
|
|
402
|
+
actions?(_: {}): any;
|
|
403
|
+
};
|
|
404
|
+
refs: {};
|
|
405
|
+
rootEl: HTMLDivElement;
|
|
406
|
+
};
|
|
407
|
+
|
|
408
|
+
declare function __VLS_template_13(): {
|
|
409
|
+
attrs: Partial<{}>;
|
|
410
|
+
slots: {
|
|
411
|
+
default?(_: {}): any;
|
|
412
|
+
};
|
|
413
|
+
refs: {};
|
|
414
|
+
rootEl: HTMLDivElement;
|
|
415
|
+
};
|
|
416
|
+
|
|
417
|
+
declare function __VLS_template_14(): {
|
|
418
|
+
attrs: Partial<{}>;
|
|
419
|
+
slots: {
|
|
420
|
+
default?(_: {}): any;
|
|
421
|
+
};
|
|
422
|
+
refs: {};
|
|
423
|
+
rootEl: HTMLUListElement;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
declare function __VLS_template_15(): {
|
|
427
|
+
attrs: Partial<{}>;
|
|
428
|
+
slots: {
|
|
429
|
+
additionalForMobile?(_: {}): any;
|
|
430
|
+
};
|
|
431
|
+
refs: {
|
|
432
|
+
searchContainer: HTMLDivElement;
|
|
433
|
+
inlineComponentRef: unknown;
|
|
434
|
+
};
|
|
435
|
+
rootEl: any;
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
declare function __VLS_template_16(): {
|
|
241
439
|
attrs: Partial<{}>;
|
|
242
440
|
slots: {
|
|
243
441
|
tag?(_: {
|
|
@@ -254,7 +452,7 @@ declare function __VLS_template_10(): {
|
|
|
254
452
|
rootEl: HTMLDivElement;
|
|
255
453
|
};
|
|
256
454
|
|
|
257
|
-
declare function
|
|
455
|
+
declare function __VLS_template_17(): {
|
|
258
456
|
attrs: Partial<{}>;
|
|
259
457
|
slots: {
|
|
260
458
|
default?(_: {}): any;
|
|
@@ -265,7 +463,7 @@ declare function __VLS_template_11(): {
|
|
|
265
463
|
rootEl: HTMLDivElement;
|
|
266
464
|
};
|
|
267
465
|
|
|
268
|
-
declare function
|
|
466
|
+
declare function __VLS_template_18(): {
|
|
269
467
|
attrs: Partial<{}>;
|
|
270
468
|
slots: {
|
|
271
469
|
default?(_: {}): any;
|
|
@@ -274,7 +472,70 @@ declare function __VLS_template_12(): {
|
|
|
274
472
|
rootEl: HTMLDivElement;
|
|
275
473
|
};
|
|
276
474
|
|
|
277
|
-
declare function
|
|
475
|
+
declare function __VLS_template_19(): {
|
|
476
|
+
attrs: Partial<{}>;
|
|
477
|
+
slots: {
|
|
478
|
+
default?(_: {}): any;
|
|
479
|
+
};
|
|
480
|
+
refs: {};
|
|
481
|
+
rootEl: HTMLDivElement;
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
declare function __VLS_template_2(): {
|
|
485
|
+
attrs: Partial<{}>;
|
|
486
|
+
slots: {
|
|
487
|
+
default?(_: {
|
|
488
|
+
tabindex: string;
|
|
489
|
+
role: string;
|
|
490
|
+
}): any;
|
|
491
|
+
additional?(_: {}): any;
|
|
492
|
+
};
|
|
493
|
+
refs: {};
|
|
494
|
+
rootEl: HTMLDivElement;
|
|
495
|
+
};
|
|
496
|
+
|
|
497
|
+
declare function __VLS_template_20(): {
|
|
498
|
+
attrs: Partial<{}>;
|
|
499
|
+
slots: {
|
|
500
|
+
icon?(_: {
|
|
501
|
+
class: string;
|
|
502
|
+
}): any;
|
|
503
|
+
default?(_: {}): any;
|
|
504
|
+
};
|
|
505
|
+
refs: {};
|
|
506
|
+
rootEl: any;
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
declare function __VLS_template_21(): {
|
|
510
|
+
attrs: Partial<{}>;
|
|
511
|
+
slots: {
|
|
512
|
+
default?(_: {}): any;
|
|
513
|
+
};
|
|
514
|
+
refs: {};
|
|
515
|
+
rootEl: HTMLDivElement;
|
|
516
|
+
};
|
|
517
|
+
|
|
518
|
+
declare function __VLS_template_22(): {
|
|
519
|
+
attrs: Partial<{}>;
|
|
520
|
+
slots: {
|
|
521
|
+
content?(_: {}): any;
|
|
522
|
+
sidebar?(_: {}): any;
|
|
523
|
+
};
|
|
524
|
+
refs: {};
|
|
525
|
+
rootEl: HTMLDivElement;
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
declare function __VLS_template_23(): {
|
|
529
|
+
attrs: Partial<{}>;
|
|
530
|
+
slots: {
|
|
531
|
+
'extra-row'?(_: {}): any;
|
|
532
|
+
default?(_: {}): any;
|
|
533
|
+
};
|
|
534
|
+
refs: {};
|
|
535
|
+
rootEl: HTMLDivElement;
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
declare function __VLS_template_24(): {
|
|
278
539
|
attrs: Partial<{}>;
|
|
279
540
|
slots: {
|
|
280
541
|
title?(_: {}): any;
|
|
@@ -289,38 +550,55 @@ declare function __VLS_template_13(): {
|
|
|
289
550
|
rootEl: HTMLDivElement;
|
|
290
551
|
};
|
|
291
552
|
|
|
292
|
-
declare function
|
|
553
|
+
declare function __VLS_template_25(): {
|
|
293
554
|
attrs: Partial<{}>;
|
|
294
555
|
slots: {
|
|
295
|
-
|
|
296
|
-
center?(_: {}): any;
|
|
297
|
-
end?(_: {}): any;
|
|
298
|
-
bottom?(_: {}): any;
|
|
556
|
+
default?(_: {}): any;
|
|
299
557
|
};
|
|
300
558
|
refs: {};
|
|
301
|
-
rootEl:
|
|
559
|
+
rootEl: HTMLDivElement;
|
|
302
560
|
};
|
|
303
561
|
|
|
304
|
-
declare function
|
|
562
|
+
declare function __VLS_template_26(): {
|
|
305
563
|
attrs: Partial<{}>;
|
|
306
|
-
slots:
|
|
564
|
+
slots: {
|
|
307
565
|
default?(_: {}): any;
|
|
308
566
|
};
|
|
309
567
|
refs: {};
|
|
310
|
-
rootEl:
|
|
568
|
+
rootEl: HTMLDivElement;
|
|
311
569
|
};
|
|
312
570
|
|
|
313
|
-
declare function
|
|
571
|
+
declare function __VLS_template_27(): {
|
|
314
572
|
attrs: Partial<{}>;
|
|
315
573
|
slots: {
|
|
316
|
-
default?(_: {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
574
|
+
default?(_: {}): any;
|
|
575
|
+
};
|
|
576
|
+
refs: {};
|
|
577
|
+
rootEl: HTMLUListElement;
|
|
578
|
+
};
|
|
579
|
+
|
|
580
|
+
declare function __VLS_template_28(): {
|
|
581
|
+
attrs: Partial<{}>;
|
|
582
|
+
slots: {
|
|
583
|
+
start?(_: {}): any;
|
|
584
|
+
center?(_: {}): any;
|
|
585
|
+
end?(_: {}): any;
|
|
586
|
+
default?(_: {}): any;
|
|
587
|
+
};
|
|
588
|
+
refs: {};
|
|
589
|
+
rootEl: HTMLDivElement;
|
|
590
|
+
};
|
|
591
|
+
|
|
592
|
+
declare function __VLS_template_29(): {
|
|
593
|
+
attrs: Partial<{}>;
|
|
594
|
+
slots: {
|
|
595
|
+
start?(_: {}): any;
|
|
596
|
+
center?(_: {}): any;
|
|
597
|
+
end?(_: {}): any;
|
|
598
|
+
bottom?(_: {}): any;
|
|
321
599
|
};
|
|
322
600
|
refs: {};
|
|
323
|
-
rootEl:
|
|
601
|
+
rootEl: HTMLElement;
|
|
324
602
|
};
|
|
325
603
|
|
|
326
604
|
declare function __VLS_template_3(): {
|
|
@@ -339,6 +617,15 @@ declare function __VLS_template_3(): {
|
|
|
339
617
|
rootEl: any;
|
|
340
618
|
};
|
|
341
619
|
|
|
620
|
+
declare function __VLS_template_30(): {
|
|
621
|
+
attrs: Partial<{}>;
|
|
622
|
+
slots: Partial<Record<`${string}-tab`, (_: {}) => any>> & {
|
|
623
|
+
default?(_: {}): any;
|
|
624
|
+
};
|
|
625
|
+
refs: {};
|
|
626
|
+
rootEl: any;
|
|
627
|
+
};
|
|
628
|
+
|
|
342
629
|
declare function __VLS_template_4(): {
|
|
343
630
|
attrs: Partial<{}>;
|
|
344
631
|
slots: {
|
|
@@ -361,7 +648,9 @@ declare function __VLS_template_5(): {
|
|
|
361
648
|
declare function __VLS_template_6(): {
|
|
362
649
|
attrs: Partial<{}>;
|
|
363
650
|
slots: {
|
|
364
|
-
details?(_: {
|
|
651
|
+
details?(_: {
|
|
652
|
+
class: string;
|
|
653
|
+
}): any;
|
|
365
654
|
actions?(_: {}): any;
|
|
366
655
|
};
|
|
367
656
|
refs: {};
|
|
@@ -377,6 +666,7 @@ declare function __VLS_template_7(): {
|
|
|
377
666
|
};
|
|
378
667
|
refs: {
|
|
379
668
|
carouselContainer: HTMLDivElement;
|
|
669
|
+
slidesContainer: HTMLDivElement;
|
|
380
670
|
};
|
|
381
671
|
rootEl: HTMLDivElement;
|
|
382
672
|
};
|
|
@@ -393,13 +683,13 @@ declare function __VLS_template_8(): {
|
|
|
393
683
|
declare function __VLS_template_9(): {
|
|
394
684
|
attrs: Partial<{}>;
|
|
395
685
|
slots: {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
inlineComponentRef: unknown;
|
|
686
|
+
image?(_: {}): any;
|
|
687
|
+
header?(_: {}): any;
|
|
688
|
+
default?(_: {}): any;
|
|
689
|
+
footer?(_: {}): any;
|
|
401
690
|
};
|
|
402
|
-
|
|
691
|
+
refs: {};
|
|
692
|
+
rootEl: HTMLDivElement;
|
|
403
693
|
};
|
|
404
694
|
|
|
405
695
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -416,10 +706,40 @@ declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
|
416
706
|
|
|
417
707
|
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
418
708
|
|
|
709
|
+
declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
710
|
+
|
|
711
|
+
declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
|
|
712
|
+
|
|
713
|
+
declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
|
|
714
|
+
|
|
715
|
+
declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
|
|
716
|
+
|
|
419
717
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
420
718
|
|
|
719
|
+
declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
720
|
+
|
|
721
|
+
declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
|
|
722
|
+
|
|
723
|
+
declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
|
|
724
|
+
|
|
725
|
+
declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
|
|
726
|
+
|
|
727
|
+
declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
|
|
728
|
+
|
|
729
|
+
declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
|
|
730
|
+
|
|
731
|
+
declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
|
|
732
|
+
|
|
733
|
+
declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
|
|
734
|
+
|
|
735
|
+
declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
|
|
736
|
+
|
|
737
|
+
declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
|
|
738
|
+
|
|
421
739
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
422
740
|
|
|
741
|
+
declare type __VLS_TemplateResult_30 = ReturnType<typeof __VLS_template_30>;
|
|
742
|
+
|
|
423
743
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
424
744
|
|
|
425
745
|
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
@@ -474,18 +794,108 @@ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
|
474
794
|
};
|
|
475
795
|
};
|
|
476
796
|
|
|
797
|
+
declare type __VLS_WithTemplateSlots_16<T, S> = T & {
|
|
798
|
+
new (): {
|
|
799
|
+
$slots: S;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
802
|
+
|
|
803
|
+
declare type __VLS_WithTemplateSlots_17<T, S> = T & {
|
|
804
|
+
new (): {
|
|
805
|
+
$slots: S;
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
|
|
809
|
+
declare type __VLS_WithTemplateSlots_18<T, S> = T & {
|
|
810
|
+
new (): {
|
|
811
|
+
$slots: S;
|
|
812
|
+
};
|
|
813
|
+
};
|
|
814
|
+
|
|
815
|
+
declare type __VLS_WithTemplateSlots_19<T, S> = T & {
|
|
816
|
+
new (): {
|
|
817
|
+
$slots: S;
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
|
|
477
821
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
478
822
|
new (): {
|
|
479
823
|
$slots: S;
|
|
480
824
|
};
|
|
481
825
|
};
|
|
482
826
|
|
|
827
|
+
declare type __VLS_WithTemplateSlots_20<T, S> = T & {
|
|
828
|
+
new (): {
|
|
829
|
+
$slots: S;
|
|
830
|
+
};
|
|
831
|
+
};
|
|
832
|
+
|
|
833
|
+
declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
834
|
+
new (): {
|
|
835
|
+
$slots: S;
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
|
|
839
|
+
declare type __VLS_WithTemplateSlots_22<T, S> = T & {
|
|
840
|
+
new (): {
|
|
841
|
+
$slots: S;
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
|
|
845
|
+
declare type __VLS_WithTemplateSlots_23<T, S> = T & {
|
|
846
|
+
new (): {
|
|
847
|
+
$slots: S;
|
|
848
|
+
};
|
|
849
|
+
};
|
|
850
|
+
|
|
851
|
+
declare type __VLS_WithTemplateSlots_24<T, S> = T & {
|
|
852
|
+
new (): {
|
|
853
|
+
$slots: S;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
|
|
857
|
+
declare type __VLS_WithTemplateSlots_25<T, S> = T & {
|
|
858
|
+
new (): {
|
|
859
|
+
$slots: S;
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
|
|
863
|
+
declare type __VLS_WithTemplateSlots_26<T, S> = T & {
|
|
864
|
+
new (): {
|
|
865
|
+
$slots: S;
|
|
866
|
+
};
|
|
867
|
+
};
|
|
868
|
+
|
|
869
|
+
declare type __VLS_WithTemplateSlots_27<T, S> = T & {
|
|
870
|
+
new (): {
|
|
871
|
+
$slots: S;
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
declare type __VLS_WithTemplateSlots_28<T, S> = T & {
|
|
876
|
+
new (): {
|
|
877
|
+
$slots: S;
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
declare type __VLS_WithTemplateSlots_29<T, S> = T & {
|
|
882
|
+
new (): {
|
|
883
|
+
$slots: S;
|
|
884
|
+
};
|
|
885
|
+
};
|
|
886
|
+
|
|
483
887
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
484
888
|
new (): {
|
|
485
889
|
$slots: S;
|
|
486
890
|
};
|
|
487
891
|
};
|
|
488
892
|
|
|
893
|
+
declare type __VLS_WithTemplateSlots_30<T, S> = T & {
|
|
894
|
+
new (): {
|
|
895
|
+
$slots: S;
|
|
896
|
+
};
|
|
897
|
+
};
|
|
898
|
+
|
|
489
899
|
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
490
900
|
new (): {
|
|
491
901
|
$slots: S;
|
|
@@ -524,6 +934,7 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
524
934
|
|
|
525
935
|
export declare const Accordion: DefineComponent<Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_6> & Readonly<{}>, {
|
|
526
936
|
joinItems: boolean;
|
|
937
|
+
toggle: boolean;
|
|
527
938
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
528
939
|
|
|
529
940
|
declare interface Accordion_2 {
|
|
@@ -531,7 +942,11 @@ declare interface Accordion_2 {
|
|
|
531
942
|
content: string;
|
|
532
943
|
}
|
|
533
944
|
|
|
534
|
-
export declare const AdvancedSearch:
|
|
945
|
+
export declare const AdvancedSearch: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
946
|
+
|
|
947
|
+
export declare const Alert: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
948
|
+
|
|
949
|
+
declare type AlertType = 'info' | 'success' | 'warning' | 'error' | 'default';
|
|
535
950
|
|
|
536
951
|
export declare const Avatar: DefineComponent<Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_7> & Readonly<{}>, {
|
|
537
952
|
onlineStatus: "online" | "offline" | "none";
|
|
@@ -540,6 +955,22 @@ fullyRounded: boolean;
|
|
|
540
955
|
|
|
541
956
|
export declare const Badge: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
542
957
|
|
|
958
|
+
declare interface BreadcrumbItem {
|
|
959
|
+
label: string;
|
|
960
|
+
href?: string;
|
|
961
|
+
icon?: string;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
export declare const Breadcrumbs: DefineComponent<BreadcrumbsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
965
|
+
click: (item: BreadcrumbItem, event: MouseEvent) => any;
|
|
966
|
+
}, string, PublicProps, Readonly<BreadcrumbsProps> & Readonly<{
|
|
967
|
+
onClick?: ((item: BreadcrumbItem, event: MouseEvent) => any) | undefined;
|
|
968
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
969
|
+
|
|
970
|
+
declare interface BreadcrumbsProps {
|
|
971
|
+
items: BreadcrumbItem[];
|
|
972
|
+
}
|
|
973
|
+
|
|
543
974
|
export declare const ButtonComponent: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
544
975
|
|
|
545
976
|
declare type CallyInitialDate = Date | string | {
|
|
@@ -551,6 +982,15 @@ export declare const Card: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, _
|
|
|
551
982
|
|
|
552
983
|
export declare const Carousel: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
553
984
|
|
|
985
|
+
declare type CarouselBreakpointConfig = {
|
|
986
|
+
slidesPerView?: number;
|
|
987
|
+
gap?: number;
|
|
988
|
+
containerBreakout?: boolean;
|
|
989
|
+
peekAmount?: number;
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
declare type CarouselBreakpoints = Record<number, CarouselBreakpointConfig>;
|
|
993
|
+
|
|
554
994
|
export declare const CarouselItem: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
555
995
|
|
|
556
996
|
declare interface Category {
|
|
@@ -564,33 +1004,65 @@ export declare const CategoryNavigation: DefineComponent<Props_16, {}, {}, {}, {
|
|
|
564
1004
|
"onUpdate:currentCategory"?: ((category: string) => any) | undefined;
|
|
565
1005
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
566
1006
|
|
|
1007
|
+
export declare const Chat: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1008
|
+
|
|
1009
|
+
declare interface ChatProps {
|
|
1010
|
+
position: 'start' | 'end';
|
|
1011
|
+
color?: 'neutral' | 'primary' | 'secondary' | 'accent' | 'info' | 'success' | 'warning' | 'error';
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
export declare const Checkbox: DefineComponent<CheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1015
|
+
"update:modelValue": (value: boolean) => any;
|
|
1016
|
+
}, string, PublicProps, Readonly<CheckboxProps> & Readonly<{
|
|
1017
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1018
|
+
}>, {
|
|
1019
|
+
disabled: boolean;
|
|
1020
|
+
modelValue: boolean;
|
|
1021
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1022
|
+
|
|
1023
|
+
declare interface CheckboxProps {
|
|
1024
|
+
modelValue?: boolean;
|
|
1025
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'success' | 'warning' | 'info' | 'error';
|
|
1026
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1027
|
+
disabled?: boolean;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
export declare const Countdown: DefineComponent<CountdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CountdownProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
1031
|
+
|
|
1032
|
+
declare interface CountdownProps {
|
|
1033
|
+
value: number;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
567
1036
|
export declare const DatetimePicker: DefineComponent<Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
568
|
-
|
|
1037
|
+
change: (value: string | {
|
|
569
1038
|
start: string;
|
|
570
1039
|
end: string;
|
|
571
1040
|
} | null) => any;
|
|
572
|
-
|
|
1041
|
+
"update:modelValue": (value: string | {
|
|
573
1042
|
start: string;
|
|
574
1043
|
end: string;
|
|
575
1044
|
} | null) => any;
|
|
576
1045
|
}, string, PublicProps, Readonly<Props_11> & Readonly<{
|
|
577
|
-
|
|
1046
|
+
onChange?: ((value: string | {
|
|
578
1047
|
start: string;
|
|
579
1048
|
end: string;
|
|
580
1049
|
} | null) => any) | undefined;
|
|
581
|
-
|
|
1050
|
+
"onUpdate:modelValue"?: ((value: string | {
|
|
582
1051
|
start: string;
|
|
583
1052
|
end: string;
|
|
584
1053
|
} | null) => any) | undefined;
|
|
585
1054
|
}>, {
|
|
586
1055
|
disabled: boolean;
|
|
587
1056
|
id: string;
|
|
1057
|
+
firstDayOfWeek: number;
|
|
588
1058
|
locale: string;
|
|
589
1059
|
range: boolean;
|
|
590
1060
|
mode: "datetime" | "date" | "time";
|
|
591
1061
|
placeholder: string;
|
|
592
1062
|
popup: boolean;
|
|
593
1063
|
initialDate: CallyInitialDate;
|
|
1064
|
+
closeText: string;
|
|
1065
|
+
disableDefaultValue: boolean;
|
|
594
1066
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
595
1067
|
pickerContainer: HTMLDivElement;
|
|
596
1068
|
datePicker: unknown;
|
|
@@ -600,6 +1072,24 @@ timeToInput: HTMLInputElement;
|
|
|
600
1072
|
timeInput: HTMLInputElement;
|
|
601
1073
|
}, HTMLDivElement>;
|
|
602
1074
|
|
|
1075
|
+
export declare const Divider: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
1076
|
+
|
|
1077
|
+
declare interface DividerProps {
|
|
1078
|
+
vertical?: boolean;
|
|
1079
|
+
horizontal?: boolean;
|
|
1080
|
+
color?: 'neutral' | 'primary' | 'secondary' | 'accent' | 'success' | 'warning' | 'info' | 'error';
|
|
1081
|
+
position?: 'start' | 'end';
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
export declare const Drawer: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
1085
|
+
|
|
1086
|
+
declare interface DrawerProps {
|
|
1087
|
+
id: string;
|
|
1088
|
+
modelValue?: boolean;
|
|
1089
|
+
end?: boolean;
|
|
1090
|
+
open?: boolean;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
603
1093
|
export declare const Dropdown: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
604
1094
|
|
|
605
1095
|
declare const dropdownFloatPosition: {
|
|
@@ -621,9 +1111,28 @@ declare const dropdownPosition: {
|
|
|
621
1111
|
|
|
622
1112
|
declare const errorMessage: Ref<string, string>;
|
|
623
1113
|
|
|
1114
|
+
export declare const FileInput: DefineComponent<FileInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1115
|
+
change: (files: FileList | null) => any;
|
|
1116
|
+
}, string, PublicProps, Readonly<FileInputProps> & Readonly<{
|
|
1117
|
+
onChange?: ((files: FileList | null) => any) | undefined;
|
|
1118
|
+
}>, {
|
|
1119
|
+
ghost: boolean;
|
|
1120
|
+
disabled: boolean;
|
|
1121
|
+
multiple: boolean;
|
|
1122
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1123
|
+
|
|
1124
|
+
declare interface FileInputProps {
|
|
1125
|
+
accept?: string;
|
|
1126
|
+
multiple?: boolean;
|
|
1127
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'info' | 'success' | 'warning' | 'error';
|
|
1128
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1129
|
+
ghost?: boolean;
|
|
1130
|
+
disabled?: boolean;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
624
1133
|
export { FilterableSelect }
|
|
625
1134
|
|
|
626
|
-
export declare const Footer:
|
|
1135
|
+
export declare const Footer: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
627
1136
|
|
|
628
1137
|
declare interface FooterNavigation {
|
|
629
1138
|
title: string;
|
|
@@ -636,14 +1145,27 @@ declare interface FooterNavigationItem {
|
|
|
636
1145
|
enabled: Boolean;
|
|
637
1146
|
}
|
|
638
1147
|
|
|
639
|
-
export declare const Hero:
|
|
1148
|
+
export declare const Hero: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
640
1149
|
|
|
641
|
-
export declare const InputField:
|
|
1150
|
+
export declare const InputField: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
642
1151
|
|
|
643
1152
|
declare const isTouched: Ref<boolean, boolean>;
|
|
644
1153
|
|
|
645
1154
|
declare const isValid: ComputedRef<boolean>;
|
|
646
1155
|
|
|
1156
|
+
export declare const Join: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
1157
|
+
|
|
1158
|
+
declare interface JoinProps {
|
|
1159
|
+
vertical?: boolean;
|
|
1160
|
+
horizontal?: boolean;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
export declare const Kbd: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1164
|
+
|
|
1165
|
+
declare interface KbdProps {
|
|
1166
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1167
|
+
}
|
|
1168
|
+
|
|
647
1169
|
export declare const Loader: DefineComponent<Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_14> & Readonly<{}>, {
|
|
648
1170
|
loading: boolean;
|
|
649
1171
|
type: "spinner" | "dots" | "ring" | "balls" | "bars" | "infinity";
|
|
@@ -651,6 +1173,14 @@ size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
|
651
1173
|
color: "primary" | "secondary" | "accent" | "neutral" | "info" | "success" | "warning" | "error";
|
|
652
1174
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
653
1175
|
|
|
1176
|
+
export declare const Menu: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
1177
|
+
|
|
1178
|
+
declare interface MenuProps {
|
|
1179
|
+
horizontal?: boolean;
|
|
1180
|
+
vertical?: boolean;
|
|
1181
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1182
|
+
}
|
|
1183
|
+
|
|
654
1184
|
export declare const Modal: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
655
1185
|
|
|
656
1186
|
declare const modalPosition: {
|
|
@@ -659,7 +1189,39 @@ declare const modalPosition: {
|
|
|
659
1189
|
center: string;
|
|
660
1190
|
};
|
|
661
1191
|
|
|
662
|
-
export declare const
|
|
1192
|
+
export declare const Navbar: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
1193
|
+
|
|
1194
|
+
declare interface NavbarProps {
|
|
1195
|
+
bg?: string;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
export declare const NavigationBar: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
|
|
1199
|
+
|
|
1200
|
+
export declare const Pagination: DefineComponent<PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1201
|
+
"update:currentPage": (page: number) => any;
|
|
1202
|
+
}, string, PublicProps, Readonly<PaginationProps> & Readonly<{
|
|
1203
|
+
"onUpdate:currentPage"?: ((page: number) => any) | undefined;
|
|
1204
|
+
}>, {
|
|
1205
|
+
maxVisible: number;
|
|
1206
|
+
showFirstLast: boolean;
|
|
1207
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1208
|
+
|
|
1209
|
+
declare interface PaginationProps {
|
|
1210
|
+
currentPage: number;
|
|
1211
|
+
totalPages: number;
|
|
1212
|
+
maxVisible?: number;
|
|
1213
|
+
showFirstLast?: boolean;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
export declare const Progress: DefineComponent<ProgressProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ProgressProps> & Readonly<{}>, {
|
|
1217
|
+
max: number;
|
|
1218
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1219
|
+
|
|
1220
|
+
declare interface ProgressProps {
|
|
1221
|
+
value?: number;
|
|
1222
|
+
max?: number;
|
|
1223
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'info' | 'success' | 'warning' | 'error';
|
|
1224
|
+
}
|
|
663
1225
|
|
|
664
1226
|
declare interface Props {
|
|
665
1227
|
outlined?: boolean;
|
|
@@ -682,7 +1244,7 @@ declare interface Props_10 {
|
|
|
682
1244
|
}
|
|
683
1245
|
|
|
684
1246
|
declare interface Props_11 {
|
|
685
|
-
mode?:
|
|
1247
|
+
mode?: 'datetime' | 'date' | 'time';
|
|
686
1248
|
range?: boolean;
|
|
687
1249
|
placeholder?: string;
|
|
688
1250
|
popup?: boolean;
|
|
@@ -690,8 +1252,12 @@ declare interface Props_11 {
|
|
|
690
1252
|
initialDate?: CallyInitialDate;
|
|
691
1253
|
disabled?: boolean;
|
|
692
1254
|
locale?: string;
|
|
1255
|
+
format?: Intl.DateTimeFormat;
|
|
1256
|
+
firstDayOfWeek?: number;
|
|
693
1257
|
min?: string;
|
|
694
1258
|
max?: string;
|
|
1259
|
+
closeText?: string;
|
|
1260
|
+
disableDefaultValue?: boolean;
|
|
695
1261
|
}
|
|
696
1262
|
|
|
697
1263
|
declare interface Props_12 {
|
|
@@ -737,6 +1303,7 @@ declare interface Props_15 {
|
|
|
737
1303
|
background?: string;
|
|
738
1304
|
color?: string;
|
|
739
1305
|
collapseOnMobile?: boolean;
|
|
1306
|
+
rows?: number;
|
|
740
1307
|
}
|
|
741
1308
|
|
|
742
1309
|
declare interface Props_16 {
|
|
@@ -755,6 +1322,14 @@ declare interface Props_18 {
|
|
|
755
1322
|
buttonOnlyMode?: boolean;
|
|
756
1323
|
}
|
|
757
1324
|
|
|
1325
|
+
declare interface Props_19 {
|
|
1326
|
+
vertical?: boolean;
|
|
1327
|
+
progress: number;
|
|
1328
|
+
wrap?: boolean;
|
|
1329
|
+
steps: Step[];
|
|
1330
|
+
bars?: boolean;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
758
1333
|
declare interface Props_2 {
|
|
759
1334
|
items?: Array<dropdownItem>;
|
|
760
1335
|
position?: keyof typeof dropdownPosition;
|
|
@@ -783,6 +1358,7 @@ declare interface Props_6 {
|
|
|
783
1358
|
items: Array<Accordion_2>;
|
|
784
1359
|
joinItems?: boolean;
|
|
785
1360
|
icon?: "arrow" | "plus";
|
|
1361
|
+
toggle?: boolean;
|
|
786
1362
|
}
|
|
787
1363
|
|
|
788
1364
|
declare interface Props_7 {
|
|
@@ -813,6 +1389,46 @@ declare interface Props_9 {
|
|
|
813
1389
|
horizontal?: boolean;
|
|
814
1390
|
}
|
|
815
1391
|
|
|
1392
|
+
export declare const Radio: DefineComponent<RadioProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1393
|
+
"update:modelValue": (value: any) => any;
|
|
1394
|
+
}, string, PublicProps, Readonly<RadioProps> & Readonly<{
|
|
1395
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1396
|
+
}>, {
|
|
1397
|
+
disabled: boolean;
|
|
1398
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1399
|
+
|
|
1400
|
+
declare interface RadioProps {
|
|
1401
|
+
modelValue?: any;
|
|
1402
|
+
value: any;
|
|
1403
|
+
name?: string;
|
|
1404
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'success' | 'warning' | 'info' | 'error';
|
|
1405
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1406
|
+
disabled?: boolean;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
declare const Range_2: DefineComponent<RangeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1410
|
+
"update:modelValue": (value: number) => any;
|
|
1411
|
+
}, string, PublicProps, Readonly<RangeProps> & Readonly<{
|
|
1412
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1413
|
+
}>, {
|
|
1414
|
+
disabled: boolean;
|
|
1415
|
+
min: number;
|
|
1416
|
+
max: number;
|
|
1417
|
+
modelValue: number;
|
|
1418
|
+
step: number;
|
|
1419
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1420
|
+
export { Range_2 as Range }
|
|
1421
|
+
|
|
1422
|
+
declare interface RangeProps {
|
|
1423
|
+
modelValue?: number;
|
|
1424
|
+
min?: number;
|
|
1425
|
+
max?: number;
|
|
1426
|
+
step?: number;
|
|
1427
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'success' | 'warning' | 'info' | 'error';
|
|
1428
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1429
|
+
disabled?: boolean;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
816
1432
|
export declare const Rating: DefineComponent<Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_12> & Readonly<{}>, {
|
|
817
1433
|
size: "xs" | "sm" | "md" | "lg";
|
|
818
1434
|
shape: "star" | "star-bold" | "heart" | "squircle" | "hexagon-vertical" | "hexagon-horizontal" | "decagon" | "pentagon" | "diamond" | "square" | "triangle-top" | "triangle-bottom" | "triangle-left" | "triangle-right";
|
|
@@ -839,9 +1455,51 @@ focusInput: () => void;
|
|
|
839
1455
|
selectElement: HTMLSelectElement;
|
|
840
1456
|
}, HTMLDivElement>;
|
|
841
1457
|
|
|
1458
|
+
export declare const Skeleton: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
1459
|
+
|
|
1460
|
+
declare interface SkeletonProps {
|
|
1461
|
+
text?: boolean;
|
|
1462
|
+
width?: string;
|
|
1463
|
+
height?: string;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
export declare const Stack: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
|
|
1467
|
+
|
|
1468
|
+
declare interface StackProps {
|
|
1469
|
+
position?: 'top' | 'bottom' | 'start' | 'end';
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
export declare const Stat: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1473
|
+
|
|
1474
|
+
declare interface StatProps {
|
|
1475
|
+
title?: string;
|
|
1476
|
+
value?: string | number;
|
|
1477
|
+
desc?: string;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
export declare const Stats: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1481
|
+
|
|
1482
|
+
declare interface StatsProps {
|
|
1483
|
+
vertical?: boolean;
|
|
1484
|
+
horizontal?: boolean;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
declare interface Step {
|
|
1488
|
+
title?: string;
|
|
1489
|
+
icon?: string;
|
|
1490
|
+
color?: "primary" | "secondary" | "accent" | "success" | "info" | "warning" | "error" | "";
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
export declare const Steps: DefineComponent<Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_19> & Readonly<{}>, {
|
|
1494
|
+
progress: number;
|
|
1495
|
+
vertical: boolean;
|
|
1496
|
+
bars: boolean;
|
|
1497
|
+
steps: Step[];
|
|
1498
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
|
|
1499
|
+
|
|
842
1500
|
export declare const Swap: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
843
1501
|
|
|
844
|
-
export declare const Tab:
|
|
1502
|
+
export declare const Tab: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
|
|
845
1503
|
|
|
846
1504
|
declare interface Tab_2 {
|
|
847
1505
|
name: string;
|
|
@@ -864,11 +1522,130 @@ declare interface Tab_3 {
|
|
|
864
1522
|
value?: any;
|
|
865
1523
|
}
|
|
866
1524
|
|
|
867
|
-
export declare const
|
|
1525
|
+
export declare const Table: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1526
|
+
|
|
1527
|
+
declare interface TableProps {
|
|
1528
|
+
zebra?: boolean;
|
|
1529
|
+
pinRows?: boolean;
|
|
1530
|
+
pinCols?: boolean;
|
|
1531
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export declare const TagInput: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
1535
|
+
|
|
1536
|
+
export declare const Textarea: DefineComponent<TextareaProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1537
|
+
"update:modelValue": (value: string) => any;
|
|
1538
|
+
}, string, PublicProps, Readonly<TextareaProps> & Readonly<{
|
|
1539
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1540
|
+
}>, {
|
|
1541
|
+
ghost: boolean;
|
|
1542
|
+
disabled: boolean;
|
|
1543
|
+
modelValue: string;
|
|
1544
|
+
rows: number;
|
|
1545
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1546
|
+
|
|
1547
|
+
declare interface TextareaProps {
|
|
1548
|
+
modelValue?: string;
|
|
1549
|
+
placeholder?: string;
|
|
1550
|
+
rows?: number;
|
|
1551
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'info' | 'success' | 'warning' | 'error';
|
|
1552
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1553
|
+
ghost?: boolean;
|
|
1554
|
+
disabled?: boolean;
|
|
1555
|
+
}
|
|
868
1556
|
|
|
869
1557
|
export declare const ThemeController: DefineComponent<Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_5> & Readonly<{}>, {
|
|
870
1558
|
lightTheme: string;
|
|
871
1559
|
darkTheme: string;
|
|
872
1560
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
873
1561
|
|
|
1562
|
+
export declare const Timeline: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
1563
|
+
|
|
1564
|
+
declare interface TimelineProps {
|
|
1565
|
+
vertical?: boolean;
|
|
1566
|
+
horizontal?: boolean;
|
|
1567
|
+
compact?: boolean;
|
|
1568
|
+
snapIcon?: boolean;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
export declare const Toast: DefineComponent<ExtractPropTypes< {
|
|
1572
|
+
position: {
|
|
1573
|
+
type: PropType<ToastPosition>;
|
|
1574
|
+
default: string;
|
|
1575
|
+
};
|
|
1576
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1577
|
+
position: {
|
|
1578
|
+
type: PropType<ToastPosition>;
|
|
1579
|
+
default: string;
|
|
1580
|
+
};
|
|
1581
|
+
}>> & Readonly<{}>, {
|
|
1582
|
+
position: ToastPosition;
|
|
1583
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1584
|
+
|
|
1585
|
+
declare interface Toast_2 {
|
|
1586
|
+
id: string;
|
|
1587
|
+
message: string;
|
|
1588
|
+
type: ToastType;
|
|
1589
|
+
duration: number;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
export declare const ToastComponent: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
1593
|
+
|
|
1594
|
+
export declare function ToastComposable(): {
|
|
1595
|
+
toasts: Readonly<Ref<readonly {
|
|
1596
|
+
readonly id: string;
|
|
1597
|
+
readonly message: string;
|
|
1598
|
+
readonly type: ToastType;
|
|
1599
|
+
readonly duration: number;
|
|
1600
|
+
}[], readonly {
|
|
1601
|
+
readonly id: string;
|
|
1602
|
+
readonly message: string;
|
|
1603
|
+
readonly type: ToastType;
|
|
1604
|
+
readonly duration: number;
|
|
1605
|
+
}[]>>;
|
|
1606
|
+
addToast: (message: string, type?: ToastType, duration?: number) => void;
|
|
1607
|
+
removeToast: (id: string) => void;
|
|
1608
|
+
};
|
|
1609
|
+
|
|
1610
|
+
export declare const ToastNotification: DefineComponent<ExtractPropTypes< {
|
|
1611
|
+
toast: {
|
|
1612
|
+
type: PropType<Toast_2>;
|
|
1613
|
+
required: true;
|
|
1614
|
+
};
|
|
1615
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1616
|
+
remove: (...args: any[]) => void;
|
|
1617
|
+
}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1618
|
+
toast: {
|
|
1619
|
+
type: PropType<Toast_2>;
|
|
1620
|
+
required: true;
|
|
1621
|
+
};
|
|
1622
|
+
}>> & Readonly<{
|
|
1623
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
1624
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1625
|
+
|
|
1626
|
+
declare type ToastPosition = 'top-start' | 'top-center' | 'top-end' | 'middle-start' | 'middle-center' | 'middle-end' | 'bottom-start' | 'bottom-center' | 'bottom-end';
|
|
1627
|
+
|
|
1628
|
+
declare interface ToastProps {
|
|
1629
|
+
position?: 'start' | 'center' | 'end';
|
|
1630
|
+
vertical?: 'top' | 'middle' | 'bottom';
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
declare type ToastType = 'info' | 'success' | 'warning' | 'error' | 'default';
|
|
1634
|
+
|
|
1635
|
+
export declare const Toggle: DefineComponent<ToggleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1636
|
+
"update:modelValue": (value: boolean) => any;
|
|
1637
|
+
}, string, PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
1638
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1639
|
+
}>, {
|
|
1640
|
+
disabled: boolean;
|
|
1641
|
+
modelValue: boolean;
|
|
1642
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1643
|
+
|
|
1644
|
+
declare interface ToggleProps {
|
|
1645
|
+
modelValue?: boolean;
|
|
1646
|
+
color?: 'primary' | 'secondary' | 'accent' | 'neutral' | 'success' | 'warning' | 'info' | 'error';
|
|
1647
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
1648
|
+
disabled?: boolean;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
874
1651
|
export { }
|