@bethinkpl/design-system 43.0.0 → 45.0.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/design-system.css +1 -1
- package/dist/design-system.js +13826 -13252
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +1 -1
- package/dist/lib/js/components/Callout/Callout.consts.d.ts +32 -0
- package/dist/lib/js/components/{ActionContent/ActionContent.vue.d.ts → Callout/Callout.vue.d.ts} +17 -6
- package/dist/lib/js/components/Callout/index.d.ts +4 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +1 -1
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +5 -5
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +2 -2
- package/dist/lib/js/components/Divider/Divider.vue.d.ts +1 -1
- package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +4 -4
- package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +4 -4
- package/dist/lib/js/components/Dropdown/Dropdown.vue.d.ts +1 -1
- package/dist/lib/js/components/Form/FormField/FormField.utils.d.ts +1 -1
- package/dist/lib/js/components/Form/InputField/InputField.vue.d.ts +2 -2
- package/dist/lib/js/components/Form/PasswordField/PasswordField.vue.d.ts +2 -2
- package/dist/lib/js/components/Form/PinInputField/PinInputField.consts.d.ts +14 -0
- package/dist/lib/js/components/Form/PinInputField/PinInputField.types.d.ts +12 -0
- package/dist/lib/js/components/Form/PinInputField/PinInputField.utils.d.ts +2 -0
- package/dist/lib/js/components/Form/PinInputField/PinInputField.vue.d.ts +91 -0
- package/dist/lib/js/components/Form/PinInputField/index.d.ts +5 -0
- package/dist/lib/js/components/Form/PinInputField/usePinInputFieldWithinForm.d.ts +8 -0
- package/dist/lib/js/components/Form/SelectField/SelectField.vue.d.ts +2 -2
- package/dist/lib/js/components/Form/TextAreaField/TextAreaField.types.d.ts +9 -0
- package/dist/lib/js/components/Form/TextAreaField/TextAreaField.vue.d.ts +76 -0
- package/dist/lib/js/components/Form/TextAreaField/TextAreaFieldAutosized.vue.d.ts +6 -0
- package/dist/lib/js/components/Form/TextAreaField/index.d.ts +4 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +5 -5
- package/dist/lib/js/components/Headers/PageHeader/PageHeader.vue.d.ts +1 -1
- package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +3 -3
- package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
- package/dist/lib/js/components/Image/Image.vue.d.ts +1 -1
- package/dist/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue.d.ts +12 -1
- package/dist/lib/js/components/Menu/MenuDivider/MenuDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +2 -2
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +2 -2
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +2 -2
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +7 -7
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +3 -3
- package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Skeleton/Skeleton.vue.d.ts +1 -1
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +3 -3
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +3 -3
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +2 -2
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +2 -2
- package/dist/lib/js/components/Toast/Toast.consts.d.ts +11 -9
- package/dist/lib/js/components/Toast/Toast.vue.d.ts +51 -433
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -1
- package/dist/lib/js/{components/Form/InputField/useInputFieldWithinForm.d.ts → composables/useTextFieldWithinForm.d.ts} +1 -1
- package/dist/lib/js/index.d.ts +6 -1
- package/lib/js/components/Callout/Callout.consts.ts +25 -0
- package/lib/js/components/Callout/Callout.spec.ts +257 -0
- package/lib/js/components/Callout/Callout.stories.ts +209 -0
- package/lib/js/components/Callout/Callout.vue +161 -0
- package/lib/js/components/Callout/index.ts +4 -0
- package/lib/js/components/Cards/Card/Card.vue +1 -1
- package/lib/js/components/Form/CheckboxGroupField/CheckboxGroupField.spec.ts +15 -0
- package/lib/js/components/Form/CheckboxGroupField/CheckboxGroupField.vue +5 -2
- package/lib/js/components/Form/Form.stories.ts +23 -2
- package/lib/js/components/Form/InputField/InputField.spec.ts +11 -1
- package/lib/js/components/Form/InputField/InputField.vue +7 -4
- package/lib/js/components/Form/PasswordField/PasswordField.vue +1 -1
- package/lib/js/components/Form/PinInputField/PinInputField.consts.ts +18 -0
- package/lib/js/components/Form/PinInputField/PinInputField.spec.ts +394 -0
- package/lib/js/components/Form/PinInputField/PinInputField.stories.ts +124 -0
- package/lib/js/components/Form/PinInputField/PinInputField.types.ts +42 -0
- package/lib/js/components/Form/PinInputField/PinInputField.utils.ts +5 -0
- package/lib/js/components/Form/PinInputField/PinInputField.vue +211 -0
- package/lib/js/components/Form/PinInputField/index.ts +6 -0
- package/lib/js/components/Form/PinInputField/usePinInputFieldWithinForm.ts +29 -0
- package/lib/js/components/Form/SelectField/SelectField.stories.ts +0 -5
- package/lib/js/components/Form/SelectField/useSelectFieldWithinForm.ts +1 -1
- package/lib/js/components/Form/TextAreaField/TextAreaField.spec.ts +341 -0
- package/lib/js/components/Form/TextAreaField/TextAreaField.stories.ts +99 -0
- package/lib/js/components/Form/TextAreaField/TextAreaField.types.ts +23 -0
- package/lib/js/components/Form/TextAreaField/TextAreaField.vue +190 -0
- package/lib/js/components/Form/TextAreaField/TextAreaFieldAutosized.vue +19 -0
- package/lib/js/components/Form/TextAreaField/index.ts +5 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.spec.ts +26 -0
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.stories.ts +16 -3
- package/lib/js/components/LabelValue/LabelValueItem/LabelValueItem.vue +5 -0
- package/lib/js/components/LoadingBar/LoadingBar.spec.ts +84 -0
- package/lib/js/components/LoadingBar/LoadingBar.vue +30 -19
- package/lib/js/components/Toast/Toast.consts.ts +4 -2
- package/lib/js/components/Toast/Toast.spec.ts +177 -0
- package/lib/js/components/Toast/Toast.stories.ts +65 -31
- package/lib/js/components/Toast/Toast.vue +176 -195
- package/lib/js/{components/Form/InputField/useInputFieldWithinForm.ts → composables/useTextFieldWithinForm.ts} +7 -2
- package/lib/js/index.ts +6 -1
- package/package.json +1 -1
- package/dist/lib/js/components/ActionContent/index.d.ts +0 -3
- package/lib/js/components/ActionContent/ActionContent.spec.ts +0 -99
- package/lib/js/components/ActionContent/ActionContent.stories.ts +0 -141
- package/lib/js/components/ActionContent/ActionContent.vue +0 -104
- package/lib/js/components/ActionContent/index.ts +0 -3
|
@@ -470,10 +470,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
470
470
|
}>, {
|
|
471
471
|
info: boolean;
|
|
472
472
|
size: string;
|
|
473
|
-
supportingText: string;
|
|
474
473
|
iconLeft: any;
|
|
475
474
|
iconRight: any;
|
|
476
475
|
isExpanded: boolean;
|
|
476
|
+
supportingText: string;
|
|
477
477
|
titleEllipsis: boolean;
|
|
478
478
|
hasDivider: boolean;
|
|
479
479
|
isExpandable: boolean;
|
|
@@ -1006,9 +1006,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1006
1006
|
type: string;
|
|
1007
1007
|
touchableDeprecated: boolean;
|
|
1008
1008
|
color: string;
|
|
1009
|
+
elevation: string;
|
|
1009
1010
|
radius: string;
|
|
1010
1011
|
state: string;
|
|
1011
|
-
elevation: string;
|
|
1012
1012
|
colorScheme: string;
|
|
1013
1013
|
}, {}, {
|
|
1014
1014
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1216,8 +1216,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1216
1216
|
};
|
|
1217
1217
|
}>> & Readonly<{}>, {
|
|
1218
1218
|
size: string;
|
|
1219
|
-
prominence: string;
|
|
1220
1219
|
isVertical: boolean;
|
|
1220
|
+
prominence: string;
|
|
1221
1221
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1222
1222
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1223
1223
|
export default _default;
|
|
@@ -96,8 +96,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
96
96
|
}>> & Readonly<{}>, {
|
|
97
97
|
size: string;
|
|
98
98
|
color: string;
|
|
99
|
-
isInteractive: boolean;
|
|
100
99
|
state: string;
|
|
100
|
+
isInteractive: boolean;
|
|
101
101
|
isLabelBold: boolean;
|
|
102
102
|
}, {}, {
|
|
103
103
|
Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -75,8 +75,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
75
|
default: string;
|
|
76
76
|
};
|
|
77
77
|
}>> & Readonly<{}>, {
|
|
78
|
-
height: string;
|
|
79
78
|
radius: string;
|
|
79
|
+
height: string;
|
|
80
80
|
width: string;
|
|
81
81
|
}, {}, {
|
|
82
82
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { LabelValueItemSize, LabelValueItemState, LabelValueItemValueColor } from './LabelValueItem.consts';
|
|
2
2
|
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): Readonly<{
|
|
4
|
+
accessory?: () => any;
|
|
5
|
+
}> & {
|
|
6
|
+
accessory?: () => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
9
|
state?: LabelValueItemState;
|
|
5
10
|
label: string;
|
|
6
11
|
valueText: string;
|
|
@@ -15,6 +20,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
20
|
isLabelStrong?: boolean;
|
|
16
21
|
valueColor?: LabelValueItemValueColor;
|
|
17
22
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
18
24
|
export default _default;
|
|
19
25
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
26
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -25,3 +31,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
25
31
|
required: true;
|
|
26
32
|
};
|
|
27
33
|
};
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -64,8 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
};
|
|
65
65
|
}>> & Readonly<{}>, {
|
|
66
66
|
size: string;
|
|
67
|
-
prominence: string;
|
|
68
67
|
isVertical: boolean;
|
|
68
|
+
prominence: string;
|
|
69
69
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
71
|
export default _default;
|
|
@@ -441,7 +441,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
441
441
|
};
|
|
442
442
|
}, {}, {
|
|
443
443
|
calcHeaderFeatureIconColor(): any;
|
|
444
|
-
calcFooterPrimaryButtonColor(): "
|
|
444
|
+
calcFooterPrimaryButtonColor(): "primary" | "neutral";
|
|
445
445
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
446
446
|
calcSingleColumn(): boolean;
|
|
447
447
|
displayFooter(): any;
|
|
@@ -1137,9 +1137,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1137
1137
|
type: string;
|
|
1138
1138
|
touchableDeprecated: boolean;
|
|
1139
1139
|
color: string;
|
|
1140
|
+
elevation: string;
|
|
1140
1141
|
radius: string;
|
|
1141
1142
|
state: string;
|
|
1142
|
-
elevation: string;
|
|
1143
1143
|
colorScheme: string;
|
|
1144
1144
|
}, {}, {
|
|
1145
1145
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -576,7 +576,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
576
576
|
};
|
|
577
577
|
}, {}, {
|
|
578
578
|
calcHeaderFeatureIconColor(): any;
|
|
579
|
-
calcFooterPrimaryButtonColor(): "
|
|
579
|
+
calcFooterPrimaryButtonColor(): "primary" | "neutral";
|
|
580
580
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
581
581
|
calcSingleColumn(): boolean;
|
|
582
582
|
displayFooter(): any;
|
|
@@ -1272,9 +1272,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1272
1272
|
type: string;
|
|
1273
1273
|
touchableDeprecated: boolean;
|
|
1274
1274
|
color: string;
|
|
1275
|
+
elevation: string;
|
|
1275
1276
|
radius: string;
|
|
1276
1277
|
state: string;
|
|
1277
|
-
elevation: string;
|
|
1278
1278
|
colorScheme: string;
|
|
1279
1279
|
}, {}, {
|
|
1280
1280
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -857,9 +857,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
857
857
|
type: string;
|
|
858
858
|
touchableDeprecated: boolean;
|
|
859
859
|
color: string;
|
|
860
|
+
elevation: string;
|
|
860
861
|
radius: string;
|
|
861
862
|
state: string;
|
|
862
|
-
elevation: string;
|
|
863
863
|
colorScheme: string;
|
|
864
864
|
}, {}, {
|
|
865
865
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1112,8 +1112,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1112
1112
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
1113
1113
|
"onDocument-click"?: ((...args: any[]) => any) | undefined;
|
|
1114
1114
|
}>, {
|
|
1115
|
-
radius: string;
|
|
1116
1115
|
placement: string;
|
|
1116
|
+
radius: string;
|
|
1117
1117
|
boundariesSelector: string;
|
|
1118
1118
|
forceShow: boolean;
|
|
1119
1119
|
sameWidth: boolean;
|
|
@@ -263,14 +263,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
263
263
|
size: RichListItemSize;
|
|
264
264
|
type: RichListItemType;
|
|
265
265
|
text: string;
|
|
266
|
+
elevation: "small";
|
|
267
|
+
backgroundColor: RichListItemBackgroundColor;
|
|
268
|
+
state: RichListItemState;
|
|
269
|
+
iconColor: string;
|
|
266
270
|
supportingText: string;
|
|
267
271
|
supportingTextEllipsis: boolean;
|
|
268
272
|
isInteractive: boolean;
|
|
269
|
-
state: RichListItemState;
|
|
270
273
|
isSupportingTextTooltipEnabled: boolean;
|
|
271
|
-
elevation: "small";
|
|
272
|
-
backgroundColor: RichListItemBackgroundColor;
|
|
273
|
-
iconColor: string;
|
|
274
274
|
layout: RichListItemLayout;
|
|
275
275
|
eyebrowEllipsis: boolean;
|
|
276
276
|
textEllipsis: boolean;
|
|
@@ -989,11 +989,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
989
989
|
icon: any;
|
|
990
990
|
size: RichListItemSize;
|
|
991
991
|
type: RichListItemType;
|
|
992
|
-
isInteractive: boolean;
|
|
993
|
-
state: RichListItemState;
|
|
994
992
|
elevation: "small";
|
|
995
993
|
backgroundColor: RichListItemBackgroundColor;
|
|
994
|
+
state: RichListItemState;
|
|
996
995
|
iconColor: string;
|
|
996
|
+
isInteractive: boolean;
|
|
997
997
|
layout: RichListItemLayout;
|
|
998
998
|
borderColor: RichListItemBorderColor;
|
|
999
999
|
isSelected: boolean;
|
|
@@ -1107,8 +1107,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1107
1107
|
};
|
|
1108
1108
|
}>> & Readonly<{}>, {
|
|
1109
1109
|
size: string;
|
|
1110
|
-
prominence: string;
|
|
1111
1110
|
isVertical: boolean;
|
|
1111
|
+
prominence: string;
|
|
1112
1112
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1113
1113
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1114
1114
|
icon: {
|
|
@@ -513,11 +513,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
513
513
|
icon: any;
|
|
514
514
|
size: RichListItemSize;
|
|
515
515
|
type: RichListItemType;
|
|
516
|
-
isInteractive: boolean;
|
|
517
|
-
state: RichListItemState;
|
|
518
516
|
elevation: "small";
|
|
519
517
|
backgroundColor: RichListItemBackgroundColor;
|
|
518
|
+
state: RichListItemState;
|
|
520
519
|
iconColor: string;
|
|
520
|
+
isInteractive: boolean;
|
|
521
521
|
layout: RichListItemLayout;
|
|
522
522
|
borderColor: RichListItemBorderColor;
|
|
523
523
|
isSelected: boolean;
|
|
@@ -631,8 +631,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
631
631
|
};
|
|
632
632
|
}>> & Readonly<{}>, {
|
|
633
633
|
size: string;
|
|
634
|
-
prominence: string;
|
|
635
634
|
isVertical: boolean;
|
|
635
|
+
prominence: string;
|
|
636
636
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
637
637
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
638
638
|
icon: {
|
package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
39
39
|
};
|
|
40
40
|
}>> & Readonly<{}>, {
|
|
41
41
|
size: string;
|
|
42
|
-
prominence: string;
|
|
43
42
|
isVertical: boolean;
|
|
43
|
+
prominence: string;
|
|
44
44
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
45
45
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
46
|
export default _default;
|
|
@@ -37,8 +37,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
37
37
|
default: string;
|
|
38
38
|
};
|
|
39
39
|
}>> & Readonly<{}>, {
|
|
40
|
-
height: string;
|
|
41
40
|
radius: string;
|
|
41
|
+
height: string;
|
|
42
42
|
width: string;
|
|
43
43
|
}, {}, {
|
|
44
44
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
@@ -1046,9 +1046,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1046
1046
|
type: string;
|
|
1047
1047
|
touchableDeprecated: boolean;
|
|
1048
1048
|
color: string;
|
|
1049
|
+
elevation: string;
|
|
1049
1050
|
radius: string;
|
|
1050
1051
|
state: string;
|
|
1051
|
-
elevation: string;
|
|
1052
1052
|
colorScheme: string;
|
|
1053
1053
|
}, {}, {
|
|
1054
1054
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1655,7 +1655,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1655
1655
|
};
|
|
1656
1656
|
}, {}, {
|
|
1657
1657
|
calcHeaderFeatureIconColor(): any;
|
|
1658
|
-
calcFooterPrimaryButtonColor(): "
|
|
1658
|
+
calcFooterPrimaryButtonColor(): "primary" | "neutral";
|
|
1659
1659
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
1660
1660
|
calcSingleColumn(): boolean;
|
|
1661
1661
|
displayFooter(): any;
|
|
@@ -2351,9 +2351,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2351
2351
|
type: string;
|
|
2352
2352
|
touchableDeprecated: boolean;
|
|
2353
2353
|
color: string;
|
|
2354
|
+
elevation: string;
|
|
2354
2355
|
radius: string;
|
|
2355
2356
|
state: string;
|
|
2356
|
-
elevation: string;
|
|
2357
2357
|
colorScheme: string;
|
|
2358
2358
|
}, {}, {
|
|
2359
2359
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts
CHANGED
|
@@ -1107,9 +1107,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1107
1107
|
type: string;
|
|
1108
1108
|
touchableDeprecated: boolean;
|
|
1109
1109
|
color: string;
|
|
1110
|
+
elevation: string;
|
|
1110
1111
|
radius: string;
|
|
1111
1112
|
state: string;
|
|
1112
|
-
elevation: string;
|
|
1113
1113
|
colorScheme: string;
|
|
1114
1114
|
}, {}, {
|
|
1115
1115
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1889,7 +1889,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1889
1889
|
};
|
|
1890
1890
|
}, {}, {
|
|
1891
1891
|
calcHeaderFeatureIconColor(): any;
|
|
1892
|
-
calcFooterPrimaryButtonColor(): "
|
|
1892
|
+
calcFooterPrimaryButtonColor(): "primary" | "neutral";
|
|
1893
1893
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
1894
1894
|
calcSingleColumn(): boolean;
|
|
1895
1895
|
displayFooter(): any;
|
|
@@ -2585,9 +2585,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2585
2585
|
type: string;
|
|
2586
2586
|
touchableDeprecated: boolean;
|
|
2587
2587
|
color: string;
|
|
2588
|
+
elevation: string;
|
|
2588
2589
|
radius: string;
|
|
2589
2590
|
state: string;
|
|
2590
|
-
elevation: string;
|
|
2591
2591
|
colorScheme: string;
|
|
2592
2592
|
}, {}, {
|
|
2593
2593
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -299,8 +299,8 @@ export declare const data: () => {
|
|
|
299
299
|
readonly ACCENT: "accent";
|
|
300
300
|
}>;
|
|
301
301
|
allowedColorsToBorderColorsMap: {
|
|
302
|
-
neutral: ("
|
|
303
|
-
neutralWeak: ("
|
|
302
|
+
neutral: ("primary" | "neutral" | "neutralWeak" | "primaryWeak")[];
|
|
303
|
+
neutralWeak: ("primary" | "neutral" | "neutralWeak" | "primaryWeak")[];
|
|
304
304
|
primary: ("primary" | "primaryWeak")[];
|
|
305
305
|
success: ("success" | "successWeak")[];
|
|
306
306
|
fail: ("fail" | "failWeak")[];
|
|
@@ -126,11 +126,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
126
126
|
};
|
|
127
127
|
}>> & Readonly<{}>, {
|
|
128
128
|
color: import('./Tile.consts').TileColor;
|
|
129
|
-
eyebrowText: string;
|
|
130
|
-
isEyebrowTextUppercase: boolean;
|
|
131
129
|
state: import('./Tile.consts').TileState;
|
|
132
130
|
iconLeft: Record<string, any>;
|
|
133
131
|
iconRight: Record<string, any>;
|
|
132
|
+
eyebrowText: string;
|
|
133
|
+
isEyebrowTextUppercase: boolean;
|
|
134
134
|
interactive: boolean;
|
|
135
135
|
additionalText: string;
|
|
136
136
|
eyebrowEllipsis: boolean;
|
|
@@ -3,20 +3,22 @@ import { Value } from '../../utils/type.utils';
|
|
|
3
3
|
export declare const TOAST_SIZES: {
|
|
4
4
|
readonly SMALL: "small";
|
|
5
5
|
readonly MEDIUM: "medium";
|
|
6
|
+
readonly LARGE: "large";
|
|
6
7
|
};
|
|
7
8
|
export type ToastSizes = Value<typeof TOAST_SIZES>;
|
|
8
9
|
export declare const TOAST_COLORS: {
|
|
9
|
-
NEUTRAL_HEAVY:
|
|
10
|
-
NEUTRAL_STRONG:
|
|
11
|
-
SUCCESS:
|
|
12
|
-
WARNING:
|
|
13
|
-
DANGER:
|
|
14
|
-
INFO:
|
|
10
|
+
readonly NEUTRAL_HEAVY: "neutralHeavy";
|
|
11
|
+
readonly NEUTRAL_STRONG: "neutralStrong";
|
|
12
|
+
readonly SUCCESS: "success";
|
|
13
|
+
readonly WARNING: "warning";
|
|
14
|
+
readonly DANGER: "danger";
|
|
15
|
+
readonly INFO: "info";
|
|
15
16
|
};
|
|
16
17
|
export type ToastColors = Value<typeof TOAST_COLORS>;
|
|
17
18
|
export declare const TOAST_POSITIONS: {
|
|
18
|
-
LEFT:
|
|
19
|
-
CENTER:
|
|
20
|
-
RIGHT:
|
|
19
|
+
readonly LEFT: "left";
|
|
20
|
+
readonly CENTER: "center";
|
|
21
|
+
readonly RIGHT: "right";
|
|
22
|
+
readonly NONE: "none";
|
|
21
23
|
};
|
|
22
24
|
export type ToastPositions = Value<typeof TOAST_POSITIONS>;
|