@kengic/core.react 0.0.1-beta.24 → 0.0.1-beta.25
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/kengic-core.react.js +2 -1
- package/package.json +1 -1
package/kengic-core.react.js
CHANGED
|
@@ -47285,9 +47285,10 @@ class Qre extends HTMLElement {
|
|
|
47285
47285
|
constructor() {
|
|
47286
47286
|
super();
|
|
47287
47287
|
gw(this, "unmount", null);
|
|
47288
|
+
console.log("constructor", this.id);
|
|
47288
47289
|
}
|
|
47289
47290
|
connectedCallback() {
|
|
47290
|
-
mi.dispatch(Vre({ id: this.id }));
|
|
47291
|
+
console.log("connectedCallback", this.id), mi.dispatch(Vre({ id: this.id }));
|
|
47291
47292
|
const r = FS(this);
|
|
47292
47293
|
r.render(
|
|
47293
47294
|
/* @__PURE__ */ wn.jsx(NF, { id: this.id, children: /* @__PURE__ */ wn.jsx(Jne, { store: mi, children: /* @__PURE__ */ wn.jsx(Xre, {}) }) })
|