@wizleap-inc/wiz-ui-next 2.5.0 → 2.6.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 (26) hide show
  1. package/dist/components/base/drawer/drawer.vue.d.ts +42 -0
  2. package/dist/components/base/drawer/index.d.ts +1 -0
  3. package/dist/components/base/full-modal-view/full-modal-view.vue.d.ts +9 -0
  4. package/dist/components/base/index.d.ts +1 -0
  5. package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +9 -0
  6. package/dist/components/base/menu/menu-item.vue.d.ts +10 -0
  7. package/dist/components/base/navigation/index.d.ts +1 -1
  8. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +9 -0
  9. package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +9 -0
  10. package/dist/components/base/snackbar/snackbar.vue.d.ts +9 -0
  11. package/dist/components/base/text/text.vue.d.ts +9 -0
  12. package/dist/components/custom/chat/card/chat-card.vue.d.ts +18 -0
  13. package/dist/components/custom/chat/item/chat-item.vue.d.ts +9 -0
  14. package/dist/components/custom/form/control.vue.d.ts +9 -0
  15. package/dist/components/custom/index.d.ts +1 -0
  16. package/dist/components/custom/notification/list/list.vue.d.ts +18 -0
  17. package/dist/components/custom/notification/notification.vue.d.ts +18 -0
  18. package/dist/components/custom/notification/panel/panel.vue.d.ts +9 -0
  19. package/dist/components/custom/timeline/index.d.ts +2 -0
  20. package/dist/components/custom/timeline/timeline.vue.d.ts +489 -0
  21. package/dist/components/custom/timeline/use-timeline.d.ts +6 -0
  22. package/dist/components/manager/provider.vue.d.ts +9 -0
  23. package/dist/style.css +1 -1
  24. package/dist/wiz-ui.es.js +2700 -2466
  25. package/dist/wiz-ui.umd.js +14 -14
  26. package/package.json +3 -3
@@ -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;
@@ -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;
@@ -1871,6 +1871,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1871
1871
  required: false;
1872
1872
  default: boolean;
1873
1873
  };
1874
+ display: {
1875
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1876
+ required: false;
1877
+ };
1874
1878
  }, {
1875
1879
  props: any;
1876
1880
  overflowStyles: import("vue").ComputedRef<{
@@ -1891,6 +1895,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1891
1895
  readonly textWordBreakStyle: string;
1892
1896
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
1893
1897
  readonly textLineThroughStyle: string;
1898
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
1894
1899
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1895
1900
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1896
1901
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -1950,6 +1955,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1950
1955
  required: false;
1951
1956
  default: boolean;
1952
1957
  };
1958
+ display: {
1959
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1960
+ required: false;
1961
+ };
1953
1962
  }>>, {
1954
1963
  bold: boolean;
1955
1964
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -4826,6 +4835,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4826
4835
  required: false;
4827
4836
  default: boolean;
4828
4837
  };
4838
+ display: {
4839
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
4840
+ required: false;
4841
+ };
4829
4842
  }, {
4830
4843
  props: any;
4831
4844
  overflowStyles: import("vue").ComputedRef<{
@@ -4846,6 +4859,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
4846
4859
  readonly textWordBreakStyle: string;
4847
4860
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
4848
4861
  readonly textLineThroughStyle: string;
4862
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
4849
4863
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
4850
4864
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
4851
4865
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -4905,6 +4919,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
4905
4919
  required: false;
4906
4920
  default: boolean;
4907
4921
  };
4922
+ display: {
4923
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
4924
+ required: false;
4925
+ };
4908
4926
  }>>, {
4909
4927
  bold: boolean;
4910
4928
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -539,6 +539,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
539
539
  required: false;
540
540
  default: boolean;
541
541
  };
542
+ display: {
543
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
544
+ required: false;
545
+ };
542
546
  }, {
543
547
  props: any;
544
548
  overflowStyles: import("vue").ComputedRef<{
@@ -559,6 +563,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
559
563
  readonly textWordBreakStyle: string;
560
564
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
561
565
  readonly textLineThroughStyle: string;
566
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
562
567
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
563
568
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
564
569
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -618,6 +623,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
618
623
  required: false;
619
624
  default: boolean;
620
625
  };
626
+ display: {
627
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
628
+ required: false;
629
+ };
621
630
  }>>, {
622
631
  bold: boolean;
623
632
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -304,6 +304,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
304
304
  required: false;
305
305
  default: boolean;
306
306
  };
307
+ display: {
308
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
309
+ required: false;
310
+ };
307
311
  }, {
308
312
  props: any;
309
313
  overflowStyles: import("vue").ComputedRef<{
@@ -324,6 +328,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
324
328
  readonly textWordBreakStyle: string;
325
329
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
326
330
  readonly textLineThroughStyle: string;
331
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
327
332
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
328
333
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
329
334
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -383,6 +388,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
383
388
  required: false;
384
389
  default: boolean;
385
390
  };
391
+ display: {
392
+ type: import("vue").PropType<"inline" | "inline-block" | "inline-flex">;
393
+ required: false;
394
+ };
386
395
  }>>, {
387
396
  bold: boolean;
388
397
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -2,3 +2,4 @@ export * from "./chat";
2
2
  export * from "./form";
3
3
  export * from "./notification";
4
4
  export * from "./schedule";
5
+ export * from "./timeline";
@@ -830,6 +830,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
830
830
  required: false;
831
831
  default: boolean;
832
832
  };
833
+ display: {
834
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
835
+ required: false;
836
+ };
833
837
  }, {
834
838
  props: any;
835
839
  overflowStyles: import("vue").ComputedRef<{
@@ -850,6 +854,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
850
854
  readonly textWordBreakStyle: string;
851
855
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
852
856
  readonly textLineThroughStyle: string;
857
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
853
858
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
854
859
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
855
860
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -909,6 +914,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
909
914
  required: false;
910
915
  default: boolean;
911
916
  };
917
+ display: {
918
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
919
+ required: false;
920
+ };
912
921
  }>>, {
913
922
  bold: boolean;
914
923
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -2232,6 +2241,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2232
2241
  required: false;
2233
2242
  default: boolean;
2234
2243
  };
2244
+ display: {
2245
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
2246
+ required: false;
2247
+ };
2235
2248
  }, {
2236
2249
  props: any;
2237
2250
  overflowStyles: import("vue").ComputedRef<{
@@ -2252,6 +2265,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
2252
2265
  readonly textWordBreakStyle: string;
2253
2266
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
2254
2267
  readonly textLineThroughStyle: string;
2268
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
2255
2269
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
2256
2270
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
2257
2271
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -2311,6 +2325,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2311
2325
  required: false;
2312
2326
  default: boolean;
2313
2327
  };
2328
+ display: {
2329
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
2330
+ required: false;
2331
+ };
2314
2332
  }>>, {
2315
2333
  bold: boolean;
2316
2334
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -1678,6 +1678,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1678
1678
  required: false;
1679
1679
  default: boolean;
1680
1680
  };
1681
+ display: {
1682
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1683
+ required: false;
1684
+ };
1681
1685
  }, {
1682
1686
  props: any;
1683
1687
  overflowStyles: import("vue").ComputedRef<{
@@ -1698,6 +1702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1698
1702
  readonly textWordBreakStyle: string;
1699
1703
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
1700
1704
  readonly textLineThroughStyle: string;
1705
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
1701
1706
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1702
1707
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1703
1708
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -1757,6 +1762,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1757
1762
  required: false;
1758
1763
  default: boolean;
1759
1764
  };
1765
+ display: {
1766
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1767
+ required: false;
1768
+ };
1760
1769
  }>>, {
1761
1770
  bold: boolean;
1762
1771
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -3080,6 +3089,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3080
3089
  required: false;
3081
3090
  default: boolean;
3082
3091
  };
3092
+ display: {
3093
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
3094
+ required: false;
3095
+ };
3083
3096
  }, {
3084
3097
  props: any;
3085
3098
  overflowStyles: import("vue").ComputedRef<{
@@ -3100,6 +3113,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3100
3113
  readonly textWordBreakStyle: string;
3101
3114
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
3102
3115
  readonly textLineThroughStyle: string;
3116
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
3103
3117
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
3104
3118
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
3105
3119
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
@@ -3159,6 +3173,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3159
3173
  required: false;
3160
3174
  default: boolean;
3161
3175
  };
3176
+ display: {
3177
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
3178
+ required: false;
3179
+ };
3162
3180
  }>>, {
3163
3181
  bold: boolean;
3164
3182
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
@@ -1315,6 +1315,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1315
1315
  required: false;
1316
1316
  default: boolean;
1317
1317
  };
1318
+ display: {
1319
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1320
+ required: false;
1321
+ };
1318
1322
  }, {
1319
1323
  props: any;
1320
1324
  overflowStyles: import("vue").ComputedRef<{
@@ -1335,6 +1339,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1335
1339
  readonly textWordBreakStyle: string;
1336
1340
  readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
1337
1341
  readonly textLineThroughStyle: string;
1342
+ readonly textDisplayStyle: Record<"inline" | "inline-block" | "inline-flex", string>;
1338
1343
  readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1339
1344
  readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
1340
1345
  readonly colorStyle: Record<ColorKeys, string>;
@@ -1394,6 +1399,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1394
1399
  required: false;
1395
1400
  default: boolean;
1396
1401
  };
1402
+ display: {
1403
+ type: PropType<"inline" | "inline-block" | "inline-flex">;
1404
+ required: false;
1405
+ };
1397
1406
  }>>, {
1398
1407
  bold: boolean;
1399
1408
  color: ColorKeys;
@@ -0,0 +1,2 @@
1
+ export { default as WizTimeline } from "./timeline.vue";
2
+ export { default as WizTimelineItem } from "./timeline-item.vue";