goatdee-canvas 0.0.60 → 0.0.62

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.
Binary file
package/dist/index.cjs CHANGED
@@ -6129,7 +6129,9 @@ function useOnActionBridge(onAction, reportAction) {
6129
6129
  const { action, data } = detail !== null && detail !== void 0 ? detail : {};
6130
6130
  const parsed = data ? JSON.parse(data) : null;
6131
6131
  reportAction(action, parsed);
6132
- if (action === "afterrender" || action === "modified") {
6132
+ if (action === "afterrender" ||
6133
+ action === "modified" ||
6134
+ action === "add") {
6133
6135
  onAction === null || onAction === void 0 ? void 0 : onAction(action, parsed);
6134
6136
  return;
6135
6137
  }