ninegrid2 6.1277.0 → 6.1279.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
|
@@ -122494,6 +122494,7 @@ class nxEditor extends nxDiv {
|
|
|
122494
122494
|
const htmlTmpl = document.createElement("template");
|
|
122495
122495
|
htmlTmpl.innerHTML = `
|
|
122496
122496
|
<style>
|
|
122497
|
+
@import "https://cdn.ckeditor.com/ckeditor5/44.1.0/ckeditor5.css";
|
|
122497
122498
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxEditor.css";
|
|
122498
122499
|
${ninegrid.getCustomPath(this,"nxEditor.css")}
|
|
122499
122500
|
</style>
|
|
@@ -122504,7 +122505,6 @@ class nxEditor extends nxDiv {
|
|
|
122504
122505
|
this.root.appendChild(htmlTmpl.content.cloneNode(true));
|
|
122505
122506
|
|
|
122506
122507
|
const textarea = this.root.querySelector("textarea");
|
|
122507
|
-
console.log(this.root, textarea);
|
|
122508
122508
|
|
|
122509
122509
|
// use-shadow="false" 권장 (CKEditor의 UI 레이아웃 때문)
|
|
122510
122510
|
//const target = this.root;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -122490,6 +122490,7 @@ class nxEditor extends nxDiv {
|
|
|
122490
122490
|
const htmlTmpl = document.createElement("template");
|
|
122491
122491
|
htmlTmpl.innerHTML = `
|
|
122492
122492
|
<style>
|
|
122493
|
+
@import "https://cdn.ckeditor.com/ckeditor5/44.1.0/ckeditor5.css";
|
|
122493
122494
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxEditor.css";
|
|
122494
122495
|
${ninegrid.getCustomPath(this,"nxEditor.css")}
|
|
122495
122496
|
</style>
|
|
@@ -122500,7 +122501,6 @@ class nxEditor extends nxDiv {
|
|
|
122500
122501
|
this.root.appendChild(htmlTmpl.content.cloneNode(true));
|
|
122501
122502
|
|
|
122502
122503
|
const textarea = this.root.querySelector("textarea");
|
|
122503
|
-
console.log(this.root, textarea);
|
|
122504
122504
|
|
|
122505
122505
|
// use-shadow="false" 권장 (CKEditor의 UI 레이아웃 때문)
|
|
122506
122506
|
//const target = this.root;
|
package/dist/nx/nxEditor.js
CHANGED
|
@@ -18,6 +18,7 @@ class nxEditor extends nxDiv {
|
|
|
18
18
|
const htmlTmpl = document.createElement("template");
|
|
19
19
|
htmlTmpl.innerHTML = `
|
|
20
20
|
<style>
|
|
21
|
+
@import "https://cdn.ckeditor.com/ckeditor5/44.1.0/ckeditor5.css";
|
|
21
22
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxEditor.css";
|
|
22
23
|
${ninegrid.getCustomPath(this,"nxEditor.css")}
|
|
23
24
|
</style>
|
|
@@ -28,7 +29,6 @@ class nxEditor extends nxDiv {
|
|
|
28
29
|
this.root.appendChild(htmlTmpl.content.cloneNode(true));
|
|
29
30
|
|
|
30
31
|
const textarea = this.root.querySelector("textarea");
|
|
31
|
-
console.log(this.root, textarea);
|
|
32
32
|
|
|
33
33
|
// use-shadow="false" 권장 (CKEditor의 UI 레이아웃 때문)
|
|
34
34
|
//const target = this.root;
|
package/package.json
CHANGED
package/src/nx/nxEditor.js
CHANGED
|
@@ -18,6 +18,7 @@ class nxEditor extends nxDiv {
|
|
|
18
18
|
const htmlTmpl = document.createElement("template");
|
|
19
19
|
htmlTmpl.innerHTML = `
|
|
20
20
|
<style>
|
|
21
|
+
@import "https://cdn.ckeditor.com/ckeditor5/44.1.0/ckeditor5.css";
|
|
21
22
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/nxEditor.css";
|
|
22
23
|
${ninegrid.getCustomPath(this,"nxEditor.css")}
|
|
23
24
|
</style>
|
|
@@ -28,7 +29,6 @@ class nxEditor extends nxDiv {
|
|
|
28
29
|
this.root.appendChild(htmlTmpl.content.cloneNode(true));
|
|
29
30
|
|
|
30
31
|
const textarea = this.root.querySelector("textarea");
|
|
31
|
-
console.log(this.root, textarea);
|
|
32
32
|
|
|
33
33
|
// use-shadow="false" 권장 (CKEditor의 UI 레이아웃 때문)
|
|
34
34
|
//const target = this.root;
|