@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/lib/index.js CHANGED
@@ -2453,6 +2453,7 @@ const useEvents = (s2Ref, emit) => {
2453
2453
  useS2Event(s2Ref, emit, s2.S2Event.GLOBAL_RESET, "reset");
2454
2454
  useS2Event(s2Ref, emit, s2.S2Event.GLOBAL_LINK_FIELD_JUMP, "linkFieldJump");
2455
2455
  useS2Event(s2Ref, emit, s2.S2Event.GLOBAL_SCROLL, "scroll");
2456
+ useS2Event(s2Ref, emit, s2.S2Event.LAYOUT_AFTER_REAL_DATA_CELL_RENDER, "layoutAfterRealDataCellRender");
2456
2457
  useS2Event(s2Ref, emit, s2.S2Event.ROW_CELL_BRUSH_SELECTION, "rowCellBrushSelection");
2457
2458
  useS2Event(s2Ref, emit, s2.S2Event.COL_CELL_BRUSH_SELECTION, "colCellBrushSelection");
2458
2459
  });
@@ -2727,6 +2728,7 @@ const initBaseSheetEmits = () => {
2727
2728
  "doubleClick",
2728
2729
  "scroll",
2729
2730
  "hover",
2731
+ "layoutAfterRealDataCellRender",
2730
2732
  "rowCellBrushSelection",
2731
2733
  "colCellBrushSelection"
2732
2734
  ];