ninegrid2 6.1333.0 → 6.1335.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 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/nxEditor.js +2 -0
- package/package.json +1 -1
- package/src/nx/nxEditor.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -55356,7 +55356,9 @@ class nxEditor extends nxDiv {
|
|
|
55356
55356
|
|
|
55357
55357
|
// 현재 선택 영역의 폰트 사이즈를 가져와 셀렉트 박스에 반영
|
|
55358
55358
|
const fontSize = editor.getAttributes('textStyle').fontSize;
|
|
55359
|
+
console.log(fontSize);
|
|
55359
55360
|
const select = this.shadowRoot.querySelector('#font-size');
|
|
55361
|
+
console.log(select);
|
|
55360
55362
|
if (fontSize) {
|
|
55361
55363
|
select.value = fontSize;
|
|
55362
55364
|
} else {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -55352,7 +55352,9 @@ class nxEditor extends nxDiv {
|
|
|
55352
55352
|
|
|
55353
55353
|
// 현재 선택 영역의 폰트 사이즈를 가져와 셀렉트 박스에 반영
|
|
55354
55354
|
const fontSize = editor.getAttributes('textStyle').fontSize;
|
|
55355
|
+
console.log(fontSize);
|
|
55355
55356
|
const select = this.shadowRoot.querySelector('#font-size');
|
|
55357
|
+
console.log(select);
|
|
55356
55358
|
if (fontSize) {
|
|
55357
55359
|
select.value = fontSize;
|
|
55358
55360
|
} else {
|
package/dist/nx/nxEditor.js
CHANGED
|
@@ -168,7 +168,9 @@ class nxEditor extends nxDiv {
|
|
|
168
168
|
|
|
169
169
|
// 현재 선택 영역의 폰트 사이즈를 가져와 셀렉트 박스에 반영
|
|
170
170
|
const fontSize = editor.getAttributes('textStyle').fontSize;
|
|
171
|
+
console.log(fontSize);
|
|
171
172
|
const select = this.shadowRoot.querySelector('#font-size');
|
|
173
|
+
console.log(select);
|
|
172
174
|
if (fontSize) {
|
|
173
175
|
select.value = fontSize;
|
|
174
176
|
} else {
|
package/package.json
CHANGED
package/src/nx/nxEditor.js
CHANGED
|
@@ -168,7 +168,9 @@ class nxEditor extends nxDiv {
|
|
|
168
168
|
|
|
169
169
|
// 현재 선택 영역의 폰트 사이즈를 가져와 셀렉트 박스에 반영
|
|
170
170
|
const fontSize = editor.getAttributes('textStyle').fontSize;
|
|
171
|
+
console.log(fontSize);
|
|
171
172
|
const select = this.shadowRoot.querySelector('#font-size');
|
|
173
|
+
console.log(select);
|
|
172
174
|
if (fontSize) {
|
|
173
175
|
select.value = fontSize;
|
|
174
176
|
} else {
|