@mozaic-ds/vue 1.0.0-beta.8 → 1.0.0-beta.9
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/README.md +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +410 -198
- package/dist/mozaic-vue.js +1100 -777
- 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 +8 -11
- package/src/components/Contributing.mdx +1 -1
- package/src/components/GettingStarted.mdx +2 -7
- package/src/components/Introduction.mdx +41 -21
- package/src/components/Support.mdx +1 -1
- package/src/components/breadcrumb/MBreadcrumb.stories.ts +11 -13
- package/src/components/breadcrumb/MBreadcrumb.vue +1 -1
- package/src/components/button/MButton.stories.ts +1 -8
- package/src/components/checkbox/MCheckbox.stories.ts +2 -2
- package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +2 -2
- package/src/components/divider/MDivider.stories.ts +2 -2
- package/src/components/divider/MDivider.vue +2 -2
- package/src/components/drawer/MDrawer.spec.ts +100 -0
- package/src/components/drawer/MDrawer.stories.ts +128 -0
- package/src/components/drawer/MDrawer.vue +140 -0
- package/src/components/field/MField.stories.ts +2 -9
- package/src/components/fieldgroup/MFieldGroup.stories.ts +2 -9
- package/src/components/iconbutton/MIconButton.stories.ts +12 -4
- package/src/components/link/MLink.stories.ts +3 -12
- package/src/components/loader/MLoader.stories.ts +3 -5
- package/src/components/loader/MLoader.vue +1 -0
- package/src/components/loadingoverlay/MLoadingOverlay.spec.ts +37 -0
- package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +40 -0
- package/src/components/loadingoverlay/MLoadingOverlay.vue +28 -0
- package/src/components/modal/MModal.spec.ts +103 -0
- package/src/components/modal/MModal.stories.ts +127 -0
- package/src/components/modal/MModal.vue +131 -0
- package/src/components/numberbadge/MNumberBadge.stories.ts +3 -5
- package/src/components/overlay/MOverlay.stories.ts +3 -8
- package/src/components/pagination/MPagination.stories.ts +3 -3
- package/src/components/pagination/MPagination.vue +5 -3
- package/src/components/passwordinput/MPasswordInput.stories.ts +2 -2
- package/src/components/passwordinput/MPasswordInput.vue +2 -5
- package/src/components/pincode/MPincode.spec.ts +126 -0
- package/src/components/pincode/MPincode.stories.ts +68 -0
- package/src/components/pincode/MPincode.vue +139 -0
- package/src/components/quantityselector/MQuantitySelector.stories.ts +2 -2
- package/src/components/radio/MRadio.stories.ts +2 -2
- package/src/components/radiogroup/MRadioGroup.stories.ts +2 -2
- package/src/components/select/MSelect.stories.ts +2 -2
- package/src/components/statusbadge/MStatusBadge.stories.ts +1 -1
- package/src/components/statusdot/MStatusDot.stories.ts +1 -1
- package/src/components/statusnotification/MStatusNotification.spec.ts +12 -8
- package/src/components/statusnotification/MStatusNotification.stories.ts +2 -9
- package/src/components/statusnotification/MStatusNotification.vue +8 -8
- package/src/components/tabs/MTabs.stories.ts +4 -4
- package/src/components/tabs/MTabs.vue +2 -2
- package/src/components/tabs/Mtabs.spec.ts +56 -61
- package/src/components/tag/MTag.stories.ts +2 -2
- package/src/components/tag/MTag.vue +1 -4
- package/src/components/textarea/MTextArea.stories.ts +2 -2
- package/src/components/textinput/MTextInput.stories.ts +2 -9
- package/src/components/toggle/MToggle.stories.ts +2 -2
- package/src/components/togglegroup/MToggleGroup.stories.ts +2 -2
- package/src/components/usingIcons.mdx +5 -13
- package/src/components/usingPresets.mdx +12 -9
- package/src/main.ts +4 -0
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -27,23 +27,49 @@ size: "s" | "m" | "l";
|
|
|
27
27
|
type: "button" | "reset" | "submit";
|
|
28
28
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
29
29
|
|
|
30
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
31
|
+
close: () => any;
|
|
32
|
+
}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
|
|
33
|
+
onClose?: (() => any) | undefined;
|
|
34
|
+
}>, {
|
|
35
|
+
status: "info" | "success" | "warning" | "error";
|
|
36
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
37
|
+
|
|
38
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
39
|
+
"update:modelValue": (value: string | number) => any;
|
|
40
|
+
}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
|
|
41
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
42
|
+
}>, {
|
|
43
|
+
size: "s" | "m";
|
|
44
|
+
clearLabel: string;
|
|
45
|
+
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
46
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
47
|
+
|
|
30
48
|
declare const __VLS_component_2: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
|
|
31
49
|
size: "s" | "m" | "l";
|
|
32
50
|
style: "primary" | "secondary" | "tertiary" | "inverse";
|
|
33
51
|
orientation: "vertical" | "horizontal";
|
|
34
52
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
53
|
|
|
36
|
-
declare const __VLS_component_3: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}
|
|
54
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
55
|
+
back: () => any;
|
|
56
|
+
"update:open": (value: boolean) => any;
|
|
57
|
+
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
58
|
+
onBack?: (() => any) | undefined;
|
|
59
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
60
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
61
|
+
|
|
62
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
37
63
|
|
|
38
|
-
declare const
|
|
64
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
|
|
39
65
|
|
|
40
|
-
declare const
|
|
66
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
41
67
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
42
68
|
size: "s" | "m" | "l";
|
|
43
69
|
type: "button" | "reset" | "submit";
|
|
44
70
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
45
71
|
|
|
46
|
-
declare const
|
|
72
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
47
73
|
iconPosition: "left" | "right";
|
|
48
74
|
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
49
75
|
size: "s" | "m";
|
|
@@ -51,26 +77,16 @@ href: string;
|
|
|
51
77
|
target: "_self" | "_blank" | "_parent" | "_top";
|
|
52
78
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
53
79
|
|
|
54
|
-
declare const
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
|
|
59
|
-
onClose?: (() => any) | undefined;
|
|
60
|
-
}>, {
|
|
61
|
-
status: "info" | "success" | "warning" | "error";
|
|
62
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
63
|
-
|
|
64
|
-
declare const __VLS_component_9: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
65
|
-
"update:modelValue": (value: string | number) => any;
|
|
66
|
-
}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
|
|
67
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
80
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
81
|
+
"update:open": (value: boolean) => any;
|
|
82
|
+
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
83
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
68
84
|
}>, {
|
|
69
|
-
|
|
70
|
-
clearLabel: string;
|
|
71
|
-
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
85
|
+
closable: boolean;
|
|
72
86
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
73
87
|
|
|
88
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
89
|
+
|
|
74
90
|
/**
|
|
75
91
|
* 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.
|
|
76
92
|
*/
|
|
@@ -82,7 +98,7 @@ declare type __VLS_Props = {
|
|
|
82
98
|
/**
|
|
83
99
|
* Links of the breadcrumb
|
|
84
100
|
*/
|
|
85
|
-
links
|
|
101
|
+
links: Array<{
|
|
86
102
|
/**
|
|
87
103
|
* The label displayed for the link.
|
|
88
104
|
*/
|
|
@@ -99,9 +115,43 @@ declare type __VLS_Props = {
|
|
|
99
115
|
};
|
|
100
116
|
|
|
101
117
|
/**
|
|
102
|
-
* A
|
|
118
|
+
* A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
|
|
103
119
|
*/
|
|
104
120
|
declare type __VLS_Props_10 = {
|
|
121
|
+
/**
|
|
122
|
+
* Position of the icon relative to the text.
|
|
123
|
+
*/
|
|
124
|
+
iconPosition?: 'left' | 'right';
|
|
125
|
+
/**
|
|
126
|
+
* Allows to define the link style
|
|
127
|
+
*/
|
|
128
|
+
appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
|
|
129
|
+
/**
|
|
130
|
+
* Allows to define the link size
|
|
131
|
+
*/
|
|
132
|
+
size?: 's' | 'm';
|
|
133
|
+
/**
|
|
134
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
135
|
+
*/
|
|
136
|
+
href?: string;
|
|
137
|
+
/**
|
|
138
|
+
* Where to open the link
|
|
139
|
+
*/
|
|
140
|
+
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
141
|
+
/**
|
|
142
|
+
* Specify wether the link is inline
|
|
143
|
+
*/
|
|
144
|
+
inline?: boolean;
|
|
145
|
+
/**
|
|
146
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
147
|
+
*/
|
|
148
|
+
router?: boolean;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* A loader indicates that content or data is being loaded or processed, providing visual feedback to users during wait times.
|
|
153
|
+
*/
|
|
154
|
+
declare type __VLS_Props_11 = {
|
|
105
155
|
/**
|
|
106
156
|
* Specifies the visual appearance of the loader.
|
|
107
157
|
*/
|
|
@@ -116,10 +166,46 @@ declare type __VLS_Props_10 = {
|
|
|
116
166
|
text?: string;
|
|
117
167
|
};
|
|
118
168
|
|
|
169
|
+
/**
|
|
170
|
+
* 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.
|
|
171
|
+
*/
|
|
172
|
+
declare type __VLS_Props_12 = {
|
|
173
|
+
/**
|
|
174
|
+
* Controls the visibility of the loading overlay.
|
|
175
|
+
*/
|
|
176
|
+
isVisible?: boolean;
|
|
177
|
+
/**
|
|
178
|
+
* Text of the loading overlay.
|
|
179
|
+
*/
|
|
180
|
+
text?: string;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* 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.
|
|
185
|
+
*/
|
|
186
|
+
declare type __VLS_Props_13 = {
|
|
187
|
+
/**
|
|
188
|
+
* if `true`, display the modal.
|
|
189
|
+
*/
|
|
190
|
+
open?: boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Title of the modal
|
|
193
|
+
*/
|
|
194
|
+
title: string;
|
|
195
|
+
/**
|
|
196
|
+
* Description of the modal
|
|
197
|
+
*/
|
|
198
|
+
description?: string;
|
|
199
|
+
/**
|
|
200
|
+
* if `true`, display the close button.
|
|
201
|
+
*/
|
|
202
|
+
closable?: boolean;
|
|
203
|
+
};
|
|
204
|
+
|
|
119
205
|
/**
|
|
120
206
|
* A badge indicates the status of an entity and can evolve at any time.
|
|
121
207
|
*/
|
|
122
|
-
declare type
|
|
208
|
+
declare type __VLS_Props_14 = {
|
|
123
209
|
/**
|
|
124
210
|
* Content of the badge
|
|
125
211
|
*/
|
|
@@ -137,7 +223,7 @@ declare type __VLS_Props_11 = {
|
|
|
137
223
|
/**
|
|
138
224
|
* 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.
|
|
139
225
|
*/
|
|
140
|
-
declare type
|
|
226
|
+
declare type __VLS_Props_15 = {
|
|
141
227
|
/**
|
|
142
228
|
* Controls the visibility of the overlay.
|
|
143
229
|
*/
|
|
@@ -151,7 +237,7 @@ declare type __VLS_Props_12 = {
|
|
|
151
237
|
/**
|
|
152
238
|
* 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.
|
|
153
239
|
*/
|
|
154
|
-
declare type
|
|
240
|
+
declare type __VLS_Props_16 = {
|
|
155
241
|
/**
|
|
156
242
|
* A unique identifier for the pagination.
|
|
157
243
|
*/
|
|
@@ -181,7 +267,7 @@ declare type __VLS_Props_13 = {
|
|
|
181
267
|
/**
|
|
182
268
|
* 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.
|
|
183
269
|
*/
|
|
184
|
-
declare type
|
|
270
|
+
declare type __VLS_Props_17 = {
|
|
185
271
|
/**
|
|
186
272
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
187
273
|
*/
|
|
@@ -227,10 +313,44 @@ declare type __VLS_Props_14 = {
|
|
|
227
313
|
};
|
|
228
314
|
};
|
|
229
315
|
|
|
316
|
+
/**
|
|
317
|
+
* 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.
|
|
318
|
+
*/
|
|
319
|
+
declare type __VLS_Props_18 = {
|
|
320
|
+
/**
|
|
321
|
+
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
322
|
+
*/
|
|
323
|
+
id: string;
|
|
324
|
+
/**
|
|
325
|
+
* The number of input displayed in the pincode element.
|
|
326
|
+
*/
|
|
327
|
+
length?: 4 | 5 | 6;
|
|
328
|
+
/**
|
|
329
|
+
* The name attribute for the pincode element, typically used for form submission.
|
|
330
|
+
*/
|
|
331
|
+
name?: string;
|
|
332
|
+
/**
|
|
333
|
+
* The current value of the pincode field.
|
|
334
|
+
*/
|
|
335
|
+
modelValue?: string | number;
|
|
336
|
+
/**
|
|
337
|
+
* If `true`, applies an invalid state to the pincode.
|
|
338
|
+
*/
|
|
339
|
+
isInvalid?: boolean;
|
|
340
|
+
/**
|
|
341
|
+
* If `true`, disables the pincode, making it non-interactive.
|
|
342
|
+
*/
|
|
343
|
+
disabled?: boolean;
|
|
344
|
+
/**
|
|
345
|
+
* If `true`, the pincode is read-only (cannot be edited).
|
|
346
|
+
*/
|
|
347
|
+
readonly?: boolean;
|
|
348
|
+
};
|
|
349
|
+
|
|
230
350
|
/**
|
|
231
351
|
* 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.
|
|
232
352
|
*/
|
|
233
|
-
declare type
|
|
353
|
+
declare type __VLS_Props_19 = {
|
|
234
354
|
/**
|
|
235
355
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
236
356
|
*/
|
|
@@ -281,10 +401,48 @@ declare type __VLS_Props_15 = {
|
|
|
281
401
|
decrementLabel?: string;
|
|
282
402
|
};
|
|
283
403
|
|
|
404
|
+
/**
|
|
405
|
+
* Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
406
|
+
*/
|
|
407
|
+
declare type __VLS_Props_2 = {
|
|
408
|
+
/**
|
|
409
|
+
* Defines the visual style of the button.
|
|
410
|
+
*/
|
|
411
|
+
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
412
|
+
/**
|
|
413
|
+
* Determines the size of the button.
|
|
414
|
+
*/
|
|
415
|
+
size?: 's' | 'm' | 'l';
|
|
416
|
+
/**
|
|
417
|
+
* If `true`, disables the button, making it non-interactive.
|
|
418
|
+
*/
|
|
419
|
+
disabled?: boolean;
|
|
420
|
+
/**
|
|
421
|
+
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
422
|
+
*/
|
|
423
|
+
ghost?: boolean;
|
|
424
|
+
/**
|
|
425
|
+
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
426
|
+
*/
|
|
427
|
+
outlined?: boolean;
|
|
428
|
+
/**
|
|
429
|
+
* Controls the positioning of an icon in the button.
|
|
430
|
+
*/
|
|
431
|
+
iconPosition?: 'left' | 'right' | 'only';
|
|
432
|
+
/**
|
|
433
|
+
* Specifies the button's HTML `type` attribute.
|
|
434
|
+
*/
|
|
435
|
+
type?: 'button' | 'reset' | 'submit';
|
|
436
|
+
/**
|
|
437
|
+
* If `true`, a loading state is displayed.
|
|
438
|
+
*/
|
|
439
|
+
isLoading?: boolean;
|
|
440
|
+
};
|
|
441
|
+
|
|
284
442
|
/**
|
|
285
443
|
* A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
|
|
286
444
|
*/
|
|
287
|
-
declare type
|
|
445
|
+
declare type __VLS_Props_20 = {
|
|
288
446
|
/**
|
|
289
447
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
290
448
|
*/
|
|
@@ -314,7 +472,7 @@ declare type __VLS_Props_16 = {
|
|
|
314
472
|
/**
|
|
315
473
|
* A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
|
|
316
474
|
*/
|
|
317
|
-
declare type
|
|
475
|
+
declare type __VLS_Props_21 = {
|
|
318
476
|
/**
|
|
319
477
|
* The name attribute for the radio element, typically used for form submission.
|
|
320
478
|
*/
|
|
@@ -346,7 +504,7 @@ declare type __VLS_Props_17 = {
|
|
|
346
504
|
/**
|
|
347
505
|
* A select is a form element for multi-line text input, ideal for longer content like comments or descriptions.
|
|
348
506
|
*/
|
|
349
|
-
declare type
|
|
507
|
+
declare type __VLS_Props_22 = {
|
|
350
508
|
/**
|
|
351
509
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
352
510
|
*/
|
|
@@ -394,7 +552,7 @@ declare type __VLS_Props_18 = {
|
|
|
394
552
|
/**
|
|
395
553
|
* A status badge indicates the status of an entity and can evolve at any time.
|
|
396
554
|
*/
|
|
397
|
-
declare type
|
|
555
|
+
declare type __VLS_Props_23 = {
|
|
398
556
|
/**
|
|
399
557
|
* Content of the Status Badge
|
|
400
558
|
*/
|
|
@@ -405,48 +563,10 @@ declare type __VLS_Props_19 = {
|
|
|
405
563
|
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
|
|
406
564
|
};
|
|
407
565
|
|
|
408
|
-
/**
|
|
409
|
-
* Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
410
|
-
*/
|
|
411
|
-
declare type __VLS_Props_2 = {
|
|
412
|
-
/**
|
|
413
|
-
* Defines the visual style of the button.
|
|
414
|
-
*/
|
|
415
|
-
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
416
|
-
/**
|
|
417
|
-
* Determines the size of the button.
|
|
418
|
-
*/
|
|
419
|
-
size?: 's' | 'm' | 'l';
|
|
420
|
-
/**
|
|
421
|
-
* If `true`, disables the button, making it non-interactive.
|
|
422
|
-
*/
|
|
423
|
-
disabled?: boolean;
|
|
424
|
-
/**
|
|
425
|
-
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
426
|
-
*/
|
|
427
|
-
ghost?: boolean;
|
|
428
|
-
/**
|
|
429
|
-
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
430
|
-
*/
|
|
431
|
-
outlined?: boolean;
|
|
432
|
-
/**
|
|
433
|
-
* Controls the positioning of an icon in the button.
|
|
434
|
-
*/
|
|
435
|
-
iconPosition?: 'left' | 'right' | 'only';
|
|
436
|
-
/**
|
|
437
|
-
* Specifies the button's HTML `type` attribute.
|
|
438
|
-
*/
|
|
439
|
-
type?: 'button' | 'reset' | 'submit';
|
|
440
|
-
/**
|
|
441
|
-
* If `true`, a loading state is displayed.
|
|
442
|
-
*/
|
|
443
|
-
isLoading?: boolean;
|
|
444
|
-
};
|
|
445
|
-
|
|
446
566
|
/**
|
|
447
567
|
* 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.
|
|
448
568
|
*/
|
|
449
|
-
declare type
|
|
569
|
+
declare type __VLS_Props_24 = {
|
|
450
570
|
/**
|
|
451
571
|
* Title of the Status Notification
|
|
452
572
|
*/
|
|
@@ -468,7 +588,7 @@ declare type __VLS_Props_20 = {
|
|
|
468
588
|
/**
|
|
469
589
|
* 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.
|
|
470
590
|
*/
|
|
471
|
-
declare type
|
|
591
|
+
declare type __VLS_Props_25 = {
|
|
472
592
|
/**
|
|
473
593
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
474
594
|
*/
|
|
@@ -507,7 +627,7 @@ declare type __VLS_Props_21 = {
|
|
|
507
627
|
/**
|
|
508
628
|
* 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).
|
|
509
629
|
*/
|
|
510
|
-
declare type
|
|
630
|
+
declare type __VLS_Props_26 = {
|
|
511
631
|
/**
|
|
512
632
|
* Defines the behavior and layout of the tag.
|
|
513
633
|
*/
|
|
@@ -549,7 +669,7 @@ declare type __VLS_Props_22 = {
|
|
|
549
669
|
/**
|
|
550
670
|
* A textarea is a form element for multi-line text input, ideal for longer content like comments or descriptions.
|
|
551
671
|
*/
|
|
552
|
-
declare type
|
|
672
|
+
declare type __VLS_Props_27 = {
|
|
553
673
|
/**
|
|
554
674
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
555
675
|
*/
|
|
@@ -595,7 +715,7 @@ declare type __VLS_Props_23 = {
|
|
|
595
715
|
/**
|
|
596
716
|
* Inputs are used to create input fields with text on a single line. Their states depends on the user interaction or the context.
|
|
597
717
|
*/
|
|
598
|
-
declare type
|
|
718
|
+
declare type __VLS_Props_28 = {
|
|
599
719
|
/**
|
|
600
720
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
601
721
|
*/
|
|
@@ -645,7 +765,7 @@ declare type __VLS_Props_24 = {
|
|
|
645
765
|
/**
|
|
646
766
|
* 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.
|
|
647
767
|
*/
|
|
648
|
-
declare type
|
|
768
|
+
declare type __VLS_Props_29 = {
|
|
649
769
|
/**
|
|
650
770
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
651
771
|
*/
|
|
@@ -672,36 +792,6 @@ declare type __VLS_Props_25 = {
|
|
|
672
792
|
disabled?: boolean;
|
|
673
793
|
};
|
|
674
794
|
|
|
675
|
-
/**
|
|
676
|
-
* 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.
|
|
677
|
-
*/
|
|
678
|
-
declare type __VLS_Props_26 = {
|
|
679
|
-
/**
|
|
680
|
-
* The name attribute for the toggle element, typically used for form submission.
|
|
681
|
-
*/
|
|
682
|
-
name: string;
|
|
683
|
-
/**
|
|
684
|
-
* Property used to manage the values checked by v-model
|
|
685
|
-
* (Do not use directly)
|
|
686
|
-
*/
|
|
687
|
-
modelValue?: Array<string>;
|
|
688
|
-
/**
|
|
689
|
-
* list of properties of each toggle of the toggle group
|
|
690
|
-
*/
|
|
691
|
-
options: Array<{
|
|
692
|
-
id: string;
|
|
693
|
-
label: string;
|
|
694
|
-
value: string;
|
|
695
|
-
disabled?: boolean;
|
|
696
|
-
isInvalid?: boolean;
|
|
697
|
-
size?: 's' | 'm';
|
|
698
|
-
}>;
|
|
699
|
-
/**
|
|
700
|
-
* If `true`, make the form element of the group inline.
|
|
701
|
-
*/
|
|
702
|
-
inline?: boolean;
|
|
703
|
-
};
|
|
704
|
-
|
|
705
795
|
/**
|
|
706
796
|
* 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.
|
|
707
797
|
*/
|
|
@@ -736,6 +826,36 @@ declare type __VLS_Props_3 = {
|
|
|
736
826
|
disabled?: boolean;
|
|
737
827
|
};
|
|
738
828
|
|
|
829
|
+
/**
|
|
830
|
+
* 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.
|
|
831
|
+
*/
|
|
832
|
+
declare type __VLS_Props_30 = {
|
|
833
|
+
/**
|
|
834
|
+
* The name attribute for the toggle element, typically used for form submission.
|
|
835
|
+
*/
|
|
836
|
+
name: string;
|
|
837
|
+
/**
|
|
838
|
+
* Property used to manage the values checked by v-model
|
|
839
|
+
* (Do not use directly)
|
|
840
|
+
*/
|
|
841
|
+
modelValue?: Array<string>;
|
|
842
|
+
/**
|
|
843
|
+
* list of properties of each toggle of the toggle group
|
|
844
|
+
*/
|
|
845
|
+
options: Array<{
|
|
846
|
+
id: string;
|
|
847
|
+
label: string;
|
|
848
|
+
value: string;
|
|
849
|
+
disabled?: boolean;
|
|
850
|
+
isInvalid?: boolean;
|
|
851
|
+
size?: 's' | 'm';
|
|
852
|
+
}>;
|
|
853
|
+
/**
|
|
854
|
+
* If `true`, make the form element of the group inline.
|
|
855
|
+
*/
|
|
856
|
+
inline?: boolean;
|
|
857
|
+
};
|
|
858
|
+
|
|
739
859
|
/**
|
|
740
860
|
* 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.
|
|
741
861
|
*/
|
|
@@ -784,9 +904,39 @@ declare type __VLS_Props_5 = {
|
|
|
784
904
|
};
|
|
785
905
|
|
|
786
906
|
/**
|
|
787
|
-
*
|
|
907
|
+
* 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.
|
|
788
908
|
*/
|
|
789
909
|
declare type __VLS_Props_6 = {
|
|
910
|
+
/**
|
|
911
|
+
* If `true`, display the drawer.
|
|
912
|
+
*/
|
|
913
|
+
open?: boolean;
|
|
914
|
+
/**
|
|
915
|
+
* Position of the drawer
|
|
916
|
+
*/
|
|
917
|
+
position?: 'left' | 'right';
|
|
918
|
+
/**
|
|
919
|
+
* If `true`, the drawer have a bigger width.
|
|
920
|
+
*/
|
|
921
|
+
extended?: boolean;
|
|
922
|
+
/**
|
|
923
|
+
* If `true`, display the back button.
|
|
924
|
+
*/
|
|
925
|
+
back?: boolean;
|
|
926
|
+
/**
|
|
927
|
+
* Title of the drawer
|
|
928
|
+
*/
|
|
929
|
+
title: string;
|
|
930
|
+
/**
|
|
931
|
+
* Title of the content of the drawer
|
|
932
|
+
*/
|
|
933
|
+
contentTitle?: string;
|
|
934
|
+
};
|
|
935
|
+
|
|
936
|
+
/**
|
|
937
|
+
* This component creates a structured form field with a label, optional help text, error and validation message handling.
|
|
938
|
+
*/
|
|
939
|
+
declare type __VLS_Props_7 = {
|
|
790
940
|
/**
|
|
791
941
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
792
942
|
*/
|
|
@@ -828,7 +978,7 @@ declare type __VLS_Props_6 = {
|
|
|
828
978
|
/**
|
|
829
979
|
* 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.
|
|
830
980
|
*/
|
|
831
|
-
declare type
|
|
981
|
+
declare type __VLS_Props_8 = {
|
|
832
982
|
/**
|
|
833
983
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
834
984
|
*/
|
|
@@ -862,7 +1012,7 @@ declare type __VLS_Props_7 = {
|
|
|
862
1012
|
/**
|
|
863
1013
|
* Icon Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
|
|
864
1014
|
*/
|
|
865
|
-
declare type
|
|
1015
|
+
declare type __VLS_Props_9 = {
|
|
866
1016
|
/**
|
|
867
1017
|
* Defines the visual style of the icon button.
|
|
868
1018
|
*/
|
|
@@ -889,40 +1039,6 @@ declare type __VLS_Props_8 = {
|
|
|
889
1039
|
type?: 'button' | 'reset' | 'submit';
|
|
890
1040
|
};
|
|
891
1041
|
|
|
892
|
-
/**
|
|
893
|
-
* A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
|
|
894
|
-
*/
|
|
895
|
-
declare type __VLS_Props_9 = {
|
|
896
|
-
/**
|
|
897
|
-
* Position of the icon relative to the text.
|
|
898
|
-
*/
|
|
899
|
-
iconPosition?: 'left' | 'right';
|
|
900
|
-
/**
|
|
901
|
-
* Allows to define the link style
|
|
902
|
-
*/
|
|
903
|
-
appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
|
|
904
|
-
/**
|
|
905
|
-
* Allows to define the link size
|
|
906
|
-
*/
|
|
907
|
-
size?: 's' | 'm';
|
|
908
|
-
/**
|
|
909
|
-
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
910
|
-
*/
|
|
911
|
-
href?: string;
|
|
912
|
-
/**
|
|
913
|
-
* Where to open the link
|
|
914
|
-
*/
|
|
915
|
-
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
916
|
-
/**
|
|
917
|
-
* Specify wether the link is inline
|
|
918
|
-
*/
|
|
919
|
-
inline?: boolean;
|
|
920
|
-
/**
|
|
921
|
-
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
922
|
-
*/
|
|
923
|
-
router?: boolean;
|
|
924
|
-
};
|
|
925
|
-
|
|
926
1042
|
declare function __VLS_template(): {
|
|
927
1043
|
attrs: Partial<{}>;
|
|
928
1044
|
slots: Readonly<{
|
|
@@ -948,6 +1064,40 @@ declare function __VLS_template(): {
|
|
|
948
1064
|
rootEl: HTMLButtonElement;
|
|
949
1065
|
};
|
|
950
1066
|
|
|
1067
|
+
declare function __VLS_template_10(): {
|
|
1068
|
+
attrs: Partial<{}>;
|
|
1069
|
+
slots: Readonly<{
|
|
1070
|
+
/**
|
|
1071
|
+
* Use this slot to insert a button or a link in the footer
|
|
1072
|
+
*/
|
|
1073
|
+
footer?: VNode;
|
|
1074
|
+
}> & {
|
|
1075
|
+
/**
|
|
1076
|
+
* Use this slot to insert a button or a link in the footer
|
|
1077
|
+
*/
|
|
1078
|
+
footer?: VNode;
|
|
1079
|
+
};
|
|
1080
|
+
refs: {};
|
|
1081
|
+
rootEl: HTMLElement;
|
|
1082
|
+
};
|
|
1083
|
+
|
|
1084
|
+
declare function __VLS_template_11(): {
|
|
1085
|
+
attrs: Partial<{}>;
|
|
1086
|
+
slots: Readonly<{
|
|
1087
|
+
/**
|
|
1088
|
+
* Use this slot to insert an icon in the input
|
|
1089
|
+
*/
|
|
1090
|
+
icon?: VNode;
|
|
1091
|
+
}> & {
|
|
1092
|
+
/**
|
|
1093
|
+
* Use this slot to insert an icon in the input
|
|
1094
|
+
*/
|
|
1095
|
+
icon?: VNode;
|
|
1096
|
+
};
|
|
1097
|
+
refs: {};
|
|
1098
|
+
rootEl: HTMLDivElement;
|
|
1099
|
+
};
|
|
1100
|
+
|
|
951
1101
|
declare function __VLS_template_2(): {
|
|
952
1102
|
attrs: Partial<{}>;
|
|
953
1103
|
slots: {
|
|
@@ -958,6 +1108,31 @@ declare function __VLS_template_2(): {
|
|
|
958
1108
|
};
|
|
959
1109
|
|
|
960
1110
|
declare function __VLS_template_3(): {
|
|
1111
|
+
attrs: Partial<{}>;
|
|
1112
|
+
slots: Readonly<{
|
|
1113
|
+
/**
|
|
1114
|
+
* Use this slot to insert the content of the drawer
|
|
1115
|
+
*/
|
|
1116
|
+
default?: VNode;
|
|
1117
|
+
/**
|
|
1118
|
+
* Use this slot to insert buttons in the footer
|
|
1119
|
+
*/
|
|
1120
|
+
footer?: VNode;
|
|
1121
|
+
}> & {
|
|
1122
|
+
/**
|
|
1123
|
+
* Use this slot to insert the content of the drawer
|
|
1124
|
+
*/
|
|
1125
|
+
default?: VNode;
|
|
1126
|
+
/**
|
|
1127
|
+
* Use this slot to insert buttons in the footer
|
|
1128
|
+
*/
|
|
1129
|
+
footer?: VNode;
|
|
1130
|
+
};
|
|
1131
|
+
refs: {};
|
|
1132
|
+
rootEl: HTMLDivElement;
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
declare function __VLS_template_4(): {
|
|
961
1136
|
attrs: Partial<{}>;
|
|
962
1137
|
slots: Readonly<{
|
|
963
1138
|
/**
|
|
@@ -974,7 +1149,7 @@ declare function __VLS_template_3(): {
|
|
|
974
1149
|
rootEl: HTMLDivElement;
|
|
975
1150
|
};
|
|
976
1151
|
|
|
977
|
-
declare function
|
|
1152
|
+
declare function __VLS_template_5(): {
|
|
978
1153
|
attrs: Partial<{}>;
|
|
979
1154
|
slots: Readonly<{
|
|
980
1155
|
/**
|
|
@@ -991,7 +1166,7 @@ declare function __VLS_template_4(): {
|
|
|
991
1166
|
rootEl: HTMLFieldSetElement;
|
|
992
1167
|
};
|
|
993
1168
|
|
|
994
|
-
declare function
|
|
1169
|
+
declare function __VLS_template_6(): {
|
|
995
1170
|
attrs: Partial<{}>;
|
|
996
1171
|
slots: Readonly<{
|
|
997
1172
|
/**
|
|
@@ -1008,7 +1183,7 @@ declare function __VLS_template_5(): {
|
|
|
1008
1183
|
rootEl: HTMLButtonElement;
|
|
1009
1184
|
};
|
|
1010
1185
|
|
|
1011
|
-
declare function
|
|
1186
|
+
declare function __VLS_template_7(): {
|
|
1012
1187
|
attrs: Partial<{}>;
|
|
1013
1188
|
slots: Readonly<{
|
|
1014
1189
|
/**
|
|
@@ -1033,52 +1208,59 @@ declare function __VLS_template_6(): {
|
|
|
1033
1208
|
rootEl: any;
|
|
1034
1209
|
};
|
|
1035
1210
|
|
|
1036
|
-
declare function
|
|
1211
|
+
declare function __VLS_template_8(): {
|
|
1037
1212
|
attrs: Partial<{}>;
|
|
1038
1213
|
slots: Readonly<{
|
|
1039
1214
|
/**
|
|
1040
|
-
* Use this slot to insert
|
|
1215
|
+
* Use this slot to insert an icon next to the title of the modal
|
|
1041
1216
|
*/
|
|
1042
|
-
|
|
1043
|
-
}> & {
|
|
1217
|
+
icon?: VNode;
|
|
1044
1218
|
/**
|
|
1045
|
-
* Use this slot to insert
|
|
1219
|
+
* Use this slot to insert the content of the modal
|
|
1046
1220
|
*/
|
|
1047
1221
|
default?: VNode;
|
|
1048
|
-
};
|
|
1049
|
-
refs: {};
|
|
1050
|
-
rootEl: HTMLDivElement;
|
|
1051
|
-
};
|
|
1052
|
-
|
|
1053
|
-
declare function __VLS_template_8(): {
|
|
1054
|
-
attrs: Partial<{}>;
|
|
1055
|
-
slots: Readonly<{
|
|
1056
1222
|
/**
|
|
1057
|
-
* Use this slot to insert a
|
|
1223
|
+
* Use this slot to insert a link in the footer
|
|
1224
|
+
*/
|
|
1225
|
+
link?: VNode;
|
|
1226
|
+
/**
|
|
1227
|
+
* Use this slot to insert buttons in the footer
|
|
1058
1228
|
*/
|
|
1059
1229
|
footer?: VNode;
|
|
1060
1230
|
}> & {
|
|
1061
1231
|
/**
|
|
1062
|
-
* Use this slot to insert
|
|
1232
|
+
* Use this slot to insert an icon next to the title of the modal
|
|
1233
|
+
*/
|
|
1234
|
+
icon?: VNode;
|
|
1235
|
+
/**
|
|
1236
|
+
* Use this slot to insert the content of the modal
|
|
1237
|
+
*/
|
|
1238
|
+
default?: VNode;
|
|
1239
|
+
/**
|
|
1240
|
+
* Use this slot to insert a link in the footer
|
|
1241
|
+
*/
|
|
1242
|
+
link?: VNode;
|
|
1243
|
+
/**
|
|
1244
|
+
* Use this slot to insert buttons in the footer
|
|
1063
1245
|
*/
|
|
1064
1246
|
footer?: VNode;
|
|
1065
1247
|
};
|
|
1066
1248
|
refs: {};
|
|
1067
|
-
rootEl:
|
|
1249
|
+
rootEl: HTMLDivElement;
|
|
1068
1250
|
};
|
|
1069
1251
|
|
|
1070
1252
|
declare function __VLS_template_9(): {
|
|
1071
1253
|
attrs: Partial<{}>;
|
|
1072
1254
|
slots: Readonly<{
|
|
1073
1255
|
/**
|
|
1074
|
-
* Use this slot to insert
|
|
1256
|
+
* Use this slot to insert a centered content inside the overlay
|
|
1075
1257
|
*/
|
|
1076
|
-
|
|
1258
|
+
default?: VNode;
|
|
1077
1259
|
}> & {
|
|
1078
1260
|
/**
|
|
1079
|
-
* Use this slot to insert
|
|
1261
|
+
* Use this slot to insert a centered content inside the overlay
|
|
1080
1262
|
*/
|
|
1081
|
-
|
|
1263
|
+
default?: VNode;
|
|
1082
1264
|
};
|
|
1083
1265
|
refs: {};
|
|
1084
1266
|
rootEl: HTMLDivElement;
|
|
@@ -1086,6 +1268,10 @@ declare function __VLS_template_9(): {
|
|
|
1086
1268
|
|
|
1087
1269
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1088
1270
|
|
|
1271
|
+
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
1272
|
+
|
|
1273
|
+
declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
|
|
1274
|
+
|
|
1089
1275
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
1090
1276
|
|
|
1091
1277
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
@@ -1108,6 +1294,18 @@ declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
1108
1294
|
};
|
|
1109
1295
|
};
|
|
1110
1296
|
|
|
1297
|
+
declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
1298
|
+
new (): {
|
|
1299
|
+
$slots: S;
|
|
1300
|
+
};
|
|
1301
|
+
};
|
|
1302
|
+
|
|
1303
|
+
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
1304
|
+
new (): {
|
|
1305
|
+
$slots: S;
|
|
1306
|
+
};
|
|
1307
|
+
};
|
|
1308
|
+
|
|
1111
1309
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
1112
1310
|
new (): {
|
|
1113
1311
|
$slots: S;
|
|
@@ -1174,35 +1372,41 @@ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_4, {}, {}, {},
|
|
|
1174
1372
|
|
|
1175
1373
|
export declare const MDivider: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1176
1374
|
|
|
1177
|
-
export declare const
|
|
1375
|
+
export declare const MDrawer: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1376
|
+
|
|
1377
|
+
export declare const MField: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1178
1378
|
|
|
1179
|
-
export declare const MFieldGroup:
|
|
1379
|
+
export declare const MFieldGroup: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1180
1380
|
|
|
1181
|
-
export declare const MIconButton:
|
|
1381
|
+
export declare const MIconButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
1182
1382
|
|
|
1183
|
-
export declare const MLink:
|
|
1383
|
+
export declare const MLink: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
1184
1384
|
|
|
1185
|
-
export declare const MLoader: DefineComponent<
|
|
1385
|
+
export declare const MLoader: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
|
|
1186
1386
|
appearance: "standard" | "accent" | "inverse";
|
|
1187
1387
|
size: "s" | "m" | "l";
|
|
1188
1388
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1189
1389
|
|
|
1190
|
-
export declare const
|
|
1390
|
+
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1391
|
+
|
|
1392
|
+
export declare const MModal: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1393
|
+
|
|
1394
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
|
|
1191
1395
|
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
1192
1396
|
size: "s" | "m";
|
|
1193
1397
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
1194
1398
|
|
|
1195
|
-
export declare const MOverlay:
|
|
1399
|
+
export declare const MOverlay: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1196
1400
|
|
|
1197
|
-
export declare const MPagination: DefineComponent<
|
|
1401
|
+
export declare const MPagination: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1198
1402
|
"update:modelValue": (value: number) => any;
|
|
1199
|
-
}, string, PublicProps, Readonly<
|
|
1403
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
1200
1404
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1201
1405
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1202
1406
|
|
|
1203
|
-
export declare const MPasswordInput: DefineComponent<
|
|
1407
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1204
1408
|
"update:modelValue": (value: string | number) => any;
|
|
1205
|
-
}, string, PublicProps, Readonly<
|
|
1409
|
+
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
1206
1410
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1207
1411
|
}>, {
|
|
1208
1412
|
clearLabel: string;
|
|
@@ -1295,9 +1499,17 @@ icon?: VNode;
|
|
|
1295
1499
|
}) | null;
|
|
1296
1500
|
}, HTMLDivElement>;
|
|
1297
1501
|
|
|
1298
|
-
export declare const
|
|
1502
|
+
export declare const MPincode: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1503
|
+
"update:modelValue": (value: string) => any;
|
|
1504
|
+
}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
|
|
1505
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1506
|
+
}>, {
|
|
1507
|
+
length: 4 | 5 | 6;
|
|
1508
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1509
|
+
|
|
1510
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1299
1511
|
"update:modelValue": (value: number) => any;
|
|
1300
|
-
}, string, PublicProps, Readonly<
|
|
1512
|
+
}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
|
|
1301
1513
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1302
1514
|
}>, {
|
|
1303
1515
|
size: "s" | "m";
|
|
@@ -1310,35 +1522,35 @@ incrementlabel: string;
|
|
|
1310
1522
|
decrementLabel: string;
|
|
1311
1523
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1312
1524
|
|
|
1313
|
-
export declare const MRadio: DefineComponent<
|
|
1525
|
+
export declare const MRadio: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1314
1526
|
"update:modelValue": (value: boolean) => any;
|
|
1315
|
-
}, string, PublicProps, Readonly<
|
|
1527
|
+
}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
|
|
1316
1528
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1317
1529
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1318
1530
|
|
|
1319
|
-
export declare const MRadioGroup: DefineComponent<
|
|
1531
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1320
1532
|
"update:modelValue": (value: string) => any;
|
|
1321
|
-
}, string, PublicProps, Readonly<
|
|
1533
|
+
}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
|
|
1322
1534
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1323
1535
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1324
1536
|
|
|
1325
|
-
export declare const MSelect: DefineComponent<
|
|
1537
|
+
export declare const MSelect: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1326
1538
|
"update:modelValue": (value: string | number) => any;
|
|
1327
|
-
}, string, PublicProps, Readonly<
|
|
1539
|
+
}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
|
|
1328
1540
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1329
1541
|
}>, {
|
|
1330
1542
|
size: "s" | "m";
|
|
1331
1543
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSelectElement>;
|
|
1332
1544
|
|
|
1333
|
-
export declare const MStatusBadge: DefineComponent<
|
|
1545
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
1334
1546
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
1335
1547
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1336
1548
|
|
|
1337
|
-
export declare const MStatusNotification:
|
|
1549
|
+
export declare const MStatusNotification: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1338
1550
|
|
|
1339
|
-
export declare const MTabs: DefineComponent<
|
|
1551
|
+
export declare const MTabs: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1340
1552
|
"update:modelValue": (value: number) => any;
|
|
1341
|
-
}, string, PublicProps, Readonly<
|
|
1553
|
+
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
1342
1554
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1343
1555
|
}>, {
|
|
1344
1556
|
modelValue: number;
|
|
@@ -1347,10 +1559,10 @@ divider: boolean;
|
|
|
1347
1559
|
tab: HTMLButtonElement;
|
|
1348
1560
|
}, HTMLElement>;
|
|
1349
1561
|
|
|
1350
|
-
export declare const MTag: DefineComponent<
|
|
1562
|
+
export declare const MTag: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1351
1563
|
"update:modelValue": (value: boolean) => any;
|
|
1352
1564
|
"remove-tag": (id: string) => any;
|
|
1353
|
-
}, string, PublicProps, Readonly<
|
|
1565
|
+
}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
|
|
1354
1566
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1355
1567
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
1356
1568
|
}>, {
|
|
@@ -1358,27 +1570,27 @@ type: "informative" | "interactive" | "contextualised" | "removable" | "selectab
|
|
|
1358
1570
|
contextualisedNumber: number;
|
|
1359
1571
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1360
1572
|
|
|
1361
|
-
export declare const MTextArea: DefineComponent<
|
|
1573
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1362
1574
|
"update:modelValue": (value: string | number) => any;
|
|
1363
|
-
}, string, PublicProps, Readonly<
|
|
1575
|
+
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
1364
1576
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1365
1577
|
}>, {
|
|
1366
1578
|
rows: number;
|
|
1367
1579
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
|
|
1368
1580
|
|
|
1369
|
-
export declare const MTextInput:
|
|
1581
|
+
export declare const MTextInput: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1370
1582
|
|
|
1371
|
-
export declare const MToggle: DefineComponent<
|
|
1583
|
+
export declare const MToggle: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1372
1584
|
"update:modelValue": (value: boolean) => any;
|
|
1373
|
-
}, string, PublicProps, Readonly<
|
|
1585
|
+
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
1374
1586
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1375
1587
|
}>, {
|
|
1376
1588
|
size: "s" | "m";
|
|
1377
1589
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1378
1590
|
|
|
1379
|
-
export declare const MToggleGroup: DefineComponent<
|
|
1591
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1380
1592
|
"update:modelValue": (value: string[]) => any;
|
|
1381
|
-
}, string, PublicProps, Readonly<
|
|
1593
|
+
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
1382
1594
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
1383
1595
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1384
1596
|
|