amis-editor-core 5.2.5 → 5.4.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/esm/builder/DSBuilder.d.ts +4 -3
- package/esm/component/ClassNameControl.d.ts +1 -1
- package/esm/component/ContainerWrapper.d.ts +2 -2
- package/esm/component/Editor.d.ts +6 -2
- package/esm/component/IFramePreview.d.ts +1 -2
- package/esm/component/MiniEditor.d.ts +0 -1
- package/esm/component/Panel/RenderersPanel.d.ts +1 -1
- package/esm/component/Preview.d.ts +1 -2
- package/esm/component/RegionWrapper.d.ts +12 -12
- package/esm/component/RendererThumb.d.ts +1 -1
- package/esm/component/ScaffoldModal.d.ts +2 -10
- package/esm/component/SubEditor.d.ts +1 -1
- package/esm/component/VRenderer.d.ts +18 -30
- package/esm/component/factory.d.ts +2 -3
- package/esm/index.d.ts +2 -1
- package/esm/index.js +2 -2
- package/esm/manager.d.ts +18 -17
- package/esm/mocker.d.ts +1 -1
- package/esm/plugin/AvailableRenderers.d.ts +1 -0
- package/esm/plugin/BasicToolbar.d.ts +1 -0
- package/esm/plugin/Code.d.ts +1 -0
- package/esm/plugin/DataDebug.d.ts +1 -1
- package/esm/plugin/ErrorRenderer.d.ts +1 -0
- package/esm/plugin/Name.d.ts +1 -0
- package/esm/plugin/Outline.d.ts +1 -0
- package/esm/plugin/Unknown.d.ts +1 -0
- package/esm/plugin.d.ts +8 -3
- package/esm/store/editor.d.ts +59 -56
- package/esm/store/node.d.ts +3 -4
- package/esm/tpl.d.ts +37 -17
- package/esm/util.d.ts +9 -8
- package/esm/variable.d.ts +1 -1
- package/lib/builder/DSBuilder.d.ts +4 -3
- package/lib/component/ClassNameControl.d.ts +1 -1
- package/lib/component/ContainerWrapper.d.ts +2 -2
- package/lib/component/Editor.d.ts +6 -2
- package/lib/component/IFramePreview.d.ts +1 -2
- package/lib/component/MiniEditor.d.ts +0 -1
- package/lib/component/Panel/RenderersPanel.d.ts +1 -1
- package/lib/component/Preview.d.ts +1 -2
- package/lib/component/RegionWrapper.d.ts +12 -12
- package/lib/component/RendererThumb.d.ts +1 -1
- package/lib/component/ScaffoldModal.d.ts +2 -10
- package/lib/component/SubEditor.d.ts +1 -1
- package/lib/component/VRenderer.d.ts +18 -30
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/component/factory.d.ts +2 -3
- package/lib/editor.js +2 -2
- package/lib/index.d.ts +2 -1
- package/lib/index.js +2 -2
- package/lib/manager.d.ts +18 -17
- package/lib/mocker.d.ts +1 -1
- package/lib/plugin/AvailableRenderers.d.ts +1 -0
- package/lib/plugin/BasicToolbar.d.ts +1 -0
- package/lib/plugin/Code.d.ts +1 -0
- package/lib/plugin/DataDebug.d.ts +1 -1
- package/lib/plugin/ErrorRenderer.d.ts +1 -0
- package/lib/plugin/Name.d.ts +1 -0
- package/lib/plugin/Outline.d.ts +1 -0
- package/lib/plugin/Unknown.d.ts +1 -0
- package/lib/plugin.d.ts +8 -3
- package/lib/store/editor.d.ts +59 -57
- package/lib/store/node.d.ts +3 -4
- package/lib/style.css +1 -1
- package/lib/tpl.d.ts +37 -17
- package/lib/util.d.ts +10 -9
- package/lib/variable.d.ts +1 -1
- package/package.json +9 -6
- package/static/nav-mode.gif +0 -0
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { PanelProps, RegionConfig, RendererInfo } from '../plugin';
|
|
3
2
|
import { EditorNodeType } from '../store/node';
|
|
4
3
|
import { EditorManager } from '../manager';
|
|
5
|
-
import type { RendererConfig } from 'amis-core
|
|
6
|
-
import { SchemaCollection } from 'amis
|
|
4
|
+
import type { RendererConfig } from 'amis-core';
|
|
5
|
+
import type { SchemaCollection } from 'amis';
|
|
7
6
|
export declare function makeWrapper(manager: EditorManager, info: RendererInfo, rendererConfig: RendererConfig): any;
|
|
8
7
|
export declare function makeSchemaFormRender(manager: EditorManager, schema: {
|
|
9
8
|
body?: SchemaCollection;
|
package/lib/editor.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-editor-core v5.
|
|
2
|
+
* amis-editor-core v5.4.0
|
|
3
3
|
* Copyright 2018-2023 @fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
'use strict';Object.defineProperty(exports,'__esModule',{value:!0});exports.default=undefined;
|
package/lib/index.d.ts
CHANGED
|
@@ -35,5 +35,6 @@ import { ContainerWrapper } from './component/ContainerWrapper';
|
|
|
35
35
|
import type { EditorStoreType } from './store/editor';
|
|
36
36
|
import { AvailableRenderersPlugin } from './plugin/AvailableRenderers';
|
|
37
37
|
import ShortcutKey from './component/base/ShortcutKey';
|
|
38
|
+
import WidthDraggableContainer from './component/base/WidthDraggableContainer';
|
|
38
39
|
export default Editor;
|
|
39
|
-
export { Editor, MiniEditor, utils, mapReactElement, RendererEditor, BasicEditor, CodeEditor, VRenderer, RegionWrapper, mountInIframe, IFramePreview as IFrameEditor, SearchPanel, EditorNodeType, EditorStoreType, ContainerWrapper, AvailableRenderersPlugin, ShortcutKey };
|
|
40
|
+
export { Editor, MiniEditor, utils, mapReactElement, RendererEditor, BasicEditor, CodeEditor, VRenderer, RegionWrapper, mountInIframe, IFramePreview as IFrameEditor, SearchPanel, EditorNodeType, EditorStoreType, ContainerWrapper, AvailableRenderersPlugin, ShortcutKey, WidthDraggableContainer };
|