@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
@@ -0,0 +1,42 @@
1
+ import { IconItem } from '../Icons/Icon';
2
+
3
+ declare function __VLS_template(): Readonly<{
4
+ actions?: () => any;
5
+ }> & {
6
+ actions?: () => any;
7
+ };
8
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ icon?: IconItem | null;
10
+ mainText?: string | null;
11
+ supportingText?: string | null;
12
+ buttonLabel?: string;
13
+ buttonIcon?: IconItem | null;
14
+ isActionVertical?: boolean;
15
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ "button-clicked": () => void;
17
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
18
+ icon?: IconItem | null;
19
+ mainText?: string | null;
20
+ supportingText?: string | null;
21
+ buttonLabel?: string;
22
+ buttonIcon?: IconItem | null;
23
+ isActionVertical?: boolean;
24
+ }>>> & Readonly<{
25
+ "onButton-clicked"?: (() => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
+ export default _default;
29
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
30
+ type __VLS_TypePropsToRuntimeProps<T> = {
31
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
32
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
33
+ } : {
34
+ type: import('vue').PropType<T[K]>;
35
+ required: true;
36
+ };
37
+ };
38
+ type __VLS_WithTemplateSlots<T, S> = T & {
39
+ new (): {
40
+ $slots: S;
41
+ };
42
+ };
@@ -0,0 +1,3 @@
1
+ import { default as ActionContent } from './ActionContent.vue';
2
+
3
+ export default ActionContent;
@@ -58,6 +58,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
58
58
  ICONS: Readonly<{
59
59
  readonly ANSWERS: VueConstructor<Vue>;
60
60
  readonly CHANGE: VueConstructor<Vue>;
61
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
61
62
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
62
63
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
63
64
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -159,6 +160,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
159
160
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
160
161
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
161
162
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
163
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
162
164
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
163
165
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
164
166
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -261,6 +263,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
261
263
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
262
264
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
263
265
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
266
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
264
267
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
265
268
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
266
269
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -441,9 +444,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
441
444
  type: string;
442
445
  touchableDeprecated: boolean;
443
446
  color: string;
444
- elevation: string;
445
447
  radius: string;
446
448
  state: string;
449
+ elevation: string;
447
450
  colorScheme: string;
448
451
  }, {}, {
449
452
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -5,7 +5,12 @@ export declare const CARD_PADDING_SIZES: {
5
5
  readonly LARGE: "large";
6
6
  };
7
7
  export type CardPaddingSize = Value<typeof CARD_PADDING_SIZES>;
8
- export declare const CARD_BORDER_COLORS: {
8
+ export declare const CARD_BACKGROUND_COLORS: {
9
+ readonly DEFAULT: "default";
10
+ readonly NEUTRAL: "neutral";
11
+ };
12
+ export type CardBackgroundColor = Value<typeof CARD_BACKGROUND_COLORS>;
13
+ export declare const CARD_RIBBON_COLORS: {
9
14
  readonly NEUTRAL: "neutral";
10
15
  readonly NEUTRAL_HEAVY: "neutral-heavy";
11
16
  readonly NEUTRAL_STRONG: "neutral-strong";
@@ -17,21 +22,21 @@ export declare const CARD_BORDER_COLORS: {
17
22
  readonly INFO: "info";
18
23
  readonly TRANSPARENT: "transparent";
19
24
  };
20
- export type CardBorderColors = Value<typeof CARD_BORDER_COLORS>;
21
- export declare const CARD_BORDER_SIZES: {
25
+ export type CardRibbonColors = Value<typeof CARD_RIBBON_COLORS>;
26
+ export declare const CARD_RIBBON_SIZES: {
22
27
  readonly SMALL: "small";
23
28
  readonly MEDIUM: "medium";
24
29
  readonly LARGE: "large";
25
30
  };
26
- export type CardBorderSizes = Value<typeof CARD_BORDER_SIZES>;
27
- export declare const CARD_BORDER_POSITIONS: {
31
+ export type CardRibbonSizes = Value<typeof CARD_RIBBON_SIZES>;
32
+ export declare const CARD_RIBBON_POSITIONS: {
28
33
  readonly TOP: "top";
29
34
  readonly LEFT: "left";
30
35
  };
31
- export type CardBorderPositions = Value<typeof CARD_BORDER_POSITIONS>;
32
- export declare const CARD_BORDER_RADIUS: {
36
+ export type CardRibbonPositions = Value<typeof CARD_RIBBON_POSITIONS>;
37
+ export declare const CARD_RIBBON_RADIUS: {
33
38
  readonly NONE: "none";
34
39
  readonly RIGHT: "right";
35
40
  readonly BOTTOM: "bottom";
36
41
  };
37
- export type CardBorderRadius = Value<typeof CARD_BORDER_RADIUS>;
42
+ export type CardRibbonRadius = Value<typeof CARD_RIBBON_RADIUS>;
@@ -1,5 +1,6 @@
1
+ import { RemovedProp } from '../../../utils/type.utils';
1
2
  import { LoadingBarColors } from '../../LoadingBar';
2
- import { CardBorderColors, CardBorderPositions, CardBorderSizes, CardPaddingSize } from './Card.consts';
3
+ import { CardBackgroundColor, CardRibbonColors, CardRibbonPositions, CardRibbonSizes, CardPaddingSize } from './Card.consts';
3
4
 
4
5
  declare function __VLS_template(): Readonly<{
5
6
  header?: () => any;
@@ -16,32 +17,44 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
16
17
  footerHasPadding?: boolean;
17
18
  paddingSize?: CardPaddingSize;
18
19
  dividerUnderHeader?: boolean;
19
- hasBorder?: boolean;
20
- borderPosition?: CardBorderPositions;
21
- borderSize?: CardBorderSizes;
22
- borderColor?: CardBorderColors;
20
+ hasRibbon?: boolean;
21
+ hasRadius?: boolean;
22
+ backgroundColor?: CardBackgroundColor;
23
+ ribbonPosition?: CardRibbonPositions;
24
+ ribbonSize?: CardRibbonSizes;
25
+ ribbonColor?: CardRibbonColors;
23
26
  hasRibbonRadius?: boolean;
24
27
  hasLoadingBar?: boolean;
25
28
  loadingBarColor?: LoadingBarColors;
26
29
  loadingBarTime?: string;
27
30
  isFlat?: boolean;
28
31
  isContentScrollable?: boolean;
32
+ hasBorder?: RemovedProp<"renamed to hasRibbon">;
33
+ borderPosition?: RemovedProp<"renamed to ribbonPosition">;
34
+ borderSize?: RemovedProp<"renamed to ribbonSize">;
35
+ borderColor?: RemovedProp<"renamed to ribbonColor">;
29
36
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
30
37
  contentHasPadding?: boolean;
31
38
  headerHasPadding?: boolean;
32
39
  footerHasPadding?: boolean;
33
40
  paddingSize?: CardPaddingSize;
34
41
  dividerUnderHeader?: boolean;
35
- hasBorder?: boolean;
36
- borderPosition?: CardBorderPositions;
37
- borderSize?: CardBorderSizes;
38
- borderColor?: CardBorderColors;
42
+ hasRibbon?: boolean;
43
+ hasRadius?: boolean;
44
+ backgroundColor?: CardBackgroundColor;
45
+ ribbonPosition?: CardRibbonPositions;
46
+ ribbonSize?: CardRibbonSizes;
47
+ ribbonColor?: CardRibbonColors;
39
48
  hasRibbonRadius?: boolean;
40
49
  hasLoadingBar?: boolean;
41
50
  loadingBarColor?: LoadingBarColors;
42
51
  loadingBarTime?: string;
43
52
  isFlat?: boolean;
44
53
  isContentScrollable?: boolean;
54
+ hasBorder?: RemovedProp<"renamed to hasRibbon">;
55
+ borderPosition?: RemovedProp<"renamed to ribbonPosition">;
56
+ borderSize?: RemovedProp<"renamed to ribbonSize">;
57
+ borderColor?: RemovedProp<"renamed to ribbonColor">;
45
58
  }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
59
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
47
60
  export default _default;
@@ -30,6 +30,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
30
30
  ICONS: Readonly<{
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 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
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;
@@ -233,6 +235,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
233
235
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
234
236
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
235
237
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
238
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
236
239
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
237
240
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
238
241
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -374,17 +377,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
374
377
  dividerUnderHeader: {
375
378
  type: import('vue').PropType<boolean>;
376
379
  };
377
- hasBorder: {
380
+ hasRibbon: {
378
381
  type: import('vue').PropType<boolean>;
379
382
  };
380
- borderPosition: {
381
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderPositions>;
383
+ hasRadius: {
384
+ type: import('vue').PropType<boolean>;
382
385
  };
383
- borderSize: {
384
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderSizes>;
386
+ backgroundColor: {
387
+ type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
385
388
  };
386
- borderColor: {
387
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderColors>;
389
+ ribbonPosition: {
390
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
391
+ };
392
+ ribbonSize: {
393
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
394
+ };
395
+ ribbonColor: {
396
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
388
397
  };
389
398
  hasRibbonRadius: {
390
399
  type: import('vue').PropType<boolean>;
@@ -404,6 +413,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
404
413
  isContentScrollable: {
405
414
  type: import('vue').PropType<boolean>;
406
415
  };
416
+ hasBorder: {
417
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
418
+ };
419
+ borderPosition: {
420
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
421
+ };
422
+ borderSize: {
423
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
424
+ };
425
+ borderColor: {
426
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
427
+ };
407
428
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
408
429
  P: {};
409
430
  B: {};
@@ -427,17 +448,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
427
448
  dividerUnderHeader: {
428
449
  type: import('vue').PropType<boolean>;
429
450
  };
430
- hasBorder: {
451
+ hasRibbon: {
431
452
  type: import('vue').PropType<boolean>;
432
453
  };
433
- borderPosition: {
434
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderPositions>;
454
+ hasRadius: {
455
+ type: import('vue').PropType<boolean>;
435
456
  };
436
- borderSize: {
437
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderSizes>;
457
+ backgroundColor: {
458
+ type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
438
459
  };
439
- borderColor: {
440
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderColors>;
460
+ ribbonPosition: {
461
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
462
+ };
463
+ ribbonSize: {
464
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
465
+ };
466
+ ribbonColor: {
467
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
441
468
  };
442
469
  hasRibbonRadius: {
443
470
  type: import('vue').PropType<boolean>;
@@ -457,6 +484,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
457
484
  isContentScrollable: {
458
485
  type: import('vue').PropType<boolean>;
459
486
  };
487
+ hasBorder: {
488
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
489
+ };
490
+ borderPosition: {
491
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
492
+ };
493
+ borderSize: {
494
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
495
+ };
496
+ borderColor: {
497
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
498
+ };
460
499
  }>> & Readonly<{}>, {}, {}, {}, {}, {}>;
461
500
  __isFragment?: never;
462
501
  __isTeleport?: never;
@@ -477,17 +516,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
477
516
  dividerUnderHeader: {
478
517
  type: import('vue').PropType<boolean>;
479
518
  };
480
- hasBorder: {
519
+ hasRibbon: {
481
520
  type: import('vue').PropType<boolean>;
482
521
  };
483
- borderPosition: {
484
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderPositions>;
522
+ hasRadius: {
523
+ type: import('vue').PropType<boolean>;
485
524
  };
486
- borderSize: {
487
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderSizes>;
525
+ backgroundColor: {
526
+ type: import('vue').PropType<import('../Card/Card.consts').CardBackgroundColor>;
488
527
  };
489
- borderColor: {
490
- type: import('vue').PropType<import('../Card/Card.consts').CardBorderColors>;
528
+ ribbonPosition: {
529
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonPositions>;
530
+ };
531
+ ribbonSize: {
532
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonSizes>;
533
+ };
534
+ ribbonColor: {
535
+ type: import('vue').PropType<import('../Card/Card.consts').CardRibbonColors>;
491
536
  };
492
537
  hasRibbonRadius: {
493
538
  type: import('vue').PropType<boolean>;
@@ -507,6 +552,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
507
552
  isContentScrollable: {
508
553
  type: import('vue').PropType<boolean>;
509
554
  };
555
+ hasBorder: {
556
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to hasRibbon">>;
557
+ };
558
+ borderPosition: {
559
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonPosition">>;
560
+ };
561
+ borderSize: {
562
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonSize">>;
563
+ };
564
+ borderColor: {
565
+ type: import('vue').PropType<import('../../../utils/type.utils').RemovedProp<"renamed to ribbonColor">>;
566
+ };
510
567
  }>> & 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 () => {
511
568
  $slots: Readonly<{
512
569
  header?: () => any;
@@ -8,6 +8,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
8
8
  label?: string | null;
9
9
  isLabelUppercase?: boolean;
10
10
  leftIcon?: IconItem | null;
11
+ rightIcon?: IconItem | null;
11
12
  radius?: ChipRadius;
12
13
  size?: ChipSize;
13
14
  color?: ChipColor;
@@ -22,6 +23,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
22
23
  label?: string | null;
23
24
  isLabelUppercase?: boolean;
24
25
  leftIcon?: IconItem | null;
26
+ rightIcon?: IconItem | null;
25
27
  radius?: ChipRadius;
26
28
  size?: ChipSize;
27
29
  color?: ChipColor;
@@ -51,6 +51,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
51
51
  ICONS: Readonly<{
52
52
  readonly ANSWERS: VueConstructor<Vue>;
53
53
  readonly CHANGE: VueConstructor<Vue>;
54
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
54
55
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
55
56
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
56
57
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -152,6 +153,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
152
153
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
153
154
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
154
155
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
156
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
155
157
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
156
158
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
157
159
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -254,6 +256,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
254
256
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
255
257
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
256
258
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
259
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
257
260
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
258
261
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
259
262
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -397,9 +400,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
397
400
  };
398
401
  }>> & Readonly<{}>, {
399
402
  color: string;
403
+ isInteractive: boolean;
400
404
  state: string;
401
405
  isOpen: boolean;
402
- isInteractive: boolean;
403
406
  placeholder: string;
404
407
  startDate: Date;
405
408
  endDate: Date;
@@ -580,7 +580,7 @@ declare const _default: import('vue').DefineComponent<{
580
580
  readonly ICON_RIGHT_ONLY: "iconRightOnly";
581
581
  };
582
582
  }, {}, {
583
- borderColor(): "primary" | "danger" | "neutralWeak" | "warning" | "dangerWeak" | "warningWeak";
583
+ borderColor(): "danger" | "neutralWeak" | "primary" | "warning" | "dangerWeak" | "warningWeak";
584
584
  resolvedPlaceholder(): any;
585
585
  eyebrowText(): string;
586
586
  text(): any;
@@ -611,11 +611,11 @@ declare const _default: import('vue').DefineComponent<{
611
611
  icon: any;
612
612
  label: string;
613
613
  color: string;
614
+ isInteractive: boolean;
614
615
  state: string;
615
616
  isIconHiddenOnMobile: boolean;
616
617
  date: Date;
617
618
  isLabelUppercase: boolean;
618
- isInteractive: boolean;
619
619
  placeholder: string;
620
620
  additionalText: string;
621
621
  triggerType: string;
@@ -755,14 +755,14 @@ declare const _default: import('vue').DefineComponent<{
755
755
  };
756
756
  }>> & Readonly<{}>, {
757
757
  color: TileColor;
758
+ eyebrowText: string;
759
+ isEyebrowTextUppercase: boolean;
758
760
  state: TileState;
759
761
  iconLeft: Record<string, any>;
760
762
  iconRight: Record<string, any>;
761
763
  borderColor: import('../../Tile').TileBorderColors;
762
764
  interactive: boolean;
763
- eyebrowText: string;
764
765
  additionalText: string;
765
- isEyebrowTextUppercase: boolean;
766
766
  eyebrowEllipsis: boolean;
767
767
  textEllipsis: boolean;
768
768
  additionalTextMaxWidth: import('../../Tile').TileAdditionalTextMaxWidth;
@@ -818,6 +818,7 @@ declare const _default: import('vue').DefineComponent<{
818
818
  ICONS: Readonly<{
819
819
  readonly ANSWERS: VueConstructor<Vue>;
820
820
  readonly CHANGE: VueConstructor<Vue>;
821
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
821
822
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
822
823
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
823
824
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -919,6 +920,7 @@ declare const _default: import('vue').DefineComponent<{
919
920
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
920
921
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
921
922
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
923
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
922
924
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
923
925
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
924
926
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1021,6 +1023,7 @@ declare const _default: import('vue').DefineComponent<{
1021
1023
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1022
1024
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1023
1025
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
1026
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1024
1027
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1025
1028
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
1026
1029
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1164,9 +1167,9 @@ declare const _default: import('vue').DefineComponent<{
1164
1167
  };
1165
1168
  }>> & Readonly<{}>, {
1166
1169
  color: string;
1170
+ isInteractive: boolean;
1167
1171
  state: string;
1168
1172
  isOpen: boolean;
1169
- isInteractive: boolean;
1170
1173
  placeholder: string;
1171
1174
  startDate: Date;
1172
1175
  endDate: Date;
@@ -597,8 +597,8 @@ declare const _default: import('vue').DefineComponent<{
597
597
  }) => any) | undefined;
598
598
  }>, {
599
599
  color: string;
600
- state: string;
601
600
  isInteractive: boolean;
601
+ state: string;
602
602
  placeholder: string;
603
603
  startDate: Date;
604
604
  endDate: Date;
@@ -662,6 +662,7 @@ declare const _default: import('vue').DefineComponent<{
662
662
  ICONS: Readonly<{
663
663
  readonly ANSWERS: VueConstructor<Vue>;
664
664
  readonly CHANGE: VueConstructor<Vue>;
665
+ readonly COMMENT_LOCK: VueConstructor<Vue>;
665
666
  readonly COMMENTS_CHECK: VueConstructor<Vue>;
666
667
  readonly HEAD_WITH_QUESTION_MARK: VueConstructor<Vue>;
667
668
  readonly HIDE_ANSWERS: VueConstructor<Vue>;
@@ -763,6 +764,7 @@ declare const _default: import('vue').DefineComponent<{
763
764
  readonly FA_CODE_SIMPLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
764
765
  readonly FA_CODE: import('@fortawesome/fontawesome-common-types').IconDefinition;
765
766
  readonly FA_COMMENT_DOTS: import('@fortawesome/fontawesome-common-types').IconDefinition;
767
+ readonly FA_COMMENT_PLUS: import('@fortawesome/fontawesome-common-types').IconDefinition;
766
768
  readonly FA_COMMENT_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
767
769
  readonly FA_COMMENT: import('@fortawesome/fontawesome-common-types').IconDefinition;
768
770
  readonly FA_COMMENTS_QUESTION_CHECK: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -865,6 +867,7 @@ declare const _default: import('vue').DefineComponent<{
865
867
  readonly FA_PAPER_PLANE: import('@fortawesome/fontawesome-common-types').IconDefinition;
866
868
  readonly FA_PAPERCLIP: import('@fortawesome/fontawesome-common-types').IconDefinition;
867
869
  readonly FA_PARTY_HORN: import('@fortawesome/fontawesome-common-types').IconDefinition;
870
+ readonly FA_PASTE: import('@fortawesome/fontawesome-common-types').IconDefinition;
868
871
  readonly FA_PEN_CIRCLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
869
872
  readonly FA_PEN_FIELD: import('@fortawesome/fontawesome-common-types').IconDefinition;
870
873
  readonly FA_PEN_TO_SQUARE: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1008,9 +1011,9 @@ declare const _default: import('vue').DefineComponent<{
1008
1011
  };
1009
1012
  }>> & Readonly<{}>, {
1010
1013
  color: string;
1014
+ isInteractive: boolean;
1011
1015
  state: string;
1012
1016
  isOpen: boolean;
1013
- isInteractive: boolean;
1014
1017
  placeholder: string;
1015
1018
  startDate: Date;
1016
1019
  endDate: Date;
@@ -38,7 +38,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
38
38
  };
39
39
  }>> & Readonly<{}>, {
40
40
  size: string;
41
- isVertical: boolean;
42
41
  prominence: string;
42
+ isVertical: boolean;
43
43
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
44
44
  export default _default;
@@ -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;