cradova 3.15.1 → 3.15.3

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 +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -327,6 +327,7 @@ var compManager = {
327
327
  if (component.rendered && component.published) {
328
328
  this.activate(component);
329
329
  }
330
+ window.CradovaEvent.dispatchEvent("after_page_is_killed");
330
331
  window.CradovaEvent.dispatchEvent("after_comp_is_mounted");
331
332
  },
332
333
  activate(component) {
@@ -527,7 +528,7 @@ class Signal {
527
528
  const s = new Set;
528
529
  this.queue.add("__ALL__");
529
530
  for (const k of this.queue) {
530
- if (this.picker.hasOwnProperty(k)) {
531
+ if (this.picker.hasOwnProperty(k) || k === "__ALL__") {
531
532
  const subs2 = this.subscribers[k];
532
533
  if (subs2) {
533
534
  for (const fn of subs2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cradova",
3
- "version": "3.15.1",
3
+ "version": "3.15.3",
4
4
  "description": "Build Powerful ⚡ Web Apps with Ease",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",