@wizleap-inc/wiz-ui-next 0.6.0 → 0.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.
- package/dist/components/base/buttons/toggle/toggle.vue.d.ts +12 -4
- package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +23 -3
- package/dist/components/base/inputs/radio/types.d.ts +1 -0
- package/dist/components/base/inputs/toggle-switch/toggle-switch.vue.d.ts +8 -0
- package/dist/components/base/inputs/upload/upload.vue.d.ts +21 -11
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +23 -3
- package/dist/components/base/text/text.vue.d.ts +23 -3
- package/dist/components/base/textarea/text-area.vue.d.ts +6 -6
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +52 -12
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +6 -6
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +23 -3
- package/dist/components/custom/form/control.vue.d.ts +31 -3
- package/dist/components/custom/notification/list/list.vue.d.ts +23 -3
- package/dist/components/custom/notification/notification.vue.d.ts +23 -3
- package/dist/components/custom/notification/panel/panel.vue.d.ts +23 -3
- package/dist/components/icons/camera.vue.d.ts +2 -0
- package/dist/components/icons/index.d.ts +3 -2
- package/dist/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +1785 -1737
- package/dist/wiz-ui.umd.js +10 -10
- 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
|
-
|
|
30
|
-
|
|
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, "
|
|
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
|
-
|
|
577
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
570
578
|
}, {
|
|
571
579
|
size: "sm" | "md" | "lg";
|
|
572
580
|
disabled: boolean;
|
|
@@ -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<{
|
|
@@ -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
|
-
|
|
4
|
-
|
|
3
|
+
/**
|
|
4
|
+
* @example xhrLauncher: () => new XMLHttpRequest()
|
|
5
|
+
* */
|
|
6
|
+
xhrLauncher: {
|
|
7
|
+
type: PropType<() => XMLHttpRequest>;
|
|
5
8
|
required: true;
|
|
6
9
|
};
|
|
7
|
-
|
|
8
|
-
type:
|
|
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,
|
|
34
|
-
uploadFileList: (fileList: FileList
|
|
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
|
-
|
|
1520
|
-
|
|
1523
|
+
/**
|
|
1524
|
+
* @example xhrLauncher: () => new XMLHttpRequest()
|
|
1525
|
+
* */
|
|
1526
|
+
xhrLauncher: {
|
|
1527
|
+
type: PropType<() => XMLHttpRequest>;
|
|
1521
1528
|
required: true;
|
|
1522
1529
|
};
|
|
1523
|
-
|
|
1524
|
-
type:
|
|
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;
|
|
@@ -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
|
-
|
|
2
|
+
id: {
|
|
3
3
|
type: StringConstructor;
|
|
4
|
-
required:
|
|
4
|
+
required: false;
|
|
5
5
|
};
|
|
6
|
-
|
|
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
|
-
|
|
43
|
+
id: {
|
|
44
44
|
type: StringConstructor;
|
|
45
|
-
required:
|
|
45
|
+
required: false;
|
|
46
46
|
};
|
|
47
|
-
|
|
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
|
-
|
|
4071
|
+
id: {
|
|
4052
4072
|
type: StringConstructor;
|
|
4053
|
-
required:
|
|
4073
|
+
required: false;
|
|
4054
4074
|
};
|
|
4055
|
-
|
|
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
|
-
|
|
4112
|
+
id: {
|
|
4093
4113
|
type: StringConstructor;
|
|
4094
|
-
required:
|
|
4114
|
+
required: false;
|
|
4095
4115
|
};
|
|
4096
|
-
|
|
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
|
-
|
|
550
|
+
id: {
|
|
551
551
|
type: StringConstructor;
|
|
552
|
-
required:
|
|
552
|
+
required: false;
|
|
553
553
|
};
|
|
554
|
-
|
|
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
|
-
|
|
591
|
+
id: {
|
|
592
592
|
type: StringConstructor;
|
|
593
|
-
required:
|
|
593
|
+
required: false;
|
|
594
594
|
};
|
|
595
|
-
|
|
595
|
+
modelValue: {
|
|
596
596
|
type: StringConstructor;
|
|
597
597
|
required: true;
|
|
598
598
|
};
|
|
@@ -486,10 +486,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
486
486
|
}>;
|
|
487
487
|
readonly WizText: import("vue").DefineComponent<{
|
|
488
488
|
as: {
|
|
489
|
-
type: PropType<"p" | "span">;
|
|
489
|
+
type: PropType<"label" | "p" | "span">;
|
|
490
490
|
required: false;
|
|
491
491
|
default: string;
|
|
492
492
|
};
|
|
493
|
+
htmlFor: {
|
|
494
|
+
type: StringConstructor;
|
|
495
|
+
required: false;
|
|
496
|
+
};
|
|
493
497
|
color: {
|
|
494
498
|
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
495
499
|
required: false;
|
|
@@ -525,6 +529,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
525
529
|
type: BooleanConstructor;
|
|
526
530
|
required: false;
|
|
527
531
|
};
|
|
532
|
+
textAlign: {
|
|
533
|
+
type: PropType<"left" | "right" | "center" | "end" | "start">;
|
|
534
|
+
required: false;
|
|
535
|
+
default: string;
|
|
536
|
+
};
|
|
528
537
|
}, {
|
|
529
538
|
props: any;
|
|
530
539
|
overflowStyles: import("vue").ComputedRef<{
|
|
@@ -543,16 +552,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
543
552
|
readonly textDefaultLineHeightStyle: string;
|
|
544
553
|
readonly textFontWeightStyle: Record<"default" | "bold", string>;
|
|
545
554
|
readonly textWordBreakStyle: string;
|
|
555
|
+
readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
|
|
546
556
|
readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
547
557
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
548
558
|
readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
549
559
|
readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
|
|
550
560
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
551
561
|
as: {
|
|
552
|
-
type: PropType<"p" | "span">;
|
|
562
|
+
type: PropType<"label" | "p" | "span">;
|
|
553
563
|
required: false;
|
|
554
564
|
default: string;
|
|
555
565
|
};
|
|
566
|
+
htmlFor: {
|
|
567
|
+
type: StringConstructor;
|
|
568
|
+
required: false;
|
|
569
|
+
};
|
|
556
570
|
color: {
|
|
557
571
|
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
558
572
|
required: false;
|
|
@@ -588,12 +602,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
588
602
|
type: BooleanConstructor;
|
|
589
603
|
required: false;
|
|
590
604
|
};
|
|
605
|
+
textAlign: {
|
|
606
|
+
type: PropType<"left" | "right" | "center" | "end" | "start">;
|
|
607
|
+
required: false;
|
|
608
|
+
default: string;
|
|
609
|
+
};
|
|
591
610
|
}>>, {
|
|
592
611
|
bold: boolean;
|
|
593
612
|
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
594
613
|
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
614
|
+
textAlign: "left" | "right" | "center" | "end" | "start";
|
|
595
615
|
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
596
|
-
as: "p" | "span";
|
|
616
|
+
as: "label" | "p" | "span";
|
|
597
617
|
breakAll: boolean;
|
|
598
618
|
}>;
|
|
599
619
|
readonly WizVStack: import("vue").DefineComponent<{
|