@riil-frontend/component-topology 2.11.0 → 2.12.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.
Files changed (75) 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 +22 -22
  5. package/demo/5/345/205/266/344/273/226/347/273/204/344/273/266//346/240/221/345/270/203/345/261/200/346/226/271/345/220/221.md +12 -0
  6. package/es/components/LayoutDirectionSelect/LayoutDirectionSelect.js +2 -2
  7. package/es/components/MultiResourceDrawer/index.js +3 -2
  8. package/es/components/ResourceSelectDrawer/ResourceSelectDrawer.js +1 -0
  9. package/es/components/ResourceSelectDrawer/ResourceSelectList.js +6 -1
  10. package/es/components/SingleResourceDrawer/SelectDrawer.js +54 -0
  11. package/es/components/SingleResourceDrawer/index.js +3 -3
  12. package/es/core/common/icons/defaultIcons.js +9 -2
  13. package/es/core/components/TopoView/topoView.js +18 -11
  14. package/es/core/editor/components/settings/Settings.js +5 -29
  15. package/es/core/editor/components/settings/{group → common}/GroupNodeList/ResourceList.js +0 -0
  16. package/es/core/editor/components/settings/{group → common}/GroupNodeList/ResourceList.module.scss +0 -0
  17. package/es/core/editor/components/settings/{group → common}/GroupNodeList/ResourceSelectButton.js +12 -14
  18. package/es/core/editor/components/settings/{group → common}/GroupNodeList/icon.js +0 -0
  19. package/es/core/editor/components/settings/group/DataTab/GroupNodeList.js +19 -0
  20. package/es/core/editor/components/settings/group/DataTab/RelateData.js +45 -0
  21. package/es/core/editor/components/settings/group/GroupPropertyView.js +44 -0
  22. package/es/core/editor/components/settings/group/GroupPropertyView.module.scss +3 -0
  23. package/es/core/editor/components/settings/group/SettingTab/GroupExpandSetting.js +27 -0
  24. package/es/core/editor/components/settings/group/SettingTab/NodeIconSelect.js +32 -0
  25. package/es/core/editor/components/settings/group/SettingTab/Setting.js +86 -0
  26. package/es/core/editor/components/settings/group/hooks/useGroup.js +9 -0
  27. package/es/core/editor/components/settings/group/hooks/useGroupExpand.js +20 -0
  28. package/es/core/editor/components/settings/layer/LayerSettingsForm.js +2 -2
  29. package/es/core/editor/components/settings/{group/GroupNodeList/GroupNodeList.js → layer/NodeList.js} +3 -3
  30. package/es/core/editor/components/settings/link/LinkPropertyView.js +3 -3
  31. package/es/core/editor/components/settings/node/NodeIconSelect.js +1 -1
  32. package/es/core/editor/components/settings/propertyViews.js +23 -0
  33. package/es/hooks/useRelateTopo.js +1 -0
  34. package/es/hooks/useRelateTopoConfig.js +0 -0
  35. package/es/hooks/useTopoEdit.js +137 -100
  36. package/es/style.js +2 -2
  37. package/es/topoCenter/components/TopoTreeSelect.js +5 -0
  38. package/es/topoCenter/viewer/createTopoViewer.js +0 -1
  39. package/es/utils/htElementUtils.js +16 -7
  40. package/lib/components/LayoutDirectionSelect/LayoutDirectionSelect.js +2 -2
  41. package/lib/components/MultiResourceDrawer/index.js +3 -2
  42. package/lib/components/ResourceSelectDrawer/ResourceSelectDrawer.js +1 -0
  43. package/lib/components/ResourceSelectDrawer/ResourceSelectList.js +6 -1
  44. package/lib/components/SingleResourceDrawer/SelectDrawer.js +68 -0
  45. package/lib/components/SingleResourceDrawer/index.js +3 -3
  46. package/lib/core/common/icons/defaultIcons.js +11 -2
  47. package/lib/core/components/TopoView/topoView.js +18 -11
  48. package/lib/core/editor/components/settings/Settings.js +5 -34
  49. package/lib/core/editor/components/settings/{group → common}/GroupNodeList/ResourceList.js +0 -0
  50. package/lib/core/editor/components/settings/{group → common}/GroupNodeList/ResourceList.module.scss +0 -0
  51. package/lib/core/editor/components/settings/{group → common}/GroupNodeList/ResourceSelectButton.js +13 -14
  52. package/lib/core/editor/components/settings/{group → common}/GroupNodeList/icon.js +0 -0
  53. package/lib/core/editor/components/settings/group/DataTab/GroupNodeList.js +33 -0
  54. package/lib/core/editor/components/settings/group/DataTab/RelateData.js +57 -0
  55. package/lib/core/editor/components/settings/group/GroupPropertyView.js +58 -0
  56. package/lib/core/editor/components/settings/group/GroupPropertyView.module.scss +3 -0
  57. package/lib/core/editor/components/settings/group/SettingTab/GroupExpandSetting.js +37 -0
  58. package/lib/core/editor/components/settings/group/SettingTab/NodeIconSelect.js +45 -0
  59. package/lib/core/editor/components/settings/group/SettingTab/Setting.js +106 -0
  60. package/lib/core/editor/components/settings/group/hooks/useGroup.js +15 -0
  61. package/lib/core/editor/components/settings/group/hooks/useGroupExpand.js +26 -0
  62. package/lib/core/editor/components/settings/layer/LayerSettingsForm.js +3 -3
  63. package/lib/core/editor/components/settings/{group/GroupNodeList/GroupNodeList.js → layer/NodeList.js} +3 -3
  64. package/lib/core/editor/components/settings/link/LinkPropertyView.js +3 -3
  65. package/lib/core/editor/components/settings/node/NodeIconSelect.js +1 -1
  66. package/lib/core/editor/components/settings/propertyViews.js +38 -0
  67. package/lib/hooks/useRelateTopo.js +6 -0
  68. package/lib/hooks/useRelateTopoConfig.js +1 -0
  69. package/lib/hooks/useTopoEdit.js +138 -100
  70. package/lib/style.js +2 -2
  71. package/lib/topoCenter/components/TopoTreeSelect.js +14 -0
  72. package/lib/topoCenter/viewer/createTopoViewer.js +0 -2
  73. package/lib/utils/htElementUtils.js +22 -7
  74. package/package.json +9 -9
  75. package/CHANGELOG.md +0 -26

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.