mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
feat: add getExtraPropValue setExtraPropValue to shell SettingPropEntry
This commit is contained in:
parent
1fa2694635
commit
70e7c1c2e8
@ -195,6 +195,20 @@ export default class SettingPropEntry {
|
||||
return this[settingPropEntrySymbol].getPropValue(propName);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取顶层附属属性值
|
||||
*/
|
||||
getExtraPropValue(propName: string) {
|
||||
return this[settingPropEntrySymbol].getExtraPropValue(propName);
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置顶层附属属性值
|
||||
*/
|
||||
setExtraPropValue(propName: string, value: any) {
|
||||
this[settingPropEntrySymbol].setExtraPropValue(propName, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取设置属性集
|
||||
* @returns
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user