@riil-frontend/component-topology 2.12.7-alpha.8 → 2.13.0-alpha.3
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 +2 -2
- package/build/2.js +2 -2
- package/build/index.css +1 -1
- package/build/index.js +24 -24
- package/demo/3/346/213/223/346/211/221/344/270/255/345/277/203/js/TopoViewer.jsx +28 -6
- package/demo/3/346/213/223/346/211/221/344/270/255/345/277/203/js/mock/topo/v1/api/auth/permission/4 +1 -0
- package/demo/3/346/213/223/346/211/221/344/270/255/345/277/203/js/mock/topo/v1/api/structure/both/4 +618 -0
- package/demo/API//345/210/233/345/273/272/346/213/223/346/211/221/346/250/241/345/236/213.md +43 -0
- package/demo/API//346/250/241/345/236/213.md +49 -9
- package/es/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.js +0 -0
- package/es/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.module.scss +0 -0
- package/es/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.scss +0 -0
- package/es/common/components/ColorPicker/index.js +2 -0
- package/es/components/Drawer/index.module.scss +3 -1
- package/es/components/Link/index.js +6 -6
- package/es/components/MultiResourceDrawer/index.js +3 -11
- package/es/components/ResourceSelect/ResourceSelectDrawer.js +3 -7
- package/es/components/ResourceSelectDrawer/ResourceSelectDrawer.js +23 -5
- package/es/components/ResourceSelectDrawer/ResourceSelectDrawer.module.scss +3 -1
- package/es/components/ResourceSelectDrawer/ResourceSelectList.js +2 -1
- package/es/components/TagImageSelect/index.js +6 -2
- package/es/components/TagImageSelect/index.module.scss +4 -0
- package/es/components/TagSelect/index.js +4 -3
- package/es/components/TagSelect/index.scss +23 -18
- package/es/components/TemplateButton/index.js +2 -2
- package/es/components/TemplateButton/index.module.scss +25 -1
- package/es/components/index.module.scss +2 -2
- package/es/constants/ResourceTypeLimit.js +6 -1
- package/es/constants/constant.js +7 -13
- package/es/core/common/icons/networkTopoCiTypeIcons.js +3 -3
- package/es/core/components/AlarmListPanel/components/AlarmListItem.js +24 -0
- package/es/core/components/AlarmListPanel/components/index.module.scss +7 -0
- package/es/core/components/AlarmListPanel/constants/uicbb.js +11 -0
- package/es/core/components/AlarmListPanel/index.js +92 -0
- package/es/core/components/AlarmListPanel/index.module.scss +94 -0
- package/es/core/components/AlarmListPanel/mocks/index.js +77 -0
- package/es/core/components/TopoView/index.js +2 -0
- package/es/core/components/TopoView/topoView.js +95 -96
- package/es/core/components/titlebar/TitleBar.js +1 -1
- package/es/core/components/titlebar/index.js +3 -1
- package/es/core/editor/components/EditorPlugin.js +12 -22
- package/es/core/editor/components/LinkDynamicStyleSettingDrawer/rule/RuleStyle.js +2 -2
- package/es/core/editor/components/ResourceViewAttributeSetting/ResourceViewAttributeSettingPlugin.js +5 -6
- package/es/core/editor/components/ResourceViewAttributeSetting/Setting.js +15 -10
- package/es/core/editor/components/plugins/MultipleResourceSelectPlugin.js +15 -0
- package/es/core/editor/components/plugins/SaveLoading.js +16 -0
- package/es/core/editor/components/settings/Settings.js +62 -32
- package/es/core/editor/components/settings/Settings.module.scss +6 -4
- package/es/core/editor/components/settings/common/AddResourceButton.js +22 -0
- package/es/core/editor/components/settings/common/AlignSetting/AlignSetting.module.scss +20 -0
- package/es/core/editor/components/settings/common/AlignSetting/index.js +18 -13
- package/es/core/editor/components/settings/common/GroupNodeList/icon.js +8 -20
- package/es/core/editor/components/settings/common/LayoutSettings.js +48 -18
- package/es/core/editor/components/settings/common/LayoutSettings.module.scss +63 -0
- package/es/core/editor/components/settings/common/NodeSizeInput/NodeSizeInput.js +7 -50
- package/es/core/editor/components/settings/common/SizeInput/NodeSizeInput.js +111 -0
- package/es/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/NodeSizeInput.module.scss +0 -0
- package/es/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/NodeSizeNumberPicker.js +0 -0
- package/es/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/img/icon_/350/247/243/351/224/201.svg +0 -0
- package/es/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/img/icon_/351/224/201.svg +0 -0
- package/es/core/editor/components/settings/common/SizeInput/index.js +2 -0
- package/es/core/editor/components/settings/common/tab/TabView.module.scss +4 -2
- package/es/core/editor/components/settings/common/text/TextStyle.js +1 -1
- package/es/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +89 -0
- package/es/core/editor/components/settings/propertyViews/edge/EdgePropertyView.js +23 -0
- package/es/core/editor/components/settings/propertyViews/edge/LinkPropertyView/Data/index.js +54 -0
- package/es/core/editor/components/settings/propertyViews/edge/LinkPropertyView/LinkPropertyView.js +14 -0
- package/es/core/editor/components/settings/propertyViews/edge/LinkPropertyView/Setting/index.js +48 -0
- package/es/core/editor/components/settings/propertyViews/edge/LinkPropertyView/index.js +2 -0
- package/es/core/editor/components/settings/propertyViews/group/DataTab/GroupAddResourceButton.js +20 -0
- package/es/core/editor/components/settings/{group → propertyViews/group}/DataTab/GroupNodeList.js +1 -1
- package/es/core/editor/components/settings/{group → propertyViews/group}/DataTab/RelateData.js +2 -2
- package/es/core/editor/components/settings/{group → propertyViews/group}/DataTab/hoooks/useGroupRelateResource.js +3 -3
- package/es/core/editor/components/settings/{group → propertyViews/group}/GroupPropertyView.js +1 -1
- package/es/core/editor/components/settings/{group → propertyViews/group}/GroupPropertyView.module.scss +0 -0
- package/es/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +74 -0
- package/es/core/editor/components/settings/{group/SettingTab/GroupExpandSetting.js → propertyViews/group/SettingTab/GroupExpandStatus.js} +1 -1
- package/es/core/editor/components/settings/{group/SettingTab/NodeIconSelect.js → propertyViews/group/SettingTab/GroupIconSelect.js} +4 -4
- package/es/core/editor/components/settings/propertyViews/group/SettingTab/Setting.js +108 -0
- package/es/core/editor/components/settings/{group → propertyViews/group}/hooks/useGroup.js +1 -1
- package/es/core/editor/components/settings/{propertyViews.js → propertyViews/index.js} +6 -5
- package/es/core/editor/components/settings/propertyViews/layer/DataTab/LayerAddResourceButton.js +35 -0
- package/es/core/editor/components/settings/propertyViews/layer/DataTab/LayerAddResourceDrawer.js +48 -0
- package/es/core/editor/components/settings/propertyViews/layer/DataTab/NodeList.js +23 -0
- package/es/core/editor/components/settings/{layer → propertyViews/layer}/DataTab/RelateData.js +12 -9
- package/es/core/editor/components/settings/{layer → propertyViews/layer}/LayerPropertyView.js +6 -6
- package/es/core/editor/components/settings/propertyViews/layer/SettingTab/Setting.js +74 -0
- package/es/core/editor/components/settings/{layer/SettingTab/Setting.js → propertyViews/layer/SettingTab/Setting_bak.js} +3 -3
- package/es/core/editor/components/settings/{view → propertyViews/multipleElements}/BatchSetNodeSize.js +2 -2
- package/es/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +68 -0
- package/es/core/editor/components/settings/propertyViews/node/NodeIconSelect.js +35 -0
- package/es/core/editor/components/settings/{node → propertyViews/node}/NodeIconSelectTest.js +0 -0
- package/es/core/editor/components/settings/{node → propertyViews/node}/NodePropertyView.js +32 -12
- package/es/core/editor/components/settings/{node → propertyViews/node}/NodePropertyView.module.scss +0 -0
- package/es/core/editor/components/settings/{node → propertyViews/node}/TopoTreeSelect.js +0 -0
- package/es/core/editor/components/settings/{node → propertyViews/node}/data/BindResourceDrawer.js +1 -1
- package/es/core/editor/components/settings/{node → propertyViews/node}/data/NodeRelateResourceButton.js +0 -0
- package/es/core/editor/components/settings/{text → propertyViews/text}/TextPropertyView.js +2 -2
- package/es/core/editor/components/settings/propertyViews/view/BatchSetNodeSize.js +8 -0
- 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 +37 -0
- package/es/core/models/AttributeMetricDisplay.js +76 -1
- package/es/core/models/TopoApp.js +132 -100
- package/es/core/models/TopoDataModel.js +2 -2
- package/es/core/models/attrAndMetric.js +4 -4
- package/es/core/models/common/Alarm.js +236 -41
- package/es/core/models/common/mocks/index.js +39 -0
- package/es/core/models/topoData.js +109 -0
- package/es/core/viewer/components/plugins/MetricPollingPlugin.js +9 -0
- package/es/core/viewer/components/plugins/ViewerPlugin.js +11 -2
- package/es/core/viewer/components/titlebar/ViewerTools.js +7 -5
- package/es/core/viewer/components/titlebar/widgets/AlarmListShowButton.js +50 -0
- package/es/core/viewer/components/titlebar/widgets/NodesDragSwitch.js +57 -0
- package/es/core/viewer/components/titlebar/widgets/SearchWidget.js +41 -12
- package/es/hooks/useAlarm.js +65 -42
- package/es/hooks/usePolling.js +8 -12
- package/es/hooks/useRelateTopo.js +120 -0
- package/es/hooks/useResourceConfig.js +259 -7
- package/es/hooks/useSelection.js +24 -11
- package/es/hooks/useTopoEdit.js +354 -375
- package/es/index.js +2 -4
- package/es/models/linkDynamicStyle.js +2 -2
- package/es/models/topoAlarm.js +83 -3
- package/es/models/topoBizMod.js +31 -83
- package/es/models/topoCreateMod.js +50 -221
- package/es/models/topoMod.js +52 -41
- package/es/style.js +9 -10
- package/es/{core/components/TopoView → topoCenter/components}/Topo404.js +1 -1
- package/es/{core/components/TopoView → topoCenter/components}/TopoNoPermission.js +1 -1
- package/es/{core/components/TopoView/TopoContent.js → topoCenter/components/TopoView.js} +11 -12
- package/es/topoCenter/components/Topology.js +64 -52
- package/es/topoCenter/components/editor/plugins/LayerConfigPlugin.js +16 -0
- package/es/topoCenter/components/editor/propertyViews/LayerRelatedResourceList.js +49 -0
- package/es/topoCenter/getTopoData.js +2 -2
- package/es/topoCenter/hooks/useGroupResources.js +11 -0
- package/es/topoCenter/models/TopoCenter.js +8 -18
- package/es/topoCenter/utils/SortResourcesUtil.js +16 -0
- package/es/topoCenter/viewer/components/TopologyViewer.js +12 -7
- package/es/utils/ResourceConfigUtil.js +67 -0
- package/es/utils/SpecialCharacterValidateUtil.js +10 -0
- package/es/utils/htElementUtils.js +52 -26
- package/es/utils/template.js +7 -31
- package/es/utils/topoData.js +6 -7
- package/es/utils/topoIconUtil.js +3 -2
- package/lib/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.js +0 -0
- package/lib/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.module.scss +0 -0
- package/lib/{core/editor/components/LinkDynamicStyleSettingDrawer/rule → common/components/ColorPicker}/ColorPicker.scss +0 -0
- package/lib/common/components/ColorPicker/index.js +11 -0
- package/lib/components/Drawer/index.module.scss +3 -1
- package/lib/components/Link/index.js +6 -6
- package/lib/components/MultiResourceDrawer/index.js +3 -11
- package/lib/components/ResourceSelect/ResourceSelectDrawer.js +3 -7
- package/lib/components/ResourceSelectDrawer/ResourceSelectDrawer.js +23 -5
- package/lib/components/ResourceSelectDrawer/ResourceSelectDrawer.module.scss +3 -1
- package/lib/components/ResourceSelectDrawer/ResourceSelectList.js +2 -1
- package/lib/components/TagImageSelect/index.js +6 -1
- package/lib/components/TagImageSelect/index.module.scss +4 -0
- package/lib/components/TagSelect/index.js +2 -1
- package/lib/components/TagSelect/index.scss +23 -18
- package/lib/components/TemplateButton/index.module.scss +25 -1
- package/lib/components/index.module.scss +2 -2
- package/lib/constants/ResourceTypeLimit.js +6 -1
- package/lib/constants/constant.js +7 -13
- package/lib/core/components/AlarmListPanel/components/AlarmListItem.js +41 -0
- package/lib/core/components/AlarmListPanel/components/index.module.scss +7 -0
- package/lib/core/components/AlarmListPanel/constants/uicbb.js +17 -0
- package/lib/core/components/AlarmListPanel/index.js +111 -0
- package/lib/core/components/AlarmListPanel/index.module.scss +94 -0
- package/lib/core/components/AlarmListPanel/mocks/index.js +82 -0
- package/lib/core/components/TopoView/index.js +11 -0
- package/lib/core/components/TopoView/topoView.js +93 -96
- package/lib/core/components/titlebar/TitleBar.js +3 -1
- package/lib/core/components/titlebar/index.js +8 -0
- package/lib/core/editor/components/EditorPlugin.js +15 -23
- package/lib/core/editor/components/LinkDynamicStyleSettingDrawer/rule/RuleStyle.js +2 -3
- package/lib/core/editor/components/ResourceViewAttributeSetting/ResourceViewAttributeSettingPlugin.js +3 -4
- package/lib/core/editor/components/ResourceViewAttributeSetting/Setting.js +15 -10
- package/lib/core/editor/components/plugins/MultipleResourceSelectPlugin.js +25 -0
- package/lib/core/editor/components/{settings/SettingsForm.js → plugins/SaveLoading.js} +13 -10
- package/lib/core/editor/components/settings/Settings.js +62 -37
- package/lib/core/editor/components/settings/Settings.module.scss +6 -4
- package/lib/core/editor/components/settings/common/AddResourceButton.js +32 -0
- package/lib/core/editor/components/settings/common/AlignSetting/AlignSetting.module.scss +20 -0
- package/lib/core/editor/components/settings/common/AlignSetting/index.js +19 -13
- package/lib/core/editor/components/settings/common/GroupNodeList/icon.js +10 -19
- package/lib/core/editor/components/settings/common/LayoutSettings.js +48 -17
- package/lib/core/editor/components/settings/common/LayoutSettings.module.scss +63 -0
- package/lib/core/editor/components/settings/common/NodeSizeInput/NodeSizeInput.js +8 -54
- package/lib/core/editor/components/settings/common/SizeInput/NodeSizeInput.js +130 -0
- package/lib/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/NodeSizeInput.module.scss +0 -0
- package/lib/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/NodeSizeNumberPicker.js +0 -0
- package/lib/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/img/icon_/350/247/243/351/224/201.svg +0 -0
- package/lib/core/editor/components/settings/common/{NodeSizeInput → SizeInput}/img/icon_/351/224/201.svg +0 -0
- package/lib/core/editor/components/settings/common/SizeInput/index.js +11 -0
- package/lib/core/editor/components/settings/common/tab/TabView.module.scss +4 -2
- package/lib/core/editor/components/settings/common/text/TextStyle.js +1 -1
- package/lib/core/editor/components/settings/{Style.js → propertyViews/edge/CommonEdgePropertyView.js} +60 -52
- package/lib/core/editor/components/settings/propertyViews/edge/EdgePropertyView.js +38 -0
- package/lib/core/editor/components/settings/propertyViews/edge/LinkPropertyView/Data/index.js +71 -0
- package/lib/core/editor/components/settings/propertyViews/edge/LinkPropertyView/LinkPropertyView.js +26 -0
- package/lib/core/editor/components/settings/propertyViews/edge/LinkPropertyView/Setting/index.js +65 -0
- package/lib/core/editor/components/settings/propertyViews/edge/LinkPropertyView/index.js +11 -0
- package/lib/core/editor/components/settings/propertyViews/group/DataTab/GroupAddResourceButton.js +30 -0
- package/lib/core/editor/components/settings/{group → propertyViews/group}/DataTab/GroupNodeList.js +1 -1
- package/lib/core/editor/components/settings/{group → propertyViews/group}/DataTab/RelateData.js +3 -3
- package/lib/core/editor/components/settings/{group → propertyViews/group}/DataTab/hoooks/useGroupRelateResource.js +3 -3
- package/lib/core/editor/components/settings/{group → propertyViews/group}/GroupPropertyView.js +1 -1
- package/lib/core/editor/components/settings/{group → propertyViews/group}/GroupPropertyView.module.scss +0 -0
- package/lib/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +92 -0
- package/lib/core/editor/components/settings/{group/SettingTab/GroupExpandSetting.js → propertyViews/group/SettingTab/GroupExpandStatus.js} +2 -2
- package/lib/core/editor/components/settings/{group/SettingTab/NodeIconSelect.js → propertyViews/group/SettingTab/GroupIconSelect.js} +4 -4
- package/lib/core/editor/components/settings/propertyViews/group/SettingTab/Setting.js +131 -0
- package/lib/core/editor/components/settings/{group → propertyViews/group}/hooks/useGroup.js +1 -1
- package/lib/core/editor/components/settings/{propertyViews.js → propertyViews/index.js} +8 -7
- package/lib/core/editor/components/settings/{common/GroupNodeList/ResourceSelectButton.js → propertyViews/layer/DataTab/LayerAddResourceButton.js} +30 -30
- package/lib/core/editor/components/settings/propertyViews/layer/DataTab/LayerAddResourceDrawer.js +63 -0
- package/lib/core/editor/components/settings/{layer → propertyViews/layer}/DataTab/NodeList.js +14 -11
- package/lib/core/editor/components/settings/{layer → propertyViews/layer}/DataTab/RelateData.js +12 -9
- package/lib/core/editor/components/settings/{layer → propertyViews/layer}/LayerPropertyView.js +2 -2
- package/lib/core/editor/components/settings/{group → propertyViews/layer}/SettingTab/Setting.js +25 -59
- package/lib/core/editor/components/settings/{layer/SettingTab/Setting.js → propertyViews/layer/SettingTab/Setting_bak.js} +3 -3
- package/lib/core/editor/components/settings/{view → propertyViews/multipleElements}/BatchSetNodeSize.js +2 -2
- package/lib/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +88 -0
- package/lib/core/{components/TopoView/Topo.js → editor/components/settings/propertyViews/node/NodeIconSelect.js} +32 -20
- package/lib/core/editor/components/settings/{node → propertyViews/node}/NodeIconSelectTest.js +0 -0
- package/lib/core/editor/components/settings/{node → propertyViews/node}/NodePropertyView.js +33 -13
- package/lib/core/editor/components/settings/{node → propertyViews/node}/NodePropertyView.module.scss +0 -0
- package/lib/core/editor/components/settings/{node → propertyViews/node}/TopoTreeSelect.js +0 -0
- package/lib/core/editor/components/settings/{node → propertyViews/node}/data/BindResourceDrawer.js +1 -1
- package/lib/core/editor/components/settings/{node → propertyViews/node}/data/NodeRelateResourceButton.js +0 -0
- package/lib/core/editor/components/settings/{text → propertyViews/text}/TextPropertyView.js +2 -2
- package/lib/{components/ResourceSelect/DefaultResourceSelectDrawer.js → core/editor/components/settings/propertyViews/view/BatchSetNodeSize.js} +9 -3
- 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 +54 -0
- package/lib/core/models/AttributeMetricDisplay.js +83 -1
- package/lib/core/models/TopoApp.js +131 -99
- package/lib/core/models/TopoDataModel.js +1 -1
- package/lib/core/models/attrAndMetric.js +4 -4
- package/lib/core/models/common/Alarm.js +251 -39
- package/lib/core/models/common/mocks/index.js +44 -0
- package/lib/core/models/topoData.js +129 -0
- package/lib/core/viewer/components/plugins/MetricPollingPlugin.js +18 -0
- package/lib/core/viewer/components/plugins/ViewerPlugin.js +13 -2
- package/lib/core/viewer/components/titlebar/ViewerTools.js +7 -5
- package/lib/core/viewer/components/titlebar/widgets/AlarmListShowButton.js +64 -0
- package/lib/core/viewer/components/titlebar/widgets/{ElementDragLockButton/ElementDragLockButton.js → NodesDragSwitch.js} +24 -6
- package/lib/core/viewer/components/titlebar/widgets/SearchWidget.js +40 -10
- package/lib/hooks/useAlarm.js +61 -40
- package/lib/hooks/usePolling.js +8 -12
- package/lib/hooks/useRelateTopo.js +132 -0
- package/lib/hooks/useResourceConfig.js +266 -7
- package/lib/hooks/useSelection.js +28 -11
- package/lib/hooks/useTopoEdit.js +357 -374
- package/lib/index.js +2 -11
- package/lib/models/linkDynamicStyle.js +2 -2
- package/lib/models/topoAlarm.js +90 -2
- package/lib/models/topoBizMod.js +31 -84
- package/lib/models/topoCreateMod.js +50 -216
- package/lib/models/topoMod.js +48 -39
- package/lib/style.js +9 -10
- package/lib/{core/components/TopoView → topoCenter/components}/Topo404.js +1 -1
- package/lib/{core/components/TopoView → topoCenter/components}/TopoNoPermission.js +1 -1
- package/lib/{core/components/TopoView/TopoContent.js → topoCenter/components/TopoView.js} +10 -13
- package/lib/topoCenter/components/Topology.js +68 -56
- package/lib/topoCenter/components/editor/plugins/LayerConfigPlugin.js +27 -0
- package/lib/topoCenter/components/editor/propertyViews/LayerRelatedResourceList.js +65 -0
- package/lib/topoCenter/getTopoData.js +2 -2
- package/lib/topoCenter/hooks/useGroupResources.js +16 -0
- package/lib/topoCenter/models/TopoCenter.js +9 -18
- package/lib/topoCenter/utils/SortResourcesUtil.js +21 -0
- package/lib/topoCenter/viewer/components/TopologyViewer.js +13 -8
- package/lib/utils/ResourceConfigUtil.js +73 -0
- package/lib/utils/SpecialCharacterValidateUtil.js +18 -0
- package/lib/utils/htElementUtils.js +63 -28
- package/lib/utils/template.js +10 -36
- package/lib/utils/topoData.js +6 -7
- package/lib/utils/topoIconUtil.js +4 -2
- package/package.json +10 -9
- package/es/components/ResourceSelect/DefaultResourceSelectDrawer.js +0 -5
- package/es/core/components/TopoView/Topo.js +0 -22
- package/es/core/editor/components/settings/SettingsForm.js +0 -10
- package/es/core/editor/components/settings/Style.js +0 -77
- package/es/core/editor/components/settings/common/GroupNodeList/ResourceSelectButton.js +0 -34
- package/es/core/editor/components/settings/group/SettingTab/Setting.js +0 -105
- package/es/core/editor/components/settings/group/hooks/useGroupExpand.js +0 -20
- package/es/core/editor/components/settings/layer/DataTab/NodeList.js +0 -19
- package/es/core/editor/components/settings/layer/LayerSettingsForm.js +0 -276
- package/es/core/editor/components/settings/link/LinkPropertyView.js +0 -108
- package/es/core/editor/components/settings/node/NodeIconSelect.js +0 -27
- package/es/core/editor/components/settings/view/ViewPropertyView.js +0 -109
- package/es/core/viewer/components/titlebar/widgets/ElementDragLockButton/ElementDragLockButton.js +0 -40
- package/es/hooks/useContainerLinkTopo.js +0 -86
- package/es/topoCenter/models/Topo.js +0 -0
- package/lib/core/editor/components/settings/group/hooks/useGroupExpand.js +0 -26
- package/lib/core/editor/components/settings/layer/LayerSettingsForm.js +0 -301
- package/lib/core/editor/components/settings/link/LinkPropertyView.js +0 -134
- package/lib/core/editor/components/settings/node/NodeIconSelect.js +0 -38
- package/lib/core/editor/components/settings/view/ViewPropertyView.js +0 -129
- package/lib/hooks/useContainerLinkTopo.js +0 -95
- package/lib/topoCenter/models/Topo.js +0 -1