@wizleap-inc/wiz-ui-next 2.5.0 → 2.6.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 (31) hide show
  1. package/dist/components/base/card/card.vue.d.ts +0 -16
  2. package/dist/components/base/dialog/dialog.vue.d.ts +0 -16
  3. package/dist/components/base/drawer/drawer.vue.d.ts +42 -0
  4. package/dist/components/base/drawer/index.d.ts +1 -0
  5. package/dist/components/base/full-modal-view/full-modal-view.vue.d.ts +9 -0
  6. package/dist/components/base/index.d.ts +1 -0
  7. package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +9 -0
  8. package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +0 -16
  9. package/dist/components/base/inputs/search-input/search-input.vue.d.ts +2 -48
  10. package/dist/components/base/inputs/search-input/search-popup.vue.d.ts +2 -48
  11. package/dist/components/base/menu/menu-item.vue.d.ts +10 -0
  12. package/dist/components/base/navigation/index.d.ts +1 -1
  13. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +9 -0
  14. package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +9 -0
  15. package/dist/components/base/snackbar/snackbar.vue.d.ts +9 -0
  16. package/dist/components/base/text/text.vue.d.ts +9 -0
  17. package/dist/components/custom/chat/card/chat-card.vue.d.ts +18 -32
  18. package/dist/components/custom/chat/item/chat-item.vue.d.ts +9 -16
  19. package/dist/components/custom/form/control.vue.d.ts +9 -0
  20. package/dist/components/custom/index.d.ts +1 -0
  21. package/dist/components/custom/notification/list/list.vue.d.ts +18 -0
  22. package/dist/components/custom/notification/notification.vue.d.ts +18 -0
  23. package/dist/components/custom/notification/panel/panel.vue.d.ts +9 -0
  24. package/dist/components/custom/timeline/index.d.ts +2 -0
  25. package/dist/components/custom/timeline/timeline.vue.d.ts +489 -0
  26. package/dist/components/custom/timeline/use-timeline.d.ts +6 -0
  27. package/dist/components/manager/provider.vue.d.ts +9 -0
  28. package/dist/style.css +1 -1
  29. package/dist/wiz-ui.es.js +2573 -2357
  30. package/dist/wiz-ui.umd.js +12 -12
  31. package/package.json +3 -3
@@ -1,14 +1,6 @@
1
1
  import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
2
2
  import { PropType } from "vue";
3
3
  declare const _sfc_main: import("vue").DefineComponent<{
4
- title: {
5
- type: StringConstructor;
6
- required: false;
7
- };
8
- hint: {
9
- type: StringConstructor;
10
- required: false;
11
- };
12
4
  p: {
13
5
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
14
6
  required: false;
@@ -532,14 +524,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
532
524
  wrap: boolean;
533
525
  }>;
534
526
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
535
- title: {
536
- type: StringConstructor;
537
- required: false;
538
- };
539
- hint: {
540
- type: StringConstructor;
541
- required: false;
542
- };
543
527
  p: {
544
528
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
545
529
  required: false;
@@ -136,14 +136,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
136
136
  variant: "transparent" | "link" | "sub" | "primary";
137
137
  }>;
138
138
  readonly WizCard: import("vue").DefineComponent<{
139
- title: {
140
- type: StringConstructor;
141
- required: false;
142
- };
143
- hint: {
144
- type: StringConstructor;
145
- required: false;
146
- };
147
139
  p: {
148
140
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
149
141
  required: false;
@@ -667,14 +659,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
667
659
  wrap: boolean;
668
660
  }>;
669
661
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
670
- title: {
671
- type: StringConstructor;
672
- required: false;
673
- };
674
- hint: {
675
- type: StringConstructor;
676
- required: false;
677
- };
678
662
  p: {
679
663
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
680
664
  required: false;
@@ -0,0 +1,42 @@
1
+ import * as styles from "@wizleap-inc/wiz-ui-styles/bases/drawer.css";
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ isOpen: {
4
+ type: BooleanConstructor;
5
+ required: true;
6
+ };
7
+ /**
8
+ * オフセットを指定してdrawerの高さを調整します。
9
+ * @type {string}
10
+ * @default 0px
11
+ * @example THEME.share.HEADER_HEIGHT
12
+ */
13
+ offsetTop: {
14
+ type: StringConstructor;
15
+ required: false;
16
+ default: string;
17
+ };
18
+ }, {
19
+ props: any;
20
+ containerRef: import("vue").Ref<HTMLElement | null>;
21
+ isActuallyOpen: import("vue").Ref<boolean>;
22
+ readonly styles: typeof styles;
23
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
24
+ isOpen: {
25
+ type: BooleanConstructor;
26
+ required: true;
27
+ };
28
+ /**
29
+ * オフセットを指定してdrawerの高さを調整します。
30
+ * @type {string}
31
+ * @default 0px
32
+ * @example THEME.share.HEADER_HEIGHT
33
+ */
34
+ offsetTop: {
35
+ type: StringConstructor;
36
+ required: false;
37
+ default: string;
38
+ };
39
+ }>>, {
40
+ offsetTop: string;
41
+ }>;
42
+ export default _sfc_main;
@@ -0,0 +1 @@
1
+ export { default as WizDrawer } from "./drawer.vue";
@@ -687,6 +687,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
687
687
  required: false;
688
688
  default: boolean;
689
689
  };
690
+ display: {
691
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
692
+ required: false;
693
+ };
690
694
  }, {
691
695
  props: any;
692
696
  overflowStyles: import("vue").ComputedRef<{
@@ -707,6 +711,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
707
711
  readonly textWordBreakStyle: string;
708
712
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
709
713
  readonly textLineThroughStyle: string;
714
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
710
715
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
711
716
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
712
717
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -766,6 +771,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
766
771
  required: false;
767
772
  default: boolean;
768
773
  };
774
+ display: {
775
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
776
+ required: false;
777
+ };
769
778
  }>>, {
770
779
  bold: boolean;
771
780
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -8,6 +8,7 @@ export * from "./calendar";
8
8
  export * from "./card";
9
9
  export * from "./dialog";
10
10
  export * from "./divider";
11
+ export * from "./drawer";
11
12
  export * from "./dropdown";
12
13
  export * from "./full-modal-view";
13
14
  export * from "./header";
@@ -1022,6 +1022,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1022
1022
  required: false;
1023
1023
  default: boolean;
1024
1024
  };
1025
+ display: {
1026
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1027
+ required: false;
1028
+ };
1025
1029
  }, {
1026
1030
  props: any;
1027
1031
  overflowStyles: import("vue").ComputedRef<{
@@ -1042,6 +1046,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1042
1046
  readonly textWordBreakStyle: string;
1043
1047
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
1044
1048
  readonly textLineThroughStyle: string;
1049
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
1045
1050
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1046
1051
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1047
1052
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -1101,6 +1106,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1101
1106
  required: false;
1102
1107
  default: boolean;
1103
1108
  };
1109
+ display: {
1110
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1111
+ required: false;
1112
+ };
1104
1113
  }>>, {
1105
1114
  bold: boolean;
1106
1115
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -239,14 +239,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
239
239
  disabledDate: (date: Date) => boolean;
240
240
  }>;
241
241
  readonly WizCard: import("vue").DefineComponent<{
242
- title: {
243
- type: StringConstructor;
244
- required: false;
245
- };
246
- hint: {
247
- type: StringConstructor;
248
- required: false;
249
- };
250
242
  p: {
251
243
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
252
244
  required: false;
@@ -784,14 +776,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
784
776
  wrap: boolean;
785
777
  }>;
786
778
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
787
- title: {
788
- type: StringConstructor;
789
- required: false;
790
- };
791
- hint: {
792
- type: StringConstructor;
793
- required: false;
794
- };
795
779
  p: {
796
780
  type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
797
781
  required: false;
@@ -861,16 +861,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
861
861
  type: StringConstructor;
862
862
  required: false;
863
863
  };
864
- dy: {
865
- type: NumberConstructor;
866
- required: false;
867
- default: number;
868
- };
869
- parentScrollAmount: {
870
- type: NumberConstructor;
871
- required: false;
872
- default: number;
873
- };
874
864
  }, {
875
865
  props: any;
876
866
  emit: {
@@ -1473,16 +1463,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
1473
1463
  type: StringConstructor;
1474
1464
  required: false;
1475
1465
  };
1476
- dy: {
1477
- type: NumberConstructor;
1478
- required: false;
1479
- default: number;
1480
- };
1481
- parentScrollAmount: {
1482
- type: NumberConstructor;
1483
- required: false;
1484
- default: number;
1485
- };
1486
1466
  }, any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "mouseover")[], "update:modelValue" | "mouseover", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1487
1467
  options: {
1488
1468
  type: PropType<SearchInputOption[]>;
@@ -1500,23 +1480,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1500
1480
  type: StringConstructor;
1501
1481
  required: false;
1502
1482
  };
1503
- dy: {
1504
- type: NumberConstructor;
1505
- required: false;
1506
- default: number;
1507
- };
1508
- parentScrollAmount: {
1509
- type: NumberConstructor;
1510
- required: false;
1511
- default: number;
1512
- };
1513
1483
  }>> & {
1514
1484
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1515
1485
  onMouseover?: ((...args: any[]) => any) | undefined;
1516
- }, {
1517
- dy: number;
1518
- parentScrollAmount: number;
1519
- }>;
1486
+ }, {}>;
1520
1487
  readonly WizICheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1521
1488
  readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1522
1489
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "mouseover")[], "update:modelValue" | "mouseover", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -1536,23 +1503,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1536
1503
  type: StringConstructor;
1537
1504
  required: false;
1538
1505
  };
1539
- dy: {
1540
- type: NumberConstructor;
1541
- required: false;
1542
- default: number;
1543
- };
1544
- parentScrollAmount: {
1545
- type: NumberConstructor;
1546
- required: false;
1547
- default: number;
1548
- };
1549
1506
  }>> & {
1550
1507
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1551
1508
  onMouseover?: ((...args: any[]) => any) | undefined;
1552
- }, {
1553
- dy: number;
1554
- parentScrollAmount: number;
1555
- }>;
1509
+ }, {}>;
1556
1510
  readonly WizICheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1557
1511
  readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1558
1512
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("toggle" | "click" | "update:modelValue")[], "toggle" | "click" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -17,16 +17,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
17
  type: StringConstructor;
18
18
  required: false;
19
19
  };
20
- dy: {
21
- type: NumberConstructor;
22
- required: false;
23
- default: number;
24
- };
25
- parentScrollAmount: {
26
- type: NumberConstructor;
27
- required: false;
28
- default: number;
29
- };
30
20
  }, {
31
21
  props: any;
32
22
  emit: {
@@ -629,16 +619,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
629
619
  type: StringConstructor;
630
620
  required: false;
631
621
  };
632
- dy: {
633
- type: NumberConstructor;
634
- required: false;
635
- default: number;
636
- };
637
- parentScrollAmount: {
638
- type: NumberConstructor;
639
- required: false;
640
- default: number;
641
- };
642
622
  }, any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "mouseover")[], "update:modelValue" | "mouseover", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
643
623
  options: {
644
624
  type: PropType<SearchInputOption[]>;
@@ -656,23 +636,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
656
636
  type: StringConstructor;
657
637
  required: false;
658
638
  };
659
- dy: {
660
- type: NumberConstructor;
661
- required: false;
662
- default: number;
663
- };
664
- parentScrollAmount: {
665
- type: NumberConstructor;
666
- required: false;
667
- default: number;
668
- };
669
639
  }>> & {
670
640
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
671
641
  onMouseover?: ((...args: any[]) => any) | undefined;
672
- }, {
673
- dy: number;
674
- parentScrollAmount: number;
675
- }>;
642
+ }, {}>;
676
643
  readonly WizICheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
677
644
  readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
678
645
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "mouseover")[], "update:modelValue" | "mouseover", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -692,21 +659,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
692
659
  type: StringConstructor;
693
660
  required: false;
694
661
  };
695
- dy: {
696
- type: NumberConstructor;
697
- required: false;
698
- default: number;
699
- };
700
- parentScrollAmount: {
701
- type: NumberConstructor;
702
- required: false;
703
- default: number;
704
- };
705
662
  }>> & {
706
663
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
707
664
  onMouseover?: ((...args: any[]) => any) | undefined;
708
- }, {
709
- dy: number;
710
- parentScrollAmount: number;
711
- }>;
665
+ }, {}>;
712
666
  export default _sfc_main;
@@ -19,6 +19,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
19
  required: false;
20
20
  default: boolean;
21
21
  };
22
+ expand: {
23
+ type: BooleanConstructor;
24
+ required: false;
25
+ };
22
26
  fontSize: {
23
27
  type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
24
28
  required: false;
@@ -43,6 +47,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
43
47
  componentStatus: import("vue").ComputedRef<"default" | "active" | "disabled" | "selected" | "hover">;
44
48
  readonly menuItemStyle: string;
45
49
  readonly menuItemVariantStyle: Record<"default" | "active" | "disabled" | "hover" | "selected", string>;
50
+ readonly menuItemExpand: string;
46
51
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
47
52
  readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
48
53
  readonly WizHStack: import("vue").DefineComponent<{
@@ -572,6 +577,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
572
577
  required: false;
573
578
  default: boolean;
574
579
  };
580
+ expand: {
581
+ type: BooleanConstructor;
582
+ required: false;
583
+ };
575
584
  fontSize: {
576
585
  type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
577
586
  required: false;
@@ -589,6 +598,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
589
598
  fontSize: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
590
599
  clickable: boolean;
591
600
  active: boolean;
601
+ expand: boolean;
592
602
  selected: boolean;
593
603
  }>;
594
604
  export default _sfc_main;
@@ -1,2 +1,2 @@
1
- export { default as WizNavItem } from "./item.vue";
2
1
  export { default as WizNavContainer } from "./container.vue";
2
+ export { default as WizNavItem } from "./item.vue";
@@ -66,6 +66,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
66
66
  required: false;
67
67
  default: boolean;
68
68
  };
69
+ display: {
70
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
71
+ required: false;
72
+ };
69
73
  }, {
70
74
  props: any;
71
75
  overflowStyles: import("vue").ComputedRef<{
@@ -86,6 +90,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
86
90
  readonly textWordBreakStyle: string;
87
91
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
88
92
  readonly textLineThroughStyle: string;
93
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
89
94
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
90
95
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
91
96
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -145,6 +150,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
145
150
  required: false;
146
151
  default: boolean;
147
152
  };
153
+ display: {
154
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
155
+ required: false;
156
+ };
148
157
  }>>, {
149
158
  bold: boolean;
150
159
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -136,6 +136,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
136
136
  required: false;
137
137
  default: boolean;
138
138
  };
139
+ display: {
140
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
141
+ required: false;
142
+ };
139
143
  }, {
140
144
  props: any;
141
145
  overflowStyles: import("vue").ComputedRef<{
@@ -156,6 +160,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
156
160
  readonly textWordBreakStyle: string;
157
161
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
158
162
  readonly textLineThroughStyle: string;
163
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
159
164
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
160
165
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
161
166
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -215,6 +220,10 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
215
220
  required: false;
216
221
  default: boolean;
217
222
  };
223
+ display: {
224
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
225
+ required: false;
226
+ };
218
227
  }>>, {
219
228
  bold: boolean;
220
229
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -124,6 +124,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
124
124
  required: false;
125
125
  default: boolean;
126
126
  };
127
+ display: {
128
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
129
+ required: false;
130
+ };
127
131
  }, {
128
132
  props: any;
129
133
  overflowStyles: import("vue").ComputedRef<{
@@ -144,6 +148,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
144
148
  readonly textWordBreakStyle: string;
145
149
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
146
150
  readonly textLineThroughStyle: string;
151
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
147
152
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
148
153
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
149
154
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -203,6 +208,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
203
208
  required: false;
204
209
  default: boolean;
205
210
  };
211
+ display: {
212
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
213
+ required: false;
214
+ };
206
215
  }>>, {
207
216
  bold: boolean;
208
217
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -55,6 +55,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
55
55
  required: false;
56
56
  default: boolean;
57
57
  };
58
+ display: {
59
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
60
+ required: false;
61
+ };
58
62
  }, {
59
63
  props: any;
60
64
  overflowStyles: import("vue").ComputedRef<{
@@ -75,6 +79,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
75
79
  readonly textWordBreakStyle: string;
76
80
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
77
81
  readonly textLineThroughStyle: string;
82
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
78
83
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
79
84
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
80
85
  readonly colorStyle: Record<ColorKeys, string>;
@@ -134,6 +139,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
134
139
  required: false;
135
140
  default: boolean;
136
141
  };
142
+ display: {
143
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
144
+ required: false;
145
+ };
137
146
  }>>, {
138
147
  bold: boolean;
139
148
  color: ColorKeys;