@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
@@ -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;
@@ -971,14 +992,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
971
992
  icon: any;
972
993
  size: RichListItemSize;
973
994
  type: RichListItemType;
995
+ isInteractive: boolean;
996
+ state: RichListItemState;
997
+ isSelected: boolean;
974
998
  elevation: "small";
975
999
  backgroundColor: RichListItemBackgroundColor;
976
- state: RichListItemState;
977
1000
  iconColor: string;
978
1001
  layout: RichListItemLayout;
979
1002
  borderColor: RichListItemBorderColor;
980
- isInteractive: boolean;
981
- isSelected: boolean;
982
1003
  isDimmed: boolean;
983
1004
  isDraggable: boolean;
984
1005
  iconColorHex: string;
@@ -1089,8 +1110,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1089
1110
  };
1090
1111
  }>> & Readonly<{}>, {
1091
1112
  size: string;
1092
- isVertical: boolean;
1093
1113
  prominence: string;
1114
+ isVertical: boolean;
1094
1115
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1095
1116
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1096
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;
@@ -505,14 +507,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
505
507
  icon: any;
506
508
  size: RichListItemSize;
507
509
  type: RichListItemType;
510
+ isInteractive: boolean;
511
+ state: RichListItemState;
512
+ isSelected: boolean;
508
513
  elevation: "small";
509
514
  backgroundColor: RichListItemBackgroundColor;
510
- state: RichListItemState;
511
515
  iconColor: string;
512
516
  layout: RichListItemLayout;
513
517
  borderColor: RichListItemBorderColor;
514
- isInteractive: boolean;
515
- isSelected: boolean;
516
518
  isDimmed: boolean;
517
519
  isDraggable: boolean;
518
520
  iconColorHex: string;
@@ -623,8 +625,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
623
625
  };
624
626
  }>> & Readonly<{}>, {
625
627
  size: string;
626
- isVertical: boolean;
627
628
  prominence: string;
629
+ isVertical: boolean;
628
630
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
629
631
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
630
632
  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;
@@ -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;
@@ -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;
@@ -501,17 +503,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
501
503
  dividerUnderHeader: {
502
504
  type: import('vue').PropType<boolean>;
503
505
  };
504
- hasBorder: {
506
+ hasRibbon: {
505
507
  type: import('vue').PropType<boolean>;
506
508
  };
507
- borderPosition: {
508
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
509
+ hasRadius: {
510
+ type: import('vue').PropType<boolean>;
509
511
  };
510
- borderSize: {
511
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
512
+ backgroundColor: {
513
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
512
514
  };
513
- borderColor: {
514
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
515
+ ribbonPosition: {
516
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
517
+ };
518
+ ribbonSize: {
519
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
520
+ };
521
+ ribbonColor: {
522
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
515
523
  };
516
524
  hasRibbonRadius: {
517
525
  type: import('vue').PropType<boolean>;
@@ -531,6 +539,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
531
539
  isContentScrollable: {
532
540
  type: import('vue').PropType<boolean>;
533
541
  };
542
+ hasBorder: {
543
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
544
+ };
545
+ borderPosition: {
546
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
547
+ };
548
+ borderSize: {
549
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
550
+ };
551
+ borderColor: {
552
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
553
+ };
534
554
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
535
555
  P: {};
536
556
  B: {};
@@ -554,17 +574,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
554
574
  dividerUnderHeader: {
555
575
  type: import('vue').PropType<boolean>;
556
576
  };
557
- hasBorder: {
577
+ hasRibbon: {
558
578
  type: import('vue').PropType<boolean>;
559
579
  };
560
- borderPosition: {
561
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
580
+ hasRadius: {
581
+ type: import('vue').PropType<boolean>;
562
582
  };
563
- borderSize: {
564
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
583
+ backgroundColor: {
584
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
565
585
  };
566
- borderColor: {
567
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
586
+ ribbonPosition: {
587
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
588
+ };
589
+ ribbonSize: {
590
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
591
+ };
592
+ ribbonColor: {
593
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
568
594
  };
569
595
  hasRibbonRadius: {
570
596
  type: import('vue').PropType<boolean>;
@@ -584,6 +610,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
584
610
  isContentScrollable: {
585
611
  type: import('vue').PropType<boolean>;
586
612
  };
613
+ hasBorder: {
614
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
615
+ };
616
+ borderPosition: {
617
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
618
+ };
619
+ borderSize: {
620
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
621
+ };
622
+ borderColor: {
623
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
624
+ };
587
625
  }>> & Readonly<{}>, {}, {}, {}, {}, {}>;
588
626
  __isFragment?: never;
589
627
  __isTeleport?: never;
@@ -604,17 +642,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
604
642
  dividerUnderHeader: {
605
643
  type: import('vue').PropType<boolean>;
606
644
  };
607
- hasBorder: {
645
+ hasRibbon: {
608
646
  type: import('vue').PropType<boolean>;
609
647
  };
610
- borderPosition: {
611
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
648
+ hasRadius: {
649
+ type: import('vue').PropType<boolean>;
612
650
  };
613
- borderSize: {
614
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
651
+ backgroundColor: {
652
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
615
653
  };
616
- borderColor: {
617
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
654
+ ribbonPosition: {
655
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
656
+ };
657
+ ribbonSize: {
658
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
659
+ };
660
+ ribbonColor: {
661
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
618
662
  };
619
663
  hasRibbonRadius: {
620
664
  type: import('vue').PropType<boolean>;
@@ -634,6 +678,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
634
678
  isContentScrollable: {
635
679
  type: import('vue').PropType<boolean>;
636
680
  };
681
+ hasBorder: {
682
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
683
+ };
684
+ borderPosition: {
685
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
686
+ };
687
+ borderSize: {
688
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
689
+ };
690
+ borderColor: {
691
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
692
+ };
637
693
  }>> & 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 () => {
638
694
  $slots: Readonly<{
639
695
  header?: () => any;
@@ -701,6 +757,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
701
757
  ICONS: Readonly<{
702
758
  readonly ANSWERS: VueConstructor<Vue>;
703
759
  readonly CHANGE: VueConstructor<Vue>;
760
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
704
761
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
705
762
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
706
763
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -802,6 +859,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
802
859
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
803
860
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
804
861
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
862
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
805
863
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
806
864
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
807
865
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1084,9 +1142,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1084
1142
  type: string;
1085
1143
  touchableDeprecated: boolean;
1086
1144
  color: string;
1087
- elevation: string;
1088
1145
  radius: string;
1089
1146
  state: string;
1147
+ elevation: string;
1090
1148
  colorScheme: string;
1091
1149
  }, {}, {
1092
1150
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1267,6 +1325,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1267
1325
  ICONS: Readonly<{
1268
1326
  readonly ANSWERS: VueConstructor<Vue>;
1269
1327
  readonly CHANGE: VueConstructor<Vue>;
1328
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
1270
1329
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
1271
1330
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
1272
1331
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -1368,6 +1427,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1368
1427
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1369
1428
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1370
1429
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1430
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1371
1431
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1372
1432
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1373
1433
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;