ninegrid2 6.1318.0 → 6.1320.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 -1
- package/dist/bundle.esm.js +2 -1
- package/dist/nx/_nxDiv.js +1 -1
- package/dist/nx/nxEditor.js +1 -0
- package/package.json +1 -1
- package/src/nx/_nxDiv.js +1 -1
- package/src/nx/nxEditor.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -28513,7 +28513,7 @@ class nxDiv extends HTMLElement {
|
|
|
28513
28513
|
const value = jsonData[key];
|
|
28514
28514
|
|
|
28515
28515
|
const inputTags = ["INPUT", "TEXTAREA", "SELECT", "NX-EDITOR"];
|
|
28516
|
-
|
|
28516
|
+
console.log(el.tagName);
|
|
28517
28517
|
if (inputTags.includes(el.tagName)) {
|
|
28518
28518
|
if (el.type === "checkbox" || el.type === "radio") {
|
|
28519
28519
|
const isChecked = (String(el.value) === String(value));
|
|
@@ -55197,6 +55197,7 @@ class nxEditor extends nxDiv {
|
|
|
55197
55197
|
return this.#editor.getHTML();
|
|
55198
55198
|
}
|
|
55199
55199
|
set value(v) {
|
|
55200
|
+
console.log(v);
|
|
55200
55201
|
this.#editor.commands.setContent(v || "", false);
|
|
55201
55202
|
}
|
|
55202
55203
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -28509,7 +28509,7 @@ class nxDiv extends HTMLElement {
|
|
|
28509
28509
|
const value = jsonData[key];
|
|
28510
28510
|
|
|
28511
28511
|
const inputTags = ["INPUT", "TEXTAREA", "SELECT", "NX-EDITOR"];
|
|
28512
|
-
|
|
28512
|
+
console.log(el.tagName);
|
|
28513
28513
|
if (inputTags.includes(el.tagName)) {
|
|
28514
28514
|
if (el.type === "checkbox" || el.type === "radio") {
|
|
28515
28515
|
const isChecked = (String(el.value) === String(value));
|
|
@@ -55193,6 +55193,7 @@ class nxEditor extends nxDiv {
|
|
|
55193
55193
|
return this.#editor.getHTML();
|
|
55194
55194
|
}
|
|
55195
55195
|
set value(v) {
|
|
55196
|
+
console.log(v);
|
|
55196
55197
|
this.#editor.commands.setContent(v || "", false);
|
|
55197
55198
|
}
|
|
55198
55199
|
|
package/dist/nx/_nxDiv.js
CHANGED
|
@@ -80,7 +80,7 @@ export class nxDiv extends HTMLElement {
|
|
|
80
80
|
const value = jsonData[key];
|
|
81
81
|
|
|
82
82
|
const inputTags = ["INPUT", "TEXTAREA", "SELECT", "NX-EDITOR"];
|
|
83
|
-
|
|
83
|
+
console.log(el.tagName)
|
|
84
84
|
if (inputTags.includes(el.tagName)) {
|
|
85
85
|
if (el.type === "checkbox" || el.type === "radio") {
|
|
86
86
|
const isChecked = (String(el.value) === String(value));
|
package/dist/nx/nxEditor.js
CHANGED
package/package.json
CHANGED
package/src/nx/_nxDiv.js
CHANGED
|
@@ -80,7 +80,7 @@ export class nxDiv extends HTMLElement {
|
|
|
80
80
|
const value = jsonData[key];
|
|
81
81
|
|
|
82
82
|
const inputTags = ["INPUT", "TEXTAREA", "SELECT", "NX-EDITOR"];
|
|
83
|
-
|
|
83
|
+
console.log(el.tagName)
|
|
84
84
|
if (inputTags.includes(el.tagName)) {
|
|
85
85
|
if (el.type === "checkbox" || el.type === "radio") {
|
|
86
86
|
const isChecked = (String(el.value) === String(value));
|