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.
@@ -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
 
@@ -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));
@@ -30,6 +30,7 @@ class nxEditor extends nxDiv {
30
30
  return this.#editor.getHTML();
31
31
  }
32
32
  set value(v) {
33
+ console.log(v);
33
34
  this.#editor.commands.setContent(v || "", false);
34
35
  }
35
36
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1318.0",
4
+ "version": "6.1320.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
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));
@@ -30,6 +30,7 @@ class nxEditor extends nxDiv {
30
30
  return this.#editor.getHTML();
31
31
  }
32
32
  set value(v) {
33
+ console.log(v);
33
34
  this.#editor.commands.setContent(v || "", false);
34
35
  }
35
36