suneditor 3.0.0-beta.2 → 3.0.0-beta.20
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/CONTRIBUTING.md +186 -184
- package/LICENSE +21 -21
- package/README.md +157 -180
- package/dist/suneditor.min.css +1 -1
- package/dist/suneditor.min.js +1 -1
- package/package.json +126 -123
- package/src/assets/design/color.css +131 -121
- package/src/assets/design/index.css +3 -3
- package/src/assets/design/size.css +37 -35
- package/src/assets/design/typography.css +37 -37
- package/src/assets/icons/defaultIcons.js +247 -232
- package/src/assets/suneditor-contents.css +779 -778
- package/src/assets/suneditor.css +43 -35
- package/src/core/base/eventHandlers/handler_toolbar.js +135 -135
- package/src/core/base/eventHandlers/handler_ww_clipboard.js +56 -56
- package/src/core/base/eventHandlers/handler_ww_dragDrop.js +115 -113
- package/src/core/base/eventHandlers/handler_ww_key_input.js +1200 -1200
- package/src/core/base/eventHandlers/handler_ww_mouse.js +194 -194
- package/src/core/base/eventManager.js +1550 -1484
- package/src/core/base/history.js +355 -355
- package/src/core/class/char.js +163 -162
- package/src/core/class/component.js +856 -842
- package/src/core/class/format.js +3433 -3422
- package/src/core/class/html.js +1927 -1890
- package/src/core/class/menu.js +357 -346
- package/src/core/class/nodeTransform.js +424 -424
- package/src/core/class/offset.js +858 -891
- package/src/core/class/selection.js +710 -620
- package/src/core/class/shortcuts.js +98 -98
- package/src/core/class/toolbar.js +438 -430
- package/src/core/class/ui.js +424 -422
- package/src/core/class/viewer.js +750 -750
- package/src/core/editor.js +1810 -1708
- package/src/core/section/actives.js +268 -241
- package/src/core/section/constructor.js +1348 -1661
- package/src/core/section/context.js +102 -102
- package/src/core/section/documentType.js +582 -561
- package/src/core/section/options.js +367 -0
- package/src/core/util/instanceCheck.js +59 -0
- package/src/editorInjector/_classes.js +36 -36
- package/src/editorInjector/_core.js +92 -92
- package/src/editorInjector/index.js +75 -75
- package/src/events.js +634 -622
- package/src/helper/clipboard.js +59 -59
- package/src/helper/converter.js +586 -564
- package/src/helper/dom/domCheck.js +304 -304
- package/src/helper/dom/domQuery.js +677 -669
- package/src/helper/dom/domUtils.js +618 -557
- package/src/helper/dom/index.js +12 -12
- package/src/helper/env.js +249 -240
- package/src/helper/index.js +25 -25
- package/src/helper/keyCodeMap.js +183 -183
- package/src/helper/numbers.js +72 -72
- package/src/helper/unicode.js +47 -47
- package/src/langs/ckb.js +231 -231
- package/src/langs/cs.js +231 -231
- package/src/langs/da.js +231 -231
- package/src/langs/de.js +231 -231
- package/src/langs/en.js +230 -230
- package/src/langs/es.js +231 -231
- package/src/langs/fa.js +231 -231
- package/src/langs/fr.js +231 -231
- package/src/langs/he.js +231 -231
- package/src/langs/hu.js +230 -230
- package/src/langs/index.js +28 -28
- package/src/langs/it.js +231 -231
- package/src/langs/ja.js +230 -230
- package/src/langs/km.js +230 -230
- package/src/langs/ko.js +230 -230
- package/src/langs/lv.js +231 -231
- package/src/langs/nl.js +231 -231
- package/src/langs/pl.js +231 -231
- package/src/langs/pt_br.js +231 -231
- package/src/langs/ro.js +231 -231
- package/src/langs/ru.js +231 -231
- package/src/langs/se.js +231 -231
- package/src/langs/tr.js +231 -231
- package/src/langs/uk.js +231 -231
- package/src/langs/ur.js +231 -231
- package/src/langs/zh_cn.js +231 -231
- package/src/modules/ApiManager.js +191 -191
- package/src/modules/Browser.js +669 -667
- package/src/modules/ColorPicker.js +364 -362
- package/src/modules/Controller.js +474 -454
- package/src/modules/Figure.js +1620 -1617
- package/src/modules/FileManager.js +359 -359
- package/src/modules/HueSlider.js +577 -565
- package/src/modules/Modal.js +346 -346
- package/src/modules/ModalAnchorEditor.js +643 -643
- package/src/modules/SelectMenu.js +549 -549
- package/src/modules/_DragHandle.js +17 -17
- package/src/modules/index.js +14 -14
- package/src/plugins/browser/audioGallery.js +83 -83
- package/src/plugins/browser/fileBrowser.js +103 -103
- package/src/plugins/browser/fileGallery.js +83 -83
- package/src/plugins/browser/imageGallery.js +81 -81
- package/src/plugins/browser/videoGallery.js +103 -103
- package/src/plugins/command/blockquote.js +61 -60
- package/src/plugins/command/exportPDF.js +134 -134
- package/src/plugins/command/fileUpload.js +456 -456
- package/src/plugins/command/list_bulleted.js +149 -148
- package/src/plugins/command/list_numbered.js +152 -151
- package/src/plugins/dropdown/align.js +157 -155
- package/src/plugins/dropdown/backgroundColor.js +108 -104
- package/src/plugins/dropdown/font.js +141 -137
- package/src/plugins/dropdown/fontColor.js +109 -105
- package/src/plugins/dropdown/formatBlock.js +170 -178
- package/src/plugins/dropdown/hr.js +152 -152
- package/src/plugins/dropdown/layout.js +83 -83
- package/src/plugins/dropdown/lineHeight.js +131 -130
- package/src/plugins/dropdown/list.js +123 -122
- package/src/plugins/dropdown/paragraphStyle.js +138 -138
- package/src/plugins/dropdown/table.js +4110 -4000
- package/src/plugins/dropdown/template.js +83 -83
- package/src/plugins/dropdown/textStyle.js +149 -149
- package/src/plugins/field/mention.js +242 -242
- package/src/plugins/index.js +120 -120
- package/src/plugins/input/fontSize.js +414 -410
- package/src/plugins/input/pageNavigator.js +71 -70
- package/src/plugins/modal/audio.js +677 -677
- package/src/plugins/modal/drawing.js +537 -531
- package/src/plugins/modal/embed.js +886 -886
- package/src/plugins/modal/image.js +1377 -1376
- package/src/plugins/modal/link.js +248 -240
- package/src/plugins/modal/math.js +563 -563
- package/src/plugins/modal/video.js +1226 -1226
- package/src/plugins/popup/anchor.js +224 -222
- package/src/suneditor.js +114 -107
- package/src/themes/dark.css +132 -122
- package/src/typedef.js +132 -130
- package/types/assets/icons/defaultIcons.d.ts +8 -0
- package/types/core/base/eventManager.d.ts +29 -4
- package/types/core/class/char.d.ts +2 -1
- package/types/core/class/component.d.ts +1 -2
- package/types/core/class/format.d.ts +8 -1
- package/types/core/class/html.d.ts +8 -0
- package/types/core/class/menu.d.ts +8 -0
- package/types/core/class/offset.d.ts +24 -26
- package/types/core/class/selection.d.ts +2 -0
- package/types/core/class/toolbar.d.ts +6 -0
- package/types/core/class/ui.d.ts +1 -1
- package/types/core/editor.d.ts +34 -12
- package/types/core/section/constructor.d.ts +5 -638
- package/types/core/section/documentType.d.ts +12 -2
- package/types/core/section/options.d.ts +740 -0
- package/types/core/util/instanceCheck.d.ts +50 -0
- package/types/editorInjector/_core.d.ts +5 -5
- package/types/editorInjector/index.d.ts +2 -2
- package/types/events.d.ts +2 -0
- package/types/helper/converter.d.ts +9 -0
- package/types/helper/dom/domQuery.d.ts +5 -5
- package/types/helper/dom/domUtils.d.ts +8 -0
- package/types/helper/env.d.ts +6 -1
- package/types/helper/index.d.ts +4 -1
- package/types/index.d.ts +122 -120
- package/types/langs/_Lang.d.ts +194 -194
- package/types/modules/ColorPicker.d.ts +5 -1
- package/types/modules/Controller.d.ts +8 -4
- package/types/modules/Figure.d.ts +2 -1
- package/types/modules/HueSlider.d.ts +4 -1
- package/types/modules/SelectMenu.d.ts +1 -1
- package/types/plugins/command/blockquote.d.ts +1 -0
- package/types/plugins/command/list_bulleted.d.ts +1 -0
- package/types/plugins/command/list_numbered.d.ts +1 -0
- package/types/plugins/dropdown/align.d.ts +1 -0
- package/types/plugins/dropdown/backgroundColor.d.ts +1 -0
- package/types/plugins/dropdown/font.d.ts +1 -0
- package/types/plugins/dropdown/fontColor.d.ts +1 -0
- package/types/plugins/dropdown/formatBlock.d.ts +3 -2
- package/types/plugins/dropdown/lineHeight.d.ts +1 -0
- package/types/plugins/dropdown/list.d.ts +1 -0
- package/types/plugins/dropdown/table.d.ts +6 -0
- package/types/plugins/input/fontSize.d.ts +1 -0
- package/types/plugins/modal/drawing.d.ts +4 -0
- package/types/plugins/modal/link.d.ts +32 -15
- package/types/suneditor.d.ts +13 -9
- package/types/typedef.d.ts +8 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export default InstanceCheck;
|
|
2
|
+
export type InstanceCheckThis = InstanceCheck;
|
|
3
|
+
/**
|
|
4
|
+
* @typedef {InstanceCheck} InstanceCheckThis
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @constructor
|
|
8
|
+
* @this {InstanceCheck}
|
|
9
|
+
* @description iframe-safe instanceof check utility class
|
|
10
|
+
* @param {__se__EditorCore} editor - The root editor instance
|
|
11
|
+
*/
|
|
12
|
+
declare function InstanceCheck(this: InstanceCheck, editor: __se__EditorCore): void;
|
|
13
|
+
declare class InstanceCheck {
|
|
14
|
+
/**
|
|
15
|
+
* @typedef {InstanceCheck} InstanceCheckThis
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* @constructor
|
|
19
|
+
* @this {InstanceCheck}
|
|
20
|
+
* @description iframe-safe instanceof check utility class
|
|
21
|
+
* @param {__se__EditorCore} editor - The root editor instance
|
|
22
|
+
*/
|
|
23
|
+
constructor(this: InstanceCheck, editor: __se__EditorCore);
|
|
24
|
+
editor: import('../editor').default;
|
|
25
|
+
/**
|
|
26
|
+
* @param {*} obj
|
|
27
|
+
* @returns {obj is Node}
|
|
28
|
+
*/
|
|
29
|
+
isNode(obj: any): obj is Node;
|
|
30
|
+
/**
|
|
31
|
+
* @param {*} obj
|
|
32
|
+
* @returns {obj is Element}
|
|
33
|
+
*/
|
|
34
|
+
isElement(obj: any): obj is Element;
|
|
35
|
+
/**
|
|
36
|
+
* @param {*} obj
|
|
37
|
+
* @returns {obj is Range}
|
|
38
|
+
*/
|
|
39
|
+
isRange(obj: any): obj is Range;
|
|
40
|
+
/**
|
|
41
|
+
* @param {*} obj
|
|
42
|
+
* @returns {obj is Selection}
|
|
43
|
+
*/
|
|
44
|
+
isSelection(obj: any): obj is Selection;
|
|
45
|
+
/**
|
|
46
|
+
* @private
|
|
47
|
+
* @returns {window}
|
|
48
|
+
*/
|
|
49
|
+
_getFrameWindow(): Window & typeof globalThis;
|
|
50
|
+
}
|
|
@@ -19,6 +19,11 @@ export default class CoreInjector {
|
|
|
19
19
|
* @type {__se__EditorCore['eventManager']}
|
|
20
20
|
*/
|
|
21
21
|
eventManager: __se__EditorCore['eventManager'];
|
|
22
|
+
/**
|
|
23
|
+
* @description The util/instanceCheck instance.
|
|
24
|
+
* @type {__se__EditorCore['instanceCheck']}
|
|
25
|
+
*/
|
|
26
|
+
instanceCheck: __se__EditorCore['instanceCheck'];
|
|
22
27
|
/**
|
|
23
28
|
* @description The history manager instance.
|
|
24
29
|
* @type {__se__EditorCore['history']}
|
|
@@ -84,9 +89,4 @@ export default class CoreInjector {
|
|
|
84
89
|
* @type {Document}
|
|
85
90
|
*/
|
|
86
91
|
_d: Document;
|
|
87
|
-
/**
|
|
88
|
-
* @description The shadow root object (if any).
|
|
89
|
-
* @type {__se__EditorCore['_shadowRoot']}
|
|
90
|
-
*/
|
|
91
|
-
_shadowRoot: __se__EditorCore['_shadowRoot'];
|
|
92
92
|
}
|
|
@@ -14,6 +14,8 @@ declare class EditorInjector {
|
|
|
14
14
|
editor: __se__EditorCore;
|
|
15
15
|
/** @type {import('./_core').default['eventManager']} */
|
|
16
16
|
eventManager: import('./_core').default['eventManager'];
|
|
17
|
+
/** @type {import('./_core').default['instanceCheck']} */
|
|
18
|
+
instanceCheck: import('./_core').default['instanceCheck'];
|
|
17
19
|
/** @type {import('./_core').default['history']} */
|
|
18
20
|
history: import('./_core').default['history'];
|
|
19
21
|
/** @type {import('./_core').default['events']} */
|
|
@@ -40,8 +42,6 @@ declare class EditorInjector {
|
|
|
40
42
|
_w: import('./_core').default['_w'];
|
|
41
43
|
/** @type {import('./_core').default['_d']} */
|
|
42
44
|
_d: import('./_core').default['_d'];
|
|
43
|
-
/** @type {import('./_core').default['_shadowRoot']} */
|
|
44
|
-
_shadowRoot: import('./_core').default['_shadowRoot'];
|
|
45
45
|
/** @type {import('./_classes').default['toolbar']} */
|
|
46
46
|
toolbar: import('./_classes').default['toolbar'];
|
|
47
47
|
/** @type {import('./_classes').default['subToolbar']} */
|
package/types/events.d.ts
CHANGED
|
@@ -44,6 +44,14 @@ export function debounce(func: (...args: any) => void, wait: number): any;
|
|
|
44
44
|
* @param {Map<*, *>} referenceMap The Map providing the reference values (source).
|
|
45
45
|
*/
|
|
46
46
|
export function syncMaps(targetMap: Map<any, any>, referenceMap: Map<any, any>): void;
|
|
47
|
+
/**
|
|
48
|
+
* @description Merges multiple Map objects into a new Map using spread syntax.
|
|
49
|
+
* - Entries from later maps in the arguments list will overwrite entries from earlier maps if keys conflict.
|
|
50
|
+
* - The original maps are not modified.
|
|
51
|
+
* @param {...Map<*, *>} mapsToMerge - An arbitrary number of Map objects to merge.
|
|
52
|
+
* @returns {Map<*, *>} A new Map containing all entries from the input maps.
|
|
53
|
+
*/
|
|
54
|
+
export function mergeMaps(...mapsToMerge: Map<any, any>[]): Map<any, any>;
|
|
47
55
|
/**
|
|
48
56
|
* @description Object.values
|
|
49
57
|
* @param {Object<*, *>} obj Object parameter.
|
|
@@ -177,6 +185,7 @@ declare namespace converter {
|
|
|
177
185
|
export { entityToHTML };
|
|
178
186
|
export { debounce };
|
|
179
187
|
export { syncMaps };
|
|
188
|
+
export { mergeMaps };
|
|
180
189
|
export { getValues };
|
|
181
190
|
export { camelToKebabCase };
|
|
182
191
|
export { kebabToCamelCase };
|
|
@@ -186,11 +186,11 @@ export function findTabEndIndex(line: Node, baseIndex: number, minTabSize: numbe
|
|
|
186
186
|
*/
|
|
187
187
|
export function findVisualLastCell(cells: HTMLTableCellElement[]): HTMLTableCellElement | null;
|
|
188
188
|
/**
|
|
189
|
-
* @description
|
|
190
|
-
* @param {
|
|
191
|
-
* @returns {HTMLElement
|
|
189
|
+
* @description Finds and returns parent containers that are scrollable.
|
|
190
|
+
* @param {HTMLElement} element - Element to start with
|
|
191
|
+
* @returns {HTMLElement[]} - Array (in descending order)
|
|
192
192
|
*/
|
|
193
|
-
export function
|
|
193
|
+
export function getScrollParents(element: HTMLElement): HTMLElement[];
|
|
194
194
|
/**
|
|
195
195
|
* @description Get the argument iframe's document object if use the "iframe" or "fullPage" options
|
|
196
196
|
* @param {HTMLIFrameElement} iframe Iframe element (this.editor.frameContext.get('wysiwygFrame'))
|
|
@@ -218,6 +218,6 @@ declare namespace query {
|
|
|
218
218
|
export { findTextIndexOnLine };
|
|
219
219
|
export { findTabEndIndex };
|
|
220
220
|
export { findVisualLastCell };
|
|
221
|
-
export {
|
|
221
|
+
export { getScrollParents };
|
|
222
222
|
export { getIframeDocument };
|
|
223
223
|
}
|
|
@@ -115,6 +115,13 @@ export function changeTxt(node: Node, txt: string): void;
|
|
|
115
115
|
* @param {string|number} value Style value
|
|
116
116
|
*/
|
|
117
117
|
export function setStyle(elements: Node | Node[], styleName: string, value: string | number): void;
|
|
118
|
+
/**
|
|
119
|
+
* @description Gets the style value of the element. If the elements is an array, the style of the first element is returned.
|
|
120
|
+
* @param {Node} element Element to get style from.
|
|
121
|
+
* @param {string} styleName Style attribute name (e.g., 'marginLeft', 'textAlign').
|
|
122
|
+
* @returns {string | undefined} The value of the style attribute, or undefined if the element does not exist.
|
|
123
|
+
*/
|
|
124
|
+
export function getStyle(element: Node, styleName: string): string | undefined;
|
|
118
125
|
/**
|
|
119
126
|
* @description In the predefined code view mode, the buttons except the executable button are changed to the 'disabled' state.
|
|
120
127
|
* @param {Array<HTMLButtonElement|HTMLInputElement>} buttonList (Button | Input) Element array
|
|
@@ -212,6 +219,7 @@ declare namespace utils {
|
|
|
212
219
|
export { changeElement };
|
|
213
220
|
export { changeTxt };
|
|
214
221
|
export { setStyle };
|
|
222
|
+
export { getStyle };
|
|
215
223
|
export { setDisabled };
|
|
216
224
|
export { hasClass };
|
|
217
225
|
export { addClass };
|
package/types/helper/env.d.ts
CHANGED
|
@@ -78,10 +78,14 @@ export const isChromium: boolean;
|
|
|
78
78
|
export const isSafari: boolean;
|
|
79
79
|
/**
|
|
80
80
|
* @description Check if User Agent is Mobile device.
|
|
81
|
-
* - when the device is touchable, it is judged as a mobile device.
|
|
82
81
|
* @type {boolean}
|
|
83
82
|
*/
|
|
84
83
|
export const isMobile: boolean;
|
|
84
|
+
/**
|
|
85
|
+
* @description Check if the device is touchable.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
*/
|
|
88
|
+
export const isTouchDevice: boolean;
|
|
85
89
|
/**
|
|
86
90
|
* @description Check if User Agent is Android mobile device.
|
|
87
91
|
* @type {boolean}
|
|
@@ -124,6 +128,7 @@ declare namespace env {
|
|
|
124
128
|
export { isOSX_IOS };
|
|
125
129
|
export { isAndroid };
|
|
126
130
|
export { isMobile };
|
|
131
|
+
export { isTouchDevice };
|
|
127
132
|
export { cmdIcon };
|
|
128
133
|
export { shiftIcon };
|
|
129
134
|
export { DPI };
|
package/types/helper/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export const env: {
|
|
|
16
16
|
isOSX_IOS: boolean;
|
|
17
17
|
isAndroid: boolean;
|
|
18
18
|
isMobile: boolean;
|
|
19
|
+
isTouchDevice: boolean;
|
|
19
20
|
cmdIcon: string;
|
|
20
21
|
shiftIcon: string;
|
|
21
22
|
DPI: number;
|
|
@@ -35,6 +36,7 @@ export const converter: {
|
|
|
35
36
|
entityToHTML: typeof import('./converter').entityToHTML;
|
|
36
37
|
debounce: typeof import('./converter').debounce;
|
|
37
38
|
syncMaps: typeof import('./converter').syncMaps;
|
|
39
|
+
mergeMaps: typeof import('./converter').mergeMaps;
|
|
38
40
|
getValues: typeof import('./converter').getValues;
|
|
39
41
|
camelToKebabCase: typeof import('./converter').camelToKebabCase;
|
|
40
42
|
kebabToCamelCase: typeof import('./converter').kebabToCamelCase;
|
|
@@ -74,7 +76,7 @@ export const dom: {
|
|
|
74
76
|
findTextIndexOnLine: typeof import('./dom/domQuery').findTextIndexOnLine;
|
|
75
77
|
findTabEndIndex: typeof import('./dom/domQuery').findTabEndIndex;
|
|
76
78
|
findVisualLastCell: typeof import('./dom/domQuery').findVisualLastCell;
|
|
77
|
-
|
|
79
|
+
getScrollParents: typeof import('./dom/domQuery').getScrollParents;
|
|
78
80
|
getIframeDocument: typeof import('./dom/domQuery').getIframeDocument;
|
|
79
81
|
};
|
|
80
82
|
check: {
|
|
@@ -122,6 +124,7 @@ export const dom: {
|
|
|
122
124
|
changeElement: typeof import('./dom/domUtils').changeElement;
|
|
123
125
|
changeTxt: typeof import('./dom/domUtils').changeTxt;
|
|
124
126
|
setStyle: typeof import('./dom/domUtils').setStyle;
|
|
127
|
+
getStyle: typeof import('./dom/domUtils').getStyle;
|
|
125
128
|
setDisabled: typeof import('./dom/domUtils').setDisabled;
|
|
126
129
|
hasClass: typeof import('./dom/domUtils').hasClass;
|
|
127
130
|
addClass: typeof import('./dom/domUtils').addClass;
|
package/types/index.d.ts
CHANGED
|
@@ -1,120 +1,122 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Automatically generated by barrelsby.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export * from './events';
|
|
6
|
-
export * from './index';
|
|
7
|
-
export * from './suneditor';
|
|
8
|
-
export * from './assets/icons/defaultIcons';
|
|
9
|
-
export * from './core/editor';
|
|
10
|
-
export * from './core/base/eventManager';
|
|
11
|
-
export * from './core/base/history';
|
|
12
|
-
export * from './core/base/eventHandlers/handler_toolbar';
|
|
13
|
-
export * from './core/base/eventHandlers/handler_ww_clipboard';
|
|
14
|
-
export * from './core/base/eventHandlers/handler_ww_dragDrop';
|
|
15
|
-
export * from './core/base/eventHandlers/handler_ww_key_input';
|
|
16
|
-
export * from './core/base/eventHandlers/handler_ww_mouse';
|
|
17
|
-
export * from './core/class/char';
|
|
18
|
-
export * from './core/class/component';
|
|
19
|
-
export * from './core/class/format';
|
|
20
|
-
export * from './core/class/html';
|
|
21
|
-
export * from './core/class/menu';
|
|
22
|
-
export * from './core/class/nodeTransform';
|
|
23
|
-
export * from './core/class/offset';
|
|
24
|
-
export * from './core/class/selection';
|
|
25
|
-
export * from './core/class/shortcuts';
|
|
26
|
-
export * from './core/class/toolbar';
|
|
27
|
-
export * from './core/class/ui';
|
|
28
|
-
export * from './core/class/viewer';
|
|
29
|
-
export * from './core/section/actives';
|
|
30
|
-
export * from './core/section/constructor';
|
|
31
|
-
export * from './core/section/context';
|
|
32
|
-
export * from './core/section/documentType';
|
|
33
|
-
export * from './
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './editorInjector/
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './helper/
|
|
39
|
-
export * from './helper/
|
|
40
|
-
export * from './helper/
|
|
41
|
-
export * from './helper/
|
|
42
|
-
export * from './helper/
|
|
43
|
-
export * from './helper/
|
|
44
|
-
export * from './helper/
|
|
45
|
-
export * from './helper/dom/
|
|
46
|
-
export * from './helper/dom/
|
|
47
|
-
export * from './
|
|
48
|
-
export * from './
|
|
49
|
-
export * from './langs/
|
|
50
|
-
export * from './langs/
|
|
51
|
-
export * from './langs/
|
|
52
|
-
export * from './langs/
|
|
53
|
-
export * from './langs/
|
|
54
|
-
export * from './langs/
|
|
55
|
-
export * from './langs/
|
|
56
|
-
export * from './langs/
|
|
57
|
-
export * from './langs/
|
|
58
|
-
export * from './langs/
|
|
59
|
-
export * from './langs/
|
|
60
|
-
export * from './langs/
|
|
61
|
-
export * from './langs/
|
|
62
|
-
export * from './langs/
|
|
63
|
-
export * from './langs/
|
|
64
|
-
export * from './langs/
|
|
65
|
-
export * from './langs/
|
|
66
|
-
export * from './langs/
|
|
67
|
-
export * from './langs/
|
|
68
|
-
export * from './langs/
|
|
69
|
-
export * from './langs/
|
|
70
|
-
export * from './langs/
|
|
71
|
-
export * from './langs/
|
|
72
|
-
export * from './langs/
|
|
73
|
-
export * from './langs/
|
|
74
|
-
export * from './
|
|
75
|
-
export * from './
|
|
76
|
-
export * from './modules/
|
|
77
|
-
export * from './modules/
|
|
78
|
-
export * from './modules/
|
|
79
|
-
export * from './modules/
|
|
80
|
-
export * from './modules/
|
|
81
|
-
export * from './modules/
|
|
82
|
-
export * from './modules/
|
|
83
|
-
export * from './modules/
|
|
84
|
-
export * from './modules/
|
|
85
|
-
export * from './modules/
|
|
86
|
-
export * from './
|
|
87
|
-
export * from './
|
|
88
|
-
export * from './plugins/
|
|
89
|
-
export * from './plugins/browser/
|
|
90
|
-
export * from './plugins/browser/
|
|
91
|
-
export * from './plugins/browser/
|
|
92
|
-
export * from './plugins/
|
|
93
|
-
export * from './plugins/
|
|
94
|
-
export * from './plugins/command/
|
|
95
|
-
export * from './plugins/command/
|
|
96
|
-
export * from './plugins/command/
|
|
97
|
-
export * from './plugins/
|
|
98
|
-
export * from './plugins/
|
|
99
|
-
export * from './plugins/dropdown/
|
|
100
|
-
export * from './plugins/dropdown/
|
|
101
|
-
export * from './plugins/dropdown/
|
|
102
|
-
export * from './plugins/dropdown/
|
|
103
|
-
export * from './plugins/dropdown/
|
|
104
|
-
export * from './plugins/dropdown/
|
|
105
|
-
export * from './plugins/dropdown/
|
|
106
|
-
export * from './plugins/dropdown/
|
|
107
|
-
export * from './plugins/dropdown/
|
|
108
|
-
export * from './plugins/dropdown/
|
|
109
|
-
export * from './plugins/dropdown/
|
|
110
|
-
export * from './plugins/
|
|
111
|
-
export * from './plugins/
|
|
112
|
-
export * from './plugins/
|
|
113
|
-
export * from './plugins/
|
|
114
|
-
export * from './plugins/
|
|
115
|
-
export * from './plugins/modal/
|
|
116
|
-
export * from './plugins/modal/
|
|
117
|
-
export * from './plugins/modal/
|
|
118
|
-
export * from './plugins/modal/
|
|
119
|
-
export * from './plugins/modal/
|
|
120
|
-
export * from './plugins/
|
|
1
|
+
/**
|
|
2
|
+
* @file Automatically generated by barrelsby.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export * from './events';
|
|
6
|
+
export * from './index';
|
|
7
|
+
export * from './suneditor';
|
|
8
|
+
export * from './assets/icons/defaultIcons';
|
|
9
|
+
export * from './core/editor';
|
|
10
|
+
export * from './core/base/eventManager';
|
|
11
|
+
export * from './core/base/history';
|
|
12
|
+
export * from './core/base/eventHandlers/handler_toolbar';
|
|
13
|
+
export * from './core/base/eventHandlers/handler_ww_clipboard';
|
|
14
|
+
export * from './core/base/eventHandlers/handler_ww_dragDrop';
|
|
15
|
+
export * from './core/base/eventHandlers/handler_ww_key_input';
|
|
16
|
+
export * from './core/base/eventHandlers/handler_ww_mouse';
|
|
17
|
+
export * from './core/class/char';
|
|
18
|
+
export * from './core/class/component';
|
|
19
|
+
export * from './core/class/format';
|
|
20
|
+
export * from './core/class/html';
|
|
21
|
+
export * from './core/class/menu';
|
|
22
|
+
export * from './core/class/nodeTransform';
|
|
23
|
+
export * from './core/class/offset';
|
|
24
|
+
export * from './core/class/selection';
|
|
25
|
+
export * from './core/class/shortcuts';
|
|
26
|
+
export * from './core/class/toolbar';
|
|
27
|
+
export * from './core/class/ui';
|
|
28
|
+
export * from './core/class/viewer';
|
|
29
|
+
export * from './core/section/actives';
|
|
30
|
+
export * from './core/section/constructor';
|
|
31
|
+
export * from './core/section/context';
|
|
32
|
+
export * from './core/section/documentType';
|
|
33
|
+
export * from './core/section/options';
|
|
34
|
+
export * from './core/util/instanceCheck';
|
|
35
|
+
export * from './editorInjector/_classes';
|
|
36
|
+
export * from './editorInjector/_core';
|
|
37
|
+
export * from './editorInjector/index';
|
|
38
|
+
export * from './helper/clipboard';
|
|
39
|
+
export * from './helper/converter';
|
|
40
|
+
export * from './helper/env';
|
|
41
|
+
export * from './helper/index';
|
|
42
|
+
export * from './helper/keyCodeMap';
|
|
43
|
+
export * from './helper/numbers';
|
|
44
|
+
export * from './helper/unicode';
|
|
45
|
+
export * from './helper/dom/domCheck';
|
|
46
|
+
export * from './helper/dom/domQuery';
|
|
47
|
+
export * from './helper/dom/domUtils';
|
|
48
|
+
export * from './helper/dom/index';
|
|
49
|
+
export * from './langs/_Lang';
|
|
50
|
+
export * from './langs/ckb';
|
|
51
|
+
export * from './langs/cs';
|
|
52
|
+
export * from './langs/da';
|
|
53
|
+
export * from './langs/de';
|
|
54
|
+
export * from './langs/en';
|
|
55
|
+
export * from './langs/es';
|
|
56
|
+
export * from './langs/fa';
|
|
57
|
+
export * from './langs/fr';
|
|
58
|
+
export * from './langs/he';
|
|
59
|
+
export * from './langs/hu';
|
|
60
|
+
export * from './langs/index';
|
|
61
|
+
export * from './langs/it';
|
|
62
|
+
export * from './langs/ja';
|
|
63
|
+
export * from './langs/km';
|
|
64
|
+
export * from './langs/ko';
|
|
65
|
+
export * from './langs/lv';
|
|
66
|
+
export * from './langs/nl';
|
|
67
|
+
export * from './langs/pl';
|
|
68
|
+
export * from './langs/pt_br';
|
|
69
|
+
export * from './langs/ro';
|
|
70
|
+
export * from './langs/ru';
|
|
71
|
+
export * from './langs/se';
|
|
72
|
+
export * from './langs/tr';
|
|
73
|
+
export * from './langs/uk';
|
|
74
|
+
export * from './langs/ur';
|
|
75
|
+
export * from './langs/zh_cn';
|
|
76
|
+
export * from './modules/ApiManager';
|
|
77
|
+
export * from './modules/Browser';
|
|
78
|
+
export * from './modules/ColorPicker';
|
|
79
|
+
export * from './modules/Controller';
|
|
80
|
+
export * from './modules/Figure';
|
|
81
|
+
export * from './modules/FileManager';
|
|
82
|
+
export * from './modules/HueSlider';
|
|
83
|
+
export * from './modules/Modal';
|
|
84
|
+
export * from './modules/ModalAnchorEditor';
|
|
85
|
+
export * from './modules/SelectMenu';
|
|
86
|
+
export * from './modules/_DragHandle';
|
|
87
|
+
export * from './modules/index';
|
|
88
|
+
export * from './plugins/index';
|
|
89
|
+
export * from './plugins/browser/audioGallery';
|
|
90
|
+
export * from './plugins/browser/fileBrowser';
|
|
91
|
+
export * from './plugins/browser/fileGallery';
|
|
92
|
+
export * from './plugins/browser/imageGallery';
|
|
93
|
+
export * from './plugins/browser/videoGallery';
|
|
94
|
+
export * from './plugins/command/blockquote';
|
|
95
|
+
export * from './plugins/command/exportPDF';
|
|
96
|
+
export * from './plugins/command/fileUpload';
|
|
97
|
+
export * from './plugins/command/list_bulleted';
|
|
98
|
+
export * from './plugins/command/list_numbered';
|
|
99
|
+
export * from './plugins/dropdown/align';
|
|
100
|
+
export * from './plugins/dropdown/backgroundColor';
|
|
101
|
+
export * from './plugins/dropdown/font';
|
|
102
|
+
export * from './plugins/dropdown/fontColor';
|
|
103
|
+
export * from './plugins/dropdown/formatBlock';
|
|
104
|
+
export * from './plugins/dropdown/hr';
|
|
105
|
+
export * from './plugins/dropdown/layout';
|
|
106
|
+
export * from './plugins/dropdown/lineHeight';
|
|
107
|
+
export * from './plugins/dropdown/list';
|
|
108
|
+
export * from './plugins/dropdown/paragraphStyle';
|
|
109
|
+
export * from './plugins/dropdown/table';
|
|
110
|
+
export * from './plugins/dropdown/template';
|
|
111
|
+
export * from './plugins/dropdown/textStyle';
|
|
112
|
+
export * from './plugins/field/mention';
|
|
113
|
+
export * from './plugins/input/fontSize';
|
|
114
|
+
export * from './plugins/input/pageNavigator';
|
|
115
|
+
export * from './plugins/modal/audio';
|
|
116
|
+
export * from './plugins/modal/drawing';
|
|
117
|
+
export * from './plugins/modal/embed';
|
|
118
|
+
export * from './plugins/modal/image';
|
|
119
|
+
export * from './plugins/modal/link';
|
|
120
|
+
export * from './plugins/modal/math';
|
|
121
|
+
export * from './plugins/modal/video';
|
|
122
|
+
export * from './plugins/popup/anchor';
|