cleek 2.11.25 → 2.11.27
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/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +2001 -1964
- package/dist/types/components/ck-circle.vue.d.ts +2 -2
- package/dist/types/components/ck-dropdown-button.vue.d.ts +7 -9
- package/dist/types/components/ck-icon.vue.d.ts +2 -2
- package/dist/types/components/ck-input.vue.d.ts +6 -6
- package/dist/types/components/ck-radio.vue.d.ts +2 -2
- package/dist/types/components/ck-select.vue.d.ts +8 -8
- package/dist/types/components/ck-table/ck-table.vue.d.ts +81 -86
- package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +21 -25
- package/dist/types/utils/css-helpers.d.ts +3 -0
- package/package.json +85 -85
|
@@ -11,7 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
11
11
|
icon?: Icon;
|
|
12
12
|
iconPack?: IconPack;
|
|
13
13
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
-
click: (domEvent:
|
|
14
|
+
click: (domEvent: MouseEvent) => void;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
16
|
size?: Size;
|
|
17
17
|
sizeInPx?: Size;
|
|
@@ -20,7 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
20
20
|
icon?: Icon;
|
|
21
21
|
iconPack?: IconPack;
|
|
22
22
|
}>>> & Readonly<{
|
|
23
|
-
onClick?: (domEvent:
|
|
23
|
+
onClick?: (domEvent: MouseEvent) => any;
|
|
24
24
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
26
|
export default _default;
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { Align, AlignVertical, Color, Icon, IconPack, Layout, ButtonType, WidthBreaks } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
type ActionId = string | number | null;
|
|
3
|
+
export type ActionId = string | number | null;
|
|
4
4
|
export interface DropdownButtonAction {
|
|
5
5
|
id: ActionId;
|
|
6
6
|
name: string;
|
|
7
7
|
}
|
|
8
|
-
declare
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
9
|
title?: string;
|
|
13
10
|
disabled?: boolean;
|
|
14
11
|
isLoading?: boolean;
|
|
@@ -33,7 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
33
30
|
groupVertical?: AlignVertical;
|
|
34
31
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
32
|
click: (event: Event) => void;
|
|
36
|
-
action: (actionId:
|
|
33
|
+
action: (actionId: ActionId) => void;
|
|
37
34
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
38
35
|
title?: string;
|
|
39
36
|
disabled?: boolean;
|
|
@@ -59,9 +56,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
59
56
|
groupVertical?: AlignVertical;
|
|
60
57
|
}>>> & Readonly<{
|
|
61
58
|
onClick?: (event: Event) => any;
|
|
62
|
-
onAction?: (actionId:
|
|
63
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any
|
|
64
|
-
|
|
59
|
+
onAction?: (actionId: ActionId) => any;
|
|
60
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
61
|
+
default?(_: {}): any;
|
|
62
|
+
}>;
|
|
65
63
|
export default _default;
|
|
66
64
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
67
65
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -6,7 +6,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
6
6
|
color?: Color;
|
|
7
7
|
size?: Size | SizeInCSS | string;
|
|
8
8
|
flip?: "horizontal" | "vertical" | "both";
|
|
9
|
-
fixedWidth?:
|
|
9
|
+
fixedWidth?: boolean;
|
|
10
10
|
rotation?: 90 | 180 | 270 | "90" | "180" | "270";
|
|
11
11
|
spin?: boolean;
|
|
12
12
|
pulse?: boolean;
|
|
@@ -18,7 +18,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
18
18
|
color?: Color;
|
|
19
19
|
size?: Size | SizeInCSS | string;
|
|
20
20
|
flip?: "horizontal" | "vertical" | "both";
|
|
21
|
-
fixedWidth?:
|
|
21
|
+
fixedWidth?: boolean;
|
|
22
22
|
rotation?: 90 | 180 | 270 | "90" | "180" | "270";
|
|
23
23
|
spin?: boolean;
|
|
24
24
|
pulse?: boolean;
|
|
@@ -58,6 +58,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
58
58
|
max: {
|
|
59
59
|
type: import('vue').PropType<number>;
|
|
60
60
|
};
|
|
61
|
+
placeholder: {
|
|
62
|
+
type: import('vue').PropType<string>;
|
|
63
|
+
};
|
|
61
64
|
tabindex: {
|
|
62
65
|
type: import('vue').PropType<string | number>;
|
|
63
66
|
};
|
|
@@ -76,9 +79,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
79
|
readonly: {
|
|
77
80
|
type: import('vue').PropType<boolean>;
|
|
78
81
|
};
|
|
79
|
-
placeholder: {
|
|
80
|
-
type: import('vue').PropType<string>;
|
|
81
|
-
};
|
|
82
82
|
plusMinusButtons: {
|
|
83
83
|
type: import('vue').PropType<boolean>;
|
|
84
84
|
};
|
|
@@ -180,6 +180,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
180
180
|
max: {
|
|
181
181
|
type: import('vue').PropType<number>;
|
|
182
182
|
};
|
|
183
|
+
placeholder: {
|
|
184
|
+
type: import('vue').PropType<string>;
|
|
185
|
+
};
|
|
183
186
|
tabindex: {
|
|
184
187
|
type: import('vue').PropType<string | number>;
|
|
185
188
|
};
|
|
@@ -198,9 +201,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
198
201
|
readonly: {
|
|
199
202
|
type: import('vue').PropType<boolean>;
|
|
200
203
|
};
|
|
201
|
-
placeholder: {
|
|
202
|
-
type: import('vue').PropType<string>;
|
|
203
|
-
};
|
|
204
204
|
plusMinusButtons: {
|
|
205
205
|
type: import('vue').PropType<boolean>;
|
|
206
206
|
};
|
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
label?: any;
|
|
14
14
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
15
|
"update:modelValue": (value: string) => void;
|
|
16
|
-
change: (
|
|
16
|
+
change: (value: string) => void;
|
|
17
17
|
click: (event: Event) => void;
|
|
18
18
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
19
19
|
modelValue: string;
|
|
@@ -26,7 +26,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
label?: any;
|
|
27
27
|
}>>> & Readonly<{
|
|
28
28
|
onClick?: (event: Event) => any;
|
|
29
|
-
onChange?: (
|
|
29
|
+
onChange?: (value: string) => any;
|
|
30
30
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
31
31
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
32
|
export default _default;
|
|
@@ -45,6 +45,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
45
|
disabled: {
|
|
46
46
|
type: import('vue').PropType<boolean>;
|
|
47
47
|
};
|
|
48
|
+
placeholder: {
|
|
49
|
+
type: import('vue').PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
48
52
|
isLoading: {
|
|
49
53
|
type: import('vue').PropType<boolean>;
|
|
50
54
|
};
|
|
@@ -54,10 +58,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
54
58
|
labelAlign: {
|
|
55
59
|
type: import('vue').PropType<Align>;
|
|
56
60
|
};
|
|
57
|
-
placeholder: {
|
|
58
|
-
type: import('vue').PropType<string>;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
61
|
iconColor: {
|
|
62
62
|
type: import('vue').PropType<string>;
|
|
63
63
|
default: string;
|
|
@@ -169,6 +169,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
169
169
|
disabled: {
|
|
170
170
|
type: import('vue').PropType<boolean>;
|
|
171
171
|
};
|
|
172
|
+
placeholder: {
|
|
173
|
+
type: import('vue').PropType<string>;
|
|
174
|
+
default: string;
|
|
175
|
+
};
|
|
172
176
|
isLoading: {
|
|
173
177
|
type: import('vue').PropType<boolean>;
|
|
174
178
|
};
|
|
@@ -178,10 +182,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
178
182
|
labelAlign: {
|
|
179
183
|
type: import('vue').PropType<Align>;
|
|
180
184
|
};
|
|
181
|
-
placeholder: {
|
|
182
|
-
type: import('vue').PropType<string>;
|
|
183
|
-
default: string;
|
|
184
|
-
};
|
|
185
185
|
iconColor: {
|
|
186
186
|
type: import('vue').PropType<string>;
|
|
187
187
|
default: string;
|
|
@@ -21,59 +21,67 @@ declare function __VLS_template(): {
|
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
23
23
|
selectedRows: import('vue').PropType<SelectedRows>;
|
|
24
|
-
|
|
25
|
-
type: import('vue').PropType<
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
columns: {
|
|
29
|
-
type: import('vue').PropType<Columns>;
|
|
24
|
+
search: {
|
|
25
|
+
type: import('vue').PropType<string>;
|
|
30
26
|
};
|
|
31
|
-
|
|
27
|
+
darkMode: {
|
|
32
28
|
type: import('vue').PropType<boolean>;
|
|
29
|
+
default: any;
|
|
33
30
|
};
|
|
34
|
-
|
|
35
|
-
type: import('vue').PropType<
|
|
36
|
-
};
|
|
37
|
-
itemsPerPage: {
|
|
38
|
-
type: import('vue').PropType<number>;
|
|
31
|
+
layout: {
|
|
32
|
+
type: import('vue').PropType<Layout>;
|
|
39
33
|
};
|
|
40
|
-
|
|
41
|
-
type: import('vue').PropType<
|
|
34
|
+
striped: {
|
|
35
|
+
type: import('vue').PropType<boolean>;
|
|
42
36
|
};
|
|
43
|
-
|
|
44
|
-
type: import('vue').PropType<
|
|
37
|
+
version: {
|
|
38
|
+
type: import('vue').PropType<TableVersion>;
|
|
45
39
|
};
|
|
46
|
-
|
|
40
|
+
headerTextColor: {
|
|
47
41
|
type: import('vue').PropType<string>;
|
|
48
42
|
};
|
|
49
|
-
|
|
43
|
+
headerBackgroundColor: {
|
|
50
44
|
type: import('vue').PropType<string>;
|
|
51
45
|
};
|
|
52
46
|
isLoading: {
|
|
53
|
-
type: import('vue').PropType<
|
|
54
|
-
|
|
55
|
-
default: undefined;
|
|
56
|
-
}>;
|
|
47
|
+
type: import('vue').PropType<boolean>;
|
|
48
|
+
default: any;
|
|
57
49
|
};
|
|
58
|
-
|
|
50
|
+
currentPage: {
|
|
51
|
+
type: import('vue').PropType<number>;
|
|
52
|
+
};
|
|
53
|
+
itemsPerPage: {
|
|
54
|
+
type: import('vue').PropType<number>;
|
|
55
|
+
};
|
|
56
|
+
hideItemsPerPage: {
|
|
59
57
|
type: import('vue').PropType<boolean>;
|
|
60
58
|
};
|
|
59
|
+
listLength: {
|
|
60
|
+
type: import('vue').PropType<number>;
|
|
61
|
+
};
|
|
61
62
|
hideRefreshBtn: {
|
|
62
63
|
type: import('vue').PropType<boolean>;
|
|
63
64
|
};
|
|
64
|
-
|
|
65
|
+
hideHeaderActions: {
|
|
65
66
|
type: import('vue').PropType<boolean>;
|
|
66
67
|
};
|
|
67
|
-
|
|
68
|
-
type: import('vue').PropType<
|
|
69
|
-
type: boolean;
|
|
70
|
-
default: undefined;
|
|
71
|
-
}>;
|
|
68
|
+
columns: {
|
|
69
|
+
type: import('vue').PropType<Columns>;
|
|
72
70
|
};
|
|
73
|
-
|
|
71
|
+
rows: {
|
|
72
|
+
type: import('vue').PropType<any[]>;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
hasColumnsManager: {
|
|
74
76
|
type: import('vue').PropType<boolean>;
|
|
75
77
|
};
|
|
76
|
-
|
|
78
|
+
paginationAlign: {
|
|
79
|
+
type: import('vue').PropType<Align>;
|
|
80
|
+
};
|
|
81
|
+
loadingText: {
|
|
82
|
+
type: import('vue').PropType<string>;
|
|
83
|
+
};
|
|
84
|
+
notFullWidth: {
|
|
77
85
|
type: import('vue').PropType<boolean>;
|
|
78
86
|
};
|
|
79
87
|
cellPadding: {
|
|
@@ -88,9 +96,28 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
88
96
|
notOverflow: {
|
|
89
97
|
type: import('vue').PropType<boolean>;
|
|
90
98
|
};
|
|
99
|
+
mobileMaxWidth: {
|
|
100
|
+
type: import('vue').PropType<Number>;
|
|
101
|
+
};
|
|
102
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
103
|
+
refreshList: (pageChange: boolean) => void;
|
|
104
|
+
"update:search": (value: string) => void;
|
|
105
|
+
"update:currentPage": (value: number) => void;
|
|
106
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
107
|
+
selectedRows: import('vue').PropType<SelectedRows>;
|
|
108
|
+
search: {
|
|
109
|
+
type: import('vue').PropType<string>;
|
|
110
|
+
};
|
|
111
|
+
darkMode: {
|
|
112
|
+
type: import('vue').PropType<boolean>;
|
|
113
|
+
default: any;
|
|
114
|
+
};
|
|
91
115
|
layout: {
|
|
92
116
|
type: import('vue').PropType<Layout>;
|
|
93
117
|
};
|
|
118
|
+
striped: {
|
|
119
|
+
type: import('vue').PropType<boolean>;
|
|
120
|
+
};
|
|
94
121
|
version: {
|
|
95
122
|
type: import('vue').PropType<TableVersion>;
|
|
96
123
|
};
|
|
@@ -100,24 +127,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
100
127
|
headerBackgroundColor: {
|
|
101
128
|
type: import('vue').PropType<string>;
|
|
102
129
|
};
|
|
103
|
-
|
|
104
|
-
type: import('vue').PropType<Number>;
|
|
105
|
-
};
|
|
106
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
107
|
-
refreshList: (pageChange: boolean) => void;
|
|
108
|
-
"update:search": (value: string) => void;
|
|
109
|
-
"update:currentPage": (value: number) => void;
|
|
110
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
111
|
-
selectedRows: import('vue').PropType<SelectedRows>;
|
|
112
|
-
rows: {
|
|
113
|
-
type: import('vue').PropType<any[]>;
|
|
114
|
-
required: true;
|
|
115
|
-
};
|
|
116
|
-
columns: {
|
|
117
|
-
type: import('vue').PropType<Columns>;
|
|
118
|
-
};
|
|
119
|
-
hasColumnsManager: {
|
|
130
|
+
isLoading: {
|
|
120
131
|
type: import('vue').PropType<boolean>;
|
|
132
|
+
default: any;
|
|
121
133
|
};
|
|
122
134
|
currentPage: {
|
|
123
135
|
type: import('vue').PropType<number>;
|
|
@@ -125,43 +137,35 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
125
137
|
itemsPerPage: {
|
|
126
138
|
type: import('vue').PropType<number>;
|
|
127
139
|
};
|
|
140
|
+
hideItemsPerPage: {
|
|
141
|
+
type: import('vue').PropType<boolean>;
|
|
142
|
+
};
|
|
128
143
|
listLength: {
|
|
129
144
|
type: import('vue').PropType<number>;
|
|
130
145
|
};
|
|
131
|
-
|
|
132
|
-
type: import('vue').PropType<
|
|
133
|
-
};
|
|
134
|
-
search: {
|
|
135
|
-
type: import('vue').PropType<string>;
|
|
136
|
-
};
|
|
137
|
-
loadingText: {
|
|
138
|
-
type: import('vue').PropType<string>;
|
|
139
|
-
};
|
|
140
|
-
isLoading: {
|
|
141
|
-
type: import('vue').PropType<{
|
|
142
|
-
type: boolean;
|
|
143
|
-
default: undefined;
|
|
144
|
-
}>;
|
|
146
|
+
hideRefreshBtn: {
|
|
147
|
+
type: import('vue').PropType<boolean>;
|
|
145
148
|
};
|
|
146
149
|
hideHeaderActions: {
|
|
147
150
|
type: import('vue').PropType<boolean>;
|
|
148
151
|
};
|
|
149
|
-
|
|
150
|
-
type: import('vue').PropType<
|
|
152
|
+
columns: {
|
|
153
|
+
type: import('vue').PropType<Columns>;
|
|
151
154
|
};
|
|
152
|
-
|
|
155
|
+
rows: {
|
|
156
|
+
type: import('vue').PropType<any[]>;
|
|
157
|
+
required: true;
|
|
158
|
+
};
|
|
159
|
+
hasColumnsManager: {
|
|
153
160
|
type: import('vue').PropType<boolean>;
|
|
154
161
|
};
|
|
155
|
-
|
|
156
|
-
type: import('vue').PropType<
|
|
157
|
-
type: boolean;
|
|
158
|
-
default: undefined;
|
|
159
|
-
}>;
|
|
162
|
+
paginationAlign: {
|
|
163
|
+
type: import('vue').PropType<Align>;
|
|
160
164
|
};
|
|
161
|
-
|
|
162
|
-
type: import('vue').PropType<
|
|
165
|
+
loadingText: {
|
|
166
|
+
type: import('vue').PropType<string>;
|
|
163
167
|
};
|
|
164
|
-
|
|
168
|
+
notFullWidth: {
|
|
165
169
|
type: import('vue').PropType<boolean>;
|
|
166
170
|
};
|
|
167
171
|
cellPadding: {
|
|
@@ -176,18 +180,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
176
180
|
notOverflow: {
|
|
177
181
|
type: import('vue').PropType<boolean>;
|
|
178
182
|
};
|
|
179
|
-
layout: {
|
|
180
|
-
type: import('vue').PropType<Layout>;
|
|
181
|
-
};
|
|
182
|
-
version: {
|
|
183
|
-
type: import('vue').PropType<TableVersion>;
|
|
184
|
-
};
|
|
185
|
-
headerTextColor: {
|
|
186
|
-
type: import('vue').PropType<string>;
|
|
187
|
-
};
|
|
188
|
-
headerBackgroundColor: {
|
|
189
|
-
type: import('vue').PropType<string>;
|
|
190
|
-
};
|
|
191
183
|
mobileMaxWidth: {
|
|
192
184
|
type: import('vue').PropType<Number>;
|
|
193
185
|
};
|
|
@@ -195,7 +187,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
195
187
|
onRefreshList?: (pageChange: boolean) => any;
|
|
196
188
|
"onUpdate:currentPage"?: (value: number) => any;
|
|
197
189
|
"onUpdate:search"?: (value: string) => any;
|
|
198
|
-
}>, {
|
|
190
|
+
}>, {
|
|
191
|
+
darkMode: boolean;
|
|
192
|
+
isLoading: boolean;
|
|
193
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
199
194
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
200
195
|
export default _default;
|
|
201
196
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -9,14 +9,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
9
9
|
required: true;
|
|
10
10
|
type: import('vue').PropType<string>;
|
|
11
11
|
};
|
|
12
|
-
hideRefreshBtn: {
|
|
13
|
-
type: import('vue').PropType<boolean>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
hideHeaderActions: {
|
|
17
|
-
type: import('vue').PropType<boolean>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
12
|
layout: {
|
|
21
13
|
type: import('vue').PropType<Layout>;
|
|
22
14
|
required: true;
|
|
@@ -26,18 +18,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
26
18
|
required: true;
|
|
27
19
|
};
|
|
28
20
|
isLoading: {
|
|
29
|
-
type: import('vue').PropType<
|
|
30
|
-
|
|
31
|
-
default: undefined;
|
|
32
|
-
}>;
|
|
33
|
-
required: true;
|
|
34
|
-
};
|
|
35
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
|
-
refreshList: (pageChange: boolean) => void;
|
|
37
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
38
|
-
modelValue: {
|
|
39
|
-
required: true;
|
|
40
|
-
type: import('vue').PropType<string>;
|
|
21
|
+
type: import('vue').PropType<boolean>;
|
|
22
|
+
default: any;
|
|
41
23
|
};
|
|
42
24
|
hideRefreshBtn: {
|
|
43
25
|
type: import('vue').PropType<boolean>;
|
|
@@ -47,6 +29,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
47
29
|
type: import('vue').PropType<boolean>;
|
|
48
30
|
required: true;
|
|
49
31
|
};
|
|
32
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
|
+
refreshList: (pageChange: boolean) => void;
|
|
34
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
35
|
+
modelValue: {
|
|
36
|
+
required: true;
|
|
37
|
+
type: import('vue').PropType<string>;
|
|
38
|
+
};
|
|
50
39
|
layout: {
|
|
51
40
|
type: import('vue').PropType<Layout>;
|
|
52
41
|
required: true;
|
|
@@ -56,15 +45,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
56
45
|
required: true;
|
|
57
46
|
};
|
|
58
47
|
isLoading: {
|
|
59
|
-
type: import('vue').PropType<
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
48
|
+
type: import('vue').PropType<boolean>;
|
|
49
|
+
default: any;
|
|
50
|
+
};
|
|
51
|
+
hideRefreshBtn: {
|
|
52
|
+
type: import('vue').PropType<boolean>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
hideHeaderActions: {
|
|
56
|
+
type: import('vue').PropType<boolean>;
|
|
63
57
|
required: true;
|
|
64
58
|
};
|
|
65
59
|
}>> & Readonly<{
|
|
66
60
|
onRefreshList?: (pageChange: boolean) => any;
|
|
67
|
-
}>, {
|
|
61
|
+
}>, {
|
|
62
|
+
isLoading: boolean;
|
|
63
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
68
64
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
69
65
|
export default _default;
|
|
70
66
|
type __VLS_WithTemplateSlots<T, S> = T & {
|