plugin-ui-for-kzt 0.0.37 → 0.0.40
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 +2 -2
- 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/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +3 -3
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +6 -6
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +4 -4
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/BasePagination/BasePagination.vue.d.ts +1 -1
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +1 -1
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +5 -4
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +1 -1
- package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -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/package.json +1 -1
- package/src/components/BaseDropdown/BaseDropdown.vue +2 -0
- package/src/components/BaseField/BaseField.vue +126 -124
- package/src/components/BaseSelect/BaseSelect.vue +146 -137
|
@@ -40,10 +40,10 @@ 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;
|
|
45
|
-
|
|
44
|
+
closable: 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
|
-
readonly: boolean;
|
|
75
|
-
modelValue: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
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;
|
|
@@ -94,17 +94,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
94
|
};
|
|
95
95
|
}>> & Readonly<{}>, {
|
|
96
96
|
size: string;
|
|
97
|
+
type: string;
|
|
97
98
|
id: string;
|
|
98
99
|
mask: string;
|
|
99
|
-
|
|
100
|
+
modelValue: string;
|
|
101
|
+
readonly: boolean;
|
|
100
102
|
selected: boolean;
|
|
101
103
|
active: boolean;
|
|
102
104
|
disabled: boolean;
|
|
103
105
|
required: boolean;
|
|
104
106
|
loading: boolean;
|
|
105
107
|
placeholder: string;
|
|
106
|
-
readonly: boolean;
|
|
107
|
-
modelValue: string;
|
|
108
108
|
focusable: boolean;
|
|
109
109
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
110
110
|
export default _default;
|
|
@@ -116,18 +116,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
116
116
|
}>, {
|
|
117
117
|
size: string;
|
|
118
118
|
type: string;
|
|
119
|
+
modelValue: string;
|
|
120
|
+
range: boolean | Record<string, any>;
|
|
121
|
+
minDate: null;
|
|
122
|
+
maxDate: null;
|
|
123
|
+
readonly: boolean;
|
|
124
|
+
inline: boolean;
|
|
119
125
|
selected: boolean;
|
|
120
126
|
active: boolean;
|
|
121
127
|
disabled: boolean;
|
|
122
128
|
required: boolean;
|
|
123
129
|
loading: boolean;
|
|
124
130
|
placeholder: string;
|
|
125
|
-
readonly: boolean;
|
|
126
|
-
modelValue: string;
|
|
127
131
|
focusable: boolean;
|
|
128
|
-
range: boolean | Record<string, any>;
|
|
129
|
-
minDate: null;
|
|
130
|
-
maxDate: null;
|
|
131
|
-
inline: boolean;
|
|
132
132
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
133
133
|
export default _default;
|
|
@@ -92,17 +92,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
92
92
|
};
|
|
93
93
|
}>> & Readonly<{}>, {
|
|
94
94
|
size: string;
|
|
95
|
-
error: string | boolean;
|
|
96
95
|
type: string;
|
|
96
|
+
error: string | boolean;
|
|
97
|
+
modelValue: string;
|
|
98
|
+
readonly: boolean;
|
|
97
99
|
selected: boolean;
|
|
98
100
|
active: boolean;
|
|
99
101
|
disabled: boolean;
|
|
100
102
|
required: boolean;
|
|
101
103
|
loading: boolean;
|
|
102
104
|
placeholder: string;
|
|
103
|
-
readonly: boolean;
|
|
104
|
-
modelValue: string;
|
|
105
|
-
focusable: boolean;
|
|
106
105
|
options: undefined;
|
|
106
|
+
focusable: boolean;
|
|
107
107
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
108
108
|
export default _default;
|
|
@@ -87,14 +87,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
87
|
}>, {
|
|
88
88
|
size: string;
|
|
89
89
|
type: string;
|
|
90
|
+
modelValue: string;
|
|
91
|
+
readonly: boolean;
|
|
90
92
|
selected: boolean;
|
|
91
93
|
active: boolean;
|
|
92
94
|
disabled: boolean;
|
|
93
95
|
required: boolean;
|
|
94
96
|
loading: boolean;
|
|
95
97
|
placeholder: string;
|
|
96
|
-
readonly: boolean;
|
|
97
|
-
modelValue: string;
|
|
98
98
|
focusable: boolean;
|
|
99
99
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
100
100
|
export default _default;
|
|
@@ -85,14 +85,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
85
85
|
}>> & Readonly<{}>, {
|
|
86
86
|
size: string;
|
|
87
87
|
type: string;
|
|
88
|
+
modelValue: string;
|
|
89
|
+
readonly: boolean;
|
|
88
90
|
selected: boolean;
|
|
89
91
|
active: boolean;
|
|
90
92
|
disabled: boolean;
|
|
91
93
|
required: boolean;
|
|
92
94
|
loading: boolean;
|
|
93
95
|
placeholder: string;
|
|
94
|
-
readonly: boolean;
|
|
95
|
-
modelValue: string;
|
|
96
96
|
focusable: boolean;
|
|
97
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
98
|
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
|
-
readonly: boolean;
|
|
75
|
-
modelValue: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -85,10 +85,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
85
85
|
disabled: boolean;
|
|
86
86
|
required: boolean;
|
|
87
87
|
loading: boolean;
|
|
88
|
+
options: never[];
|
|
88
89
|
outline: boolean;
|
|
89
90
|
rounded: boolean;
|
|
90
91
|
underline: boolean;
|
|
91
92
|
onlyIcon: boolean;
|
|
92
|
-
options: never[];
|
|
93
93
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
94
94
|
export default _default;
|
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
55
|
modelValue: {};
|
|
56
56
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
57
57
|
[key: string]: any;
|
|
58
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "search" | "error" | "change" | "update:modelValue" | "open")[], "clear" | "search" | "error" | "change" | "update:modelValue" | "open", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
58
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "search" | "error" | "change" | "update:modelValue" | "open" | "getSearchApi")[], "clear" | "search" | "error" | "change" | "update:modelValue" | "open" | "getSearchApi", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
59
|
id: {};
|
|
60
60
|
icon: {};
|
|
61
61
|
name: {};
|
|
@@ -112,22 +112,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
112
112
|
}>> & Readonly<{
|
|
113
113
|
onError?: ((...args: any[]) => any) | undefined;
|
|
114
114
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
115
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
116
115
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
116
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
117
117
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
118
118
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
119
|
+
onGetSearchApi?: ((...args: any[]) => any) | undefined;
|
|
119
120
|
}>, {
|
|
120
121
|
size: string;
|
|
122
|
+
readonly: boolean;
|
|
121
123
|
selected: boolean;
|
|
122
124
|
active: boolean;
|
|
123
125
|
disabled: boolean;
|
|
124
126
|
required: boolean;
|
|
125
127
|
loading: boolean;
|
|
128
|
+
options: never[];
|
|
126
129
|
outline: boolean;
|
|
127
130
|
rounded: boolean;
|
|
128
131
|
underline: boolean;
|
|
129
|
-
readonly: boolean;
|
|
130
|
-
options: never[];
|
|
131
132
|
parentWidth: boolean;
|
|
132
133
|
multiple: boolean;
|
|
133
134
|
searchable: boolean;
|
|
@@ -50,8 +50,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
50
50
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
51
51
|
}>, {
|
|
52
52
|
size: string;
|
|
53
|
-
readonly: boolean;
|
|
54
53
|
modelValue: string;
|
|
54
|
+
readonly: boolean;
|
|
55
55
|
focusable: boolean;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
57
|
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>;
|
|
@@ -80,14 +80,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
80
80
|
maxLength: {};
|
|
81
81
|
}>> & Readonly<{}>, {
|
|
82
82
|
size: string;
|
|
83
|
+
modelValue: string;
|
|
84
|
+
readonly: boolean;
|
|
83
85
|
selected: boolean;
|
|
84
86
|
active: boolean;
|
|
85
87
|
disabled: boolean;
|
|
86
88
|
required: boolean;
|
|
87
89
|
loading: boolean;
|
|
88
90
|
placeholder: string;
|
|
89
|
-
readonly: boolean;
|
|
90
|
-
modelValue: string;
|
|
91
91
|
focusable: boolean;
|
|
92
92
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
93
93
|
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
|
-
readonly: boolean;
|
|
73
|
-
modelValue: 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;
|