@techie_doubts/tui.editor.2026 3.2.2
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/README.md +176 -0
- package/dist/esm/i18n/ar.js +65 -0
- package/dist/esm/i18n/cs-cz.js +65 -0
- package/dist/esm/i18n/de-de.js +65 -0
- package/dist/esm/i18n/en-us.js +65 -0
- package/dist/esm/i18n/es-es.js +65 -0
- package/dist/esm/i18n/fi-fi.js +65 -0
- package/dist/esm/i18n/fr-fr.js +65 -0
- package/dist/esm/i18n/gl-es.js +65 -0
- package/dist/esm/i18n/hr-hr.js +65 -0
- package/dist/esm/i18n/i18n.js +116 -0
- package/dist/esm/i18n/it-it.js +65 -0
- package/dist/esm/i18n/ja-jp.js +65 -0
- package/dist/esm/i18n/ko-kr.js +65 -0
- package/dist/esm/i18n/nb-no.js +65 -0
- package/dist/esm/i18n/nl-nl.js +65 -0
- package/dist/esm/i18n/pl-pl.js +65 -0
- package/dist/esm/i18n/pt-br.js +65 -0
- package/dist/esm/i18n/ru-ru.js +66 -0
- package/dist/esm/i18n/sv-se.js +65 -0
- package/dist/esm/i18n/tr-tr.js +65 -0
- package/dist/esm/i18n/uk-ua.js +65 -0
- package/dist/esm/i18n/zh-cn.js +65 -0
- package/dist/esm/i18n/zh-tw.js +65 -0
- package/dist/esm/index.js +28323 -0
- package/dist/esm/indexViewer.js +12432 -0
- package/dist/i18n/ar.js +161 -0
- package/dist/i18n/cs-cz.js +161 -0
- package/dist/i18n/de-de.js +161 -0
- package/dist/i18n/es-es.js +161 -0
- package/dist/i18n/fi-fi.js +161 -0
- package/dist/i18n/fr-fr.js +161 -0
- package/dist/i18n/gl-es.js +161 -0
- package/dist/i18n/hr-hr.js +161 -0
- package/dist/i18n/it-it.js +161 -0
- package/dist/i18n/ja-jp.js +161 -0
- package/dist/i18n/ko-kr.js +161 -0
- package/dist/i18n/nb-no.js +161 -0
- package/dist/i18n/nl-nl.js +161 -0
- package/dist/i18n/pl-pl.js +161 -0
- package/dist/i18n/pt-br.js +161 -0
- package/dist/i18n/ru-ru.js +162 -0
- package/dist/i18n/sv-se.js +161 -0
- package/dist/i18n/tr-tr.js +161 -0
- package/dist/i18n/uk-ua.js +161 -0
- package/dist/i18n/zh-cn.js +161 -0
- package/dist/i18n/zh-tw.js +161 -0
- package/dist/td-editor-only.css +1148 -0
- package/dist/td-editor-viewer.css +591 -0
- package/dist/td-editor-viewer.js +13712 -0
- package/dist/td-editor.css +1777 -0
- package/dist/td-editor.js +29832 -0
- package/dist/theme/td-editor-dark.css +555 -0
- package/dist/theme/toastui-editor-dark.css +555 -0
- package/dist/toastui-editor-only.css +1148 -0
- package/dist/toastui-editor-viewer.css +591 -0
- package/dist/toastui-editor-viewer.js +13712 -0
- package/dist/toastui-editor.css +1777 -0
- package/dist/toastui-editor.js +29832 -0
- package/package.json +97 -0
- package/types/convertor.d.ts +142 -0
- package/types/editor.d.ts +383 -0
- package/types/event.d.ts +60 -0
- package/types/index.d.ts +70 -0
- package/types/map.d.ts +8 -0
- package/types/markdown.d.ts +60 -0
- package/types/plugin.d.ts +59 -0
- package/types/prosemirror-commands.d.ts +15 -0
- package/types/prosemirror-model.d.ts +15 -0
- package/types/prosemirror-transform.d.ts +35 -0
- package/types/spec.d.ts +43 -0
- package/types/toastmark.d.ts +361 -0
- package/types/toastui-editor-viewer.d.ts +39 -0
- package/types/ui.d.ts +171 -0
- package/types/wysiwyg.d.ts +46 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* TOAST UI Editor : i18n
|
|
3
|
+
* @version 3.2.2
|
|
4
|
+
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
8
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
9
|
+
module.exports = factory(require("@techie_doubts/tui.editor.2026"));
|
|
10
|
+
else if(typeof define === 'function' && define.amd)
|
|
11
|
+
define(["@techie_doubts/tui.editor.2026"], factory);
|
|
12
|
+
else {
|
|
13
|
+
var a = typeof exports === 'object' ? factory(require("@techie_doubts/tui.editor.2026")) : factory(root["toastui"]["Editor"]);
|
|
14
|
+
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
15
|
+
}
|
|
16
|
+
})(self, function(__WEBPACK_EXTERNAL_MODULE__724__) {
|
|
17
|
+
return /******/ (function() { // webpackBootstrap
|
|
18
|
+
/******/ "use strict";
|
|
19
|
+
/******/ var __webpack_modules__ = ({
|
|
20
|
+
|
|
21
|
+
/***/ 724:
|
|
22
|
+
/***/ (function(module) {
|
|
23
|
+
|
|
24
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__724__;
|
|
25
|
+
|
|
26
|
+
/***/ })
|
|
27
|
+
|
|
28
|
+
/******/ });
|
|
29
|
+
/************************************************************************/
|
|
30
|
+
/******/ // The module cache
|
|
31
|
+
/******/ var __webpack_module_cache__ = {};
|
|
32
|
+
/******/
|
|
33
|
+
/******/ // The require function
|
|
34
|
+
/******/ function __webpack_require__(moduleId) {
|
|
35
|
+
/******/ // Check if module is in cache
|
|
36
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
37
|
+
/******/ if (cachedModule !== undefined) {
|
|
38
|
+
/******/ return cachedModule.exports;
|
|
39
|
+
/******/ }
|
|
40
|
+
/******/ // Create a new module (and put it into the cache)
|
|
41
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
42
|
+
/******/ // no module.id needed
|
|
43
|
+
/******/ // no module.loaded needed
|
|
44
|
+
/******/ exports: {}
|
|
45
|
+
/******/ };
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Execute the module function
|
|
48
|
+
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/************************************************************************/
|
|
55
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
56
|
+
/******/ !function() {
|
|
57
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
58
|
+
/******/ __webpack_require__.n = function(module) {
|
|
59
|
+
/******/ var getter = module && module.__esModule ?
|
|
60
|
+
/******/ function() { return module['default']; } :
|
|
61
|
+
/******/ function() { return module; };
|
|
62
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
63
|
+
/******/ return getter;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/ }();
|
|
66
|
+
/******/
|
|
67
|
+
/******/ /* webpack/runtime/define property getters */
|
|
68
|
+
/******/ !function() {
|
|
69
|
+
/******/ // define getter functions for harmony exports
|
|
70
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
71
|
+
/******/ for(var key in definition) {
|
|
72
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
73
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
74
|
+
/******/ }
|
|
75
|
+
/******/ }
|
|
76
|
+
/******/ };
|
|
77
|
+
/******/ }();
|
|
78
|
+
/******/
|
|
79
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
80
|
+
/******/ !function() {
|
|
81
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
82
|
+
/******/ }();
|
|
83
|
+
/******/
|
|
84
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
85
|
+
/******/ !function() {
|
|
86
|
+
/******/ // define __esModule on exports
|
|
87
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
88
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
89
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
90
|
+
/******/ }
|
|
91
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
92
|
+
/******/ };
|
|
93
|
+
/******/ }();
|
|
94
|
+
/******/
|
|
95
|
+
/************************************************************************/
|
|
96
|
+
var __webpack_exports__ = {};
|
|
97
|
+
__webpack_require__.r(__webpack_exports__);
|
|
98
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(724);
|
|
99
|
+
/* harmony import */ var _editorCore__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_editorCore__WEBPACK_IMPORTED_MODULE_0__);
|
|
100
|
+
/**
|
|
101
|
+
* @fileoverview I18N for Traditional Chinese
|
|
102
|
+
* @author Tzu-Ray Su <raysu3329@gmail.com>
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
_editorCore__WEBPACK_IMPORTED_MODULE_0___default().setLanguage('zh-TW', {
|
|
106
|
+
Markdown: 'Markdown',
|
|
107
|
+
WYSIWYG: '所見即所得',
|
|
108
|
+
Write: '編輯',
|
|
109
|
+
Preview: '預覽',
|
|
110
|
+
Headings: '標題',
|
|
111
|
+
Paragraph: '內文',
|
|
112
|
+
Bold: '粗體',
|
|
113
|
+
Italic: '斜體',
|
|
114
|
+
Strike: '刪除線',
|
|
115
|
+
Code: '內嵌程式碼',
|
|
116
|
+
Line: '分隔線',
|
|
117
|
+
Blockquote: '引言',
|
|
118
|
+
'Unordered list': '項目符號清單',
|
|
119
|
+
'Ordered list': '編號清單',
|
|
120
|
+
Task: '核取方塊清單',
|
|
121
|
+
Indent: '增加縮排',
|
|
122
|
+
Outdent: '減少縮排',
|
|
123
|
+
'Insert link': '插入超連結',
|
|
124
|
+
'Insert anchor': 'Insert anchor',
|
|
125
|
+
'Anchor ID': 'Anchor ID',
|
|
126
|
+
'Insert CodeBlock': '插入程式碼區塊',
|
|
127
|
+
'Insert table': '插入表格',
|
|
128
|
+
'Insert image': '插入圖片',
|
|
129
|
+
Heading: '標題',
|
|
130
|
+
'Image URL': '圖片網址',
|
|
131
|
+
'Select image file': '選擇圖片檔案',
|
|
132
|
+
'Choose a file': '選擇一個文件',
|
|
133
|
+
'No file': '沒有文件',
|
|
134
|
+
Description: '描述',
|
|
135
|
+
OK: '確認',
|
|
136
|
+
More: '更多',
|
|
137
|
+
Cancel: '取消',
|
|
138
|
+
File: '檔案',
|
|
139
|
+
URL: 'URL',
|
|
140
|
+
'Link text': '超連結文字',
|
|
141
|
+
'Add row to up': '向上添加行',
|
|
142
|
+
'Add row to down': '在下方添加行',
|
|
143
|
+
'Add column to left': '在左側添加列',
|
|
144
|
+
'Add column to right': '在右側添加列',
|
|
145
|
+
'Remove row': '刪除行',
|
|
146
|
+
'Remove column': '刪除列',
|
|
147
|
+
'Align column to left': '靠左對齊',
|
|
148
|
+
'Align column to center': '置中',
|
|
149
|
+
'Align column to right': '靠右對齊',
|
|
150
|
+
'Remove table': '刪除表格',
|
|
151
|
+
'Would you like to paste as table?': '您要以表格貼上嗎?',
|
|
152
|
+
'Text color': '文字顏色',
|
|
153
|
+
'Auto scroll enabled': '已啟用自動滾動',
|
|
154
|
+
'Auto scroll disabled': '已停用自動滾動',
|
|
155
|
+
'Choose language': '選擇語言',
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
/******/ return __webpack_exports__;
|
|
159
|
+
/******/ })()
|
|
160
|
+
;
|
|
161
|
+
});
|