ninegrid2 6.1396.0 → 6.1398.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 +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/_nxDiv.js +2 -2
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -28564,7 +28564,7 @@ class nxDiv extends HTMLElement {
|
|
|
28564
28564
|
const val = (jsonData && jsonData[key] !== undefined) ? jsonData[key] : "";
|
|
28565
28565
|
this.#updateElement(el, val);
|
|
28566
28566
|
});
|
|
28567
|
-
this
|
|
28567
|
+
this.changed = false;
|
|
28568
28568
|
};
|
|
28569
28569
|
|
|
28570
28570
|
setData = (jsonData) => {
|
|
@@ -28580,7 +28580,7 @@ class nxDiv extends HTMLElement {
|
|
|
28580
28580
|
bChanged = true;
|
|
28581
28581
|
}
|
|
28582
28582
|
});
|
|
28583
|
-
if (bChanged) this.#changed
|
|
28583
|
+
if (bChanged) this.#changed = true;
|
|
28584
28584
|
};
|
|
28585
28585
|
|
|
28586
28586
|
initData = (jsonData) => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -28560,7 +28560,7 @@ class nxDiv extends HTMLElement {
|
|
|
28560
28560
|
const val = (jsonData && jsonData[key] !== undefined) ? jsonData[key] : "";
|
|
28561
28561
|
this.#updateElement(el, val);
|
|
28562
28562
|
});
|
|
28563
|
-
this
|
|
28563
|
+
this.changed = false;
|
|
28564
28564
|
};
|
|
28565
28565
|
|
|
28566
28566
|
setData = (jsonData) => {
|
|
@@ -28576,7 +28576,7 @@ class nxDiv extends HTMLElement {
|
|
|
28576
28576
|
bChanged = true;
|
|
28577
28577
|
}
|
|
28578
28578
|
});
|
|
28579
|
-
if (bChanged) this.#changed
|
|
28579
|
+
if (bChanged) this.#changed = true;
|
|
28580
28580
|
};
|
|
28581
28581
|
|
|
28582
28582
|
initData = (jsonData) => {
|
package/dist/nx/_nxDiv.js
CHANGED
|
@@ -131,7 +131,7 @@ export class nxDiv extends HTMLElement {
|
|
|
131
131
|
const val = (jsonData && jsonData[key] !== undefined) ? jsonData[key] : "";
|
|
132
132
|
this.#updateElement(el, val);
|
|
133
133
|
});
|
|
134
|
-
this
|
|
134
|
+
this.changed = false;
|
|
135
135
|
};
|
|
136
136
|
|
|
137
137
|
setData = (jsonData) => {
|
|
@@ -147,7 +147,7 @@ export class nxDiv extends HTMLElement {
|
|
|
147
147
|
bChanged = true;
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
|
-
if (bChanged) this.#changed
|
|
150
|
+
if (bChanged) this.#changed = true;
|
|
151
151
|
};
|
|
152
152
|
|
|
153
153
|
initData = (jsonData) => {
|
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED
|
@@ -131,7 +131,7 @@ export class nxDiv extends HTMLElement {
|
|
|
131
131
|
const val = (jsonData && jsonData[key] !== undefined) ? jsonData[key] : "";
|
|
132
132
|
this.#updateElement(el, val);
|
|
133
133
|
});
|
|
134
|
-
this
|
|
134
|
+
this.changed = false;
|
|
135
135
|
};
|
|
136
136
|
|
|
137
137
|
setData = (jsonData) => {
|
|
@@ -147,7 +147,7 @@ export class nxDiv extends HTMLElement {
|
|
|
147
147
|
bChanged = true;
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
|
-
if (bChanged) this.#changed
|
|
150
|
+
if (bChanged) this.#changed = true;
|
|
151
151
|
};
|
|
152
152
|
|
|
153
153
|
initData = (jsonData) => {
|