@riil-frontend/component-topology 2.15.42 → 2.15.45

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 (133) hide show
  1. package/build/index.css +1 -1
  2. package/build/index.js +2 -2
  3. package/es/common/components/ColorPicker/ColorPicker.js +5 -2
  4. package/es/components/Drawer/index.js +8 -2
  5. package/es/components/TemplateButton/index.module.scss +1 -0
  6. package/es/core/common/hooks/ht/useDataModelDataPropertyChange.js +13 -4
  7. package/es/core/common/icons/icon.js +1 -1
  8. package/es/core/common/icons/useIcons.js +1 -1
  9. package/es/core/components/TopoView/topoView.js +8 -18
  10. package/es/core/{models/createTopoApp.js → createTopoApp.js} +1 -1
  11. package/es/core/editor/components/BackgroundView/index.js +80 -44
  12. package/es/core/editor/components/BackgroundView/index.module.scss +1 -0
  13. package/es/core/editor/components/{iconManage/IconManage.js → CustomIconPlugin/CustomIconPlugin.js} +3 -3
  14. package/es/core/editor/components/{iconManage → CustomIconPlugin}/RenameDialog.js +1 -1
  15. package/es/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.js +16 -2
  16. package/es/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.module.scss +0 -0
  17. package/es/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.scss +0 -0
  18. package/es/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialogWrapper.js +1 -1
  19. package/es/core/editor/components/CustomIconPlugin/index.js +2 -0
  20. package/es/core/editor/components/{iconManage → CustomIconPlugin}/utils/svgToShape.js +0 -0
  21. package/es/core/editor/components/EditorPlugin.js +2 -2
  22. package/es/core/editor/components/settings/propertyViews/group/SettingTab/Setting.js +2 -0
  23. package/es/core/editor/components/settings/propertyViews/node/NodePropertyView.js +2 -2
  24. package/es/core/models/TopoApp.js +9 -5
  25. package/es/core/services/background.js +26 -1
  26. package/es/core/store/coreModels.js +32 -26
  27. package/es/core/store/createStore.js +1 -1
  28. package/es/core/test/Test.js +3 -1
  29. package/es/core/viewer/contextmenu/buildNodeContextmenu.js +65 -64
  30. package/es/createTopo.js +1 -1
  31. package/es/hooks/useAlarm.js +3 -6
  32. package/es/hooks/useResourceConfig.js +1 -1
  33. package/es/hooks/useTopoEdit.js +4 -8
  34. package/es/models/{iconManage.js → customIcon.js} +1 -1
  35. package/es/models/topoBizMod.js +22 -52
  36. package/es/models/{topoCreateMod.js → topoConfig.js} +8 -4
  37. package/es/models/topoMod.js +32 -69
  38. package/es/{components → topoCenter/components}/Link/form.js +0 -0
  39. package/es/{components → topoCenter/components}/Link/hook.js +0 -0
  40. package/es/{components → topoCenter/components}/Link/index copy.js +1 -1
  41. package/es/{components → topoCenter/components}/Link/index.js +1 -1
  42. package/es/{components → topoCenter/components}/Link/index.module.scss +0 -0
  43. package/es/{components → topoCenter/components}/Link/setting.js +0 -0
  44. package/es/topoCenter/components/TopoView.js +16 -3
  45. package/es/topoCenter/components/Topology.js +0 -5
  46. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/RuleSetting.js +0 -0
  47. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/RuleSetting.module.scss +0 -0
  48. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/index.js +0 -0
  49. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/Rule.js +0 -0
  50. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/Rule.module.scss +0 -0
  51. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.js +0 -0
  52. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.module.scss +0 -0
  53. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.scss +0 -0
  54. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleStyle.js +0 -0
  55. package/es/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleStyle.module.scss +0 -0
  56. package/es/topoCenter/components/editor/propertyViews/edge/EdgeGroupPropertyView.js +1 -1
  57. package/es/topoCenter/components/editor/propertyViews/edge/LinkPropertyView/Data/index.js +3 -3
  58. package/es/topoCenter/components/editor/propertyViews/edge/addLinkDrawer/AddLinkDrawer.js +1 -1
  59. package/es/topoCenter/components/editor/propertyViews/edge/addLinkDrawer/components/editLinkInfo.js +1 -1
  60. package/es/topoCenter/components/editor/propertyViews/edge/link/{LindInfoPreview.js → LinkInfoPreview.js} +1 -1
  61. package/es/topoCenter/components/editor/propertyViews/edge/link/{LindInfoPreview.module.scss → LinkInfoPreview.module.scss} +0 -0
  62. package/es/{hooks → topoCenter/hooks/viewer}/useRelateTopo.js +2 -2
  63. package/es/{models → topoCenter/store}/linkDynamicStyle.js +3 -3
  64. package/es/{models → topoCenter/store}/linkDynamicStyleConfig.js +2 -1
  65. package/es/{models → topoCenter/store}/linkManager.js +0 -0
  66. package/lib/common/components/ColorPicker/ColorPicker.js +5 -2
  67. package/lib/components/Drawer/index.js +7 -2
  68. package/lib/components/TemplateButton/index.module.scss +1 -0
  69. package/lib/core/common/hooks/ht/useDataModelDataPropertyChange.js +13 -4
  70. package/lib/core/common/icons/icon.js +1 -1
  71. package/lib/core/common/icons/useIcons.js +1 -1
  72. package/lib/core/components/TopoView/topoView.js +9 -20
  73. package/lib/core/{models/createTopoApp.js → createTopoApp.js} +1 -1
  74. package/lib/core/editor/components/BackgroundView/index.js +80 -44
  75. package/lib/core/editor/components/BackgroundView/index.module.scss +1 -0
  76. package/lib/core/editor/components/{iconManage/IconManage.js → CustomIconPlugin/CustomIconPlugin.js} +3 -3
  77. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/RenameDialog.js +1 -1
  78. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.js +17 -2
  79. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.module.scss +0 -0
  80. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialog.scss +0 -0
  81. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/UploadIconDialogWrapper.js +1 -1
  82. package/lib/core/editor/components/CustomIconPlugin/index.js +11 -0
  83. package/lib/core/editor/components/{iconManage → CustomIconPlugin}/utils/svgToShape.js +0 -0
  84. package/lib/core/editor/components/EditorPlugin.js +2 -2
  85. package/lib/core/editor/components/settings/propertyViews/group/SettingTab/Setting.js +2 -0
  86. package/lib/core/editor/components/settings/propertyViews/node/NodePropertyView.js +1 -1
  87. package/lib/core/models/TopoApp.js +9 -5
  88. package/lib/core/services/background.js +26 -1
  89. package/lib/core/store/coreModels.js +35 -26
  90. package/lib/core/store/createStore.js +2 -2
  91. package/lib/core/test/Test.js +3 -1
  92. package/lib/core/viewer/contextmenu/buildNodeContextmenu.js +65 -64
  93. package/lib/createTopo.js +1 -1
  94. package/lib/hooks/useAlarm.js +3 -6
  95. package/lib/hooks/useResourceConfig.js +1 -1
  96. package/lib/hooks/useTopoEdit.js +4 -8
  97. package/lib/models/{iconManage.js → customIcon.js} +1 -1
  98. package/lib/models/topoBizMod.js +22 -52
  99. package/lib/models/{topoCreateMod.js → topoConfig.js} +7 -4
  100. package/lib/models/topoMod.js +32 -69
  101. package/lib/{components → topoCenter/components}/Link/form.js +0 -0
  102. package/lib/{components → topoCenter/components}/Link/hook.js +0 -0
  103. package/lib/{components → topoCenter/components}/Link/index copy.js +1 -1
  104. package/lib/{components → topoCenter/components}/Link/index.js +1 -1
  105. package/lib/{components → topoCenter/components}/Link/index.module.scss +0 -0
  106. package/lib/{components → topoCenter/components}/Link/setting.js +0 -0
  107. package/lib/topoCenter/components/TopoView.js +19 -3
  108. package/lib/topoCenter/components/Topology.js +0 -7
  109. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/RuleSetting.js +0 -0
  110. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/RuleSetting.module.scss +0 -0
  111. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/index.js +0 -0
  112. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/Rule.js +0 -0
  113. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/Rule.module.scss +0 -0
  114. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.js +0 -0
  115. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.module.scss +0 -0
  116. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleCondition.scss +0 -0
  117. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleStyle.js +0 -0
  118. package/lib/{core/editor/components → topoCenter/components/editor}/LinkDynamicStyleSettingDrawer/rule/RuleStyle.module.scss +0 -0
  119. package/lib/topoCenter/components/editor/propertyViews/edge/EdgeGroupPropertyView.js +2 -2
  120. package/lib/topoCenter/components/editor/propertyViews/edge/LinkPropertyView/Data/index.js +8 -8
  121. package/lib/topoCenter/components/editor/propertyViews/edge/addLinkDrawer/AddLinkDrawer.js +1 -1
  122. package/lib/topoCenter/components/editor/propertyViews/edge/addLinkDrawer/components/editLinkInfo.js +1 -1
  123. package/lib/topoCenter/components/editor/propertyViews/edge/link/{LindInfoPreview.js → LinkInfoPreview.js} +4 -4
  124. package/lib/topoCenter/components/editor/propertyViews/edge/link/{LindInfoPreview.module.scss → LinkInfoPreview.module.scss} +0 -0
  125. package/lib/{hooks → topoCenter/hooks/viewer}/useRelateTopo.js +2 -2
  126. package/lib/{models → topoCenter/store}/linkDynamicStyle.js +3 -3
  127. package/lib/{models → topoCenter/store}/linkDynamicStyleConfig.js +2 -1
  128. package/lib/{models → topoCenter/store}/linkManager.js +0 -0
  129. package/package.json +2 -2
  130. package/es/core/editor/LinkDynamicStyleConfig.js +0 -16
  131. package/es/core/store/getStoreModels.js +0 -40
  132. package/lib/core/editor/LinkDynamicStyleConfig.js +0 -21
  133. package/lib/core/store/getStoreModels.js +0 -67

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.