* 获取所有已注册的物料元数据 * @returns
()
| 139 | * @returns |
| 140 | */ |
| 141 | getComponentMetasMap(): Map<string, IPublicModelComponentMeta> { |
| 142 | const map = new Map<string, IPublicModelComponentMeta>(); |
| 143 | const originalMap = this[designerSymbol].getComponentMetasMap(); |
| 144 | for (let componentName of originalMap.keys()) { |
| 145 | map.set(componentName, this.getComponentMeta(componentName)!); |
| 146 | } |
| 147 | return map; |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * 在设计器辅助层增加一个扩展 action |
nothing calls this directly
no test coverage detected