ninegrid2 6.1342.0 → 6.1344.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 +18 -23
- package/dist/bundle.esm.js +18 -23
- package/dist/nx/nxEditor.js +18 -23
- package/package.json +1 -1
- package/src/nx/nxEditor.js +18 -23
package/dist/bundle.cjs.js
CHANGED
|
@@ -55262,12 +55262,12 @@ class nxEditor extends nxDiv {
|
|
|
55262
55262
|
</style>
|
|
55263
55263
|
|
|
55264
55264
|
<div class="menu-bar">
|
|
55265
|
-
<button type="button" data-cmd="bold" title="
|
|
55266
|
-
<button type="button" data-cmd="italic" title="
|
|
55267
|
-
<button type="button" data-cmd="underline" title="
|
|
55268
|
-
<button type="button" data-cmd="strike" title="
|
|
55269
|
-
|
|
55270
|
-
<select id="font-size">
|
|
55265
|
+
<button type="button" data-cmd="bold" title="굵게 (Ctrl+B)"><b>B</b></button>
|
|
55266
|
+
<button type="button" data-cmd="italic" title="기울임 (Ctrl+I)"><em>I</em></button>
|
|
55267
|
+
<button type="button" data-cmd="underline" title="밑줄 (Ctrl+U)"><u>U</u></button>
|
|
55268
|
+
<button type="button" data-cmd="strike" title="취소선"><s>S</s></button>
|
|
55269
|
+
|
|
55270
|
+
<select id="font-size" title="글자 크기">
|
|
55271
55271
|
<option value="12px">12px</option>
|
|
55272
55272
|
<option value="14px" selected>14px</option>
|
|
55273
55273
|
<option value="16px">16px</option>
|
|
@@ -55275,26 +55275,21 @@ class nxEditor extends nxDiv {
|
|
|
55275
55275
|
<option value="24px">24px</option>
|
|
55276
55276
|
<option value="32px">32px</option>
|
|
55277
55277
|
</select>
|
|
55278
|
-
|
|
55279
|
-
<input type="color" id="color-picker" title="Text Color">
|
|
55280
|
-
|
|
55281
|
-
<button type="button" data-cmd="highlight" title="highlight">
|
|
55282
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16">
|
|
55283
|
-
<path fill-rule="evenodd" d="M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z"/>
|
|
55284
|
-
</svg>
|
|
55285
|
-
</button>
|
|
55286
|
-
|
|
55287
|
-
<button type="button" id="icon-left" data-align="left" title="left" />
|
|
55288
|
-
<button type="button" data-align="center" title="center">Center</button>
|
|
55289
|
-
<button type="button" data-align="right" title="right">Right</button>
|
|
55290
55278
|
|
|
55291
|
-
<
|
|
55292
|
-
|
|
55279
|
+
<input type="color" id="color-picker" title="글자 색상">
|
|
55280
|
+
|
|
55281
|
+
<button type="button" data-cmd="highlight" title="형광펜"><i class="icon-highlight"></i></button>
|
|
55282
|
+
|
|
55283
|
+
<button type="button" data-align="left" title="왼쪽 정렬"><i class="icon-left"></i></button>
|
|
55284
|
+
<button type="button" data-align="center" title="가운데 정렬"><i class="icon-center"></i></button>
|
|
55285
|
+
<button type="button" data-align="right" title="오른쪽 정렬"><i class="icon-right"></i></button>
|
|
55293
55286
|
|
|
55294
|
-
<button type="button"
|
|
55287
|
+
<button type="button" data-cmd="bulletList" title="글머리 기호"><i class="icon-ul"></i></button>
|
|
55288
|
+
<button type="button" data-cmd="orderedList" title="번호 매기기"><i class="icon-ol"></i></button>
|
|
55295
55289
|
|
|
55296
|
-
<button type="button"
|
|
55297
|
-
<button type="button" data-cmd="
|
|
55290
|
+
<button type="button" id="img-btn" title="이미지 삽입"><i class="icon-image"></i></button>
|
|
55291
|
+
<button type="button" data-cmd="undo" title="실행 취소(Ctrl+Z)"><i class="icon-undo"></i></button>
|
|
55292
|
+
<button type="button" data-cmd="redo" title="다시 실행(Ctrl+Y)"><i class="icon-redo"></i></button>
|
|
55298
55293
|
</div>
|
|
55299
55294
|
<div id="editor-container"></div>
|
|
55300
55295
|
`;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -55258,12 +55258,12 @@ class nxEditor extends nxDiv {
|
|
|
55258
55258
|
</style>
|
|
55259
55259
|
|
|
55260
55260
|
<div class="menu-bar">
|
|
55261
|
-
<button type="button" data-cmd="bold" title="
|
|
55262
|
-
<button type="button" data-cmd="italic" title="
|
|
55263
|
-
<button type="button" data-cmd="underline" title="
|
|
55264
|
-
<button type="button" data-cmd="strike" title="
|
|
55265
|
-
|
|
55266
|
-
<select id="font-size">
|
|
55261
|
+
<button type="button" data-cmd="bold" title="굵게 (Ctrl+B)"><b>B</b></button>
|
|
55262
|
+
<button type="button" data-cmd="italic" title="기울임 (Ctrl+I)"><em>I</em></button>
|
|
55263
|
+
<button type="button" data-cmd="underline" title="밑줄 (Ctrl+U)"><u>U</u></button>
|
|
55264
|
+
<button type="button" data-cmd="strike" title="취소선"><s>S</s></button>
|
|
55265
|
+
|
|
55266
|
+
<select id="font-size" title="글자 크기">
|
|
55267
55267
|
<option value="12px">12px</option>
|
|
55268
55268
|
<option value="14px" selected>14px</option>
|
|
55269
55269
|
<option value="16px">16px</option>
|
|
@@ -55271,26 +55271,21 @@ class nxEditor extends nxDiv {
|
|
|
55271
55271
|
<option value="24px">24px</option>
|
|
55272
55272
|
<option value="32px">32px</option>
|
|
55273
55273
|
</select>
|
|
55274
|
-
|
|
55275
|
-
<input type="color" id="color-picker" title="Text Color">
|
|
55276
|
-
|
|
55277
|
-
<button type="button" data-cmd="highlight" title="highlight">
|
|
55278
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16">
|
|
55279
|
-
<path fill-rule="evenodd" d="M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z"/>
|
|
55280
|
-
</svg>
|
|
55281
|
-
</button>
|
|
55282
|
-
|
|
55283
|
-
<button type="button" id="icon-left" data-align="left" title="left" />
|
|
55284
|
-
<button type="button" data-align="center" title="center">Center</button>
|
|
55285
|
-
<button type="button" data-align="right" title="right">Right</button>
|
|
55286
55274
|
|
|
55287
|
-
<
|
|
55288
|
-
|
|
55275
|
+
<input type="color" id="color-picker" title="글자 색상">
|
|
55276
|
+
|
|
55277
|
+
<button type="button" data-cmd="highlight" title="형광펜"><i class="icon-highlight"></i></button>
|
|
55278
|
+
|
|
55279
|
+
<button type="button" data-align="left" title="왼쪽 정렬"><i class="icon-left"></i></button>
|
|
55280
|
+
<button type="button" data-align="center" title="가운데 정렬"><i class="icon-center"></i></button>
|
|
55281
|
+
<button type="button" data-align="right" title="오른쪽 정렬"><i class="icon-right"></i></button>
|
|
55289
55282
|
|
|
55290
|
-
<button type="button"
|
|
55283
|
+
<button type="button" data-cmd="bulletList" title="글머리 기호"><i class="icon-ul"></i></button>
|
|
55284
|
+
<button type="button" data-cmd="orderedList" title="번호 매기기"><i class="icon-ol"></i></button>
|
|
55291
55285
|
|
|
55292
|
-
<button type="button"
|
|
55293
|
-
<button type="button" data-cmd="
|
|
55286
|
+
<button type="button" id="img-btn" title="이미지 삽입"><i class="icon-image"></i></button>
|
|
55287
|
+
<button type="button" data-cmd="undo" title="실행 취소(Ctrl+Z)"><i class="icon-undo"></i></button>
|
|
55288
|
+
<button type="button" data-cmd="redo" title="다시 실행(Ctrl+Y)"><i class="icon-redo"></i></button>
|
|
55294
55289
|
</div>
|
|
55295
55290
|
<div id="editor-container"></div>
|
|
55296
55291
|
`;
|
package/dist/nx/nxEditor.js
CHANGED
|
@@ -74,12 +74,12 @@ class nxEditor extends nxDiv {
|
|
|
74
74
|
</style>
|
|
75
75
|
|
|
76
76
|
<div class="menu-bar">
|
|
77
|
-
<button type="button" data-cmd="bold" title="
|
|
78
|
-
<button type="button" data-cmd="italic" title="
|
|
79
|
-
<button type="button" data-cmd="underline" title="
|
|
80
|
-
<button type="button" data-cmd="strike" title="
|
|
81
|
-
|
|
82
|
-
<select id="font-size">
|
|
77
|
+
<button type="button" data-cmd="bold" title="굵게 (Ctrl+B)"><b>B</b></button>
|
|
78
|
+
<button type="button" data-cmd="italic" title="기울임 (Ctrl+I)"><em>I</em></button>
|
|
79
|
+
<button type="button" data-cmd="underline" title="밑줄 (Ctrl+U)"><u>U</u></button>
|
|
80
|
+
<button type="button" data-cmd="strike" title="취소선"><s>S</s></button>
|
|
81
|
+
|
|
82
|
+
<select id="font-size" title="글자 크기">
|
|
83
83
|
<option value="12px">12px</option>
|
|
84
84
|
<option value="14px" selected>14px</option>
|
|
85
85
|
<option value="16px">16px</option>
|
|
@@ -87,26 +87,21 @@ class nxEditor extends nxDiv {
|
|
|
87
87
|
<option value="24px">24px</option>
|
|
88
88
|
<option value="32px">32px</option>
|
|
89
89
|
</select>
|
|
90
|
-
|
|
91
|
-
<input type="color" id="color-picker" title="Text Color">
|
|
92
|
-
|
|
93
|
-
<button type="button" data-cmd="highlight" title="highlight">
|
|
94
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16">
|
|
95
|
-
<path fill-rule="evenodd" d="M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z"/>
|
|
96
|
-
</svg>
|
|
97
|
-
</button>
|
|
98
|
-
|
|
99
|
-
<button type="button" id="icon-left" data-align="left" title="left" />
|
|
100
|
-
<button type="button" data-align="center" title="center">Center</button>
|
|
101
|
-
<button type="button" data-align="right" title="right">Right</button>
|
|
102
90
|
|
|
103
|
-
<
|
|
104
|
-
|
|
91
|
+
<input type="color" id="color-picker" title="글자 색상">
|
|
92
|
+
|
|
93
|
+
<button type="button" data-cmd="highlight" title="형광펜"><i class="icon-highlight"></i></button>
|
|
94
|
+
|
|
95
|
+
<button type="button" data-align="left" title="왼쪽 정렬"><i class="icon-left"></i></button>
|
|
96
|
+
<button type="button" data-align="center" title="가운데 정렬"><i class="icon-center"></i></button>
|
|
97
|
+
<button type="button" data-align="right" title="오른쪽 정렬"><i class="icon-right"></i></button>
|
|
105
98
|
|
|
106
|
-
<button type="button"
|
|
99
|
+
<button type="button" data-cmd="bulletList" title="글머리 기호"><i class="icon-ul"></i></button>
|
|
100
|
+
<button type="button" data-cmd="orderedList" title="번호 매기기"><i class="icon-ol"></i></button>
|
|
107
101
|
|
|
108
|
-
<button type="button"
|
|
109
|
-
<button type="button" data-cmd="
|
|
102
|
+
<button type="button" id="img-btn" title="이미지 삽입"><i class="icon-image"></i></button>
|
|
103
|
+
<button type="button" data-cmd="undo" title="실행 취소(Ctrl+Z)"><i class="icon-undo"></i></button>
|
|
104
|
+
<button type="button" data-cmd="redo" title="다시 실행(Ctrl+Y)"><i class="icon-redo"></i></button>
|
|
110
105
|
</div>
|
|
111
106
|
<div id="editor-container"></div>
|
|
112
107
|
`;
|
package/package.json
CHANGED
package/src/nx/nxEditor.js
CHANGED
|
@@ -74,12 +74,12 @@ class nxEditor extends nxDiv {
|
|
|
74
74
|
</style>
|
|
75
75
|
|
|
76
76
|
<div class="menu-bar">
|
|
77
|
-
<button type="button" data-cmd="bold" title="
|
|
78
|
-
<button type="button" data-cmd="italic" title="
|
|
79
|
-
<button type="button" data-cmd="underline" title="
|
|
80
|
-
<button type="button" data-cmd="strike" title="
|
|
81
|
-
|
|
82
|
-
<select id="font-size">
|
|
77
|
+
<button type="button" data-cmd="bold" title="굵게 (Ctrl+B)"><b>B</b></button>
|
|
78
|
+
<button type="button" data-cmd="italic" title="기울임 (Ctrl+I)"><em>I</em></button>
|
|
79
|
+
<button type="button" data-cmd="underline" title="밑줄 (Ctrl+U)"><u>U</u></button>
|
|
80
|
+
<button type="button" data-cmd="strike" title="취소선"><s>S</s></button>
|
|
81
|
+
|
|
82
|
+
<select id="font-size" title="글자 크기">
|
|
83
83
|
<option value="12px">12px</option>
|
|
84
84
|
<option value="14px" selected>14px</option>
|
|
85
85
|
<option value="16px">16px</option>
|
|
@@ -87,26 +87,21 @@ class nxEditor extends nxDiv {
|
|
|
87
87
|
<option value="24px">24px</option>
|
|
88
88
|
<option value="32px">32px</option>
|
|
89
89
|
</select>
|
|
90
|
-
|
|
91
|
-
<input type="color" id="color-picker" title="Text Color">
|
|
92
|
-
|
|
93
|
-
<button type="button" data-cmd="highlight" title="highlight">
|
|
94
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-highlighter" viewBox="0 0 16 16">
|
|
95
|
-
<path fill-rule="evenodd" d="M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z"/>
|
|
96
|
-
</svg>
|
|
97
|
-
</button>
|
|
98
|
-
|
|
99
|
-
<button type="button" id="icon-left" data-align="left" title="left" />
|
|
100
|
-
<button type="button" data-align="center" title="center">Center</button>
|
|
101
|
-
<button type="button" data-align="right" title="right">Right</button>
|
|
102
90
|
|
|
103
|
-
<
|
|
104
|
-
|
|
91
|
+
<input type="color" id="color-picker" title="글자 색상">
|
|
92
|
+
|
|
93
|
+
<button type="button" data-cmd="highlight" title="형광펜"><i class="icon-highlight"></i></button>
|
|
94
|
+
|
|
95
|
+
<button type="button" data-align="left" title="왼쪽 정렬"><i class="icon-left"></i></button>
|
|
96
|
+
<button type="button" data-align="center" title="가운데 정렬"><i class="icon-center"></i></button>
|
|
97
|
+
<button type="button" data-align="right" title="오른쪽 정렬"><i class="icon-right"></i></button>
|
|
105
98
|
|
|
106
|
-
<button type="button"
|
|
99
|
+
<button type="button" data-cmd="bulletList" title="글머리 기호"><i class="icon-ul"></i></button>
|
|
100
|
+
<button type="button" data-cmd="orderedList" title="번호 매기기"><i class="icon-ol"></i></button>
|
|
107
101
|
|
|
108
|
-
<button type="button"
|
|
109
|
-
<button type="button" data-cmd="
|
|
102
|
+
<button type="button" id="img-btn" title="이미지 삽입"><i class="icon-image"></i></button>
|
|
103
|
+
<button type="button" data-cmd="undo" title="실행 취소(Ctrl+Z)"><i class="icon-undo"></i></button>
|
|
104
|
+
<button type="button" data-cmd="redo" title="다시 실행(Ctrl+Y)"><i class="icon-redo"></i></button>
|
|
110
105
|
</div>
|
|
111
106
|
<div id="editor-container"></div>
|
|
112
107
|
`;
|