plugin-ui-for-kzt 0.0.66 → 0.0.68
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/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 +9 -0
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +2 -2
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +6 -6
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +3 -3
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +3 -3
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -2
- 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 +0 -4
- package/package.json +3 -3
- package/src/components/BaseBadge/BaseBadge.vue +62 -38
- package/src/components/BaseBadge/README.md +1 -1
- package/src/components/BaseChips/BaseChips.vue +23 -6
- package/src/components/BaseChips/README.md +3 -2
- package/src/types/chips.d.ts +1 -0
- package/src/types/utils.d.ts +1 -1
|
@@ -42,8 +42,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
42
42
|
size: string;
|
|
43
43
|
color: string;
|
|
44
44
|
closable: boolean;
|
|
45
|
-
arrowRightIcon: boolean;
|
|
46
45
|
hasDot: boolean;
|
|
47
46
|
arrowUpIcon: boolean;
|
|
47
|
+
arrowRightIcon: boolean;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export default _default;
|
|
@@ -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;
|
|
@@ -6,6 +6,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6
6
|
iconName: {};
|
|
7
7
|
count: {};
|
|
8
8
|
color: {};
|
|
9
|
+
multiply: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
9
13
|
size: {
|
|
10
14
|
default: string;
|
|
11
15
|
};
|
|
@@ -19,11 +23,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19
23
|
iconName: {};
|
|
20
24
|
count: {};
|
|
21
25
|
color: {};
|
|
26
|
+
multiply: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
22
30
|
size: {
|
|
23
31
|
default: string;
|
|
24
32
|
};
|
|
25
33
|
}>> & Readonly<{}>, {
|
|
26
34
|
size: string;
|
|
27
35
|
active: boolean;
|
|
36
|
+
multiply: boolean;
|
|
28
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
38
|
export default _default;
|
|
@@ -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;
|
|
@@ -105,13 +105,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
105
105
|
type: string;
|
|
106
106
|
id: string;
|
|
107
107
|
mask: string;
|
|
108
|
+
modelValue: string;
|
|
109
|
+
readonly: boolean;
|
|
108
110
|
selected: boolean;
|
|
109
111
|
active: boolean;
|
|
110
112
|
disabled: boolean;
|
|
111
113
|
required: boolean;
|
|
112
114
|
loading: boolean;
|
|
113
|
-
modelValue: string;
|
|
114
|
-
readonly: boolean;
|
|
115
115
|
placeholder: string;
|
|
116
116
|
clearable: boolean;
|
|
117
117
|
focusable: boolean;
|
|
@@ -122,19 +122,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
122
122
|
}>, {
|
|
123
123
|
size: string;
|
|
124
124
|
type: string;
|
|
125
|
+
modelValue: string;
|
|
126
|
+
range: boolean | Record<string, any>;
|
|
127
|
+
minDate: null;
|
|
128
|
+
maxDate: null;
|
|
129
|
+
readonly: boolean;
|
|
130
|
+
inline: boolean;
|
|
125
131
|
selected: boolean;
|
|
126
132
|
active: boolean;
|
|
127
133
|
disabled: boolean;
|
|
128
134
|
required: boolean;
|
|
129
135
|
loading: boolean;
|
|
130
|
-
modelValue: string;
|
|
131
|
-
readonly: boolean;
|
|
132
136
|
placeholder: string;
|
|
133
137
|
clearable: boolean;
|
|
134
138
|
focusable: boolean;
|
|
135
|
-
range: boolean | Record<string, any>;
|
|
136
|
-
minDate: null;
|
|
137
|
-
maxDate: null;
|
|
138
|
-
inline: boolean;
|
|
139
139
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
140
140
|
export default _default;
|
|
@@ -100,16 +100,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
100
|
size: string;
|
|
101
101
|
type: string;
|
|
102
102
|
error: string | boolean;
|
|
103
|
+
modelValue: string;
|
|
104
|
+
readonly: boolean;
|
|
103
105
|
selected: boolean;
|
|
104
106
|
active: boolean;
|
|
105
107
|
disabled: boolean;
|
|
106
108
|
required: boolean;
|
|
107
109
|
loading: boolean;
|
|
108
|
-
modelValue: string;
|
|
109
|
-
readonly: boolean;
|
|
110
110
|
placeholder: string;
|
|
111
111
|
clearable: boolean;
|
|
112
|
-
focusable: boolean;
|
|
113
112
|
options: undefined;
|
|
113
|
+
focusable: boolean;
|
|
114
114
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
115
115
|
export default _default;
|
|
@@ -93,13 +93,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
}>, {
|
|
94
94
|
size: string;
|
|
95
95
|
type: string;
|
|
96
|
+
modelValue: string;
|
|
97
|
+
readonly: boolean;
|
|
96
98
|
selected: boolean;
|
|
97
99
|
active: boolean;
|
|
98
100
|
disabled: boolean;
|
|
99
101
|
required: boolean;
|
|
100
102
|
loading: boolean;
|
|
101
|
-
modelValue: string;
|
|
102
|
-
readonly: boolean;
|
|
103
103
|
placeholder: string;
|
|
104
104
|
clearable: boolean;
|
|
105
105
|
focusable: boolean;
|
|
@@ -91,13 +91,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
91
91
|
}>> & Readonly<{}>, {
|
|
92
92
|
size: string;
|
|
93
93
|
type: string;
|
|
94
|
+
modelValue: string;
|
|
95
|
+
readonly: boolean;
|
|
94
96
|
selected: boolean;
|
|
95
97
|
active: boolean;
|
|
96
98
|
disabled: boolean;
|
|
97
99
|
required: boolean;
|
|
98
100
|
loading: boolean;
|
|
99
|
-
modelValue: string;
|
|
100
|
-
readonly: boolean;
|
|
101
101
|
placeholder: string;
|
|
102
102
|
clearable: boolean;
|
|
103
103
|
focusable: boolean;
|
|
@@ -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;
|
|
@@ -123,24 +123,24 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
123
123
|
}>> & Readonly<{
|
|
124
124
|
onError?: ((...args: any[]) => any) | undefined;
|
|
125
125
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
126
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
126
127
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
127
128
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
128
129
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
129
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
130
130
|
onGetSearchApi?: ((...args: any[]) => any) | undefined;
|
|
131
131
|
}>, {
|
|
132
132
|
size: string;
|
|
133
|
+
readonly: boolean;
|
|
133
134
|
selected: boolean;
|
|
134
135
|
active: boolean;
|
|
135
136
|
disabled: boolean;
|
|
136
137
|
required: boolean;
|
|
137
138
|
loading: boolean;
|
|
139
|
+
options: ICoreSelectOption[];
|
|
138
140
|
outline: boolean;
|
|
139
141
|
rounded: boolean;
|
|
140
142
|
underline: boolean;
|
|
141
|
-
readonly: boolean;
|
|
142
143
|
parentWidth: boolean;
|
|
143
|
-
options: ICoreSelectOption[];
|
|
144
144
|
multiple: boolean;
|
|
145
145
|
searchable: boolean;
|
|
146
146
|
clearOnSelect: boolean;
|
|
@@ -86,13 +86,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
86
86
|
maxLength: {};
|
|
87
87
|
}>> & Readonly<{}>, {
|
|
88
88
|
size: string;
|
|
89
|
+
modelValue: string;
|
|
90
|
+
readonly: boolean;
|
|
89
91
|
selected: boolean;
|
|
90
92
|
active: boolean;
|
|
91
93
|
disabled: boolean;
|
|
92
94
|
required: boolean;
|
|
93
95
|
loading: boolean;
|
|
94
|
-
modelValue: string;
|
|
95
|
-
readonly: boolean;
|
|
96
96
|
placeholder: string;
|
|
97
97
|
clearable: boolean;
|
|
98
98
|
focusable: boolean;
|
|
@@ -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;
|
|
@@ -33,9 +33,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
35
|
}>> & Readonly<{}>, {
|
|
36
|
+
position: string;
|
|
36
37
|
arrow: boolean;
|
|
37
38
|
theme: string;
|
|
38
|
-
position: string;
|
|
39
39
|
trigger: string;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
41
|
export default _default;
|