ninegrid2 6.1271.0 → 6.1273.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
CHANGED
|
@@ -118921,7 +118921,7 @@ class NineGridContainer extends HTMLElement
|
|
|
118921
118921
|
//ce.target = e.target;
|
|
118922
118922
|
this.dispatchEvent(ce);
|
|
118923
118923
|
});
|
|
118924
|
-
|
|
118924
|
+
|
|
118925
118925
|
});
|
|
118926
118926
|
}
|
|
118927
118927
|
/**
|
|
@@ -122253,14 +122253,14 @@ class nxPanel extends nxDiv {
|
|
|
122253
122253
|
|
|
122254
122254
|
customElements.define("nx-panel", nxPanel);
|
|
122255
122255
|
|
|
122256
|
-
class nxButtons extends
|
|
122256
|
+
class nxButtons extends nxDiv {
|
|
122257
122257
|
|
|
122258
122258
|
constructor() {
|
|
122259
122259
|
super();
|
|
122260
122260
|
}
|
|
122261
122261
|
|
|
122262
122262
|
connectedCallback() {
|
|
122263
|
-
|
|
122263
|
+
if (super.connectedCallback()) this.#init();
|
|
122264
122264
|
};
|
|
122265
122265
|
|
|
122266
122266
|
#init = () => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -118917,7 +118917,7 @@ class NineGridContainer extends HTMLElement
|
|
|
118917
118917
|
//ce.target = e.target;
|
|
118918
118918
|
this.dispatchEvent(ce);
|
|
118919
118919
|
});
|
|
118920
|
-
|
|
118920
|
+
|
|
118921
118921
|
});
|
|
118922
118922
|
}
|
|
118923
118923
|
/**
|
|
@@ -122249,14 +122249,14 @@ class nxPanel extends nxDiv {
|
|
|
122249
122249
|
|
|
122250
122250
|
customElements.define("nx-panel", nxPanel);
|
|
122251
122251
|
|
|
122252
|
-
class nxButtons extends
|
|
122252
|
+
class nxButtons extends nxDiv {
|
|
122253
122253
|
|
|
122254
122254
|
constructor() {
|
|
122255
122255
|
super();
|
|
122256
122256
|
}
|
|
122257
122257
|
|
|
122258
122258
|
connectedCallback() {
|
|
122259
|
-
|
|
122259
|
+
if (super.connectedCallback()) this.#init();
|
|
122260
122260
|
};
|
|
122261
122261
|
|
|
122262
122262
|
#init = () => {
|
package/dist/nx/nxButtons.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
import {nxDiv} from "./_nxDiv.js";
|
|
3
3
|
|
|
4
|
-
class nxButtons extends
|
|
4
|
+
class nxButtons extends nxDiv {
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
7
7
|
super();
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
connectedCallback() {
|
|
11
|
-
|
|
11
|
+
if (super.connectedCallback()) this.#init();
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
#init = () => {
|
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import ninegrid from "../index.js";
|
|
2
2
|
import {nxDiv} from "./_nxDiv.js";
|
|
3
3
|
|
|
4
|
-
class nxButtons extends
|
|
4
|
+
class nxButtons extends nxDiv {
|
|
5
5
|
|
|
6
6
|
constructor() {
|
|
7
7
|
super();
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
connectedCallback() {
|
|
11
|
-
|
|
11
|
+
if (super.connectedCallback()) this.#init();
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
#init = () => {
|