@mozaic-ds/vue 2.10.0 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +156 -48
- package/dist/mozaic-vue.js +1528 -1200
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +5 -5
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +2 -2
- package/src/components/kpiitem/MKpiItem.spec.ts +71 -0
- package/src/components/kpiitem/MKpiItem.stories.ts +69 -0
- package/src/components/kpiitem/MKpiItem.vue +89 -0
- package/src/components/kpiitem/README.md +15 -0
- package/src/components/phonenumber/README.md +2 -0
- package/src/components/starrating/MStarRating.spec.ts +203 -0
- package/src/components/starrating/MStarRating.stories.ts +82 -0
- package/src/components/starrating/MStarRating.vue +187 -0
- package/src/components/starrating/README.md +31 -0
- package/src/components/statusbadge/README.md +1 -1
- package/src/components/statusdot/README.md +1 -1
- package/src/components/statusmessage/MStatusMessage.spec.ts +76 -0
- package/src/components/statusmessage/MStatusMessage.stories.ts +52 -0
- package/src/components/statusmessage/MStatusMessage.vue +70 -0
- package/src/components/statusmessage/README.md +11 -0
- package/src/components/statusnotification/README.md +1 -1
- package/src/components/steppercompact/MStepperCompact.spec.ts +98 -0
- package/src/components/steppercompact/MStepperCompact.stories.ts +43 -0
- package/src/components/steppercompact/MStepperCompact.vue +105 -0
- package/src/components/steppercompact/README.md +13 -0
- package/src/components/tag/MTag.vue +2 -1
- package/src/components/tag/README.md +1 -1
- package/src/components/toaster/README.md +1 -1
- package/src/main.ts +3 -0
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -49,17 +49,17 @@ closable: boolean;
|
|
|
49
49
|
|
|
50
50
|
declare const __VLS_component_13: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
51
51
|
|
|
52
|
-
declare const __VLS_component_14: DefineComponent<
|
|
52
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
53
53
|
close: () => any;
|
|
54
|
-
}, string, PublicProps, Readonly<
|
|
54
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
55
55
|
onClose?: (() => any) | undefined;
|
|
56
56
|
}>, {
|
|
57
57
|
status: "info" | "success" | "warning" | "error";
|
|
58
58
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
59
59
|
|
|
60
|
-
declare const __VLS_component_15: DefineComponent<
|
|
60
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
61
61
|
"update:modelValue": (value: string | number) => any;
|
|
62
|
-
}, string, PublicProps, Readonly<
|
|
62
|
+
}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
|
|
63
63
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
64
64
|
}>, {
|
|
65
65
|
size: "s" | "m";
|
|
@@ -67,16 +67,16 @@ clearLabel: string;
|
|
|
67
67
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
68
68
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
69
69
|
|
|
70
|
-
declare const __VLS_component_16: DefineComponent<
|
|
70
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
71
71
|
"update:open": (value: boolean) => any;
|
|
72
|
-
}, string, PublicProps, Readonly<
|
|
72
|
+
}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
|
|
73
73
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
74
74
|
}>, {
|
|
75
75
|
status: "info" | "success" | "warning" | "error";
|
|
76
76
|
closable: boolean;
|
|
77
77
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
78
78
|
|
|
79
|
-
declare const __VLS_component_17: DefineComponent<
|
|
79
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {
|
|
80
80
|
position: "top" | "bottom" | "left" | "right";
|
|
81
81
|
pointer: boolean;
|
|
82
82
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -930,9 +930,56 @@ declare type __VLS_Props_33 = {
|
|
|
930
930
|
};
|
|
931
931
|
|
|
932
932
|
/**
|
|
933
|
-
* A
|
|
933
|
+
* A Star rating visually represents a score or evaluation and can be used to display a rating or allow users to rate an item, such as a product or service. It serves two main purposes: collecting user feedback by enabling individuals to express their experience and providing social proof by displaying ratings from other users to assist decision-making. Rating Stars are commonly found in e-commerce, review systems, and feedback interfaces, offering a quick and intuitive way to assess quality or satisfaction.
|
|
934
934
|
*/
|
|
935
935
|
declare type __VLS_Props_34 = {
|
|
936
|
+
/**
|
|
937
|
+
* Determines whether the rating is interactive or read-only.
|
|
938
|
+
* When true, all user interactions (click, hover, keyboard) are disabled.
|
|
939
|
+
* Automatically set to true when `compact`, `href`, or `information` are provided.
|
|
940
|
+
*
|
|
941
|
+
*/
|
|
942
|
+
readonly?: boolean;
|
|
943
|
+
/**
|
|
944
|
+
* Defines the visual size of the star icons and the accompanying text.
|
|
945
|
+
*
|
|
946
|
+
*/
|
|
947
|
+
size?: 's' | 'm' | 'l';
|
|
948
|
+
/**
|
|
949
|
+
* Enables a compact display mode that shows only one star instead of five.
|
|
950
|
+
* Typically used for summaries or quick visual cues.
|
|
951
|
+
* When enabled, the component automatically becomes read-only.
|
|
952
|
+
*
|
|
953
|
+
*/
|
|
954
|
+
compact?: boolean;
|
|
955
|
+
/**
|
|
956
|
+
* Specifies the color scheme of the stars.
|
|
957
|
+
*
|
|
958
|
+
*/
|
|
959
|
+
appearance?: 'standard' | 'accent';
|
|
960
|
+
/**
|
|
961
|
+
* Optional text displayed next to the star rating.
|
|
962
|
+
* If provided, the component automatically becomes read-only.
|
|
963
|
+
*/
|
|
964
|
+
text?: string;
|
|
965
|
+
/**
|
|
966
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
967
|
+
*/
|
|
968
|
+
href?: string;
|
|
969
|
+
/**
|
|
970
|
+
* Where to open the link.
|
|
971
|
+
*/
|
|
972
|
+
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
973
|
+
/**
|
|
974
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
975
|
+
*/
|
|
976
|
+
router?: boolean;
|
|
977
|
+
};
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* 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.
|
|
981
|
+
*/
|
|
982
|
+
declare type __VLS_Props_35 = {
|
|
936
983
|
/**
|
|
937
984
|
* Content of the status badge
|
|
938
985
|
*/
|
|
@@ -946,7 +993,7 @@ declare type __VLS_Props_34 = {
|
|
|
946
993
|
/**
|
|
947
994
|
* 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.
|
|
948
995
|
*/
|
|
949
|
-
declare type
|
|
996
|
+
declare type __VLS_Props_36 = {
|
|
950
997
|
/**
|
|
951
998
|
* Allows to define the status dot type.
|
|
952
999
|
*/
|
|
@@ -957,10 +1004,24 @@ declare type __VLS_Props_35 = {
|
|
|
957
1004
|
size?: 's' | 'm' | 'l';
|
|
958
1005
|
};
|
|
959
1006
|
|
|
1007
|
+
/**
|
|
1008
|
+
* A Status Message is a compact component that combines an icon and concise text to communicate system states or user feedback in limited interface space. The icon and message work together as a unified structure to provide clear, immediate understanding of the current status. Status Messages are designed for contexts where space is constrained but clear communication is essential, offering quick recognition through color-coded icons paired with brief, actionable text.
|
|
1009
|
+
*/
|
|
1010
|
+
declare type __VLS_Props_37 = {
|
|
1011
|
+
/**
|
|
1012
|
+
* Allows to define the status message style.
|
|
1013
|
+
*/
|
|
1014
|
+
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral' | 'inprogress';
|
|
1015
|
+
/**
|
|
1016
|
+
* Label of the status message.
|
|
1017
|
+
*/
|
|
1018
|
+
label: string;
|
|
1019
|
+
};
|
|
1020
|
+
|
|
960
1021
|
/**
|
|
961
1022
|
* 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.
|
|
962
1023
|
*/
|
|
963
|
-
declare type
|
|
1024
|
+
declare type __VLS_Props_38 = {
|
|
964
1025
|
/**
|
|
965
1026
|
* Title of the status notification.
|
|
966
1027
|
*/
|
|
@@ -979,10 +1040,50 @@ declare type __VLS_Props_36 = {
|
|
|
979
1040
|
closable?: boolean;
|
|
980
1041
|
};
|
|
981
1042
|
|
|
1043
|
+
/**
|
|
1044
|
+
* A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
|
|
1045
|
+
*/
|
|
1046
|
+
declare type __VLS_Props_39 = {
|
|
1047
|
+
/**
|
|
1048
|
+
* Current step of the stepper compact.
|
|
1049
|
+
*/
|
|
1050
|
+
value?: number;
|
|
1051
|
+
/**
|
|
1052
|
+
* Maximum number of steps for the stepper compact.
|
|
1053
|
+
*/
|
|
1054
|
+
maxSteps?: number;
|
|
1055
|
+
/**
|
|
1056
|
+
* Label of the stepper compact.
|
|
1057
|
+
*/
|
|
1058
|
+
label: string;
|
|
1059
|
+
/**
|
|
1060
|
+
* Description displayed below the label of the stepper compact.
|
|
1061
|
+
*/
|
|
1062
|
+
description?: string;
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* 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.
|
|
1067
|
+
*/
|
|
1068
|
+
declare type __VLS_Props_4 = {
|
|
1069
|
+
/**
|
|
1070
|
+
* Title of the callout.
|
|
1071
|
+
*/
|
|
1072
|
+
title: string;
|
|
1073
|
+
/**
|
|
1074
|
+
* Description of the callout.
|
|
1075
|
+
*/
|
|
1076
|
+
description: string;
|
|
1077
|
+
/**
|
|
1078
|
+
* Allows to define the callout appearance.
|
|
1079
|
+
*/
|
|
1080
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1081
|
+
};
|
|
1082
|
+
|
|
982
1083
|
/**
|
|
983
1084
|
* 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.
|
|
984
1085
|
*/
|
|
985
|
-
declare type
|
|
1086
|
+
declare type __VLS_Props_40 = {
|
|
986
1087
|
/**
|
|
987
1088
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
988
1089
|
*/
|
|
@@ -1025,7 +1126,7 @@ declare type __VLS_Props_37 = {
|
|
|
1025
1126
|
/**
|
|
1026
1127
|
* 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).
|
|
1027
1128
|
*/
|
|
1028
|
-
declare type
|
|
1129
|
+
declare type __VLS_Props_41 = {
|
|
1029
1130
|
/**
|
|
1030
1131
|
* Defines the behavior and layout of the tag.
|
|
1031
1132
|
*/
|
|
@@ -1067,7 +1168,7 @@ declare type __VLS_Props_38 = {
|
|
|
1067
1168
|
/**
|
|
1068
1169
|
* 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).
|
|
1069
1170
|
*/
|
|
1070
|
-
declare type
|
|
1171
|
+
declare type __VLS_Props_42 = {
|
|
1071
1172
|
/**
|
|
1072
1173
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
1073
1174
|
*/
|
|
@@ -1110,28 +1211,10 @@ declare type __VLS_Props_39 = {
|
|
|
1110
1211
|
readonly?: boolean;
|
|
1111
1212
|
};
|
|
1112
1213
|
|
|
1113
|
-
/**
|
|
1114
|
-
* 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.
|
|
1115
|
-
*/
|
|
1116
|
-
declare type __VLS_Props_4 = {
|
|
1117
|
-
/**
|
|
1118
|
-
* Title of the callout.
|
|
1119
|
-
*/
|
|
1120
|
-
title: string;
|
|
1121
|
-
/**
|
|
1122
|
-
* Description of the callout.
|
|
1123
|
-
*/
|
|
1124
|
-
description: string;
|
|
1125
|
-
/**
|
|
1126
|
-
* Allows to define the callout appearance.
|
|
1127
|
-
*/
|
|
1128
|
-
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1129
|
-
};
|
|
1130
|
-
|
|
1131
1214
|
/**
|
|
1132
1215
|
* 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).
|
|
1133
1216
|
*/
|
|
1134
|
-
declare type
|
|
1217
|
+
declare type __VLS_Props_43 = {
|
|
1135
1218
|
/**
|
|
1136
1219
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
1137
1220
|
*/
|
|
@@ -1181,7 +1264,7 @@ declare type __VLS_Props_40 = {
|
|
|
1181
1264
|
/**
|
|
1182
1265
|
* 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.
|
|
1183
1266
|
*/
|
|
1184
|
-
declare type
|
|
1267
|
+
declare type __VLS_Props_44 = {
|
|
1185
1268
|
/**
|
|
1186
1269
|
* If `true`, display the Toaster.
|
|
1187
1270
|
*/
|
|
@@ -1215,7 +1298,7 @@ declare type __VLS_Props_41 = {
|
|
|
1215
1298
|
/**
|
|
1216
1299
|
* 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.
|
|
1217
1300
|
*/
|
|
1218
|
-
declare type
|
|
1301
|
+
declare type __VLS_Props_45 = {
|
|
1219
1302
|
/**
|
|
1220
1303
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1221
1304
|
*/
|
|
@@ -1245,7 +1328,7 @@ declare type __VLS_Props_42 = {
|
|
|
1245
1328
|
/**
|
|
1246
1329
|
* 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).
|
|
1247
1330
|
*/
|
|
1248
|
-
declare type
|
|
1331
|
+
declare type __VLS_Props_46 = {
|
|
1249
1332
|
/**
|
|
1250
1333
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1251
1334
|
*/
|
|
@@ -1274,7 +1357,7 @@ declare type __VLS_Props_43 = {
|
|
|
1274
1357
|
/**
|
|
1275
1358
|
* 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.
|
|
1276
1359
|
*/
|
|
1277
|
-
declare type
|
|
1360
|
+
declare type __VLS_Props_47 = {
|
|
1278
1361
|
/**
|
|
1279
1362
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1280
1363
|
*/
|
|
@@ -1411,6 +1494,10 @@ declare type __VLS_Props_9 = {
|
|
|
1411
1494
|
fluid?: boolean;
|
|
1412
1495
|
};
|
|
1413
1496
|
|
|
1497
|
+
declare type __VLS_PublicProps = {
|
|
1498
|
+
modelValue: number;
|
|
1499
|
+
} & __VLS_Props_34;
|
|
1500
|
+
|
|
1414
1501
|
declare function __VLS_template(): {
|
|
1415
1502
|
attrs: Partial<{}>;
|
|
1416
1503
|
slots: Readonly<{
|
|
@@ -2148,19 +2235,39 @@ export declare const MSelect: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, Co
|
|
|
2148
2235
|
size: "s" | "m";
|
|
2149
2236
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2150
2237
|
|
|
2151
|
-
export declare const
|
|
2238
|
+
export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2239
|
+
"update:modelValue": (value: number) => any;
|
|
2240
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
2241
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2242
|
+
}>, {
|
|
2243
|
+
size: "s" | "m" | "l";
|
|
2244
|
+
appearance: "standard" | "accent";
|
|
2245
|
+
readonly: boolean;
|
|
2246
|
+
compact: boolean;
|
|
2247
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2248
|
+
|
|
2249
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{}>, {
|
|
2152
2250
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2153
2251
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2154
2252
|
|
|
2155
|
-
export declare const MStatusDot: DefineComponent<
|
|
2253
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{}>, {
|
|
2156
2254
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2157
2255
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2158
2256
|
|
|
2257
|
+
export declare const MStatusMessage: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{}>, {
|
|
2258
|
+
status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
|
|
2259
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2260
|
+
|
|
2159
2261
|
export declare const MStatusNotification: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2160
2262
|
|
|
2161
|
-
export declare const
|
|
2263
|
+
export declare const MStepperCompact: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
|
|
2264
|
+
value: number;
|
|
2265
|
+
maxSteps: number;
|
|
2266
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2267
|
+
|
|
2268
|
+
export declare const MTabs: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2162
2269
|
"update:modelValue": (value: number) => any;
|
|
2163
|
-
}, string, PublicProps, Readonly<
|
|
2270
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
2164
2271
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2165
2272
|
}>, {
|
|
2166
2273
|
modelValue: number;
|
|
@@ -2169,20 +2276,21 @@ divider: boolean;
|
|
|
2169
2276
|
tab: HTMLButtonElement;
|
|
2170
2277
|
}, HTMLElement>;
|
|
2171
2278
|
|
|
2172
|
-
export declare const MTag: DefineComponent<
|
|
2279
|
+
export declare const MTag: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2173
2280
|
"update:modelValue": (value: boolean) => any;
|
|
2174
2281
|
"remove-tag": (id: string) => any;
|
|
2175
|
-
}, string, PublicProps, Readonly<
|
|
2282
|
+
}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
|
|
2176
2283
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2177
2284
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
2178
2285
|
}>, {
|
|
2179
2286
|
type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
|
|
2180
2287
|
contextualisedNumber: number;
|
|
2288
|
+
removableLabel: string;
|
|
2181
2289
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2182
2290
|
|
|
2183
|
-
export declare const MTextArea: DefineComponent<
|
|
2291
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2184
2292
|
"update:modelValue": (value: string | number) => any;
|
|
2185
|
-
}, string, PublicProps, Readonly<
|
|
2293
|
+
}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
|
|
2186
2294
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2187
2295
|
}>, {
|
|
2188
2296
|
rows: number;
|
|
@@ -2192,17 +2300,17 @@ export declare const MTextInput: __VLS_WithTemplateSlots_15<typeof __VLS_compone
|
|
|
2192
2300
|
|
|
2193
2301
|
export declare const MToaster: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2194
2302
|
|
|
2195
|
-
export declare const MToggle: DefineComponent<
|
|
2303
|
+
export declare const MToggle: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2196
2304
|
"update:modelValue": (value: boolean) => any;
|
|
2197
|
-
}, string, PublicProps, Readonly<
|
|
2305
|
+
}, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
|
|
2198
2306
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2199
2307
|
}>, {
|
|
2200
2308
|
size: "s" | "m";
|
|
2201
2309
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2202
2310
|
|
|
2203
|
-
export declare const MToggleGroup: DefineComponent<
|
|
2311
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2204
2312
|
"update:modelValue": (value: string[]) => any;
|
|
2205
|
-
}, string, PublicProps, Readonly<
|
|
2313
|
+
}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
|
|
2206
2314
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2207
2315
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2208
2316
|
|