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