cradova 3.7.10 → 3.7.11

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -411,7 +411,7 @@ class Signal {
411
411
  });
412
412
  return;
413
413
  }
414
- if (!isArrowFunc(comp) && comp.signals) {
414
+ if (!isArrowFunc(comp) && !comp.signals) {
415
415
  comp = toFuncNoRender(comp);
416
416
  } else {
417
417
  console.error(` ✘ Cradova err: ${String(comp)} is not a valid component or function`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cradova",
3
- "version": "3.7.10",
3
+ "version": "3.7.11",
4
4
  "description": "Build Powerful ⚡ Web Apps with Ease",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",