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.
- package/dist/bundle.cjs.js +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/nx/nxEditor.js +1 -1
- package/package.json +1 -1
- package/src/nx/nxEditor.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
|
package/dist/nx/nxEditor.js
CHANGED
package/package.json
CHANGED