@riil-frontend/component-topology 2.3.20 → 2.4.2

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 (118) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/build/1.js +2 -2
  3. package/build/2.js +1 -1
  4. package/build/index.css +1 -1
  5. package/build/index.js +28 -28
  6. package/demo/5/345/205/266/344/273/226/347/273/204/344/273/266//345/233/276/346/240/207/351/200/211/346/213/251.md +5 -5
  7. package/es/components/Drawer/index.js +2 -1
  8. package/es/components/Drawer/index.module.scss +13 -0
  9. package/es/components/ResourceList/ResourceSelect.js +3 -2
  10. package/es/components/ResourceList/ResourceSelect.module.scss +7 -0
  11. package/es/components/ResourceSelect/ResourceSelectDrawer.js +3 -1
  12. package/es/core/{editor/components/settings/group/GroupNodeList → common}/icons/defaultIcons.d.ts +15 -0
  13. package/es/core/{editor/components/settings/group/GroupNodeList → common}/icons/defaultIcons.js +62 -0
  14. package/es/core/common/text.module.scss +5 -0
  15. package/es/core/components/TopoView/Topo.js +0 -6
  16. package/es/core/components/titlebar/TitleBar.module.scss +7 -1
  17. package/es/core/editor/components/LinkDynamicStyleSettingDrawer/rule/ColorPicker.module.scss +7 -3
  18. package/es/core/editor/components/iconManage/UploadIconDialog.js +2 -2
  19. package/es/core/editor/components/settings/README.md +2 -0
  20. package/es/core/editor/components/settings/Settings.js +47 -42
  21. package/es/core/editor/components/settings/Settings.module.scss +8 -2
  22. package/es/core/editor/components/settings/common/{NodeSizeInput.d.ts → NodeSizeInput/NodeSizeInput.d.ts} +0 -0
  23. package/es/core/editor/components/settings/common/{NodeSizeInput.js → NodeSizeInput/NodeSizeInput.js} +2 -0
  24. package/es/core/editor/components/settings/common/NodeSizeInput/img/icon_/350/247/243/351/224/201.svg +16 -0
  25. package/es/core/editor/components/settings/common/NodeSizeInput/img/icon_/351/224/201.svg +15 -0
  26. package/es/core/editor/components/settings/common/text/FontStyleCheckbox.d.ts +1 -0
  27. package/es/core/editor/components/settings/common/text/FontStyleCheckbox.js +50 -0
  28. package/es/core/editor/components/settings/common/text/FontStyleCheckbox.module.scss +31 -0
  29. package/es/core/editor/components/settings/common/text/TextStyle.d.ts +1 -0
  30. package/es/core/editor/components/settings/common/text/TextStyle.js +133 -0
  31. package/es/core/editor/components/settings/common/text/fontStyleUtil.d.ts +19 -0
  32. package/es/core/editor/components/settings/common/text/fontStyleUtil.js +53 -0
  33. package/es/core/editor/components/settings/common/text/img/bold.svg +12 -0
  34. package/es/core/editor/components/settings/common/text/img/italics.svg +10 -0
  35. package/es/core/editor/components/settings/common/text/img/underline.svg +12 -0
  36. package/es/core/editor/components/settings/group/GroupNodeList/ResourceList.js +22 -6
  37. package/es/core/editor/components/settings/group/GroupNodeList/ResourceList.module.scss +16 -0
  38. package/es/core/editor/components/settings/group/GroupNodeList/icon.d.ts +10 -0
  39. package/es/core/editor/components/settings/group/GroupNodeList/icon.js +20 -1
  40. package/es/core/editor/components/settings/node/NodeIconSelect.d.ts +1 -0
  41. package/es/core/editor/components/settings/node/NodeIconSelect.js +42 -0
  42. package/es/core/editor/components/settings/node/NodePropertyView.d.ts +1 -1
  43. package/es/core/editor/components/settings/node/NodePropertyView.js +121 -126
  44. package/es/core/editor/components/settings/node/NodeRelateResourceButton.d.ts +4 -0
  45. package/es/core/editor/components/settings/node/NodeRelateResourceButton.js +22 -0
  46. package/es/core/editor/components/settings/node/TopoTreeSelect.d.ts +1 -0
  47. package/es/core/editor/components/settings/node/TopoTreeSelect.js +40 -0
  48. package/es/core/editor/components/settings/text/TextPropertyView.js +30 -144
  49. package/es/core/editor/components/settings/view/ViewPropertyView.js +1 -1
  50. package/es/core/editor/components/titlebar/TopoEditorTitleBar.js +4 -4
  51. package/es/core/editor/{buildContextmenu.d.ts → contextmenu/buildContextmenu.d.ts} +1 -4
  52. package/es/core/editor/contextmenu/buildContextmenu.js +10 -0
  53. package/es/hooks/useSelection.js +9 -3
  54. package/es/plugins/useSelectionPlugin.d.ts +23 -0
  55. package/es/plugins/useSelectionPlugin.js +84 -0
  56. package/es/style.js +1 -0
  57. package/es/topoCenter/store/topoTreeMod.d.ts +3 -2
  58. package/es/topoCenter/store/topoTreeMod.js +34 -180
  59. package/es/utils/htElementDataUtil.js +1 -1
  60. package/es/utils/topoData.js +1 -1
  61. package/es/utils/tree.js +1 -1
  62. package/lib/components/Drawer/index.js +2 -1
  63. package/lib/components/Drawer/index.module.scss +13 -0
  64. package/lib/components/ResourceList/ResourceSelect.js +4 -2
  65. package/lib/components/ResourceList/ResourceSelect.module.scss +7 -0
  66. package/lib/components/ResourceSelect/ResourceSelectDrawer.js +3 -1
  67. package/lib/core/{editor/components/settings/group/GroupNodeList → common}/icons/defaultIcons.d.ts +15 -0
  68. package/lib/core/{editor/components/settings/group/GroupNodeList → common}/icons/defaultIcons.js +68 -1
  69. package/lib/core/common/text.module.scss +5 -0
  70. package/lib/core/components/TopoView/Topo.js +0 -12
  71. package/lib/core/components/titlebar/TitleBar.module.scss +7 -1
  72. package/lib/core/editor/components/LinkDynamicStyleSettingDrawer/rule/ColorPicker.module.scss +7 -3
  73. package/lib/core/editor/components/iconManage/UploadIconDialog.js +2 -2
  74. package/lib/core/editor/components/settings/README.md +2 -0
  75. package/lib/core/editor/components/settings/Settings.js +45 -42
  76. package/lib/core/editor/components/settings/Settings.module.scss +8 -2
  77. package/lib/core/editor/components/settings/common/{NodeSizeInput.d.ts → NodeSizeInput/NodeSizeInput.d.ts} +0 -0
  78. package/lib/core/editor/components/settings/common/{NodeSizeInput.js → NodeSizeInput/NodeSizeInput.js} +2 -0
  79. package/lib/core/editor/components/settings/common/NodeSizeInput/img/icon_/350/247/243/351/224/201.svg +16 -0
  80. package/lib/core/editor/components/settings/common/NodeSizeInput/img/icon_/351/224/201.svg +15 -0
  81. package/lib/core/editor/components/settings/common/text/FontStyleCheckbox.d.ts +1 -0
  82. package/lib/core/editor/components/settings/common/text/FontStyleCheckbox.js +68 -0
  83. package/lib/core/editor/components/settings/common/text/FontStyleCheckbox.module.scss +31 -0
  84. package/lib/core/editor/components/settings/common/text/TextStyle.d.ts +1 -0
  85. package/lib/core/editor/components/settings/common/text/TextStyle.js +150 -0
  86. package/lib/core/editor/components/settings/common/text/fontStyleUtil.d.ts +19 -0
  87. package/lib/core/editor/components/settings/common/text/fontStyleUtil.js +58 -0
  88. package/lib/core/editor/components/settings/common/text/img/bold.svg +12 -0
  89. package/lib/core/editor/components/settings/common/text/img/italics.svg +10 -0
  90. package/lib/core/editor/components/settings/common/text/img/underline.svg +12 -0
  91. package/lib/core/editor/components/settings/group/GroupNodeList/ResourceList.js +22 -7
  92. package/lib/core/editor/components/settings/group/GroupNodeList/ResourceList.module.scss +16 -0
  93. package/lib/core/editor/components/settings/group/GroupNodeList/icon.d.ts +10 -0
  94. package/lib/core/editor/components/settings/group/GroupNodeList/icon.js +23 -1
  95. package/lib/core/editor/components/settings/node/NodeIconSelect.d.ts +1 -0
  96. package/lib/core/editor/components/settings/node/NodeIconSelect.js +57 -0
  97. package/lib/core/editor/components/settings/node/NodePropertyView.d.ts +1 -1
  98. package/lib/core/editor/components/settings/node/NodePropertyView.js +127 -129
  99. package/lib/core/editor/components/settings/node/NodeRelateResourceButton.d.ts +4 -0
  100. package/lib/core/editor/components/settings/node/NodeRelateResourceButton.js +31 -0
  101. package/lib/core/editor/components/settings/node/TopoTreeSelect.d.ts +1 -0
  102. package/lib/core/editor/components/settings/node/TopoTreeSelect.js +53 -0
  103. package/lib/core/editor/components/settings/text/TextPropertyView.js +29 -149
  104. package/lib/core/editor/components/settings/view/ViewPropertyView.js +1 -1
  105. package/lib/core/editor/components/titlebar/TopoEditorTitleBar.js +5 -4
  106. package/lib/core/editor/{buildContextmenu.d.ts → contextmenu/buildContextmenu.d.ts} +1 -4
  107. package/lib/core/editor/{buildContextmenu.js → contextmenu/buildContextmenu.js} +3 -7
  108. package/lib/hooks/useSelection.js +9 -3
  109. package/lib/plugins/useSelectionPlugin.d.ts +23 -0
  110. package/lib/plugins/useSelectionPlugin.js +90 -0
  111. package/lib/style.js +1 -0
  112. package/lib/topoCenter/store/topoTreeMod.d.ts +3 -2
  113. package/lib/topoCenter/store/topoTreeMod.js +34 -184
  114. package/lib/utils/htElementDataUtil.js +1 -1
  115. package/lib/utils/topoData.js +1 -1
  116. package/lib/utils/tree.js +1 -1
  117. package/package.json +6 -6
  118. package/es/core/editor/buildContextmenu.js +0 -14

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.