@dazhicheng/ui 1.5.265 → 1.6.0
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/tt-area/TtArea.vue.js +1 -1
- package/dist/components/tt-drawer/src/components/DrawerHeader.vue.js +2 -2
- package/dist/components/tt-drawer/src/hooks/useResizable.js +2 -2
- package/dist/components/tt-form/src/components/FormElInput.vue.js +51 -38
- package/dist/components/tt-form/src/form-render/FormField.vue2.js +36 -36
- package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.d.ts +3 -3
- package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.js +3 -1
- package/dist/components/tt-icon/index.vue.js +2 -2
- package/dist/components/tt-loading/src/loading.vue.js +2 -2
- package/dist/components/tt-modal-form/index.vue.js +13 -12
- package/dist/components/tt-panel-select/src/components/PanelMiddle.vue.d.ts +2 -2
- package/dist/components/tt-panel-select/src/hooks/usePanelData.js +93 -86
- package/dist/components/tt-panel-select/src/index.vue.js +1 -0
- package/dist/components/tt-select/src/Select.vue.d.ts +4 -4
- package/dist/components/tt-select/src/components/Table.vue.d.ts +4 -4
- package/dist/components/tt-table/index.d.ts +523 -358
- package/dist/components/tt-table/index.js +7 -4
- package/dist/components/tt-table/src/Table.vue.d.ts +306 -216
- package/dist/components/tt-table/src/Table.vue.js +405 -618
- package/dist/components/tt-table/src/TableForm.vue.d.ts +384 -19
- package/dist/components/tt-table/src/TableForm.vue.js +219 -228
- package/dist/components/tt-table/src/components/TableAction.vue.js +108 -131
- package/dist/components/tt-table/src/components/TableButtons.js +25 -25
- package/dist/components/tt-table/src/components/TableColumnModal.vue2.js +88 -85
- package/dist/components/tt-table/src/components/TableToolbarTools.vue.d.ts +80 -0
- package/dist/components/tt-table/src/components/{TableToobalTools.vue.js → TableToolbarTools.vue.js} +29 -31
- package/dist/components/tt-table/src/components/TableToolbarTools.vue2.js +4 -0
- package/dist/components/tt-table/src/emits.js +2 -1
- package/dist/components/tt-table/src/hooks/useColumnPersistence.d.ts +19 -0
- package/dist/components/tt-table/src/hooks/useColumnPersistence.js +63 -0
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +505 -21
- package/dist/components/tt-table/src/hooks/useColumns.js +100 -245
- package/dist/components/tt-table/src/hooks/useGridProps.d.ts +36 -0
- package/dist/components/tt-table/src/hooks/useGridProps.js +121 -0
- package/dist/components/tt-table/src/hooks/useKeyboardNav.d.ts +11 -0
- package/dist/components/tt-table/src/hooks/useKeyboardNav.js +97 -0
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +14 -8
- package/dist/components/tt-table/src/hooks/usePagination.js +29 -33
- package/dist/components/tt-table/src/hooks/useQuery.d.ts +41 -0
- package/dist/components/tt-table/src/hooks/useQuery.js +147 -0
- package/dist/components/tt-table/src/hooks/useRowIdentity.d.ts +22 -0
- package/dist/components/tt-table/src/hooks/useRowIdentity.js +96 -0
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +23 -7
- package/dist/components/tt-table/src/hooks/useRowSelection.js +95 -71
- package/dist/components/tt-table/src/hooks/{useLeftRightSlot.d.ts → useSideSlot.d.ts} +25 -17
- package/dist/components/tt-table/src/hooks/useSideSlot.js +77 -0
- package/dist/components/tt-table/src/hooks/useSyncProps.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useSyncProps.js +55 -0
- package/dist/components/tt-table/src/hooks/useTableData.d.ts +71 -0
- package/dist/components/tt-table/src/hooks/useTableData.js +307 -0
- package/dist/components/tt-table/src/hooks/useTableFooter.d.ts +15 -0
- package/dist/components/tt-table/src/hooks/useTableFooter.js +46 -0
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts +10 -5
- package/dist/components/tt-table/src/hooks/useTableForm.js +55 -48
- package/dist/components/tt-table/src/hooks/useTableMethods.d.ts +165 -0
- package/dist/components/tt-table/src/hooks/useTableMethods.js +183 -0
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +24 -55
- package/dist/components/tt-table/src/props.d.ts +318 -151
- package/dist/components/tt-table/src/props.js +117 -270
- package/dist/components/tt-table/src/table-defaults.d.ts +25 -0
- package/dist/components/tt-table/src/table-defaults.js +71 -0
- package/dist/components/tt-table/src/table-mutation-events.d.ts +43 -0
- package/dist/components/tt-table/src/table-mutation-events.js +70 -0
- package/dist/components/tt-table/src/types/table.d.ts +207 -88
- package/dist/components/tt-table/src/types/tableAction.d.ts +23 -0
- package/dist/components/tt-table/src/types/tableForm.d.ts +15 -26
- package/dist/components/tt-table/src/utils/action-tab-index.d.ts +2 -0
- package/dist/components/tt-table/src/utils/action-tab-index.js +50 -0
- package/dist/components/tt-table/src/utils/context.js +25 -12
- package/dist/components/tt-table/src/utils/table-api.d.ts +136 -58
- package/dist/components/tt-table/src/utils/table-api.js +198 -165
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +11 -11
- package/dist/components/tt-table/src/utils/table-form-api.js +41 -31
- package/dist/components/types.d.ts +0 -20
- package/dist/hooks/useSetup.js +0 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.js +105 -101
- package/dist/packages/hooks/src/useDebounce.js +6 -6
- package/dist/packages/utils/src/is.js +20 -18
- package/dist/packages/utils/src/tool.js +76 -149
- package/dist/style.css +1 -1
- package/dist/utils/uppercaseInput.d.ts +29 -0
- package/dist/utils/uppercaseInput.js +16 -0
- package/package.json +3 -3
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +0 -576
- package/dist/components/tt-table/src/components/TableToobalTools.vue2.js +0 -4
- package/dist/components/tt-table/src/enum.d.ts +0 -2
- package/dist/components/tt-table/src/hooks/useCellArea.d.ts +0 -15
- package/dist/components/tt-table/src/hooks/useCellArea.js +0 -15
- package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +0 -20
- package/dist/components/tt-table/src/hooks/useCustomColumns.js +0 -65
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts +0 -29
- package/dist/components/tt-table/src/hooks/useDataSource.js +0 -232
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.js +0 -64
- package/dist/components/tt-table/src/hooks/useTable.d.ts +0 -7
- package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +0 -101
- package/dist/components/tt-table/src/hooks/useTableEvent.js +0 -197
- package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +0 -10
- package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +0 -15
- package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +0 -11
- package/dist/components/tt-table/src/hooks/useTableSlot.js +0 -17
- package/dist/components/tt-table/src/utils/filters.d.ts +0 -109
- package/dist/components/tt-table/src/utils/vxeTable.d.ts +0 -28
- package/dist/packages/utils/src/check.js +0 -10
|
@@ -1,27 +1,511 @@
|
|
|
1
1
|
import { ComputedRef, Ref } from 'vue';
|
|
2
2
|
import { VxeGridDefines, VxeGridInstance, VxeGridPropTypes, VxeTableDefines, VxeTablePropTypes } from 'vxe-table';
|
|
3
|
-
import { RowDragEvent, TtTableProps } from '../types/table';
|
|
4
3
|
import { Recordable } from '../../../../../../utils/src';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
(e: "resizable-change", data?: VxeGridDefines.ResizableChangeEventParams): void;
|
|
10
|
-
(e: "column-resizable-change", data?: VxeGridDefines.ResizableChangeEventParams): void;
|
|
11
|
-
(e: "row-dragend", data: RowDragEvent): void;
|
|
12
|
-
(e: "update:modelValue", data: Recordable[]): void;
|
|
4
|
+
import { TtTableProps } from '../types/table';
|
|
5
|
+
/** 表格列配置类型 */
|
|
6
|
+
type ColumnOptions = VxeTableDefines.ColumnOptions;
|
|
7
|
+
type ColumnsEmit = {
|
|
13
8
|
(e: "column-dragend", data: VxeGridDefines.ColumnDragendEventParams): void;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* 表格列配置
|
|
12
|
+
* @param propsRef 表格 props
|
|
13
|
+
* @param grid vxe-grid 实例
|
|
14
|
+
* @param emit 组件 emit
|
|
15
|
+
*/
|
|
16
|
+
export declare function useColumns(propsRef: ComputedRef<TtTableProps>, grid: Ref<undefined | VxeGridInstance<Recordable>>, emit: ColumnsEmit): {
|
|
17
|
+
gridColumns: ComputedRef<ColumnOptions[]>;
|
|
18
|
+
hasExpandColumn: ComputedRef<boolean>;
|
|
19
|
+
sortIconSlots: ComputedRef<string[]>;
|
|
20
|
+
validSlots: ComputedRef<string[]>;
|
|
21
|
+
setTableColumns: (columns: VxeGridPropTypes.Columns<VxeTablePropTypes.Row>) => void;
|
|
22
|
+
getTableColumns: () => ColumnOptions[] | {
|
|
23
|
+
children?: {
|
|
24
|
+
children?: /*elided*/ any[] | undefined;
|
|
25
|
+
slots?: {
|
|
26
|
+
title?: string | ((params: import("vxe-table").VxeColumnSlotTypes.TitleSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
27
|
+
sort?: string | ((params: import("vxe-table").VxeColumnSlotTypes.SortSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
28
|
+
radio?: string | ((params: import("vxe-table").VxeColumnSlotTypes.RadioSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
29
|
+
checkbox?: string | ((params: import("vxe-table").VxeColumnSlotTypes.CheckboxSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
30
|
+
default?: string | ((params: import("vxe-table").VxeColumnSlotTypes.DefaultSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
31
|
+
header?: string | ((params: import("vxe-table").VxeColumnSlotTypes.HeaderSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
32
|
+
footer?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FooterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
33
|
+
content?: string | ((params: import("vxe-table").VxeColumnSlotTypes.ContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
34
|
+
filter?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
35
|
+
floatingFilter?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FloatingFilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
36
|
+
'floating-filter'?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FloatingFilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
37
|
+
edit?: string | ((params: import("vxe-table").VxeColumnSlotTypes.EditSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
38
|
+
valid?: string | ((params: import("vxe-table").VxeColumnSlotTypes.ValidSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
39
|
+
rowDragIcon?: string | ((params: import("vxe-table").VxeTableSlotTypes.RowDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
40
|
+
'row-drag-icon'?: string | ((params: import("vxe-table").VxeTableSlotTypes.RowDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
41
|
+
columnDragIcon?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
42
|
+
'column-drag-icon'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
43
|
+
groupContent?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
44
|
+
'group-content'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
45
|
+
groupValues?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupValuesSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
46
|
+
'group-values'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupValuesSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
47
|
+
icon?: string | ((params: import("vxe-table").VxeColumnSlotTypes.IconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
48
|
+
} | undefined;
|
|
49
|
+
colId?: import("vxe-table").VxeColumnPropTypes.ColId | undefined;
|
|
50
|
+
type?: import("vxe-table").VxeColumnPropTypes.Type | undefined;
|
|
51
|
+
field?: import("vxe-table").VxeColumnPropTypes.Field | undefined;
|
|
52
|
+
title?: import("vxe-table").VxeColumnPropTypes.Title | undefined;
|
|
53
|
+
width?: import("vxe-table").VxeColumnPropTypes.Width | undefined;
|
|
54
|
+
minWidth?: import("vxe-table").VxeColumnPropTypes.MinWidth | undefined;
|
|
55
|
+
maxWidth?: import("vxe-table").VxeColumnPropTypes.MaxWidth | undefined;
|
|
56
|
+
resizable?: import("vxe-table").VxeColumnPropTypes.Resizable | undefined;
|
|
57
|
+
fixed?: import("vxe-table").VxeColumnPropTypes.Fixed;
|
|
58
|
+
align?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
59
|
+
headerAlign?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
60
|
+
footerAlign?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
61
|
+
showOverflow?: import("vxe-table").VxeColumnPropTypes.ShowOverflow | undefined;
|
|
62
|
+
showHeaderOverflow?: import("vxe-table").VxeColumnPropTypes.ShowHeaderOverflow | undefined;
|
|
63
|
+
showFooterOverflow?: import("vxe-table").VxeColumnPropTypes.ShowFooterOverflow | undefined;
|
|
64
|
+
className?: import("vxe-table").VxeColumnPropTypes.ClassName<any> | undefined;
|
|
65
|
+
headerClassName?: import("vxe-table").VxeColumnPropTypes.HeaderClassName<any> | undefined;
|
|
66
|
+
footerClassName?: import("vxe-table").VxeColumnPropTypes.FooterClassName<any> | undefined;
|
|
67
|
+
formatter?: import("vxe-table").VxeColumnPropTypes.Formatter<any> | undefined;
|
|
68
|
+
headerFormatter?: import("vxe-table").VxeColumnPropTypes.HeaderFormatter | undefined;
|
|
69
|
+
footerFormatter?: import("vxe-table").VxeColumnPropTypes.FooterFormatter<any> | undefined;
|
|
70
|
+
padding?: import("vxe-table").VxeColumnPropTypes.Padding | undefined;
|
|
71
|
+
verticalAlign?: import("vxe-table").VxeColumnPropTypes.VerticalAlign | undefined;
|
|
72
|
+
sortable?: import("vxe-table").VxeColumnPropTypes.Sortable | undefined;
|
|
73
|
+
sortBy?: import("vxe-table").VxeColumnPropTypes.SortBy<any> | undefined;
|
|
74
|
+
sortType?: import("vxe-table").VxeColumnPropTypes.SortType | undefined;
|
|
75
|
+
filters?: {
|
|
76
|
+
label?: string | number | undefined;
|
|
77
|
+
value?: any;
|
|
78
|
+
data?: any;
|
|
79
|
+
resetValue?: any;
|
|
80
|
+
checked?: boolean | undefined;
|
|
81
|
+
}[] | undefined;
|
|
82
|
+
filterMultiple?: import("vxe-table").VxeColumnPropTypes.FilterMultiple | undefined;
|
|
83
|
+
filterMethod?: import("vxe-table").VxeColumnPropTypes.FilterMethod<any> | undefined;
|
|
84
|
+
filterRender?: {
|
|
85
|
+
name?: string | undefined;
|
|
86
|
+
props?: {
|
|
87
|
+
[key: string]: any;
|
|
88
|
+
} | undefined;
|
|
89
|
+
attrs?: {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
} | undefined;
|
|
92
|
+
events?: {
|
|
93
|
+
[key: string]: (...args: any[]) => any;
|
|
94
|
+
} | undefined;
|
|
95
|
+
children?: any[] | undefined;
|
|
96
|
+
startField?: string | undefined;
|
|
97
|
+
endField?: string | undefined;
|
|
98
|
+
enabled?: boolean | undefined;
|
|
99
|
+
options?: any[] | undefined;
|
|
100
|
+
optionProps?: {
|
|
101
|
+
value?: string | undefined;
|
|
102
|
+
label?: string | undefined;
|
|
103
|
+
disabled?: string | undefined;
|
|
104
|
+
key?: string | undefined;
|
|
105
|
+
children?: string | undefined;
|
|
106
|
+
hasChild?: string | undefined;
|
|
107
|
+
parent?: string | undefined;
|
|
108
|
+
} | undefined;
|
|
109
|
+
optionGroups?: any[] | undefined;
|
|
110
|
+
optionGroupProps?: {
|
|
111
|
+
options?: string | undefined;
|
|
112
|
+
label?: string | undefined;
|
|
113
|
+
key?: string | undefined;
|
|
114
|
+
} | undefined;
|
|
115
|
+
content?: string | undefined;
|
|
116
|
+
cellType?: import("vxe-table").VxeColumnPropTypes.CellType | undefined;
|
|
117
|
+
} | undefined;
|
|
118
|
+
filterResetMethod?: import("vxe-table").VxeColumnPropTypes.FilterResetMethod | undefined;
|
|
119
|
+
filterRecoverMethod?: import("vxe-table").VxeColumnPropTypes.FilterRecoverMethod | undefined;
|
|
120
|
+
floatingFilters?: import("vxe-table").VxeColumnPropTypes.FloatingFilters | undefined;
|
|
121
|
+
rules?: {
|
|
122
|
+
required?: boolean | undefined;
|
|
123
|
+
min?: number | string | undefined;
|
|
124
|
+
max?: number | string | undefined;
|
|
125
|
+
field?: string | undefined;
|
|
126
|
+
type?: "number" | "string" | "array" | "" | null | undefined;
|
|
127
|
+
pattern?: (string | RegExp) | undefined;
|
|
128
|
+
validator?: string | ((params: VxeTableDefines.RuleValidatorParams<any>) => void | Error | Promise<void>) | undefined;
|
|
129
|
+
content?: string | undefined;
|
|
130
|
+
trigger?: "blur" | "change" | "manual" | "" | null | undefined;
|
|
131
|
+
maxWidth?: number | undefined;
|
|
132
|
+
message?: string | undefined;
|
|
133
|
+
}[] | undefined;
|
|
134
|
+
rowGroupNode?: import("vxe-table").VxeColumnPropTypes.RowGroupNode | undefined;
|
|
135
|
+
treeNode?: import("vxe-table").VxeColumnPropTypes.TreeNode | undefined;
|
|
136
|
+
dragSort?: import("vxe-table").VxeColumnPropTypes.DragSort | undefined;
|
|
137
|
+
rowResize?: import("vxe-table").VxeColumnPropTypes.RowResize | undefined;
|
|
138
|
+
visible?: import("vxe-table").VxeColumnPropTypes.Visible | undefined;
|
|
139
|
+
aggFunc?: import("vxe-table").VxeColumnPropTypes.AggFunc;
|
|
140
|
+
headerExportMethod?: import("vxe-table").VxeColumnPropTypes.HeaderExportMethod<any> | undefined;
|
|
141
|
+
exportMethod?: import("vxe-table").VxeColumnPropTypes.ExportMethod<any> | undefined;
|
|
142
|
+
footerExportMethod?: import("vxe-table").VxeColumnPropTypes.FooterExportMethod<any> | undefined;
|
|
143
|
+
titleHelp?: {
|
|
144
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
145
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
146
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
147
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
148
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
149
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
150
|
+
message?: string | undefined;
|
|
151
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
152
|
+
} | undefined;
|
|
153
|
+
titlePrefix?: {
|
|
154
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
155
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
156
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
157
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
158
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
159
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
160
|
+
message?: string | undefined;
|
|
161
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
162
|
+
} | undefined;
|
|
163
|
+
titleSuffix?: {
|
|
164
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
165
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
166
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
167
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
168
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
169
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
170
|
+
message?: string | undefined;
|
|
171
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
172
|
+
} | undefined;
|
|
173
|
+
cellType?: import("vxe-table").VxeColumnPropTypes.CellType | undefined;
|
|
174
|
+
cellRender?: {
|
|
175
|
+
name?: string | undefined;
|
|
176
|
+
props?: Record<string, any> | undefined;
|
|
177
|
+
attrs?: Record<string, any> | undefined;
|
|
178
|
+
children?: any[] | undefined;
|
|
179
|
+
enabled?: boolean | undefined;
|
|
180
|
+
startField?: string | undefined;
|
|
181
|
+
endField?: string | undefined;
|
|
182
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.DefaultSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
183
|
+
options?: any[] | undefined;
|
|
184
|
+
optionProps?: {
|
|
185
|
+
value?: string | undefined;
|
|
186
|
+
label?: string | undefined;
|
|
187
|
+
disabled?: string | undefined;
|
|
188
|
+
key?: string | undefined;
|
|
189
|
+
children?: string | undefined;
|
|
190
|
+
hasChild?: string | undefined;
|
|
191
|
+
parent?: string | undefined;
|
|
192
|
+
} | undefined;
|
|
193
|
+
optionGroups?: any[] | undefined;
|
|
194
|
+
optionGroupProps?: {
|
|
195
|
+
options?: string | undefined;
|
|
196
|
+
label?: string | undefined;
|
|
197
|
+
key?: string | undefined;
|
|
198
|
+
} | undefined;
|
|
199
|
+
content?: string | undefined;
|
|
200
|
+
showNegativeStatus?: boolean | undefined;
|
|
201
|
+
} | undefined;
|
|
202
|
+
editRender?: {
|
|
203
|
+
name?: string | undefined;
|
|
204
|
+
props?: Record<string, any> | undefined;
|
|
205
|
+
attrs?: Record<string, any> | undefined;
|
|
206
|
+
children?: any[] | undefined;
|
|
207
|
+
startField?: string | undefined;
|
|
208
|
+
endField?: string | undefined;
|
|
209
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.EditSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
210
|
+
enabled?: boolean | undefined;
|
|
211
|
+
options?: any[] | undefined;
|
|
212
|
+
optionProps?: {
|
|
213
|
+
value?: string | undefined;
|
|
214
|
+
label?: string | undefined;
|
|
215
|
+
disabled?: string | undefined;
|
|
216
|
+
key?: string | undefined;
|
|
217
|
+
children?: string | undefined;
|
|
218
|
+
hasChild?: string | undefined;
|
|
219
|
+
parent?: string | undefined;
|
|
220
|
+
} | undefined;
|
|
221
|
+
optionGroups?: any[] | undefined;
|
|
222
|
+
optionGroupProps?: {
|
|
223
|
+
options?: string | undefined;
|
|
224
|
+
label?: string | undefined;
|
|
225
|
+
key?: string | undefined;
|
|
226
|
+
} | undefined;
|
|
227
|
+
autoFocus?: boolean | string | undefined;
|
|
228
|
+
autoSelect?: boolean | undefined;
|
|
229
|
+
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
230
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
231
|
+
}) => any) | null | undefined;
|
|
232
|
+
immediate?: boolean | undefined;
|
|
233
|
+
content?: string | undefined;
|
|
234
|
+
placeholder?: string | undefined;
|
|
235
|
+
showNegativeStatus?: boolean | undefined;
|
|
236
|
+
autofocus?: string | undefined;
|
|
237
|
+
autoselect?: boolean | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
contentRender?: {
|
|
240
|
+
name?: string | undefined;
|
|
241
|
+
props?: Record<string, any> | undefined;
|
|
242
|
+
attrs?: Record<string, any> | undefined;
|
|
243
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.ContentSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
244
|
+
children?: any[] | undefined;
|
|
245
|
+
options?: any[] | undefined;
|
|
246
|
+
optionProps?: {
|
|
247
|
+
value?: string | undefined;
|
|
248
|
+
label?: string | undefined;
|
|
249
|
+
disabled?: string | undefined;
|
|
250
|
+
key?: string | undefined;
|
|
251
|
+
children?: string | undefined;
|
|
252
|
+
hasChild?: string | undefined;
|
|
253
|
+
parent?: string | undefined;
|
|
254
|
+
} | undefined;
|
|
255
|
+
optionGroups?: any[] | undefined;
|
|
256
|
+
optionGroupProps?: {
|
|
257
|
+
options?: string | undefined;
|
|
258
|
+
label?: string | undefined;
|
|
259
|
+
key?: string | undefined;
|
|
260
|
+
} | undefined;
|
|
261
|
+
} | undefined;
|
|
262
|
+
copyMethod?: import("vxe-table").VxeColumnPropTypes.CopyMethod | undefined;
|
|
263
|
+
cutMethod?: import("vxe-table").VxeColumnPropTypes.CutMethod | undefined;
|
|
264
|
+
pasteMethod?: import("vxe-table").VxeColumnPropTypes.PasteMethod | undefined;
|
|
265
|
+
params?: import("vxe-table").VxeColumnPropTypes.Params;
|
|
266
|
+
}[] | undefined;
|
|
267
|
+
slots?: {
|
|
268
|
+
title?: string | ((params: import("vxe-table").VxeColumnSlotTypes.TitleSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
269
|
+
sort?: string | ((params: import("vxe-table").VxeColumnSlotTypes.SortSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
270
|
+
radio?: string | ((params: import("vxe-table").VxeColumnSlotTypes.RadioSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
271
|
+
checkbox?: string | ((params: import("vxe-table").VxeColumnSlotTypes.CheckboxSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
272
|
+
default?: string | ((params: import("vxe-table").VxeColumnSlotTypes.DefaultSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
273
|
+
header?: string | ((params: import("vxe-table").VxeColumnSlotTypes.HeaderSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
274
|
+
footer?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FooterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
275
|
+
content?: string | ((params: import("vxe-table").VxeColumnSlotTypes.ContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
276
|
+
filter?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
277
|
+
floatingFilter?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FloatingFilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
278
|
+
'floating-filter'?: string | ((params: import("vxe-table").VxeColumnSlotTypes.FloatingFilterSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
279
|
+
edit?: string | ((params: import("vxe-table").VxeColumnSlotTypes.EditSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
280
|
+
valid?: string | ((params: import("vxe-table").VxeColumnSlotTypes.ValidSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
281
|
+
rowDragIcon?: string | ((params: import("vxe-table").VxeTableSlotTypes.RowDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
282
|
+
'row-drag-icon'?: string | ((params: import("vxe-table").VxeTableSlotTypes.RowDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
283
|
+
columnDragIcon?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
284
|
+
'column-drag-icon'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnDragIconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
285
|
+
groupContent?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
286
|
+
'group-content'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupContentSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
287
|
+
groupValues?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupValuesSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
288
|
+
'group-values'?: string | ((params: import("vxe-table").VxeTableSlotTypes.ColumnGroupValuesSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
289
|
+
icon?: string | ((params: import("vxe-table").VxeColumnSlotTypes.IconSlotParams<any>) => import('vxe-pc-ui').VxeComponentSlotType[] | import('vxe-pc-ui').VxeComponentSlotType) | null | undefined;
|
|
290
|
+
} | undefined;
|
|
291
|
+
colId?: import("vxe-table").VxeColumnPropTypes.ColId | undefined;
|
|
292
|
+
type?: import("vxe-table").VxeColumnPropTypes.Type | undefined;
|
|
293
|
+
field?: import("vxe-table").VxeColumnPropTypes.Field | undefined;
|
|
294
|
+
title?: import("vxe-table").VxeColumnPropTypes.Title | undefined;
|
|
295
|
+
width?: import("vxe-table").VxeColumnPropTypes.Width | undefined;
|
|
296
|
+
minWidth?: import("vxe-table").VxeColumnPropTypes.MinWidth | undefined;
|
|
297
|
+
maxWidth?: import("vxe-table").VxeColumnPropTypes.MaxWidth | undefined;
|
|
298
|
+
resizable?: import("vxe-table").VxeColumnPropTypes.Resizable | undefined;
|
|
299
|
+
fixed?: import("vxe-table").VxeColumnPropTypes.Fixed;
|
|
300
|
+
align?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
301
|
+
headerAlign?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
302
|
+
footerAlign?: import("vxe-table").VxeColumnPropTypes.Align;
|
|
303
|
+
showOverflow?: import("vxe-table").VxeColumnPropTypes.ShowOverflow | undefined;
|
|
304
|
+
showHeaderOverflow?: import("vxe-table").VxeColumnPropTypes.ShowHeaderOverflow | undefined;
|
|
305
|
+
showFooterOverflow?: import("vxe-table").VxeColumnPropTypes.ShowFooterOverflow | undefined;
|
|
306
|
+
className?: import("vxe-table").VxeColumnPropTypes.ClassName<any> | undefined;
|
|
307
|
+
headerClassName?: import("vxe-table").VxeColumnPropTypes.HeaderClassName<any> | undefined;
|
|
308
|
+
footerClassName?: import("vxe-table").VxeColumnPropTypes.FooterClassName<any> | undefined;
|
|
309
|
+
formatter?: import("vxe-table").VxeColumnPropTypes.Formatter<any> | undefined;
|
|
310
|
+
headerFormatter?: import("vxe-table").VxeColumnPropTypes.HeaderFormatter | undefined;
|
|
311
|
+
footerFormatter?: import("vxe-table").VxeColumnPropTypes.FooterFormatter<any> | undefined;
|
|
312
|
+
padding?: import("vxe-table").VxeColumnPropTypes.Padding | undefined;
|
|
313
|
+
verticalAlign?: import("vxe-table").VxeColumnPropTypes.VerticalAlign | undefined;
|
|
314
|
+
sortable?: import("vxe-table").VxeColumnPropTypes.Sortable | undefined;
|
|
315
|
+
sortBy?: import("vxe-table").VxeColumnPropTypes.SortBy<any> | undefined;
|
|
316
|
+
sortType?: import("vxe-table").VxeColumnPropTypes.SortType | undefined;
|
|
317
|
+
filters?: {
|
|
318
|
+
label?: string | number | undefined;
|
|
319
|
+
value?: any;
|
|
320
|
+
data?: any;
|
|
321
|
+
resetValue?: any;
|
|
322
|
+
checked?: boolean | undefined;
|
|
323
|
+
}[] | undefined;
|
|
324
|
+
filterMultiple?: import("vxe-table").VxeColumnPropTypes.FilterMultiple | undefined;
|
|
325
|
+
filterMethod?: import("vxe-table").VxeColumnPropTypes.FilterMethod<any> | undefined;
|
|
326
|
+
filterRender?: {
|
|
327
|
+
name?: string | undefined;
|
|
328
|
+
props?: {
|
|
329
|
+
[key: string]: any;
|
|
330
|
+
} | undefined;
|
|
331
|
+
attrs?: {
|
|
332
|
+
[key: string]: any;
|
|
333
|
+
} | undefined;
|
|
334
|
+
events?: {
|
|
335
|
+
[key: string]: (...args: any[]) => any;
|
|
336
|
+
} | undefined;
|
|
337
|
+
children?: any[] | undefined;
|
|
338
|
+
startField?: string | undefined;
|
|
339
|
+
endField?: string | undefined;
|
|
340
|
+
enabled?: boolean | undefined;
|
|
341
|
+
options?: any[] | undefined;
|
|
342
|
+
optionProps?: {
|
|
343
|
+
value?: string | undefined;
|
|
344
|
+
label?: string | undefined;
|
|
345
|
+
disabled?: string | undefined;
|
|
346
|
+
key?: string | undefined;
|
|
347
|
+
children?: string | undefined;
|
|
348
|
+
hasChild?: string | undefined;
|
|
349
|
+
parent?: string | undefined;
|
|
350
|
+
} | undefined;
|
|
351
|
+
optionGroups?: any[] | undefined;
|
|
352
|
+
optionGroupProps?: {
|
|
353
|
+
options?: string | undefined;
|
|
354
|
+
label?: string | undefined;
|
|
355
|
+
key?: string | undefined;
|
|
356
|
+
} | undefined;
|
|
357
|
+
content?: string | undefined;
|
|
358
|
+
cellType?: import("vxe-table").VxeColumnPropTypes.CellType | undefined;
|
|
359
|
+
} | undefined;
|
|
360
|
+
filterResetMethod?: import("vxe-table").VxeColumnPropTypes.FilterResetMethod | undefined;
|
|
361
|
+
filterRecoverMethod?: import("vxe-table").VxeColumnPropTypes.FilterRecoverMethod | undefined;
|
|
362
|
+
floatingFilters?: import("vxe-table").VxeColumnPropTypes.FloatingFilters | undefined;
|
|
363
|
+
rules?: {
|
|
364
|
+
required?: boolean | undefined;
|
|
365
|
+
min?: number | string | undefined;
|
|
366
|
+
max?: number | string | undefined;
|
|
367
|
+
field?: string | undefined;
|
|
368
|
+
type?: "number" | "string" | "array" | "" | null | undefined;
|
|
369
|
+
pattern?: (string | RegExp) | undefined;
|
|
370
|
+
validator?: string | ((params: VxeTableDefines.RuleValidatorParams<any>) => void | Error | Promise<void>) | undefined;
|
|
371
|
+
content?: string | undefined;
|
|
372
|
+
trigger?: "blur" | "change" | "manual" | "" | null | undefined;
|
|
373
|
+
maxWidth?: number | undefined;
|
|
374
|
+
message?: string | undefined;
|
|
375
|
+
}[] | undefined;
|
|
376
|
+
rowGroupNode?: import("vxe-table").VxeColumnPropTypes.RowGroupNode | undefined;
|
|
377
|
+
treeNode?: import("vxe-table").VxeColumnPropTypes.TreeNode | undefined;
|
|
378
|
+
dragSort?: import("vxe-table").VxeColumnPropTypes.DragSort | undefined;
|
|
379
|
+
rowResize?: import("vxe-table").VxeColumnPropTypes.RowResize | undefined;
|
|
380
|
+
visible?: import("vxe-table").VxeColumnPropTypes.Visible | undefined;
|
|
381
|
+
aggFunc?: import("vxe-table").VxeColumnPropTypes.AggFunc;
|
|
382
|
+
headerExportMethod?: import("vxe-table").VxeColumnPropTypes.HeaderExportMethod<any> | undefined;
|
|
383
|
+
exportMethod?: import("vxe-table").VxeColumnPropTypes.ExportMethod<any> | undefined;
|
|
384
|
+
footerExportMethod?: import("vxe-table").VxeColumnPropTypes.FooterExportMethod<any> | undefined;
|
|
385
|
+
titleHelp?: {
|
|
386
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
387
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
388
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
389
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
390
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
391
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
392
|
+
message?: string | undefined;
|
|
393
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
394
|
+
} | undefined;
|
|
395
|
+
titlePrefix?: {
|
|
396
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
397
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
398
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
399
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
400
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
401
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
402
|
+
message?: string | undefined;
|
|
403
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
404
|
+
} | undefined;
|
|
405
|
+
titleSuffix?: {
|
|
406
|
+
useHtml?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHtml | undefined;
|
|
407
|
+
content?: import("vxe-pc-ui").VxeTooltipPropTypes.Content | undefined;
|
|
408
|
+
enterable?: import("vxe-pc-ui").VxeTooltipPropTypes.Enterable | undefined;
|
|
409
|
+
theme?: import("vxe-pc-ui").VxeTooltipPropTypes.Theme | undefined;
|
|
410
|
+
icon?: import("vxe-pc-ui").VxeIconPropTypes.ClassName | undefined;
|
|
411
|
+
iconStatus?: import("vxe-pc-ui").VxeIconPropTypes.Status | undefined;
|
|
412
|
+
message?: string | undefined;
|
|
413
|
+
useHTML?: import("vxe-pc-ui").VxeTooltipPropTypes.UseHTML | undefined;
|
|
414
|
+
} | undefined;
|
|
415
|
+
cellType?: import("vxe-table").VxeColumnPropTypes.CellType | undefined;
|
|
416
|
+
cellRender?: {
|
|
417
|
+
name?: string | undefined;
|
|
418
|
+
props?: Record<string, any> | undefined;
|
|
419
|
+
attrs?: Record<string, any> | undefined;
|
|
420
|
+
children?: any[] | undefined;
|
|
421
|
+
enabled?: boolean | undefined;
|
|
422
|
+
startField?: string | undefined;
|
|
423
|
+
endField?: string | undefined;
|
|
424
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.DefaultSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
425
|
+
options?: any[] | undefined;
|
|
426
|
+
optionProps?: {
|
|
427
|
+
value?: string | undefined;
|
|
428
|
+
label?: string | undefined;
|
|
429
|
+
disabled?: string | undefined;
|
|
430
|
+
key?: string | undefined;
|
|
431
|
+
children?: string | undefined;
|
|
432
|
+
hasChild?: string | undefined;
|
|
433
|
+
parent?: string | undefined;
|
|
434
|
+
} | undefined;
|
|
435
|
+
optionGroups?: any[] | undefined;
|
|
436
|
+
optionGroupProps?: {
|
|
437
|
+
options?: string | undefined;
|
|
438
|
+
label?: string | undefined;
|
|
439
|
+
key?: string | undefined;
|
|
440
|
+
} | undefined;
|
|
441
|
+
content?: string | undefined;
|
|
442
|
+
showNegativeStatus?: boolean | undefined;
|
|
443
|
+
} | undefined;
|
|
444
|
+
editRender?: {
|
|
445
|
+
name?: string | undefined;
|
|
446
|
+
props?: Record<string, any> | undefined;
|
|
447
|
+
attrs?: Record<string, any> | undefined;
|
|
448
|
+
children?: any[] | undefined;
|
|
449
|
+
startField?: string | undefined;
|
|
450
|
+
endField?: string | undefined;
|
|
451
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.EditSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
452
|
+
enabled?: boolean | undefined;
|
|
453
|
+
options?: any[] | undefined;
|
|
454
|
+
optionProps?: {
|
|
455
|
+
value?: string | undefined;
|
|
456
|
+
label?: string | undefined;
|
|
457
|
+
disabled?: string | undefined;
|
|
458
|
+
key?: string | undefined;
|
|
459
|
+
children?: string | undefined;
|
|
460
|
+
hasChild?: string | undefined;
|
|
461
|
+
parent?: string | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
optionGroups?: any[] | undefined;
|
|
464
|
+
optionGroupProps?: {
|
|
465
|
+
options?: string | undefined;
|
|
466
|
+
label?: string | undefined;
|
|
467
|
+
key?: string | undefined;
|
|
468
|
+
} | undefined;
|
|
469
|
+
autoFocus?: boolean | string | undefined;
|
|
470
|
+
autoSelect?: boolean | undefined;
|
|
471
|
+
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
472
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
473
|
+
}) => any) | null | undefined;
|
|
474
|
+
immediate?: boolean | undefined;
|
|
475
|
+
content?: string | undefined;
|
|
476
|
+
placeholder?: string | undefined;
|
|
477
|
+
showNegativeStatus?: boolean | undefined;
|
|
478
|
+
autofocus?: string | undefined;
|
|
479
|
+
autoselect?: boolean | undefined;
|
|
480
|
+
} | undefined;
|
|
481
|
+
contentRender?: {
|
|
482
|
+
name?: string | undefined;
|
|
483
|
+
props?: Record<string, any> | undefined;
|
|
484
|
+
attrs?: Record<string, any> | undefined;
|
|
485
|
+
events?: Record<string, (cellParams: import("vxe-table").VxeColumnSlotTypes.ContentSlotParams<any>, ...args: any[]) => any> | undefined;
|
|
486
|
+
children?: any[] | undefined;
|
|
487
|
+
options?: any[] | undefined;
|
|
488
|
+
optionProps?: {
|
|
489
|
+
value?: string | undefined;
|
|
490
|
+
label?: string | undefined;
|
|
491
|
+
disabled?: string | undefined;
|
|
492
|
+
key?: string | undefined;
|
|
493
|
+
children?: string | undefined;
|
|
494
|
+
hasChild?: string | undefined;
|
|
495
|
+
parent?: string | undefined;
|
|
496
|
+
} | undefined;
|
|
497
|
+
optionGroups?: any[] | undefined;
|
|
498
|
+
optionGroupProps?: {
|
|
499
|
+
options?: string | undefined;
|
|
500
|
+
label?: string | undefined;
|
|
501
|
+
key?: string | undefined;
|
|
502
|
+
} | undefined;
|
|
503
|
+
} | undefined;
|
|
504
|
+
copyMethod?: import("vxe-table").VxeColumnPropTypes.CopyMethod | undefined;
|
|
505
|
+
cutMethod?: import("vxe-table").VxeColumnPropTypes.CutMethod | undefined;
|
|
506
|
+
pasteMethod?: import("vxe-table").VxeColumnPropTypes.PasteMethod | undefined;
|
|
507
|
+
params?: import("vxe-table").VxeColumnPropTypes.Params;
|
|
508
|
+
}[];
|
|
26
509
|
onColumnDragend: (data: VxeGridDefines.ColumnDragendEventParams) => void;
|
|
27
510
|
};
|
|
511
|
+
export {};
|