@wx-design/components 1.0.0-alpha.7 → 1.0.0-alpha.8
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/components/CellEditors/Image.d.ts +3 -3
- package/es/core/Table/components/CellEditors/utils.d.ts +3 -3
- package/es/core/Table/components/CellRender.d.ts +1 -0
- package/es/core/Table/index.vue.d.ts +1 -1
- package/es/index.mjs +2886 -2867
- package/lib/core/Table/components/CellEditors/Image.d.ts +3 -3
- package/lib/core/Table/components/CellEditors/utils.d.ts +3 -3
- package/lib/core/Table/components/CellRender.d.ts +1 -0
- package/lib/core/Table/index.vue.d.ts +1 -1
- package/lib/index.js +6 -6
- package/package.json +1 -1
- package/types/table/column.d.ts +28 -9
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
import type { SabColumnProps } from "../../../../types/table";
|
|
5
5
|
declare const SabCellImage: import("vue").DefineComponent<{
|
|
6
6
|
src: StringConstructor;
|
|
7
|
-
|
|
7
|
+
showThumb: BooleanConstructor;
|
|
8
8
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
src: StringConstructor;
|
|
10
|
-
|
|
10
|
+
showThumb: BooleanConstructor;
|
|
11
11
|
}>>, {
|
|
12
|
-
|
|
12
|
+
showThumb: boolean;
|
|
13
13
|
}, {}>;
|
|
14
14
|
export default SabCellImage;
|
|
15
15
|
export declare const config: Partial<SabColumnProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { SabColumnProps, SabCellEditorParams, VxeColumnSlotTypes,
|
|
2
|
-
export declare const getEditorProps: (scope: (VxeColumnSlotTypes.DefaultSlotParams<
|
|
3
|
-
column: SabColumnProps<
|
|
1
|
+
import type { SabColumnProps, SabCellEditorParams, VxeColumnSlotTypes, VxeTablePropTypes } from "../../../../types/table";
|
|
2
|
+
export declare const getEditorProps: (scope: (VxeColumnSlotTypes.DefaultSlotParams<VxeTablePropTypes.Row> | VxeColumnSlotTypes.EditSlotParams<VxeTablePropTypes.Row>) & {
|
|
3
|
+
column: SabColumnProps<VxeTablePropTypes.Row>;
|
|
4
4
|
}, editorProps?: SabCellEditorParams) => any;
|
|
@@ -15,5 +15,6 @@ declare const CellRender: (props: import("vxe-table").VxeColumnProps<import("vxe
|
|
|
15
15
|
withSummary?: boolean;
|
|
16
16
|
footerMethod?(column: SabColumnProps<import("vxe-table").VxeTablePropTypes.Row>, data: import("vxe-table").VxeTablePropTypes.Row[]): any;
|
|
17
17
|
children?: SabColumnProps<import("vxe-table").VxeTablePropTypes.Row>[] | undefined;
|
|
18
|
+
transformRowDataToCell?(scope: VxeColumnSlotTypes.DefaultSlotParams<import("vxe-table").VxeTablePropTypes.Row> | VxeColumnSlotTypes.EditSlotParams<import("vxe-table").VxeTablePropTypes.Row>): any;
|
|
18
19
|
} & {}) => any;
|
|
19
20
|
export default CellRender;
|
|
@@ -28,6 +28,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
28
28
|
tableSetConfig: Partial<import("../../types/table").TableSetProps>;
|
|
29
29
|
cellClassName: import("vxe-table").VxeTablePropTypes.CellClassName<import("vxe-table").VxeTablePropTypes.Row>;
|
|
30
30
|
editable: boolean;
|
|
31
|
+
fit: import("vxe-table").VxeTablePropTypes.Fit;
|
|
31
32
|
resizable: import("vxe-table").VxeTablePropTypes.Resizable;
|
|
32
33
|
headerAlign: import("vxe-table").VxeTablePropTypes.HeaderAlign;
|
|
33
34
|
footerAlign: import("vxe-table").VxeTablePropTypes.FooterAlign;
|
|
@@ -104,7 +105,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
104
105
|
columnKey: import("vxe-table").VxeTablePropTypes.ColumnKey;
|
|
105
106
|
rowKey: import("vxe-table").VxeTablePropTypes.RowKey;
|
|
106
107
|
rowId: import("vxe-table").VxeTablePropTypes.RowId;
|
|
107
|
-
fit: import("vxe-table").VxeTablePropTypes.Fit;
|
|
108
108
|
animat: import("vxe-table").VxeTablePropTypes.Animat;
|
|
109
109
|
delayHover: import("vxe-table").VxeTablePropTypes.DelayHover;
|
|
110
110
|
wrapClassName: any;
|