@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
@@ -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;
@@ -501,17 +504,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
501
504
  dividerUnderHeader: {
502
505
  type: import('vue').PropType<boolean>;
503
506
  };
504
- hasBorder: {
507
+ hasRibbon: {
505
508
  type: import('vue').PropType<boolean>;
506
509
  };
507
- borderPosition: {
508
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
510
+ hasRadius: {
511
+ type: import('vue').PropType<boolean>;
509
512
  };
510
- borderSize: {
511
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
513
+ backgroundColor: {
514
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
512
515
  };
513
- borderColor: {
514
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
516
+ ribbonPosition: {
517
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
518
+ };
519
+ ribbonSize: {
520
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
521
+ };
522
+ ribbonColor: {
523
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
515
524
  };
516
525
  hasRibbonRadius: {
517
526
  type: import('vue').PropType<boolean>;
@@ -531,6 +540,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
531
540
  isContentScrollable: {
532
541
  type: import('vue').PropType<boolean>;
533
542
  };
543
+ hasBorder: {
544
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
545
+ };
546
+ borderPosition: {
547
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
548
+ };
549
+ borderSize: {
550
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
551
+ };
552
+ borderColor: {
553
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
554
+ };
534
555
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
535
556
  P: {};
536
557
  B: {};
@@ -554,17 +575,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
554
575
  dividerUnderHeader: {
555
576
  type: import('vue').PropType<boolean>;
556
577
  };
557
- hasBorder: {
578
+ hasRibbon: {
558
579
  type: import('vue').PropType<boolean>;
559
580
  };
560
- borderPosition: {
561
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
581
+ hasRadius: {
582
+ type: import('vue').PropType<boolean>;
562
583
  };
563
- borderSize: {
564
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
584
+ backgroundColor: {
585
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
565
586
  };
566
- borderColor: {
567
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
587
+ ribbonPosition: {
588
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
589
+ };
590
+ ribbonSize: {
591
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
592
+ };
593
+ ribbonColor: {
594
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
568
595
  };
569
596
  hasRibbonRadius: {
570
597
  type: import('vue').PropType<boolean>;
@@ -584,6 +611,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
584
611
  isContentScrollable: {
585
612
  type: import('vue').PropType<boolean>;
586
613
  };
614
+ hasBorder: {
615
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
616
+ };
617
+ borderPosition: {
618
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
619
+ };
620
+ borderSize: {
621
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
622
+ };
623
+ borderColor: {
624
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
625
+ };
587
626
  }>> & Readonly<{}>, {}, {}, {}, {}, {}>;
588
627
  __isFragment?: never;
589
628
  __isTeleport?: never;
@@ -604,17 +643,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
604
643
  dividerUnderHeader: {
605
644
  type: import('vue').PropType<boolean>;
606
645
  };
607
- hasBorder: {
646
+ hasRibbon: {
608
647
  type: import('vue').PropType<boolean>;
609
648
  };
610
- borderPosition: {
611
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
649
+ hasRadius: {
650
+ type: import('vue').PropType<boolean>;
612
651
  };
613
- borderSize: {
614
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
652
+ backgroundColor: {
653
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
615
654
  };
616
- borderColor: {
617
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
655
+ ribbonPosition: {
656
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
657
+ };
658
+ ribbonSize: {
659
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
660
+ };
661
+ ribbonColor: {
662
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
618
663
  };
619
664
  hasRibbonRadius: {
620
665
  type: import('vue').PropType<boolean>;
@@ -634,6 +679,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
634
679
  isContentScrollable: {
635
680
  type: import('vue').PropType<boolean>;
636
681
  };
682
+ hasBorder: {
683
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
684
+ };
685
+ borderPosition: {
686
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
687
+ };
688
+ borderSize: {
689
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
690
+ };
691
+ borderColor: {
692
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
693
+ };
637
694
  }>> & 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
695
  $slots: Readonly<{
639
696
  header?: () => any;
@@ -701,6 +758,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
701
758
  ICONS: Readonly<{
702
759
  readonly ANSWERS: VueConstructor<Vue>;
703
760
  readonly CHANGE: VueConstructor<Vue>;
761
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
704
762
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
705
763
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
706
764
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -802,6 +860,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
802
860
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
803
861
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
804
862
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
863
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
805
864
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
806
865
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
807
866
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -904,6 +963,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
904
963
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
905
964
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
906
965
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
966
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
907
967
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
908
968
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
909
969
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1084,9 +1144,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1084
1144
  type: string;
1085
1145
  touchableDeprecated: boolean;
1086
1146
  color: string;
1087
- elevation: string;
1088
1147
  radius: string;
1089
1148
  state: string;
1149
+ elevation: string;
1090
1150
  colorScheme: string;
1091
1151
  }, {}, {
1092
1152
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1267,6 +1327,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1267
1327
  ICONS: Readonly<{
1268
1328
  readonly ANSWERS: VueConstructor<Vue>;
1269
1329
  readonly CHANGE: VueConstructor<Vue>;
1330
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
1270
1331
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
1271
1332
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
1272
1333
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -1368,6 +1429,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1368
1429
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1369
1430
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1370
1431
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1432
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1371
1433
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1372
1434
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1373
1435
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1470,6 +1532,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1470
1532
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1471
1533
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1472
1534
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
1535
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1473
1536
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1474
1537
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
1475
1538
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -45,6 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
45
45
  ICONS: Readonly<{
46
46
  readonly ANSWERS: VueConstructor<Vue>;
47
47
  readonly CHANGE: VueConstructor<Vue>;
48
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
48
49
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
49
50
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
50
51
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -146,6 +147,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
146
147
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
147
148
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
148
149
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
150
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
149
151
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
150
152
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
151
153
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -248,6 +250,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
248
250
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
249
251
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
250
252
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
253
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
251
254
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
252
255
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
253
256
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -473,17 +476,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
473
476
  dividerUnderHeader: {
474
477
  type: import('vue').PropType<boolean>;
475
478
  };
476
- hasBorder: {
479
+ hasRibbon: {
477
480
  type: import('vue').PropType<boolean>;
478
481
  };
479
- borderPosition: {
480
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
482
+ hasRadius: {
483
+ type: import('vue').PropType<boolean>;
481
484
  };
482
- borderSize: {
483
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
485
+ backgroundColor: {
486
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
484
487
  };
485
- borderColor: {
486
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
488
+ ribbonPosition: {
489
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
490
+ };
491
+ ribbonSize: {
492
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
493
+ };
494
+ ribbonColor: {
495
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
487
496
  };
488
497
  hasRibbonRadius: {
489
498
  type: import('vue').PropType<boolean>;
@@ -503,6 +512,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
503
512
  isContentScrollable: {
504
513
  type: import('vue').PropType<boolean>;
505
514
  };
515
+ hasBorder: {
516
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
517
+ };
518
+ borderPosition: {
519
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
520
+ };
521
+ borderSize: {
522
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
523
+ };
524
+ borderColor: {
525
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
526
+ };
506
527
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
507
528
  P: {};
508
529
  B: {};
@@ -526,17 +547,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
526
547
  dividerUnderHeader: {
527
548
  type: import('vue').PropType<boolean>;
528
549
  };
529
- hasBorder: {
550
+ hasRibbon: {
530
551
  type: import('vue').PropType<boolean>;
531
552
  };
532
- borderPosition: {
533
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
553
+ hasRadius: {
554
+ type: import('vue').PropType<boolean>;
534
555
  };
535
- borderSize: {
536
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
556
+ backgroundColor: {
557
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
537
558
  };
538
- borderColor: {
539
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
559
+ ribbonPosition: {
560
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
561
+ };
562
+ ribbonSize: {
563
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
564
+ };
565
+ ribbonColor: {
566
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
540
567
  };
541
568
  hasRibbonRadius: {
542
569
  type: import('vue').PropType<boolean>;
@@ -556,6 +583,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
556
583
  isContentScrollable: {
557
584
  type: import('vue').PropType<boolean>;
558
585
  };
586
+ hasBorder: {
587
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
588
+ };
589
+ borderPosition: {
590
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
591
+ };
592
+ borderSize: {
593
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
594
+ };
595
+ borderColor: {
596
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
597
+ };
559
598
  }>> & Readonly<{}>, {}, {}, {}, {}, {}>;
560
599
  __isFragment?: never;
561
600
  __isTeleport?: never;
@@ -576,17 +615,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
576
615
  dividerUnderHeader: {
577
616
  type: import('vue').PropType<boolean>;
578
617
  };
579
- hasBorder: {
618
+ hasRibbon: {
580
619
  type: import('vue').PropType<boolean>;
581
620
  };
582
- borderPosition: {
583
- type: import('vue').PropType<import('../../Cards/Card').CardBorderPositions>;
621
+ hasRadius: {
622
+ type: import('vue').PropType<boolean>;
584
623
  };
585
- borderSize: {
586
- type: import('vue').PropType<import('../../Cards/Card').CardBorderSizes>;
624
+ backgroundColor: {
625
+ type: import('vue').PropType<import('../../Cards/Card').CardBackgroundColor>;
587
626
  };
588
- borderColor: {
589
- type: import('vue').PropType<import('../../Cards/Card').CardBorderColors>;
627
+ ribbonPosition: {
628
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonPositions>;
629
+ };
630
+ ribbonSize: {
631
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonSizes>;
632
+ };
633
+ ribbonColor: {
634
+ type: import('vue').PropType<import('../../Cards/Card').CardRibbonColors>;
590
635
  };
591
636
  hasRibbonRadius: {
592
637
  type: import('vue').PropType<boolean>;
@@ -606,6 +651,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
606
651
  isContentScrollable: {
607
652
  type: import('vue').PropType<boolean>;
608
653
  };
654
+ hasBorder: {
655
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
656
+ };
657
+ borderPosition: {
658
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
659
+ };
660
+ borderSize: {
661
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
662
+ };
663
+ borderColor: {
664
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
665
+ };
609
666
  }>> & 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 () => {
610
667
  $slots: Readonly<{
611
668
  header?: () => any;
@@ -673,6 +730,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
673
730
  ICONS: Readonly<{
674
731
  readonly ANSWERS: VueConstructor<Vue>;
675
732
  readonly CHANGE: VueConstructor<Vue>;
733
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
676
734
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
677
735
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
678
736
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -774,6 +832,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
774
832
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
775
833
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
776
834
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
835
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
777
836
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
778
837
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
779
838
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -876,6 +935,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
876
935
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
877
936
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
878
937
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
938
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
879
939
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
880
940
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
881
941
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1056,9 +1116,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1056
1116
  type: string;
1057
1117
  touchableDeprecated: boolean;
1058
1118
  color: string;
1059
- elevation: string;
1060
1119
  radius: string;
1061
1120
  state: string;
1121
+ elevation: string;
1062
1122
  colorScheme: string;
1063
1123
  }, {}, {
1064
1124
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1412,6 +1472,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1412
1472
  ICONS: Readonly<{
1413
1473
  readonly ANSWERS: VueConstructor<Vue>;
1414
1474
  readonly CHANGE: VueConstructor<Vue>;
1475
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
1415
1476
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
1416
1477
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
1417
1478
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -1513,6 +1574,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1513
1574
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1514
1575
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1515
1576
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1577
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1516
1578
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1517
1579
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1518
1580
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1615,6 +1677,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1615
1677
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1616
1678
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1617
1679
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
1680
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1618
1681
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1619
1682
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
1620
1683
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -45,6 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
45
45
  ICONS: Readonly<{
46
46
  readonly ANSWERS: VueConstructor<Vue>;
47
47
  readonly CHANGE: VueConstructor<Vue>;
48
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
48
49
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
49
50
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
50
51
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -146,6 +147,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
146
147
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
147
148
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
148
149
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
150
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
149
151
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
150
152
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
151
153
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -248,6 +250,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
248
250
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
249
251
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
250
252
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
253
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
251
254
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
252
255
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
253
256
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -8,9 +8,18 @@ export declare const TEXT_GROUP_LOADING_SIZES: {
8
8
  LARGE: string;
9
9
  };
10
10
  export declare const TEXT_GROUP_SIZES: {
11
- X_SMALL: string;
12
- SMALL: string;
13
- MEDIUM: string;
11
+ readonly X_SMALL: "x-small";
12
+ readonly SMALL: "small";
13
+ readonly MEDIUM: "medium";
14
+ readonly LARGE: "large";
15
+ };
16
+ export declare const TEXT_GROUP_ALIGNS: {
17
+ readonly LEFT: "left";
18
+ readonly CENTER: "center";
19
+ };
20
+ export declare const TEXT_GROUP_MAIN_TEXT_COLORS: {
21
+ readonly NEUTRAL: "neutral";
22
+ readonly PRIMARY: "primary";
14
23
  };
15
24
  export declare const TEXT_GROUP_STATES: {
16
25
  readonly DEFAULT: "default";
@@ -22,3 +31,5 @@ export type TextGroupProminence = (typeof TEXT_GROUP_PROMINENCE)[keyof typeof TE
22
31
  export type TextGroupLoadingSize = (typeof TEXT_GROUP_LOADING_SIZES)[keyof typeof TEXT_GROUP_LOADING_SIZES];
23
32
  export type TextGroupSize = (typeof TEXT_GROUP_SIZES)[keyof typeof TEXT_GROUP_SIZES];
24
33
  export type TextGroupState = (typeof TEXT_GROUP_STATES)[keyof typeof TEXT_GROUP_STATES];
34
+ export type TextGroupAlign = (typeof TEXT_GROUP_ALIGNS)[keyof typeof TEXT_GROUP_ALIGNS];
35
+ export type TextGroupMainTextColor = (typeof TEXT_GROUP_MAIN_TEXT_COLORS)[keyof typeof TEXT_GROUP_MAIN_TEXT_COLORS];
@@ -1,10 +1,13 @@
1
- import { TextGroupProminence, TextGroupLoadingSize, TextGroupSize, TextGroupState } from './TextGroup.consts';
1
+ import { TextGroupAlign, TextGroupMainTextColor, TextGroupProminence, TextGroupLoadingSize, TextGroupSize, TextGroupState } from './TextGroup.consts';
2
+ import { RemovedProp } from '../../utils/type.utils';
2
3
 
3
4
  declare function __VLS_template(): {
4
5
  mainText?(_: {}): any;
5
6
  };
6
7
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
8
  size?: TextGroupSize;
9
+ align?: TextGroupAlign;
10
+ mainTextColor?: TextGroupMainTextColor;
8
11
  prominence?: TextGroupProminence;
9
12
  eyebrowText?: string | null;
10
13
  eyebrowTextEllipsis?: boolean;
@@ -16,14 +19,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
16
19
  supportingTextEllipsis?: boolean;
17
20
  isInteractive?: boolean;
18
21
  skeletonLoadingSize?: TextGroupLoadingSize;
19
- isSelected?: boolean;
20
22
  state?: TextGroupState;
21
23
  isSupportingTextTooltipEnabled?: boolean;
22
24
  isSupportingTextTooltipEnabledOnMobile?: boolean;
23
25
  isSupportingTextTooltipAutoFilledWithContent?: boolean;
24
26
  supportingTextTooltipContent?: string;
27
+ isSelected?: RemovedProp<"use mainTextColor=primary instead">;
25
28
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
26
29
  size?: TextGroupSize;
30
+ align?: TextGroupAlign;
31
+ mainTextColor?: TextGroupMainTextColor;
27
32
  prominence?: TextGroupProminence;
28
33
  eyebrowText?: string | null;
29
34
  eyebrowTextEllipsis?: boolean;
@@ -35,12 +40,12 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
35
40
  supportingTextEllipsis?: boolean;
36
41
  isInteractive?: boolean;
37
42
  skeletonLoadingSize?: TextGroupLoadingSize;
38
- isSelected?: boolean;
39
43
  state?: TextGroupState;
40
44
  isSupportingTextTooltipEnabled?: boolean;
41
45
  isSupportingTextTooltipEnabledOnMobile?: boolean;
42
46
  isSupportingTextTooltipAutoFilledWithContent?: boolean;
43
47
  supportingTextTooltipContent?: string;
48
+ isSelected?: RemovedProp<"use mainTextColor=primary instead">;
44
49
  }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
45
50
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
46
51
  export default _default;
@@ -5,6 +5,7 @@ export declare const data: () => {
5
5
  ICONS: Readonly<{
6
6
  readonly ANSWERS: VueConstructor<Vue>;
7
7
  readonly CHANGE: VueConstructor<Vue>;
8
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
8
9
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
9
10
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
10
11
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -106,6 +107,7 @@ export declare const data: () => {
106
107
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
107
108
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
108
109
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
110
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
109
111
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
110
112
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
111
113
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -208,6 +210,7 @@ export declare const data: () => {
208
210
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
209
211
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
210
212
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
213
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
211
214
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
212
215
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
213
216
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -291,8 +294,8 @@ export declare const data: () => {
291
294
  readonly ACCENT: "accent";
292
295
  }>;
293
296
  allowedColorsToBorderColorsMap: {
294
- neutral: ("primary" | "neutral" | "neutralWeak" | "primaryWeak")[];
295
- neutralWeak: ("primary" | "neutral" | "neutralWeak" | "primaryWeak")[];
297
+ neutral: ("neutral" | "neutralWeak" | "primary" | "primaryWeak")[];
298
+ neutralWeak: ("neutral" | "neutralWeak" | "primary" | "primaryWeak")[];
296
299
  primary: ("primary" | "primaryWeak")[];
297
300
  success: ("success" | "successWeak")[];
298
301
  fail: ("fail" | "failWeak")[];
@@ -126,14 +126,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
126
126
  };
127
127
  }>> & Readonly<{}>, {
128
128
  color: import('./Tile.consts').TileColor;
129
+ eyebrowText: string;
130
+ isEyebrowTextUppercase: boolean;
129
131
  state: import('./Tile.consts').TileState;
130
132
  iconLeft: Record<string, any>;
131
133
  iconRight: Record<string, any>;
132
134
  borderColor: import('./Tile.consts').TileBorderColors;
133
135
  interactive: boolean;
134
- eyebrowText: string;
135
136
  additionalText: string;
136
- isEyebrowTextUppercase: boolean;
137
137
  eyebrowEllipsis: boolean;
138
138
  textEllipsis: boolean;
139
139
  additionalTextMaxWidth: import('./Tile.consts').TileAdditionalTextMaxWidth;