@mozaic-ds/vue 2.4.0 → 2.6.0
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/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +527 -338
- package/dist/mozaic-vue.js +967 -816
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +1 -1
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +4 -4
- package/src/components/avatar/MAvatar.spec.ts +49 -0
- package/src/components/avatar/MAvatar.stories.ts +53 -0
- package/src/components/avatar/MAvatar.vue +47 -0
- package/src/components/callout/MCallout.spec.ts +99 -0
- package/src/components/callout/MCallout.stories.ts +87 -0
- package/src/components/callout/MCallout.vue +66 -0
- package/src/components/checkbox/MCheckbox.spec.ts +54 -4
- package/src/components/checkbox/MCheckbox.vue +11 -1
- package/src/components/checkboxgroup/MCheckboxGroup.vue +2 -0
- package/src/components/container/MContainer.vue +8 -1
- package/src/components/divider/MDivider.vue +8 -1
- package/src/components/drawer/MDrawer.stories.ts +11 -0
- package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +11 -0
- package/src/components/modal/MModal.stories.ts +11 -0
- package/src/components/overlay/MOverlay.stories.ts +11 -0
- package/src/components/statusnotification/MStatusNotification.vue +9 -7
- package/src/components/textinput/MTextInput.spec.ts +2 -2
- package/src/components/textinput/MTextInput.stories.ts +9 -3
- package/src/components/textinput/MTextInput.vue +3 -5
- package/src/components/toaster/MToaster.spec.ts +122 -0
- package/src/components/toaster/MToaster.stories.ts +105 -0
- package/src/components/toaster/MToaster.vue +181 -0
- package/src/components/tooltip/MTooltip.stories.ts +11 -0
- package/src/main.ts +3 -0
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -21,25 +21,39 @@ import { VNodeProps } from 'vue';
|
|
|
21
21
|
import { WatchOptions } from 'vue';
|
|
22
22
|
import { WatchStopHandle } from 'vue';
|
|
23
23
|
|
|
24
|
-
declare const __VLS_component: DefineComponent<
|
|
25
|
-
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
24
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
26
25
|
size: "s" | "m" | "l";
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
27
|
+
|
|
28
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
|
|
29
|
+
size: "s" | "m";
|
|
30
|
+
iconPosition: "left" | "right";
|
|
31
|
+
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
32
|
+
href: string;
|
|
33
|
+
target: "_self" | "_blank" | "_parent" | "_top";
|
|
34
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
|
|
36
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
37
|
+
"update:open": (value: boolean) => any;
|
|
38
|
+
}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
|
|
39
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
40
|
+
}>, {
|
|
41
|
+
closable: boolean;
|
|
42
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
29
43
|
|
|
30
|
-
declare const
|
|
44
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
45
|
|
|
32
|
-
declare const
|
|
46
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
33
47
|
close: () => any;
|
|
34
|
-
}, string, PublicProps, Readonly<
|
|
48
|
+
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
35
49
|
onClose?: (() => any) | undefined;
|
|
36
50
|
}>, {
|
|
37
51
|
status: "info" | "success" | "warning" | "error";
|
|
38
52
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
39
53
|
|
|
40
|
-
declare const
|
|
54
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
41
55
|
"update:modelValue": (value: string | number) => any;
|
|
42
|
-
}, string, PublicProps, Readonly<
|
|
56
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
43
57
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
44
58
|
}>, {
|
|
45
59
|
size: "s" | "m";
|
|
@@ -47,84 +61,118 @@ clearLabel: string;
|
|
|
47
61
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
48
62
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
49
63
|
|
|
50
|
-
declare const
|
|
64
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
65
|
+
"update:open": (value: boolean) => any;
|
|
66
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
67
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
68
|
+
}>, {
|
|
69
|
+
status: "info" | "success" | "warning" | "error";
|
|
70
|
+
closable: boolean;
|
|
71
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
72
|
+
|
|
73
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
|
|
51
74
|
position: "top" | "bottom" | "left" | "right";
|
|
52
75
|
pointer: boolean;
|
|
53
76
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
54
77
|
|
|
55
|
-
declare const __VLS_component_2: DefineComponent<
|
|
78
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
79
|
+
size: "s" | "m" | "l";
|
|
80
|
+
type: "button" | "reset" | "submit";
|
|
81
|
+
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
82
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
83
|
+
|
|
84
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
|
|
85
|
+
appearance: "standard" | "accent" | "tips" | "inverse";
|
|
86
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
87
|
+
|
|
88
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
56
89
|
|
|
57
|
-
declare const
|
|
90
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
58
91
|
size: "s" | "m" | "l";
|
|
59
92
|
style: "primary" | "secondary" | "tertiary" | "inverse";
|
|
60
93
|
orientation: "vertical" | "horizontal";
|
|
61
94
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
62
95
|
|
|
63
|
-
declare const
|
|
96
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
64
97
|
back: () => any;
|
|
65
98
|
"update:open": (value: boolean) => any;
|
|
66
|
-
}, string, PublicProps, Readonly<
|
|
99
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
67
100
|
onBack?: (() => any) | undefined;
|
|
68
101
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
69
102
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
70
103
|
|
|
71
|
-
declare const
|
|
104
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
72
105
|
|
|
73
|
-
declare const
|
|
106
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
|
|
74
107
|
|
|
75
|
-
declare const
|
|
76
|
-
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
108
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
|
|
77
109
|
size: "s" | "m" | "l";
|
|
78
110
|
type: "button" | "reset" | "submit";
|
|
111
|
+
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
79
112
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
80
113
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
114
|
+
/**
|
|
115
|
+
* An avatar is a graphical representation of a user, entity, or group, commonly displayed as an image, initials, or an icon. It helps identify individuals or accounts in profiles, comments, chat interfaces, and user lists. Avatars can be customized with different styles, sizes, and fallback options (such as initials or placeholders) to ensure consistency and recognition across interfaces. When multiple users are represented, Avatar groups provide a compact way to display them collectively.
|
|
116
|
+
*/
|
|
117
|
+
declare type __VLS_Props = {
|
|
118
|
+
/**
|
|
119
|
+
* Allows to define the avatar size
|
|
120
|
+
*/
|
|
121
|
+
size?: 's' | 'm' | 'l';
|
|
122
|
+
};
|
|
88
123
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
124
|
+
/**
|
|
125
|
+
* A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
|
|
126
|
+
*/
|
|
127
|
+
declare type __VLS_Props_10 = {
|
|
128
|
+
/**
|
|
129
|
+
* Determines the orientation of the divider
|
|
130
|
+
*/
|
|
131
|
+
orientation?: 'vertical' | 'horizontal';
|
|
132
|
+
/**
|
|
133
|
+
* Determines the style of the divider
|
|
134
|
+
*/
|
|
135
|
+
style?: 'primary' | 'secondary' | 'tertiary' | 'inverse';
|
|
136
|
+
/**
|
|
137
|
+
* Determines the size of the divider
|
|
138
|
+
*/
|
|
139
|
+
size?: 's' | 'm' | 'l';
|
|
140
|
+
};
|
|
96
141
|
|
|
97
142
|
/**
|
|
98
|
-
* A
|
|
143
|
+
* A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
|
|
99
144
|
*/
|
|
100
|
-
declare type
|
|
145
|
+
declare type __VLS_Props_11 = {
|
|
101
146
|
/**
|
|
102
|
-
*
|
|
147
|
+
* If `true`, display the drawer.
|
|
103
148
|
*/
|
|
104
|
-
|
|
149
|
+
open?: boolean;
|
|
105
150
|
/**
|
|
106
|
-
*
|
|
151
|
+
* Position of the drawer
|
|
107
152
|
*/
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
153
|
+
position?: 'left' | 'right';
|
|
154
|
+
/**
|
|
155
|
+
* If `true`, the drawer have a bigger width.
|
|
156
|
+
*/
|
|
157
|
+
extended?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* If `true`, display the back button.
|
|
160
|
+
*/
|
|
161
|
+
back?: boolean;
|
|
162
|
+
/**
|
|
163
|
+
* Title of the drawer
|
|
164
|
+
*/
|
|
165
|
+
title: string;
|
|
166
|
+
/**
|
|
167
|
+
* Title of the content of the drawer
|
|
168
|
+
*/
|
|
169
|
+
contentTitle?: string;
|
|
122
170
|
};
|
|
123
171
|
|
|
124
172
|
/**
|
|
125
173
|
* This component creates a structured form field with a label, optional help text, error and validation message handling.
|
|
126
174
|
*/
|
|
127
|
-
declare type
|
|
175
|
+
declare type __VLS_Props_12 = {
|
|
128
176
|
/**
|
|
129
177
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
130
178
|
*/
|
|
@@ -166,7 +214,7 @@ declare type __VLS_Props_10 = {
|
|
|
166
214
|
/**
|
|
167
215
|
* This component creates a structured form field for group field such as Radio Group, Checkbox Group or Toggle Group with a label, optional help text, error and validation message handling.
|
|
168
216
|
*/
|
|
169
|
-
declare type
|
|
217
|
+
declare type __VLS_Props_13 = {
|
|
170
218
|
/**
|
|
171
219
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
172
220
|
*/
|
|
@@ -200,7 +248,7 @@ declare type __VLS_Props_11 = {
|
|
|
200
248
|
/**
|
|
201
249
|
* A flag is used to display meta-information about a product or service, acting as a visual indicator of the main category of content. It is typically placed at the top of an element to ensure immediate visibility.
|
|
202
250
|
*/
|
|
203
|
-
declare type
|
|
251
|
+
declare type __VLS_Props_14 = {
|
|
204
252
|
/**
|
|
205
253
|
* Label of the Flag
|
|
206
254
|
*/
|
|
@@ -214,7 +262,7 @@ declare type __VLS_Props_12 = {
|
|
|
214
262
|
/**
|
|
215
263
|
* Icon Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
216
264
|
*/
|
|
217
|
-
declare type
|
|
265
|
+
declare type __VLS_Props_15 = {
|
|
218
266
|
/**
|
|
219
267
|
* Defines the visual style of the icon button.
|
|
220
268
|
*/
|
|
@@ -244,7 +292,7 @@ declare type __VLS_Props_13 = {
|
|
|
244
292
|
/**
|
|
245
293
|
* A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
|
|
246
294
|
*/
|
|
247
|
-
declare type
|
|
295
|
+
declare type __VLS_Props_16 = {
|
|
248
296
|
/**
|
|
249
297
|
* Position of the icon relative to the text.
|
|
250
298
|
*/
|
|
@@ -278,7 +326,7 @@ declare type __VLS_Props_14 = {
|
|
|
278
326
|
/**
|
|
279
327
|
* A loader indicates that content or data is being loaded or processed, providing visual feedback to users during wait times.
|
|
280
328
|
*/
|
|
281
|
-
declare type
|
|
329
|
+
declare type __VLS_Props_17 = {
|
|
282
330
|
/**
|
|
283
331
|
* Specifies the visual appearance of the loader.
|
|
284
332
|
*/
|
|
@@ -296,7 +344,7 @@ declare type __VLS_Props_15 = {
|
|
|
296
344
|
/**
|
|
297
345
|
* A loading overlay is a full-screen or container-level layer that indicates a process is in progress, preventing user interaction until the task is completed. It includes a progress indicator, and a message to inform users about the loading state. Loading Overlays are commonly used in data-heavy applications, form submissions, and page transitions to enhance user experience by managing wait times effectively.
|
|
298
346
|
*/
|
|
299
|
-
declare type
|
|
347
|
+
declare type __VLS_Props_18 = {
|
|
300
348
|
/**
|
|
301
349
|
* Controls the visibility of the loading overlay.
|
|
302
350
|
*/
|
|
@@ -310,7 +358,7 @@ declare type __VLS_Props_16 = {
|
|
|
310
358
|
/**
|
|
311
359
|
* A modal is a dialog window that appears on top of the main content, requiring user interaction before returning to the main interface. It is used to focus attention on a specific task, provide important information, or request confirmation for an action. Modals typically include a title, description, and primary/secondary actions and should be used for single, focused tasks to avoid disrupting the user experience.
|
|
312
360
|
*/
|
|
313
|
-
declare type
|
|
361
|
+
declare type __VLS_Props_19 = {
|
|
314
362
|
/**
|
|
315
363
|
* if `true`, display the modal.
|
|
316
364
|
*/
|
|
@@ -329,10 +377,37 @@ declare type __VLS_Props_17 = {
|
|
|
329
377
|
closable?: boolean;
|
|
330
378
|
};
|
|
331
379
|
|
|
380
|
+
/**
|
|
381
|
+
* A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.
|
|
382
|
+
*/
|
|
383
|
+
declare type __VLS_Props_2 = {
|
|
384
|
+
/**
|
|
385
|
+
* Allows to define the breadcrumb style
|
|
386
|
+
*/
|
|
387
|
+
appearance?: 'standard' | 'inverse';
|
|
388
|
+
/**
|
|
389
|
+
* Links of the breadcrumb
|
|
390
|
+
*/
|
|
391
|
+
links: Array<{
|
|
392
|
+
/**
|
|
393
|
+
* The label displayed for the link.
|
|
394
|
+
*/
|
|
395
|
+
label: string;
|
|
396
|
+
/**
|
|
397
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
398
|
+
*/
|
|
399
|
+
href: string;
|
|
400
|
+
/**
|
|
401
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
402
|
+
*/
|
|
403
|
+
router?: boolean;
|
|
404
|
+
}>;
|
|
405
|
+
};
|
|
406
|
+
|
|
332
407
|
/**
|
|
333
408
|
* A badge indicates the status of an entity and can evolve at any time.
|
|
334
409
|
*/
|
|
335
|
-
declare type
|
|
410
|
+
declare type __VLS_Props_20 = {
|
|
336
411
|
/**
|
|
337
412
|
* Content of the badge
|
|
338
413
|
*/
|
|
@@ -350,7 +425,7 @@ declare type __VLS_Props_18 = {
|
|
|
350
425
|
/**
|
|
351
426
|
* An overlay component is a UI element that appears above the main content to display additional information or interactions, often blocking or dimming the background.
|
|
352
427
|
*/
|
|
353
|
-
declare type
|
|
428
|
+
declare type __VLS_Props_21 = {
|
|
354
429
|
/**
|
|
355
430
|
* Controls the visibility of the overlay.
|
|
356
431
|
*/
|
|
@@ -361,48 +436,10 @@ declare type __VLS_Props_19 = {
|
|
|
361
436
|
dialogLabel?: string;
|
|
362
437
|
};
|
|
363
438
|
|
|
364
|
-
/**
|
|
365
|
-
* Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
366
|
-
*/
|
|
367
|
-
declare type __VLS_Props_2 = {
|
|
368
|
-
/**
|
|
369
|
-
* Defines the visual style of the button.
|
|
370
|
-
*/
|
|
371
|
-
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
372
|
-
/**
|
|
373
|
-
* Determines the size of the button.
|
|
374
|
-
*/
|
|
375
|
-
size?: 's' | 'm' | 'l';
|
|
376
|
-
/**
|
|
377
|
-
* If `true`, disables the button, making it non-interactive.
|
|
378
|
-
*/
|
|
379
|
-
disabled?: boolean;
|
|
380
|
-
/**
|
|
381
|
-
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
382
|
-
*/
|
|
383
|
-
ghost?: boolean;
|
|
384
|
-
/**
|
|
385
|
-
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
386
|
-
*/
|
|
387
|
-
outlined?: boolean;
|
|
388
|
-
/**
|
|
389
|
-
* Controls the positioning of an icon in the button.
|
|
390
|
-
*/
|
|
391
|
-
iconPosition?: 'left' | 'right' | 'only';
|
|
392
|
-
/**
|
|
393
|
-
* Specifies the button's HTML `type` attribute.
|
|
394
|
-
*/
|
|
395
|
-
type?: 'button' | 'reset' | 'submit';
|
|
396
|
-
/**
|
|
397
|
-
* If `true`, a loading state is displayed.
|
|
398
|
-
*/
|
|
399
|
-
isLoading?: boolean;
|
|
400
|
-
};
|
|
401
|
-
|
|
402
439
|
/**
|
|
403
440
|
* Pagination is a navigation component that allows users to browse through large sets of content by dividing it into discrete pages. It typically includes previous and next buttons, numeric page selectors, or dropdowns to jump between pages efficiently. Pagination improves usability and performance in content-heavy applications such as tables, search results, and articles by preventing long scrolls and reducing page load times.
|
|
404
441
|
*/
|
|
405
|
-
declare type
|
|
442
|
+
declare type __VLS_Props_22 = {
|
|
406
443
|
/**
|
|
407
444
|
* A unique identifier for the pagination.
|
|
408
445
|
*/
|
|
@@ -432,7 +469,7 @@ declare type __VLS_Props_20 = {
|
|
|
432
469
|
/**
|
|
433
470
|
* A password input is a specialized input field used to securely enter and manage passwords. It typically masks the characters entered to protect sensitive information from being seen. It includes a toggle button to show or hide the password, improving usability while maintaining security. Password inputs are commonly used in login forms, account creation, and authentication flows.
|
|
434
471
|
*/
|
|
435
|
-
declare type
|
|
472
|
+
declare type __VLS_Props_23 = {
|
|
436
473
|
/**
|
|
437
474
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
438
475
|
*/
|
|
@@ -481,7 +518,7 @@ declare type __VLS_Props_21 = {
|
|
|
481
518
|
/**
|
|
482
519
|
* A pincode input is a specialized input field used to enter short numeric codes, such as verification codes, security PINs, or authentication tokens. It typically separates each digit into individual fields to improve readability and ease of entry. This component is commonly used in two-factor authentication (2FA), password recovery, and secure access flows, ensuring a structured and user-friendly experience.
|
|
483
520
|
*/
|
|
484
|
-
declare type
|
|
521
|
+
declare type __VLS_Props_24 = {
|
|
485
522
|
/**
|
|
486
523
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
487
524
|
*/
|
|
@@ -515,7 +552,7 @@ declare type __VLS_Props_22 = {
|
|
|
515
552
|
/**
|
|
516
553
|
* A linear progress bar (Buffer) visually represents the progress of a task along a horizontal track, often indicating both current progress and a secondary buffered state. This type of progress bar is commonly used for loading processes, file uploads, or streaming indicators, where part of the task is completed while another portion is preloaded or buffered. It provides users with real-time feedback on task advancement.
|
|
517
554
|
*/
|
|
518
|
-
declare type
|
|
555
|
+
declare type __VLS_Props_25 = {
|
|
519
556
|
/**
|
|
520
557
|
* Allows to define the progress bar size
|
|
521
558
|
*/
|
|
@@ -529,7 +566,7 @@ declare type __VLS_Props_23 = {
|
|
|
529
566
|
/**
|
|
530
567
|
* A linear progress bar (Percentage) visually represents the completion of a task along a horizontal track, displaying the exact progress in percentage within the bar. It is commonly used for file uploads, installations, form completion, or any process requiring user awareness of progress. The percentage label provides clear and immediate feedback, helping users track progress with precision.
|
|
531
568
|
*/
|
|
532
|
-
declare type
|
|
569
|
+
declare type __VLS_Props_26 = {
|
|
533
570
|
/**
|
|
534
571
|
* The current value of the progress bar.
|
|
535
572
|
*/
|
|
@@ -539,7 +576,7 @@ declare type __VLS_Props_24 = {
|
|
|
539
576
|
/**
|
|
540
577
|
* The quantity selector is a form element used to enter or select a number. This type of input is best used when the user needs to choose the quantity of a selected item, like a product before adding to cart for example.
|
|
541
578
|
*/
|
|
542
|
-
declare type
|
|
579
|
+
declare type __VLS_Props_27 = {
|
|
543
580
|
/**
|
|
544
581
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
545
582
|
*/
|
|
@@ -593,7 +630,7 @@ declare type __VLS_Props_25 = {
|
|
|
593
630
|
/**
|
|
594
631
|
* A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
|
|
595
632
|
*/
|
|
596
|
-
declare type
|
|
633
|
+
declare type __VLS_Props_28 = {
|
|
597
634
|
/**
|
|
598
635
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
599
636
|
*/
|
|
@@ -623,7 +660,7 @@ declare type __VLS_Props_26 = {
|
|
|
623
660
|
/**
|
|
624
661
|
* A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
|
|
625
662
|
*/
|
|
626
|
-
declare type
|
|
663
|
+
declare type __VLS_Props_29 = {
|
|
627
664
|
/**
|
|
628
665
|
* The name attribute for the radio element, typically used for form submission.
|
|
629
666
|
*/
|
|
@@ -652,10 +689,48 @@ declare type __VLS_Props_27 = {
|
|
|
652
689
|
inline?: boolean;
|
|
653
690
|
};
|
|
654
691
|
|
|
692
|
+
/**
|
|
693
|
+
* Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
694
|
+
*/
|
|
695
|
+
declare type __VLS_Props_3 = {
|
|
696
|
+
/**
|
|
697
|
+
* Defines the visual style of the button.
|
|
698
|
+
*/
|
|
699
|
+
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
700
|
+
/**
|
|
701
|
+
* Determines the size of the button.
|
|
702
|
+
*/
|
|
703
|
+
size?: 's' | 'm' | 'l';
|
|
704
|
+
/**
|
|
705
|
+
* If `true`, disables the button, making it non-interactive.
|
|
706
|
+
*/
|
|
707
|
+
disabled?: boolean;
|
|
708
|
+
/**
|
|
709
|
+
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
710
|
+
*/
|
|
711
|
+
ghost?: boolean;
|
|
712
|
+
/**
|
|
713
|
+
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
714
|
+
*/
|
|
715
|
+
outlined?: boolean;
|
|
716
|
+
/**
|
|
717
|
+
* Controls the positioning of an icon in the button.
|
|
718
|
+
*/
|
|
719
|
+
iconPosition?: 'left' | 'right' | 'only';
|
|
720
|
+
/**
|
|
721
|
+
* Specifies the button's HTML `type` attribute.
|
|
722
|
+
*/
|
|
723
|
+
type?: 'button' | 'reset' | 'submit';
|
|
724
|
+
/**
|
|
725
|
+
* If `true`, a loading state is displayed.
|
|
726
|
+
*/
|
|
727
|
+
isLoading?: boolean;
|
|
728
|
+
};
|
|
729
|
+
|
|
655
730
|
/**
|
|
656
731
|
* A select is a form element for multi-line text input, ideal for longer content like comments or descriptions.
|
|
657
732
|
*/
|
|
658
|
-
declare type
|
|
733
|
+
declare type __VLS_Props_30 = {
|
|
659
734
|
/**
|
|
660
735
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
661
736
|
*/
|
|
@@ -703,7 +778,7 @@ declare type __VLS_Props_28 = {
|
|
|
703
778
|
/**
|
|
704
779
|
* A status badge indicates the status of an entity and can evolve at any time.
|
|
705
780
|
*/
|
|
706
|
-
declare type
|
|
781
|
+
declare type __VLS_Props_31 = {
|
|
707
782
|
/**
|
|
708
783
|
* Content of the Status Badge
|
|
709
784
|
*/
|
|
@@ -714,44 +789,10 @@ declare type __VLS_Props_29 = {
|
|
|
714
789
|
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
|
|
715
790
|
};
|
|
716
791
|
|
|
717
|
-
/**
|
|
718
|
-
* Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
|
|
719
|
-
*/
|
|
720
|
-
declare type __VLS_Props_3 = {
|
|
721
|
-
/**
|
|
722
|
-
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
723
|
-
*/
|
|
724
|
-
id: string;
|
|
725
|
-
/**
|
|
726
|
-
* The name attribute for the checkbox element, typically used for form submission.
|
|
727
|
-
*/
|
|
728
|
-
name?: string;
|
|
729
|
-
/**
|
|
730
|
-
* The text label displayed next to the checkbox.
|
|
731
|
-
*/
|
|
732
|
-
label?: string;
|
|
733
|
-
/**
|
|
734
|
-
* The checkbox's checked state, bound via v-model.
|
|
735
|
-
*/
|
|
736
|
-
modelValue?: boolean;
|
|
737
|
-
/**
|
|
738
|
-
* Sets the checkbox to an indeterminate state (partially selected).
|
|
739
|
-
*/
|
|
740
|
-
indeterminate?: boolean;
|
|
741
|
-
/**
|
|
742
|
-
* If `true`, applies an invalid state to the checkbox.
|
|
743
|
-
*/
|
|
744
|
-
isInvalid?: boolean;
|
|
745
|
-
/**
|
|
746
|
-
* If `true`, disables the checkbox, making it non-interactive.
|
|
747
|
-
*/
|
|
748
|
-
disabled?: boolean;
|
|
749
|
-
};
|
|
750
|
-
|
|
751
792
|
/**
|
|
752
793
|
* A Status Notification is used to draw the user’s attention to important information that needs to be acknowledged. It often provides feedback on a process, highlights a status update, or alerts users about an issue. Notifications are typically triggered by user actions or system events and are designed to be easily noticeable while maintaining a non-intrusive experience.
|
|
753
794
|
*/
|
|
754
|
-
declare type
|
|
795
|
+
declare type __VLS_Props_32 = {
|
|
755
796
|
/**
|
|
756
797
|
* Title of the Status Notification
|
|
757
798
|
*/
|
|
@@ -773,7 +814,7 @@ declare type __VLS_Props_30 = {
|
|
|
773
814
|
/**
|
|
774
815
|
* Tabs are a navigation component that allows users to switch between different sections within the same context. They help organize content efficiently by displaying only one section at a time, reducing clutter and improving accessibility. Tabs can include icons, labels, and notification badges to provide additional context. They are commonly used in dashboards, product management, and settings interfaces.
|
|
775
816
|
*/
|
|
776
|
-
declare type
|
|
817
|
+
declare type __VLS_Props_33 = {
|
|
777
818
|
/**
|
|
778
819
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
779
820
|
*/
|
|
@@ -812,7 +853,7 @@ declare type __VLS_Props_31 = {
|
|
|
812
853
|
/**
|
|
813
854
|
* A Tag is a UI element used to filter data, categorize, select or deselect an option. It can appear standalone, in a group, or embedded within other components. Depending on its use, a tag can be interactive (clickable, removable, selectable) or static (serving as a visual indicator).
|
|
814
855
|
*/
|
|
815
|
-
declare type
|
|
856
|
+
declare type __VLS_Props_34 = {
|
|
816
857
|
/**
|
|
817
858
|
* Defines the behavior and layout of the tag.
|
|
818
859
|
*/
|
|
@@ -854,7 +895,7 @@ declare type __VLS_Props_32 = {
|
|
|
854
895
|
/**
|
|
855
896
|
* A textarea is a form element for multi-line text input, ideal for longer content like comments or descriptions.
|
|
856
897
|
*/
|
|
857
|
-
declare type
|
|
898
|
+
declare type __VLS_Props_35 = {
|
|
858
899
|
/**
|
|
859
900
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
860
901
|
*/
|
|
@@ -900,7 +941,7 @@ declare type __VLS_Props_33 = {
|
|
|
900
941
|
/**
|
|
901
942
|
* Inputs are used to create input fields with text on a single line. Their states depends on the user interaction or the context.
|
|
902
943
|
*/
|
|
903
|
-
declare type
|
|
944
|
+
declare type __VLS_Props_36 = {
|
|
904
945
|
/**
|
|
905
946
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
906
947
|
*/
|
|
@@ -947,10 +988,44 @@ declare type __VLS_Props_34 = {
|
|
|
947
988
|
clearLabel?: string;
|
|
948
989
|
};
|
|
949
990
|
|
|
991
|
+
/**
|
|
992
|
+
* A toaster is a temporary notification that appears briefly on the screen to provide feedback or updates without interrupting the user’s workflow. It is commonly used for success messages, warnings, errors, or informational updates. Toasters can disappear automatically after a few seconds, be dismissed manually via a close button, or be removed when the user performs a relevant action. They typically include an icon, a short message, and an optional close button for better usability.
|
|
993
|
+
*/
|
|
994
|
+
declare type __VLS_Props_37 = {
|
|
995
|
+
/**
|
|
996
|
+
* if `true`, display the Toaster.
|
|
997
|
+
*/
|
|
998
|
+
open?: boolean;
|
|
999
|
+
/**
|
|
1000
|
+
* Position of the toaster
|
|
1001
|
+
*/
|
|
1002
|
+
position?: 'top' | 'bottom' | 'top-center' | 'bottom-center';
|
|
1003
|
+
/**
|
|
1004
|
+
* Description of the toaster.
|
|
1005
|
+
*/
|
|
1006
|
+
description: string;
|
|
1007
|
+
/**
|
|
1008
|
+
* Allows to define the toaster style.
|
|
1009
|
+
*/
|
|
1010
|
+
status?: 'info' | 'success' | 'warning' | 'error';
|
|
1011
|
+
/**
|
|
1012
|
+
* if `true`, display the close button.
|
|
1013
|
+
*/
|
|
1014
|
+
closable?: boolean;
|
|
1015
|
+
/**
|
|
1016
|
+
* if `true`, display the progress bar of the duration.
|
|
1017
|
+
*/
|
|
1018
|
+
progress?: boolean;
|
|
1019
|
+
/**
|
|
1020
|
+
* Duration of the toaster
|
|
1021
|
+
*/
|
|
1022
|
+
timeout?: number;
|
|
1023
|
+
};
|
|
1024
|
+
|
|
950
1025
|
/**
|
|
951
1026
|
* A toggle is used to choose between two possibilities and when the user needs instant feedback. It is common to use toggles when you need to show or hide content and "on/off" switch.
|
|
952
1027
|
*/
|
|
953
|
-
declare type
|
|
1028
|
+
declare type __VLS_Props_38 = {
|
|
954
1029
|
/**
|
|
955
1030
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
956
1031
|
*/
|
|
@@ -980,7 +1055,7 @@ declare type __VLS_Props_35 = {
|
|
|
980
1055
|
/**
|
|
981
1056
|
* A tooltip is a small, contextual message that appears when users hover over, focus on, or tap an element, providing additional information or guidance without cluttering the interface. Tooltips are commonly used to explain icons, abbreviations, or complex actions. They typically disappear automatically when the user moves away from the trigger element.
|
|
982
1057
|
*/
|
|
983
|
-
declare type
|
|
1058
|
+
declare type __VLS_Props_39 = {
|
|
984
1059
|
/**
|
|
985
1060
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
986
1061
|
*/
|
|
@@ -999,10 +1074,48 @@ declare type __VLS_Props_36 = {
|
|
|
999
1074
|
pointer?: boolean;
|
|
1000
1075
|
};
|
|
1001
1076
|
|
|
1077
|
+
/**
|
|
1078
|
+
* Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
|
|
1079
|
+
*/
|
|
1080
|
+
declare type __VLS_Props_4 = {
|
|
1081
|
+
/**
|
|
1082
|
+
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
1083
|
+
*/
|
|
1084
|
+
id: string;
|
|
1085
|
+
/**
|
|
1086
|
+
* The name attribute for the checkbox element, typically used for form submission.
|
|
1087
|
+
*/
|
|
1088
|
+
name?: string;
|
|
1089
|
+
/**
|
|
1090
|
+
* The text label displayed next to the checkbox.
|
|
1091
|
+
*/
|
|
1092
|
+
label?: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* The checkbox's checked state, bound via v-model.
|
|
1095
|
+
*/
|
|
1096
|
+
modelValue?: boolean;
|
|
1097
|
+
/**
|
|
1098
|
+
* Sets the checkbox to an indeterminate state (partially selected).
|
|
1099
|
+
*/
|
|
1100
|
+
indeterminate?: boolean;
|
|
1101
|
+
/**
|
|
1102
|
+
* If `true`, applies an invalid state to the checkbox.
|
|
1103
|
+
*/
|
|
1104
|
+
isInvalid?: boolean;
|
|
1105
|
+
/**
|
|
1106
|
+
* If `true`, disables the checkbox, making it non-interactive.
|
|
1107
|
+
*/
|
|
1108
|
+
disabled?: boolean;
|
|
1109
|
+
/**
|
|
1110
|
+
* If `true`, indent the checkbox.
|
|
1111
|
+
*/
|
|
1112
|
+
indented?: boolean;
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1002
1115
|
/**
|
|
1003
1116
|
* A toggle is used to choose between two possibilities and when the user needs instant feedback. It is common to use toggles when you need to show or hide content and "on/off" switch.
|
|
1004
1117
|
*/
|
|
1005
|
-
declare type
|
|
1118
|
+
declare type __VLS_Props_40 = {
|
|
1006
1119
|
/**
|
|
1007
1120
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1008
1121
|
*/
|
|
@@ -1032,7 +1145,7 @@ declare type __VLS_Props_37 = {
|
|
|
1032
1145
|
/**
|
|
1033
1146
|
* Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
|
|
1034
1147
|
*/
|
|
1035
|
-
declare type
|
|
1148
|
+
declare type __VLS_Props_5 = {
|
|
1036
1149
|
/**
|
|
1037
1150
|
* The name attribute for the checkbox element, typically used for form submission.
|
|
1038
1151
|
*/
|
|
@@ -1051,6 +1164,7 @@ declare type __VLS_Props_4 = {
|
|
|
1051
1164
|
value: string;
|
|
1052
1165
|
disabled?: boolean;
|
|
1053
1166
|
isInvalid?: boolean;
|
|
1167
|
+
indented?: boolean;
|
|
1054
1168
|
}>;
|
|
1055
1169
|
/**
|
|
1056
1170
|
* If `true`, make the form element of the group inline.
|
|
@@ -1061,7 +1175,7 @@ declare type __VLS_Props_4 = {
|
|
|
1061
1175
|
/**
|
|
1062
1176
|
* A circular progress bar visually represents progress toward a goal or completion of a process using a circular shape. It is commonly used to indicate task completion or performance metrics. The progress is displayed as a partially filled ring, often accompanied by a percentage or status indicator. Circular Progress Bars are useful for providing users with real-time feedback on ongoing actions without taking up significant screen space.
|
|
1063
1177
|
*/
|
|
1064
|
-
declare type
|
|
1178
|
+
declare type __VLS_Props_6 = {
|
|
1065
1179
|
/**
|
|
1066
1180
|
* Allows to define the progress bar size
|
|
1067
1181
|
*/
|
|
@@ -1084,10 +1198,28 @@ declare type __VLS_Props_5 = {
|
|
|
1084
1198
|
additionalInfo?: string;
|
|
1085
1199
|
};
|
|
1086
1200
|
|
|
1201
|
+
/**
|
|
1202
|
+
* A callout is used to highlight additional information that can assist users with tips, extra details, or helpful guidance, without signaling a critical status or alert. Unlike notifications, callouts are not triggered by user actions and do not correspond to specific system states. They are designed to enhance the user experience by providing contextually relevant information that supports comprehension and usability.
|
|
1203
|
+
*/
|
|
1204
|
+
declare type __VLS_Props_7 = {
|
|
1205
|
+
/**
|
|
1206
|
+
* Title of the callout
|
|
1207
|
+
*/
|
|
1208
|
+
title: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* Description of the callout
|
|
1211
|
+
*/
|
|
1212
|
+
description: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* Allows to define the callout style
|
|
1215
|
+
*/
|
|
1216
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1087
1219
|
/**
|
|
1088
1220
|
* A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
|
|
1089
1221
|
*/
|
|
1090
|
-
declare type
|
|
1222
|
+
declare type __VLS_Props_8 = {
|
|
1091
1223
|
/**
|
|
1092
1224
|
* Determines the orientation of the divider
|
|
1093
1225
|
*/
|
|
@@ -1097,7 +1229,7 @@ declare type __VLS_Props_6 = {
|
|
|
1097
1229
|
/**
|
|
1098
1230
|
* A date picker is an input component that allows users to select a date from a calendar interface or manually enter a date value. It enhances usability by providing structured date selection, reducing input errors, and ensuring format consistency. Date Pickers are commonly used in forms, booking systems, scheduling tools, and data filtering interfaces to facilitate accurate date entry.
|
|
1099
1231
|
*/
|
|
1100
|
-
declare type
|
|
1232
|
+
declare type __VLS_Props_9 = {
|
|
1101
1233
|
/**
|
|
1102
1234
|
* A unique identifier for the datepicker element, used to associate the label with the form element.
|
|
1103
1235
|
*/
|
|
@@ -1136,80 +1268,90 @@ declare type __VLS_Props_7 = {
|
|
|
1136
1268
|
clearLabel?: string;
|
|
1137
1269
|
};
|
|
1138
1270
|
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
size?: 's' | 'm' | 'l';
|
|
1155
|
-
};
|
|
1156
|
-
|
|
1157
|
-
/**
|
|
1158
|
-
* A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
|
|
1159
|
-
*/
|
|
1160
|
-
declare type __VLS_Props_9 = {
|
|
1161
|
-
/**
|
|
1162
|
-
* If `true`, display the drawer.
|
|
1163
|
-
*/
|
|
1164
|
-
open?: boolean;
|
|
1165
|
-
/**
|
|
1166
|
-
* Position of the drawer
|
|
1167
|
-
*/
|
|
1168
|
-
position?: 'left' | 'right';
|
|
1169
|
-
/**
|
|
1170
|
-
* If `true`, the drawer have a bigger width.
|
|
1171
|
-
*/
|
|
1172
|
-
extended?: boolean;
|
|
1173
|
-
/**
|
|
1174
|
-
* If `true`, display the back button.
|
|
1175
|
-
*/
|
|
1176
|
-
back?: boolean;
|
|
1177
|
-
/**
|
|
1178
|
-
* Title of the drawer
|
|
1179
|
-
*/
|
|
1180
|
-
title: string;
|
|
1181
|
-
/**
|
|
1182
|
-
* Title of the content of the drawer
|
|
1183
|
-
*/
|
|
1184
|
-
contentTitle?: string;
|
|
1271
|
+
declare function __VLS_template(): {
|
|
1272
|
+
attrs: Partial<{}>;
|
|
1273
|
+
slots: Readonly<{
|
|
1274
|
+
/**
|
|
1275
|
+
* Use this slot to insert the image, icon or intials of the avatar
|
|
1276
|
+
*/
|
|
1277
|
+
default: VNode;
|
|
1278
|
+
}> & {
|
|
1279
|
+
/**
|
|
1280
|
+
* Use this slot to insert the image, icon or intials of the avatar
|
|
1281
|
+
*/
|
|
1282
|
+
default: VNode;
|
|
1283
|
+
};
|
|
1284
|
+
refs: {};
|
|
1285
|
+
rootEl: HTMLSpanElement;
|
|
1185
1286
|
};
|
|
1186
1287
|
|
|
1187
|
-
declare function
|
|
1288
|
+
declare function __VLS_template_10(): {
|
|
1188
1289
|
attrs: Partial<{}>;
|
|
1189
1290
|
slots: Readonly<{
|
|
1190
1291
|
/**
|
|
1191
|
-
*
|
|
1292
|
+
* Use this slot to insert the textual content of the Link
|
|
1192
1293
|
*/
|
|
1193
1294
|
default: string;
|
|
1194
1295
|
/**
|
|
1195
|
-
* Use this slot to insert an icon for the
|
|
1296
|
+
* Use this slot to insert an icon for the Link
|
|
1196
1297
|
*/
|
|
1197
1298
|
icon?: VNode;
|
|
1198
1299
|
}> & {
|
|
1199
1300
|
/**
|
|
1200
|
-
*
|
|
1301
|
+
* Use this slot to insert the textual content of the Link
|
|
1201
1302
|
*/
|
|
1202
1303
|
default: string;
|
|
1203
1304
|
/**
|
|
1204
|
-
* Use this slot to insert an icon for the
|
|
1305
|
+
* Use this slot to insert an icon for the Link
|
|
1205
1306
|
*/
|
|
1206
1307
|
icon?: VNode;
|
|
1207
1308
|
};
|
|
1208
1309
|
refs: {};
|
|
1209
|
-
rootEl:
|
|
1310
|
+
rootEl: any;
|
|
1210
1311
|
};
|
|
1211
1312
|
|
|
1212
|
-
declare function
|
|
1313
|
+
declare function __VLS_template_11(): {
|
|
1314
|
+
attrs: Partial<{}>;
|
|
1315
|
+
slots: Readonly<{
|
|
1316
|
+
/**
|
|
1317
|
+
* Use this slot to insert an icon next to the title of the modal
|
|
1318
|
+
*/
|
|
1319
|
+
icon?: VNode;
|
|
1320
|
+
/**
|
|
1321
|
+
* Use this slot to insert the content of the modal
|
|
1322
|
+
*/
|
|
1323
|
+
default?: VNode;
|
|
1324
|
+
/**
|
|
1325
|
+
* Use this slot to insert a link in the footer
|
|
1326
|
+
*/
|
|
1327
|
+
link?: VNode;
|
|
1328
|
+
/**
|
|
1329
|
+
* Use this slot to insert buttons in the footer
|
|
1330
|
+
*/
|
|
1331
|
+
footer?: VNode;
|
|
1332
|
+
}> & {
|
|
1333
|
+
/**
|
|
1334
|
+
* Use this slot to insert an icon next to the title of the modal
|
|
1335
|
+
*/
|
|
1336
|
+
icon?: VNode;
|
|
1337
|
+
/**
|
|
1338
|
+
* Use this slot to insert the content of the modal
|
|
1339
|
+
*/
|
|
1340
|
+
default?: VNode;
|
|
1341
|
+
/**
|
|
1342
|
+
* Use this slot to insert a link in the footer
|
|
1343
|
+
*/
|
|
1344
|
+
link?: VNode;
|
|
1345
|
+
/**
|
|
1346
|
+
* Use this slot to insert buttons in the footer
|
|
1347
|
+
*/
|
|
1348
|
+
footer?: VNode;
|
|
1349
|
+
};
|
|
1350
|
+
refs: {};
|
|
1351
|
+
rootEl: HTMLDivElement;
|
|
1352
|
+
};
|
|
1353
|
+
|
|
1354
|
+
declare function __VLS_template_12(): {
|
|
1213
1355
|
attrs: Partial<{}>;
|
|
1214
1356
|
slots: Readonly<{
|
|
1215
1357
|
/**
|
|
@@ -1226,7 +1368,7 @@ declare function __VLS_template_10(): {
|
|
|
1226
1368
|
rootEl: HTMLDivElement;
|
|
1227
1369
|
};
|
|
1228
1370
|
|
|
1229
|
-
declare function
|
|
1371
|
+
declare function __VLS_template_13(): {
|
|
1230
1372
|
attrs: Partial<{}>;
|
|
1231
1373
|
slots: Readonly<{
|
|
1232
1374
|
/**
|
|
@@ -1243,7 +1385,7 @@ declare function __VLS_template_11(): {
|
|
|
1243
1385
|
rootEl: HTMLElement;
|
|
1244
1386
|
};
|
|
1245
1387
|
|
|
1246
|
-
declare function
|
|
1388
|
+
declare function __VLS_template_14(): {
|
|
1247
1389
|
attrs: Partial<{}>;
|
|
1248
1390
|
slots: Readonly<{
|
|
1249
1391
|
/**
|
|
@@ -1260,7 +1402,24 @@ declare function __VLS_template_12(): {
|
|
|
1260
1402
|
rootEl: HTMLDivElement;
|
|
1261
1403
|
};
|
|
1262
1404
|
|
|
1263
|
-
declare function
|
|
1405
|
+
declare function __VLS_template_15(): {
|
|
1406
|
+
attrs: Partial<{}>;
|
|
1407
|
+
slots: Readonly<{
|
|
1408
|
+
/**
|
|
1409
|
+
* Use this slot to insert a button or a link in the toaster
|
|
1410
|
+
*/
|
|
1411
|
+
action?: VNode;
|
|
1412
|
+
}> & {
|
|
1413
|
+
/**
|
|
1414
|
+
* Use this slot to insert a button or a link in the toaster
|
|
1415
|
+
*/
|
|
1416
|
+
action?: VNode;
|
|
1417
|
+
};
|
|
1418
|
+
refs: {};
|
|
1419
|
+
rootEl: HTMLElement;
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
declare function __VLS_template_16(): {
|
|
1264
1423
|
attrs: Partial<{}>;
|
|
1265
1424
|
slots: Readonly<{
|
|
1266
1425
|
/**
|
|
@@ -1279,42 +1438,66 @@ declare function __VLS_template_13(): {
|
|
|
1279
1438
|
|
|
1280
1439
|
declare function __VLS_template_2(): {
|
|
1281
1440
|
attrs: Partial<{}>;
|
|
1282
|
-
slots: {
|
|
1283
|
-
|
|
1441
|
+
slots: Readonly<{
|
|
1442
|
+
/**
|
|
1443
|
+
* The content displayed in the button.
|
|
1444
|
+
*/
|
|
1445
|
+
default: string;
|
|
1446
|
+
/**
|
|
1447
|
+
* Use this slot to insert an icon for the Button
|
|
1448
|
+
*/
|
|
1449
|
+
icon?: VNode;
|
|
1450
|
+
}> & {
|
|
1451
|
+
/**
|
|
1452
|
+
* The content displayed in the button.
|
|
1453
|
+
*/
|
|
1454
|
+
default: string;
|
|
1455
|
+
/**
|
|
1456
|
+
* Use this slot to insert an icon for the Button
|
|
1457
|
+
*/
|
|
1458
|
+
icon?: VNode;
|
|
1284
1459
|
};
|
|
1285
1460
|
refs: {};
|
|
1286
|
-
rootEl:
|
|
1461
|
+
rootEl: HTMLButtonElement;
|
|
1287
1462
|
};
|
|
1288
1463
|
|
|
1289
1464
|
declare function __VLS_template_3(): {
|
|
1290
1465
|
attrs: Partial<{}>;
|
|
1291
|
-
slots: {
|
|
1292
|
-
|
|
1466
|
+
slots: Readonly<{
|
|
1467
|
+
/**
|
|
1468
|
+
* Use this slot to insert an icon
|
|
1469
|
+
*/
|
|
1470
|
+
icon?: VNode;
|
|
1471
|
+
/**
|
|
1472
|
+
* Use this slot to insert a button or a link in the footer of the callout
|
|
1473
|
+
*/
|
|
1474
|
+
footer?: VNode;
|
|
1475
|
+
}> & {
|
|
1476
|
+
/**
|
|
1477
|
+
* Use this slot to insert an icon
|
|
1478
|
+
*/
|
|
1479
|
+
icon?: VNode;
|
|
1480
|
+
/**
|
|
1481
|
+
* Use this slot to insert a button or a link in the footer of the callout
|
|
1482
|
+
*/
|
|
1483
|
+
footer?: VNode;
|
|
1293
1484
|
};
|
|
1294
1485
|
refs: {};
|
|
1295
|
-
rootEl:
|
|
1486
|
+
rootEl: HTMLElement;
|
|
1296
1487
|
};
|
|
1297
1488
|
|
|
1298
1489
|
declare function __VLS_template_4(): {
|
|
1299
1490
|
attrs: Partial<{}>;
|
|
1300
1491
|
slots: Readonly<{
|
|
1301
1492
|
/**
|
|
1302
|
-
* Use this slot to insert the content of the
|
|
1493
|
+
* Use this slot to insert the content of the container
|
|
1303
1494
|
*/
|
|
1304
1495
|
default?: VNode;
|
|
1305
|
-
/**
|
|
1306
|
-
* Use this slot to insert buttons in the footer
|
|
1307
|
-
*/
|
|
1308
|
-
footer?: VNode;
|
|
1309
1496
|
}> & {
|
|
1310
1497
|
/**
|
|
1311
|
-
* Use this slot to insert the content of the
|
|
1498
|
+
* Use this slot to insert the content of the container
|
|
1312
1499
|
*/
|
|
1313
1500
|
default?: VNode;
|
|
1314
|
-
/**
|
|
1315
|
-
* Use this slot to insert buttons in the footer
|
|
1316
|
-
*/
|
|
1317
|
-
footer?: VNode;
|
|
1318
1501
|
};
|
|
1319
1502
|
refs: {};
|
|
1320
1503
|
rootEl: HTMLDivElement;
|
|
@@ -1324,14 +1507,14 @@ declare function __VLS_template_5(): {
|
|
|
1324
1507
|
attrs: Partial<{}>;
|
|
1325
1508
|
slots: Readonly<{
|
|
1326
1509
|
/**
|
|
1327
|
-
* Use this slot to insert the
|
|
1510
|
+
* Use this slot to insert the content who need a vertical divider
|
|
1328
1511
|
*/
|
|
1329
|
-
default
|
|
1512
|
+
default?: VNode;
|
|
1330
1513
|
}> & {
|
|
1331
1514
|
/**
|
|
1332
|
-
* Use this slot to insert the
|
|
1515
|
+
* Use this slot to insert the content who need a vertical divider
|
|
1333
1516
|
*/
|
|
1334
|
-
default
|
|
1517
|
+
default?: VNode;
|
|
1335
1518
|
};
|
|
1336
1519
|
refs: {};
|
|
1337
1520
|
rootEl: HTMLDivElement;
|
|
@@ -1341,17 +1524,25 @@ declare function __VLS_template_6(): {
|
|
|
1341
1524
|
attrs: Partial<{}>;
|
|
1342
1525
|
slots: Readonly<{
|
|
1343
1526
|
/**
|
|
1344
|
-
* Use this slot to insert the
|
|
1527
|
+
* Use this slot to insert the content of the drawer
|
|
1345
1528
|
*/
|
|
1346
|
-
default
|
|
1529
|
+
default?: VNode;
|
|
1530
|
+
/**
|
|
1531
|
+
* Use this slot to insert buttons in the footer
|
|
1532
|
+
*/
|
|
1533
|
+
footer?: VNode;
|
|
1347
1534
|
}> & {
|
|
1348
1535
|
/**
|
|
1349
|
-
* Use this slot to insert the
|
|
1536
|
+
* Use this slot to insert the content of the drawer
|
|
1350
1537
|
*/
|
|
1351
|
-
default
|
|
1538
|
+
default?: VNode;
|
|
1539
|
+
/**
|
|
1540
|
+
* Use this slot to insert buttons in the footer
|
|
1541
|
+
*/
|
|
1542
|
+
footer?: VNode;
|
|
1352
1543
|
};
|
|
1353
1544
|
refs: {};
|
|
1354
|
-
rootEl:
|
|
1545
|
+
rootEl: HTMLDivElement;
|
|
1355
1546
|
};
|
|
1356
1547
|
|
|
1357
1548
|
declare function __VLS_template_7(): {
|
|
@@ -1360,81 +1551,49 @@ declare function __VLS_template_7(): {
|
|
|
1360
1551
|
/**
|
|
1361
1552
|
* Use this slot to insert the form element of your choice
|
|
1362
1553
|
*/
|
|
1363
|
-
|
|
1554
|
+
default: VNode;
|
|
1364
1555
|
}> & {
|
|
1365
1556
|
/**
|
|
1366
1557
|
* Use this slot to insert the form element of your choice
|
|
1367
1558
|
*/
|
|
1368
|
-
|
|
1559
|
+
default: VNode;
|
|
1369
1560
|
};
|
|
1370
1561
|
refs: {};
|
|
1371
|
-
rootEl:
|
|
1562
|
+
rootEl: HTMLDivElement;
|
|
1372
1563
|
};
|
|
1373
1564
|
|
|
1374
1565
|
declare function __VLS_template_8(): {
|
|
1375
1566
|
attrs: Partial<{}>;
|
|
1376
1567
|
slots: Readonly<{
|
|
1377
1568
|
/**
|
|
1378
|
-
* Use this slot to insert the
|
|
1379
|
-
*/
|
|
1380
|
-
default: string;
|
|
1381
|
-
/**
|
|
1382
|
-
* Use this slot to insert an icon for the Link
|
|
1569
|
+
* Use this slot to insert the form element of your choice
|
|
1383
1570
|
*/
|
|
1384
|
-
|
|
1571
|
+
default: VNode;
|
|
1385
1572
|
}> & {
|
|
1386
1573
|
/**
|
|
1387
|
-
* Use this slot to insert the
|
|
1388
|
-
*/
|
|
1389
|
-
default: string;
|
|
1390
|
-
/**
|
|
1391
|
-
* Use this slot to insert an icon for the Link
|
|
1574
|
+
* Use this slot to insert the form element of your choice
|
|
1392
1575
|
*/
|
|
1393
|
-
|
|
1576
|
+
default: VNode;
|
|
1394
1577
|
};
|
|
1395
1578
|
refs: {};
|
|
1396
|
-
rootEl:
|
|
1579
|
+
rootEl: HTMLFieldSetElement;
|
|
1397
1580
|
};
|
|
1398
1581
|
|
|
1399
1582
|
declare function __VLS_template_9(): {
|
|
1400
1583
|
attrs: Partial<{}>;
|
|
1401
1584
|
slots: Readonly<{
|
|
1402
1585
|
/**
|
|
1403
|
-
* Use this slot to insert
|
|
1404
|
-
*/
|
|
1405
|
-
icon?: VNode;
|
|
1406
|
-
/**
|
|
1407
|
-
* Use this slot to insert the content of the modal
|
|
1408
|
-
*/
|
|
1409
|
-
default?: VNode;
|
|
1410
|
-
/**
|
|
1411
|
-
* Use this slot to insert a link in the footer
|
|
1412
|
-
*/
|
|
1413
|
-
link?: VNode;
|
|
1414
|
-
/**
|
|
1415
|
-
* Use this slot to insert buttons in the footer
|
|
1586
|
+
* Use this slot to insert the form element of your choice
|
|
1416
1587
|
*/
|
|
1417
|
-
|
|
1588
|
+
icon: VNode;
|
|
1418
1589
|
}> & {
|
|
1419
1590
|
/**
|
|
1420
|
-
* Use this slot to insert
|
|
1421
|
-
*/
|
|
1422
|
-
icon?: VNode;
|
|
1423
|
-
/**
|
|
1424
|
-
* Use this slot to insert the content of the modal
|
|
1425
|
-
*/
|
|
1426
|
-
default?: VNode;
|
|
1427
|
-
/**
|
|
1428
|
-
* Use this slot to insert a link in the footer
|
|
1429
|
-
*/
|
|
1430
|
-
link?: VNode;
|
|
1431
|
-
/**
|
|
1432
|
-
* Use this slot to insert buttons in the footer
|
|
1591
|
+
* Use this slot to insert the form element of your choice
|
|
1433
1592
|
*/
|
|
1434
|
-
|
|
1593
|
+
icon: VNode;
|
|
1435
1594
|
};
|
|
1436
1595
|
refs: {};
|
|
1437
|
-
rootEl:
|
|
1596
|
+
rootEl: HTMLButtonElement;
|
|
1438
1597
|
};
|
|
1439
1598
|
|
|
1440
1599
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -1447,6 +1606,12 @@ declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
|
|
|
1447
1606
|
|
|
1448
1607
|
declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
1449
1608
|
|
|
1609
|
+
declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
1610
|
+
|
|
1611
|
+
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
1612
|
+
|
|
1613
|
+
declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
1614
|
+
|
|
1450
1615
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
1451
1616
|
|
|
1452
1617
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -1493,6 +1658,24 @@ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
|
1493
1658
|
};
|
|
1494
1659
|
};
|
|
1495
1660
|
|
|
1661
|
+
declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
1662
|
+
new (): {
|
|
1663
|
+
$slots: S;
|
|
1664
|
+
};
|
|
1665
|
+
};
|
|
1666
|
+
|
|
1667
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
1668
|
+
new (): {
|
|
1669
|
+
$slots: S;
|
|
1670
|
+
};
|
|
1671
|
+
};
|
|
1672
|
+
|
|
1673
|
+
declare type __VLS_WithTemplateSlots_16<T, S> = T & {
|
|
1674
|
+
new (): {
|
|
1675
|
+
$slots: S;
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
|
|
1496
1679
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
1497
1680
|
new (): {
|
|
1498
1681
|
$slots: S;
|
|
@@ -1541,85 +1724,89 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
1541
1724
|
};
|
|
1542
1725
|
};
|
|
1543
1726
|
|
|
1544
|
-
export declare const
|
|
1727
|
+
export declare const MAvatar: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1728
|
+
|
|
1729
|
+
export declare const MBreadcrumb: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1545
1730
|
|
|
1546
|
-
export declare const MButton:
|
|
1731
|
+
export declare const MButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1547
1732
|
|
|
1548
|
-
export declare const
|
|
1733
|
+
export declare const MCallout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1734
|
+
|
|
1735
|
+
export declare const MCheckbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1549
1736
|
"update:modelValue": (value: boolean) => any;
|
|
1550
|
-
}, string, PublicProps, Readonly<
|
|
1737
|
+
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
1551
1738
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1552
1739
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1553
1740
|
|
|
1554
|
-
export declare const MCheckboxGroup: DefineComponent<
|
|
1741
|
+
export declare const MCheckboxGroup: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1555
1742
|
"update:modelValue": (value: string[]) => any;
|
|
1556
|
-
}, string, PublicProps, Readonly<
|
|
1743
|
+
}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
|
|
1557
1744
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
1558
1745
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1559
1746
|
|
|
1560
|
-
export declare const MCircularProgressbar: DefineComponent<
|
|
1747
|
+
export declare const MCircularProgressbar: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
|
|
1561
1748
|
type: "percentage" | "content";
|
|
1562
1749
|
value: number;
|
|
1563
1750
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1564
1751
|
|
|
1565
|
-
export declare const MContainer:
|
|
1752
|
+
export declare const MContainer: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1566
1753
|
|
|
1567
|
-
export declare const MDatepicker: DefineComponent<
|
|
1754
|
+
export declare const MDatepicker: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1568
1755
|
"update:modelValue": (value: string | number) => any;
|
|
1569
|
-
}, string, PublicProps, Readonly<
|
|
1756
|
+
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
1570
1757
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1571
1758
|
}>, {
|
|
1572
1759
|
size: "s" | "m";
|
|
1573
1760
|
clearLabel: string;
|
|
1574
1761
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1575
1762
|
|
|
1576
|
-
export declare const MDivider:
|
|
1763
|
+
export declare const MDivider: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1577
1764
|
|
|
1578
|
-
export declare const MDrawer:
|
|
1765
|
+
export declare const MDrawer: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
1579
1766
|
|
|
1580
|
-
export declare const MField:
|
|
1767
|
+
export declare const MField: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
1581
1768
|
|
|
1582
|
-
export declare const MFieldGroup:
|
|
1769
|
+
export declare const MFieldGroup: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1583
1770
|
|
|
1584
|
-
export declare const MFlag: DefineComponent<
|
|
1771
|
+
export declare const MFlag: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1585
1772
|
|
|
1586
|
-
export declare const MIconButton:
|
|
1773
|
+
export declare const MIconButton: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1587
1774
|
|
|
1588
|
-
export declare const MLinearProgressbarBuffer: DefineComponent<
|
|
1775
|
+
export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
|
|
1589
1776
|
value: number;
|
|
1590
1777
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1591
1778
|
|
|
1592
|
-
export declare const MLinearProgressbarPercentage: DefineComponent<
|
|
1779
|
+
export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
|
|
1593
1780
|
value: number;
|
|
1594
1781
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1595
1782
|
|
|
1596
|
-
export declare const MLink:
|
|
1783
|
+
export declare const MLink: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1597
1784
|
|
|
1598
|
-
export declare const MLoader: DefineComponent<
|
|
1599
|
-
appearance: "standard" | "accent" | "inverse";
|
|
1785
|
+
export declare const MLoader: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
1600
1786
|
size: "s" | "m" | "l";
|
|
1787
|
+
appearance: "standard" | "accent" | "inverse";
|
|
1601
1788
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1602
1789
|
|
|
1603
|
-
export declare const MLoadingOverlay: DefineComponent<
|
|
1790
|
+
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1604
1791
|
|
|
1605
|
-
export declare const MModal:
|
|
1792
|
+
export declare const MModal: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1606
1793
|
|
|
1607
|
-
export declare const MNumberBadge: DefineComponent<
|
|
1608
|
-
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
1794
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
|
|
1609
1795
|
size: "s" | "m";
|
|
1796
|
+
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
1610
1797
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
1611
1798
|
|
|
1612
|
-
export declare const MOverlay:
|
|
1799
|
+
export declare const MOverlay: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1613
1800
|
|
|
1614
|
-
export declare const MPagination: DefineComponent<
|
|
1801
|
+
export declare const MPagination: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1615
1802
|
"update:modelValue": (value: number) => any;
|
|
1616
|
-
}, string, PublicProps, Readonly<
|
|
1803
|
+
}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
|
|
1617
1804
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1618
1805
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1619
1806
|
|
|
1620
|
-
export declare const MPasswordInput: DefineComponent<
|
|
1807
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1621
1808
|
"update:modelValue": (value: string | number) => any;
|
|
1622
|
-
}, string, PublicProps, Readonly<
|
|
1809
|
+
}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{
|
|
1623
1810
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1624
1811
|
}>, {
|
|
1625
1812
|
clearLabel: string;
|
|
@@ -1665,9 +1852,9 @@ iconPosition?: "left" | "right" | "only";
|
|
|
1665
1852
|
type?: "button" | "reset" | "submit";
|
|
1666
1853
|
isLoading?: boolean;
|
|
1667
1854
|
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1668
|
-
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
1669
1855
|
size: "s" | "m" | "l";
|
|
1670
1856
|
type: "button" | "reset" | "submit";
|
|
1857
|
+
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
1671
1858
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1672
1859
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1673
1860
|
created?: (() => void) | (() => void)[];
|
|
@@ -1689,9 +1876,9 @@ $forceUpdate: () => void;
|
|
|
1689
1876
|
$nextTick: nextTick;
|
|
1690
1877
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1691
1878
|
} & Readonly<{
|
|
1692
|
-
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
1693
1879
|
size: "s" | "m" | "l";
|
|
1694
1880
|
type: "button" | "reset" | "submit";
|
|
1881
|
+
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
1695
1882
|
}> & Omit<Readonly<{
|
|
1696
1883
|
appearance?: "standard" | "accent" | "danger" | "inverse";
|
|
1697
1884
|
size?: "s" | "m" | "l";
|
|
@@ -1701,7 +1888,7 @@ outlined?: boolean;
|
|
|
1701
1888
|
iconPosition?: "left" | "right" | "only";
|
|
1702
1889
|
type?: "button" | "reset" | "submit";
|
|
1703
1890
|
isLoading?: boolean;
|
|
1704
|
-
}> & Readonly<{}>, "
|
|
1891
|
+
}> & Readonly<{}>, "size" | "type" | "appearance"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
1705
1892
|
$slots: Readonly<{
|
|
1706
1893
|
default: string;
|
|
1707
1894
|
icon?: VNode;
|
|
@@ -1712,17 +1899,17 @@ icon?: VNode;
|
|
|
1712
1899
|
}) | null;
|
|
1713
1900
|
}, HTMLDivElement>;
|
|
1714
1901
|
|
|
1715
|
-
export declare const MPincode: DefineComponent<
|
|
1902
|
+
export declare const MPincode: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1716
1903
|
"update:modelValue": (value: string) => any;
|
|
1717
|
-
}, string, PublicProps, Readonly<
|
|
1904
|
+
}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
|
|
1718
1905
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1719
1906
|
}>, {
|
|
1720
1907
|
length: 4 | 5 | 6;
|
|
1721
1908
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1722
1909
|
|
|
1723
|
-
export declare const MQuantitySelector: DefineComponent<
|
|
1910
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1724
1911
|
"update:modelValue": (value: number) => any;
|
|
1725
|
-
}, string, PublicProps, Readonly<
|
|
1912
|
+
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
1726
1913
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1727
1914
|
}>, {
|
|
1728
1915
|
size: "s" | "m";
|
|
@@ -1735,35 +1922,35 @@ incrementlabel: string;
|
|
|
1735
1922
|
decrementLabel: string;
|
|
1736
1923
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1737
1924
|
|
|
1738
|
-
export declare const MRadio: DefineComponent<
|
|
1925
|
+
export declare const MRadio: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1739
1926
|
"update:modelValue": (value: boolean) => any;
|
|
1740
|
-
}, string, PublicProps, Readonly<
|
|
1927
|
+
}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
|
|
1741
1928
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1742
1929
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1743
1930
|
|
|
1744
|
-
export declare const MRadioGroup: DefineComponent<
|
|
1931
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1745
1932
|
"update:modelValue": (value: string) => any;
|
|
1746
|
-
}, string, PublicProps, Readonly<
|
|
1933
|
+
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
1747
1934
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1748
1935
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1749
1936
|
|
|
1750
|
-
export declare const MSelect: DefineComponent<
|
|
1937
|
+
export declare const MSelect: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1751
1938
|
"update:modelValue": (value: string | number) => any;
|
|
1752
|
-
}, string, PublicProps, Readonly<
|
|
1939
|
+
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
1753
1940
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1754
1941
|
}>, {
|
|
1755
1942
|
size: "s" | "m";
|
|
1756
1943
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSelectElement>;
|
|
1757
1944
|
|
|
1758
|
-
export declare const MStatusBadge: DefineComponent<
|
|
1945
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
|
|
1759
1946
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
1760
1947
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1761
1948
|
|
|
1762
|
-
export declare const MStatusNotification:
|
|
1949
|
+
export declare const MStatusNotification: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1763
1950
|
|
|
1764
|
-
export declare const MTabs: DefineComponent<
|
|
1951
|
+
export declare const MTabs: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1765
1952
|
"update:modelValue": (value: number) => any;
|
|
1766
|
-
}, string, PublicProps, Readonly<
|
|
1953
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
1767
1954
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1768
1955
|
}>, {
|
|
1769
1956
|
modelValue: number;
|
|
@@ -1772,10 +1959,10 @@ divider: boolean;
|
|
|
1772
1959
|
tab: HTMLButtonElement;
|
|
1773
1960
|
}, HTMLElement>;
|
|
1774
1961
|
|
|
1775
|
-
export declare const MTag: DefineComponent<
|
|
1962
|
+
export declare const MTag: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1776
1963
|
"update:modelValue": (value: boolean) => any;
|
|
1777
1964
|
"remove-tag": (id: string) => any;
|
|
1778
|
-
}, string, PublicProps, Readonly<
|
|
1965
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
1779
1966
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1780
1967
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
1781
1968
|
}>, {
|
|
@@ -1783,30 +1970,32 @@ type: "informative" | "interactive" | "contextualised" | "removable" | "selectab
|
|
|
1783
1970
|
contextualisedNumber: number;
|
|
1784
1971
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1785
1972
|
|
|
1786
|
-
export declare const MTextArea: DefineComponent<
|
|
1973
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1787
1974
|
"update:modelValue": (value: string | number) => any;
|
|
1788
|
-
}, string, PublicProps, Readonly<
|
|
1975
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
1789
1976
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1790
1977
|
}>, {
|
|
1791
1978
|
rows: number;
|
|
1792
1979
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
|
|
1793
1980
|
|
|
1794
|
-
export declare const MTextInput:
|
|
1981
|
+
export declare const MTextInput: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
1795
1982
|
|
|
1796
|
-
export declare const
|
|
1983
|
+
export declare const MToaster: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
1984
|
+
|
|
1985
|
+
export declare const MToggle: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1797
1986
|
"update:modelValue": (value: boolean) => any;
|
|
1798
|
-
}, string, PublicProps, Readonly<
|
|
1987
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
1799
1988
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1800
1989
|
}>, {
|
|
1801
1990
|
size: "s" | "m";
|
|
1802
1991
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1803
1992
|
|
|
1804
|
-
export declare const MToggleGroup: DefineComponent<
|
|
1993
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1805
1994
|
"update:modelValue": (value: string[]) => any;
|
|
1806
|
-
}, string, PublicProps, Readonly<
|
|
1995
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
1807
1996
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
1808
1997
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1809
1998
|
|
|
1810
|
-
export declare const MTooltip:
|
|
1999
|
+
export declare const MTooltip: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
1811
2000
|
|
|
1812
2001
|
export { }
|