@bethinkpl/design-system 44.0.0 → 45.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 (53) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +9623 -9592
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +1 -1
  5. package/dist/lib/js/components/Callout/Callout.consts.d.ts +32 -0
  6. package/dist/lib/js/components/{ActionContent/ActionContent.vue.d.ts → Callout/Callout.vue.d.ts} +17 -6
  7. package/dist/lib/js/components/Callout/index.d.ts +4 -0
  8. package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +1 -1
  9. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +5 -5
  10. package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +2 -2
  11. package/dist/lib/js/components/Divider/Divider.vue.d.ts +1 -1
  12. package/dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts +1 -1
  13. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +4 -4
  14. package/dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts +4 -4
  15. package/dist/lib/js/components/Dropdown/Dropdown.vue.d.ts +1 -1
  16. package/dist/lib/js/components/Form/FormField/FormField.utils.d.ts +1 -1
  17. package/dist/lib/js/components/Form/InputField/InputField.vue.d.ts +2 -2
  18. package/dist/lib/js/components/Form/PasswordField/PasswordField.vue.d.ts +2 -2
  19. package/dist/lib/js/components/Form/SelectField/SelectField.vue.d.ts +2 -2
  20. package/dist/lib/js/components/Form/TextAreaField/TextAreaField.vue.d.ts +2 -2
  21. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +5 -5
  22. package/dist/lib/js/components/Headers/PageHeader/PageHeader.vue.d.ts +1 -1
  23. package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +3 -3
  24. package/dist/lib/js/components/IconText/IconText.vue.d.ts +1 -1
  25. package/dist/lib/js/components/Image/Image.vue.d.ts +1 -1
  26. package/dist/lib/js/components/Menu/MenuDivider/MenuDivider.vue.d.ts +1 -1
  27. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +2 -2
  28. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +2 -2
  29. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +2 -2
  30. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +7 -7
  31. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +3 -3
  32. package/dist/lib/js/components/SelectList/SelectListItemDivider/SelectListItemDivider.vue.d.ts +1 -1
  33. package/dist/lib/js/components/Skeleton/Skeleton.vue.d.ts +1 -1
  34. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +3 -3
  35. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +3 -3
  36. package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +2 -2
  37. package/dist/lib/js/components/Tile/Tile.vue.d.ts +2 -2
  38. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +1 -1
  39. package/dist/lib/js/index.d.ts +2 -1
  40. package/lib/js/components/Callout/Callout.consts.ts +25 -0
  41. package/lib/js/components/Callout/Callout.spec.ts +257 -0
  42. package/lib/js/components/Callout/Callout.stories.ts +209 -0
  43. package/lib/js/components/Callout/Callout.vue +161 -0
  44. package/lib/js/components/Callout/index.ts +4 -0
  45. package/lib/js/components/Cards/Card/Card.vue +1 -1
  46. package/lib/js/components/Form/PasswordField/PasswordField.vue +1 -1
  47. package/lib/js/index.ts +2 -1
  48. package/package.json +1 -1
  49. package/dist/lib/js/components/ActionContent/index.d.ts +0 -3
  50. package/lib/js/components/ActionContent/ActionContent.spec.ts +0 -99
  51. package/lib/js/components/ActionContent/ActionContent.stories.ts +0 -141
  52. package/lib/js/components/ActionContent/ActionContent.vue +0 -104
  53. package/lib/js/components/ActionContent/index.ts +0 -3
@@ -450,9 +450,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
450
450
  type: string;
451
451
  touchableDeprecated: boolean;
452
452
  color: string;
453
+ elevation: string;
453
454
  radius: string;
454
455
  state: string;
455
- elevation: string;
456
456
  colorScheme: string;
457
457
  }, {}, {
458
458
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -0,0 +1,32 @@
1
+ import { Value } from '../../utils/type.utils';
2
+ import { FeatureIconColor } from '../Icons/FeatureIcon/FeatureIcon.consts';
3
+ import { TextGroupMainTextColor } from '../TextGroup/TextGroup.consts';
4
+
5
+ export declare const CALLOUT_LAYOUTS: {
6
+ readonly VERTICAL: "vertical";
7
+ readonly HORIZONTAL: "horizontal";
8
+ };
9
+ export type CalloutLayout = Value<typeof CALLOUT_LAYOUTS>;
10
+ export declare const CALLOUT_SIZES: {
11
+ readonly SMALL: "small";
12
+ readonly MEDIUM: "medium";
13
+ readonly LARGE: "large";
14
+ };
15
+ export type CalloutSize = Value<typeof CALLOUT_SIZES>;
16
+ export declare const CALLOUT_ICON_COLORS: {
17
+ readonly DANGER: "danger";
18
+ readonly INFO: "info";
19
+ readonly NEUTRAL: "neutral";
20
+ readonly NEUTRAL_WEAK: "neutralWeak";
21
+ readonly PRIMARY: "primary";
22
+ readonly SUCCESS: "success";
23
+ readonly WARNING: "warning";
24
+ readonly FAIL: "fail";
25
+ readonly ACCENT: "accent";
26
+ };
27
+ export type CalloutIconColor = FeatureIconColor;
28
+ export declare const CALLOUT_MAIN_TEXT_COLORS: {
29
+ readonly NEUTRAL: "neutral";
30
+ readonly PRIMARY: "primary";
31
+ };
32
+ export type CalloutMainTextColor = TextGroupMainTextColor;
@@ -1,4 +1,5 @@
1
1
  import { IconItem } from '../Icons/Icon';
2
+ import { CalloutIconColor, CalloutLayout, CalloutMainTextColor, CalloutSize } from './Callout.consts';
2
3
 
3
4
  declare function __VLS_template(): Readonly<{
4
5
  actions?: () => any;
@@ -6,23 +7,33 @@ declare function __VLS_template(): Readonly<{
6
7
  actions?: () => any;
7
8
  };
8
9
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
- icon?: IconItem | null;
10
+ icon: IconItem;
11
+ layout?: CalloutLayout;
12
+ size?: CalloutSize;
13
+ iconColor?: CalloutIconColor;
14
+ eyebrowText?: string | null;
10
15
  mainText?: string | null;
11
16
  supportingText?: string | null;
12
- buttonLabel?: string;
17
+ mainTextColor?: CalloutMainTextColor;
18
+ buttonLabel?: string | null;
13
19
  buttonIcon?: IconItem | null;
14
20
  isActionVertical?: boolean;
15
21
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- "button-clicked": () => void;
22
+ "button-clicked": (e: Event) => void;
17
23
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
18
- icon?: IconItem | null;
24
+ icon: IconItem;
25
+ layout?: CalloutLayout;
26
+ size?: CalloutSize;
27
+ iconColor?: CalloutIconColor;
28
+ eyebrowText?: string | null;
19
29
  mainText?: string | null;
20
30
  supportingText?: string | null;
21
- buttonLabel?: string;
31
+ mainTextColor?: CalloutMainTextColor;
32
+ buttonLabel?: string | null;
22
33
  buttonIcon?: IconItem | null;
23
34
  isActionVertical?: boolean;
24
35
  }>>> & Readonly<{
25
- "onButton-clicked"?: (() => any) | undefined;
36
+ "onButton-clicked"?: ((e: Event) => any) | undefined;
26
37
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
27
38
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
39
  export default _default;
@@ -0,0 +1,4 @@
1
+ import { default as Callout } from './Callout.vue';
2
+
3
+ export default Callout;
4
+ export * from './Callout.consts';
@@ -405,9 +405,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
405
405
  };
406
406
  }>> & Readonly<{}>, {
407
407
  color: string;
408
- isInteractive: boolean;
409
408
  state: string;
410
409
  isOpen: boolean;
410
+ isInteractive: boolean;
411
411
  placeholder: string;
412
412
  startDate: Date;
413
413
  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(): "danger" | "neutralWeak" | "primary" | "warning" | "dangerWeak" | "warningWeak";
583
+ borderColor(): "primary" | "danger" | "neutralWeak" | "warning" | "dangerWeak" | "warningWeak";
584
584
  resolvedPlaceholder(): any;
585
585
  eyebrowText(): string;
586
586
  text(): any;
@@ -611,10 +611,10 @@ declare const _default: import('vue').DefineComponent<{
611
611
  icon: any;
612
612
  label: string;
613
613
  color: string;
614
- isInteractive: boolean;
615
614
  state: string;
616
615
  isIconHiddenOnMobile: boolean;
617
616
  date: Date;
617
+ isInteractive: boolean;
618
618
  isLabelUppercase: boolean;
619
619
  placeholder: string;
620
620
  additionalText: string;
@@ -755,11 +755,11 @@ declare const _default: import('vue').DefineComponent<{
755
755
  };
756
756
  }>> & Readonly<{}>, {
757
757
  color: TileColor;
758
- eyebrowText: string;
759
- isEyebrowTextUppercase: boolean;
760
758
  state: TileState;
761
759
  iconLeft: Record<string, any>;
762
760
  iconRight: Record<string, any>;
761
+ eyebrowText: string;
762
+ isEyebrowTextUppercase: boolean;
763
763
  interactive: boolean;
764
764
  additionalText: string;
765
765
  eyebrowEllipsis: boolean;
@@ -1172,9 +1172,9 @@ declare const _default: import('vue').DefineComponent<{
1172
1172
  };
1173
1173
  }>> & Readonly<{}>, {
1174
1174
  color: string;
1175
- isInteractive: boolean;
1176
1175
  state: string;
1177
1176
  isOpen: boolean;
1177
+ isInteractive: boolean;
1178
1178
  placeholder: string;
1179
1179
  startDate: Date;
1180
1180
  endDate: Date;
@@ -597,8 +597,8 @@ declare const _default: import('vue').DefineComponent<{
597
597
  }) => any) | undefined;
598
598
  }>, {
599
599
  color: string;
600
- isInteractive: boolean;
601
600
  state: string;
601
+ isInteractive: boolean;
602
602
  placeholder: string;
603
603
  startDate: Date;
604
604
  endDate: Date;
@@ -1016,9 +1016,9 @@ declare const _default: import('vue').DefineComponent<{
1016
1016
  };
1017
1017
  }>> & Readonly<{}>, {
1018
1018
  color: string;
1019
- isInteractive: boolean;
1020
1019
  state: string;
1021
1020
  isOpen: boolean;
1021
+ isInteractive: boolean;
1022
1022
  placeholder: string;
1023
1023
  startDate: Date;
1024
1024
  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
- prominence: string;
42
41
  isVertical: boolean;
42
+ prominence: string;
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
- prominence: string;
68
67
  isVertical: boolean;
68
+ prominence: string;
69
69
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
70
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
71
71
  export default _default;
@@ -439,10 +439,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
439
439
  info: boolean;
440
440
  size: string;
441
441
  title: string;
442
- supportingText: string;
443
442
  iconLeft: any;
444
443
  iconRight: any;
445
444
  isExpanded: boolean;
445
+ supportingText: string;
446
446
  titleEllipsis: boolean;
447
447
  hasDivider: boolean;
448
448
  isExpandable: boolean;
@@ -919,10 +919,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
919
919
  }>, {
920
920
  info: boolean;
921
921
  size: string;
922
- supportingText: string;
923
922
  iconLeft: any;
924
923
  iconRight: any;
925
924
  isExpanded: boolean;
925
+ supportingText: string;
926
926
  titleEllipsis: boolean;
927
927
  hasDivider: boolean;
928
928
  isExpandable: boolean;
@@ -1455,9 +1455,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1455
1455
  type: string;
1456
1456
  touchableDeprecated: boolean;
1457
1457
  color: string;
1458
+ elevation: string;
1458
1459
  radius: string;
1459
1460
  state: string;
1460
- elevation: string;
1461
1461
  colorScheme: string;
1462
1462
  }, {}, {
1463
1463
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1665,8 +1665,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1665
1665
  };
1666
1666
  }>> & Readonly<{}>, {
1667
1667
  size: string;
1668
- prominence: string;
1669
1668
  isVertical: boolean;
1669
+ prominence: string;
1670
1670
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1671
1671
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1672
1672
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -130,11 +130,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
130
130
  onClick?: (() => any) | undefined;
131
131
  }>, {
132
132
  color: import('../../Tile').TileColor;
133
- eyebrowText: string;
134
- isEyebrowTextUppercase: boolean;
135
133
  state: import('../../Tile').TileState;
136
134
  iconLeft: Record<string, any>;
137
135
  iconRight: Record<string, any>;
136
+ eyebrowText: string;
137
+ isEyebrowTextUppercase: boolean;
138
138
  interactive: boolean;
139
139
  additionalText: string;
140
140
  eyebrowEllipsis: boolean;
@@ -271,11 +271,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
271
271
  };
272
272
  }>> & Readonly<{}>, {
273
273
  color: import('../../Tile').TileColor;
274
- eyebrowText: string;
275
- isEyebrowTextUppercase: boolean;
276
274
  state: import('../../Tile').TileState;
277
275
  iconLeft: Record<string, any>;
278
276
  iconRight: Record<string, any>;
277
+ eyebrowText: string;
278
+ isEyebrowTextUppercase: boolean;
279
279
  interactive: boolean;
280
280
  additionalText: string;
281
281
  eyebrowEllipsis: boolean;
@@ -85,8 +85,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
85
85
  onHide?: ((...args: any[]) => any) | undefined;
86
86
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
87
87
  }>, {
88
- radius: string;
89
88
  placement: string;
89
+ radius: string;
90
90
  boundariesSelector: string;
91
91
  forceShow: boolean;
92
92
  sameWidth: boolean;
@@ -2,7 +2,7 @@ import { FormFieldProps } from './FormField.types';
2
2
 
3
3
  export declare function extractFormFieldProps({ label, state, hasRequiredIndicator, labelInfo, subLabel, fieldId, messageText, }: FormFieldProps, errors?: Array<string>): {
4
4
  label: string | undefined;
5
- state: "default" | "success" | "error" | "disabled" | undefined;
5
+ state: "success" | "default" | "error" | "disabled" | undefined;
6
6
  hasRequiredIndicator: boolean | undefined;
7
7
  labelInfo: string | undefined;
8
8
  subLabel: string | undefined;
@@ -18,7 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
18
18
  type: import('vue').PropType<string>;
19
19
  };
20
20
  state: {
21
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
21
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
22
22
  };
23
23
  hasRequiredIndicator: {
24
24
  type: import('vue').PropType<boolean>;
@@ -51,7 +51,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
51
51
  type: import('vue').PropType<string>;
52
52
  };
53
53
  state: {
54
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
54
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
55
55
  };
56
56
  hasRequiredIndicator: {
57
57
  type: import('vue').PropType<boolean>;
@@ -11,7 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
11
11
  type: import('vue').PropType<string>;
12
12
  };
13
13
  state: {
14
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
14
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
15
15
  };
16
16
  hasRequiredIndicator: {
17
17
  type: import('vue').PropType<boolean>;
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
43
43
  type: import('vue').PropType<string>;
44
44
  };
45
45
  state: {
46
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
46
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
47
47
  };
48
48
  hasRequiredIndicator: {
49
49
  type: import('vue').PropType<boolean>;
@@ -30,7 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
30
30
  type: import('vue').PropType<string>;
31
31
  };
32
32
  state: {
33
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
33
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
34
34
  };
35
35
  hasRequiredIndicator: {
36
36
  type: import('vue').PropType<boolean>;
@@ -78,7 +78,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
78
78
  type: import('vue').PropType<string>;
79
79
  };
80
80
  state: {
81
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
81
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
82
82
  };
83
83
  hasRequiredIndicator: {
84
84
  type: import('vue').PropType<boolean>;
@@ -17,7 +17,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
17
17
  type: import('vue').PropType<string>;
18
18
  };
19
19
  state: {
20
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
20
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
21
21
  };
22
22
  hasRequiredIndicator: {
23
23
  type: import('vue').PropType<boolean>;
@@ -49,7 +49,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
49
49
  type: import('vue').PropType<string>;
50
50
  };
51
51
  state: {
52
- type: import('vue').PropType<"default" | "success" | "error" | "disabled">;
52
+ type: import('vue').PropType<"success" | "default" | "error" | "disabled">;
53
53
  };
54
54
  hasRequiredIndicator: {
55
55
  type: import('vue').PropType<boolean>;
@@ -428,8 +428,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
428
428
  onClose?: (() => any) | undefined;
429
429
  onTitleClick?: (() => any) | undefined;
430
430
  }>, {
431
- eyebrowText: string;
432
431
  state: string;
432
+ eyebrowText: string;
433
433
  borderColor: string;
434
434
  shortTitle: string;
435
435
  isTitleInteractive: boolean;
@@ -884,9 +884,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
884
884
  type: string;
885
885
  touchableDeprecated: boolean;
886
886
  color: string;
887
+ elevation: string;
887
888
  radius: string;
888
889
  state: string;
889
- elevation: string;
890
890
  colorScheme: string;
891
891
  }, {}, {
892
892
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1094,8 +1094,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1094
1094
  };
1095
1095
  }>> & Readonly<{}>, {
1096
1096
  size: string;
1097
- prominence: string;
1098
1097
  isVertical: boolean;
1098
+ prominence: string;
1099
1099
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1100
1100
  DsDropdown: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1101
1101
  boundariesSelector: {
@@ -1182,8 +1182,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1182
1182
  onHide?: ((...args: any[]) => any) | undefined;
1183
1183
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
1184
1184
  }>, {
1185
- radius: string;
1186
1185
  placement: string;
1186
+ radius: string;
1187
1187
  boundariesSelector: string;
1188
1188
  forceShow: boolean;
1189
1189
  sameWidth: boolean;
@@ -1228,8 +1228,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1228
1228
  default: string;
1229
1229
  };
1230
1230
  }>> & Readonly<{}>, {
1231
- height: string;
1232
1231
  radius: string;
1232
+ height: string;
1233
1233
  width: string;
1234
1234
  }, {}, {
1235
1235
  PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
@@ -86,8 +86,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
86
86
  };
87
87
  }>> & Readonly<{}>, {
88
88
  size: string;
89
- prominence: string;
90
89
  isVertical: boolean;
90
+ prominence: string;
91
91
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
92
92
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
93
93
  export default _default;
@@ -470,10 +470,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
470
470
  }>, {
471
471
  info: boolean;
472
472
  size: string;
473
- supportingText: string;
474
473
  iconLeft: any;
475
474
  iconRight: any;
476
475
  isExpanded: boolean;
476
+ supportingText: string;
477
477
  titleEllipsis: boolean;
478
478
  hasDivider: boolean;
479
479
  isExpandable: boolean;
@@ -1006,9 +1006,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1006
1006
  type: string;
1007
1007
  touchableDeprecated: boolean;
1008
1008
  color: string;
1009
+ elevation: string;
1009
1010
  radius: string;
1010
1011
  state: string;
1011
- elevation: string;
1012
1012
  colorScheme: string;
1013
1013
  }, {}, {
1014
1014
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1216,8 +1216,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1216
1216
  };
1217
1217
  }>> & Readonly<{}>, {
1218
1218
  size: string;
1219
- prominence: string;
1220
1219
  isVertical: boolean;
1220
+ prominence: string;
1221
1221
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1222
1222
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1223
1223
  export default _default;
@@ -96,8 +96,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
96
96
  }>> & Readonly<{}>, {
97
97
  size: string;
98
98
  color: string;
99
- isInteractive: boolean;
100
99
  state: string;
100
+ isInteractive: boolean;
101
101
  isLabelBold: boolean;
102
102
  }, {}, {
103
103
  Icon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -75,8 +75,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
75
75
  default: string;
76
76
  };
77
77
  }>> & Readonly<{}>, {
78
- height: string;
79
78
  radius: string;
79
+ height: string;
80
80
  width: string;
81
81
  }, {}, {
82
82
  PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
@@ -64,8 +64,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
64
64
  };
65
65
  }>> & Readonly<{}>, {
66
66
  size: string;
67
- prominence: string;
68
67
  isVertical: boolean;
68
+ prominence: string;
69
69
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
70
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
71
71
  export default _default;
@@ -441,7 +441,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
441
441
  };
442
442
  }, {}, {
443
443
  calcHeaderFeatureIconColor(): any;
444
- calcFooterPrimaryButtonColor(): "neutral" | "primary";
444
+ calcFooterPrimaryButtonColor(): "primary" | "neutral";
445
445
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
446
446
  calcSingleColumn(): boolean;
447
447
  displayFooter(): any;
@@ -1137,9 +1137,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1137
1137
  type: string;
1138
1138
  touchableDeprecated: boolean;
1139
1139
  color: string;
1140
+ elevation: string;
1140
1141
  radius: string;
1141
1142
  state: string;
1142
- elevation: string;
1143
1143
  colorScheme: string;
1144
1144
  }, {}, {
1145
1145
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -576,7 +576,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
576
576
  };
577
577
  }, {}, {
578
578
  calcHeaderFeatureIconColor(): any;
579
- calcFooterPrimaryButtonColor(): "neutral" | "primary";
579
+ calcFooterPrimaryButtonColor(): "primary" | "neutral";
580
580
  calcFooterSecondaryButtonColor(): "danger" | "neutral";
581
581
  calcSingleColumn(): boolean;
582
582
  displayFooter(): any;
@@ -1272,9 +1272,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1272
1272
  type: string;
1273
1273
  touchableDeprecated: boolean;
1274
1274
  color: string;
1275
+ elevation: string;
1275
1276
  radius: string;
1276
1277
  state: string;
1277
- elevation: string;
1278
1278
  colorScheme: string;
1279
1279
  }, {}, {
1280
1280
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -857,9 +857,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
857
857
  type: string;
858
858
  touchableDeprecated: boolean;
859
859
  color: string;
860
+ elevation: string;
860
861
  radius: string;
861
862
  state: string;
862
- elevation: string;
863
863
  colorScheme: string;
864
864
  }, {}, {
865
865
  WnlIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
@@ -1112,8 +1112,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1112
1112
  onHide?: ((...args: any[]) => any) | undefined;
1113
1113
  "onDocument-click"?: ((...args: any[]) => any) | undefined;
1114
1114
  }>, {
1115
- radius: string;
1116
1115
  placement: string;
1116
+ radius: string;
1117
1117
  boundariesSelector: string;
1118
1118
  forceShow: boolean;
1119
1119
  sameWidth: boolean;
@@ -263,14 +263,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
263
263
  size: RichListItemSize;
264
264
  type: RichListItemType;
265
265
  text: string;
266
+ elevation: "small";
267
+ backgroundColor: RichListItemBackgroundColor;
268
+ state: RichListItemState;
269
+ iconColor: string;
266
270
  supportingText: string;
267
271
  supportingTextEllipsis: boolean;
268
272
  isInteractive: boolean;
269
- state: RichListItemState;
270
273
  isSupportingTextTooltipEnabled: boolean;
271
- elevation: "small";
272
- backgroundColor: RichListItemBackgroundColor;
273
- iconColor: string;
274
274
  layout: RichListItemLayout;
275
275
  eyebrowEllipsis: boolean;
276
276
  textEllipsis: boolean;
@@ -989,11 +989,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
989
989
  icon: any;
990
990
  size: RichListItemSize;
991
991
  type: RichListItemType;
992
- isInteractive: boolean;
993
- state: RichListItemState;
994
992
  elevation: "small";
995
993
  backgroundColor: RichListItemBackgroundColor;
994
+ state: RichListItemState;
996
995
  iconColor: string;
996
+ isInteractive: boolean;
997
997
  layout: RichListItemLayout;
998
998
  borderColor: RichListItemBorderColor;
999
999
  isSelected: boolean;
@@ -1107,8 +1107,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1107
1107
  };
1108
1108
  }>> & Readonly<{}>, {
1109
1109
  size: string;
1110
- prominence: string;
1111
1110
  isVertical: boolean;
1111
+ prominence: string;
1112
1112
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1113
1113
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1114
1114
  icon: {
@@ -513,11 +513,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
513
513
  icon: any;
514
514
  size: RichListItemSize;
515
515
  type: RichListItemType;
516
- isInteractive: boolean;
517
- state: RichListItemState;
518
516
  elevation: "small";
519
517
  backgroundColor: RichListItemBackgroundColor;
518
+ state: RichListItemState;
520
519
  iconColor: string;
520
+ isInteractive: boolean;
521
521
  layout: RichListItemLayout;
522
522
  borderColor: RichListItemBorderColor;
523
523
  isSelected: boolean;
@@ -631,8 +631,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
631
631
  };
632
632
  }>> & Readonly<{}>, {
633
633
  size: string;
634
- prominence: string;
635
634
  isVertical: boolean;
635
+ prominence: string;
636
636
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
637
637
  DsIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
638
638
  icon: {
@@ -39,8 +39,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
39
39
  };
40
40
  }>> & Readonly<{}>, {
41
41
  size: string;
42
- prominence: string;
43
42
  isVertical: boolean;
43
+ prominence: string;
44
44
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
45
45
  }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
46
  export default _default;
@@ -37,8 +37,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
37
37
  default: string;
38
38
  };
39
39
  }>> & Readonly<{}>, {
40
- height: string;
41
40
  radius: string;
41
+ height: string;
42
42
  width: string;
43
43
  }, {}, {
44
44
  PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;