@bethinkpl/design-system 39.1.0 → 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.
Files changed (83) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +19329 -19161
  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 +3 -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 +77 -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 +3 -1
  12. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +7 -5
  13. package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +4 -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 +10 -3
  17. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +2 -0
  18. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +10 -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 +2 -0
  25. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +9 -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 +7 -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 +2 -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 +2 -0
  33. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +6 -2
  34. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +6 -2
  35. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -2
  36. package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +2 -0
  37. package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +2 -0
  38. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +44 -23
  39. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +6 -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 +2 -0
  43. package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +2 -0
  44. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +82 -22
  45. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +82 -22
  46. package/dist/lib/js/components/Switch/Switch.vue.d.ts +2 -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 +4 -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 +4 -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 +1 -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 +2 -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
@@ -82,6 +82,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
82
82
  ICONS: {
83
83
  readonly ANSWERS: VueConstructor<Vue>;
84
84
  readonly CHANGE: VueConstructor<Vue>;
85
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
85
86
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
86
87
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
87
88
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -183,6 +184,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
183
184
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
184
185
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
185
186
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
187
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
186
188
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
187
189
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
188
190
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -430,6 +432,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
430
432
  info: boolean;
431
433
  size: string;
432
434
  title: string;
435
+ supportingText: string;
433
436
  iconLeft: any;
434
437
  iconRight: any;
435
438
  isExpanded: boolean;
@@ -439,7 +442,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
439
442
  iconLeftColor: string;
440
443
  iconRightColor: string;
441
444
  eyebrow: string;
442
- supportingText: string;
443
445
  }, {}, {
444
446
  DsSectionHeader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
445
447
  isExpandable: {
@@ -512,6 +514,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
512
514
  ICONS: Readonly<{
513
515
  readonly ANSWERS: VueConstructor<Vue>;
514
516
  readonly CHANGE: VueConstructor<Vue>;
517
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
515
518
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
516
519
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
517
520
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -613,6 +616,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
613
616
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
614
617
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
615
618
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
619
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
616
620
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
617
621
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
618
622
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -901,6 +905,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
901
905
  }>, {
902
906
  info: boolean;
903
907
  size: string;
908
+ supportingText: string;
904
909
  iconLeft: any;
905
910
  iconRight: any;
906
911
  isExpanded: boolean;
@@ -911,7 +916,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
911
916
  iconLeftColor: string;
912
917
  iconRightColor: string;
913
918
  eyebrow: string;
914
- supportingText: string;
915
919
  mobileLayout: string;
916
920
  }, {}, {
917
921
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1045,6 +1049,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1045
1049
  ICONS: Readonly<{
1046
1050
  readonly ANSWERS: VueConstructor<Vue>;
1047
1051
  readonly CHANGE: VueConstructor<Vue>;
1052
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
1048
1053
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
1049
1054
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
1050
1055
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -1146,6 +1151,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1146
1151
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1147
1152
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1148
1153
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1154
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1149
1155
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1150
1156
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1151
1157
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1428,9 +1434,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1428
1434
  type: string;
1429
1435
  touchableDeprecated: boolean;
1430
1436
  color: string;
1431
- elevation: string;
1432
1437
  radius: string;
1433
1438
  state: string;
1439
+ elevation: string;
1434
1440
  colorScheme: string;
1435
1441
  }, {}, {
1436
1442
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1638,8 +1644,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1638
1644
  };
1639
1645
  }>> & Readonly<{}>, {
1640
1646
  size: string;
1641
- isVertical: boolean;
1642
1647
  prominence: string;
1648
+ isVertical: boolean;
1643
1649
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1644
1650
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1645
1651
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -130,14 +130,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
130
130
  onClick?: (() => any) | undefined;
131
131
  }>, {
132
132
  color: import('../../Tile').TileColor;
133
+ eyebrowText: string;
134
+ isEyebrowTextUppercase: boolean;
133
135
  state: import('../../Tile').TileState;
134
136
  iconLeft: Record<string, any>;
135
137
  iconRight: Record<string, any>;
136
138
  borderColor: import('../../Tile').TileBorderColors;
137
139
  interactive: boolean;
138
- eyebrowText: string;
139
140
  additionalText: string;
140
- isEyebrowTextUppercase: boolean;
141
141
  eyebrowEllipsis: boolean;
142
142
  textEllipsis: boolean;
143
143
  additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
@@ -271,14 +271,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
271
271
  };
272
272
  }>> & Readonly<{}>, {
273
273
  color: import('../../Tile').TileColor;
274
+ eyebrowText: string;
275
+ isEyebrowTextUppercase: boolean;
274
276
  state: import('../../Tile').TileState;
275
277
  iconLeft: Record<string, any>;
276
278
  iconRight: Record<string, any>;
277
279
  borderColor: import('../../Tile').TileBorderColors;
278
280
  interactive: boolean;
279
- eyebrowText: string;
280
281
  additionalText: string;
281
- isEyebrowTextUppercase: boolean;
282
282
  eyebrowEllipsis: boolean;
283
283
  textEllipsis: boolean;
284
284
  additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
@@ -85,8 +85,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
85
85
  onHide?: ((...args: any[]) => any) | undefined;
86
86
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
87
87
  }>, {
88
- placement: string;
89
88
  radius: string;
89
+ placement: string;
90
90
  boundariesSelector: string;
91
91
  forceShow: boolean;
92
92
  sameWidth: boolean;
@@ -2,7 +2,7 @@ import { FormFieldProps } from './FormField.types';
2
2
 
3
3
  export declare function extractFormFieldProps({ label, state, hasRequiredIndicator, labelInfo, subLabel, fieldId, messageText, }: FormFieldProps, errors?: Array<string>): {
4
4
  label: string | undefined;
5
- state: "success" | "default" | "error" | "disabled" | undefined;
5
+ state: "default" | "success" | "error" | "disabled" | undefined;
6
6
  hasRequiredIndicator: boolean | undefined;
7
7
  labelInfo: string | undefined;
8
8
  subLabel: string | undefined;
@@ -18,7 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
18
18
  type: import('vue').PropType<string>;
19
19
  };
20
20
  state: {
21
- type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
21
+ type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
22
22
  };
23
23
  hasRequiredIndicator: {
24
24
  type: import('vue').PropType<boolean>;
@@ -51,7 +51,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
51
51
  type: import('vue').PropType<string>;
52
52
  };
53
53
  state: {
54
- type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
54
+ type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
55
55
  };
56
56
  hasRequiredIndicator: {
57
57
  type: import('vue').PropType<boolean>;
@@ -11,7 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
11
11
  type: import('vue').PropType<string>;
12
12
  };
13
13
  state: {
14
- type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
14
+ type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
15
15
  };
16
16
  hasRequiredIndicator: {
17
17
  type: import('vue').PropType<boolean>;
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
43
43
  type: import('vue').PropType<string>;
44
44
  };
45
45
  state: {
46
- type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
46
+ type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
47
47
  };
48
48
  hasRequiredIndicator: {
49
49
  type: import('vue').PropType<boolean>;
@@ -24,6 +24,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
24
24
  ICONS: Readonly<{
25
25
  readonly ANSWERS: VueConstructor<Vue>;
26
26
  readonly CHANGE: VueConstructor<Vue>;
27
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
27
28
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
28
29
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
29
30
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -125,6 +126,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
125
126
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
126
127
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
127
128
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
129
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
128
130
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
129
131
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
130
132
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -70,6 +70,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
70
70
  ICONS: Readonly<{
71
71
  readonly ANSWERS: VueConstructor<Vue>;
72
72
  readonly CHANGE: VueConstructor<Vue>;
73
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
73
74
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
74
75
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
75
76
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -171,6 +172,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
171
172
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
172
173
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
173
174
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
175
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
174
176
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
175
177
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
176
178
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -419,9 +421,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
419
421
  onClose?: (() => any) | undefined;
420
422
  onTitleClick?: (() => any) | undefined;
421
423
  }>, {
424
+ eyebrowText: string;
422
425
  state: string;
423
426
  borderColor: string;
424
- eyebrowText: string;
425
427
  shortTitle: string;
426
428
  isTitleInteractive: boolean;
427
429
  areKeyboardShortcutsDisabled: boolean;
@@ -483,6 +485,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
483
485
  ICONS: Readonly<{
484
486
  readonly ANSWERS: VueConstructor<Vue>;
485
487
  readonly CHANGE: VueConstructor<Vue>;
488
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
486
489
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
487
490
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
488
491
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -584,6 +587,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
584
587
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
585
588
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
586
589
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
590
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
587
591
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
588
592
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
589
593
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -866,9 +870,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
866
870
  type: string;
867
871
  touchableDeprecated: boolean;
868
872
  color: string;
869
- elevation: string;
870
873
  radius: string;
871
874
  state: string;
875
+ elevation: string;
872
876
  colorScheme: string;
873
877
  }, {}, {
874
878
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1076,8 +1080,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1076
1080
  };
1077
1081
  }>> & Readonly<{}>, {
1078
1082
  size: string;
1079
- isVertical: boolean;
1080
1083
  prominence: string;
1084
+ isVertical: boolean;
1081
1085
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1082
1086
  DsDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1083
1087
  boundariesSelector: {
@@ -1164,8 +1168,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1164
1168
  onHide?: ((...args: any[]) => any) | undefined;
1165
1169
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
1166
1170
  }>, {
1167
- placement: string;
1168
1171
  radius: string;
1172
+ placement: string;
1169
1173
  boundariesSelector: string;
1170
1174
  forceShow: boolean;
1171
1175
  sameWidth: boolean;
@@ -1210,9 +1214,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1210
1214
  default: string;
1211
1215
  };
1212
1216
  }>> & Readonly<{}>, {
1217
+ height: string;
1213
1218
  radius: string;
1214
1219
  width: string;
1215
- height: string;
1216
1220
  }, {}, {
1217
1221
  PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
1218
1222
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -86,8 +86,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
86
86
  };
87
87
  }>> & Readonly<{}>, {
88
88
  size: string;
89
- isVertical: boolean;
90
89
  prominence: string;
90
+ isVertical: boolean;
91
91
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
92
92
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
93
93
  export default _default;
@@ -72,6 +72,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
72
72
  ICONS: Readonly<{
73
73
  readonly ANSWERS: VueConstructor<Vue>;
74
74
  readonly CHANGE: VueConstructor<Vue>;
75
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
75
76
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
76
77
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
77
78
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -173,6 +174,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
173
174
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
174
175
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
175
176
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
177
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
176
178
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
177
179
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
178
180
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -461,6 +463,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
461
463
  }>, {
462
464
  info: boolean;
463
465
  size: string;
466
+ supportingText: string;
464
467
  iconLeft: any;
465
468
  iconRight: any;
466
469
  isExpanded: boolean;
@@ -471,7 +474,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
471
474
  iconLeftColor: string;
472
475
  iconRightColor: string;
473
476
  eyebrow: string;
474
- supportingText: string;
475
477
  mobileLayout: string;
476
478
  }, {}, {
477
479
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -605,6 +607,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
605
607
  ICONS: Readonly<{
606
608
  readonly ANSWERS: VueConstructor<Vue>;
607
609
  readonly CHANGE: VueConstructor<Vue>;
610
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
608
611
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
609
612
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
610
613
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -706,6 +709,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
706
709
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
707
710
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
708
711
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
712
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
709
713
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
710
714
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
711
715
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -988,9 +992,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
988
992
  type: string;
989
993
  touchableDeprecated: boolean;
990
994
  color: string;
991
- elevation: string;
992
995
  radius: string;
993
996
  state: string;
997
+ elevation: string;
994
998
  colorScheme: string;
995
999
  }, {}, {
996
1000
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1198,8 +1202,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1198
1202
  };
1199
1203
  }>> & Readonly<{}>, {
1200
1204
  size: string;
1201
- isVertical: boolean;
1202
1205
  prominence: string;
1206
+ isVertical: boolean;
1203
1207
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1204
1208
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1205
1209
  export default _default;
@@ -96,8 +96,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
96
96
  }>> & Readonly<{}>, {
97
97
  size: string;
98
98
  color: string;
99
- state: string;
100
99
  isInteractive: boolean;
100
+ state: string;
101
101
  isLabelBold: boolean;
102
102
  }, {}, {
103
103
  Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -30,6 +30,7 @@ export type IconSize = Value<typeof ICON_SIZES>;
30
30
  export declare const ICONS: {
31
31
  readonly ANSWERS: VueConstructor<Vue>;
32
32
  readonly CHANGE: VueConstructor<Vue>;
33
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
33
34
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
34
35
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
35
36
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -131,6 +132,7 @@ export declare const ICONS: {
131
132
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
132
133
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
133
134
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
135
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
134
136
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
135
137
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
136
138
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -69,9 +69,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
69
69
  default: string;
70
70
  };
71
71
  }>> & Readonly<{}>, {
72
+ height: string;
72
73
  radius: string;
73
74
  width: string;
74
- height: string;
75
75
  }, {}, {
76
76
  PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
77
77
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -64,8 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
64
64
  };
65
65
  }>> & Readonly<{}>, {
66
66
  size: string;
67
- isVertical: boolean;
68
67
  prominence: string;
68
+ isVertical: boolean;
69
69
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
70
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
71
71
  export default _default;
@@ -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;
@@ -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;
@@ -432,7 +434,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
432
434
  };
433
435
  }, {}, {
434
436
  calcHeaderFeatureIconColor(): any;
435
- calcFooterPrimaryButtonColor(): "primary" | "neutral";
437
+ calcFooterPrimaryButtonColor(): "neutral" | "primary";
436
438
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
437
439
  calcSingleColumn(): boolean;
438
440
  displayFooter(): any;
@@ -736,6 +738,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
736
738
  ICONS: Readonly<{
737
739
  readonly ANSWERS: VueConstructor<Vue>;
738
740
  readonly CHANGE: VueConstructor<Vue>;
741
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
739
742
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
740
743
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
741
744
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -837,6 +840,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
837
840
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
838
841
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
839
842
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
843
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
840
844
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
841
845
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
842
846
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1119,9 +1123,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1119
1123
  type: string;
1120
1124
  touchableDeprecated: boolean;
1121
1125
  color: string;
1122
- elevation: string;
1123
1126
  radius: string;
1124
1127
  state: string;
1128
+ elevation: string;
1125
1129
  colorScheme: string;
1126
1130
  }, {}, {
1127
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;
@@ -567,7 +569,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
567
569
  };
568
570
  }, {}, {
569
571
  calcHeaderFeatureIconColor(): any;
570
- calcFooterPrimaryButtonColor(): "primary" | "neutral";
572
+ calcFooterPrimaryButtonColor(): "neutral" | "primary";
571
573
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
572
574
  calcSingleColumn(): boolean;
573
575
  displayFooter(): any;
@@ -871,6 +873,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
871
873
  ICONS: Readonly<{
872
874
  readonly ANSWERS: VueConstructor<Vue>;
873
875
  readonly CHANGE: VueConstructor<Vue>;
876
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
874
877
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
875
878
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
876
879
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -972,6 +975,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
972
975
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
973
976
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
974
977
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
978
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
975
979
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
976
980
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
977
981
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1254,9 +1258,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1254
1258
  type: string;
1255
1259
  touchableDeprecated: boolean;
1256
1260
  color: string;
1257
- elevation: string;
1258
1261
  radius: string;
1259
1262
  state: string;
1263
+ elevation: string;
1260
1264
  colorScheme: string;
1261
1265
  }, {}, {
1262
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;
@@ -437,6 +439,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
437
439
  ICONS: Readonly<{
438
440
  readonly ANSWERS: VueConstructor<Vue>;
439
441
  readonly CHANGE: VueConstructor<Vue>;
442
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
440
443
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
441
444
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
442
445
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -538,6 +541,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
538
541
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
539
542
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
540
543
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
544
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
541
545
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
542
546
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
543
547
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -820,9 +824,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
820
824
  type: string;
821
825
  touchableDeprecated: boolean;
822
826
  color: string;
823
- elevation: string;
824
827
  radius: string;
825
828
  state: string;
829
+ elevation: string;
826
830
  colorScheme: string;
827
831
  }, {}, {
828
832
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1075,8 +1079,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1075
1079
  onHide?: ((...args: any[]) => any) | undefined;
1076
1080
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
1077
1081
  }>, {
1078
- placement: string;
1079
1082
  radius: string;
1083
+ placement: string;
1080
1084
  boundariesSelector: string;
1081
1085
  forceShow: boolean;
1082
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;
@@ -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;