plugin-ui-for-kzt 0.0.46 → 0.0.49
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/BaseInputCalendar/BaseInputCalendar.vue.d.ts +2 -2
- 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 +4 -3
- package/dist/components/BaseTable/BaseTable.vue.d.ts +2 -0
- 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
- package/src/components/BaseTable/BaseTable.vue +14 -4
- package/src/types/table.d.ts +1 -0
|
@@ -123,11 +123,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
123
123
|
disabled: boolean;
|
|
124
124
|
required: boolean;
|
|
125
125
|
loading: boolean;
|
|
126
|
-
placeholder: string;
|
|
127
|
-
focusable: boolean;
|
|
128
126
|
range: boolean | Record<string, any>;
|
|
129
127
|
minDate: null;
|
|
130
128
|
maxDate: null;
|
|
131
129
|
inline: boolean;
|
|
130
|
+
placeholder: string;
|
|
131
|
+
focusable: 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;
|
|
@@ -128,7 +129,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
128
129
|
outline: boolean;
|
|
129
130
|
rounded: boolean;
|
|
130
131
|
underline: boolean;
|
|
131
|
-
options:
|
|
132
|
+
options: ICoreSelectOption[];
|
|
132
133
|
parentWidth: boolean;
|
|
133
134
|
multiple: boolean;
|
|
134
135
|
searchable: boolean;
|
|
@@ -14,6 +14,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14
14
|
};
|
|
15
15
|
actions: {};
|
|
16
16
|
pagination: {};
|
|
17
|
+
totalItems: {};
|
|
17
18
|
subTable: {};
|
|
18
19
|
virtualScroll: {
|
|
19
20
|
type: BooleanConstructor;
|
|
@@ -37,6 +38,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
37
38
|
};
|
|
38
39
|
actions: {};
|
|
39
40
|
pagination: {};
|
|
41
|
+
totalItems: {};
|
|
40
42
|
subTable: {};
|
|
41
43
|
virtualScroll: {
|
|
42
44
|
type: BooleanConstructor;
|