plugin-ui-for-kzt 0.0.47 → 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/BaseCalendar/BaseCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +4 -4
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +2 -2
- package/dist/components/BaseTable/BaseTable.vue.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/BaseTable/BaseTable.vue +14 -4
- package/src/types/table.d.ts +1 -0
|
@@ -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
90
|
readonly: boolean;
|
|
94
|
-
inline: boolean;
|
|
95
91
|
selected: boolean;
|
|
96
92
|
active: boolean;
|
|
97
93
|
disabled: boolean;
|
|
98
94
|
required: boolean;
|
|
99
95
|
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,16 +117,16 @@ 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;
|
|
123
120
|
readonly: boolean;
|
|
124
|
-
inline: boolean;
|
|
125
121
|
selected: boolean;
|
|
126
122
|
active: boolean;
|
|
127
123
|
disabled: boolean;
|
|
128
124
|
required: boolean;
|
|
129
125
|
loading: boolean;
|
|
126
|
+
range: boolean | Record<string, any>;
|
|
127
|
+
minDate: null;
|
|
128
|
+
maxDate: null;
|
|
129
|
+
inline: boolean;
|
|
130
130
|
placeholder: string;
|
|
131
131
|
focusable: boolean;
|
|
132
132
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -113,8 +113,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
113
113
|
}>> & Readonly<{
|
|
114
114
|
onError?: ((...args: any[]) => any) | undefined;
|
|
115
115
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
116
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
117
116
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
117
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
118
118
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
119
119
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
120
120
|
onGetSearchApi?: ((...args: any[]) => any) | undefined;
|
|
@@ -126,10 +126,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
126
126
|
disabled: boolean;
|
|
127
127
|
required: boolean;
|
|
128
128
|
loading: boolean;
|
|
129
|
-
options: ICoreSelectOption[];
|
|
130
129
|
outline: boolean;
|
|
131
130
|
rounded: boolean;
|
|
132
131
|
underline: boolean;
|
|
132
|
+
options: ICoreSelectOption[];
|
|
133
133
|
parentWidth: boolean;
|
|
134
134
|
multiple: boolean;
|
|
135
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;
|