@riil-frontend/component-topology 2.13.0-alpha.2 → 2.13.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/build/1.js +1 -1
- package/build/index.css +1 -1
- package/build/index.js +18 -18
- package/es/constants/constant.js +1 -1
- package/es/core/common/icons/networkTopoCiTypeIcons.js +3 -3
- package/es/core/components/AlarmListPanel/index.js +1 -1
- package/es/core/components/TopoView/topoView.js +37 -21
- package/es/core/editor/components/ResourceViewAttributeSetting/ResourceViewAttributeSettingPlugin.js +2 -2
- package/es/core/editor/components/ResourceViewAttributeSetting/Setting.js +14 -9
- package/es/core/editor/components/iconManage/IconManage.js +2 -2
- package/es/core/editor/components/iconManage/UploadIconDialog.js +41 -27
- package/es/core/editor/components/settings/Settings.js +9 -5
- package/es/core/editor/components/settings/common/GroupNodeList/icon.js +55 -27
- package/es/core/editor/components/settings/propertyViews/index.js +1 -0
- package/es/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +15 -5
- package/es/core/editor/components/settings/propertyViews/node/NodeIconSelect.js +1 -13
- package/es/core/editor/components/settings/propertyViews/node/NodePropertyView.js +7 -6
- package/es/core/editor/components/settings/propertyViews/view/GlobalLayout.js +12 -0
- package/es/core/editor/components/settings/propertyViews/view/GlobalTootipSetting.js +26 -0
- package/es/core/editor/components/settings/propertyViews/view/ViewPropertyView.js +14 -86
- package/es/core/models/TopoApp.js +1 -1
- package/es/core/models/common/Alarm.js +15 -10
- package/es/core/utils/resourceUtil.js +1 -1
- package/es/core/viewer/components/plugins/ViewerPlugin.js +8 -14
- package/es/core/viewer/components/titlebar/widgets/SearchWidget.js +41 -12
- package/es/createTopo.js +1 -7
- package/es/hooks/useSelection.js +7 -1
- package/es/models/iconManage.js +96 -48
- package/es/models/topoCreateMod.js +1 -1
- package/es/models/topoMod.js +1 -2
- package/es/style.js +2 -3
- package/es/topoCenter/components/TopoView.js +15 -5
- package/es/topoCenter/components/Topology.js +10 -2
- package/es/utils/topoData.js +5 -5
- package/es/utils/topoIconUtil.js +6 -15
- package/lib/constants/constant.js +1 -1
- package/lib/core/components/AlarmListPanel/index.js +1 -1
- package/lib/core/components/TopoView/topoView.js +33 -16
- package/lib/core/editor/components/ResourceViewAttributeSetting/Setting.js +14 -9
- package/lib/core/editor/components/iconManage/IconManage.js +2 -2
- package/lib/core/editor/components/iconManage/UploadIconDialog.js +43 -27
- package/lib/core/editor/components/settings/Settings.js +9 -5
- package/lib/core/editor/components/settings/common/GroupNodeList/icon.js +60 -27
- package/lib/core/editor/components/settings/propertyViews/index.js +1 -0
- package/lib/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +16 -4
- package/lib/core/editor/components/settings/propertyViews/node/NodeIconSelect.js +1 -13
- package/lib/core/editor/components/settings/propertyViews/node/NodePropertyView.js +7 -6
- package/lib/core/editor/components/settings/propertyViews/view/GlobalLayout.js +20 -0
- package/lib/core/editor/components/settings/propertyViews/view/GlobalTootipSetting.js +41 -0
- package/lib/core/editor/components/settings/propertyViews/view/ViewPropertyView.js +14 -89
- package/lib/core/models/TopoApp.js +1 -1
- package/lib/core/models/common/Alarm.js +15 -10
- package/lib/core/utils/resourceUtil.js +1 -1
- package/lib/core/viewer/components/plugins/ViewerPlugin.js +9 -15
- package/lib/core/viewer/components/titlebar/widgets/SearchWidget.js +40 -10
- package/lib/createTopo.js +1 -7
- package/lib/hooks/useSelection.js +7 -1
- package/lib/models/iconManage.js +96 -48
- package/lib/models/topoCreateMod.js +1 -1
- package/lib/models/topoMod.js +1 -2
- package/lib/style.js +2 -3
- package/lib/topoCenter/components/TopoView.js +15 -5
- package/lib/topoCenter/components/Topology.js +10 -2
- package/lib/utils/topoData.js +6 -5
- package/lib/utils/topoIconUtil.js +6 -19
- package/package.json +8 -7