@wx-design/components 1.2.1 → 1.2.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/es/core/Table/index.vue.d.ts +10 -2
- package/es/index.mjs +20853 -20025
- package/es/style.css +1 -1
- package/lib/core/Table/index.vue.d.ts +10 -2
- package/lib/index.js +7 -7
- package/lib/style.css +1 -1
- package/package.json +2 -2
- package/es/core/Table/components/Toolbar/index.vue.d.ts +0 -22
- package/lib/core/Table/components/Toolbar/index.vue.d.ts +0 -22
|
@@ -66,7 +66,12 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
66
66
|
columnConfig: VxeTablePropTypes.ColumnConfig<VxeTablePropTypes.Row>;
|
|
67
67
|
rowConfig: VxeTablePropTypes.RowConfig<VxeTablePropTypes.Row>;
|
|
68
68
|
cellConfig: VxeTablePropTypes.CellConfig<VxeTablePropTypes.Row>;
|
|
69
|
-
|
|
69
|
+
headerCellConfig: VxeTablePropTypes.HeaderCellConfig<VxeTablePropTypes.Row>;
|
|
70
|
+
footerCellConfig: VxeTablePropTypes.FooterCellConfig<VxeTablePropTypes.Row>;
|
|
71
|
+
aggregateConfig: VxeTablePropTypes.AggregateConfig<VxeTablePropTypes.Row>;
|
|
72
|
+
rowGroupConfig: VxeTablePropTypes.RowGroupConfig<VxeTablePropTypes.Row>;
|
|
73
|
+
currentRowConfig: VxeTablePropTypes.CurrentRowConfig<VxeTablePropTypes.Row>;
|
|
74
|
+
currentColumnConfig: VxeTablePropTypes.CurrentColumnConfig<VxeTablePropTypes.Row>;
|
|
70
75
|
dragConfig: VxeTablePropTypes.DragConfig<VxeTablePropTypes.Row>;
|
|
71
76
|
rowDragConfig: VxeTablePropTypes.RowDragConfig<VxeTablePropTypes.Row>;
|
|
72
77
|
columnDragConfig: VxeTablePropTypes.ColumnDragConfig<VxeTablePropTypes.Row>;
|
|
@@ -94,7 +99,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
94
99
|
menuConfig: VxeTablePropTypes.MenuConfig<VxeTablePropTypes.Row>;
|
|
95
100
|
mouseConfig: VxeTablePropTypes.MouseConfig;
|
|
96
101
|
areaConfig: VxeTablePropTypes.AreaConfig<VxeTablePropTypes.Row>;
|
|
97
|
-
fnrConfig: VxeTablePropTypes.
|
|
102
|
+
fnrConfig: VxeTablePropTypes.FnrConfig<VxeTablePropTypes.Row>;
|
|
98
103
|
keyboardConfig: VxeTablePropTypes.KeyboardConfig<VxeTablePropTypes.Row>;
|
|
99
104
|
clipConfig: VxeTablePropTypes.ClipConfig<VxeTablePropTypes.Row>;
|
|
100
105
|
editConfig: VxeTablePropTypes.EditConfig<VxeTablePropTypes.Row>;
|
|
@@ -104,6 +109,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
104
109
|
loadingConfig: VxeTablePropTypes.LoadingConfig;
|
|
105
110
|
scrollX: VxeTablePropTypes.ScrollX;
|
|
106
111
|
scrollY: VxeTablePropTypes.ScrollY;
|
|
112
|
+
virtualXConfig: VxeTablePropTypes.VirtualXConfig;
|
|
113
|
+
virtualYConfig: VxeTablePropTypes.VirtualYConfig;
|
|
114
|
+
scrollbarConfig: VxeTablePropTypes.ScrollbarConfig;
|
|
107
115
|
highlightCurrentRow: VxeTablePropTypes.HighlightCurrentRow;
|
|
108
116
|
highlightHoverRow: VxeTablePropTypes.HighlightHoverRow;
|
|
109
117
|
highlightCurrentColumn: VxeTablePropTypes.HighlightCurrentColumn;
|