ninegrid2 6.1269.0 → 6.1271.0
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/bundle.cjs.js +3 -2
- package/dist/bundle.esm.js +3 -2
- package/dist/nx/nxButtons.js +3 -2
- package/package.json +1 -1
- package/src/nx/nxButtons.js +3 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -122253,17 +122253,18 @@ class nxPanel extends nxDiv {
|
|
|
122253
122253
|
|
|
122254
122254
|
customElements.define("nx-panel", nxPanel);
|
|
122255
122255
|
|
|
122256
|
-
class nxButtons extends
|
|
122256
|
+
class nxButtons extends HTMLElement {
|
|
122257
122257
|
|
|
122258
122258
|
constructor() {
|
|
122259
122259
|
super();
|
|
122260
122260
|
}
|
|
122261
122261
|
|
|
122262
122262
|
connectedCallback() {
|
|
122263
|
-
if (super.connectedCallback()) this.#init();
|
|
122263
|
+
//if (super.connectedCallback()) this.#init();
|
|
122264
122264
|
};
|
|
122265
122265
|
|
|
122266
122266
|
#init = () => {
|
|
122267
|
+
|
|
122267
122268
|
const target = this.shadowRoot || this;
|
|
122268
122269
|
|
|
122269
122270
|
const htmlTmpl = document.createElement("template");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -122249,17 +122249,18 @@ class nxPanel extends nxDiv {
|
|
|
122249
122249
|
|
|
122250
122250
|
customElements.define("nx-panel", nxPanel);
|
|
122251
122251
|
|
|
122252
|
-
class nxButtons extends
|
|
122252
|
+
class nxButtons extends HTMLElement {
|
|
122253
122253
|
|
|
122254
122254
|
constructor() {
|
|
122255
122255
|
super();
|
|
122256
122256
|
}
|
|
122257
122257
|
|
|
122258
122258
|
connectedCallback() {
|
|
122259
|
-
if (super.connectedCallback()) this.#init();
|
|
122259
|
+
//if (super.connectedCallback()) this.#init();
|
|
122260
122260
|
};
|
|
122261
122261
|
|
|
122262
122262
|
#init = () => {
|
|
122263
|
+
|
|
122263
122264
|
const target = this.shadowRoot || this;
|
|
122264
122265
|
|
|
122265
122266
|
const htmlTmpl = document.createElement("template");
|
package/dist/nx/nxButtons.js
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
import {nxDiv} from "./_nxDiv.js";
|
|
3
3
|
|
|
4
|
-
class nxButtons extends
|
|
4
|
+
class nxButtons extends HTMLElement {
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
7
7
|
super();
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
connectedCallback() {
|
|
11
|
-
if (super.connectedCallback()) this.#init();
|
|
11
|
+
//if (super.connectedCallback()) this.#init();
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
#init = () => {
|
|
15
|
+
|
|
15
16
|
const target = this.shadowRoot || this;
|
|
16
17
|
|
|
17
18
|
const htmlTmpl = document.createElement("template");
|
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
import {nxDiv} from "./_nxDiv.js";
|
|
3
3
|
|
|
4
|
-
class nxButtons extends
|
|
4
|
+
class nxButtons extends HTMLElement {
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
7
7
|
super();
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
connectedCallback() {
|
|
11
|
-
if (super.connectedCallback()) this.#init();
|
|
11
|
+
//if (super.connectedCallback()) this.#init();
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
#init = () => {
|
|
15
|
+
|
|
15
16
|
const target = this.shadowRoot || this;
|
|
16
17
|
|
|
17
18
|
const htmlTmpl = document.createElement("template");
|