@bethinkpl/design-system 39.1.0 → 40.0.1
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 +19320 -19133
- 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;
|
|
@@ -273,6 +275,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
273
275
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
274
276
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
275
277
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
279
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
280
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -431,8 +434,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
431
434
|
onEyebrowClicked?: ((...args: any[]) => any) | undefined;
|
|
432
435
|
}>, {
|
|
433
436
|
title: string;
|
|
434
|
-
leftIcon: Record<string, any> | null;
|
|
435
437
|
eyebrowText: string;
|
|
438
|
+
leftIcon: Record<string, any> | null;
|
|
436
439
|
eyebrowEllipsis: boolean;
|
|
437
440
|
isInteractiveEyebrow: boolean;
|
|
438
441
|
titleEllipsis: boolean;
|
|
@@ -572,8 +575,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
572
575
|
};
|
|
573
576
|
}>> & Readonly<{}>, {
|
|
574
577
|
size: string;
|
|
575
|
-
isVertical: boolean;
|
|
576
578
|
prominence: string;
|
|
579
|
+
isVertical: boolean;
|
|
577
580
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
578
581
|
Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
579
582
|
icon: {
|
|
@@ -706,6 +709,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
706
709
|
ICONS: Readonly<{
|
|
707
710
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
708
711
|
readonly CHANGE: VueConstructor<Vue>;
|
|
712
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
709
713
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
710
714
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
711
715
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -807,6 +811,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
807
811
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
808
812
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
809
813
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
814
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
810
815
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
811
816
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
812
817
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -909,6 +914,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
909
914
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
910
915
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
911
916
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
917
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
912
918
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
913
919
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
914
920
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1089,9 +1095,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1089
1095
|
type: string;
|
|
1090
1096
|
touchableDeprecated: boolean;
|
|
1091
1097
|
color: string;
|
|
1092
|
-
elevation: string;
|
|
1093
1098
|
radius: string;
|
|
1094
1099
|
state: string;
|
|
1100
|
+
elevation: string;
|
|
1095
1101
|
colorScheme: string;
|
|
1096
1102
|
}, {}, {
|
|
1097
1103
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1268,6 +1274,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1268
1274
|
type: PropType<boolean>;
|
|
1269
1275
|
};
|
|
1270
1276
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1277
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1271
1278
|
radius: {
|
|
1272
1279
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1273
1280
|
};
|
|
@@ -1310,6 +1317,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1310
1317
|
type: PropType<boolean>;
|
|
1311
1318
|
};
|
|
1312
1319
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1320
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1313
1321
|
radius: {
|
|
1314
1322
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1315
1323
|
};
|
|
@@ -1346,6 +1354,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1346
1354
|
type: PropType<boolean>;
|
|
1347
1355
|
};
|
|
1348
1356
|
leftIcon: import('../../Icons/Icon').IconItem | null;
|
|
1357
|
+
rightIcon: import('../../Icons/Icon').IconItem | null;
|
|
1349
1358
|
radius: {
|
|
1350
1359
|
type: PropType<import('../../Chip').ChipRadius>;
|
|
1351
1360
|
};
|
|
@@ -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;
|
|
@@ -226,6 +228,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
226
228
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
227
229
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
228
230
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
231
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
229
232
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
230
233
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
231
234
|
readonly FA_PEN_TO_SQUARE: 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;
|
|
@@ -285,6 +287,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
285
287
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
286
288
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
287
289
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
290
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
288
291
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
289
292
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
290
293
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -430,6 +433,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
430
433
|
info: boolean;
|
|
431
434
|
size: string;
|
|
432
435
|
title: string;
|
|
436
|
+
supportingText: string;
|
|
433
437
|
iconLeft: any;
|
|
434
438
|
iconRight: any;
|
|
435
439
|
isExpanded: boolean;
|
|
@@ -439,7 +443,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
439
443
|
iconLeftColor: string;
|
|
440
444
|
iconRightColor: string;
|
|
441
445
|
eyebrow: string;
|
|
442
|
-
supportingText: string;
|
|
443
446
|
}, {}, {
|
|
444
447
|
DsSectionHeader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
445
448
|
isExpandable: {
|
|
@@ -512,6 +515,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
512
515
|
ICONS: Readonly<{
|
|
513
516
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
514
517
|
readonly CHANGE: VueConstructor<Vue>;
|
|
518
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
515
519
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
516
520
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
517
521
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -613,6 +617,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
613
617
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
614
618
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
615
619
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
620
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
616
621
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
617
622
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
618
623
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -715,6 +720,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
715
720
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
716
721
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
717
722
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
723
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
718
724
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
719
725
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
720
726
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -901,6 +907,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
901
907
|
}>, {
|
|
902
908
|
info: boolean;
|
|
903
909
|
size: string;
|
|
910
|
+
supportingText: string;
|
|
904
911
|
iconLeft: any;
|
|
905
912
|
iconRight: any;
|
|
906
913
|
isExpanded: boolean;
|
|
@@ -911,7 +918,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
911
918
|
iconLeftColor: string;
|
|
912
919
|
iconRightColor: string;
|
|
913
920
|
eyebrow: string;
|
|
914
|
-
supportingText: string;
|
|
915
921
|
mobileLayout: string;
|
|
916
922
|
}, {}, {
|
|
917
923
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1045,6 +1051,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1045
1051
|
ICONS: Readonly<{
|
|
1046
1052
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
1047
1053
|
readonly CHANGE: VueConstructor<Vue>;
|
|
1054
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
1048
1055
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
1049
1056
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
1050
1057
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -1146,6 +1153,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1146
1153
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1147
1154
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1148
1155
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1156
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1149
1157
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1150
1158
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1151
1159
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1248,6 +1256,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1248
1256
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1249
1257
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1250
1258
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1259
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1251
1260
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1252
1261
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1253
1262
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1428,9 +1437,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1428
1437
|
type: string;
|
|
1429
1438
|
touchableDeprecated: boolean;
|
|
1430
1439
|
color: string;
|
|
1431
|
-
elevation: string;
|
|
1432
1440
|
radius: string;
|
|
1433
1441
|
state: string;
|
|
1442
|
+
elevation: string;
|
|
1434
1443
|
colorScheme: string;
|
|
1435
1444
|
}, {}, {
|
|
1436
1445
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1638,8 +1647,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1638
1647
|
};
|
|
1639
1648
|
}>> & Readonly<{}>, {
|
|
1640
1649
|
size: string;
|
|
1641
|
-
isVertical: boolean;
|
|
1642
1650
|
prominence: string;
|
|
1651
|
+
isVertical: boolean;
|
|
1643
1652
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1644
1653
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1645
1654
|
}, {}, 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;
|
|
@@ -227,6 +229,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
227
229
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
228
230
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
229
231
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
232
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
230
233
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
231
234
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
232
235
|
readonly FA_PEN_TO_SQUARE: 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;
|
|
@@ -273,6 +275,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
273
275
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
274
276
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
275
277
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
279
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
280
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -419,9 +422,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
419
422
|
onClose?: (() => any) | undefined;
|
|
420
423
|
onTitleClick?: (() => any) | undefined;
|
|
421
424
|
}>, {
|
|
425
|
+
eyebrowText: string;
|
|
422
426
|
state: string;
|
|
423
427
|
borderColor: string;
|
|
424
|
-
eyebrowText: string;
|
|
425
428
|
shortTitle: string;
|
|
426
429
|
isTitleInteractive: boolean;
|
|
427
430
|
areKeyboardShortcutsDisabled: boolean;
|
|
@@ -483,6 +486,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
483
486
|
ICONS: Readonly<{
|
|
484
487
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
485
488
|
readonly CHANGE: VueConstructor<Vue>;
|
|
489
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
486
490
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
487
491
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
488
492
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -584,6 +588,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
584
588
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
585
589
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
586
590
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
591
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
587
592
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
588
593
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
589
594
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -686,6 +691,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
686
691
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
687
692
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
688
693
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
694
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
689
695
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
690
696
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
691
697
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -866,9 +872,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
866
872
|
type: string;
|
|
867
873
|
touchableDeprecated: boolean;
|
|
868
874
|
color: string;
|
|
869
|
-
elevation: string;
|
|
870
875
|
radius: string;
|
|
871
876
|
state: string;
|
|
877
|
+
elevation: string;
|
|
872
878
|
colorScheme: string;
|
|
873
879
|
}, {}, {
|
|
874
880
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1076,8 +1082,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1076
1082
|
};
|
|
1077
1083
|
}>> & Readonly<{}>, {
|
|
1078
1084
|
size: string;
|
|
1079
|
-
isVertical: boolean;
|
|
1080
1085
|
prominence: string;
|
|
1086
|
+
isVertical: boolean;
|
|
1081
1087
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1082
1088
|
DsDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1083
1089
|
boundariesSelector: {
|
|
@@ -1164,8 +1170,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1164
1170
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
1165
1171
|
"onDocument-click"?: ((...args: any[]) => any) | undefined;
|
|
1166
1172
|
}>, {
|
|
1167
|
-
placement: string;
|
|
1168
1173
|
radius: string;
|
|
1174
|
+
placement: string;
|
|
1169
1175
|
boundariesSelector: string;
|
|
1170
1176
|
forceShow: boolean;
|
|
1171
1177
|
sameWidth: boolean;
|
|
@@ -1210,9 +1216,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1210
1216
|
default: string;
|
|
1211
1217
|
};
|
|
1212
1218
|
}>> & Readonly<{}>, {
|
|
1219
|
+
height: string;
|
|
1213
1220
|
radius: string;
|
|
1214
1221
|
width: string;
|
|
1215
|
-
height: string;
|
|
1216
1222
|
}, {}, {
|
|
1217
1223
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
1218
1224
|
}, {}, 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;
|
|
@@ -275,6 +277,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
275
277
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
278
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
279
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
280
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
279
282
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
280
283
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -461,6 +464,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
461
464
|
}>, {
|
|
462
465
|
info: boolean;
|
|
463
466
|
size: string;
|
|
467
|
+
supportingText: string;
|
|
464
468
|
iconLeft: any;
|
|
465
469
|
iconRight: any;
|
|
466
470
|
isExpanded: boolean;
|
|
@@ -471,7 +475,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
471
475
|
iconLeftColor: string;
|
|
472
476
|
iconRightColor: string;
|
|
473
477
|
eyebrow: string;
|
|
474
|
-
supportingText: string;
|
|
475
478
|
mobileLayout: string;
|
|
476
479
|
}, {}, {
|
|
477
480
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -605,6 +608,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
605
608
|
ICONS: Readonly<{
|
|
606
609
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
607
610
|
readonly CHANGE: VueConstructor<Vue>;
|
|
611
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
608
612
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
609
613
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
610
614
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -706,6 +710,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
706
710
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
707
711
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
708
712
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
713
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
709
714
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
710
715
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
711
716
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -808,6 +813,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
808
813
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
809
814
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
810
815
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
816
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
811
817
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
812
818
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
813
819
|
readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -988,9 +994,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
988
994
|
type: string;
|
|
989
995
|
touchableDeprecated: boolean;
|
|
990
996
|
color: string;
|
|
991
|
-
elevation: string;
|
|
992
997
|
radius: string;
|
|
993
998
|
state: string;
|
|
999
|
+
elevation: string;
|
|
994
1000
|
colorScheme: string;
|
|
995
1001
|
}, {}, {
|
|
996
1002
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1198,8 +1204,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1198
1204
|
};
|
|
1199
1205
|
}>> & Readonly<{}>, {
|
|
1200
1206
|
size: string;
|
|
1201
|
-
isVertical: boolean;
|
|
1202
1207
|
prominence: string;
|
|
1208
|
+
isVertical: boolean;
|
|
1203
1209
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1204
1210
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1205
1211
|
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;
|
|
@@ -233,6 +235,7 @@ export declare const ICONS: {
|
|
|
233
235
|
readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
234
236
|
readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
235
237
|
readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
238
|
+
readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
236
239
|
readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
237
240
|
readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
238
241
|
readonly FA_PEN_TO_SQUARE: 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;
|