@riil-frontend/component-topology 6.0.0-alpha.42 → 6.0.0-alpha.44

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 (124) 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 +21 -21
  5. package/demo/CHANGELOG/CHANGELOG.md +5 -0
  6. package/es/components/VerticalIconTab/VerticalIconTab.js +11 -1
  7. package/es/components/VerticalIconTab/VerticalIconTab.module.scss +1 -0
  8. package/es/core/components/DisplaySettingDrawer/hooks/useDisplaySetting.js +8 -3
  9. package/es/core/components/TopoView/topoView.js +3 -3
  10. package/es/core/editor/components/Sidebar/panes.js +6 -1
  11. package/es/core/editor/components/Toolbar/widgets/AddResourceButton.js +1 -1
  12. package/es/core/editor/components/Toolbar/widgets/BoxBackgroundButton/BoxBackgroundButton.js +1 -1
  13. package/es/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +1 -1
  14. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +1 -1
  15. package/es/core/editor/components/Toolbar/widgets/FontColorButton.js +38 -12
  16. package/es/core/editor/components/Toolbar/widgets/FontColorButton.module.scss +4 -5
  17. package/es/core/editor/components/Toolbar/widgets/FontStyleButton.js +1 -1
  18. package/es/core/editor/components/Toolbar/widgets/Layout/index.js +2 -2
  19. package/es/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +8 -1
  20. package/es/core/editor/components/Toolbar/widgets/NodeImageButton/NodeImageButton.js +1 -1
  21. package/es/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +1 -1
  22. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +1 -1
  23. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +1 -1
  24. package/es/core/editor/components/settings/CloseablePanel.module.scss +12 -0
  25. package/es/core/editor/components/settings/PropertyView.js +21 -18
  26. package/es/core/editor/components/settings/Settings.js +39 -77
  27. package/es/core/editor/components/settings/Settings.module.scss +2 -10
  28. package/es/core/editor/components/settings/core/PropertyViewManager.js +61 -0
  29. package/es/core/editor/components/settings/core/getPropertyViewType.js +34 -0
  30. package/es/core/editor/components/settings/core/updateElementProperty.js +21 -0
  31. package/es/core/editor/components/settings/propertyViews/box/BoxPropertyView.js +6 -13
  32. package/es/core/editor/components/settings/propertyViews/box/BoxPropertyViewV1.js +58 -0
  33. package/es/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +5 -2
  34. package/es/core/editor/components/settings/propertyViews/edge/EdgeGroupPropertyView.js +7 -8
  35. package/es/core/editor/components/settings/propertyViews/edge/EdgePropertyView.js +9 -23
  36. package/es/core/editor/components/settings/propertyViews/edge/addEdgeProps.js +10 -0
  37. package/es/core/editor/components/settings/propertyViews/edge/edgeGroup/EdgeGroupSetting.js +1 -6
  38. package/es/core/editor/components/settings/propertyViews/group/GroupPropertyView.js +13 -21
  39. package/es/core/editor/components/settings/propertyViews/group/GroupPropertyView.module.scss +8 -1
  40. package/es/core/editor/components/settings/propertyViews/group/GroupPropertyViewV1.js +28 -0
  41. package/es/core/editor/components/settings/propertyViews/group/SettingTab/GroupBasicSetting.js +74 -0
  42. package/es/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +9 -7
  43. package/es/core/editor/components/settings/propertyViews/group/cluster/ClusterGroupRelateData.js +2 -1
  44. package/es/core/editor/components/settings/propertyViews/index.js +4 -2
  45. package/es/core/editor/components/settings/propertyViews/layer/BasicSetting.js +57 -0
  46. package/es/core/editor/components/settings/propertyViews/layer/LayerPropertyView.js +11 -17
  47. package/es/core/editor/components/settings/propertyViews/layer/LayerPropertyView.module.scss +10 -0
  48. package/es/core/editor/components/settings/propertyViews/layer/LayerPropertyViewV1.js +27 -0
  49. package/es/core/editor/components/settings/propertyViews/node/NodePropertyView.js +8 -32
  50. package/es/core/editor/components/settings/propertyViews/node/NodePropertyViewV1.js +53 -0
  51. package/es/core/editor/components/settings/propertyViews/node/Setting/BasicSetting.js +49 -0
  52. package/es/core/editor/components/settings/propertyViews/node/data/Data.js +2 -1
  53. package/es/core/editor/components/settings/propertyViews/node/data/NodeRelateResourceButton.js +1 -0
  54. package/es/core/editor/components/settings/propertyViews/text/TextPropertyView.js +4 -19
  55. package/es/core/models/HistoryManager.js +11 -14
  56. package/es/core/models/{SelectionManager.js → SelectionModel.js} +27 -18
  57. package/es/core/models/TopoApp.js +3 -3
  58. package/es/networkTopo/components/editor/propertyViews/edge/EdgePropertyView.js +39 -6
  59. package/es/networkTopo/components/editor/propertyViews/edge/LinkPropertyView/LinkPropertyView.js +10 -16
  60. package/es/networkTopo/components/editor/propertyViews/edge/LinkPropertyView/LinkPropertyViewV1.js +37 -0
  61. package/es/networkTopo/components/editor/propertyViews/edge/link/LinkInfoPreview.module.scss +1 -1
  62. package/es/networkTopo/models/LinkDynamicStyleExecutor.js +2 -2
  63. package/es/style.js +1 -1
  64. package/lib/components/VerticalIconTab/VerticalIconTab.js +14 -1
  65. package/lib/components/VerticalIconTab/VerticalIconTab.module.scss +1 -0
  66. package/lib/core/components/DisplaySettingDrawer/hooks/useDisplaySetting.js +8 -3
  67. package/lib/core/components/TopoView/topoView.js +3 -3
  68. package/lib/core/editor/components/Sidebar/panes.js +6 -1
  69. package/lib/core/editor/components/Toolbar/widgets/AddResourceButton.js +1 -1
  70. package/lib/core/editor/components/Toolbar/widgets/BoxBackgroundButton/BoxBackgroundButton.js +1 -1
  71. package/lib/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +1 -1
  72. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +1 -1
  73. package/lib/core/editor/components/Toolbar/widgets/FontColorButton.js +38 -12
  74. package/lib/core/editor/components/Toolbar/widgets/FontColorButton.module.scss +4 -5
  75. package/lib/core/editor/components/Toolbar/widgets/FontStyleButton.js +1 -1
  76. package/lib/core/editor/components/Toolbar/widgets/Layout/index.js +2 -2
  77. package/lib/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +8 -1
  78. package/lib/core/editor/components/Toolbar/widgets/NodeImageButton/NodeImageButton.js +1 -1
  79. package/lib/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +1 -1
  80. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +1 -1
  81. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +1 -1
  82. package/lib/core/editor/components/settings/CloseablePanel.module.scss +12 -0
  83. package/lib/core/editor/components/settings/PropertyView.js +26 -19
  84. package/lib/core/editor/components/settings/Settings.js +44 -79
  85. package/lib/core/editor/components/settings/Settings.module.scss +2 -10
  86. package/lib/core/editor/components/settings/core/PropertyViewManager.js +70 -0
  87. package/lib/core/editor/components/settings/core/getPropertyViewType.js +40 -0
  88. package/lib/core/editor/components/settings/core/updateElementProperty.js +27 -0
  89. package/lib/core/editor/components/settings/propertyViews/box/BoxPropertyView.js +6 -13
  90. package/lib/core/editor/components/settings/propertyViews/box/BoxPropertyViewV1.js +76 -0
  91. package/lib/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +8 -2
  92. package/lib/core/editor/components/settings/propertyViews/edge/EdgeGroupPropertyView.js +9 -12
  93. package/lib/core/editor/components/settings/propertyViews/edge/EdgePropertyView.js +7 -23
  94. package/lib/core/editor/components/settings/propertyViews/edge/addEdgeProps.js +19 -0
  95. package/lib/core/editor/components/settings/propertyViews/edge/edgeGroup/EdgeGroupSetting.js +1 -6
  96. package/lib/core/editor/components/settings/propertyViews/group/GroupPropertyView.js +14 -25
  97. package/lib/core/editor/components/settings/propertyViews/group/GroupPropertyView.module.scss +8 -1
  98. package/lib/core/editor/components/settings/propertyViews/group/GroupPropertyViewV1.js +43 -0
  99. package/lib/core/editor/components/settings/propertyViews/group/SettingTab/GroupBasicSetting.js +97 -0
  100. package/lib/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +8 -6
  101. package/lib/core/editor/components/settings/propertyViews/group/cluster/ClusterGroupRelateData.js +2 -1
  102. package/lib/core/editor/components/settings/propertyViews/index.js +5 -2
  103. package/lib/core/editor/components/settings/propertyViews/layer/BasicSetting.js +76 -0
  104. package/lib/core/editor/components/settings/propertyViews/layer/LayerPropertyView.js +12 -20
  105. package/lib/core/editor/components/settings/propertyViews/layer/LayerPropertyView.module.scss +10 -0
  106. package/lib/core/editor/components/settings/propertyViews/layer/LayerPropertyViewV1.js +40 -0
  107. package/lib/core/editor/components/settings/propertyViews/node/NodePropertyView.js +8 -35
  108. package/lib/core/editor/components/settings/propertyViews/node/NodePropertyViewV1.js +68 -0
  109. package/lib/core/editor/components/settings/propertyViews/node/Setting/BasicSetting.js +64 -0
  110. package/lib/core/editor/components/settings/propertyViews/node/data/Data.js +2 -1
  111. package/lib/core/editor/components/settings/propertyViews/node/data/NodeRelateResourceButton.js +1 -0
  112. package/lib/core/editor/components/settings/propertyViews/text/TextPropertyView.js +4 -19
  113. package/lib/core/models/HistoryManager.js +11 -14
  114. package/lib/core/models/{SelectionManager.js → SelectionModel.js} +27 -18
  115. package/lib/core/models/TopoApp.js +3 -3
  116. package/lib/networkTopo/components/editor/propertyViews/edge/EdgePropertyView.js +45 -7
  117. package/lib/networkTopo/components/editor/propertyViews/edge/LinkPropertyView/LinkPropertyView.js +10 -18
  118. package/lib/networkTopo/components/editor/propertyViews/edge/LinkPropertyView/LinkPropertyViewV1.js +50 -0
  119. package/lib/networkTopo/components/editor/propertyViews/edge/link/LinkInfoPreview.module.scss +1 -1
  120. package/lib/networkTopo/models/LinkDynamicStyleExecutor.js +2 -2
  121. package/lib/style.js +1 -1
  122. package/package.json +2 -2
  123. package/es/core/editor/components/settings/OpenPropertyPanelListener.js +0 -33
  124. package/lib/core/editor/components/settings/OpenPropertyPanelListener.js +0 -43

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.