plugin-ui-for-kzt 0.0.29 → 0.0.30
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/BaseInput/BaseInput.vue.d.ts +1 -1
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +2 -2
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +1 -1
- package/dist/components/BasePagination/BasePagination.vue.d.ts +1 -1
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +1 -1
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +5 -2
- package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
- package/dist/components/BaseToast/BaseToast.vue.d.ts +1 -1
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/index.js +1 -1
- package/example/App.vue +1 -1
- package/package.json +1 -1
- package/src/components/BaseSelect/BaseSelect.vue +9 -0
- package/src/components/BaseSelect/README.md +110 -1
|
@@ -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;
|
|
@@ -80,13 +80,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
80
80
|
};
|
|
81
81
|
}>> & Readonly<{}>, {
|
|
82
82
|
size: string;
|
|
83
|
+
color: string;
|
|
83
84
|
tag: string;
|
|
84
85
|
selected: boolean;
|
|
85
86
|
active: boolean;
|
|
86
87
|
disabled: boolean;
|
|
87
88
|
required: boolean;
|
|
88
89
|
loading: boolean;
|
|
89
|
-
color: string;
|
|
90
90
|
outline: boolean;
|
|
91
91
|
rounded: boolean;
|
|
92
92
|
underline: boolean;
|
|
@@ -94,9 +94,9 @@ 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
|
-
type: string;
|
|
100
100
|
modelValue: string;
|
|
101
101
|
readonly: boolean;
|
|
102
102
|
selected: boolean;
|
|
@@ -115,10 +115,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
115
115
|
disabled: boolean;
|
|
116
116
|
required: boolean;
|
|
117
117
|
loading: boolean;
|
|
118
|
-
placeholder: string;
|
|
119
|
-
focusable: boolean;
|
|
120
118
|
range: boolean | Record<string, any>;
|
|
121
119
|
minDate: null;
|
|
122
120
|
inline: boolean;
|
|
121
|
+
placeholder: string;
|
|
122
|
+
focusable: boolean;
|
|
123
123
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
124
|
export default _default;
|
|
@@ -86,8 +86,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
86
86
|
};
|
|
87
87
|
}>> & Readonly<{}>, {
|
|
88
88
|
size: string;
|
|
89
|
-
error: string | boolean;
|
|
90
89
|
type: string;
|
|
90
|
+
error: string | boolean;
|
|
91
91
|
modelValue: string;
|
|
92
92
|
readonly: boolean;
|
|
93
93
|
selected: boolean;
|
|
@@ -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;
|
|
@@ -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, ("error" | "change" | "update:modelValue")[], "error" | "change" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
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<{
|
|
59
59
|
id: {};
|
|
60
60
|
icon: {};
|
|
61
61
|
name: {};
|
|
@@ -113,6 +113,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
113
113
|
onError?: ((...args: any[]) => any) | undefined;
|
|
114
114
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
115
115
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
116
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
117
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
118
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
116
119
|
}>, {
|
|
117
120
|
size: string;
|
|
118
121
|
readonly: boolean;
|
|
@@ -121,10 +124,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
121
124
|
disabled: boolean;
|
|
122
125
|
required: boolean;
|
|
123
126
|
loading: boolean;
|
|
127
|
+
options: never[];
|
|
124
128
|
outline: boolean;
|
|
125
129
|
rounded: boolean;
|
|
126
130
|
underline: boolean;
|
|
127
|
-
options: never[];
|
|
128
131
|
parentWidth: boolean;
|
|
129
132
|
multiple: boolean;
|
|
130
133
|
searchable: boolean;
|
|
@@ -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>;
|
|
@@ -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;
|
|
@@ -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;
|