ninegrid2 6.1415.0 → 6.1417.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 +7 -3
- package/dist/bundle.esm.js +7 -3
- package/dist/components/ngContainer2.js +3 -1
- package/dist/components/ngContainer3.js +3 -1
- package/dist/etc/nxConfirm.js +1 -1
- package/package.json +1 -1
- package/src/components/ngContainer2.js +3 -1
- package/src/components/ngContainer3.js +3 -1
- package/src/etc/nxConfirm.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -10814,7 +10814,7 @@ class nxAlertPopup extends HTMLElement
|
|
|
10814
10814
|
}
|
|
10815
10815
|
|
|
10816
10816
|
if (!customElements.get('nx-confirm-popup')) {
|
|
10817
|
-
customElements.define('nx-confirm-popup',
|
|
10817
|
+
customElements.define('nx-confirm-popup', nxConfirmPopup);
|
|
10818
10818
|
}
|
|
10819
10819
|
|
|
10820
10820
|
if (!customElements.get('nx-alert-popup')) {
|
|
@@ -12051,7 +12051,9 @@ class NgContainer2 extends HTMLElement {
|
|
|
12051
12051
|
}
|
|
12052
12052
|
}
|
|
12053
12053
|
|
|
12054
|
-
customElements.
|
|
12054
|
+
if (!customElements.get('nine-grid2')) {
|
|
12055
|
+
customElements.define("nine-grid2", NgContainer2);
|
|
12056
|
+
}
|
|
12055
12057
|
|
|
12056
12058
|
class NgContainer3 extends HTMLElement {
|
|
12057
12059
|
constructor() {
|
|
@@ -12068,7 +12070,9 @@ class NgContainer3 extends HTMLElement {
|
|
|
12068
12070
|
}
|
|
12069
12071
|
}
|
|
12070
12072
|
|
|
12071
|
-
customElements.
|
|
12073
|
+
if (!customElements.get('nine-grid3')) {
|
|
12074
|
+
customElements.define("nine-grid3", NgContainer3);
|
|
12075
|
+
}
|
|
12072
12076
|
|
|
12073
12077
|
class ngCellEx extends HTMLElement
|
|
12074
12078
|
{
|
package/dist/bundle.esm.js
CHANGED
|
@@ -10810,7 +10810,7 @@ class nxAlertPopup extends HTMLElement
|
|
|
10810
10810
|
}
|
|
10811
10811
|
|
|
10812
10812
|
if (!customElements.get('nx-confirm-popup')) {
|
|
10813
|
-
customElements.define('nx-confirm-popup',
|
|
10813
|
+
customElements.define('nx-confirm-popup', nxConfirmPopup);
|
|
10814
10814
|
}
|
|
10815
10815
|
|
|
10816
10816
|
if (!customElements.get('nx-alert-popup')) {
|
|
@@ -12047,7 +12047,9 @@ class NgContainer2 extends HTMLElement {
|
|
|
12047
12047
|
}
|
|
12048
12048
|
}
|
|
12049
12049
|
|
|
12050
|
-
customElements.
|
|
12050
|
+
if (!customElements.get('nine-grid2')) {
|
|
12051
|
+
customElements.define("nine-grid2", NgContainer2);
|
|
12052
|
+
}
|
|
12051
12053
|
|
|
12052
12054
|
class NgContainer3 extends HTMLElement {
|
|
12053
12055
|
constructor() {
|
|
@@ -12064,7 +12066,9 @@ class NgContainer3 extends HTMLElement {
|
|
|
12064
12066
|
}
|
|
12065
12067
|
}
|
|
12066
12068
|
|
|
12067
|
-
customElements.
|
|
12069
|
+
if (!customElements.get('nine-grid3')) {
|
|
12070
|
+
customElements.define("nine-grid3", NgContainer3);
|
|
12071
|
+
}
|
|
12068
12072
|
|
|
12069
12073
|
class ngCellEx extends HTMLElement
|
|
12070
12074
|
{
|
package/dist/etc/nxConfirm.js
CHANGED
|
@@ -104,7 +104,7 @@ export class nxAlertPopup extends HTMLElement
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
if (!customElements.get('nx-confirm-popup')) {
|
|
107
|
-
customElements.define('nx-confirm-popup',
|
|
107
|
+
customElements.define('nx-confirm-popup', nxConfirmPopup);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
if (!customElements.get('nx-alert-popup')) {
|
package/package.json
CHANGED
package/src/etc/nxConfirm.js
CHANGED
|
@@ -104,7 +104,7 @@ export class nxAlertPopup extends HTMLElement
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
if (!customElements.get('nx-confirm-popup')) {
|
|
107
|
-
customElements.define('nx-confirm-popup',
|
|
107
|
+
customElements.define('nx-confirm-popup', nxConfirmPopup);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
if (!customElements.get('nx-alert-popup')) {
|