@antv/s2-vue 1.4.0 → 1.5.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/README.md +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/esm/index.d.ts +172 -53
- package/esm/index.js +2 -0
- package/esm/index.js.map +1 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/esm/index.js
CHANGED
|
@@ -2451,6 +2451,7 @@ const useEvents = (s2Ref, emit) => {
|
|
|
2451
2451
|
useS2Event(s2Ref, emit, S2Event.GLOBAL_RESET, "reset");
|
|
2452
2452
|
useS2Event(s2Ref, emit, S2Event.GLOBAL_LINK_FIELD_JUMP, "linkFieldJump");
|
|
2453
2453
|
useS2Event(s2Ref, emit, S2Event.GLOBAL_SCROLL, "scroll");
|
|
2454
|
+
useS2Event(s2Ref, emit, S2Event.LAYOUT_AFTER_REAL_DATA_CELL_RENDER, "layoutAfterRealDataCellRender");
|
|
2454
2455
|
useS2Event(s2Ref, emit, S2Event.ROW_CELL_BRUSH_SELECTION, "rowCellBrushSelection");
|
|
2455
2456
|
useS2Event(s2Ref, emit, S2Event.COL_CELL_BRUSH_SELECTION, "colCellBrushSelection");
|
|
2456
2457
|
});
|
|
@@ -2725,6 +2726,7 @@ const initBaseSheetEmits = () => {
|
|
|
2725
2726
|
"doubleClick",
|
|
2726
2727
|
"scroll",
|
|
2727
2728
|
"hover",
|
|
2729
|
+
"layoutAfterRealDataCellRender",
|
|
2728
2730
|
"rowCellBrushSelection",
|
|
2729
2731
|
"colCellBrushSelection"
|
|
2730
2732
|
];
|