@next-core/brick-utils 2.47.3 → 2.47.5
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/dist/index.bundle.js +4 -0
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +4 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -3
package/dist/index.bundle.js
CHANGED
|
@@ -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
|
}
|
|
@@ -17977,6 +17979,8 @@
|
|
|
17977
17979
|
break;
|
|
17978
17980
|
case "EventHandler":
|
|
17979
17981
|
traverseNodes(node.callback, callback, childPath);
|
|
17982
|
+
traverseNodes(node.then, callback, childPath);
|
|
17983
|
+
traverseNodes(node.else, callback, childPath);
|
|
17980
17984
|
break;
|
|
17981
17985
|
case "ConditionalLifeCycle":
|
|
17982
17986
|
traverseNodes(node.events, callback, childPath);
|