plugin-ui-for-kzt 0.0.57 → 0.0.59
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/BaseBadge/BaseBadge.vue.d.ts +1 -1
- package/dist/components/BaseButton/BaseButton.vue.d.ts +1 -1
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +5 -5
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -2
- package/dist/components/BaseChips/BaseChips.vue.d.ts +2 -0
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +12 -3
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +13 -6
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +11 -4
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +9 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +9 -2
- package/dist/components/BaseInputWithSelector/BaseInputWithSelector.vue.d.ts +9 -0
- package/dist/components/BasePagination/BasePagination.vue.d.ts +1 -1
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +4 -4
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +7 -0
- package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +9 -2
- package/dist/components/BaseToast/BaseToast.vue.d.ts +1 -1
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -2
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/index.js +1 -1
- package/example/App.vue +39 -2
- package/package.json +1 -1
- package/src/components/BaseChips/BaseChips.vue +233 -139
- package/src/components/BaseChips/README.md +8 -7
- package/src/components/BaseInput/BaseInput.vue +80 -37
- package/src/components/BaseInput/README.md +8 -1
- package/src/components/BaseInputWithSelector/BaseInputWithSelector.vue +3 -0
- package/src/components/BaseSelect/BaseSelect.vue +14 -1
- package/src/components/BaseUpload/BaseUpload.vue +1 -1
- package/src/types/chips.d.ts +1 -0
- package/src/types/input.d.ts +1 -0
|
@@ -40,8 +40,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
40
40
|
};
|
|
41
41
|
}>> & Readonly<{}>, {
|
|
42
42
|
size: string;
|
|
43
|
-
closable: boolean;
|
|
44
43
|
color: string;
|
|
44
|
+
closable: boolean;
|
|
45
45
|
hasDot: boolean;
|
|
46
46
|
arrowUpIcon: boolean;
|
|
47
47
|
arrowRightIcon: boolean;
|
|
@@ -87,15 +87,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
87
|
};
|
|
88
88
|
}>> & Readonly<{}>, {
|
|
89
89
|
size: string;
|
|
90
|
+
range: boolean | Record<string, any>;
|
|
91
|
+
minDate: null;
|
|
92
|
+
maxDate: null;
|
|
93
|
+
readonly: boolean;
|
|
94
|
+
inline: boolean;
|
|
90
95
|
selected: boolean;
|
|
91
96
|
active: boolean;
|
|
92
97
|
disabled: boolean;
|
|
93
98
|
required: boolean;
|
|
94
99
|
loading: boolean;
|
|
95
|
-
readonly: boolean;
|
|
96
|
-
range: boolean | Record<string, any>;
|
|
97
|
-
minDate: null;
|
|
98
|
-
maxDate: null;
|
|
99
|
-
inline: boolean;
|
|
100
100
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
101
101
|
export default _default;
|
|
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
size: string;
|
|
69
|
+
modelValue: boolean;
|
|
70
|
+
readonly: boolean;
|
|
69
71
|
selected: boolean;
|
|
70
72
|
active: boolean;
|
|
71
73
|
disabled: boolean;
|
|
72
74
|
required: boolean;
|
|
73
75
|
loading: boolean;
|
|
74
|
-
modelValue: boolean;
|
|
75
|
-
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5
5
|
};
|
|
6
6
|
iconName: {};
|
|
7
7
|
count: {};
|
|
8
|
+
color: {};
|
|
8
9
|
size: {
|
|
9
10
|
default: string;
|
|
10
11
|
};
|
|
@@ -17,6 +18,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17
18
|
};
|
|
18
19
|
iconName: {};
|
|
19
20
|
count: {};
|
|
21
|
+
color: {};
|
|
20
22
|
size: {
|
|
21
23
|
default: string;
|
|
22
24
|
};
|
|
@@ -70,12 +70,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
70
70
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
71
71
|
}>, {
|
|
72
72
|
size: string;
|
|
73
|
+
modelValue: boolean;
|
|
73
74
|
selected: boolean;
|
|
74
75
|
active: boolean;
|
|
75
76
|
disabled: boolean;
|
|
76
77
|
required: boolean;
|
|
77
78
|
loading: boolean;
|
|
78
|
-
modelValue: boolean;
|
|
79
79
|
parentWidth: boolean;
|
|
80
80
|
preventControl: boolean;
|
|
81
81
|
autoClose: boolean;
|
|
@@ -14,6 +14,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14
14
|
placeholder: {
|
|
15
15
|
default: string;
|
|
16
16
|
};
|
|
17
|
+
clearable: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
17
21
|
error: {
|
|
18
22
|
type: (BooleanConstructor | StringConstructor)[];
|
|
19
23
|
};
|
|
@@ -62,6 +66,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
66
|
placeholder: {
|
|
63
67
|
default: string;
|
|
64
68
|
};
|
|
69
|
+
clearable: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
65
73
|
error: {
|
|
66
74
|
type: (BooleanConstructor | StringConstructor)[];
|
|
67
75
|
};
|
|
@@ -94,17 +102,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
102
|
};
|
|
95
103
|
}>> & Readonly<{}>, {
|
|
96
104
|
size: string;
|
|
105
|
+
type: string;
|
|
97
106
|
id: string;
|
|
98
107
|
mask: string;
|
|
99
|
-
|
|
108
|
+
modelValue: string;
|
|
109
|
+
readonly: boolean;
|
|
100
110
|
selected: boolean;
|
|
101
111
|
active: boolean;
|
|
102
112
|
disabled: boolean;
|
|
103
113
|
required: boolean;
|
|
104
114
|
loading: boolean;
|
|
105
|
-
modelValue: string;
|
|
106
|
-
readonly: boolean;
|
|
107
115
|
placeholder: string;
|
|
116
|
+
clearable: boolean;
|
|
108
117
|
focusable: boolean;
|
|
109
118
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
110
119
|
export default _default;
|
|
@@ -7,6 +7,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7
7
|
placeholder: {
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
clearable: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
};
|
|
10
13
|
error: {
|
|
11
14
|
type: (BooleanConstructor | StringConstructor)[];
|
|
12
15
|
};
|
|
@@ -64,6 +67,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
64
67
|
placeholder: {
|
|
65
68
|
default: string;
|
|
66
69
|
};
|
|
70
|
+
clearable: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
};
|
|
67
73
|
error: {
|
|
68
74
|
type: (BooleanConstructor | StringConstructor)[];
|
|
69
75
|
};
|
|
@@ -116,18 +122,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
116
122
|
}>, {
|
|
117
123
|
size: string;
|
|
118
124
|
type: string;
|
|
125
|
+
modelValue: string;
|
|
126
|
+
range: boolean | Record<string, any>;
|
|
127
|
+
minDate: null;
|
|
128
|
+
maxDate: null;
|
|
129
|
+
readonly: boolean;
|
|
130
|
+
inline: boolean;
|
|
119
131
|
selected: boolean;
|
|
120
132
|
active: boolean;
|
|
121
133
|
disabled: boolean;
|
|
122
134
|
required: boolean;
|
|
123
135
|
loading: boolean;
|
|
124
|
-
modelValue: string;
|
|
125
|
-
readonly: boolean;
|
|
126
136
|
placeholder: string;
|
|
137
|
+
clearable: boolean;
|
|
127
138
|
focusable: boolean;
|
|
128
|
-
range: boolean | Record<string, any>;
|
|
129
|
-
minDate: null;
|
|
130
|
-
maxDate: null;
|
|
131
|
-
inline: boolean;
|
|
132
139
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
133
140
|
export default _default;
|
|
@@ -10,6 +10,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10
10
|
placeholder: {
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
|
+
clearable: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
};
|
|
13
16
|
error: {
|
|
14
17
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
18
|
default: string;
|
|
@@ -57,6 +60,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
57
60
|
placeholder: {
|
|
58
61
|
default: string;
|
|
59
62
|
};
|
|
63
|
+
clearable: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
};
|
|
60
66
|
error: {
|
|
61
67
|
type: (BooleanConstructor | StringConstructor)[];
|
|
62
68
|
default: string;
|
|
@@ -92,17 +98,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
92
98
|
};
|
|
93
99
|
}>> & Readonly<{}>, {
|
|
94
100
|
size: string;
|
|
95
|
-
error: string | boolean;
|
|
96
101
|
type: string;
|
|
102
|
+
error: string | boolean;
|
|
103
|
+
modelValue: string;
|
|
104
|
+
readonly: boolean;
|
|
97
105
|
selected: boolean;
|
|
98
106
|
active: boolean;
|
|
99
107
|
disabled: boolean;
|
|
100
108
|
required: boolean;
|
|
101
109
|
loading: boolean;
|
|
102
|
-
modelValue: string;
|
|
103
|
-
readonly: boolean;
|
|
104
110
|
placeholder: string;
|
|
105
|
-
|
|
111
|
+
clearable: boolean;
|
|
106
112
|
options: undefined;
|
|
113
|
+
focusable: boolean;
|
|
107
114
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
108
115
|
export default _default;
|
|
@@ -10,6 +10,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10
10
|
placeholder: {
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
|
+
clearable: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
};
|
|
13
16
|
error: {
|
|
14
17
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
18
|
};
|
|
@@ -53,6 +56,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
53
56
|
placeholder: {
|
|
54
57
|
default: string;
|
|
55
58
|
};
|
|
59
|
+
clearable: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
};
|
|
56
62
|
error: {
|
|
57
63
|
type: (BooleanConstructor | StringConstructor)[];
|
|
58
64
|
};
|
|
@@ -87,14 +93,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
93
|
}>, {
|
|
88
94
|
size: string;
|
|
89
95
|
type: string;
|
|
96
|
+
modelValue: string;
|
|
97
|
+
readonly: boolean;
|
|
90
98
|
selected: boolean;
|
|
91
99
|
active: boolean;
|
|
92
100
|
disabled: boolean;
|
|
93
101
|
required: boolean;
|
|
94
102
|
loading: boolean;
|
|
95
|
-
modelValue: string;
|
|
96
|
-
readonly: boolean;
|
|
97
103
|
placeholder: string;
|
|
104
|
+
clearable: boolean;
|
|
98
105
|
focusable: boolean;
|
|
99
106
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
100
107
|
export default _default;
|
|
@@ -10,6 +10,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10
10
|
placeholder: {
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
|
+
clearable: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
};
|
|
13
16
|
error: {
|
|
14
17
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
18
|
};
|
|
@@ -53,6 +56,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
53
56
|
placeholder: {
|
|
54
57
|
default: string;
|
|
55
58
|
};
|
|
59
|
+
clearable: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
};
|
|
56
62
|
error: {
|
|
57
63
|
type: (BooleanConstructor | StringConstructor)[];
|
|
58
64
|
};
|
|
@@ -85,14 +91,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
85
91
|
}>> & Readonly<{}>, {
|
|
86
92
|
size: string;
|
|
87
93
|
type: string;
|
|
94
|
+
modelValue: string;
|
|
95
|
+
readonly: boolean;
|
|
88
96
|
selected: boolean;
|
|
89
97
|
active: boolean;
|
|
90
98
|
disabled: boolean;
|
|
91
99
|
required: boolean;
|
|
92
100
|
loading: boolean;
|
|
93
|
-
modelValue: string;
|
|
94
|
-
readonly: boolean;
|
|
95
101
|
placeholder: string;
|
|
102
|
+
clearable: boolean;
|
|
96
103
|
focusable: boolean;
|
|
97
104
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
105
|
export default _default;
|
|
@@ -7,6 +7,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
9
|
options: {};
|
|
10
|
+
clearable: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
10
14
|
placeholder: {
|
|
11
15
|
default: string;
|
|
12
16
|
};
|
|
@@ -25,6 +29,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
29
|
default: string;
|
|
26
30
|
};
|
|
27
31
|
options: {};
|
|
32
|
+
clearable: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
28
36
|
placeholder: {
|
|
29
37
|
default: string;
|
|
30
38
|
};
|
|
@@ -40,6 +48,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
40
48
|
size: string;
|
|
41
49
|
modelValue: string;
|
|
42
50
|
placeholder: string;
|
|
51
|
+
clearable: boolean;
|
|
43
52
|
selectedOptionId: string;
|
|
44
53
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
45
54
|
export default _default;
|
|
@@ -42,8 +42,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
42
42
|
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
size: string;
|
|
45
|
-
type: string;
|
|
46
45
|
color: string;
|
|
46
|
+
type: string;
|
|
47
47
|
currentPage: number;
|
|
48
48
|
totalPages: number;
|
|
49
49
|
maxDisplayedPages: number;
|
|
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
size: string;
|
|
69
|
+
modelValue: boolean;
|
|
70
|
+
readonly: boolean;
|
|
69
71
|
selected: boolean;
|
|
70
72
|
active: boolean;
|
|
71
73
|
disabled: boolean;
|
|
72
74
|
required: boolean;
|
|
73
75
|
loading: boolean;
|
|
74
|
-
modelValue: boolean;
|
|
75
|
-
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -115,24 +115,24 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
115
115
|
}>> & Readonly<{
|
|
116
116
|
onError?: ((...args: any[]) => any) | undefined;
|
|
117
117
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
118
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
119
118
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
119
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
120
120
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
121
121
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
122
122
|
onGetSearchApi?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
}>, {
|
|
124
124
|
size: string;
|
|
125
|
+
readonly: boolean;
|
|
125
126
|
selected: boolean;
|
|
126
127
|
active: boolean;
|
|
127
128
|
disabled: boolean;
|
|
128
129
|
required: boolean;
|
|
129
130
|
loading: boolean;
|
|
131
|
+
options: ICoreSelectOption[];
|
|
132
|
+
parentWidth: boolean;
|
|
130
133
|
outline: boolean;
|
|
131
134
|
rounded: boolean;
|
|
132
135
|
underline: boolean;
|
|
133
|
-
readonly: boolean;
|
|
134
|
-
options: ICoreSelectOption[];
|
|
135
|
-
parentWidth: boolean;
|
|
136
136
|
multiple: boolean;
|
|
137
137
|
searchable: boolean;
|
|
138
138
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -6,6 +6,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6
6
|
mask: {};
|
|
7
7
|
type: {};
|
|
8
8
|
placeholder: {};
|
|
9
|
+
clearable: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
};
|
|
9
12
|
error: {
|
|
10
13
|
type: (BooleanConstructor | StringConstructor)[];
|
|
11
14
|
};
|
|
@@ -31,6 +34,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
31
34
|
mask: {};
|
|
32
35
|
type: {};
|
|
33
36
|
placeholder: {};
|
|
37
|
+
clearable: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
};
|
|
34
40
|
error: {
|
|
35
41
|
type: (BooleanConstructor | StringConstructor)[];
|
|
36
42
|
};
|
|
@@ -52,6 +58,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
52
58
|
size: string;
|
|
53
59
|
modelValue: string;
|
|
54
60
|
readonly: boolean;
|
|
61
|
+
clearable: boolean;
|
|
55
62
|
focusable: boolean;
|
|
56
63
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
64
|
export default _default;
|
|
@@ -52,9 +52,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
52
52
|
onAddTag?: ((...args: any[]) => any) | undefined;
|
|
53
53
|
}>, {
|
|
54
54
|
size: string;
|
|
55
|
+
color: string;
|
|
55
56
|
closable: boolean;
|
|
56
57
|
text: string;
|
|
57
|
-
color: string;
|
|
58
58
|
isHasAddTag: boolean;
|
|
59
59
|
addingTag: boolean;
|
|
60
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -25,6 +25,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
placeholder: {
|
|
26
26
|
default: string;
|
|
27
27
|
};
|
|
28
|
+
clearable: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
28
31
|
readonly: {
|
|
29
32
|
type: BooleanConstructor;
|
|
30
33
|
};
|
|
@@ -66,6 +69,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
69
|
placeholder: {
|
|
67
70
|
default: string;
|
|
68
71
|
};
|
|
72
|
+
clearable: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
};
|
|
69
75
|
readonly: {
|
|
70
76
|
type: BooleanConstructor;
|
|
71
77
|
};
|
|
@@ -80,14 +86,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
80
86
|
maxLength: {};
|
|
81
87
|
}>> & Readonly<{}>, {
|
|
82
88
|
size: string;
|
|
89
|
+
modelValue: string;
|
|
90
|
+
readonly: boolean;
|
|
83
91
|
selected: boolean;
|
|
84
92
|
active: boolean;
|
|
85
93
|
disabled: boolean;
|
|
86
94
|
required: boolean;
|
|
87
95
|
loading: boolean;
|
|
88
|
-
modelValue: string;
|
|
89
|
-
readonly: boolean;
|
|
90
96
|
placeholder: string;
|
|
97
|
+
clearable: boolean;
|
|
91
98
|
focusable: boolean;
|
|
92
99
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
93
100
|
export default _default;
|
|
@@ -59,9 +59,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
59
59
|
onPrimaryAction?: ((...args: any[]) => any) | undefined;
|
|
60
60
|
onSecondaryAction?: ((...args: any[]) => any) | undefined;
|
|
61
61
|
}>, {
|
|
62
|
+
type: string;
|
|
62
63
|
isOpen: boolean;
|
|
63
64
|
closable: boolean;
|
|
64
|
-
type: string;
|
|
65
65
|
withBackground: boolean;
|
|
66
66
|
showIcon: boolean;
|
|
67
67
|
duration: undefined;
|
|
@@ -64,12 +64,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
64
64
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
65
|
}>, {
|
|
66
66
|
size: string;
|
|
67
|
+
modelValue: boolean;
|
|
68
|
+
readonly: boolean;
|
|
67
69
|
selected: boolean;
|
|
68
70
|
active: boolean;
|
|
69
71
|
disabled: boolean;
|
|
70
72
|
required: boolean;
|
|
71
73
|
loading: boolean;
|
|
72
|
-
modelValue: boolean;
|
|
73
|
-
readonly: boolean;
|
|
74
74
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
75
|
export default _default;
|
|
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34
34
|
};
|
|
35
35
|
}>> & Readonly<{}>, {
|
|
36
36
|
position: string;
|
|
37
|
-
arrow: boolean;
|
|
38
37
|
theme: string;
|
|
39
38
|
trigger: string;
|
|
39
|
+
arrow: boolean;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
41
|
export default _default;
|