cosey 0.7.0 → 0.7.2
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/editor/components/select.vue.d.ts +2 -2
- package/components/editor/editor.d.ts +2 -2
- package/components/editor/editor.style.js +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-group/style/index.js +3 -3
- 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.js +1 -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/ribbon.style.js +32 -32
- 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
package/utils/excel/type.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type TableColumnProps } from '../../components
|
|
1
|
+
import { type TableColumnProps } from '../../components';
|
|
2
2
|
export type ExportBookType = 'csv' | 'txt' | 'xml' | 'html' | 'xlsx';
|
|
3
3
|
export interface ExportBookFormat {
|
|
4
4
|
type: ExportBookType;
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { type TableColumnProps } from './table-column';
|
|
2
|
-
declare const TableColumn: import("vue").DefineComponent<{
|
|
3
|
-
label?: string | undefined;
|
|
4
|
-
minWidth?: string | number | undefined;
|
|
5
|
-
width?: string | number | undefined;
|
|
6
|
-
fixed?: string | boolean | undefined;
|
|
7
|
-
type?: string | undefined;
|
|
8
|
-
filters?: import("element-plus/es/components/table/src/table-column/defaults.mjs").Filters | undefined;
|
|
9
|
-
index?: number | ((index: number) => number) | undefined;
|
|
10
|
-
formatter?: ((row: any, column: import("element-plus/es/components/index.mjs").TableColumnCtx<any>, cellValue: any, index: number) => import("vue").VNode | string) | undefined;
|
|
11
|
-
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
12
|
-
className?: string | undefined;
|
|
13
|
-
prop?: string | undefined;
|
|
14
|
-
resizable?: boolean | undefined;
|
|
15
|
-
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
16
|
-
labelClassName?: string | undefined;
|
|
17
|
-
property?: string | undefined;
|
|
18
|
-
renderHeader?: ((data: {
|
|
19
|
-
column: import("element-plus/es/components/index.mjs").TableColumnCtx<any>;
|
|
20
|
-
$index: number;
|
|
21
|
-
store: import("element-plus/es/components/table/src/store/index.mjs").Store<any>;
|
|
22
|
-
_self: any;
|
|
23
|
-
}) => import("vue").VNode) | undefined;
|
|
24
|
-
sortable?: string | boolean | undefined;
|
|
25
|
-
sortMethod?: ((a: any, b: any) => number) | undefined;
|
|
26
|
-
sortBy?: string | string[] | ((row: any, index: number, array?: any[] | undefined) => string) | undefined;
|
|
27
|
-
columnKey?: string | undefined;
|
|
28
|
-
headerAlign?: string | undefined;
|
|
29
|
-
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
30
|
-
reserveSelection?: boolean | undefined;
|
|
31
|
-
filteredValue?: string[] | undefined;
|
|
32
|
-
filterPlacement?: string | undefined;
|
|
33
|
-
filterMultiple?: boolean | undefined;
|
|
34
|
-
filterClassName?: string | undefined;
|
|
35
|
-
sortOrders?: (import("element-plus/es/components/table/src/table/defaults.mjs").TableSortOrder | null)[] | undefined;
|
|
36
|
-
slots?: import("./table-column").TableColumnPropsSlots | undefined;
|
|
37
|
-
renderer?: import("./renderer").RendererType | undefined;
|
|
38
|
-
hidden?: boolean | undefined;
|
|
39
|
-
align?: "left" | "center" | "right" | undefined;
|
|
40
|
-
columns?: TableColumnProps<any>[] | undefined;
|
|
41
|
-
internalSlot?: {
|
|
42
|
-
[prop: string]: any;
|
|
43
|
-
} | undefined;
|
|
44
|
-
tooltip?: string | undefined;
|
|
45
|
-
format?: ((cellValue: any, row: any, column: import("element-plus").TableColumnCtx<any>, index: number) => import("vue").VNode | string) | undefined;
|
|
46
|
-
}, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
47
|
-
label?: string | undefined;
|
|
48
|
-
minWidth?: string | number | undefined;
|
|
49
|
-
width?: string | number | undefined;
|
|
50
|
-
fixed?: string | boolean | undefined;
|
|
51
|
-
type?: string | undefined;
|
|
52
|
-
filters?: import("element-plus/es/components/table/src/table-column/defaults.mjs").Filters | undefined;
|
|
53
|
-
index?: number | ((index: number) => number) | undefined;
|
|
54
|
-
formatter?: ((row: any, column: import("element-plus/es/components/index.mjs").TableColumnCtx<any>, cellValue: any, index: number) => import("vue").VNode | string) | undefined;
|
|
55
|
-
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
56
|
-
className?: string | undefined;
|
|
57
|
-
prop?: string | undefined;
|
|
58
|
-
resizable?: boolean | undefined;
|
|
59
|
-
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
60
|
-
labelClassName?: string | undefined;
|
|
61
|
-
property?: string | undefined;
|
|
62
|
-
renderHeader?: ((data: {
|
|
63
|
-
column: import("element-plus/es/components/index.mjs").TableColumnCtx<any>;
|
|
64
|
-
$index: number;
|
|
65
|
-
store: import("element-plus/es/components/table/src/store/index.mjs").Store<any>;
|
|
66
|
-
_self: any;
|
|
67
|
-
}) => import("vue").VNode) | undefined;
|
|
68
|
-
sortable?: string | boolean | undefined;
|
|
69
|
-
sortMethod?: ((a: any, b: any) => number) | undefined;
|
|
70
|
-
sortBy?: string | string[] | ((row: any, index: number, array?: any[] | undefined) => string) | undefined;
|
|
71
|
-
columnKey?: string | undefined;
|
|
72
|
-
headerAlign?: string | undefined;
|
|
73
|
-
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
74
|
-
reserveSelection?: boolean | undefined;
|
|
75
|
-
filteredValue?: string[] | undefined;
|
|
76
|
-
filterPlacement?: string | undefined;
|
|
77
|
-
filterMultiple?: boolean | undefined;
|
|
78
|
-
filterClassName?: string | undefined;
|
|
79
|
-
sortOrders?: (import("element-plus/es/components/table/src/table/defaults.mjs").TableSortOrder | null)[] | undefined;
|
|
80
|
-
slots?: import("./table-column").TableColumnPropsSlots | undefined;
|
|
81
|
-
renderer?: import("./renderer").RendererType | undefined;
|
|
82
|
-
hidden?: boolean | undefined;
|
|
83
|
-
align?: "left" | "center" | "right" | undefined;
|
|
84
|
-
columns?: TableColumnProps<any>[] | undefined;
|
|
85
|
-
internalSlot?: {
|
|
86
|
-
[prop: string]: any;
|
|
87
|
-
} | undefined;
|
|
88
|
-
tooltip?: string | undefined;
|
|
89
|
-
format?: ((cellValue: any, row: any, column: import("element-plus").TableColumnCtx<any>, index: number) => import("vue").VNode | string) | undefined;
|
|
90
|
-
}> & Readonly<{}>, {
|
|
91
|
-
minWidth: string | number;
|
|
92
|
-
width: string | number;
|
|
93
|
-
hidden: boolean;
|
|
94
|
-
type: string;
|
|
95
|
-
align: "left" | "right" | "center" | undefined;
|
|
96
|
-
resizable: boolean;
|
|
97
|
-
showOverflowTooltip: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
98
|
-
sortable: string | boolean;
|
|
99
|
-
reserveSelection: boolean;
|
|
100
|
-
filterMultiple: boolean;
|
|
101
|
-
sortOrders: (import("element-plus/es/components/table/src/table/defaults.mjs").TableSortOrder | null)[];
|
|
102
|
-
renderer: import("./renderer").RendererType | undefined;
|
|
103
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
104
|
-
export default TableColumn;
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
import { defineComponent, computed, createVNode, Fragment } from 'vue';
|
|
2
|
-
import { tableColumnProps } from './table-column.js';
|
|
3
|
-
import { renderer, mapRendererColumnProps } from './renderer.js';
|
|
4
|
-
import { ElTableColumn, ElTooltip } from 'element-plus';
|
|
5
|
-
import classNames from 'classnames';
|
|
6
|
-
import stdin_default$1 from './table-column.style.js';
|
|
7
|
-
import stdin_default$2 from '../../icon/icon.vue.js';
|
|
8
|
-
import { useToken } from '../../theme/util/useToken.js';
|
|
9
|
-
import { isString, isPlainObject, isFunction } from '../../../utils/is.js';
|
|
10
|
-
import { useComponentConfig } from '../../config-provider/config-provider.api.js';
|
|
11
|
-
import { useLocale } from '../../../hooks/useLocale.js';
|
|
12
|
-
|
|
13
|
-
const TableColumn = defineComponent({
|
|
14
|
-
// 使用和ep一样的组件名
|
|
15
|
-
// 是为了在多级表头中瞒骗ep以便和其他 ElTableColumn 一样添加到其子组件列表
|
|
16
|
-
name: "ElTableColumn",
|
|
17
|
-
inheritAttrs: false,
|
|
18
|
-
props: tableColumnProps,
|
|
19
|
-
setup(props) {
|
|
20
|
-
const {
|
|
21
|
-
prefixCls
|
|
22
|
-
} = useComponentConfig("table-column");
|
|
23
|
-
const {
|
|
24
|
-
t
|
|
25
|
-
} = useLocale();
|
|
26
|
-
const {
|
|
27
|
-
hashId
|
|
28
|
-
} = stdin_default$1(prefixCls);
|
|
29
|
-
const {
|
|
30
|
-
token
|
|
31
|
-
} = useToken();
|
|
32
|
-
const mergedProps = computed(() => {
|
|
33
|
-
const obj = {};
|
|
34
|
-
const cls = [props.className, hashId.value, prefixCls.value];
|
|
35
|
-
for (let [key, value] of Object.entries(props)) {
|
|
36
|
-
if (value !== void 0) {
|
|
37
|
-
obj[key] = value;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
if (!obj.formatter) {
|
|
41
|
-
if (obj.format) {
|
|
42
|
-
obj.formatter = (row, column, cellValue, index) => {
|
|
43
|
-
return obj.format(cellValue, row, column, index);
|
|
44
|
-
};
|
|
45
|
-
} else {
|
|
46
|
-
obj.formatter = (row, column, cellValue, index) => {
|
|
47
|
-
return renderer({
|
|
48
|
-
cellValue,
|
|
49
|
-
row,
|
|
50
|
-
column,
|
|
51
|
-
index
|
|
52
|
-
}, obj.renderer, t);
|
|
53
|
-
};
|
|
54
|
-
const renderType = typeof obj.renderer === "object" ? obj.renderer.type : obj.renderer;
|
|
55
|
-
const renderProps = mapRendererColumnProps[renderType];
|
|
56
|
-
if (renderProps) {
|
|
57
|
-
cls.push(renderProps.className);
|
|
58
|
-
if (renderProps.minWidth && !obj.minWidth) {
|
|
59
|
-
obj.minWidth = renderProps.minWidth;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
obj.className = classNames(cls);
|
|
65
|
-
return obj;
|
|
66
|
-
});
|
|
67
|
-
const slots = computed(() => {
|
|
68
|
-
const result = {};
|
|
69
|
-
const slots2 = mergedProps.value.slots;
|
|
70
|
-
if (isString(slots2)) {
|
|
71
|
-
result.default = props.internalSlot?.[slots2];
|
|
72
|
-
} else if (isPlainObject(slots2)) {
|
|
73
|
-
for (let [key, value] of Object.entries(slots2)) {
|
|
74
|
-
result[key] = isString(value) ? props.internalSlot?.[value] : value;
|
|
75
|
-
}
|
|
76
|
-
} else if (isFunction(slots2)) {
|
|
77
|
-
result.default = slots2;
|
|
78
|
-
}
|
|
79
|
-
return result;
|
|
80
|
-
});
|
|
81
|
-
const renderLabel = () => createVNode("span", {
|
|
82
|
-
"class": `${prefixCls.value}-label`
|
|
83
|
-
}, [mergedProps.value.label]);
|
|
84
|
-
const renderTooltip = () => createVNode(Fragment, null, [createVNode(ElTooltip, {
|
|
85
|
-
"content": mergedProps.value.tooltip,
|
|
86
|
-
"placement": "top"
|
|
87
|
-
}, {
|
|
88
|
-
default: () => [createVNode(stdin_default$2, {
|
|
89
|
-
"name": "carbon:help",
|
|
90
|
-
"style": {
|
|
91
|
-
marginInlineStart: token.value.marginXXS + "px"
|
|
92
|
-
}
|
|
93
|
-
}, null)]
|
|
94
|
-
})]);
|
|
95
|
-
return () => mergedProps.value.hidden ? null : createVNode(ElTableColumn, mergedProps.value, {
|
|
96
|
-
...slots.value,
|
|
97
|
-
header: slots.value.header && mergedProps.value.tooltip ? (...args) => {
|
|
98
|
-
return [slots.value.header(...args), renderTooltip()];
|
|
99
|
-
} : slots.value.header || (mergedProps.value.tooltip ? () => [renderLabel(), renderTooltip()] : void 0),
|
|
100
|
-
default: slotProps => mergedProps.value.columns ? mergedProps.value.columns.map(column => createVNode(TableColumn, column, null)) : slots.value.default?.(slotProps)
|
|
101
|
-
});
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
|
-
var stdin_default = TableColumn;
|
|
105
|
-
|
|
106
|
-
export { stdin_default as default };
|