@bethinkpl/design-system 39.0.1 → 40.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/README.md +1 -1
- package/dist/design-system.css +1 -1
- package/dist/design-system.js +19314 -19127
- package/dist/design-system.js.map +1 -1
- package/dist/lib/js/components/ActionContent/ActionContent.vue.d.ts +42 -0
- package/dist/lib/js/components/ActionContent/index.d.ts +3 -0
- package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +4 -1
- package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +13 -8
- package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +22 -9
- package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +78 -21
- package/dist/lib/js/components/Chip/Chip.vue.d.ts +2 -0
- package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +4 -1
- package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +8 -5
- package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +5 -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/DrawerHeader/DrawerHeader.vue.d.ts +12 -3
- package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +3 -0
- package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +13 -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/RadioButton/RadioButton.vue.d.ts +3 -0
- package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +11 -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 +9 -3
- package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
- package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +3 -0
- package/dist/lib/js/components/Image/Image.vue.d.ts +1 -1
- package/dist/lib/js/components/Menu/MenuDivider/MenuDivider.vue.d.ts +1 -1
- package/dist/lib/js/components/Modal/Modal.vue.d.ts +3 -0
- package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +8 -2
- package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +8 -2
- package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +8 -2
- package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +3 -0
- package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +3 -0
- package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +45 -23
- package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +7 -4
- 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/Statuses/AccessStatus/AccessStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +3 -0
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +85 -22
- package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +85 -22
- package/dist/lib/js/components/Switch/Switch.vue.d.ts +3 -0
- package/dist/lib/js/components/TextGroup/TextGroup.consts.d.ts +14 -3
- package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +8 -3
- package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +5 -2
- package/dist/lib/js/components/Tile/Tile.vue.d.ts +2 -2
- package/dist/lib/js/components/Toast/Toast.vue.d.ts +76 -22
- package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +5 -2
- package/dist/lib/js/components/Well/Well.consts.d.ts +24 -0
- package/dist/lib/js/components/Well/Well.vue.d.ts +13 -1
- package/dist/lib/js/icons/fontawesome.d.ts +2 -0
- package/dist/lib/js/index.d.ts +2 -0
- package/dist/lib/js/utils/type.utils.d.ts +3 -0
- package/lib/images/icons/comment-lock.svg +1 -0
- package/lib/js/components/ActionContent/ActionContent.spec.ts +99 -0
- package/lib/js/components/ActionContent/ActionContent.stories.ts +141 -0
- package/lib/js/components/ActionContent/ActionContent.vue +104 -0
- package/lib/js/components/ActionContent/index.ts +3 -0
- package/lib/js/components/Cards/Card/Card.consts.ts +15 -8
- package/lib/js/components/Cards/Card/Card.spec.ts +61 -1
- package/lib/js/components/Cards/Card/Card.stories.ts +20 -13
- package/lib/js/components/Cards/Card/Card.vue +65 -34
- package/lib/js/components/Chip/Chip.spec.ts +28 -0
- package/lib/js/components/Chip/Chip.stories.ts +7 -2
- package/lib/js/components/Chip/Chip.vue +14 -3
- package/lib/js/components/Icons/Icon/Icon.consts.ts +2 -0
- package/lib/js/components/ProgressDonutChart/ProgressDonutChart.spec.ts +3 -3
- package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +8 -1
- package/lib/js/components/TextGroup/TextGroup.consts.ts +15 -1
- package/lib/js/components/TextGroup/TextGroup.stories.ts +14 -5
- package/lib/js/components/TextGroup/TextGroup.vue +51 -28
- package/lib/js/components/Well/Well.consts.ts +16 -0
- package/lib/js/components/Well/Well.spec.ts +112 -0
- package/lib/js/components/Well/Well.stories.ts +90 -1
- package/lib/js/components/Well/Well.vue +135 -4
- package/lib/js/icons/fontawesome.ts +4 -0
- package/lib/js/index.ts +2 -0
- package/lib/js/utils/type.utils.ts +16 -0
- package/package.json +14 -6
|
@@ -70,6 +70,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
ICONS: {
|
|
71
71
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
72
72
|
readonly CHANGE: VueConstructor<Vue>;
|
|
73
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
73
74
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
74
75
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
75
76
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -171,6 +172,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
171
172
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
172
173
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
173
174
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
174
176
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
177
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
178
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -334,6 +336,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
334
336
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
335
337
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
336
338
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
339
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
337
340
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
338
341
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
339
342
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -430,8 +433,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
430
433
|
onEyebrowClicked?: ((...args: any[]) => any) | undefined;
|
|
431
434
|
}>, {
|
|
432
435
|
title: string;
|
|
433
|
-
leftIcon: Record<string, any> | null;
|
|
434
436
|
eyebrowText: string;
|
|
437
|
+
leftIcon: Record<string, any> | null;
|
|
435
438
|
eyebrowEllipsis: boolean;
|
|
436
439
|
isInteractiveEyebrow: boolean;
|
|
437
440
|
titleEllipsis: boolean;
|
|
@@ -571,8 +574,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
571
574
|
};
|
|
572
575
|
}>> & Readonly<{}>, {
|
|
573
576
|
size: string;
|
|
574
|
-
isVertical: boolean;
|
|
575
577
|
prominence: string;
|
|
578
|
+
isVertical: boolean;
|
|
576
579
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
577
580
|
Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
578
581
|
icon: {
|
|
@@ -705,6 +708,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
705
708
|
ICONS: Readonly<{
|
|
706
709
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
707
710
|
readonly CHANGE: VueConstructor<Vue>;
|
|
711
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
708
712
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
709
713
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
710
714
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -806,6 +810,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
806
810
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
807
811
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
808
812
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
813
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
809
814
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
810
815
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
811
816
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -969,6 +974,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
969
974
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
970
975
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
971
976
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
977
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
972
978
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
973
979
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
974
980
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1087,9 +1093,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1087
1093
|
type: string;
|
|
1088
1094
|
touchableDeprecated: boolean;
|
|
1089
1095
|
color: string;
|
|
1090
|
-
elevation: string;
|
|
1091
1096
|
radius: string;
|
|
1092
1097
|
state: string;
|
|
1098
|
+
elevation: string;
|
|
1093
1099
|
colorScheme: string;
|
|
1094
1100
|
}, {}, {
|
|
1095
1101
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1266,6 +1272,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1266
1272
|
type: PropType<boolean>;
|
|
1267
1273
|
};
|
|
1268
1274
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1275
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1269
1276
|
radius: {
|
|
1270
1277
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1271
1278
|
};
|
|
@@ -1308,6 +1315,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1308
1315
|
type: PropType<boolean>;
|
|
1309
1316
|
};
|
|
1310
1317
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1318
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1311
1319
|
radius: {
|
|
1312
1320
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1313
1321
|
};
|
|
@@ -1344,6 +1352,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1344
1352
|
type: PropType<boolean>;
|
|
1345
1353
|
};
|
|
1346
1354
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1355
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1347
1356
|
radius: {
|
|
1348
1357
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1349
1358
|
};
|
|
@@ -23,6 +23,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
23
23
|
ICONS: Readonly<{
|
|
24
24
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
25
25
|
readonly CHANGE: VueConstructor<Vue>;
|
|
26
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
26
27
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
27
28
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
28
29
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -124,6 +125,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
125
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
125
126
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
126
127
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
127
129
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
130
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
129
131
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -287,6 +289,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
287
289
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
288
290
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
289
291
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
292
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
290
293
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
291
294
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
292
295
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -82,6 +82,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
82
82
|
ICONS: {
|
|
83
83
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
84
84
|
readonly CHANGE: VueConstructor<Vue>;
|
|
85
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
85
86
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
86
87
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
87
88
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -183,6 +184,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
183
184
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
184
185
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
185
186
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
187
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
186
188
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
187
189
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
188
190
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -346,6 +348,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
346
348
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
347
349
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
348
350
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
351
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
349
352
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
350
353
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
351
354
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -429,6 +432,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
429
432
|
info: boolean;
|
|
430
433
|
size: string;
|
|
431
434
|
title: string;
|
|
435
|
+
supportingText: string;
|
|
432
436
|
iconLeft: any;
|
|
433
437
|
iconRight: any;
|
|
434
438
|
isExpanded: boolean;
|
|
@@ -438,7 +442,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
438
442
|
iconLeftColor: string;
|
|
439
443
|
iconRightColor: string;
|
|
440
444
|
eyebrow: string;
|
|
441
|
-
supportingText: string;
|
|
442
445
|
}, {}, {
|
|
443
446
|
DsSectionHeader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
444
447
|
isExpandable: {
|
|
@@ -511,6 +514,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
511
514
|
ICONS: Readonly<{
|
|
512
515
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
513
516
|
readonly CHANGE: VueConstructor<Vue>;
|
|
517
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
514
518
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
515
519
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
516
520
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -612,6 +616,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
612
616
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
613
617
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
614
618
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
619
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
615
620
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
616
621
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
617
622
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -775,6 +780,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
775
780
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
776
781
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
777
782
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
783
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
778
784
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
779
785
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
780
786
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -899,6 +905,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
899
905
|
}>, {
|
|
900
906
|
info: boolean;
|
|
901
907
|
size: string;
|
|
908
|
+
supportingText: string;
|
|
902
909
|
iconLeft: any;
|
|
903
910
|
iconRight: any;
|
|
904
911
|
isExpanded: boolean;
|
|
@@ -909,7 +916,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
909
916
|
iconLeftColor: string;
|
|
910
917
|
iconRightColor: string;
|
|
911
918
|
eyebrow: string;
|
|
912
|
-
supportingText: string;
|
|
913
919
|
mobileLayout: string;
|
|
914
920
|
}, {}, {
|
|
915
921
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1043,6 +1049,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1043
1049
|
ICONS: Readonly<{
|
|
1044
1050
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
1045
1051
|
readonly CHANGE: VueConstructor<Vue>;
|
|
1052
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
1046
1053
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
1047
1054
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
1048
1055
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -1144,6 +1151,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1144
1151
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1145
1152
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1146
1153
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1154
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1147
1155
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1148
1156
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1149
1157
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1307,6 +1315,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1307
1315
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1308
1316
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1309
1317
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1318
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1310
1319
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1311
1320
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1312
1321
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1425,9 +1434,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1425
1434
|
type: string;
|
|
1426
1435
|
touchableDeprecated: boolean;
|
|
1427
1436
|
color: string;
|
|
1428
|
-
elevation: string;
|
|
1429
1437
|
radius: string;
|
|
1430
1438
|
state: string;
|
|
1439
|
+
elevation: string;
|
|
1431
1440
|
colorScheme: string;
|
|
1432
1441
|
}, {}, {
|
|
1433
1442
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1635,8 +1644,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1635
1644
|
};
|
|
1636
1645
|
}>> & Readonly<{}>, {
|
|
1637
1646
|
size: string;
|
|
1638
|
-
isVertical: boolean;
|
|
1639
1647
|
prominence: string;
|
|
1648
|
+
isVertical: boolean;
|
|
1640
1649
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1641
1650
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1642
1651
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -130,14 +130,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
130
130
|
onClick?: (() => any) | undefined;
|
|
131
131
|
}>, {
|
|
132
132
|
color: import('../../Tile').TileColor;
|
|
133
|
+
eyebrowText: string;
|
|
134
|
+
isEyebrowTextUppercase: boolean;
|
|
133
135
|
state: import('../../Tile').TileState;
|
|
134
136
|
iconLeft: Record<string, any>;
|
|
135
137
|
iconRight: Record<string, any>;
|
|
136
138
|
borderColor: import('../../Tile').TileBorderColors;
|
|
137
139
|
interactive: boolean;
|
|
138
|
-
eyebrowText: string;
|
|
139
140
|
additionalText: string;
|
|
140
|
-
isEyebrowTextUppercase: boolean;
|
|
141
141
|
eyebrowEllipsis: boolean;
|
|
142
142
|
textEllipsis: boolean;
|
|
143
143
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
@@ -271,14 +271,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
271
271
|
};
|
|
272
272
|
}>> & Readonly<{}>, {
|
|
273
273
|
color: import('../../Tile').TileColor;
|
|
274
|
+
eyebrowText: string;
|
|
275
|
+
isEyebrowTextUppercase: boolean;
|
|
274
276
|
state: import('../../Tile').TileState;
|
|
275
277
|
iconLeft: Record<string, any>;
|
|
276
278
|
iconRight: Record<string, any>;
|
|
277
279
|
borderColor: import('../../Tile').TileBorderColors;
|
|
278
280
|
interactive: boolean;
|
|
279
|
-
eyebrowText: string;
|
|
280
281
|
additionalText: string;
|
|
281
|
-
isEyebrowTextUppercase: boolean;
|
|
282
282
|
eyebrowEllipsis: boolean;
|
|
283
283
|
textEllipsis: boolean;
|
|
284
284
|
additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
|
|
@@ -85,8 +85,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
85
85
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
86
86
|
"onDocument-click"?: ((...args: any[]) => any) | undefined;
|
|
87
87
|
}>, {
|
|
88
|
-
placement: string;
|
|
89
88
|
radius: string;
|
|
89
|
+
placement: string;
|
|
90
90
|
boundariesSelector: string;
|
|
91
91
|
forceShow: boolean;
|
|
92
92
|
sameWidth: boolean;
|
|
@@ -2,7 +2,7 @@ import { FormFieldProps } from './FormField.types';
|
|
|
2
2
|
|
|
3
3
|
export declare function extractFormFieldProps({ label, state, hasRequiredIndicator, labelInfo, subLabel, fieldId, messageText, }: FormFieldProps, errors?: Array<string>): {
|
|
4
4
|
label: string | undefined;
|
|
5
|
-
state: "
|
|
5
|
+
state: "default" | "success" | "error" | "disabled" | undefined;
|
|
6
6
|
hasRequiredIndicator: boolean | undefined;
|
|
7
7
|
labelInfo: string | undefined;
|
|
8
8
|
subLabel: string | undefined;
|
|
@@ -18,7 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
18
18
|
type: import('vue').PropType<string>;
|
|
19
19
|
};
|
|
20
20
|
state: {
|
|
21
|
-
type: import('vue').PropType<"
|
|
21
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
22
22
|
};
|
|
23
23
|
hasRequiredIndicator: {
|
|
24
24
|
type: import('vue').PropType<boolean>;
|
|
@@ -51,7 +51,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
51
51
|
type: import('vue').PropType<string>;
|
|
52
52
|
};
|
|
53
53
|
state: {
|
|
54
|
-
type: import('vue').PropType<"
|
|
54
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
55
55
|
};
|
|
56
56
|
hasRequiredIndicator: {
|
|
57
57
|
type: import('vue').PropType<boolean>;
|
|
@@ -11,7 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
11
11
|
type: import('vue').PropType<string>;
|
|
12
12
|
};
|
|
13
13
|
state: {
|
|
14
|
-
type: import('vue').PropType<"
|
|
14
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
15
15
|
};
|
|
16
16
|
hasRequiredIndicator: {
|
|
17
17
|
type: import('vue').PropType<boolean>;
|
|
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
43
|
type: import('vue').PropType<string>;
|
|
44
44
|
};
|
|
45
45
|
state: {
|
|
46
|
-
type: import('vue').PropType<"
|
|
46
|
+
type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
|
|
47
47
|
};
|
|
48
48
|
hasRequiredIndicator: {
|
|
49
49
|
type: import('vue').PropType<boolean>;
|
|
@@ -24,6 +24,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
24
|
ICONS: Readonly<{
|
|
25
25
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
26
26
|
readonly CHANGE: VueConstructor<Vue>;
|
|
27
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
27
28
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
28
29
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
29
30
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -125,6 +126,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
126
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
126
127
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
127
128
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
129
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
130
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
129
131
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
130
132
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -288,6 +290,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
288
290
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
289
291
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
290
292
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
293
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
291
294
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
292
295
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
293
296
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -70,6 +70,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
ICONS: Readonly<{
|
|
71
71
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
72
72
|
readonly CHANGE: VueConstructor<Vue>;
|
|
73
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
73
74
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
74
75
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
75
76
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -171,6 +172,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
171
172
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
172
173
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
173
174
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
174
176
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
177
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
178
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -334,6 +336,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
334
336
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
335
337
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
336
338
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
339
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
337
340
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
338
341
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
339
342
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -418,9 +421,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
418
421
|
onClose?: (() => any) | undefined;
|
|
419
422
|
onTitleClick?: (() => any) | undefined;
|
|
420
423
|
}>, {
|
|
424
|
+
eyebrowText: string;
|
|
421
425
|
state: string;
|
|
422
426
|
borderColor: string;
|
|
423
|
-
eyebrowText: string;
|
|
424
427
|
shortTitle: string;
|
|
425
428
|
isTitleInteractive: boolean;
|
|
426
429
|
areKeyboardShortcutsDisabled: boolean;
|
|
@@ -482,6 +485,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
482
485
|
ICONS: Readonly<{
|
|
483
486
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
484
487
|
readonly CHANGE: VueConstructor<Vue>;
|
|
488
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
485
489
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
486
490
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
487
491
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -583,6 +587,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
583
587
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
584
588
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
585
589
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
590
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
586
591
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
587
592
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
588
593
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -746,6 +751,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
746
751
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
747
752
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
748
753
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
754
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
749
755
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
750
756
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
751
757
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -864,9 +870,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
864
870
|
type: string;
|
|
865
871
|
touchableDeprecated: boolean;
|
|
866
872
|
color: string;
|
|
867
|
-
elevation: string;
|
|
868
873
|
radius: string;
|
|
869
874
|
state: string;
|
|
875
|
+
elevation: string;
|
|
870
876
|
colorScheme: string;
|
|
871
877
|
}, {}, {
|
|
872
878
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1074,8 +1080,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1074
1080
|
};
|
|
1075
1081
|
}>> & Readonly<{}>, {
|
|
1076
1082
|
size: string;
|
|
1077
|
-
isVertical: boolean;
|
|
1078
1083
|
prominence: string;
|
|
1084
|
+
isVertical: boolean;
|
|
1079
1085
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1080
1086
|
DsDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1081
1087
|
boundariesSelector: {
|
|
@@ -1162,8 +1168,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1162
1168
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
1163
1169
|
"onDocument-click"?: ((...args: any[]) => any) | undefined;
|
|
1164
1170
|
}>, {
|
|
1165
|
-
placement: string;
|
|
1166
1171
|
radius: string;
|
|
1172
|
+
placement: string;
|
|
1167
1173
|
boundariesSelector: string;
|
|
1168
1174
|
forceShow: boolean;
|
|
1169
1175
|
sameWidth: boolean;
|
|
@@ -1208,9 +1214,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1208
1214
|
default: string;
|
|
1209
1215
|
};
|
|
1210
1216
|
}>> & Readonly<{}>, {
|
|
1217
|
+
height: string;
|
|
1211
1218
|
radius: string;
|
|
1212
1219
|
width: string;
|
|
1213
|
-
height: string;
|
|
1214
1220
|
}, {}, {
|
|
1215
1221
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
1216
1222
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -86,8 +86,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
86
|
};
|
|
87
87
|
}>> & Readonly<{}>, {
|
|
88
88
|
size: string;
|
|
89
|
-
isVertical: boolean;
|
|
90
89
|
prominence: string;
|
|
90
|
+
isVertical: boolean;
|
|
91
91
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
92
92
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
93
93
|
export default _default;
|
|
@@ -72,6 +72,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
72
|
ICONS: Readonly<{
|
|
73
73
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
74
74
|
readonly CHANGE: VueConstructor<Vue>;
|
|
75
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
75
76
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
76
77
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
77
78
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -173,6 +174,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
173
174
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
174
175
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
175
176
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
176
178
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
177
179
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
178
180
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -336,6 +338,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
336
338
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
337
339
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
338
340
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
341
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
339
342
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
340
343
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
341
344
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -460,6 +463,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
460
463
|
}>, {
|
|
461
464
|
info: boolean;
|
|
462
465
|
size: string;
|
|
466
|
+
supportingText: string;
|
|
463
467
|
iconLeft: any;
|
|
464
468
|
iconRight: any;
|
|
465
469
|
isExpanded: boolean;
|
|
@@ -470,7 +474,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
470
474
|
iconLeftColor: string;
|
|
471
475
|
iconRightColor: string;
|
|
472
476
|
eyebrow: string;
|
|
473
|
-
supportingText: string;
|
|
474
477
|
mobileLayout: string;
|
|
475
478
|
}, {}, {
|
|
476
479
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -604,6 +607,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
604
607
|
ICONS: Readonly<{
|
|
605
608
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
606
609
|
readonly CHANGE: VueConstructor<Vue>;
|
|
610
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
607
611
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
608
612
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
609
613
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -705,6 +709,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
705
709
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
706
710
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
707
711
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
712
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
708
713
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
709
714
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
710
715
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -868,6 +873,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
868
873
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
869
874
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
870
875
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
876
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
871
877
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
872
878
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
873
879
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -986,9 +992,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
986
992
|
type: string;
|
|
987
993
|
touchableDeprecated: boolean;
|
|
988
994
|
color: string;
|
|
989
|
-
elevation: string;
|
|
990
995
|
radius: string;
|
|
991
996
|
state: string;
|
|
997
|
+
elevation: string;
|
|
992
998
|
colorScheme: string;
|
|
993
999
|
}, {}, {
|
|
994
1000
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1196,8 +1202,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1196
1202
|
};
|
|
1197
1203
|
}>> & Readonly<{}>, {
|
|
1198
1204
|
size: string;
|
|
1199
|
-
isVertical: boolean;
|
|
1200
1205
|
prominence: string;
|
|
1206
|
+
isVertical: boolean;
|
|
1201
1207
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1202
1208
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1203
1209
|
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
|
-
state: string;
|
|
100
99
|
isInteractive: boolean;
|
|
100
|
+
state: string;
|
|
101
101
|
isLabelBold: boolean;
|
|
102
102
|
}, {}, {
|
|
103
103
|
Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -30,6 +30,7 @@ export type IconSize = Value<typeof ICON_SIZES>;
|
|
|
30
30
|
export declare const ICONS: {
|
|
31
31
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
32
32
|
readonly CHANGE: VueConstructor<Vue>;
|
|
33
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
33
34
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
34
35
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
35
36
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -131,6 +132,7 @@ export declare const ICONS: {
|
|
|
131
132
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
132
133
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
133
134
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
135
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
134
136
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
135
137
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
136
138
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -294,6 +296,7 @@ export declare const ICONS: {
|
|
|
294
296
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
295
297
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
296
298
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
299
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
297
300
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
298
301
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
299
302
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -69,9 +69,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
69
69
|
default: string;
|
|
70
70
|
};
|
|
71
71
|
}>> & Readonly<{}>, {
|
|
72
|
+
height: string;
|
|
72
73
|
radius: string;
|
|
73
74
|
width: string;
|
|
74
|
-
height: string;
|
|
75
75
|
}, {}, {
|
|
76
76
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
77
77
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -64,8 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
};
|
|
65
65
|
}>> & Readonly<{}>, {
|
|
66
66
|
size: string;
|
|
67
|
-
isVertical: boolean;
|
|
68
67
|
prominence: string;
|
|
68
|
+
isVertical: boolean;
|
|
69
69
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
71
|
export default _default;
|