@riil-frontend/component-topology 7.0.7 → 8.0.0-a.1

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.
Files changed (42) hide show
  1. package/build/index.js +1 -1
  2. package/es/components/BatchAttrMetric/setting.js +0 -2
  3. package/es/core/common/icons/basicIcons.js +57 -0
  4. package/es/core/common/icons/icon.js +3 -9
  5. package/es/core/components/ResourceViewAttributeSetting/Setting.js +5 -11
  6. package/es/core/components/ResourceViewAttributeSetting/nodeCiTypeAttrUtil.js +121 -0
  7. package/es/core/components/TopoView/GraphViewPanel.js +1 -2
  8. package/es/core/components/TopoView/topoView.js +3 -1
  9. package/es/core/hooks/useTopoEdit.js +35 -127
  10. package/es/core/models/AttributeMetricDisplay.js +4 -4
  11. package/es/core/models/TopoApp.js +1 -1
  12. package/es/core/models/tagstips/ElementTagTipConfig.js +17 -9
  13. package/es/core/models/utils/linkUtils.js +30 -36
  14. package/es/core/store/models/topoBizMod.js +1 -11
  15. package/es/core/store/models/topoConfig.js +6 -7
  16. package/es/core/store/models/topoMod.js +74 -50
  17. package/es/networkTopo/getTopoData.js +72 -64
  18. package/es/networkTopo/models/TopoCenter.js +14 -94
  19. package/es/networkTopo/services/topo/basic.js +26 -8
  20. package/es/networkTopo/utils/resourcePermissionUtil.js +2 -2
  21. package/es/utils/topoData.js +4 -169
  22. package/lib/components/BatchAttrMetric/setting.js +0 -4
  23. package/lib/core/common/icons/basicIcons.js +62 -0
  24. package/lib/core/common/icons/icon.js +4 -10
  25. package/lib/core/components/ResourceViewAttributeSetting/Setting.js +6 -11
  26. package/lib/core/components/ResourceViewAttributeSetting/nodeCiTypeAttrUtil.js +127 -0
  27. package/lib/core/components/TopoView/GraphViewPanel.js +1 -2
  28. package/lib/core/components/TopoView/topoView.js +4 -1
  29. package/lib/core/hooks/useTopoEdit.js +35 -129
  30. package/lib/core/models/AttributeMetricDisplay.js +4 -4
  31. package/lib/core/models/TopoApp.js +1 -1
  32. package/lib/core/models/tagstips/ElementTagTipConfig.js +17 -9
  33. package/lib/core/models/utils/linkUtils.js +27 -33
  34. package/lib/core/store/models/topoBizMod.js +1 -11
  35. package/lib/core/store/models/topoConfig.js +5 -6
  36. package/lib/core/store/models/topoMod.js +71 -48
  37. package/lib/networkTopo/getTopoData.js +73 -65
  38. package/lib/networkTopo/models/TopoCenter.js +14 -94
  39. package/lib/networkTopo/services/topo/basic.js +26 -8
  40. package/lib/networkTopo/utils/resourcePermissionUtil.js +2 -2
  41. package/lib/utils/topoData.js +6 -172
  42. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riil-frontend/component-topology",
3
- "version": "7.0.7",
3
+ "version": "8.0.0-a.1",
4
4
  "description": "拓扑",
5
5
  "scripts": {
6
6
  "start": "build-scripts start",
@@ -116,6 +116,6 @@
116
116
  "access": "public"
117
117
  },
118
118
  "license": "MIT",
119
- "homepage": "https://unpkg.com/@riil-frontend/component-topology@7.0.7/build/index.html",
119
+ "homepage": "https://unpkg.com/@riil-frontend/component-topology@8.0.0-a.1/build/index.html",
120
120
  "gitHead": "2da19ffccbb7ca60a8acf396e39f542c68bb33f5"
121
121
  }