@wx-design/components 1.1.6 → 1.1.7
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/es/core/Table/index.vue.d.ts +91 -91
- package/es/index.mjs +276 -270
- package/lib/core/Table/index.vue.d.ts +91 -91
- package/lib/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VxeTableInstance, VxeColumnPropTypes, VxeTableDefines } from "vxe-table";
|
|
1
|
+
import { VxeTableInstance, VxeColumnPropTypes, VxeTableDefines, VxeTablePropTypes } from "vxe-table";
|
|
2
2
|
import type { SabTableProps } from "../../types/table";
|
|
3
3
|
declare function __VLS_template(): Partial<Record<string, (_: any) => any>> & {
|
|
4
4
|
toolbar?(_: {}): any;
|
|
@@ -15,105 +15,105 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SabTableProps>, Partial<SabTableProps>>>>, {
|
|
16
16
|
class: any;
|
|
17
17
|
name: string;
|
|
18
|
-
data:
|
|
19
|
-
size:
|
|
20
|
-
id:
|
|
21
|
-
loading:
|
|
22
|
-
showHeader:
|
|
23
|
-
showFooter:
|
|
24
|
-
height:
|
|
25
|
-
minHeight:
|
|
26
|
-
animat:
|
|
27
|
-
padding:
|
|
28
|
-
emptyText:
|
|
29
|
-
align:
|
|
30
|
-
columns: import("../../types/table").SabColumnProps<
|
|
31
|
-
cellClassName:
|
|
18
|
+
data: VxeTablePropTypes.Data<VxeTablePropTypes.Row>;
|
|
19
|
+
size: VxeTablePropTypes.Size;
|
|
20
|
+
id: VxeTablePropTypes.ID<VxeTablePropTypes.Row>;
|
|
21
|
+
loading: VxeTablePropTypes.Loading;
|
|
22
|
+
showHeader: VxeTablePropTypes.ShowHeader;
|
|
23
|
+
showFooter: VxeTablePropTypes.ShowFooter;
|
|
24
|
+
height: VxeTablePropTypes.Height;
|
|
25
|
+
minHeight: VxeTablePropTypes.MinHeight;
|
|
26
|
+
animat: VxeTablePropTypes.Animat;
|
|
27
|
+
padding: VxeTablePropTypes.Padding;
|
|
28
|
+
emptyText: VxeTablePropTypes.EmptyText;
|
|
29
|
+
align: VxeTablePropTypes.Align;
|
|
30
|
+
columns: import("../../types/table").SabColumnProps<VxeTablePropTypes.Row>[];
|
|
31
|
+
cellClassName: VxeTablePropTypes.CellClassName<VxeTablePropTypes.Row>;
|
|
32
32
|
editable: boolean;
|
|
33
|
-
border:
|
|
34
|
-
fit:
|
|
35
|
-
resizable:
|
|
36
|
-
headerAlign:
|
|
37
|
-
footerAlign:
|
|
38
|
-
showOverflow:
|
|
39
|
-
showHeaderOverflow:
|
|
40
|
-
showFooterOverflow:
|
|
41
|
-
params:
|
|
33
|
+
border: VxeTablePropTypes.Border;
|
|
34
|
+
fit: VxeTablePropTypes.Fit;
|
|
35
|
+
resizable: VxeTablePropTypes.Resizable;
|
|
36
|
+
headerAlign: VxeTablePropTypes.HeaderAlign;
|
|
37
|
+
footerAlign: VxeTablePropTypes.FooterAlign;
|
|
38
|
+
showOverflow: VxeTablePropTypes.ShowOverflow;
|
|
39
|
+
showHeaderOverflow: VxeTablePropTypes.ShowHeaderOverflow;
|
|
40
|
+
showFooterOverflow: VxeTablePropTypes.ShowFooterOverflow;
|
|
41
|
+
params: VxeTablePropTypes.Params;
|
|
42
42
|
headerFilterConfig: import("../../types/table").SabHeaderFilterProps;
|
|
43
|
-
footerMethod:
|
|
44
|
-
round:
|
|
45
|
-
maxHeight:
|
|
46
|
-
stripe:
|
|
47
|
-
footerData:
|
|
48
|
-
rowClassName:
|
|
49
|
-
headerRowClassName:
|
|
50
|
-
headerCellClassName:
|
|
51
|
-
footerRowClassName:
|
|
52
|
-
footerCellClassName:
|
|
53
|
-
cellStyle:
|
|
54
|
-
rowStyle:
|
|
55
|
-
headerCellStyle:
|
|
56
|
-
headerRowStyle:
|
|
57
|
-
footerRowStyle:
|
|
58
|
-
footerCellStyle:
|
|
59
|
-
mergeCells:
|
|
60
|
-
mergeFooterItems:
|
|
61
|
-
spanMethod:
|
|
62
|
-
footerSpanMethod:
|
|
63
|
-
keepSource:
|
|
64
|
-
autoResize:
|
|
65
|
-
syncResize:
|
|
66
|
-
columnConfig:
|
|
67
|
-
rowConfig:
|
|
68
|
-
cellConfig:
|
|
69
|
-
currentConfig:
|
|
70
|
-
dragConfig:
|
|
71
|
-
rowDragConfig:
|
|
72
|
-
columnDragConfig:
|
|
73
|
-
customConfig:
|
|
74
|
-
resizeConfig:
|
|
75
|
-
resizableConfig:
|
|
76
|
-
seqConfig:
|
|
43
|
+
footerMethod: VxeTablePropTypes.FooterMethod<VxeTablePropTypes.Row>;
|
|
44
|
+
round: VxeTablePropTypes.Round;
|
|
45
|
+
maxHeight: VxeTablePropTypes.MaxHeight;
|
|
46
|
+
stripe: VxeTablePropTypes.Stripe;
|
|
47
|
+
footerData: VxeTablePropTypes.FooterData;
|
|
48
|
+
rowClassName: VxeTablePropTypes.RowClassName<VxeTablePropTypes.Row>;
|
|
49
|
+
headerRowClassName: VxeTablePropTypes.HeaderRowClassName<VxeTablePropTypes.Row>;
|
|
50
|
+
headerCellClassName: VxeTablePropTypes.HeaderCellClassName<VxeTablePropTypes.Row>;
|
|
51
|
+
footerRowClassName: VxeTablePropTypes.FooterRowClassName<VxeTablePropTypes.Row>;
|
|
52
|
+
footerCellClassName: VxeTablePropTypes.FooterCellClassName<VxeTablePropTypes.Row>;
|
|
53
|
+
cellStyle: VxeTablePropTypes.CellStyle<VxeTablePropTypes.Row>;
|
|
54
|
+
rowStyle: VxeTablePropTypes.RowStyle<VxeTablePropTypes.Row>;
|
|
55
|
+
headerCellStyle: VxeTablePropTypes.HeaderCellStyle<VxeTablePropTypes.Row>;
|
|
56
|
+
headerRowStyle: VxeTablePropTypes.HeaderRowStyle<VxeTablePropTypes.Row>;
|
|
57
|
+
footerRowStyle: VxeTablePropTypes.FooterRowStyle<VxeTablePropTypes.Row>;
|
|
58
|
+
footerCellStyle: VxeTablePropTypes.FooterCellStyle<VxeTablePropTypes.Row>;
|
|
59
|
+
mergeCells: VxeTablePropTypes.MergeCells<VxeTablePropTypes.Row>;
|
|
60
|
+
mergeFooterItems: VxeTablePropTypes.MergeFooterItems<VxeTablePropTypes.Row>;
|
|
61
|
+
spanMethod: VxeTablePropTypes.SpanMethod<VxeTablePropTypes.Row>;
|
|
62
|
+
footerSpanMethod: VxeTablePropTypes.FooterSpanMethod<VxeTablePropTypes.Row>;
|
|
63
|
+
keepSource: VxeTablePropTypes.KeepSource;
|
|
64
|
+
autoResize: VxeTablePropTypes.AutoResize;
|
|
65
|
+
syncResize: VxeTablePropTypes.SyncResize;
|
|
66
|
+
columnConfig: VxeTablePropTypes.ColumnConfig<VxeTablePropTypes.Row>;
|
|
67
|
+
rowConfig: VxeTablePropTypes.RowConfig<VxeTablePropTypes.Row>;
|
|
68
|
+
cellConfig: VxeTablePropTypes.CellConfig<VxeTablePropTypes.Row>;
|
|
69
|
+
currentConfig: VxeTablePropTypes.CurrentConfig<VxeTablePropTypes.Row>;
|
|
70
|
+
dragConfig: VxeTablePropTypes.DragConfig<VxeTablePropTypes.Row>;
|
|
71
|
+
rowDragConfig: VxeTablePropTypes.RowDragConfig<VxeTablePropTypes.Row>;
|
|
72
|
+
columnDragConfig: VxeTablePropTypes.ColumnDragConfig<VxeTablePropTypes.Row>;
|
|
73
|
+
customConfig: VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row>;
|
|
74
|
+
resizeConfig: VxeTablePropTypes.ResizeConfig;
|
|
75
|
+
resizableConfig: VxeTablePropTypes.ResizableConfig<VxeTablePropTypes.Row>;
|
|
76
|
+
seqConfig: VxeTablePropTypes.SeqConfig<VxeTablePropTypes.Row> & {
|
|
77
77
|
clearOtherSelectedWhenClick?: boolean;
|
|
78
78
|
};
|
|
79
|
-
sortConfig:
|
|
79
|
+
sortConfig: VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
80
80
|
enableAll?: boolean;
|
|
81
81
|
};
|
|
82
|
-
filterConfig:
|
|
83
|
-
radioConfig:
|
|
84
|
-
checkboxConfig:
|
|
85
|
-
tooltipConfig:
|
|
86
|
-
exportConfig:
|
|
87
|
-
importConfig:
|
|
88
|
-
printConfig:
|
|
89
|
-
expandConfig:
|
|
90
|
-
treeConfig:
|
|
82
|
+
filterConfig: VxeTablePropTypes.FilterConfig<VxeTablePropTypes.Row>;
|
|
83
|
+
radioConfig: VxeTablePropTypes.RadioConfig<VxeTablePropTypes.Row>;
|
|
84
|
+
checkboxConfig: VxeTablePropTypes.CheckboxConfig<VxeTablePropTypes.Row>;
|
|
85
|
+
tooltipConfig: VxeTablePropTypes.TooltipConfig<VxeTablePropTypes.Row>;
|
|
86
|
+
exportConfig: VxeTablePropTypes.ExportConfig;
|
|
87
|
+
importConfig: VxeTablePropTypes.ImportConfig;
|
|
88
|
+
printConfig: VxeTablePropTypes.PrintConfig;
|
|
89
|
+
expandConfig: VxeTablePropTypes.ExpandConfig<VxeTablePropTypes.Row>;
|
|
90
|
+
treeConfig: VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
91
91
|
childTransform?: boolean;
|
|
92
92
|
};
|
|
93
|
-
menuConfig:
|
|
94
|
-
mouseConfig:
|
|
95
|
-
areaConfig:
|
|
96
|
-
fnrConfig:
|
|
97
|
-
keyboardConfig:
|
|
98
|
-
clipConfig:
|
|
99
|
-
editConfig:
|
|
100
|
-
validConfig:
|
|
101
|
-
editRules:
|
|
102
|
-
emptyRender:
|
|
103
|
-
loadingConfig:
|
|
104
|
-
scrollX:
|
|
105
|
-
scrollY:
|
|
106
|
-
highlightCurrentRow:
|
|
107
|
-
highlightHoverRow:
|
|
108
|
-
highlightCurrentColumn:
|
|
109
|
-
highlightHoverColumn:
|
|
110
|
-
highlightCell:
|
|
111
|
-
columnKey:
|
|
112
|
-
rowKey:
|
|
113
|
-
rowId:
|
|
114
|
-
delayHover:
|
|
93
|
+
menuConfig: VxeTablePropTypes.MenuConfig<VxeTablePropTypes.Row>;
|
|
94
|
+
mouseConfig: VxeTablePropTypes.MouseConfig;
|
|
95
|
+
areaConfig: VxeTablePropTypes.AreaConfig<VxeTablePropTypes.Row>;
|
|
96
|
+
fnrConfig: VxeTablePropTypes.FNRConfig<VxeTablePropTypes.Row>;
|
|
97
|
+
keyboardConfig: VxeTablePropTypes.KeyboardConfig<VxeTablePropTypes.Row>;
|
|
98
|
+
clipConfig: VxeTablePropTypes.ClipConfig<VxeTablePropTypes.Row>;
|
|
99
|
+
editConfig: VxeTablePropTypes.EditConfig<VxeTablePropTypes.Row>;
|
|
100
|
+
validConfig: VxeTablePropTypes.ValidConfig<VxeTablePropTypes.Row>;
|
|
101
|
+
editRules: VxeTablePropTypes.EditRules<VxeTablePropTypes.Row>;
|
|
102
|
+
emptyRender: VxeTablePropTypes.EmptyRender;
|
|
103
|
+
loadingConfig: VxeTablePropTypes.LoadingConfig;
|
|
104
|
+
scrollX: VxeTablePropTypes.ScrollX;
|
|
105
|
+
scrollY: VxeTablePropTypes.ScrollY;
|
|
106
|
+
highlightCurrentRow: VxeTablePropTypes.HighlightCurrentRow;
|
|
107
|
+
highlightHoverRow: VxeTablePropTypes.HighlightHoverRow;
|
|
108
|
+
highlightCurrentColumn: VxeTablePropTypes.HighlightCurrentColumn;
|
|
109
|
+
highlightHoverColumn: VxeTablePropTypes.HighlightHoverColumn;
|
|
110
|
+
highlightCell: VxeTablePropTypes.HighlightCell;
|
|
111
|
+
columnKey: VxeTablePropTypes.ColumnKey;
|
|
112
|
+
rowKey: VxeTablePropTypes.RowKey;
|
|
113
|
+
rowId: VxeTablePropTypes.RowId;
|
|
114
|
+
delayHover: VxeTablePropTypes.DelayHover;
|
|
115
115
|
wrapClassName: any;
|
|
116
|
-
checkboxRecords:
|
|
116
|
+
checkboxRecords: VxeTablePropTypes.Row[];
|
|
117
117
|
withSeq: boolean;
|
|
118
118
|
withCheckbox: boolean;
|
|
119
119
|
headerFilterModel: any;
|