@rkmodules/rules 0.0.78 → 0.0.80
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.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/DataTree/index.d.ts +3 -3
- package/package.json +1 -1
- package/readme.md +26 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1945,6 +1945,8 @@ var Engine = /** @class */ (function () {
|
|
|
1945
1945
|
if (!builtFn) {
|
|
1946
1946
|
// not yet build
|
|
1947
1947
|
builtFn = this.build(node);
|
|
1948
|
+
// mount if needed
|
|
1949
|
+
this.mount(builtFn);
|
|
1948
1950
|
}
|
|
1949
1951
|
return [2 /*return*/, this.run(builtFn, inputs)];
|
|
1950
1952
|
}
|
|
@@ -5339,7 +5341,6 @@ var Merge = React.memo(function (_a) {
|
|
|
5339
5341
|
React.useEffect(function () {
|
|
5340
5342
|
return engine.subscribe("functionResult", function (event) {
|
|
5341
5343
|
var _a;
|
|
5342
|
-
console.log("functionresult", event.name, event);
|
|
5343
5344
|
if (event.name === id) {
|
|
5344
5345
|
setResult(event.result || {});
|
|
5345
5346
|
setDuration((_a = event.duration) !== null && _a !== void 0 ? _a : null);
|