@wangeditor-next/plugin-formula 1.0.30 → 1.0.32
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/core/src/parse-html/index.d.ts +0 -1
- package/dist/editor/src/index.d.ts +2 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/table-module/src/module/custom-types.d.ts +5 -0
- package/dist/table-module/src/module/parse-elem-html.d.ts +1 -1
- package/dist/table-module/src/module/render-elem/render-row.d.ts +1 -1
- package/dist/table-module/src/module/row-resize.d.ts +15 -0
- package/package.json +3 -3
@@ -6,7 +6,6 @@ import { Descendant, Element as SlateElement } from 'slate';
|
|
6
6
|
import { IDomEditor } from '../editor/interface';
|
7
7
|
import { DOMElement } from '../utils/dom';
|
8
8
|
export declare const TEXT_TAGS: string[];
|
9
|
-
export declare const SPAN_WITH_SPECIAL_TAGS: string[];
|
10
9
|
export type PreParseHtmlFnType = ($node: DOMElement) => DOMElement;
|
11
10
|
export interface IPreParseHtmlConf {
|
12
11
|
selector: string;
|
@@ -3,7 +3,6 @@
|
|
3
3
|
* @author wangfupeng
|
4
4
|
*/
|
5
5
|
import './assets/index.less';
|
6
|
-
import '@wangeditor-next/core/dist/css/style.css';
|
7
6
|
import './utils/browser-polyfill';
|
8
7
|
import './utils/node-polyfill';
|
9
8
|
import './locale/index';
|
@@ -11,8 +10,8 @@ import './register-builtin-modules/index';
|
|
11
10
|
import './init-default-config';
|
12
11
|
import Boot from './Boot';
|
13
12
|
export { Boot };
|
14
|
-
export {
|
15
|
-
export {
|
13
|
+
export { createUploader, DomEditor, genModalButtonElems, genModalInputElems, genModalTextareaElems, i18nAddResources, i18nChangeLanguage, i18nGetResources, IButtonMenu, IDomEditor, IDropPanelMenu, IEditorConfig, IModalMenu, IModuleConf, ISelectMenu, IToolbarConfig, IUploadConfig, t, Toolbar, } from '@wangeditor-next/core';
|
14
|
+
export { Descendant as SlateDescendant, Editor as SlateEditor, Element as SlateElement, Location as SlateLocation, Node as SlateNode, Path as SlatePath, Point as SlatePoint, Range as SlateRange, Text as SlateText, Transforms as SlateTransforms, } from 'slate';
|
16
15
|
export { createEditor, createToolbar } from './create';
|
17
16
|
declare const _default: {};
|
18
17
|
export default _default;
|