cleek 2.10.34 → 2.10.36
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 +27 -27
- package/dist/main.css +1 -1
- package/dist/main.es.js +3158 -3153
- package/dist/types/components/ck-chip.vue.d.ts +2 -0
- package/dist/types/components/ck-table/ck-table.vue.d.ts +1 -1
- package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +94 -39
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
12
12
|
icon?: Icon;
|
|
13
13
|
iconRight?: Icon;
|
|
14
14
|
iconPack?: IconPack;
|
|
15
|
+
clickable?: boolean;
|
|
15
16
|
group?: Align;
|
|
16
17
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
18
|
click: (event: Event) => void;
|
|
@@ -24,6 +25,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
24
25
|
icon?: Icon;
|
|
25
26
|
iconRight?: Icon;
|
|
26
27
|
iconPack?: IconPack;
|
|
28
|
+
clickable?: boolean;
|
|
27
29
|
group?: Align;
|
|
28
30
|
}>>> & Readonly<{
|
|
29
31
|
onClick?: (event: Event) => any;
|
|
@@ -189,9 +189,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
189
189
|
type: import('vue').PropType<Number>;
|
|
190
190
|
};
|
|
191
191
|
}>> & Readonly<{
|
|
192
|
-
"onUpdate:search"?: (value: string) => any;
|
|
193
192
|
onRefreshList?: (pageChange: boolean) => any;
|
|
194
193
|
"onUpdate:currentPage"?: (value: number) => any;
|
|
194
|
+
"onUpdate:search"?: (value: string) => any;
|
|
195
195
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
196
196
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
197
197
|
export default _default;
|
|
@@ -1,51 +1,106 @@
|
|
|
1
1
|
import { Layout, TableVersion } from '../../../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
required: true;
|
|
6
|
+
type: import('vue').PropType<string>;
|
|
7
|
+
};
|
|
8
|
+
hasColumnsManager: {
|
|
9
|
+
type: import('vue').PropType<boolean>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
showRefreshBtn: {
|
|
13
|
+
type: import('vue').PropType<boolean>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
hideItemsPerPage: {
|
|
17
|
+
type: import('vue').PropType<boolean>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
currentPage: {
|
|
21
|
+
type: import('vue').PropType<number>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
itemsPerPage: {
|
|
25
|
+
type: import('vue').PropType<number>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
hideHeaderActions: {
|
|
29
|
+
type: import('vue').PropType<boolean>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
listLength: {
|
|
33
|
+
type: import('vue').PropType<number>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
layout: {
|
|
37
|
+
type: import('vue').PropType<Layout>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
version: {
|
|
41
|
+
type: import('vue').PropType<TableVersion>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
14
44
|
isLoading: {
|
|
15
|
-
type:
|
|
16
|
-
|
|
45
|
+
type: import('vue').PropType<{
|
|
46
|
+
type: boolean;
|
|
47
|
+
default: undefined;
|
|
48
|
+
}>;
|
|
49
|
+
required: true;
|
|
17
50
|
};
|
|
18
|
-
}
|
|
19
|
-
"update:search": (search: string) => void;
|
|
51
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
52
|
refreshList: (pageChange: boolean) => void;
|
|
21
53
|
openColumnsManager: () => void;
|
|
22
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
54
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
55
|
+
modelValue: {
|
|
56
|
+
required: true;
|
|
57
|
+
type: import('vue').PropType<string>;
|
|
58
|
+
};
|
|
59
|
+
hasColumnsManager: {
|
|
60
|
+
type: import('vue').PropType<boolean>;
|
|
61
|
+
required: true;
|
|
62
|
+
};
|
|
63
|
+
showRefreshBtn: {
|
|
64
|
+
type: import('vue').PropType<boolean>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
hideItemsPerPage: {
|
|
68
|
+
type: import('vue').PropType<boolean>;
|
|
69
|
+
required: true;
|
|
70
|
+
};
|
|
71
|
+
currentPage: {
|
|
72
|
+
type: import('vue').PropType<number>;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
itemsPerPage: {
|
|
76
|
+
type: import('vue').PropType<number>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
hideHeaderActions: {
|
|
80
|
+
type: import('vue').PropType<boolean>;
|
|
81
|
+
required: true;
|
|
82
|
+
};
|
|
83
|
+
listLength: {
|
|
84
|
+
type: import('vue').PropType<number>;
|
|
85
|
+
required: true;
|
|
86
|
+
};
|
|
87
|
+
layout: {
|
|
88
|
+
type: import('vue').PropType<Layout>;
|
|
89
|
+
required: true;
|
|
90
|
+
};
|
|
91
|
+
version: {
|
|
92
|
+
type: import('vue').PropType<TableVersion>;
|
|
93
|
+
required: true;
|
|
94
|
+
};
|
|
33
95
|
isLoading: {
|
|
34
|
-
type:
|
|
35
|
-
|
|
96
|
+
type: import('vue').PropType<{
|
|
97
|
+
type: boolean;
|
|
98
|
+
default: undefined;
|
|
99
|
+
}>;
|
|
100
|
+
required: true;
|
|
36
101
|
};
|
|
37
|
-
}
|
|
38
|
-
"onUpdate:search"?: (search: string) => any;
|
|
102
|
+
}>> & Readonly<{
|
|
39
103
|
onRefreshList?: (pageChange: boolean) => any;
|
|
40
104
|
onOpenColumnsManager?: () => any;
|
|
41
105
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
42
106
|
export default _default;
|
|
43
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
45
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
46
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
47
|
-
} : {
|
|
48
|
-
type: import('vue').PropType<T[K]>;
|
|
49
|
-
required: true;
|
|
50
|
-
};
|
|
51
|
-
};
|