plugin-ui-for-kzt 0.0.46 → 0.0.47
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/BaseCalendar/BaseCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +1 -1
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +2 -7
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +5 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/BaseField/BaseField.vue +0 -2
- package/src/components/BaseSegmentedButtons/BaseSegmentedButtons.vue +0 -1
- package/src/components/BaseSelect/BaseSelect.vue +1 -1
|
@@ -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;
|
|
90
93
|
readonly: boolean;
|
|
94
|
+
inline: boolean;
|
|
91
95
|
selected: boolean;
|
|
92
96
|
active: boolean;
|
|
93
97
|
disabled: boolean;
|
|
94
98
|
required: boolean;
|
|
95
99
|
loading: 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;
|
|
@@ -117,7 +117,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
117
117
|
size: string;
|
|
118
118
|
type: string;
|
|
119
119
|
modelValue: string;
|
|
120
|
+
range: boolean | Record<string, any>;
|
|
121
|
+
minDate: null;
|
|
122
|
+
maxDate: null;
|
|
120
123
|
readonly: boolean;
|
|
124
|
+
inline: boolean;
|
|
121
125
|
selected: boolean;
|
|
122
126
|
active: boolean;
|
|
123
127
|
disabled: boolean;
|
|
@@ -125,9 +129,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
125
129
|
loading: boolean;
|
|
126
130
|
placeholder: 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;
|
|
@@ -102,7 +102,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
102
102
|
required: boolean;
|
|
103
103
|
loading: boolean;
|
|
104
104
|
placeholder: string;
|
|
105
|
-
focusable: boolean;
|
|
106
105
|
options: undefined;
|
|
106
|
+
focusable: boolean;
|
|
107
107
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
108
108
|
export default _default;
|
|
@@ -32,9 +32,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32
32
|
onlyIcon: {
|
|
33
33
|
type: BooleanConstructor;
|
|
34
34
|
};
|
|
35
|
-
options: {
|
|
36
|
-
default: () => never[];
|
|
37
|
-
};
|
|
35
|
+
options: {};
|
|
38
36
|
modelValue: {};
|
|
39
37
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
40
38
|
[key: string]: any;
|
|
@@ -72,9 +70,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
70
|
onlyIcon: {
|
|
73
71
|
type: BooleanConstructor;
|
|
74
72
|
};
|
|
75
|
-
options: {
|
|
76
|
-
default: () => never[];
|
|
77
|
-
};
|
|
73
|
+
options: {};
|
|
78
74
|
modelValue: {};
|
|
79
75
|
}>> & Readonly<{
|
|
80
76
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -89,6 +85,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
89
85
|
rounded: boolean;
|
|
90
86
|
underline: boolean;
|
|
91
87
|
onlyIcon: boolean;
|
|
92
|
-
options: never[];
|
|
93
88
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
94
89
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css';
|
|
2
|
+
import type { ICoreSelectOption } from '../../types/input';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
4
|
id: {};
|
|
4
5
|
icon: {};
|
|
@@ -10,7 +11,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10
11
|
type: BooleanConstructor;
|
|
11
12
|
};
|
|
12
13
|
options: {
|
|
13
|
-
default: () =>
|
|
14
|
+
default: () => ICoreSelectOption[];
|
|
14
15
|
};
|
|
15
16
|
parentWidth: {
|
|
16
17
|
type: BooleanConstructor;
|
|
@@ -66,7 +67,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
67
|
type: BooleanConstructor;
|
|
67
68
|
};
|
|
68
69
|
options: {
|
|
69
|
-
default: () =>
|
|
70
|
+
default: () => ICoreSelectOption[];
|
|
70
71
|
};
|
|
71
72
|
parentWidth: {
|
|
72
73
|
type: BooleanConstructor;
|
|
@@ -112,8 +113,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
112
113
|
}>> & Readonly<{
|
|
113
114
|
onError?: ((...args: any[]) => any) | undefined;
|
|
114
115
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
115
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
116
116
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
117
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
117
118
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
118
119
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
119
120
|
onGetSearchApi?: ((...args: any[]) => any) | undefined;
|
|
@@ -125,10 +126,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
125
126
|
disabled: boolean;
|
|
126
127
|
required: boolean;
|
|
127
128
|
loading: boolean;
|
|
129
|
+
options: ICoreSelectOption[];
|
|
128
130
|
outline: boolean;
|
|
129
131
|
rounded: boolean;
|
|
130
132
|
underline: boolean;
|
|
131
|
-
options: never[];
|
|
132
133
|
parentWidth: boolean;
|
|
133
134
|
multiple: boolean;
|
|
134
135
|
searchable: boolean;
|