refactor(component-detail): 移除 PropertyPanelManager,统一使用 ComponentDetailManager

- 删除 PropertyPanelManager 文件(移至 .recycle/2026-01-28/)
- 修改 Toolbar 按钮调用 componentDetail.show() 而非 propertyPanel.show()
- 修复折叠面板 ghost 模式样式:添加背景色和左边距
- 清理 BimEngine 和 ManagerRegistry 中的 PropertyPanelManager 引用
- 构建验证通过
This commit is contained in:
yuding
2026-01-28 15:46:01 +08:00
parent a61c7f45d1
commit b884109b9e
6 changed files with 250 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ import type { EngineManager } from '../managers/engine-manager';
import type { ButtonGroupManager } from '../managers/button-group-manager';
import type { RightKeyManager } from '../managers/right-key-manager';
import type { ConstructTreeManagerBtn } from '../managers/construct-tree-manager-btn';
import type { PropertyPanelManager } from '../managers/property-panel-manager';
import type { MeasureDialogManager } from '../managers/measure-dialog-manager';
import type { WalkControlManager } from '../managers/walk-control-manager';
import type { MapDialogManager } from '../managers/map-dialog-manager';
@@ -49,8 +49,7 @@ export class ManagerRegistry {
public rightKey: RightKeyManager | null = null;
/** 构件树管理器 */
public constructTree: ConstructTreeManagerBtn | null = null;
/** 属性面板管理器 */
public propertyPanel: PropertyPanelManager | null = null;
/** 测量对话框管理器 */
public measure: MeasureDialogManager | null = null;
/** 漫游控制管理器 */