@next-core/brick-utils 2.47.3 → 2.47.4

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.
@@ -17870,6 +17870,8 @@
17870
17870
  return [].concat(handlers).filter(Boolean).map(handler => ({
17871
17871
  type: "EventHandler",
17872
17872
  callback: parseEventCallback(handler.callback),
17873
+ then: parseEventHandlers(handler.then),
17874
+ else: parseEventHandlers(handler.else),
17873
17875
  raw: handler
17874
17876
  }));
17875
17877
  }