@riil-frontend/component-topology 9.0.0-a.9 → 9.0.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 (104) hide show
  1. package/build/1.js +2 -2
  2. package/build/2.js +1 -1
  3. package/build/index.css +1 -1
  4. package/build/index.js +13 -13
  5. package/es/core/components/TopoView/GraphViewPanel.js +17 -4
  6. package/es/core/components/TopoView/TopoView.module.scss +17 -3
  7. package/es/core/editor/components/BackgroundView/index.module.scss +2 -0
  8. package/es/core/editor/components/EditorPlugin.js +4 -1
  9. package/es/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +1 -1
  10. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +20 -5
  11. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +5 -1
  12. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +31 -12
  13. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.module.scss +12 -2
  14. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +6 -0
  15. package/es/core/editor/components/Toolbar/widgets/FontSizeWidget.js +1 -1
  16. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +1 -1
  17. package/es/core/editor/components/settings/core/getPropertyViewType.js +3 -0
  18. package/es/core/editor/components/settings/core/updateElementProperty.js +6 -1
  19. package/es/core/editor/components/settings/propertyViews/group/DataTab/hoooks/useGroupRelateResource.js +4 -3
  20. package/es/core/editor/components/settings/propertyViews/layer/DataTab/NodeList.js +3 -2
  21. package/es/core/editor/components/settings/propertyViews/node/data/BindIpInput.js +95 -0
  22. package/es/core/editor/components/settings/propertyViews/node/data/Data.js +46 -14
  23. package/es/core/editor/config/themes.js +53 -2
  24. package/es/core/editor/utils/edgeTypeStyleUtil.js +38 -0
  25. package/es/core/hooks/useCanvasTheme.js +12 -4
  26. package/es/core/hooks/useResourceConfig.js +2 -1
  27. package/es/core/hooks/useTopoEdit.js +120 -19
  28. package/es/core/hooks/useTopoFullscreen.js +32 -0
  29. package/es/core/models/AttributeMetricDisplay.js +89 -74
  30. package/es/core/models/TopoApp.js +1 -1
  31. package/es/core/models/attributeFormatter/index.js +16 -16
  32. package/es/core/models/topoData.js +16 -9
  33. package/es/core/models/utils/linkUtils.js +52 -27
  34. package/es/core/store/models/topoConfig.js +51 -20
  35. package/es/core/test/Test.js +52 -0
  36. package/es/core/utils/graphLinkUtil.js +11 -6
  37. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/BaseInfo.js +16 -2
  38. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +8 -78
  39. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/LinkTopo.js +14 -0
  40. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/hooks/useMetricPolling.js +27 -37
  41. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/services/index.js +57 -1
  42. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/index.module.scss +6 -0
  43. package/es/networkTopo/getTopoData.js +2 -1
  44. package/es/networkTopo/models/IpNodeTagsTipsBuilder.js +113 -0
  45. package/es/networkTopo/models/LinkDynamicStyleExecutor.js +8 -8
  46. package/es/networkTopo/models/TopoCenter.js +4 -3
  47. package/es/networkTopo/services/link.js +1 -1
  48. package/es/networkTopo/services/topo/basic.js +27 -26
  49. package/es/networkTopo/services/topo/networkLink.js +45 -3
  50. package/es/networkTopo/utils/exitLinkUtil.js +257 -0
  51. package/es/style.js +1 -0
  52. package/es/utils/ResourceConfigUtil.js +5 -4
  53. package/es/utils/htElementDataUtil.js +1 -7
  54. package/es/utils/htElementUtils.js +21 -21
  55. package/lib/core/components/TopoView/GraphViewPanel.js +18 -3
  56. package/lib/core/components/TopoView/TopoView.module.scss +17 -3
  57. package/lib/core/editor/components/BackgroundView/index.module.scss +2 -0
  58. package/lib/core/editor/components/EditorPlugin.js +7 -1
  59. package/lib/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +1 -1
  60. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +19 -3
  61. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +5 -1
  62. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +31 -12
  63. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.module.scss +12 -2
  64. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +6 -0
  65. package/lib/core/editor/components/Toolbar/widgets/FontSizeWidget.js +1 -1
  66. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +1 -1
  67. package/lib/core/editor/components/settings/core/getPropertyViewType.js +3 -0
  68. package/lib/core/editor/components/settings/core/updateElementProperty.js +6 -1
  69. package/lib/core/editor/components/settings/propertyViews/group/DataTab/hoooks/useGroupRelateResource.js +3 -3
  70. package/lib/core/editor/components/settings/propertyViews/layer/DataTab/NodeList.js +3 -1
  71. package/lib/core/editor/components/settings/propertyViews/node/data/BindIpInput.js +111 -0
  72. package/lib/core/editor/components/settings/propertyViews/node/data/Data.js +48 -14
  73. package/lib/core/editor/config/themes.js +53 -2
  74. package/lib/core/editor/utils/edgeTypeStyleUtil.js +39 -0
  75. package/lib/core/hooks/useCanvasTheme.js +12 -4
  76. package/lib/core/hooks/useResourceConfig.js +2 -1
  77. package/lib/core/hooks/useTopoEdit.js +121 -18
  78. package/lib/core/hooks/useTopoFullscreen.js +42 -0
  79. package/lib/core/models/AttributeMetricDisplay.js +85 -74
  80. package/lib/core/models/TopoApp.js +1 -1
  81. package/lib/core/models/attributeFormatter/index.js +14 -14
  82. package/lib/core/models/topoData.js +16 -9
  83. package/lib/core/models/utils/linkUtils.js +53 -26
  84. package/lib/core/store/models/topoConfig.js +56 -19
  85. package/lib/core/test/Test.js +52 -0
  86. package/lib/core/utils/graphLinkUtil.js +10 -5
  87. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/BaseInfo.js +15 -1
  88. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +7 -78
  89. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/LinkTopo.js +14 -0
  90. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/hooks/useMetricPolling.js +27 -36
  91. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/services/index.js +58 -1
  92. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/index.module.scss +6 -0
  93. package/lib/networkTopo/getTopoData.js +2 -1
  94. package/lib/networkTopo/models/IpNodeTagsTipsBuilder.js +123 -0
  95. package/lib/networkTopo/models/LinkDynamicStyleExecutor.js +8 -8
  96. package/lib/networkTopo/models/TopoCenter.js +4 -3
  97. package/lib/networkTopo/services/topo/basic.js +28 -28
  98. package/lib/networkTopo/services/topo/networkLink.js +45 -3
  99. package/lib/networkTopo/utils/exitLinkUtil.js +269 -0
  100. package/lib/style.js +1 -0
  101. package/lib/utils/ResourceConfigUtil.js +4 -4
  102. package/lib/utils/htElementDataUtil.js +0 -10
  103. package/lib/utils/htElementUtils.js +21 -21
  104. package/package.json +2 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.