@wx-design/components 0.8.61 → 0.9.0-alpha.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/es/core/Table/index.vue.d.ts +2 -1
- package/es/index.mjs +6 -2
- package/es/style.css +1 -1
- package/lib/core/Table/index.vue.d.ts +2 -1
- package/lib/index.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +2 -2
|
@@ -25,6 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
25
|
footerAlign: import("vxe-table").VxeTablePropTypes.Align;
|
|
26
26
|
showHeader: boolean;
|
|
27
27
|
showFooter: boolean;
|
|
28
|
+
footerData: import("vxe-table").VxeTablePropTypes.FooterData;
|
|
28
29
|
footerMethod: import("vxe-table").VxeTablePropTypes.FooterMethod<import("vxe-table").VxeTableDataRow>;
|
|
29
30
|
rowClassName: import("vxe-table").VxeTablePropTypes.RowClassName<import("vxe-table").VxeTableDataRow>;
|
|
30
31
|
cellClassName: import("vxe-table").VxeTablePropTypes.CellClassName<import("vxe-table").VxeTableDataRow>;
|
|
@@ -75,7 +76,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
75
76
|
keyboardConfig: import("vxe-table").VxeTablePropTypes.KeyboardConfig<import("vxe-table").VxeTableDataRow>;
|
|
76
77
|
clipConfig: import("vxe-table").VxeTablePropTypes.ClipConfig<import("vxe-table").VxeTableDataRow>;
|
|
77
78
|
editConfig: import("vxe-table").VxeTablePropTypes.EditConfig<import("vxe-table").VxeTableDataRow>;
|
|
78
|
-
validConfig: import("vxe-table").VxeTablePropTypes.ValidConfig
|
|
79
|
+
validConfig: import("vxe-table").VxeTablePropTypes.ValidConfig<import("vxe-table").VxeTableDataRow>;
|
|
79
80
|
editRules: import("vxe-table").VxeTablePropTypes.EditRules<import("vxe-table").VxeTableDataRow>;
|
|
80
81
|
emptyText: string;
|
|
81
82
|
emptyRender: import("vxe-table").VxeTablePropTypes.EmptyRender;
|
package/es/index.mjs
CHANGED
|
@@ -2966,8 +2966,11 @@ const Ln = [
|
|
|
2966
2966
|
], Dm = (e) => {
|
|
2967
2967
|
const { checkboxRecords: t, emit: r, xTable: n, tableConfig: a } = e, i = (f = []) => {
|
|
2968
2968
|
var d, g, p, $;
|
|
2969
|
-
const u = ((d = n.value) == null ? void 0 : d.getCheckboxRecords()) || [], h = ((g = n.value) == null ? void 0 : g.getCheckboxRecords(!0)) || [], v = (p = a.value.rowConfig)
|
|
2970
|
-
return v ? jm(
|
|
2969
|
+
const u = ((d = n.value) == null ? void 0 : d.getCheckboxRecords()) || [], h = ((g = n.value) == null ? void 0 : g.getCheckboxRecords(!0)) || [], v = ((p = a.value.rowConfig) == null ? void 0 : p.keyField) || (($ = a.value.rowConfig) != null && $.useKey ? "_X_ROW_KEY" : void 0);
|
|
2970
|
+
return v ? jm(
|
|
2971
|
+
[...f, ...u, ...h],
|
|
2972
|
+
v
|
|
2973
|
+
) : u;
|
|
2971
2974
|
}, l = (f) => {
|
|
2972
2975
|
const u = i(f.records);
|
|
2973
2976
|
t.value = u || [], r("checkbox-change", { ...f, records: u });
|
|
@@ -3101,6 +3104,7 @@ const Vm = (e) => {
|
|
|
3101
3104
|
footerAlign: {},
|
|
3102
3105
|
showHeader: { type: Boolean },
|
|
3103
3106
|
showFooter: { type: Boolean },
|
|
3107
|
+
footerData: {},
|
|
3104
3108
|
footerMethod: { type: Function },
|
|
3105
3109
|
rowClassName: { type: [String, Function] },
|
|
3106
3110
|
cellClassName: { type: [String, Function] },
|