@mozaic-ds/vue 2.6.1 → 2.8.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/README.md +3 -3
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +211 -101
- package/dist/mozaic-vue.js +3034 -1070
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +5 -1
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +10 -7
- package/src/components/Contributing.mdx +1 -1
- package/src/components/GettingStarted.mdx +1 -1
- package/src/components/Introduction.mdx +1 -1
- package/src/components/Support.mdx +1 -1
- package/src/components/avatar/MAvatar.stories.ts +1 -0
- package/src/components/avatar/README.md +16 -0
- package/src/components/breadcrumb/README.md +11 -0
- package/src/components/button/MButton.stories.ts +1 -2
- package/src/components/button/MButton.vue +6 -1
- package/src/components/button/README.md +24 -0
- package/src/components/callout/MCallout.stories.ts +1 -0
- package/src/components/callout/README.md +19 -0
- package/src/components/checkbox/README.md +23 -0
- package/src/components/checkboxgroup/README.md +20 -0
- package/src/components/circularprogressbar/MCircularProgressbar.stories.ts +1 -0
- package/src/components/circularprogressbar/README.md +14 -0
- package/src/components/container/MContainer.stories.ts +8 -0
- package/src/components/container/MContainer.vue +1 -1
- package/src/components/container/README.md +16 -0
- package/src/components/datepicker/MDatepicker.stories.ts +1 -0
- package/src/components/datepicker/README.md +24 -0
- package/src/components/divider/MDivider.stories.ts +1 -0
- package/src/components/divider/README.md +18 -0
- package/src/components/drawer/MDrawer.spec.ts +95 -0
- package/src/components/drawer/MDrawer.stories.ts +1 -0
- package/src/components/drawer/MDrawer.vue +34 -3
- package/src/components/drawer/README.md +30 -0
- package/src/components/field/MField.vue +1 -1
- package/src/components/field/README.md +24 -0
- package/src/components/fieldgroup/README.md +22 -0
- package/src/components/flag/README.md +11 -0
- package/src/components/iconbutton/MIconButton.stories.ts +1 -0
- package/src/components/iconbutton/MIconButton.vue +6 -1
- package/src/components/iconbutton/README.md +21 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.stories.ts +1 -0
- package/src/components/linearprogressbarbuffer/README.md +11 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.stories.ts +1 -0
- package/src/components/linearprogressbarpercentage/README.md +10 -0
- package/src/components/link/MLink.vue +0 -2
- package/src/components/link/README.md +23 -0
- package/src/components/loader/MLoader.vue +1 -1
- package/src/components/loader/README.md +12 -0
- package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +1 -1
- package/src/components/loadingoverlay/README.md +11 -0
- package/src/components/modal/MModal.spec.ts +36 -1
- package/src/components/modal/MModal.vue +11 -1
- package/src/components/modal/README.md +29 -0
- package/src/components/numberbadge/README.md +12 -0
- package/src/components/overlay/README.md +17 -0
- package/src/components/pagination/README.md +20 -0
- package/src/components/passwordinput/README.md +25 -0
- package/src/components/phonenumber/MPhoneNumber.spec.ts +294 -0
- package/src/components/phonenumber/MPhoneNumber.stories.ts +88 -0
- package/src/components/phonenumber/MPhoneNumber.vue +271 -0
- package/src/components/phonenumber/README.md +26 -0
- package/src/components/pincode/MPincode.spec.ts +4 -1
- package/src/components/pincode/MPincode.stories.ts +1 -0
- package/src/components/pincode/MPincode.vue +5 -1
- package/src/components/pincode/README.md +22 -0
- package/src/components/quantityselector/MQuantitySelector.stories.ts +0 -7
- package/src/components/quantityselector/README.md +27 -0
- package/src/components/radio/README.md +21 -0
- package/src/components/radiogroup/README.md +21 -0
- package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +116 -0
- package/src/components/segmentedcontrol/MSegmentedControl.stories.ts +78 -0
- package/src/components/segmentedcontrol/MSegmentedControl.vue +92 -0
- package/src/components/segmentedcontrol/README.md +19 -0
- package/src/components/select/README.md +24 -0
- package/src/components/statusbadge/README.md +11 -0
- package/src/components/statusdot/MStatusDot.stories.ts +1 -0
- package/src/components/statusdot/README.md +11 -0
- package/src/components/statusnotification/README.md +25 -0
- package/src/components/tabs/MTabs.stories.ts +23 -1
- package/src/components/tabs/MTabs.vue +8 -0
- package/src/components/tabs/Mtabs.spec.ts +29 -8
- package/src/components/tabs/README.md +20 -0
- package/src/components/tag/README.md +25 -0
- package/src/components/textarea/README.md +25 -0
- package/src/components/textinput/README.md +32 -0
- package/src/components/toaster/MToaster.stories.ts +1 -0
- package/src/components/toaster/README.md +28 -0
- package/src/components/toggle/README.md +21 -0
- package/src/components/togglegroup/MToggleGroup.vue +1 -3
- package/src/components/togglegroup/README.md +20 -0
- package/src/components/tooltip/README.md +19 -0
- package/src/components/usingIcons.mdx +1 -1
- package/src/components/usingPresets.mdx +1 -1
- package/src/main.ts +2 -0
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { ComponentOptionsBase } from 'vue';
|
|
|
7
7
|
import { ComponentOptionsMixin } from 'vue';
|
|
8
8
|
import { ComponentProvideOptions } from 'vue';
|
|
9
9
|
import { ComponentPublicInstance } from 'vue';
|
|
10
|
+
import { CountryCode } from 'libphonenumber-js';
|
|
10
11
|
import { DebuggerEvent } from 'vue';
|
|
11
12
|
import { DefineComponent } from 'vue';
|
|
12
13
|
import { GlobalComponents } from 'vue';
|
|
@@ -29,8 +30,6 @@ declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}
|
|
|
29
30
|
size: "s" | "m";
|
|
30
31
|
iconPosition: "left" | "right";
|
|
31
32
|
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
32
|
-
href: string;
|
|
33
|
-
target: "_self" | "_blank" | "_parent" | "_top";
|
|
34
33
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
35
34
|
|
|
36
35
|
declare const __VLS_component_11: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -43,17 +42,17 @@ closable: boolean;
|
|
|
43
42
|
|
|
44
43
|
declare const __VLS_component_12: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
45
44
|
|
|
46
|
-
declare const __VLS_component_13: DefineComponent<
|
|
45
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
47
46
|
close: () => any;
|
|
48
|
-
}, string, PublicProps, Readonly<
|
|
47
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
49
48
|
onClose?: (() => any) | undefined;
|
|
50
49
|
}>, {
|
|
51
50
|
status: "info" | "success" | "warning" | "error";
|
|
52
51
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
53
52
|
|
|
54
|
-
declare const __VLS_component_14: DefineComponent<
|
|
53
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
55
54
|
"update:modelValue": (value: string | number) => any;
|
|
56
|
-
}, string, PublicProps, Readonly<
|
|
55
|
+
}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
|
|
57
56
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
58
57
|
}>, {
|
|
59
58
|
size: "s" | "m";
|
|
@@ -61,16 +60,16 @@ clearLabel: string;
|
|
|
61
60
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
62
61
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
63
62
|
|
|
64
|
-
declare const __VLS_component_15: DefineComponent<
|
|
63
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
65
64
|
"update:open": (value: boolean) => any;
|
|
66
|
-
}, string, PublicProps, Readonly<
|
|
65
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
67
66
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
68
67
|
}>, {
|
|
69
68
|
status: "info" | "success" | "warning" | "error";
|
|
70
69
|
closable: boolean;
|
|
71
70
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
72
71
|
|
|
73
|
-
declare const __VLS_component_16: DefineComponent<
|
|
72
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{}>, {
|
|
74
73
|
position: "top" | "bottom" | "left" | "right";
|
|
75
74
|
pointer: boolean;
|
|
76
75
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -99,7 +98,9 @@ back: () => any;
|
|
|
99
98
|
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
100
99
|
onBack?: (() => any) | undefined;
|
|
101
100
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
102
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
101
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
102
|
+
titleRef: HTMLHeadingElement;
|
|
103
|
+
}, any>;
|
|
103
104
|
|
|
104
105
|
declare const __VLS_component_7: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
105
106
|
|
|
@@ -167,10 +168,14 @@ declare type __VLS_Props_11 = {
|
|
|
167
168
|
* Title of the content of the drawer.
|
|
168
169
|
*/
|
|
169
170
|
contentTitle?: string;
|
|
171
|
+
/**
|
|
172
|
+
* if `true`, close the drawer when clicking the overlay.
|
|
173
|
+
*/
|
|
174
|
+
closeOnOverlay?: boolean;
|
|
170
175
|
};
|
|
171
176
|
|
|
172
177
|
/**
|
|
173
|
-
*
|
|
178
|
+
* A field label is a text element that identifies the purpose of an input field, providing users with clear guidance on what information to enter. It is typically placed above the input field and may include indicators for required or optional fields. Field Labels improve form usability, accessibility, and data entry accuracy by ensuring users understand the expected input.
|
|
174
179
|
*/
|
|
175
180
|
declare type __VLS_Props_12 = {
|
|
176
181
|
/**
|
|
@@ -348,7 +353,7 @@ declare type __VLS_Props_18 = {
|
|
|
348
353
|
};
|
|
349
354
|
|
|
350
355
|
/**
|
|
351
|
-
* A loader
|
|
356
|
+
* A loader is a visual indicator used to inform users that a process is in progress, typically during data fetching, page loading, or background operations. It provides feedback that the system is working, helping to manage user expectations and reduce perceived wait time.
|
|
352
357
|
*/
|
|
353
358
|
declare type __VLS_Props_19 = {
|
|
354
359
|
/**
|
|
@@ -426,6 +431,10 @@ declare type __VLS_Props_21 = {
|
|
|
426
431
|
* if `true`, display the close button.
|
|
427
432
|
*/
|
|
428
433
|
closable?: boolean;
|
|
434
|
+
/**
|
|
435
|
+
* if `true`, close the modal when clicking the overlay.
|
|
436
|
+
*/
|
|
437
|
+
closeOnOverlay?: boolean;
|
|
429
438
|
};
|
|
430
439
|
|
|
431
440
|
/**
|
|
@@ -540,9 +549,55 @@ declare type __VLS_Props_25 = {
|
|
|
540
549
|
};
|
|
541
550
|
|
|
542
551
|
/**
|
|
543
|
-
* A
|
|
552
|
+
* A phone number input is a specialized input field designed to capture and validate phone numbers, ensuring correct formatting based on country-specific dialing codes. It often includes a country selector that automatically adjusts the international dialing code. This component improves user experience by standardizing phone number entries, reducing errors, and facilitating global compatibility. It is commonly used in registration forms, authentication flows, and contact information fields.
|
|
544
553
|
*/
|
|
545
554
|
declare type __VLS_Props_26 = {
|
|
555
|
+
/**
|
|
556
|
+
* A unique identifier for the phone number input element, used to associate the label with the form element.
|
|
557
|
+
*/
|
|
558
|
+
id: string;
|
|
559
|
+
/**
|
|
560
|
+
* The current value of the phone number input field.
|
|
561
|
+
*/
|
|
562
|
+
modelValue?: string;
|
|
563
|
+
/**
|
|
564
|
+
* Default country code for phone number formatting (e.g., 'FR', 'US', 'PT').
|
|
565
|
+
*/
|
|
566
|
+
defaultCountry?: CountryCode;
|
|
567
|
+
/**
|
|
568
|
+
* A placeholder text to show in the phone number input when it is empty.
|
|
569
|
+
*/
|
|
570
|
+
placeholder?: string;
|
|
571
|
+
/**
|
|
572
|
+
* Determines the size of the phone number input.
|
|
573
|
+
*/
|
|
574
|
+
size?: 's' | 'm';
|
|
575
|
+
/**
|
|
576
|
+
* If `true`, applies an invalid state to the password input.
|
|
577
|
+
*/
|
|
578
|
+
isInvalid?: boolean;
|
|
579
|
+
/**
|
|
580
|
+
* If `true`, disables the input, making it non-interactive.
|
|
581
|
+
*/
|
|
582
|
+
disabled?: boolean;
|
|
583
|
+
/**
|
|
584
|
+
* If `true`, the input is read-only (cannot be edited).
|
|
585
|
+
*/
|
|
586
|
+
readonly?: boolean;
|
|
587
|
+
/**
|
|
588
|
+
* If `true`, display the country calling code prefix (+33, +1, etc.).
|
|
589
|
+
*/
|
|
590
|
+
prefix?: boolean;
|
|
591
|
+
/**
|
|
592
|
+
* If `true`, display the country flag selector
|
|
593
|
+
*/
|
|
594
|
+
flag?: boolean;
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* 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.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
599
|
+
*/
|
|
600
|
+
declare type __VLS_Props_27 = {
|
|
546
601
|
/**
|
|
547
602
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
548
603
|
*/
|
|
@@ -576,7 +631,7 @@ declare type __VLS_Props_26 = {
|
|
|
576
631
|
/**
|
|
577
632
|
* A quantity selector is an input component that allows users to increment or decrement a numeric value, typically using plus (+) and minus (−) buttons. It provides a simple and efficient way to adjust quantities without manual typing, ensuring controlled input. This component is commonly used in e-commerce, inventory management, and settings where users need to specify amounts.
|
|
578
633
|
*/
|
|
579
|
-
declare type
|
|
634
|
+
declare type __VLS_Props_28 = {
|
|
580
635
|
/**
|
|
581
636
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
582
637
|
*/
|
|
@@ -630,7 +685,7 @@ declare type __VLS_Props_27 = {
|
|
|
630
685
|
/**
|
|
631
686
|
* A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.
|
|
632
687
|
*/
|
|
633
|
-
declare type
|
|
688
|
+
declare type __VLS_Props_29 = {
|
|
634
689
|
/**
|
|
635
690
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
636
691
|
*/
|
|
@@ -657,10 +712,48 @@ declare type __VLS_Props_28 = {
|
|
|
657
712
|
disabled?: boolean;
|
|
658
713
|
};
|
|
659
714
|
|
|
715
|
+
/**
|
|
716
|
+
* Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
|
|
717
|
+
*/
|
|
718
|
+
declare type __VLS_Props_3 = {
|
|
719
|
+
/**
|
|
720
|
+
* Defines the visual style of the button.
|
|
721
|
+
*/
|
|
722
|
+
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
723
|
+
/**
|
|
724
|
+
* Determines the size of the button.
|
|
725
|
+
*/
|
|
726
|
+
size?: 's' | 'm' | 'l';
|
|
727
|
+
/**
|
|
728
|
+
* If `true`, disables the button, making it non-interactive.
|
|
729
|
+
*/
|
|
730
|
+
disabled?: boolean;
|
|
731
|
+
/**
|
|
732
|
+
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
733
|
+
*/
|
|
734
|
+
ghost?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
737
|
+
*/
|
|
738
|
+
outlined?: boolean;
|
|
739
|
+
/**
|
|
740
|
+
* Controls the positioning of an icon in the button.
|
|
741
|
+
*/
|
|
742
|
+
iconPosition?: 'left' | 'right' | 'only';
|
|
743
|
+
/**
|
|
744
|
+
* Specifies the button's HTML `type` attribute.
|
|
745
|
+
*/
|
|
746
|
+
type?: 'button' | 'reset' | 'submit';
|
|
747
|
+
/**
|
|
748
|
+
* If `true`, a loading state is displayed.
|
|
749
|
+
*/
|
|
750
|
+
isLoading?: boolean;
|
|
751
|
+
};
|
|
752
|
+
|
|
660
753
|
/**
|
|
661
754
|
* A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#radio-group).
|
|
662
755
|
*/
|
|
663
|
-
declare type
|
|
756
|
+
declare type __VLS_Props_30 = {
|
|
664
757
|
/**
|
|
665
758
|
* The name attribute for the radio element, typically used for form submission.
|
|
666
759
|
*/
|
|
@@ -690,47 +783,36 @@ declare type __VLS_Props_29 = {
|
|
|
690
783
|
};
|
|
691
784
|
|
|
692
785
|
/**
|
|
693
|
-
*
|
|
786
|
+
* A Segmented Control allows users to switch between multiple options or views within a single container. It provides a compact and efficient way to toggle between sections without requiring a dropdown or separate navigation. Segmented Controls are commonly used in filters, tabbed navigation, and content selection to enhance user interaction and accessibility.
|
|
694
787
|
*/
|
|
695
|
-
declare type
|
|
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;
|
|
788
|
+
declare type __VLS_Props_31 = {
|
|
712
789
|
/**
|
|
713
|
-
*
|
|
790
|
+
* The selected segment index, bound via v-model.
|
|
714
791
|
*/
|
|
715
|
-
|
|
792
|
+
modelValue?: number;
|
|
716
793
|
/**
|
|
717
|
-
*
|
|
794
|
+
* if `true`, the segmented control take the full width.
|
|
718
795
|
*/
|
|
719
|
-
|
|
796
|
+
full?: boolean;
|
|
720
797
|
/**
|
|
721
|
-
*
|
|
798
|
+
* Determines the size of the segmented control.
|
|
722
799
|
*/
|
|
723
|
-
|
|
800
|
+
size?: 's' | 'm';
|
|
724
801
|
/**
|
|
725
|
-
*
|
|
802
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each segment.
|
|
726
803
|
*/
|
|
727
|
-
|
|
804
|
+
segments: Array<{
|
|
805
|
+
/**
|
|
806
|
+
* The label displayed for the segment.
|
|
807
|
+
*/
|
|
808
|
+
label: string;
|
|
809
|
+
}>;
|
|
728
810
|
};
|
|
729
811
|
|
|
730
812
|
/**
|
|
731
813
|
* A select component allows users to choose a single option from a predefined list within a native dropdown menu. It helps simplify input by displaying only relevant choices, reducing the need for manual text entry. Select components are commonly used in forms, settings, and filters where structured selection is required.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#select).
|
|
732
814
|
*/
|
|
733
|
-
declare type
|
|
815
|
+
declare type __VLS_Props_32 = {
|
|
734
816
|
/**
|
|
735
817
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
736
818
|
*/
|
|
@@ -778,7 +860,7 @@ declare type __VLS_Props_30 = {
|
|
|
778
860
|
/**
|
|
779
861
|
* A Status Badge is used to indicate the current status of an element, providing a clear and concise visual cue. The status can change dynamically based on updates, events, or conditions within the system. Status Badges help users quickly identify the state of an item, such as an order status, system health, or process completion. They are often color-coded to enhance readability and recognition.
|
|
780
862
|
*/
|
|
781
|
-
declare type
|
|
863
|
+
declare type __VLS_Props_33 = {
|
|
782
864
|
/**
|
|
783
865
|
* Content of the status badge
|
|
784
866
|
*/
|
|
@@ -792,7 +874,7 @@ declare type __VLS_Props_31 = {
|
|
|
792
874
|
/**
|
|
793
875
|
* A Status dot is a small visual indicator used to represent the state or condition of an element. It is often color-coded to convey different statuses at a glance, such as availability, activity, or urgency. Status Dots are commonly found in user presence indicators, system statuses, or process tracking to provide quick, unobtrusive feedback.
|
|
794
876
|
*/
|
|
795
|
-
declare type
|
|
877
|
+
declare type __VLS_Props_34 = {
|
|
796
878
|
/**
|
|
797
879
|
* Allows to define the status dot type.
|
|
798
880
|
*/
|
|
@@ -806,7 +888,7 @@ declare type __VLS_Props_32 = {
|
|
|
806
888
|
/**
|
|
807
889
|
* 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.
|
|
808
890
|
*/
|
|
809
|
-
declare type
|
|
891
|
+
declare type __VLS_Props_35 = {
|
|
810
892
|
/**
|
|
811
893
|
* Title of the status notification.
|
|
812
894
|
*/
|
|
@@ -828,7 +910,7 @@ declare type __VLS_Props_33 = {
|
|
|
828
910
|
/**
|
|
829
911
|
* 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.
|
|
830
912
|
*/
|
|
831
|
-
declare type
|
|
913
|
+
declare type __VLS_Props_36 = {
|
|
832
914
|
/**
|
|
833
915
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
834
916
|
*/
|
|
@@ -853,6 +935,10 @@ declare type __VLS_Props_34 = {
|
|
|
853
935
|
* The icon displayed for the tab from Mozaic-icon-vue.
|
|
854
936
|
*/
|
|
855
937
|
icon?: Component;
|
|
938
|
+
/**
|
|
939
|
+
* The number badge displayed for the tab.
|
|
940
|
+
*/
|
|
941
|
+
badge?: number;
|
|
856
942
|
/**
|
|
857
943
|
* The label displayed for the tab.
|
|
858
944
|
*/
|
|
@@ -867,7 +953,7 @@ declare type __VLS_Props_34 = {
|
|
|
867
953
|
/**
|
|
868
954
|
* 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).
|
|
869
955
|
*/
|
|
870
|
-
declare type
|
|
956
|
+
declare type __VLS_Props_37 = {
|
|
871
957
|
/**
|
|
872
958
|
* Defines the behavior and layout of the tag.
|
|
873
959
|
*/
|
|
@@ -909,7 +995,7 @@ declare type __VLS_Props_35 = {
|
|
|
909
995
|
/**
|
|
910
996
|
* A text area is an input designed for multi-line text entry, allowing users to input longer content compared to a standard text input. It is commonly used for comments, feedback, descriptions, and messaging. Text areas can be resizable or fixed in height, depending on the context, and often include placeholder text, character limits, and validation messages to guide users.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#textarea).
|
|
911
997
|
*/
|
|
912
|
-
declare type
|
|
998
|
+
declare type __VLS_Props_38 = {
|
|
913
999
|
/**
|
|
914
1000
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
915
1001
|
*/
|
|
@@ -955,7 +1041,7 @@ declare type __VLS_Props_36 = {
|
|
|
955
1041
|
/**
|
|
956
1042
|
* A text input is a single-line input that allows users to enter and edit short text-based content. It is commonly used for names, email addresses, search queries, and form entries. Text Inputs often include placeholders, validation rules, and assistive text to guide users and ensure accurate data entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
957
1043
|
*/
|
|
958
|
-
declare type
|
|
1044
|
+
declare type __VLS_Props_39 = {
|
|
959
1045
|
/**
|
|
960
1046
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
961
1047
|
*/
|
|
@@ -1002,10 +1088,28 @@ declare type __VLS_Props_37 = {
|
|
|
1002
1088
|
clearLabel?: string;
|
|
1003
1089
|
};
|
|
1004
1090
|
|
|
1091
|
+
/**
|
|
1092
|
+
* 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.
|
|
1093
|
+
*/
|
|
1094
|
+
declare type __VLS_Props_4 = {
|
|
1095
|
+
/**
|
|
1096
|
+
* Title of the callout.
|
|
1097
|
+
*/
|
|
1098
|
+
title: string;
|
|
1099
|
+
/**
|
|
1100
|
+
* Description of the callout.
|
|
1101
|
+
*/
|
|
1102
|
+
description: string;
|
|
1103
|
+
/**
|
|
1104
|
+
* Allows to define the callout appearance.
|
|
1105
|
+
*/
|
|
1106
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1107
|
+
};
|
|
1108
|
+
|
|
1005
1109
|
/**
|
|
1006
1110
|
* 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.
|
|
1007
1111
|
*/
|
|
1008
|
-
declare type
|
|
1112
|
+
declare type __VLS_Props_40 = {
|
|
1009
1113
|
/**
|
|
1010
1114
|
* If `true`, display the Toaster.
|
|
1011
1115
|
*/
|
|
@@ -1039,7 +1143,7 @@ declare type __VLS_Props_38 = {
|
|
|
1039
1143
|
/**
|
|
1040
1144
|
* A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.
|
|
1041
1145
|
*/
|
|
1042
|
-
declare type
|
|
1146
|
+
declare type __VLS_Props_41 = {
|
|
1043
1147
|
/**
|
|
1044
1148
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1045
1149
|
*/
|
|
@@ -1067,27 +1171,9 @@ declare type __VLS_Props_39 = {
|
|
|
1067
1171
|
};
|
|
1068
1172
|
|
|
1069
1173
|
/**
|
|
1070
|
-
* A
|
|
1174
|
+
* A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).
|
|
1071
1175
|
*/
|
|
1072
|
-
declare type
|
|
1073
|
-
/**
|
|
1074
|
-
* Title of the callout.
|
|
1075
|
-
*/
|
|
1076
|
-
title: string;
|
|
1077
|
-
/**
|
|
1078
|
-
* Description of the callout.
|
|
1079
|
-
*/
|
|
1080
|
-
description: string;
|
|
1081
|
-
/**
|
|
1082
|
-
* Allows to define the callout appearance.
|
|
1083
|
-
*/
|
|
1084
|
-
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1085
|
-
};
|
|
1086
|
-
|
|
1087
|
-
/**
|
|
1088
|
-
* A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).
|
|
1089
|
-
*/
|
|
1090
|
-
declare type __VLS_Props_40 = {
|
|
1176
|
+
declare type __VLS_Props_42 = {
|
|
1091
1177
|
/**
|
|
1092
1178
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1093
1179
|
*/
|
|
@@ -1105,7 +1191,6 @@ declare type __VLS_Props_40 = {
|
|
|
1105
1191
|
label: string;
|
|
1106
1192
|
value: string;
|
|
1107
1193
|
disabled?: boolean;
|
|
1108
|
-
isInvalid?: boolean;
|
|
1109
1194
|
size?: 's' | 'm';
|
|
1110
1195
|
}>;
|
|
1111
1196
|
/**
|
|
@@ -1117,7 +1202,7 @@ declare type __VLS_Props_40 = {
|
|
|
1117
1202
|
/**
|
|
1118
1203
|
* 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.
|
|
1119
1204
|
*/
|
|
1120
|
-
declare type
|
|
1205
|
+
declare type __VLS_Props_43 = {
|
|
1121
1206
|
/**
|
|
1122
1207
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1123
1208
|
*/
|
|
@@ -1231,7 +1316,7 @@ declare type __VLS_Props_7 = {
|
|
|
1231
1316
|
};
|
|
1232
1317
|
|
|
1233
1318
|
/**
|
|
1234
|
-
*
|
|
1319
|
+
* The Container component is designed to wrap your page or section content, typically grids or other layout elements. By default, it centers the content with a maximum width to ensure consistent alignment and spacing.
|
|
1235
1320
|
*/
|
|
1236
1321
|
declare type __VLS_Props_8 = {
|
|
1237
1322
|
/**
|
|
@@ -1458,7 +1543,7 @@ declare function __VLS_template_2(): {
|
|
|
1458
1543
|
*/
|
|
1459
1544
|
default: string;
|
|
1460
1545
|
/**
|
|
1461
|
-
* Use this slot to insert an icon for the Button
|
|
1546
|
+
* Use this slot to insert an icon for the Button.
|
|
1462
1547
|
*/
|
|
1463
1548
|
icon?: VNode;
|
|
1464
1549
|
}> & {
|
|
@@ -1467,7 +1552,7 @@ declare function __VLS_template_2(): {
|
|
|
1467
1552
|
*/
|
|
1468
1553
|
default: string;
|
|
1469
1554
|
/**
|
|
1470
|
-
* Use this slot to insert an icon for the Button
|
|
1555
|
+
* Use this slot to insert an icon for the Button.
|
|
1471
1556
|
*/
|
|
1472
1557
|
icon?: VNode;
|
|
1473
1558
|
};
|
|
@@ -1555,7 +1640,9 @@ declare function __VLS_template_6(): {
|
|
|
1555
1640
|
*/
|
|
1556
1641
|
footer?: VNode;
|
|
1557
1642
|
};
|
|
1558
|
-
refs: {
|
|
1643
|
+
refs: {
|
|
1644
|
+
titleRef: HTMLHeadingElement;
|
|
1645
|
+
};
|
|
1559
1646
|
rootEl: any;
|
|
1560
1647
|
};
|
|
1561
1648
|
|
|
@@ -1597,12 +1684,12 @@ declare function __VLS_template_9(): {
|
|
|
1597
1684
|
attrs: Partial<{}>;
|
|
1598
1685
|
slots: Readonly<{
|
|
1599
1686
|
/**
|
|
1600
|
-
* Use this slot to insert
|
|
1687
|
+
* Use this slot to insert an icon for the Button.
|
|
1601
1688
|
*/
|
|
1602
1689
|
icon: VNode;
|
|
1603
1690
|
}> & {
|
|
1604
1691
|
/**
|
|
1605
|
-
* Use this slot to insert
|
|
1692
|
+
* Use this slot to insert an icon for the Button.
|
|
1606
1693
|
*/
|
|
1607
1694
|
icon: VNode;
|
|
1608
1695
|
};
|
|
@@ -1913,17 +2000,31 @@ icon?: VNode;
|
|
|
1913
2000
|
}) | null;
|
|
1914
2001
|
}, any>;
|
|
1915
2002
|
|
|
1916
|
-
export declare const
|
|
2003
|
+
export declare const MPhoneNumber: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1917
2004
|
"update:modelValue": (value: string) => any;
|
|
2005
|
+
valid: (isValid: boolean) => any;
|
|
1918
2006
|
}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
|
|
1919
2007
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2008
|
+
onValid?: ((isValid: boolean) => any) | undefined;
|
|
2009
|
+
}>, {
|
|
2010
|
+
size: "s" | "m";
|
|
2011
|
+
modelValue: string;
|
|
2012
|
+
defaultCountry: CountryCode;
|
|
2013
|
+
prefix: boolean;
|
|
2014
|
+
flag: boolean;
|
|
2015
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2016
|
+
|
|
2017
|
+
export declare const MPincode: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2018
|
+
"update:modelValue": (value: string) => any;
|
|
2019
|
+
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
2020
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1920
2021
|
}>, {
|
|
1921
2022
|
length: 4 | 5 | 6;
|
|
1922
2023
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1923
2024
|
|
|
1924
|
-
export declare const MQuantitySelector: DefineComponent<
|
|
2025
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1925
2026
|
"update:modelValue": (value: number) => any;
|
|
1926
|
-
}, string, PublicProps, Readonly<
|
|
2027
|
+
}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
|
|
1927
2028
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1928
2029
|
}>, {
|
|
1929
2030
|
size: "s" | "m";
|
|
@@ -1936,39 +2037,48 @@ incrementlabel: string;
|
|
|
1936
2037
|
decrementLabel: string;
|
|
1937
2038
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1938
2039
|
|
|
1939
|
-
export declare const MRadio: DefineComponent<
|
|
2040
|
+
export declare const MRadio: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1940
2041
|
"update:modelValue": (value: boolean) => any;
|
|
1941
|
-
}, string, PublicProps, Readonly<
|
|
2042
|
+
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
1942
2043
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1943
2044
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1944
2045
|
|
|
1945
|
-
export declare const MRadioGroup: DefineComponent<
|
|
2046
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1946
2047
|
"update:modelValue": (value: string) => any;
|
|
1947
|
-
}, string, PublicProps, Readonly<
|
|
2048
|
+
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
1948
2049
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1949
2050
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1950
2051
|
|
|
1951
|
-
export declare const
|
|
2052
|
+
export declare const MSegmentedControl: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2053
|
+
"update:modelValue": (value: number) => any;
|
|
2054
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
2055
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2056
|
+
}>, {
|
|
2057
|
+
size: "s" | "m";
|
|
2058
|
+
modelValue: number;
|
|
2059
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2060
|
+
|
|
2061
|
+
export declare const MSelect: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1952
2062
|
"update:modelValue": (value: string | number) => any;
|
|
1953
|
-
}, string, PublicProps, Readonly<
|
|
2063
|
+
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
1954
2064
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1955
2065
|
}>, {
|
|
1956
2066
|
size: "s" | "m";
|
|
1957
2067
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1958
2068
|
|
|
1959
|
-
export declare const MStatusBadge: DefineComponent<
|
|
2069
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|
|
1960
2070
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
1961
2071
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1962
2072
|
|
|
1963
|
-
export declare const MStatusDot: DefineComponent<
|
|
2073
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {
|
|
1964
2074
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
1965
2075
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
1966
2076
|
|
|
1967
2077
|
export declare const MStatusNotification: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1968
2078
|
|
|
1969
|
-
export declare const MTabs: DefineComponent<
|
|
2079
|
+
export declare const MTabs: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1970
2080
|
"update:modelValue": (value: number) => any;
|
|
1971
|
-
}, string, PublicProps, Readonly<
|
|
2081
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
1972
2082
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1973
2083
|
}>, {
|
|
1974
2084
|
modelValue: number;
|
|
@@ -1977,10 +2087,10 @@ divider: boolean;
|
|
|
1977
2087
|
tab: HTMLButtonElement;
|
|
1978
2088
|
}, HTMLElement>;
|
|
1979
2089
|
|
|
1980
|
-
export declare const MTag: DefineComponent<
|
|
2090
|
+
export declare const MTag: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1981
2091
|
"update:modelValue": (value: boolean) => any;
|
|
1982
2092
|
"remove-tag": (id: string) => any;
|
|
1983
|
-
}, string, PublicProps, Readonly<
|
|
2093
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
1984
2094
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1985
2095
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
1986
2096
|
}>, {
|
|
@@ -1988,9 +2098,9 @@ type: "informative" | "interactive" | "contextualised" | "removable" | "selectab
|
|
|
1988
2098
|
contextualisedNumber: number;
|
|
1989
2099
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1990
2100
|
|
|
1991
|
-
export declare const MTextArea: DefineComponent<
|
|
2101
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1992
2102
|
"update:modelValue": (value: string | number) => any;
|
|
1993
|
-
}, string, PublicProps, Readonly<
|
|
2103
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
1994
2104
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1995
2105
|
}>, {
|
|
1996
2106
|
rows: number;
|
|
@@ -2000,17 +2110,17 @@ export declare const MTextInput: __VLS_WithTemplateSlots_14<typeof __VLS_compone
|
|
|
2000
2110
|
|
|
2001
2111
|
export declare const MToaster: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2002
2112
|
|
|
2003
|
-
export declare const MToggle: DefineComponent<
|
|
2113
|
+
export declare const MToggle: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2004
2114
|
"update:modelValue": (value: boolean) => any;
|
|
2005
|
-
}, string, PublicProps, Readonly<
|
|
2115
|
+
}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
|
|
2006
2116
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2007
2117
|
}>, {
|
|
2008
2118
|
size: "s" | "m";
|
|
2009
2119
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2010
2120
|
|
|
2011
|
-
export declare const MToggleGroup: DefineComponent<
|
|
2121
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2012
2122
|
"update:modelValue": (value: string[]) => any;
|
|
2013
|
-
}, string, PublicProps, Readonly<
|
|
2123
|
+
}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
|
|
2014
2124
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2015
2125
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2016
2126
|
|