Merge branch 'develop' into release/1.1.11-beta

This commit is contained in:
JackLian 2023-09-12 10:09:41 +08:00
commit 153ff17182
3 changed files with 14 additions and 3 deletions

View File

@ -254,6 +254,16 @@ JSExpression 是否只支持使用 this 来访问上下文变量,假如需要
自定义 loading 组件
### 插件
#### defaultSettingPanelProps
内置设置面板插件的 panelProps
#### defaultOutlinePaneProps
内置大纲树面板插件的 panelProps
### 其他
#### enableStrictPluginMode
@ -282,4 +292,3 @@ customPluginTransducer: async (originPlugin: IPublicTypePlugin, ctx: IPublicMode
大纲树插件面板默认 props

View File

@ -1,6 +1,6 @@
{
"name": "@alilc/lowcode-engine-docs",
"version": "1.1.8",
"version": "1.1.9",
"description": "低代码引擎版本化文档",
"license": "MIT",
"files": [

View File

@ -28,6 +28,9 @@ export const defaultPanelRegistry = (editor: any) => {
props: {
ignoreRoot: true,
},
panelProps: {
...(config.get('defaultSettingPanelProps') || {}),
},
});
}
},
@ -39,5 +42,4 @@ export const defaultPanelRegistry = (editor: any) => {
return fun;
};
export default defaultPanelRegistry;