feat: export SettingField symbol
This commit is contained in:
parent
19eb917259
commit
280d4a9e51
|
@ -11,6 +11,7 @@ export {
|
|||
Prop,
|
||||
SimulatorHost,
|
||||
SkeletonItem,
|
||||
SettingField,
|
||||
} from '@alilc/lowcode-shell';
|
||||
export { Node as InnerNode } from '@alilc/lowcode-designer';
|
||||
|
||||
|
|
|
@ -34,4 +34,5 @@ export default {
|
|||
simulatorHostSymbol,
|
||||
skeletonItemSymbol,
|
||||
simulatorRenderSymbol,
|
||||
settingFieldSymbol,
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { ReactElement } from 'react';
|
||||
import { IPublicTypeDisposable, IPublicTypeNodeSchema } from '../type';
|
||||
import { IPublicTypeDisposable, IPublicTypeRootSchema } from '../type';
|
||||
import { IPublicModelResource } from './resource';
|
||||
import { IPublicModelEditorView } from './editor-view';
|
||||
|
||||
|
@ -32,7 +32,7 @@ export interface IPublicModelWindow<
|
|||
editorViews: IPublicModelEditorView[];
|
||||
|
||||
/** 当前窗口导入 schema */
|
||||
importSchema(schema: IPublicTypeNodeSchema): void;
|
||||
importSchema(schema: IPublicTypeRootSchema): void;
|
||||
|
||||
/** 修改当前窗口视图类型 */
|
||||
changeViewType(viewName: string): void;
|
||||
|
|
Loading…
Reference in New Issue