@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.
Files changed (83) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +19320 -19133
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/lib/js/components/ActionContent/ActionContent.vue.d.ts +42 -0
  5. package/dist/lib/js/components/ActionContent/index.d.ts +3 -0
  6. package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +4 -1
  7. package/dist/lib/js/components/Cards/Card/Card.consts.d.ts +13 -8
  8. package/dist/lib/js/components/Cards/Card/Card.vue.d.ts +22 -9
  9. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +78 -21
  10. package/dist/lib/js/components/Chip/Chip.vue.d.ts +2 -0
  11. package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +4 -1
  12. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +8 -5
  13. package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +5 -2
  14. package/dist/lib/js/components/Divider/Divider.vue.d.ts +1 -1
  15. package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +1 -1
  16. package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +12 -3
  17. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +3 -0
  18. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +13 -4
  19. package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +4 -4
  20. package/dist/lib/js/components/Dropdown/Dropdown.vue.d.ts +1 -1
  21. package/dist/lib/js/components/Form/FormField/FormField.utils.d.ts +1 -1
  22. package/dist/lib/js/components/Form/InputField/InputField.vue.d.ts +2 -2
  23. package/dist/lib/js/components/Form/PasswordField/PasswordField.vue.d.ts +2 -2
  24. package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +3 -0
  25. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +11 -5
  26. package/dist/lib/js/components/Headers/PageHeader/PageHeader.vue.d.ts +1 -1
  27. package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +9 -3
  28. package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
  29. package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +3 -0
  30. package/dist/lib/js/components/Image/Image.vue.d.ts +1 -1
  31. package/dist/lib/js/components/Menu/MenuDivider/MenuDivider.vue.d.ts +1 -1
  32. package/dist/lib/js/components/Modal/Modal.vue.d.ts +3 -0
  33. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +8 -2
  34. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +8 -2
  35. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +8 -2
  36. package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +3 -0
  37. package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +3 -0
  38. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +45 -23
  39. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +7 -4
  40. package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +1 -1
  41. package/dist/lib/js/components/Skeleton/Skeleton.vue.d.ts +1 -1
  42. package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +3 -0
  43. package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +3 -0
  44. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +85 -22
  45. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +85 -22
  46. package/dist/lib/js/components/Switch/Switch.vue.d.ts +3 -0
  47. package/dist/lib/js/components/TextGroup/TextGroup.consts.d.ts +14 -3
  48. package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +8 -3
  49. package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +5 -2
  50. package/dist/lib/js/components/Tile/Tile.vue.d.ts +2 -2
  51. package/dist/lib/js/components/Toast/Toast.vue.d.ts +76 -22
  52. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +5 -2
  53. package/dist/lib/js/components/Well/Well.consts.d.ts +24 -0
  54. package/dist/lib/js/components/Well/Well.vue.d.ts +13 -1
  55. package/dist/lib/js/icons/fontawesome.d.ts +2 -0
  56. package/dist/lib/js/index.d.ts +2 -0
  57. package/dist/lib/js/utils/type.utils.d.ts +3 -0
  58. package/lib/images/icons/comment-lock.svg +1 -0
  59. package/lib/js/components/ActionContent/ActionContent.spec.ts +99 -0
  60. package/lib/js/components/ActionContent/ActionContent.stories.ts +141 -0
  61. package/lib/js/components/ActionContent/ActionContent.vue +104 -0
  62. package/lib/js/components/ActionContent/index.ts +3 -0
  63. package/lib/js/components/Cards/Card/Card.consts.ts +15 -8
  64. package/lib/js/components/Cards/Card/Card.spec.ts +61 -1
  65. package/lib/js/components/Cards/Card/Card.stories.ts +20 -13
  66. package/lib/js/components/Cards/Card/Card.vue +65 -34
  67. package/lib/js/components/Chip/Chip.spec.ts +28 -0
  68. package/lib/js/components/Chip/Chip.stories.ts +7 -2
  69. package/lib/js/components/Chip/Chip.vue +14 -3
  70. package/lib/js/components/Icons/Icon/Icon.consts.ts +2 -0
  71. package/lib/js/components/ProgressDonutChart/ProgressDonutChart.spec.ts +3 -3
  72. package/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue +8 -1
  73. package/lib/js/components/TextGroup/TextGroup.consts.ts +15 -1
  74. package/lib/js/components/TextGroup/TextGroup.stories.ts +14 -5
  75. package/lib/js/components/TextGroup/TextGroup.vue +51 -28
  76. package/lib/js/components/Well/Well.consts.ts +16 -0
  77. package/lib/js/components/Well/Well.spec.ts +112 -0
  78. package/lib/js/components/Well/Well.stories.ts +90 -1
  79. package/lib/js/components/Well/Well.vue +135 -4
  80. package/lib/js/icons/fontawesome.ts +4 -0
  81. package/lib/js/index.ts +2 -0
  82. package/lib/js/utils/type.utils.ts +16 -0
  83. 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;
@@ -214,6 +216,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
214
216
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
215
217
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
218
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
220
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
218
221
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
222
  readonly FA_PEN_TO_SQUARE: 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;
@@ -322,6 +324,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
322
324
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
323
325
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
324
326
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
327
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
325
328
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
326
329
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
327
330
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -432,7 +435,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
432
435
  };
433
436
  }, {}, {
434
437
  calcHeaderFeatureIconColor(): any;
435
- calcFooterPrimaryButtonColor(): "primary" | "neutral";
438
+ calcFooterPrimaryButtonColor(): "neutral" | "primary";
436
439
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
437
440
  calcSingleColumn(): boolean;
438
441
  displayFooter(): any;
@@ -736,6 +739,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
736
739
  ICONS: Readonly<{
737
740
  readonly ANSWERS: VueConstructor<Vue>;
738
741
  readonly CHANGE: VueConstructor<Vue>;
742
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
739
743
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
740
744
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
741
745
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -837,6 +841,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
837
841
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
838
842
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
839
843
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
844
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
840
845
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
841
846
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
842
847
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -939,6 +944,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
939
944
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
940
945
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
941
946
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
947
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
942
948
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
943
949
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
944
950
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1119,9 +1125,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1119
1125
  type: string;
1120
1126
  touchableDeprecated: boolean;
1121
1127
  color: string;
1122
- elevation: string;
1123
1128
  radius: string;
1124
1129
  state: string;
1130
+ elevation: string;
1125
1131
  colorScheme: string;
1126
1132
  }, {}, {
1127
1133
  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;
@@ -457,6 +459,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
457
459
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
458
460
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
459
461
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
462
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
460
463
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
461
464
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
462
465
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -567,7 +570,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
567
570
  };
568
571
  }, {}, {
569
572
  calcHeaderFeatureIconColor(): any;
570
- calcFooterPrimaryButtonColor(): "primary" | "neutral";
573
+ calcFooterPrimaryButtonColor(): "neutral" | "primary";
571
574
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
572
575
  calcSingleColumn(): boolean;
573
576
  displayFooter(): any;
@@ -871,6 +874,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
871
874
  ICONS: Readonly<{
872
875
  readonly ANSWERS: VueConstructor<Vue>;
873
876
  readonly CHANGE: VueConstructor<Vue>;
877
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
874
878
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
875
879
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
876
880
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -972,6 +976,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
972
976
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
973
977
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
974
978
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
979
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
975
980
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
976
981
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
977
982
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1074,6 +1079,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1074
1079
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1075
1080
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1076
1081
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
1082
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1077
1083
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1078
1084
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
1079
1085
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1254,9 +1260,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1254
1260
  type: string;
1255
1261
  touchableDeprecated: boolean;
1256
1262
  color: string;
1257
- elevation: string;
1258
1263
  radius: string;
1259
1264
  state: string;
1265
+ elevation: string;
1260
1266
  colorScheme: string;
1261
1267
  }, {}, {
1262
1268
  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;
@@ -267,6 +269,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
267
269
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
268
270
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
269
271
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
272
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
270
273
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
271
274
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
272
275
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -437,6 +440,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
437
440
  ICONS: Readonly<{
438
441
  readonly ANSWERS: VueConstructor<Vue>;
439
442
  readonly CHANGE: VueConstructor<Vue>;
443
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
440
444
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
441
445
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
442
446
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -538,6 +542,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
538
542
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
539
543
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
540
544
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
545
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
541
546
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
542
547
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
543
548
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -640,6 +645,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
640
645
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
641
646
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
642
647
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
648
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
643
649
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
644
650
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
645
651
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -820,9 +826,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
820
826
  type: string;
821
827
  touchableDeprecated: boolean;
822
828
  color: string;
823
- elevation: string;
824
829
  radius: string;
825
830
  state: string;
831
+ elevation: string;
826
832
  colorScheme: string;
827
833
  }, {}, {
828
834
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1075,8 +1081,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1075
1081
  onHide?: ((...args: any[]) => any) | undefined;
1076
1082
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
1077
1083
  }>, {
1078
- placement: string;
1079
1084
  radius: string;
1085
+ placement: string;
1080
1086
  boundariesSelector: string;
1081
1087
  forceShow: boolean;
1082
1088
  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;
@@ -298,6 +300,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
298
300
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
299
301
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
300
302
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
303
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
301
304
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
302
305
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
303
306
  readonly FA_PEN_TO_SQUARE: 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;
@@ -229,6 +231,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
229
231
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
230
232
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
231
233
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
234
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
232
235
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
233
236
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
234
237
  readonly FA_PEN_TO_SQUARE: 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<string>;
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<string>;
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<string>;
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;
@@ -761,6 +782,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
761
782
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
762
783
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
763
784
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
785
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
764
786
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
765
787
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
766
788
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -971,14 +993,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
971
993
  icon: any;
972
994
  size: RichListItemSize;
973
995
  type: RichListItemType;
996
+ isInteractive: boolean;
997
+ state: RichListItemState;
998
+ isSelected: boolean;
974
999
  elevation: "small";
975
1000
  backgroundColor: RichListItemBackgroundColor;
976
- state: RichListItemState;
977
1001
  iconColor: string;
978
1002
  layout: RichListItemLayout;
979
1003
  borderColor: RichListItemBorderColor;
980
- isInteractive: boolean;
981
- isSelected: boolean;
982
1004
  isDimmed: boolean;
983
1005
  isDraggable: boolean;
984
1006
  iconColorHex: string;
@@ -1089,8 +1111,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1089
1111
  };
1090
1112
  }>> & Readonly<{}>, {
1091
1113
  size: string;
1092
- isVertical: boolean;
1093
1114
  prominence: string;
1115
+ isVertical: boolean;
1094
1116
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1095
1117
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1096
1118
  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;
@@ -295,6 +297,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
295
297
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
296
298
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
297
299
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
300
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
298
301
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
299
302
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
300
303
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -505,14 +508,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
505
508
  icon: any;
506
509
  size: RichListItemSize;
507
510
  type: RichListItemType;
511
+ isInteractive: boolean;
512
+ state: RichListItemState;
513
+ isSelected: boolean;
508
514
  elevation: "small";
509
515
  backgroundColor: RichListItemBackgroundColor;
510
- state: RichListItemState;
511
516
  iconColor: string;
512
517
  layout: RichListItemLayout;
513
518
  borderColor: RichListItemBorderColor;
514
- isInteractive: boolean;
515
- isSelected: boolean;
516
519
  isDimmed: boolean;
517
520
  isDraggable: boolean;
518
521
  iconColorHex: string;
@@ -623,8 +626,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
623
626
  };
624
627
  }>> & Readonly<{}>, {
625
628
  size: string;
626
- isVertical: boolean;
627
629
  prominence: string;
630
+ isVertical: boolean;
628
631
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
629
632
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
630
633
  icon: {
@@ -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;
@@ -212,6 +214,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
212
214
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
213
215
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
214
216
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
215
218
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
219
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
220
  readonly FA_PEN_TO_SQUARE: 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;
@@ -212,6 +214,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
212
214
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
213
215
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
214
216
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
215
218
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
219
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
220
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;