@wizleap-inc/wiz-ui-next 0.6.0 → 0.6.2

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 (27) hide show
  1. package/dist/components/base/buttons/toggle/toggle.vue.d.ts +12 -4
  2. package/dist/components/base/calendar/calendar.vue.d.ts +2 -2
  3. package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +25 -5
  4. package/dist/components/base/inputs/radio/types.d.ts +1 -0
  5. package/dist/components/base/inputs/toggle-switch/toggle-switch.vue.d.ts +8 -0
  6. package/dist/components/base/inputs/upload/upload.vue.d.ts +21 -11
  7. package/dist/components/base/menu/menu-item.vue.d.ts +2 -2
  8. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +23 -3
  9. package/dist/components/base/text/text.vue.d.ts +23 -3
  10. package/dist/components/base/textarea/text-area.vue.d.ts +6 -6
  11. package/dist/components/custom/chat/card/chat-card.vue.d.ts +52 -12
  12. package/dist/components/custom/chat/form/chat-form.vue.d.ts +6 -6
  13. package/dist/components/custom/chat/item/chat-item.vue.d.ts +23 -3
  14. package/dist/components/custom/form/control.vue.d.ts +31 -3
  15. package/dist/components/custom/notification/list/list.vue.d.ts +23 -3
  16. package/dist/components/custom/notification/notification.vue.d.ts +23 -3
  17. package/dist/components/custom/notification/panel/panel.vue.d.ts +23 -3
  18. package/dist/components/icons/camera.vue.d.ts +2 -0
  19. package/dist/components/icons/home.vue.d.ts +2 -0
  20. package/dist/components/icons/index.d.ts +6 -2
  21. package/dist/components/icons/public.vue.d.ts +2 -0
  22. package/dist/components/icons/store-front.vue.d.ts +2 -0
  23. package/dist/index.d.ts +1 -1
  24. package/dist/style.css +1 -1
  25. package/dist/wiz-ui.es.js +1893 -1793
  26. package/dist/wiz-ui.umd.js +10 -10
  27. package/package.json +3 -3
@@ -24,10 +24,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
24
  required: false;
25
25
  default: string;
26
26
  };
27
+ modelValue: {
28
+ type: BooleanConstructor;
29
+ required: true;
30
+ };
27
31
  }, {
28
32
  props: any;
29
- isActive: import("vue").Ref<boolean>;
30
- emits: (event: "click") => void;
33
+ emits: (event: "update:modelValue", value: boolean) => void;
34
+ isActive: import("vue").WritableComputedRef<boolean>;
31
35
  onClick: () => void;
32
36
  iconSize: import("vue").ComputedRef<"xl3" | "xl" | "xl2" | undefined>;
33
37
  readonly toggleButtonStyle: string;
@@ -541,7 +545,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
541
545
  reverse: boolean;
542
546
  wrap: boolean;
543
547
  }>;
544
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
548
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
545
549
  inActiveIcon: {
546
550
  type: PropType<TIcon>;
547
551
  required: true;
@@ -565,8 +569,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
565
569
  required: false;
566
570
  default: string;
567
571
  };
572
+ modelValue: {
573
+ type: BooleanConstructor;
574
+ required: true;
575
+ };
568
576
  }>> & {
569
- onClick?: ((...args: any[]) => any) | undefined;
577
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
570
578
  }, {
571
579
  size: "sm" | "md" | "lg";
572
580
  disabled: boolean;
@@ -18,11 +18,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
18
18
  props: any;
19
19
  calendars: import("vue").ComputedRef<string[][]>;
20
20
  isCurrentMonth: (row: number, col: number) => boolean;
21
- getDateState: import("vue").ComputedRef<(row: number, col: number) => "default" | "selected" | "inCurrentMonth">;
21
+ getDateState: import("vue").ComputedRef<(row: number, col: number) => "selected" | "outOfCurrentMonth" | "inCurrentMonth">;
22
22
  updateSelectedDate: (row: number, col: number, day: string) => void;
23
23
  readonly WEEK_LIST_JP: string[];
24
24
  readonly calendarStyle: string;
25
- readonly calendarItemStyle: Record<"default" | "selected" | "inCurrentMonth", string>;
25
+ readonly calendarItemStyle: Record<"selected" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
26
26
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
27
27
  currentMonth: {
28
28
  type: PropType<Date>;
@@ -632,11 +632,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
632
632
  props: any;
633
633
  calendars: import("vue").ComputedRef<string[][]>;
634
634
  isCurrentMonth: (row: number, col: number) => boolean;
635
- getDateState: import("vue").ComputedRef<(row: number, col: number) => "default" | "selected" | "inCurrentMonth">;
635
+ getDateState: import("vue").ComputedRef<(row: number, col: number) => "selected" | "outOfCurrentMonth" | "inCurrentMonth">;
636
636
  updateSelectedDate: (row: number, col: number, day: string) => void;
637
637
  readonly WEEK_LIST_JP: string[];
638
638
  readonly calendarStyle: string;
639
- readonly calendarItemStyle: Record<"default" | "selected" | "inCurrentMonth", string>;
639
+ readonly calendarItemStyle: Record<"selected" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
640
640
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
641
641
  currentMonth: {
642
642
  type: import("vue").PropType<Date>;
@@ -658,10 +658,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
658
658
  }>;
659
659
  readonly WizText: import("vue").DefineComponent<{
660
660
  as: {
661
- type: import("vue").PropType<"p" | "span">;
661
+ type: import("vue").PropType<"label" | "p" | "span">;
662
662
  required: false;
663
663
  default: string;
664
664
  };
665
+ htmlFor: {
666
+ type: StringConstructor;
667
+ required: false;
668
+ };
665
669
  color: {
666
670
  type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
667
671
  required: false;
@@ -697,6 +701,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
697
701
  type: BooleanConstructor;
698
702
  required: false;
699
703
  };
704
+ textAlign: {
705
+ type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
706
+ required: false;
707
+ default: string;
708
+ };
700
709
  }, {
701
710
  props: any;
702
711
  overflowStyles: import("vue").ComputedRef<{
@@ -715,16 +724,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
715
724
  readonly textDefaultLineHeightStyle: string;
716
725
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
717
726
  readonly textWordBreakStyle: string;
727
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
718
728
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
719
729
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
720
730
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
721
731
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
722
732
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
723
733
  as: {
724
- type: import("vue").PropType<"p" | "span">;
734
+ type: import("vue").PropType<"label" | "p" | "span">;
725
735
  required: false;
726
736
  default: string;
727
737
  };
738
+ htmlFor: {
739
+ type: StringConstructor;
740
+ required: false;
741
+ };
728
742
  color: {
729
743
  type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
730
744
  required: false;
@@ -760,12 +774,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
760
774
  type: BooleanConstructor;
761
775
  required: false;
762
776
  };
777
+ textAlign: {
778
+ type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
779
+ required: false;
780
+ default: string;
781
+ };
763
782
  }>>, {
764
783
  bold: boolean;
765
784
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
766
785
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
786
+ textAlign: "left" | "right" | "center" | "end" | "start";
767
787
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
768
- as: "p" | "span";
788
+ as: "label" | "p" | "span";
769
789
  breakAll: boolean;
770
790
  }>;
771
791
  readonly WizPopup: import("vue").DefineComponent<{
@@ -1,5 +1,6 @@
1
1
  export interface RadioOption {
2
2
  label: string;
3
3
  value: number;
4
+ key: string;
4
5
  disabled?: boolean;
5
6
  }
@@ -3,6 +3,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  required: true;
5
5
  };
6
+ label: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
6
10
  }, {
7
11
  props: any;
8
12
  emit: (e: "update:modelValue", value: boolean) => void;
@@ -16,6 +20,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
16
20
  type: BooleanConstructor;
17
21
  required: true;
18
22
  };
23
+ label: {
24
+ type: StringConstructor;
25
+ required: true;
26
+ };
19
27
  }>> & {
20
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
21
29
  }, {}>;
@@ -1,12 +1,16 @@
1
1
  import { PropType } from "vue";
2
2
  declare const _sfc_main: import("vue").DefineComponent<{
3
- uploadUrl: {
4
- type: StringConstructor;
3
+ /**
4
+ * @example xhrLauncher: () => new XMLHttpRequest()
5
+ * */
6
+ xhrLauncher: {
7
+ type: PropType<() => XMLHttpRequest>;
5
8
  required: true;
6
9
  };
7
- requestHeaders: {
8
- type: PropType<Record<string, string>>;
10
+ multiple: {
11
+ type: BooleanConstructor;
9
12
  required: false;
13
+ default: boolean;
10
14
  };
11
15
  }, {
12
16
  props: any;
@@ -30,8 +34,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
30
34
  progress: import("vue").ComputedRef<number>;
31
35
  dragEnter: () => void;
32
36
  dragLeave: () => void;
33
- uploadFile: (file: File, uploadUrl: string, onProgress: (progress: number) => void, onComplete: () => void) => Promise<void>;
34
- uploadFileList: (fileList: FileList, uploadUrl: string) => Promise<void>;
37
+ uploadFile: (file: File, onProgress: (progress: number) => void, onComplete: () => void) => void;
38
+ uploadFileList: (fileList: FileList) => Promise<void>;
35
39
  dropFile: (event: DragEvent) => void;
36
40
  selectFile: (event: Event) => void;
37
41
  readonly uploadStyle: string;
@@ -1516,13 +1520,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
1516
1520
  };
1517
1521
  }>>, {}>;
1518
1522
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1519
- uploadUrl: {
1520
- type: StringConstructor;
1523
+ /**
1524
+ * @example xhrLauncher: () => new XMLHttpRequest()
1525
+ * */
1526
+ xhrLauncher: {
1527
+ type: PropType<() => XMLHttpRequest>;
1521
1528
  required: true;
1522
1529
  };
1523
- requestHeaders: {
1524
- type: PropType<Record<string, string>>;
1530
+ multiple: {
1531
+ type: BooleanConstructor;
1525
1532
  required: false;
1533
+ default: boolean;
1526
1534
  };
1527
- }>>, {}>;
1535
+ }>>, {
1536
+ multiple: boolean;
1537
+ }>;
1528
1538
  export default _sfc_main;
@@ -27,8 +27,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
27
27
  onMouseOver: () => void;
28
28
  onMouseLeave: () => boolean;
29
29
  onClick: () => false | void;
30
- onMouseDown: () => boolean;
31
- onMouseUp: () => boolean;
30
+ activate: () => boolean;
31
+ inactivate: () => boolean;
32
32
  width: import("vue").ComputedRef<string>;
33
33
  iconColor: import("vue").ComputedRef<ColorKeys>;
34
34
  componentStatus: import("vue").ComputedRef<"default" | "active" | "disabled" | "hover">;
@@ -12,10 +12,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
12
12
  readonly progressBarItemAnnotationStyle: string;
13
13
  readonly WizText: import("vue").DefineComponent<{
14
14
  as: {
15
- type: PropType<"p" | "span">;
15
+ type: PropType<"label" | "p" | "span">;
16
16
  required: false;
17
17
  default: string;
18
18
  };
19
+ htmlFor: {
20
+ type: StringConstructor;
21
+ required: false;
22
+ };
19
23
  color: {
20
24
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
21
25
  required: false;
@@ -51,6 +55,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
51
55
  type: BooleanConstructor;
52
56
  required: false;
53
57
  };
58
+ textAlign: {
59
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
60
+ required: false;
61
+ default: string;
62
+ };
54
63
  }, {
55
64
  props: any;
56
65
  overflowStyles: import("vue").ComputedRef<{
@@ -69,16 +78,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
69
78
  readonly textDefaultLineHeightStyle: string;
70
79
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
71
80
  readonly textWordBreakStyle: string;
81
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
72
82
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
73
83
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
74
84
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
75
85
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
76
86
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
77
87
  as: {
78
- type: PropType<"p" | "span">;
88
+ type: PropType<"label" | "p" | "span">;
79
89
  required: false;
80
90
  default: string;
81
91
  };
92
+ htmlFor: {
93
+ type: StringConstructor;
94
+ required: false;
95
+ };
82
96
  color: {
83
97
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
84
98
  required: false;
@@ -114,12 +128,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
114
128
  type: BooleanConstructor;
115
129
  required: false;
116
130
  };
131
+ textAlign: {
132
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
133
+ required: false;
134
+ default: string;
135
+ };
117
136
  }>>, {
118
137
  bold: boolean;
119
138
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
120
139
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
140
+ textAlign: "left" | "right" | "center" | "end" | "start";
121
141
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
122
- as: "p" | "span";
142
+ as: "label" | "p" | "span";
123
143
  breakAll: boolean;
124
144
  }>;
125
145
  readonly WizTooltip: import("vue").DefineComponent<{
@@ -2,10 +2,14 @@ import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
2
2
  import { PropType } from "vue";
3
3
  declare const _sfc_main: import("vue").DefineComponent<{
4
4
  as: {
5
- type: PropType<"p" | "span">;
5
+ type: PropType<"label" | "p" | "span">;
6
6
  required: false;
7
7
  default: string;
8
8
  };
9
+ htmlFor: {
10
+ type: StringConstructor;
11
+ required: false;
12
+ };
9
13
  color: {
10
14
  type: PropType<ColorKeys>;
11
15
  required: false;
@@ -41,6 +45,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
41
45
  type: BooleanConstructor;
42
46
  required: false;
43
47
  };
48
+ textAlign: {
49
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
50
+ required: false;
51
+ default: string;
52
+ };
44
53
  }, {
45
54
  props: any;
46
55
  overflowStyles: import("vue").ComputedRef<{
@@ -59,16 +68,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
59
68
  readonly textDefaultLineHeightStyle: string;
60
69
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
61
70
  readonly textWordBreakStyle: string;
71
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
62
72
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
63
73
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
64
74
  readonly colorStyle: Record<ColorKeys, string>;
65
75
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
66
76
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
67
77
  as: {
68
- type: PropType<"p" | "span">;
78
+ type: PropType<"label" | "p" | "span">;
69
79
  required: false;
70
80
  default: string;
71
81
  };
82
+ htmlFor: {
83
+ type: StringConstructor;
84
+ required: false;
85
+ };
72
86
  color: {
73
87
  type: PropType<ColorKeys>;
74
88
  required: false;
@@ -104,12 +118,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
104
118
  type: BooleanConstructor;
105
119
  required: false;
106
120
  };
121
+ textAlign: {
122
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
123
+ required: false;
124
+ default: string;
125
+ };
107
126
  }>>, {
108
127
  bold: boolean;
109
128
  color: ColorKeys;
110
129
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
130
+ textAlign: "left" | "right" | "center" | "end" | "start";
111
131
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
112
- as: "p" | "span";
132
+ as: "label" | "p" | "span";
113
133
  breakAll: boolean;
114
134
  }>;
115
135
  export default _sfc_main;
@@ -1,9 +1,9 @@
1
1
  declare const _sfc_main: import("vue").DefineComponent<{
2
- modelValue: {
2
+ id: {
3
3
  type: StringConstructor;
4
- required: true;
4
+ required: false;
5
5
  };
6
- name: {
6
+ modelValue: {
7
7
  type: StringConstructor;
8
8
  required: true;
9
9
  };
@@ -40,11 +40,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
40
40
  readonly textAreaExpandStyle: string;
41
41
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
42
42
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
43
- modelValue: {
43
+ id: {
44
44
  type: StringConstructor;
45
- required: true;
45
+ required: false;
46
46
  };
47
- name: {
47
+ modelValue: {
48
48
  type: StringConstructor;
49
49
  required: true;
50
50
  };
@@ -1756,10 +1756,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
1756
1756
  }>;
1757
1757
  readonly WizText: import("vue").DefineComponent<{
1758
1758
  as: {
1759
- type: PropType<"p" | "span">;
1759
+ type: PropType<"label" | "p" | "span">;
1760
1760
  required: false;
1761
1761
  default: string;
1762
1762
  };
1763
+ htmlFor: {
1764
+ type: StringConstructor;
1765
+ required: false;
1766
+ };
1763
1767
  color: {
1764
1768
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
1765
1769
  required: false;
@@ -1795,6 +1799,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
1795
1799
  type: BooleanConstructor;
1796
1800
  required: false;
1797
1801
  };
1802
+ textAlign: {
1803
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
1804
+ required: false;
1805
+ default: string;
1806
+ };
1798
1807
  }, {
1799
1808
  props: any;
1800
1809
  overflowStyles: import("vue").ComputedRef<{
@@ -1813,16 +1822,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
1813
1822
  readonly textDefaultLineHeightStyle: string;
1814
1823
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
1815
1824
  readonly textWordBreakStyle: string;
1825
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
1816
1826
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
1817
1827
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
1818
1828
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
1819
1829
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
1820
1830
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1821
1831
  as: {
1822
- type: PropType<"p" | "span">;
1832
+ type: PropType<"label" | "p" | "span">;
1823
1833
  required: false;
1824
1834
  default: string;
1825
1835
  };
1836
+ htmlFor: {
1837
+ type: StringConstructor;
1838
+ required: false;
1839
+ };
1826
1840
  color: {
1827
1841
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
1828
1842
  required: false;
@@ -1858,12 +1872,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
1858
1872
  type: BooleanConstructor;
1859
1873
  required: false;
1860
1874
  };
1875
+ textAlign: {
1876
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
1877
+ required: false;
1878
+ default: string;
1879
+ };
1861
1880
  }>>, {
1862
1881
  bold: boolean;
1863
1882
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
1864
1883
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
1884
+ textAlign: "left" | "right" | "center" | "end" | "start";
1865
1885
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
1866
- as: "p" | "span";
1886
+ as: "label" | "p" | "span";
1867
1887
  breakAll: boolean;
1868
1888
  }>;
1869
1889
  readonly WizTag: import("vue").DefineComponent<{
@@ -4048,11 +4068,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
4048
4068
  variant: "link" | "transparent" | "sub" | "primary";
4049
4069
  }>;
4050
4070
  readonly WizTextArea: import("vue").DefineComponent<{
4051
- modelValue: {
4071
+ id: {
4052
4072
  type: StringConstructor;
4053
- required: true;
4073
+ required: false;
4054
4074
  };
4055
- name: {
4075
+ modelValue: {
4056
4076
  type: StringConstructor;
4057
4077
  required: true;
4058
4078
  };
@@ -4089,11 +4109,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
4089
4109
  readonly textAreaExpandStyle: string;
4090
4110
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
4091
4111
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4092
- modelValue: {
4112
+ id: {
4093
4113
  type: StringConstructor;
4094
- required: true;
4114
+ required: false;
4095
4115
  };
4096
- name: {
4116
+ modelValue: {
4097
4117
  type: StringConstructor;
4098
4118
  required: true;
4099
4119
  };
@@ -4631,10 +4651,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
4631
4651
  }>;
4632
4652
  readonly WizText: import("vue").DefineComponent<{
4633
4653
  as: {
4634
- type: PropType<"p" | "span">;
4654
+ type: PropType<"label" | "p" | "span">;
4635
4655
  required: false;
4636
4656
  default: string;
4637
4657
  };
4658
+ htmlFor: {
4659
+ type: StringConstructor;
4660
+ required: false;
4661
+ };
4638
4662
  color: {
4639
4663
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
4640
4664
  required: false;
@@ -4670,6 +4694,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
4670
4694
  type: BooleanConstructor;
4671
4695
  required: false;
4672
4696
  };
4697
+ textAlign: {
4698
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
4699
+ required: false;
4700
+ default: string;
4701
+ };
4673
4702
  }, {
4674
4703
  props: any;
4675
4704
  overflowStyles: import("vue").ComputedRef<{
@@ -4688,16 +4717,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
4688
4717
  readonly textDefaultLineHeightStyle: string;
4689
4718
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
4690
4719
  readonly textWordBreakStyle: string;
4720
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
4691
4721
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
4692
4722
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
4693
4723
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
4694
4724
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
4695
4725
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
4696
4726
  as: {
4697
- type: PropType<"p" | "span">;
4727
+ type: PropType<"label" | "p" | "span">;
4698
4728
  required: false;
4699
4729
  default: string;
4700
4730
  };
4731
+ htmlFor: {
4732
+ type: StringConstructor;
4733
+ required: false;
4734
+ };
4701
4735
  color: {
4702
4736
  type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
4703
4737
  required: false;
@@ -4733,12 +4767,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
4733
4767
  type: BooleanConstructor;
4734
4768
  required: false;
4735
4769
  };
4770
+ textAlign: {
4771
+ type: PropType<"left" | "right" | "center" | "end" | "start">;
4772
+ required: false;
4773
+ default: string;
4774
+ };
4736
4775
  }>>, {
4737
4776
  bold: boolean;
4738
4777
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
4739
4778
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
4779
+ textAlign: "left" | "right" | "center" | "end" | "start";
4740
4780
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
4741
- as: "p" | "span";
4781
+ as: "label" | "p" | "span";
4742
4782
  breakAll: boolean;
4743
4783
  }>;
4744
4784
  readonly WizVStack: import("vue").DefineComponent<{
@@ -547,11 +547,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
547
547
  variant: "link" | "transparent" | "sub" | "primary";
548
548
  }>;
549
549
  readonly WizTextArea: import("vue").DefineComponent<{
550
- modelValue: {
550
+ id: {
551
551
  type: StringConstructor;
552
- required: true;
552
+ required: false;
553
553
  };
554
- name: {
554
+ modelValue: {
555
555
  type: StringConstructor;
556
556
  required: true;
557
557
  };
@@ -588,11 +588,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
588
588
  readonly textAreaExpandStyle: string;
589
589
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
590
590
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
591
- modelValue: {
591
+ id: {
592
592
  type: StringConstructor;
593
- required: true;
593
+ required: false;
594
594
  };
595
- name: {
595
+ modelValue: {
596
596
  type: StringConstructor;
597
597
  required: true;
598
598
  };