@riil-frontend/component-topology 6.0.20 → 7.0.0-dev.10

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 (70) hide show
  1. package/build/1.js +1 -1
  2. package/build/index.css +1 -1
  3. package/build/index.js +13 -13
  4. package/es/core/components/TopoView/topoView.js +15 -20
  5. package/es/core/components/titlebar/index.js +2 -1
  6. package/es/core/editor/components/EditorPlugin.js +1 -2
  7. package/es/core/editor/components/Toolbar/widgets/FontStyleButton.js +1 -9
  8. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +11 -11
  9. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +18 -14
  10. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +4 -4
  11. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +16 -9
  12. package/es/core/editor/components/settings/propertyViews/node/data/Data.js +2 -1
  13. package/es/core/editor/components/settings/propertyViews/node/data/NodeRelateResourceButton.js +4 -2
  14. package/es/core/editor/hooks/useKeyboardShortcut.js +1 -1
  15. package/es/core/editor/hooks/useUpdateHtTopoDefaultTagStyle.js +2 -2
  16. package/es/core/hooks/useTopoEdit.js +131 -169
  17. package/es/core/models/TopoApp.js +1 -1
  18. package/es/core/models/topoData.js +3 -3
  19. package/es/core/store/coreModels.js +2 -0
  20. package/es/core/store/models/selection.js +3 -1
  21. package/es/core/store/models/topoConfig.js +7 -5
  22. package/es/core/store/models/topoMod.js +1 -1
  23. package/es/core/store/models/viewer/resourceDetail.js +31 -0
  24. package/es/core/utils/saveSerialize.js +2 -3
  25. package/es/core/viewer/components/plugins/ResourceDetail/ResourceDetail.js +2 -5
  26. package/es/core/viewer/components/plugins/ResourceDetail/ResourceDetailDrawer.js +72 -43
  27. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/EventsCard.js +136 -0
  28. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +9 -16
  29. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverviewMetric.js +1 -1
  30. package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/index.module.scss +119 -117
  31. package/es/core/viewer/components/titlebar/BasicTools.js +3 -16
  32. package/es/core/viewer/components/titlebar/widgets/AlarmButton.js +25 -0
  33. package/es/networkTopo/getTopoData.js +2 -3
  34. package/es/networkTopo/store/topoCenter.js +27 -4
  35. package/es/style.js +22 -22
  36. package/lib/core/components/TopoView/topoView.js +15 -21
  37. package/lib/core/components/titlebar/index.js +5 -1
  38. package/lib/core/editor/components/EditorPlugin.js +1 -3
  39. package/lib/core/editor/components/Toolbar/widgets/FontStyleButton.js +1 -9
  40. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +11 -12
  41. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +18 -15
  42. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +4 -4
  43. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +16 -10
  44. package/lib/core/editor/components/settings/propertyViews/node/data/Data.js +2 -1
  45. package/lib/core/editor/components/settings/propertyViews/node/data/NodeRelateResourceButton.js +4 -2
  46. package/lib/core/editor/hooks/useKeyboardShortcut.js +1 -1
  47. package/lib/core/editor/hooks/useUpdateHtTopoDefaultTagStyle.js +2 -2
  48. package/lib/core/hooks/useTopoEdit.js +131 -169
  49. package/lib/core/models/TopoApp.js +1 -1
  50. package/lib/core/models/topoData.js +7 -11
  51. package/lib/core/store/coreModels.js +3 -0
  52. package/lib/core/store/models/selection.js +3 -1
  53. package/lib/core/store/models/topoConfig.js +7 -5
  54. package/lib/core/store/models/topoMod.js +1 -1
  55. package/lib/core/store/models/viewer/resourceDetail.js +40 -0
  56. package/lib/core/utils/saveSerialize.js +1 -3
  57. package/lib/core/viewer/components/plugins/ResourceDetail/ResourceDetail.js +2 -5
  58. package/lib/core/viewer/components/plugins/ResourceDetail/ResourceDetailDrawer.js +71 -46
  59. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/EventsCard.js +156 -0
  60. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverview.js +9 -16
  61. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/ResourceOverviewMetric.js +1 -1
  62. package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/index.module.scss +119 -117
  63. package/lib/core/viewer/components/titlebar/BasicTools.js +3 -17
  64. package/lib/core/viewer/components/titlebar/widgets/AlarmButton.js +36 -0
  65. package/lib/networkTopo/getTopoData.js +3 -5
  66. package/lib/networkTopo/store/topoCenter.js +27 -4
  67. package/lib/style.js +22 -22
  68. package/package.json +2 -2
  69. package/es/core/editor/components/plugins/MultipleResourceSelectPlugin.js +0 -15
  70. package/lib/core/editor/components/plugins/MultipleResourceSelectPlugin.js +0 -25

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.