cosey 0.6.34 → 0.7.1
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/components/components.d.ts +3 -1
- package/components/components.js +1 -0
- package/components/editor/components/select.vue.d.ts +2 -2
- package/components/editor/editor.d.ts +2 -2
- package/components/editor/index.d.ts +6 -6
- package/components/field/components/remote-select/remote-select.d.ts +1 -1
- package/components/field/field.api.d.ts +1 -1
- package/components/form/form-item.api.d.ts +1 -1
- package/components/form/index.d.ts +1 -1
- package/components/form-drawer/form-drawer.vue.d.ts +6 -6
- package/components/form-drawer/index.d.ts +17 -17
- package/components/form-list/form-list.api.d.ts +1 -1
- package/components/form-list/index.d.ts +4 -4
- package/components/form-query/form-query.d.ts +2 -2
- package/components/form-query/index.d.ts +6 -6
- package/components/image-card/image-card.d.ts +2 -2
- package/components/image-card/index.d.ts +6 -6
- package/components/index.d.ts +1 -0
- package/components/index.js +3 -1
- package/components/input-number-range/index.d.ts +5 -5
- package/components/input-number-range/input-number-range.vue.d.ts +2 -2
- package/components/remote-select/index.d.ts +45 -45
- package/components/remote-select/remote-select.api.d.ts +1 -1
- package/components/remote-select/remote-select.d.ts +16 -16
- package/components/ribbon/index.d.ts +100 -0
- package/components/ribbon/index.js +8 -0
- package/components/ribbon/ribbon.api.d.ts +34 -0
- package/components/ribbon/ribbon.api.js +28 -0
- package/components/ribbon/ribbon.d.ts +53 -0
- package/components/ribbon/ribbon.js +53 -0
- package/components/ribbon/ribbon.style.d.ts +4 -0
- package/components/ribbon/ribbon.style.js +121 -0
- package/components/snug-menu/index.d.ts +5 -5
- package/components/snug-menu/snug-menu-item.vue.js +9 -3
- package/components/snug-menu/snug-menu.vue.d.ts +2 -2
- package/components/table/index.d.ts +40 -40
- package/components/table/index.js +1 -1
- package/components/table/table-column/renderer.d.ts +1 -1
- package/components/table/table-column/table-column.api.d.ts +131 -0
- package/components/table/table-column/table-column.api.js +33 -0
- package/components/table/table-column/table-column.d.ts +100 -127
- package/components/table/table-column/table-column.js +103 -30
- package/components/table/table-column-editor/item.vue.d.ts +1 -1
- package/components/table/table-column-editor/list.vue.d.ts +1 -1
- package/components/table/table-column-editor/table-column-editor.d.ts +1 -1
- package/components/table/table-column-editor/table-column-editor.vue.d.ts +1 -1
- package/components/table/table-export/item.vue.d.ts +1 -1
- package/components/table/table-export/list.vue.d.ts +1 -1
- package/components/table/table-export/table-export.d.ts +1 -1
- package/components/table/table-export/table-export.vue.d.ts +6 -6
- package/components/table/table-query/table-query.vue.d.ts +2 -2
- package/components/table/table.d.ts +8 -8
- package/components/table/table.vue.d.ts +23 -23
- package/components/table/table.vue.js +2 -2
- package/components/table-action/item.d.ts +3 -3
- package/components/transition-group/index.d.ts +3 -3
- package/components/transition-group/transition-group.d.ts +1 -1
- package/components/upload/index.d.ts +6 -6
- package/components/upload/upload.d.ts +2 -2
- package/layout/layout-menu/layout-menu.vue.js +7 -1
- package/layout/layout-menu/style/index.js +4 -0
- package/layout/layout-user-menu/style/index.js +1 -1
- package/package.json +1 -1
- package/utils/excel/index.d.ts +1 -1
- package/utils/excel/type.d.ts +1 -1
- package/components/table/table-column/table-column.vue.d.ts +0 -104
- package/components/table/table-column/table-column.vue.js +0 -106
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { getSimpleStyleHook } from '../theme/getSimpleStyleHook.js';
|
|
2
|
+
|
|
3
|
+
var stdin_default = getSimpleStyleHook("CoRibbon", (token) => {
|
|
4
|
+
const { componentCls } = token;
|
|
5
|
+
return {
|
|
6
|
+
[`${componentCls}`]: {
|
|
7
|
+
position: "absolute",
|
|
8
|
+
overflow: "hidden",
|
|
9
|
+
pointerEvents: "none",
|
|
10
|
+
[`${componentCls}-silk`]: {
|
|
11
|
+
position: "absolute",
|
|
12
|
+
display: "flex",
|
|
13
|
+
justifyContent: "center",
|
|
14
|
+
alignItems: "center",
|
|
15
|
+
fontSize: token.fontSize,
|
|
16
|
+
textAlign: "center",
|
|
17
|
+
color: token.colorWhite,
|
|
18
|
+
textShadow: "0 1px 1px rgba(0, 0, 0, 0.1)",
|
|
19
|
+
background: "var(--bg)",
|
|
20
|
+
pointerEvents: "auto"
|
|
21
|
+
},
|
|
22
|
+
"&::before,&::after": {
|
|
23
|
+
content: '""',
|
|
24
|
+
position: "absolute",
|
|
25
|
+
display: "block",
|
|
26
|
+
border: "calc(var(--gap) / 2) solid var(--bg)",
|
|
27
|
+
filter: "grayscale(70%) brightness(0.7)"
|
|
28
|
+
},
|
|
29
|
+
[`&.is-top-left`]: {
|
|
30
|
+
top: "calc(var(--gap) * -1)",
|
|
31
|
+
left: "calc(var(--gap) * -1)",
|
|
32
|
+
[`${componentCls}-silk`]: {
|
|
33
|
+
top: 0,
|
|
34
|
+
right: 0,
|
|
35
|
+
transformOrigin: "right bottom",
|
|
36
|
+
transform: "translateY(-100%) rotate(-45deg)"
|
|
37
|
+
},
|
|
38
|
+
"&::before,&::after": {
|
|
39
|
+
borderTopColor: "transparent",
|
|
40
|
+
borderLeftColor: "transparent"
|
|
41
|
+
},
|
|
42
|
+
"&::before": {
|
|
43
|
+
top: 0,
|
|
44
|
+
right: 0
|
|
45
|
+
},
|
|
46
|
+
"&::after": {
|
|
47
|
+
bottom: 0,
|
|
48
|
+
left: 0
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
[`&.is-top-right`]: {
|
|
52
|
+
top: "calc(var(--gap) * -1)",
|
|
53
|
+
right: "calc(var(--gap) * -1)",
|
|
54
|
+
[`${componentCls}-silk`]: {
|
|
55
|
+
top: 0,
|
|
56
|
+
left: 0,
|
|
57
|
+
transformOrigin: "left bottom",
|
|
58
|
+
transform: "translateY(-100%) rotate(45deg)"
|
|
59
|
+
},
|
|
60
|
+
"&::before,&::after": {
|
|
61
|
+
borderTopColor: "transparent",
|
|
62
|
+
borderRightColor: "transparent"
|
|
63
|
+
},
|
|
64
|
+
"&::before": {
|
|
65
|
+
top: 0,
|
|
66
|
+
left: 0
|
|
67
|
+
},
|
|
68
|
+
"&::after": {
|
|
69
|
+
bottom: 0,
|
|
70
|
+
right: 0
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
[`&.is-bottom-left`]: {
|
|
74
|
+
bottom: "calc(var(--gap) * -1)",
|
|
75
|
+
left: "calc(var(--gap) * -1)",
|
|
76
|
+
[`${componentCls}-silk`]: {
|
|
77
|
+
bottom: 0,
|
|
78
|
+
right: 0,
|
|
79
|
+
transformOrigin: "top right",
|
|
80
|
+
transform: "translateY(100%) rotate(45deg)"
|
|
81
|
+
},
|
|
82
|
+
"&::before,&::after": {
|
|
83
|
+
borderBottomColor: "transparent",
|
|
84
|
+
borderLeftColor: "transparent"
|
|
85
|
+
},
|
|
86
|
+
"&::before": {
|
|
87
|
+
bottom: 0,
|
|
88
|
+
right: 0
|
|
89
|
+
},
|
|
90
|
+
"&::after": {
|
|
91
|
+
top: 0,
|
|
92
|
+
left: 0
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
[`&.is-bottom-right`]: {
|
|
96
|
+
bottom: "calc(var(--gap) * -1)",
|
|
97
|
+
right: "calc(var(--gap) * -1)",
|
|
98
|
+
[`${componentCls}-silk`]: {
|
|
99
|
+
bottom: 0,
|
|
100
|
+
left: 0,
|
|
101
|
+
transformOrigin: "left top",
|
|
102
|
+
transform: "translateY(100%) rotate(-45deg)"
|
|
103
|
+
},
|
|
104
|
+
"&::before,&::after": {
|
|
105
|
+
borderBottomColor: "transparent",
|
|
106
|
+
borderRightColor: "transparent"
|
|
107
|
+
},
|
|
108
|
+
"&::before": {
|
|
109
|
+
bottom: 0,
|
|
110
|
+
left: 0
|
|
111
|
+
},
|
|
112
|
+
"&::after": {
|
|
113
|
+
top: 0,
|
|
114
|
+
right: 0
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
};
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
export { stdin_default as default };
|
|
@@ -2,11 +2,11 @@ export * from './snug-menu';
|
|
|
2
2
|
export * from './snug-menu-item';
|
|
3
3
|
declare const _SnugMenu: {
|
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./snug-menu").SnugMenuProps> & Readonly<{
|
|
5
|
-
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
6
5
|
onChange?: ((name: string) => any) | undefined;
|
|
6
|
+
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
7
7
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
-
"update:modelValue": (name: string) => any;
|
|
9
8
|
change: (name: string) => any;
|
|
9
|
+
"update:modelValue": (name: string) => any;
|
|
10
10
|
}, import("vue").PublicProps, {
|
|
11
11
|
mode: "horizontal" | "vertical";
|
|
12
12
|
}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -17,8 +17,8 @@ declare const _SnugMenu: {
|
|
|
17
17
|
M: {};
|
|
18
18
|
Defaults: {};
|
|
19
19
|
}, Readonly<import("./snug-menu").SnugMenuProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
21
20
|
onChange?: ((name: string) => any) | undefined;
|
|
21
|
+
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
22
22
|
}>, {}, {}, {}, {}, {
|
|
23
23
|
mode: "horizontal" | "vertical";
|
|
24
24
|
}>;
|
|
@@ -26,11 +26,11 @@ declare const _SnugMenu: {
|
|
|
26
26
|
__isTeleport?: never;
|
|
27
27
|
__isSuspense?: never;
|
|
28
28
|
} & import("vue").ComponentOptionsBase<Readonly<import("./snug-menu").SnugMenuProps> & Readonly<{
|
|
29
|
-
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
30
29
|
onChange?: ((name: string) => any) | undefined;
|
|
30
|
+
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
32
|
-
"update:modelValue": (name: string) => any;
|
|
33
32
|
change: (name: string) => any;
|
|
33
|
+
"update:modelValue": (name: string) => any;
|
|
34
34
|
}, string, {
|
|
35
35
|
mode: "horizontal" | "vertical";
|
|
36
36
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { defineComponent, inject, computed, createElementBlock, openBlock, normalizeClass, unref, createBlock, createCommentVNode, createElementVNode, toDisplayString } from 'vue';
|
|
2
2
|
import { snugMenuContextSymbol } from './snug-menu.js';
|
|
3
3
|
import stdin_default$1 from '../icon/icon.vue.js';
|
|
4
|
+
import { useI18n } from 'vue-i18n';
|
|
4
5
|
import { useComponentConfig } from '../config-provider/config-provider.api.js';
|
|
5
6
|
|
|
7
|
+
const _hoisted_1 = ["title"];
|
|
6
8
|
var stdin_default = /* @__PURE__ */defineComponent({
|
|
7
9
|
...{
|
|
8
10
|
name: "CoSnugMenuItem"
|
|
@@ -32,11 +34,15 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
32
34
|
}) {
|
|
33
35
|
const props = __props;
|
|
34
36
|
const emit = __emit;
|
|
37
|
+
const {
|
|
38
|
+
t
|
|
39
|
+
} = useI18n();
|
|
35
40
|
const {
|
|
36
41
|
prefixCls
|
|
37
42
|
} = useComponentConfig("snug-menu-item", props);
|
|
38
43
|
const context = inject(snugMenuContextSymbol);
|
|
39
44
|
const isActive = computed(() => !!props.name && context.activeName === props.name);
|
|
45
|
+
const title = computed(() => t(props.title ?? ""));
|
|
40
46
|
const onClick = event => {
|
|
41
47
|
if (!props.disabled) {
|
|
42
48
|
emit("click", event);
|
|
@@ -56,9 +62,9 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
56
62
|
size: "xl",
|
|
57
63
|
class: normalizeClass([`${unref(prefixCls)}-icon`])
|
|
58
64
|
}, null, 8, ["name", "class"])) : createCommentVNode("v-if", true), createElementVNode("div", {
|
|
59
|
-
class: normalizeClass([`${unref(prefixCls)}-title`])
|
|
60
|
-
|
|
61
|
-
|
|
65
|
+
class: normalizeClass([`${unref(prefixCls)}-title`]),
|
|
66
|
+
title: title.value
|
|
67
|
+
}, toDisplayString(title.value), 11, _hoisted_1)], 2
|
|
62
68
|
/* CLASS */);
|
|
63
69
|
};
|
|
64
70
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type SnugMenuProps, type SnugMenuSlots } from './snug-menu';
|
|
2
2
|
type __VLS_Slots = SnugMenuSlots;
|
|
3
3
|
declare const __VLS_component: import("vue").DefineComponent<SnugMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
4
|
-
"update:modelValue": (name: string) => any;
|
|
5
4
|
change: (name: string) => any;
|
|
5
|
+
"update:modelValue": (name: string) => any;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<SnugMenuProps> & Readonly<{
|
|
7
|
-
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
8
7
|
onChange?: ((name: string) => any) | undefined;
|
|
8
|
+
"onUpdate:modelValue"?: ((name: string) => any) | undefined;
|
|
9
9
|
}>, {
|
|
10
10
|
mode: "horizontal" | "vertical";
|
|
11
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './table';
|
|
2
|
-
export * from './table-column/table-column';
|
|
2
|
+
export * from './table-column/table-column.api';
|
|
3
3
|
export * from './table-query/table-query';
|
|
4
4
|
export * from './useTable';
|
|
5
5
|
declare const _Table: {
|
|
@@ -12,11 +12,11 @@ declare const _Table: {
|
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
14
|
columns: {
|
|
15
|
-
type: import("vue").PropType<import("
|
|
15
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps[]>;
|
|
16
16
|
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
actionColumn: {
|
|
19
|
-
type: import("vue").PropType<import("
|
|
19
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps>;
|
|
20
20
|
};
|
|
21
21
|
pagination: {
|
|
22
22
|
type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
|
|
@@ -28,7 +28,7 @@ declare const _Table: {
|
|
|
28
28
|
formProps: {
|
|
29
29
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
30
30
|
schemes: {
|
|
31
|
-
type: import("vue").PropType<import("
|
|
31
|
+
type: import("vue").PropType<import(".").TableQueryScheme[]>;
|
|
32
32
|
default: () => never[];
|
|
33
33
|
};
|
|
34
34
|
grid: {
|
|
@@ -217,19 +217,21 @@ declare const _Table: {
|
|
|
217
217
|
};
|
|
218
218
|
emptyText: StringConstructor;
|
|
219
219
|
sumText: StringConstructor;
|
|
220
|
+
fit: {
|
|
221
|
+
type: BooleanConstructor;
|
|
222
|
+
default: boolean;
|
|
223
|
+
};
|
|
224
|
+
lazy: BooleanConstructor;
|
|
225
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
226
|
+
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
220
227
|
cellClassName: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["cellClassName"]>;
|
|
221
228
|
rowStyle: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowStyle"]>;
|
|
222
229
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
223
230
|
defaultExpandAll: BooleanConstructor;
|
|
224
|
-
lazy: BooleanConstructor;
|
|
225
231
|
indent: {
|
|
226
232
|
type: NumberConstructor;
|
|
227
233
|
default: number;
|
|
228
234
|
};
|
|
229
|
-
fit: {
|
|
230
|
-
type: BooleanConstructor;
|
|
231
|
-
default: boolean;
|
|
232
|
-
};
|
|
233
235
|
stripe: BooleanConstructor;
|
|
234
236
|
rowKey: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowKey"]>;
|
|
235
237
|
showHeader: {
|
|
@@ -264,8 +266,6 @@ declare const _Table: {
|
|
|
264
266
|
};
|
|
265
267
|
};
|
|
266
268
|
flexible: BooleanConstructor;
|
|
267
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
268
|
-
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
269
269
|
appendFilterPanelTo: StringConstructor;
|
|
270
270
|
scrollbarTabindex: {
|
|
271
271
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -319,16 +319,16 @@ declare const _Table: {
|
|
|
319
319
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
320
320
|
tableLayout: "auto" | "fixed";
|
|
321
321
|
border: boolean;
|
|
322
|
-
columns: import("
|
|
322
|
+
columns: import(".").MayBeTableColumnProps[];
|
|
323
323
|
data: any[];
|
|
324
324
|
immediate: boolean;
|
|
325
325
|
className: string;
|
|
326
326
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
327
|
+
fit: boolean;
|
|
328
|
+
lazy: boolean;
|
|
327
329
|
scrollbarAlwaysOn: boolean;
|
|
328
330
|
defaultExpandAll: boolean;
|
|
329
|
-
lazy: boolean;
|
|
330
331
|
indent: number;
|
|
331
|
-
fit: boolean;
|
|
332
332
|
stripe: boolean;
|
|
333
333
|
showHeader: boolean;
|
|
334
334
|
showSummary: boolean;
|
|
@@ -358,11 +358,11 @@ declare const _Table: {
|
|
|
358
358
|
default: boolean;
|
|
359
359
|
};
|
|
360
360
|
columns: {
|
|
361
|
-
type: import("vue").PropType<import("
|
|
361
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps[]>;
|
|
362
362
|
default: () => never[];
|
|
363
363
|
};
|
|
364
364
|
actionColumn: {
|
|
365
|
-
type: import("vue").PropType<import("
|
|
365
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps>;
|
|
366
366
|
};
|
|
367
367
|
pagination: {
|
|
368
368
|
type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
|
|
@@ -374,7 +374,7 @@ declare const _Table: {
|
|
|
374
374
|
formProps: {
|
|
375
375
|
type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
|
|
376
376
|
schemes: {
|
|
377
|
-
type: import("vue").PropType<import("
|
|
377
|
+
type: import("vue").PropType<import(".").TableQueryScheme[]>;
|
|
378
378
|
default: () => never[];
|
|
379
379
|
};
|
|
380
380
|
grid: {
|
|
@@ -563,19 +563,21 @@ declare const _Table: {
|
|
|
563
563
|
};
|
|
564
564
|
emptyText: StringConstructor;
|
|
565
565
|
sumText: StringConstructor;
|
|
566
|
+
fit: {
|
|
567
|
+
type: BooleanConstructor;
|
|
568
|
+
default: boolean;
|
|
569
|
+
};
|
|
570
|
+
lazy: BooleanConstructor;
|
|
571
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
572
|
+
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
566
573
|
cellClassName: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["cellClassName"]>;
|
|
567
574
|
rowStyle: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowStyle"]>;
|
|
568
575
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
569
576
|
defaultExpandAll: BooleanConstructor;
|
|
570
|
-
lazy: BooleanConstructor;
|
|
571
577
|
indent: {
|
|
572
578
|
type: NumberConstructor;
|
|
573
579
|
default: number;
|
|
574
580
|
};
|
|
575
|
-
fit: {
|
|
576
|
-
type: BooleanConstructor;
|
|
577
|
-
default: boolean;
|
|
578
|
-
};
|
|
579
581
|
stripe: BooleanConstructor;
|
|
580
582
|
rowKey: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowKey"]>;
|
|
581
583
|
showHeader: {
|
|
@@ -610,8 +612,6 @@ declare const _Table: {
|
|
|
610
612
|
};
|
|
611
613
|
};
|
|
612
614
|
flexible: BooleanConstructor;
|
|
613
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
614
|
-
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
615
615
|
appendFilterPanelTo: StringConstructor;
|
|
616
616
|
scrollbarTabindex: {
|
|
617
617
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -665,16 +665,16 @@ declare const _Table: {
|
|
|
665
665
|
}, {}, {}, {}, {
|
|
666
666
|
tableLayout: "auto" | "fixed";
|
|
667
667
|
border: boolean;
|
|
668
|
-
columns: import("
|
|
668
|
+
columns: import(".").MayBeTableColumnProps[];
|
|
669
669
|
data: any[];
|
|
670
670
|
immediate: boolean;
|
|
671
671
|
className: string;
|
|
672
672
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
673
|
+
fit: boolean;
|
|
674
|
+
lazy: boolean;
|
|
673
675
|
scrollbarAlwaysOn: boolean;
|
|
674
676
|
defaultExpandAll: boolean;
|
|
675
|
-
lazy: boolean;
|
|
676
677
|
indent: number;
|
|
677
|
-
fit: boolean;
|
|
678
678
|
stripe: boolean;
|
|
679
679
|
showHeader: boolean;
|
|
680
680
|
showSummary: boolean;
|
|
@@ -701,11 +701,11 @@ declare const _Table: {
|
|
|
701
701
|
default: boolean;
|
|
702
702
|
};
|
|
703
703
|
columns: {
|
|
704
|
-
type: import("vue").PropType<import("
|
|
704
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps[]>;
|
|
705
705
|
default: () => never[];
|
|
706
706
|
};
|
|
707
707
|
actionColumn: {
|
|
708
|
-
type: import("vue").PropType<import("
|
|
708
|
+
type: import("vue").PropType<import(".").MayBeTableColumnProps>;
|
|
709
709
|
};
|
|
710
710
|
pagination: {
|
|
711
711
|
type: import("vue").PropType<boolean | import("element-plus").PaginationProps>;
|
|
@@ -715,7 +715,7 @@ declare const _Table: {
|
|
|
715
715
|
type: import("vue").PropType<(expose: import("./table").TableExpose) => void>;
|
|
716
716
|
};
|
|
717
717
|
formProps: {
|
|
718
|
-
type: import("vue").PropType<import("
|
|
718
|
+
type: import("vue").PropType<import(".").TableQueryProps>;
|
|
719
719
|
};
|
|
720
720
|
transformParams: {
|
|
721
721
|
type: import("vue").PropType<(params: Record<string, any>) => any>;
|
|
@@ -764,19 +764,21 @@ declare const _Table: {
|
|
|
764
764
|
};
|
|
765
765
|
emptyText: StringConstructor;
|
|
766
766
|
sumText: StringConstructor;
|
|
767
|
+
fit: {
|
|
768
|
+
type: BooleanConstructor;
|
|
769
|
+
default: boolean;
|
|
770
|
+
};
|
|
771
|
+
lazy: BooleanConstructor;
|
|
772
|
+
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
773
|
+
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
767
774
|
cellClassName: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["cellClassName"]>;
|
|
768
775
|
rowStyle: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowStyle"]>;
|
|
769
776
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
770
777
|
defaultExpandAll: BooleanConstructor;
|
|
771
|
-
lazy: BooleanConstructor;
|
|
772
778
|
indent: {
|
|
773
779
|
type: NumberConstructor;
|
|
774
780
|
default: number;
|
|
775
781
|
};
|
|
776
|
-
fit: {
|
|
777
|
-
type: BooleanConstructor;
|
|
778
|
-
default: boolean;
|
|
779
|
-
};
|
|
780
782
|
stripe: BooleanConstructor;
|
|
781
783
|
rowKey: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["rowKey"]>;
|
|
782
784
|
showHeader: {
|
|
@@ -811,8 +813,6 @@ declare const _Table: {
|
|
|
811
813
|
};
|
|
812
814
|
};
|
|
813
815
|
flexible: BooleanConstructor;
|
|
814
|
-
showOverflowTooltip: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["showOverflowTooltip"]>;
|
|
815
|
-
tooltipFormatter: import("vue").PropType<import("element-plus/es/components/index.mjs").TableProps<any>["tooltipFormatter"]>;
|
|
816
816
|
appendFilterPanelTo: StringConstructor;
|
|
817
817
|
scrollbarTabindex: {
|
|
818
818
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -866,16 +866,16 @@ declare const _Table: {
|
|
|
866
866
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
867
867
|
tableLayout: "auto" | "fixed";
|
|
868
868
|
border: boolean;
|
|
869
|
-
columns: import("
|
|
869
|
+
columns: import(".").MayBeTableColumnProps[];
|
|
870
870
|
data: any[];
|
|
871
871
|
immediate: boolean;
|
|
872
872
|
className: string;
|
|
873
873
|
pagination: boolean | import("element-plus").PaginationProps;
|
|
874
|
+
fit: boolean;
|
|
875
|
+
lazy: boolean;
|
|
874
876
|
scrollbarAlwaysOn: boolean;
|
|
875
877
|
defaultExpandAll: boolean;
|
|
876
|
-
lazy: boolean;
|
|
877
878
|
indent: number;
|
|
878
|
-
fit: boolean;
|
|
879
879
|
stripe: boolean;
|
|
880
880
|
showHeader: boolean;
|
|
881
881
|
showSummary: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { withInstall } from '../utils.js';
|
|
2
2
|
import stdin_default$1 from './table.vue.js';
|
|
3
3
|
export { defaultTableConfig, elSlotsName, omittedTableProps, tableEmitEvents, tableEmitOnEvents, tableEmitOnProps, tableExposeKeys, tableProps } from './table.js';
|
|
4
|
-
export { tableColumnProps } from './table-column/table-column.js';
|
|
4
|
+
export { tableColumnProps } from './table-column/table-column.api.js';
|
|
5
5
|
export { createScheme, omittedTableQueryProps, tableQueryExposeKeys, tableQueryProps } from './table-query/table-query.js';
|
|
6
6
|
export { useTable } from './useTable.js';
|
|
7
7
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type LinkProps, type SwitchProps, type TableColumnCtx } from 'element-plus';
|
|
2
|
-
import { type TableColumnProps } from './table-column';
|
|
2
|
+
import { type TableColumnProps } from './table-column.api';
|
|
3
3
|
import { type LongTextProps } from '../../long-text';
|
|
4
4
|
import { type MediaCardProps } from '../../media-card';
|
|
5
5
|
import { type MediaCardGroupProps } from '../../media-card-group';
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { type VNode, type ExtractPropTypes, type PropType } from 'vue';
|
|
2
|
+
import { type TableColumnCtx } from 'element-plus';
|
|
3
|
+
import elTableColumnProps from 'element-plus/es/components/table/src/table-column/defaults.mjs';
|
|
4
|
+
import { type RendererType } from './renderer';
|
|
5
|
+
export type TableColumnPropsSlots = string | ((props: {
|
|
6
|
+
row: any;
|
|
7
|
+
column: any;
|
|
8
|
+
$index: number;
|
|
9
|
+
}) => any) | {
|
|
10
|
+
default?: string | ((props: {
|
|
11
|
+
row: any;
|
|
12
|
+
column: any;
|
|
13
|
+
$index: number;
|
|
14
|
+
}) => any);
|
|
15
|
+
header?: string | ((props: {
|
|
16
|
+
column: any;
|
|
17
|
+
$index: number;
|
|
18
|
+
}) => any);
|
|
19
|
+
filterIcon?: string | ((props: {
|
|
20
|
+
filterOpened: boolean;
|
|
21
|
+
}) => any);
|
|
22
|
+
};
|
|
23
|
+
export type TableColumnProps<T = any> = Partial<Omit<ExtractPropTypes<typeof elTableColumnProps>, 'align' | 'tooltipFormatter'>> & {
|
|
24
|
+
slots?: TableColumnPropsSlots;
|
|
25
|
+
renderer?: RendererType;
|
|
26
|
+
hidden?: boolean;
|
|
27
|
+
align?: 'left' | 'center' | 'right';
|
|
28
|
+
columns?: TableColumnProps<T>[];
|
|
29
|
+
internalSlot?: {
|
|
30
|
+
[prop: string]: any;
|
|
31
|
+
};
|
|
32
|
+
tooltip?: string;
|
|
33
|
+
format?: (cellValue: any, row: any, column: TableColumnCtx<any>, index: number) => VNode | string;
|
|
34
|
+
};
|
|
35
|
+
export type MayBeTableColumnProps = TableColumnProps | null | undefined | boolean;
|
|
36
|
+
export declare const tableColumnProps: {
|
|
37
|
+
slots: {
|
|
38
|
+
type: PropType<TableColumnProps["slots"]>;
|
|
39
|
+
};
|
|
40
|
+
renderer: {
|
|
41
|
+
type: PropType<TableColumnProps["renderer"]>;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
hidden: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
};
|
|
47
|
+
align: {
|
|
48
|
+
type: PropType<TableColumnProps["align"]>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
columns: {
|
|
52
|
+
type: PropType<TableColumnProps[]>;
|
|
53
|
+
};
|
|
54
|
+
internalSlot: {
|
|
55
|
+
type: PropType<TableColumnProps["internalSlot"]>;
|
|
56
|
+
};
|
|
57
|
+
tooltip: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
};
|
|
60
|
+
format: {
|
|
61
|
+
type: FunctionConstructor;
|
|
62
|
+
};
|
|
63
|
+
type: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
label: StringConstructor;
|
|
68
|
+
className: StringConstructor;
|
|
69
|
+
labelClassName: StringConstructor;
|
|
70
|
+
property: StringConstructor;
|
|
71
|
+
prop: StringConstructor;
|
|
72
|
+
width: {
|
|
73
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
minWidth: {
|
|
77
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
renderHeader: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["renderHeader"]>;
|
|
81
|
+
sortable: {
|
|
82
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
sortMethod: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["sortMethod"]>;
|
|
86
|
+
sortBy: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["sortBy"]>;
|
|
87
|
+
resizable: {
|
|
88
|
+
type: BooleanConstructor;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
columnKey: StringConstructor;
|
|
92
|
+
headerAlign: StringConstructor;
|
|
93
|
+
showOverflowTooltip: {
|
|
94
|
+
type: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["showOverflowTooltip"]>;
|
|
95
|
+
default: undefined;
|
|
96
|
+
};
|
|
97
|
+
tooltipFormatter: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["tooltipFormatter"]>;
|
|
98
|
+
fixed: (BooleanConstructor | StringConstructor)[];
|
|
99
|
+
formatter: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["formatter"]>;
|
|
100
|
+
selectable: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["selectable"]>;
|
|
101
|
+
reserveSelection: BooleanConstructor;
|
|
102
|
+
filterMethod: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["filterMethod"]>;
|
|
103
|
+
filteredValue: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["filteredValue"]>;
|
|
104
|
+
filters: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["filters"]>;
|
|
105
|
+
filterPlacement: StringConstructor;
|
|
106
|
+
filterMultiple: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
110
|
+
filterClassName: StringConstructor;
|
|
111
|
+
index: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["index"]>;
|
|
112
|
+
sortOrders: {
|
|
113
|
+
type: PropType<import("element-plus/es/components/index.mjs").TableColumnCtx<any>["sortOrders"]>;
|
|
114
|
+
default: () => (string | null)[];
|
|
115
|
+
validator: (val: import("element-plus/es/components/index.mjs").TableColumnCtx<any>["sortOrders"]) => boolean;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
export interface TableColumnSlots {
|
|
119
|
+
default?: (props: {
|
|
120
|
+
row: any;
|
|
121
|
+
column: any;
|
|
122
|
+
$index: number;
|
|
123
|
+
}) => any;
|
|
124
|
+
header?: (props: {
|
|
125
|
+
column: any;
|
|
126
|
+
$index: number;
|
|
127
|
+
}) => any;
|
|
128
|
+
'filter-icon'?: (props: {
|
|
129
|
+
filterOpened: boolean;
|
|
130
|
+
}) => any;
|
|
131
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import elTableColumnProps from 'element-plus/es/components/table/src/table-column/defaults.mjs';
|
|
2
|
+
|
|
3
|
+
const tableColumnProps = {
|
|
4
|
+
...elTableColumnProps,
|
|
5
|
+
slots: {
|
|
6
|
+
type: [String, Object, Function]
|
|
7
|
+
},
|
|
8
|
+
renderer: {
|
|
9
|
+
type: [String, Object],
|
|
10
|
+
default: "text"
|
|
11
|
+
},
|
|
12
|
+
hidden: {
|
|
13
|
+
type: Boolean
|
|
14
|
+
},
|
|
15
|
+
align: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: "left"
|
|
18
|
+
},
|
|
19
|
+
columns: {
|
|
20
|
+
type: Array
|
|
21
|
+
},
|
|
22
|
+
internalSlot: {
|
|
23
|
+
type: Object
|
|
24
|
+
},
|
|
25
|
+
tooltip: {
|
|
26
|
+
type: String
|
|
27
|
+
},
|
|
28
|
+
format: {
|
|
29
|
+
type: Function
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { tableColumnProps };
|