amis-editor-core 6.9.0-rc.8 → 6.9.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/component/Editor.d.ts +0 -3
- package/esm/index.d.ts +1 -4
- package/esm/index.js +2 -2
- package/esm/manager.d.ts +2 -13
- package/esm/plugin.d.ts +0 -4
- package/esm/store/editor.d.ts +36 -25
- package/lib/component/Editor.d.ts +0 -3
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/dnd/flex.d.ts +1 -1
- package/lib/editor.js +1 -1
- package/lib/index.d.ts +1 -4
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +1 -0
- package/lib/manager.d.ts +2 -13
- package/lib/plugin.d.ts +0 -4
- package/lib/store/editor.d.ts +36 -25
- package/package.json +3 -4
- package/esm/component/ModalForm.d.ts +0 -25
- package/esm/deepSplice.d.ts +0 -12
- package/lib/component/ModalForm.d.ts +0 -25
- package/lib/deepSplice.d.ts +0 -12
|
@@ -91,9 +91,6 @@ export interface EditorProps extends PluginEventListener {
|
|
|
91
91
|
getHostNodeDataSchema?: () => Promise<any>;
|
|
92
92
|
getAvaiableContextFields?: (node: EditorNodeType) => Promise<any>;
|
|
93
93
|
readonly?: boolean;
|
|
94
|
-
onEditorMount?: (manager: EditorManager) => void;
|
|
95
|
-
onEditorUnmount?: (manager: EditorManager) => void;
|
|
96
|
-
children?: React.ReactNode | ((manager: EditorManager) => React.ReactNode);
|
|
97
94
|
}
|
|
98
95
|
export default class Editor extends Component<EditorProps> {
|
|
99
96
|
readonly store: EditorStoreType;
|
package/esm/index.d.ts
CHANGED
|
@@ -39,9 +39,6 @@ import { UnknownRendererPlugin } from './plugin/Unknown';
|
|
|
39
39
|
import ShortcutKey from './component/base/ShortcutKey';
|
|
40
40
|
import WidthDraggableContainer from './component/base/WidthDraggableContainer';
|
|
41
41
|
import { SchemaFrom } from './component/base/SchemaForm';
|
|
42
|
-
import { RendererThumb } from './component/RendererThumb';
|
|
43
|
-
import { AvailableRenderersPanel } from './component/Panel/AvailableRenderersPanel';
|
|
44
|
-
import { deepSplice } from './deepSplice';
|
|
45
42
|
export declare const version = "__buildVersion";
|
|
46
43
|
export default Editor;
|
|
47
|
-
export { Editor, MiniEditor, utils,
|
|
44
|
+
export { Editor, MiniEditor, utils, mapReactElement, RendererEditor, BasicEditor, CodeEditor, VRenderer, RegionWrapper, IFramePreview as IFrameEditor, SearchPanel, EditorNodeType, EditorNodeSnapshot, EditorStoreType, ContainerWrapper, AvailableRenderersPlugin, BasicToolbarPlugin, CodePlugin, ErrorRendererPlugin, OutlinePlugin, UnknownRendererPlugin, ShortcutKey, SchemaFrom, WidthDraggableContainer };
|