mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
feat: optimized lowcode types
This commit is contained in:
parent
579480c56c
commit
122f0b30a0
@ -133,11 +133,13 @@ export interface IPublicTypeLiveTextEditingConfig {
|
|||||||
onSaveContent?: (content: string, prop: any) => any;
|
onSaveContent?: (content: string, prop: any) => any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ConfigureSupportEvent = string | {
|
export type ConfigureSupportEvent = string | ConfigureSupportEventConfig;
|
||||||
|
|
||||||
|
export interface ConfigureSupportEventConfig {
|
||||||
name: string;
|
name: string;
|
||||||
propType?: IPublicTypePropType;
|
propType?: IPublicTypePropType;
|
||||||
description?: string;
|
description?: string;
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 通用扩展面板支持性配置
|
* 通用扩展面板支持性配置
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
import { IPublicTypeJSExpression, IPublicTypeNodeSchema, IPublicTypeDOMText } from './';
|
import { IPublicTypeJSExpression, IPublicTypeNodeSchema, IPublicTypeDOMText, IPublicTypeI18nData } from './';
|
||||||
|
|
||||||
export type IPublicTypeNodeData = IPublicTypeNodeSchema | IPublicTypeJSExpression | IPublicTypeDOMText;
|
export type IPublicTypeNodeData = IPublicTypeNodeSchema | IPublicTypeJSExpression | IPublicTypeDOMText | IPublicTypeI18nData;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user