@wizleap-inc/wiz-ui-next 0.5.3 → 0.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.
- package/dist/components/base/buttons/icon/icon.vue.d.ts +5 -5
- package/dist/components/base/dialog/dialog.vue.d.ts +5 -5
- package/dist/components/base/header/header.vue.d.ts +5 -5
- package/dist/components/base/inputs/base/base.vue.d.ts +19 -7
- package/dist/components/base/inputs/checkbox/types.d.ts +1 -0
- package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +9 -0
- package/dist/components/base/inputs/password/password.vue.d.ts +25 -14
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +1 -1
- package/dist/components/base/inputs/text/text.vue.d.ts +42 -16
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +33 -8
- package/dist/components/base/text/text.vue.d.ts +9 -0
- package/dist/components/base/tooltip/tooltip.vue.d.ts +25 -8
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +1419 -36
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +5 -5
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +184 -0
- package/dist/components/custom/chat/types.d.ts +1 -1
- package/dist/components/custom/form/control.vue.d.ts +9 -0
- package/dist/components/custom/notification/list/list.vue.d.ts +9 -0
- package/dist/components/custom/notification/notification.vue.d.ts +9 -0
- package/dist/components/custom/notification/panel/panel.vue.d.ts +9 -0
- package/dist/components/icons/content-copy.vue.d.ts +2 -0
- package/dist/components/icons/description.vue.d.ts +2 -0
- package/dist/components/icons/index.d.ts +5 -2
- package/dist/components/icons/search.vue.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2338 -2170
- package/dist/wiz-ui.umd.js +10 -9
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
8
|
variant: {
|
|
9
|
-
type: PropType<"
|
|
9
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
10
10
|
required: false;
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
@@ -25,8 +25,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
25
|
emits: (event: "click") => void;
|
|
26
26
|
onClick: () => true | void;
|
|
27
27
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
28
|
-
readonly iconButtonSVGStyle: Record<"
|
|
29
|
-
readonly iconButtonStyle: Record<"
|
|
28
|
+
readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
29
|
+
readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
30
30
|
readonly iconButtonDisabledStyle: string;
|
|
31
31
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
32
32
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -35,7 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
35
|
required: true;
|
|
36
36
|
};
|
|
37
37
|
variant: {
|
|
38
|
-
type: PropType<"
|
|
38
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
39
39
|
required: false;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
@@ -54,6 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
54
|
}, {
|
|
55
55
|
size: "sm" | "md" | "lg" | "xl";
|
|
56
56
|
disabled: boolean;
|
|
57
|
-
variant: "
|
|
57
|
+
variant: "link" | "transparent" | "sub" | "primary";
|
|
58
58
|
}>;
|
|
59
59
|
export default _sfc_main;
|
|
@@ -32,7 +32,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
32
32
|
required: true;
|
|
33
33
|
};
|
|
34
34
|
variant: {
|
|
35
|
-
type: PropType<"
|
|
35
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
36
36
|
required: false;
|
|
37
37
|
default: string;
|
|
38
38
|
};
|
|
@@ -51,8 +51,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
51
51
|
emits: (event: "click") => void;
|
|
52
52
|
onClick: () => true | void;
|
|
53
53
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
54
|
-
readonly iconButtonSVGStyle: Record<"
|
|
55
|
-
readonly iconButtonStyle: Record<"
|
|
54
|
+
readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
55
|
+
readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
56
56
|
readonly iconButtonDisabledStyle: string;
|
|
57
57
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
58
58
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -61,7 +61,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
61
61
|
required: true;
|
|
62
62
|
};
|
|
63
63
|
variant: {
|
|
64
|
-
type: PropType<"
|
|
64
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
65
65
|
required: false;
|
|
66
66
|
default: string;
|
|
67
67
|
};
|
|
@@ -80,7 +80,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
80
80
|
}, {
|
|
81
81
|
size: "sm" | "md" | "lg" | "xl";
|
|
82
82
|
disabled: boolean;
|
|
83
|
-
variant: "
|
|
83
|
+
variant: "link" | "transparent" | "sub" | "primary";
|
|
84
84
|
}>;
|
|
85
85
|
readonly WizCard: import("vue").DefineComponent<{
|
|
86
86
|
title: {
|
|
@@ -492,7 +492,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
492
492
|
required: true;
|
|
493
493
|
};
|
|
494
494
|
variant: {
|
|
495
|
-
type: PropType<"
|
|
495
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
496
496
|
required: false;
|
|
497
497
|
default: string;
|
|
498
498
|
};
|
|
@@ -511,8 +511,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
511
511
|
emits: (event: "click") => void;
|
|
512
512
|
onClick: () => true | void;
|
|
513
513
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
514
|
-
readonly iconButtonSVGStyle: Record<"
|
|
515
|
-
readonly iconButtonStyle: Record<"
|
|
514
|
+
readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
515
|
+
readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
|
|
516
516
|
readonly iconButtonDisabledStyle: string;
|
|
517
517
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
518
518
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -521,7 +521,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
521
521
|
required: true;
|
|
522
522
|
};
|
|
523
523
|
variant: {
|
|
524
|
-
type: PropType<"
|
|
524
|
+
type: PropType<"link" | "transparent" | "sub" | "primary">;
|
|
525
525
|
required: false;
|
|
526
526
|
default: string;
|
|
527
527
|
};
|
|
@@ -540,7 +540,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
540
540
|
}, {
|
|
541
541
|
size: "sm" | "md" | "lg" | "xl";
|
|
542
542
|
disabled: boolean;
|
|
543
|
-
variant: "
|
|
543
|
+
variant: "link" | "transparent" | "sub" | "primary";
|
|
544
544
|
}>;
|
|
545
545
|
readonly WizIMenu: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
546
546
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
-
|
|
3
|
+
id: {
|
|
4
4
|
type: StringConstructor;
|
|
5
|
-
required:
|
|
5
|
+
required: false;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
modelValue: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
@@ -33,22 +33,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
type: BooleanConstructor;
|
|
34
34
|
required: false;
|
|
35
35
|
};
|
|
36
|
+
spaceType: {
|
|
37
|
+
type: PropType<"left" | "right" | "none" | "both">;
|
|
38
|
+
required: false;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
36
41
|
}, {
|
|
37
42
|
props: any;
|
|
38
43
|
emit: (e: "update:modelValue", value: string) => void;
|
|
39
|
-
|
|
44
|
+
textValue: import("vue").WritableComputedRef<string>;
|
|
40
45
|
hasFocus: import("vue").Ref<boolean>;
|
|
41
46
|
computedWidth: import("vue").ComputedRef<string>;
|
|
42
47
|
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
43
48
|
readonly baseInputStyle: string;
|
|
44
49
|
readonly baseInputDisabledStyle: string;
|
|
50
|
+
readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
|
|
45
51
|
readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
|
|
46
52
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
-
|
|
53
|
+
id: {
|
|
48
54
|
type: StringConstructor;
|
|
49
|
-
required:
|
|
55
|
+
required: false;
|
|
50
56
|
};
|
|
51
|
-
|
|
57
|
+
modelValue: {
|
|
52
58
|
type: StringConstructor;
|
|
53
59
|
required: true;
|
|
54
60
|
};
|
|
@@ -77,6 +83,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
77
83
|
type: BooleanConstructor;
|
|
78
84
|
required: false;
|
|
79
85
|
};
|
|
86
|
+
spaceType: {
|
|
87
|
+
type: PropType<"left" | "right" | "none" | "both">;
|
|
88
|
+
required: false;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
80
91
|
}>> & {
|
|
81
92
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
82
93
|
}, {
|
|
@@ -84,5 +95,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
84
95
|
disabled: boolean;
|
|
85
96
|
expand: boolean;
|
|
86
97
|
error: boolean;
|
|
98
|
+
spaceType: "left" | "right" | "none" | "both";
|
|
87
99
|
}>;
|
|
88
100
|
export default _sfc_main;
|
|
@@ -693,6 +693,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
693
693
|
type: StringConstructor;
|
|
694
694
|
required: false;
|
|
695
695
|
};
|
|
696
|
+
breakAll: {
|
|
697
|
+
type: BooleanConstructor;
|
|
698
|
+
required: false;
|
|
699
|
+
};
|
|
696
700
|
}, {
|
|
697
701
|
props: any;
|
|
698
702
|
overflowStyles: import("vue").ComputedRef<{
|
|
@@ -752,12 +756,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
752
756
|
type: StringConstructor;
|
|
753
757
|
required: false;
|
|
754
758
|
};
|
|
759
|
+
breakAll: {
|
|
760
|
+
type: BooleanConstructor;
|
|
761
|
+
required: false;
|
|
762
|
+
};
|
|
755
763
|
}>>, {
|
|
756
764
|
bold: boolean;
|
|
757
765
|
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
758
766
|
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
759
767
|
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
760
768
|
as: "p" | "span";
|
|
769
|
+
breakAll: boolean;
|
|
761
770
|
}>;
|
|
762
771
|
readonly WizPopup: import("vue").DefineComponent<{
|
|
763
772
|
layer: {
|
|
@@ -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
|
};
|
|
@@ -38,17 +38,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
38
38
|
PASSWORD_VISIBLE_TOGGLE: string;
|
|
39
39
|
};
|
|
40
40
|
readonly passwordStyle: string;
|
|
41
|
-
readonly passwordInputStyle: string;
|
|
42
41
|
readonly passwordExpandStyle: Record<"default" | "expand", string>;
|
|
43
42
|
readonly passwordVisibleIconStyle: string;
|
|
44
43
|
readonly passwordVisibleIconActiveStyle: string;
|
|
45
44
|
readonly WizIEye: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
46
45
|
readonly PrivateBaseInput: import("vue").DefineComponent<{
|
|
47
|
-
|
|
46
|
+
id: {
|
|
48
47
|
type: StringConstructor;
|
|
49
|
-
required:
|
|
48
|
+
required: false;
|
|
50
49
|
};
|
|
51
|
-
|
|
50
|
+
modelValue: {
|
|
52
51
|
type: StringConstructor;
|
|
53
52
|
required: true;
|
|
54
53
|
};
|
|
@@ -77,22 +76,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
77
76
|
type: BooleanConstructor;
|
|
78
77
|
required: false;
|
|
79
78
|
};
|
|
79
|
+
spaceType: {
|
|
80
|
+
type: import("vue").PropType<"left" | "right" | "none" | "both">;
|
|
81
|
+
required: false;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
80
84
|
}, {
|
|
81
85
|
props: any;
|
|
82
86
|
emit: (e: "update:modelValue", value: string) => void;
|
|
83
|
-
|
|
87
|
+
textValue: import("vue").WritableComputedRef<string>;
|
|
84
88
|
hasFocus: import("vue").Ref<boolean>;
|
|
85
89
|
computedWidth: import("vue").ComputedRef<string>;
|
|
86
90
|
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
87
91
|
readonly baseInputStyle: string;
|
|
88
92
|
readonly baseInputDisabledStyle: string;
|
|
93
|
+
readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
|
|
89
94
|
readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
|
|
90
95
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
91
|
-
|
|
96
|
+
id: {
|
|
92
97
|
type: StringConstructor;
|
|
93
|
-
required:
|
|
98
|
+
required: false;
|
|
94
99
|
};
|
|
95
|
-
|
|
100
|
+
modelValue: {
|
|
96
101
|
type: StringConstructor;
|
|
97
102
|
required: true;
|
|
98
103
|
};
|
|
@@ -121,6 +126,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
121
126
|
type: BooleanConstructor;
|
|
122
127
|
required: false;
|
|
123
128
|
};
|
|
129
|
+
spaceType: {
|
|
130
|
+
type: import("vue").PropType<"left" | "right" | "none" | "both">;
|
|
131
|
+
required: false;
|
|
132
|
+
default: string;
|
|
133
|
+
};
|
|
124
134
|
}>> & {
|
|
125
135
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
126
136
|
}, {
|
|
@@ -128,13 +138,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
128
138
|
disabled: boolean;
|
|
129
139
|
expand: boolean;
|
|
130
140
|
error: boolean;
|
|
141
|
+
spaceType: "left" | "right" | "none" | "both";
|
|
131
142
|
}>;
|
|
132
143
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
133
|
-
|
|
144
|
+
id: {
|
|
134
145
|
type: StringConstructor;
|
|
135
|
-
required:
|
|
146
|
+
required: false;
|
|
136
147
|
};
|
|
137
|
-
|
|
148
|
+
modelValue: {
|
|
138
149
|
type: StringConstructor;
|
|
139
150
|
required: true;
|
|
140
151
|
};
|
|
@@ -50,9 +50,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
50
|
readonly selectBoxInnerBoxSelectedValueStyle: string;
|
|
51
51
|
readonly selectBoxInnerBoxLessStyle: string;
|
|
52
52
|
readonly selectBoxInnerBoxMoreStyle: string;
|
|
53
|
-
readonly selectBoxInnerBoxSelectedStyle: string;
|
|
54
53
|
readonly selectBoxSelectorStyle: string;
|
|
55
54
|
readonly selectBoxSelectorOptionStyle: string;
|
|
55
|
+
readonly selectBoxPlaceholderStyle: string;
|
|
56
56
|
readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
|
|
57
57
|
readonly WizPopupContainer: import("vue").DefineComponent<{
|
|
58
58
|
modelValue: {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { TIcon } from '../../../../components/icons';
|
|
1
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
|
|
4
|
+
id: {
|
|
3
5
|
type: StringConstructor;
|
|
4
|
-
required:
|
|
6
|
+
required: false;
|
|
5
7
|
};
|
|
6
|
-
|
|
8
|
+
modelValue: {
|
|
7
9
|
type: StringConstructor;
|
|
8
10
|
required: true;
|
|
9
11
|
};
|
|
@@ -24,21 +26,29 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
24
26
|
type: BooleanConstructor;
|
|
25
27
|
required: false;
|
|
26
28
|
};
|
|
29
|
+
icon: {
|
|
30
|
+
type: PropType<TIcon>;
|
|
31
|
+
required: false;
|
|
32
|
+
};
|
|
27
33
|
}, {
|
|
28
34
|
props: any;
|
|
29
35
|
emit: (e: "update:modelValue", value: string) => void;
|
|
30
|
-
|
|
36
|
+
textValue: import("vue").WritableComputedRef<string>;
|
|
31
37
|
form: {
|
|
32
38
|
isError: Readonly<import("vue").Ref<boolean>>;
|
|
33
39
|
setIsError: (value: boolean) => void;
|
|
34
40
|
} | undefined;
|
|
35
41
|
isError: import("vue").ComputedRef<boolean>;
|
|
42
|
+
computedExpand: import("vue").ComputedRef<"default" | "expand">;
|
|
43
|
+
readonly textInputStyle: string;
|
|
44
|
+
readonly textInputExpandStyle: Record<"default" | "expand", string>;
|
|
45
|
+
readonly textInputIconStyle: string;
|
|
36
46
|
readonly PrivateBaseInput: import("vue").DefineComponent<{
|
|
37
|
-
|
|
47
|
+
id: {
|
|
38
48
|
type: StringConstructor;
|
|
39
|
-
required:
|
|
49
|
+
required: false;
|
|
40
50
|
};
|
|
41
|
-
|
|
51
|
+
modelValue: {
|
|
42
52
|
type: StringConstructor;
|
|
43
53
|
required: true;
|
|
44
54
|
};
|
|
@@ -55,7 +65,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
55
65
|
required: false;
|
|
56
66
|
};
|
|
57
67
|
type: {
|
|
58
|
-
type:
|
|
68
|
+
type: PropType<"text" | "password">;
|
|
59
69
|
required: false;
|
|
60
70
|
};
|
|
61
71
|
width: {
|
|
@@ -67,22 +77,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
67
77
|
type: BooleanConstructor;
|
|
68
78
|
required: false;
|
|
69
79
|
};
|
|
80
|
+
spaceType: {
|
|
81
|
+
type: PropType<"left" | "right" | "none" | "both">;
|
|
82
|
+
required: false;
|
|
83
|
+
default: string;
|
|
84
|
+
};
|
|
70
85
|
}, {
|
|
71
86
|
props: any;
|
|
72
87
|
emit: (e: "update:modelValue", value: string) => void;
|
|
73
|
-
|
|
88
|
+
textValue: import("vue").WritableComputedRef<string>;
|
|
74
89
|
hasFocus: import("vue").Ref<boolean>;
|
|
75
90
|
computedWidth: import("vue").ComputedRef<string>;
|
|
76
91
|
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
77
92
|
readonly baseInputStyle: string;
|
|
78
93
|
readonly baseInputDisabledStyle: string;
|
|
94
|
+
readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
|
|
79
95
|
readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
|
|
80
96
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
81
|
-
|
|
97
|
+
id: {
|
|
82
98
|
type: StringConstructor;
|
|
83
|
-
required:
|
|
99
|
+
required: false;
|
|
84
100
|
};
|
|
85
|
-
|
|
101
|
+
modelValue: {
|
|
86
102
|
type: StringConstructor;
|
|
87
103
|
required: true;
|
|
88
104
|
};
|
|
@@ -99,7 +115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
99
115
|
required: false;
|
|
100
116
|
};
|
|
101
117
|
type: {
|
|
102
|
-
type:
|
|
118
|
+
type: PropType<"text" | "password">;
|
|
103
119
|
required: false;
|
|
104
120
|
};
|
|
105
121
|
width: {
|
|
@@ -111,6 +127,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
111
127
|
type: BooleanConstructor;
|
|
112
128
|
required: false;
|
|
113
129
|
};
|
|
130
|
+
spaceType: {
|
|
131
|
+
type: PropType<"left" | "right" | "none" | "both">;
|
|
132
|
+
required: false;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
114
135
|
}>> & {
|
|
115
136
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
116
137
|
}, {
|
|
@@ -118,13 +139,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
118
139
|
disabled: boolean;
|
|
119
140
|
expand: boolean;
|
|
120
141
|
error: boolean;
|
|
142
|
+
spaceType: "left" | "right" | "none" | "both";
|
|
121
143
|
}>;
|
|
122
144
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
123
|
-
|
|
145
|
+
id: {
|
|
124
146
|
type: StringConstructor;
|
|
125
|
-
required:
|
|
147
|
+
required: false;
|
|
126
148
|
};
|
|
127
|
-
|
|
149
|
+
modelValue: {
|
|
128
150
|
type: StringConstructor;
|
|
129
151
|
required: true;
|
|
130
152
|
};
|
|
@@ -145,6 +167,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
145
167
|
type: BooleanConstructor;
|
|
146
168
|
required: false;
|
|
147
169
|
};
|
|
170
|
+
icon: {
|
|
171
|
+
type: PropType<TIcon>;
|
|
172
|
+
required: false;
|
|
173
|
+
};
|
|
148
174
|
}>> & {
|
|
149
175
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
150
176
|
}, {
|
|
@@ -47,6 +47,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
47
47
|
type: StringConstructor;
|
|
48
48
|
required: false;
|
|
49
49
|
};
|
|
50
|
+
breakAll: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
};
|
|
50
54
|
}, {
|
|
51
55
|
props: any;
|
|
52
56
|
overflowStyles: import("vue").ComputedRef<{
|
|
@@ -106,32 +110,53 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
106
110
|
type: StringConstructor;
|
|
107
111
|
required: false;
|
|
108
112
|
};
|
|
113
|
+
breakAll: {
|
|
114
|
+
type: BooleanConstructor;
|
|
115
|
+
required: false;
|
|
116
|
+
};
|
|
109
117
|
}>>, {
|
|
110
118
|
bold: boolean;
|
|
111
119
|
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
112
120
|
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
113
121
|
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
114
122
|
as: "p" | "span";
|
|
123
|
+
breakAll: boolean;
|
|
115
124
|
}>;
|
|
116
125
|
readonly WizTooltip: import("vue").DefineComponent<{
|
|
117
|
-
|
|
118
|
-
type:
|
|
126
|
+
direction: {
|
|
127
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
128
|
+
required: false;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
hover: {
|
|
132
|
+
type: BooleanConstructor;
|
|
119
133
|
required: false;
|
|
134
|
+
default: boolean;
|
|
120
135
|
};
|
|
121
136
|
}, {
|
|
122
|
-
|
|
123
|
-
[name: string]: import("vue").Slot | undefined;
|
|
124
|
-
}>;
|
|
137
|
+
isHover: import("vue").Ref<boolean>;
|
|
125
138
|
readonly tooltipStyle: string;
|
|
126
139
|
readonly tooltipContentStyle: string;
|
|
127
140
|
readonly tooltipIconStyle: string;
|
|
141
|
+
readonly tooltipIconDirectionStyle: Record<"left" | "right" | "top" | "bottom", string>;
|
|
142
|
+
readonly tooltipPositionStyle: Record<"left" | "right" | "top" | "bottom", string>;
|
|
143
|
+
readonly tooltipPopupStyle: string;
|
|
128
144
|
readonly WizIChangeHistory: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
129
145
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
|
-
|
|
131
|
-
type:
|
|
146
|
+
direction: {
|
|
147
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
132
148
|
required: false;
|
|
149
|
+
default: string;
|
|
133
150
|
};
|
|
134
|
-
|
|
151
|
+
hover: {
|
|
152
|
+
type: BooleanConstructor;
|
|
153
|
+
required: false;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
}>>, {
|
|
157
|
+
direction: "left" | "right" | "top" | "bottom";
|
|
158
|
+
hover: boolean;
|
|
159
|
+
}>;
|
|
135
160
|
readonly WizProgressPoint: import("vue").DefineComponent<{
|
|
136
161
|
status: {
|
|
137
162
|
type: PropType<import("./types").ProgressStatus>;
|
|
@@ -37,6 +37,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
37
|
type: StringConstructor;
|
|
38
38
|
required: false;
|
|
39
39
|
};
|
|
40
|
+
breakAll: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
};
|
|
40
44
|
}, {
|
|
41
45
|
props: any;
|
|
42
46
|
overflowStyles: import("vue").ComputedRef<{
|
|
@@ -96,11 +100,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
100
|
type: StringConstructor;
|
|
97
101
|
required: false;
|
|
98
102
|
};
|
|
103
|
+
breakAll: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
required: false;
|
|
106
|
+
};
|
|
99
107
|
}>>, {
|
|
100
108
|
bold: boolean;
|
|
101
109
|
color: ColorKeys;
|
|
102
110
|
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
103
111
|
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
104
112
|
as: "p" | "span";
|
|
113
|
+
breakAll: boolean;
|
|
105
114
|
}>;
|
|
106
115
|
export default _sfc_main;
|
|
@@ -1,20 +1,37 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
-
|
|
3
|
-
type:
|
|
3
|
+
direction: {
|
|
4
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
4
5
|
required: false;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
hover: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
required: false;
|
|
11
|
+
default: boolean;
|
|
5
12
|
};
|
|
6
13
|
}, {
|
|
7
|
-
|
|
8
|
-
[name: string]: import("vue").Slot | undefined;
|
|
9
|
-
}>;
|
|
14
|
+
isHover: import("vue").Ref<boolean>;
|
|
10
15
|
readonly tooltipStyle: string;
|
|
11
16
|
readonly tooltipContentStyle: string;
|
|
12
17
|
readonly tooltipIconStyle: string;
|
|
18
|
+
readonly tooltipIconDirectionStyle: Record<"left" | "right" | "top" | "bottom", string>;
|
|
19
|
+
readonly tooltipPositionStyle: Record<"left" | "right" | "top" | "bottom", string>;
|
|
20
|
+
readonly tooltipPopupStyle: string;
|
|
13
21
|
readonly WizIChangeHistory: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
14
22
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
|
|
16
|
-
type:
|
|
23
|
+
direction: {
|
|
24
|
+
type: PropType<"left" | "right" | "top" | "bottom">;
|
|
25
|
+
required: false;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
hover: {
|
|
29
|
+
type: BooleanConstructor;
|
|
17
30
|
required: false;
|
|
31
|
+
default: boolean;
|
|
18
32
|
};
|
|
19
|
-
}>>, {
|
|
33
|
+
}>>, {
|
|
34
|
+
direction: "left" | "right" | "top" | "bottom";
|
|
35
|
+
hover: boolean;
|
|
36
|
+
}>;
|
|
20
37
|
export default _sfc_main;
|