@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
|
@@ -11,6 +11,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
ICONS: Readonly<{
|
|
12
12
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
13
13
|
readonly CHANGE: VueConstructor<Vue>;
|
|
14
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
14
15
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
15
16
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
16
17
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -112,6 +113,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
113
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
114
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
115
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
116
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
117
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
116
118
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
117
119
|
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_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
278
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
279
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
280
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
279
282
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
280
283
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -119,6 +119,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
119
119
|
ICONS: {
|
|
120
120
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
121
121
|
readonly CHANGE: VueConstructor<Vue>;
|
|
122
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
122
123
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
123
124
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
124
125
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -220,6 +221,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
220
221
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
221
222
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
222
223
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
224
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
223
225
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
224
226
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
225
227
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -383,6 +385,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
383
385
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
384
386
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
385
387
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
388
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
386
389
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
387
390
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
388
391
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -431,7 +434,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
431
434
|
};
|
|
432
435
|
}, {}, {
|
|
433
436
|
calcHeaderFeatureIconColor(): any;
|
|
434
|
-
calcFooterPrimaryButtonColor(): "
|
|
437
|
+
calcFooterPrimaryButtonColor(): "neutral" | "primary";
|
|
435
438
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
436
439
|
calcSingleColumn(): boolean;
|
|
437
440
|
displayFooter(): any;
|
|
@@ -735,6 +738,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
735
738
|
ICONS: Readonly<{
|
|
736
739
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
737
740
|
readonly CHANGE: VueConstructor<Vue>;
|
|
741
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
738
742
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
739
743
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
740
744
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -836,6 +840,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
836
840
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
837
841
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
838
842
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
843
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
839
844
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
840
845
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
841
846
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -999,6 +1004,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
999
1004
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1000
1005
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1001
1006
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1007
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1002
1008
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1003
1009
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1004
1010
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1117,9 +1123,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1117
1123
|
type: string;
|
|
1118
1124
|
touchableDeprecated: boolean;
|
|
1119
1125
|
color: string;
|
|
1120
|
-
elevation: string;
|
|
1121
1126
|
radius: string;
|
|
1122
1127
|
state: string;
|
|
1128
|
+
elevation: string;
|
|
1123
1129
|
colorScheme: string;
|
|
1124
1130
|
}, {}, {
|
|
1125
1131
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -254,6 +254,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
254
|
ICONS: {
|
|
255
255
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
256
256
|
readonly CHANGE: VueConstructor<Vue>;
|
|
257
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
257
258
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
258
259
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
259
260
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -355,6 +356,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
355
356
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
356
357
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
357
358
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
359
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
358
360
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
359
361
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
360
362
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -518,6 +520,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
518
520
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
519
521
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
520
522
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
523
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
521
524
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
522
525
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
523
526
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -566,7 +569,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
566
569
|
};
|
|
567
570
|
}, {}, {
|
|
568
571
|
calcHeaderFeatureIconColor(): any;
|
|
569
|
-
calcFooterPrimaryButtonColor(): "
|
|
572
|
+
calcFooterPrimaryButtonColor(): "neutral" | "primary";
|
|
570
573
|
calcFooterSecondaryButtonColor(): "danger" | "neutral";
|
|
571
574
|
calcSingleColumn(): boolean;
|
|
572
575
|
displayFooter(): any;
|
|
@@ -870,6 +873,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
870
873
|
ICONS: Readonly<{
|
|
871
874
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
872
875
|
readonly CHANGE: VueConstructor<Vue>;
|
|
876
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
873
877
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
874
878
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
875
879
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -971,6 +975,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
971
975
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
972
976
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
973
977
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
978
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
974
979
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
975
980
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
976
981
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1134,6 +1139,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1134
1139
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1135
1140
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1136
1141
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1142
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1137
1143
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1138
1144
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
1139
1145
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1252,9 +1258,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1252
1258
|
type: string;
|
|
1253
1259
|
touchableDeprecated: boolean;
|
|
1254
1260
|
color: string;
|
|
1255
|
-
elevation: string;
|
|
1256
1261
|
radius: string;
|
|
1257
1262
|
state: string;
|
|
1263
|
+
elevation: string;
|
|
1258
1264
|
colorScheme: string;
|
|
1259
1265
|
}, {}, {
|
|
1260
1266
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -64,6 +64,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
ICONS: Readonly<{
|
|
65
65
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
66
66
|
readonly CHANGE: VueConstructor<Vue>;
|
|
67
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
67
68
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
68
69
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
69
70
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -165,6 +166,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
165
166
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
166
167
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
167
168
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
169
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
168
170
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
169
171
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
170
172
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -328,6 +330,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
328
330
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
329
331
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
330
332
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
333
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
331
334
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
332
335
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
333
336
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -436,6 +439,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
436
439
|
ICONS: Readonly<{
|
|
437
440
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
438
441
|
readonly CHANGE: VueConstructor<Vue>;
|
|
442
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
439
443
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
440
444
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
441
445
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -537,6 +541,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
537
541
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
538
542
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
539
543
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
544
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
540
545
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
541
546
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
542
547
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -700,6 +705,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
700
705
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
701
706
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
702
707
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
708
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
703
709
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
704
710
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
705
711
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -818,9 +824,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
818
824
|
type: string;
|
|
819
825
|
touchableDeprecated: boolean;
|
|
820
826
|
color: string;
|
|
821
|
-
elevation: string;
|
|
822
827
|
radius: string;
|
|
823
828
|
state: string;
|
|
829
|
+
elevation: string;
|
|
824
830
|
colorScheme: string;
|
|
825
831
|
}, {}, {
|
|
826
832
|
WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1073,8 +1079,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1073
1079
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
1074
1080
|
"onDocument-click"?: ((...args: any[]) => any) | undefined;
|
|
1075
1081
|
}>, {
|
|
1076
|
-
placement: string;
|
|
1077
1082
|
radius: string;
|
|
1083
|
+
placement: string;
|
|
1078
1084
|
boundariesSelector: string;
|
|
1079
1085
|
forceShow: boolean;
|
|
1080
1086
|
sameWidth: boolean;
|
|
@@ -95,6 +95,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
95
95
|
ICONS: {
|
|
96
96
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
97
97
|
readonly CHANGE: VueConstructor<Vue>;
|
|
98
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
98
99
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
99
100
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
100
101
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -196,6 +197,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
196
197
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
198
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
199
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
200
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
199
201
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
200
202
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
201
203
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -359,6 +361,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
359
361
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
360
362
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
361
363
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
364
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
362
365
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
363
366
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
364
367
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -26,6 +26,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
ICONS: Readonly<{
|
|
27
27
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
28
28
|
readonly CHANGE: VueConstructor<Vue>;
|
|
29
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
29
30
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
30
31
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
31
32
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -127,6 +128,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
127
128
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
128
129
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
129
130
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
131
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
130
132
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
131
133
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
132
134
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -290,6 +292,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
290
292
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
291
293
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
292
294
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
295
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
293
296
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
294
297
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
295
298
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { IconColor, IconItem } from '../../Icons/Icon';
|
|
3
|
-
import { TextGroupSize, TextGroupState } from '../../TextGroup';
|
|
3
|
+
import { TextGroupMainTextColor, TextGroupSize, TextGroupState } from '../../TextGroup';
|
|
4
4
|
import { RichListItemBackgroundColor, RichListItemBorderColor, RichListItemElevation, RichListItemLayout, RichListItemSize, RichListItemState, RichListItemType } from '../RichListItem';
|
|
5
5
|
|
|
6
6
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -135,6 +135,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
135
135
|
}, {
|
|
136
136
|
textGroupSize(): TextGroupSize;
|
|
137
137
|
textGroupState(): TextGroupState;
|
|
138
|
+
textGroupMainTextColor(): TextGroupMainTextColor;
|
|
138
139
|
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
139
140
|
'update:is-selected': (value: boolean) => true;
|
|
140
141
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -262,20 +263,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
262
263
|
size: RichListItemSize;
|
|
263
264
|
type: RichListItemType;
|
|
264
265
|
text: string;
|
|
266
|
+
supportingText: string;
|
|
267
|
+
supportingTextEllipsis: boolean;
|
|
268
|
+
isInteractive: boolean;
|
|
269
|
+
state: RichListItemState;
|
|
270
|
+
isSupportingTextTooltipEnabled: boolean;
|
|
271
|
+
isSelected: boolean;
|
|
265
272
|
elevation: "small";
|
|
266
273
|
backgroundColor: RichListItemBackgroundColor;
|
|
267
|
-
state: RichListItemState;
|
|
268
274
|
iconColor: string;
|
|
269
275
|
layout: RichListItemLayout;
|
|
270
276
|
borderColor: RichListItemBorderColor;
|
|
271
|
-
isInteractive: boolean;
|
|
272
277
|
eyebrowEllipsis: boolean;
|
|
273
278
|
textEllipsis: boolean;
|
|
274
279
|
eyebrow: string;
|
|
275
|
-
supportingText: string;
|
|
276
|
-
isSelected: boolean;
|
|
277
|
-
supportingTextEllipsis: boolean;
|
|
278
|
-
isSupportingTextTooltipEnabled: boolean;
|
|
279
280
|
isDimmed: boolean;
|
|
280
281
|
isDraggable: boolean;
|
|
281
282
|
iconColorHex: string;
|
|
@@ -289,7 +290,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
289
290
|
DsTextGroup: {
|
|
290
291
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
291
292
|
size: {
|
|
292
|
-
type: PropType<
|
|
293
|
+
type: PropType<TextGroupSize>;
|
|
294
|
+
};
|
|
295
|
+
align: {
|
|
296
|
+
type: PropType<import('../../TextGroup').TextGroupAlign>;
|
|
297
|
+
};
|
|
298
|
+
mainTextColor: {
|
|
299
|
+
type: PropType<TextGroupMainTextColor>;
|
|
293
300
|
};
|
|
294
301
|
prominence: {
|
|
295
302
|
type: PropType<import('../../TextGroup').TextGroupProminence>;
|
|
@@ -324,9 +331,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
324
331
|
skeletonLoadingSize: {
|
|
325
332
|
type: PropType<string>;
|
|
326
333
|
};
|
|
327
|
-
isSelected: {
|
|
328
|
-
type: PropType<boolean>;
|
|
329
|
-
};
|
|
330
334
|
state: {
|
|
331
335
|
type: PropType<TextGroupState>;
|
|
332
336
|
};
|
|
@@ -342,6 +346,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
342
346
|
supportingTextTooltipContent: {
|
|
343
347
|
type: PropType<string>;
|
|
344
348
|
};
|
|
349
|
+
isSelected: {
|
|
350
|
+
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
351
|
+
};
|
|
345
352
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
346
353
|
P: {};
|
|
347
354
|
B: {};
|
|
@@ -351,7 +358,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
351
358
|
Defaults: {};
|
|
352
359
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
353
360
|
size: {
|
|
354
|
-
type: PropType<
|
|
361
|
+
type: PropType<TextGroupSize>;
|
|
362
|
+
};
|
|
363
|
+
align: {
|
|
364
|
+
type: PropType<import('../../TextGroup').TextGroupAlign>;
|
|
365
|
+
};
|
|
366
|
+
mainTextColor: {
|
|
367
|
+
type: PropType<TextGroupMainTextColor>;
|
|
355
368
|
};
|
|
356
369
|
prominence: {
|
|
357
370
|
type: PropType<import('../../TextGroup').TextGroupProminence>;
|
|
@@ -386,9 +399,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
386
399
|
skeletonLoadingSize: {
|
|
387
400
|
type: PropType<string>;
|
|
388
401
|
};
|
|
389
|
-
isSelected: {
|
|
390
|
-
type: PropType<boolean>;
|
|
391
|
-
};
|
|
392
402
|
state: {
|
|
393
403
|
type: PropType<TextGroupState>;
|
|
394
404
|
};
|
|
@@ -404,13 +414,22 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
404
414
|
supportingTextTooltipContent: {
|
|
405
415
|
type: PropType<string>;
|
|
406
416
|
};
|
|
417
|
+
isSelected: {
|
|
418
|
+
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
419
|
+
};
|
|
407
420
|
}>> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
408
421
|
__isFragment?: never;
|
|
409
422
|
__isTeleport?: never;
|
|
410
423
|
__isSuspense?: never;
|
|
411
424
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
412
425
|
size: {
|
|
413
|
-
type: PropType<
|
|
426
|
+
type: PropType<TextGroupSize>;
|
|
427
|
+
};
|
|
428
|
+
align: {
|
|
429
|
+
type: PropType<import('../../TextGroup').TextGroupAlign>;
|
|
430
|
+
};
|
|
431
|
+
mainTextColor: {
|
|
432
|
+
type: PropType<TextGroupMainTextColor>;
|
|
414
433
|
};
|
|
415
434
|
prominence: {
|
|
416
435
|
type: PropType<import('../../TextGroup').TextGroupProminence>;
|
|
@@ -445,9 +464,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
445
464
|
skeletonLoadingSize: {
|
|
446
465
|
type: PropType<string>;
|
|
447
466
|
};
|
|
448
|
-
isSelected: {
|
|
449
|
-
type: PropType<boolean>;
|
|
450
|
-
};
|
|
451
467
|
state: {
|
|
452
468
|
type: PropType<TextGroupState>;
|
|
453
469
|
};
|
|
@@ -463,6 +479,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
463
479
|
supportingTextTooltipContent: {
|
|
464
480
|
type: PropType<string>;
|
|
465
481
|
};
|
|
482
|
+
isSelected: {
|
|
483
|
+
type: PropType<import('../../../utils/type.utils').RemovedProp<"use mainTextColor=primary instead">>;
|
|
484
|
+
};
|
|
466
485
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
467
486
|
$slots: {
|
|
468
487
|
mainText?(_: {}): any;
|
|
@@ -558,6 +577,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
558
577
|
ICONS: {
|
|
559
578
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
560
579
|
readonly CHANGE: VueConstructor<Vue>;
|
|
580
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
561
581
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
562
582
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
563
583
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -659,6 +679,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
659
679
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
660
680
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
661
681
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
682
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
662
683
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
663
684
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
664
685
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -822,6 +843,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
822
843
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
823
844
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
824
845
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
846
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
825
847
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
826
848
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
827
849
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -970,14 +992,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
970
992
|
icon: any;
|
|
971
993
|
size: RichListItemSize;
|
|
972
994
|
type: RichListItemType;
|
|
995
|
+
isInteractive: boolean;
|
|
996
|
+
state: RichListItemState;
|
|
997
|
+
isSelected: boolean;
|
|
973
998
|
elevation: "small";
|
|
974
999
|
backgroundColor: RichListItemBackgroundColor;
|
|
975
|
-
state: RichListItemState;
|
|
976
1000
|
iconColor: string;
|
|
977
1001
|
layout: RichListItemLayout;
|
|
978
1002
|
borderColor: RichListItemBorderColor;
|
|
979
|
-
isInteractive: boolean;
|
|
980
|
-
isSelected: boolean;
|
|
981
1003
|
isDimmed: boolean;
|
|
982
1004
|
isDraggable: boolean;
|
|
983
1005
|
iconColorHex: string;
|
|
@@ -1088,8 +1110,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1088
1110
|
};
|
|
1089
1111
|
}>> & Readonly<{}>, {
|
|
1090
1112
|
size: string;
|
|
1091
|
-
isVertical: boolean;
|
|
1092
1113
|
prominence: string;
|
|
1114
|
+
isVertical: boolean;
|
|
1093
1115
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1094
1116
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1095
1117
|
icon: {
|
|
@@ -92,6 +92,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
92
92
|
ICONS: {
|
|
93
93
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
94
94
|
readonly CHANGE: VueConstructor<Vue>;
|
|
95
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
95
96
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
96
97
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
97
98
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -193,6 +194,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
193
194
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
194
195
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
195
196
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
196
198
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
197
199
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
198
200
|
readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -356,6 +358,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
356
358
|
readonly FA_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
357
359
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
358
360
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
361
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
359
362
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
360
363
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
361
364
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -504,14 +507,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
504
507
|
icon: any;
|
|
505
508
|
size: RichListItemSize;
|
|
506
509
|
type: RichListItemType;
|
|
510
|
+
isInteractive: boolean;
|
|
511
|
+
state: RichListItemState;
|
|
512
|
+
isSelected: boolean;
|
|
507
513
|
elevation: "small";
|
|
508
514
|
backgroundColor: RichListItemBackgroundColor;
|
|
509
|
-
state: RichListItemState;
|
|
510
515
|
iconColor: string;
|
|
511
516
|
layout: RichListItemLayout;
|
|
512
517
|
borderColor: RichListItemBorderColor;
|
|
513
|
-
isInteractive: boolean;
|
|
514
|
-
isSelected: boolean;
|
|
515
518
|
isDimmed: boolean;
|
|
516
519
|
isDraggable: boolean;
|
|
517
520
|
iconColorHex: string;
|
|
@@ -622,8 +625,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
622
625
|
};
|
|
623
626
|
}>> & Readonly<{}>, {
|
|
624
627
|
size: string;
|
|
625
|
-
isVertical: boolean;
|
|
626
628
|
prominence: string;
|
|
629
|
+
isVertical: boolean;
|
|
627
630
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
628
631
|
DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
629
632
|
icon: {
|
package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
39
39
|
};
|
|
40
40
|
}>> & Readonly<{}>, {
|
|
41
41
|
size: string;
|
|
42
|
-
isVertical: boolean;
|
|
43
42
|
prominence: string;
|
|
43
|
+
isVertical: boolean;
|
|
44
44
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
45
45
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
46
|
export default _default;
|
|
@@ -37,9 +37,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
37
37
|
default: string;
|
|
38
38
|
};
|
|
39
39
|
}>> & Readonly<{}>, {
|
|
40
|
+
height: string;
|
|
40
41
|
radius: string;
|
|
41
42
|
width: string;
|
|
42
|
-
height: string;
|
|
43
43
|
}, {}, {
|
|
44
44
|
PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
|
|
45
45
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -9,6 +9,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
ICONS: Readonly<{
|
|
10
10
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
11
11
|
readonly CHANGE: VueConstructor<Vue>;
|
|
12
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
12
13
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
13
14
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
14
15
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -110,6 +111,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
110
111
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
111
112
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
113
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
115
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
116
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
117
|
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_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
274
276
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
275
277
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
279
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
280
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
@@ -9,6 +9,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
ICONS: Readonly<{
|
|
10
10
|
readonly ANSWERS: VueConstructor<Vue>;
|
|
11
11
|
readonly CHANGE: VueConstructor<Vue>;
|
|
12
|
+
readonly COMMENT_LOCK: VueConstructor<Vue>;
|
|
12
13
|
readonly COMMENTS_CHECK: VueConstructor<Vue>;
|
|
13
14
|
readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
|
|
14
15
|
readonly HIDE_ANSWERS: VueConstructor<Vue>;
|
|
@@ -110,6 +111,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
110
111
|
readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
111
112
|
readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
112
113
|
readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
|
+
readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
113
115
|
readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
114
116
|
readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
115
117
|
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_VIDEO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
274
276
|
readonly FA_VOLUME_HIGH_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
275
277
|
readonly FA_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
|
+
readonly FA_SPARKLES_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
276
279
|
readonly FA_WAND_MAGIC_SPARKLES: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
277
280
|
readonly FA_WINDOW_MAXIMIZE: import('@fortawesome/fontawesome-common-types').IconDefinition;
|
|
278
281
|
readonly FA_XMARK: import('@fortawesome/fontawesome-common-types').IconDefinition;
|