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