@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.esm.js
CHANGED
|
@@ -1943,6 +1943,8 @@ var Engine = /** @class */ (function () {
|
|
|
1943
1943
|
if (!builtFn) {
|
|
1944
1944
|
// not yet build
|
|
1945
1945
|
builtFn = this.build(node);
|
|
1946
|
+
// mount if needed
|
|
1947
|
+
this.mount(builtFn);
|
|
1946
1948
|
}
|
|
1947
1949
|
return [2 /*return*/, this.run(builtFn, inputs)];
|
|
1948
1950
|
}
|
|
@@ -5337,7 +5339,6 @@ var Merge = React.memo(function (_a) {
|
|
|
5337
5339
|
React.useEffect(function () {
|
|
5338
5340
|
return engine.subscribe("functionResult", function (event) {
|
|
5339
5341
|
var _a;
|
|
5340
|
-
console.log("functionresult", event.name, event);
|
|
5341
5342
|
if (event.name === id) {
|
|
5342
5343
|
setResult(event.result || {});
|
|
5343
5344
|
setDuration((_a = event.duration) !== null && _a !== void 0 ? _a : null);
|