@riil-frontend/component-topology 6.0.0-alpha.30 → 6.0.0-alpha.32
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.
- package/build/1.js +2 -2
- package/build/2.js +1 -1
- package/build/index.css +1 -1
- package/build/index.js +20 -20
- package/es/core/editor/components/EditorPlugin.js +2 -1
- package/es/core/editor/components/Sidebar/Sidebar.js +2 -1
- package/es/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +2 -3
- package/es/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.js +1 -0
- package/es/core/editor/components/Toolbar/buttons.js +5 -4
- package/es/core/editor/components/Toolbar/hooks/textStyleSetting/EmptySetting.js +8 -0
- package/es/core/editor/components/Toolbar/hooks/textStyleSetting/edgeTagSetting.js +8 -0
- package/es/core/editor/components/Toolbar/hooks/textStyleSetting/globalTag.js +36 -0
- package/es/core/editor/components/Toolbar/hooks/textStyleSetting/nodeTagSetting.js +8 -0
- package/es/core/editor/components/Toolbar/hooks/textStyleSetting/text.js +8 -0
- package/es/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +54 -14
- package/es/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +29 -9
- package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +15 -0
- package/es/core/editor/components/Toolbar/widgets/FontColorButton.js +4 -0
- package/es/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +16 -16
- package/es/core/editor/components/Toolbar/widgets/FontSizeWidget.js +20 -18
- package/es/core/editor/components/Toolbar/widgets/FontStyleButton.js +85 -39
- package/es/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +20 -25
- package/es/core/editor/components/Toolbar/widgets/NodeAlignWidget.module.scss +22 -6
- package/es/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +15 -11
- package/es/core/editor/components/Toolbar/widgets/components/DropdownButton.js +23 -8
- package/es/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +13 -5
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +40 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +13 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +13 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/index.js +12 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/layerTitle.js +13 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +13 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/text.js +25 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/textStyleUtil.js +46 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +25 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +36 -0
- package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +17 -0
- package/es/core/editor/components/settings/CloseablePanel.js +7 -2
- package/es/core/editor/components/settings/CloseablePanel.module.scss +9 -0
- package/es/core/editor/components/settings/PropertyView.js +7 -5
- package/es/core/editor/components/settings/common/AlignSetting/index.js +1 -2
- package/es/core/editor/components/settings/common/text/fontStyleUtil.js +5 -4
- package/es/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +7 -1
- package/es/core/editor/components/settings/propertyViews/text/TextPropertyView.js +1 -1
- package/es/core/editor/utils/textStyleUtil.js +0 -0
- package/es/core/hooks/usePolling.js +2 -5
- package/es/core/models/AttributeMetricDisplay.js +4 -0
- package/es/core/models/TopoApp.js +1 -1
- package/es/utils/htElementUtils.js +3 -0
- package/lib/core/editor/components/EditorPlugin.js +3 -1
- package/lib/core/editor/components/Sidebar/Sidebar.js +2 -1
- package/lib/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +2 -3
- package/lib/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.js +1 -0
- package/lib/core/editor/components/Toolbar/buttons.js +5 -4
- package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/EmptySetting.js +13 -0
- package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/edgeTagSetting.js +13 -0
- package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/globalTag.js +47 -0
- package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/nodeTagSetting.js +13 -0
- package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/text.js +13 -0
- package/lib/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +57 -17
- package/lib/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +29 -8
- package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +15 -0
- package/lib/core/editor/components/Toolbar/widgets/FontColorButton.js +5 -0
- package/lib/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +17 -16
- package/lib/core/editor/components/Toolbar/widgets/FontSizeWidget.js +21 -18
- package/lib/core/editor/components/Toolbar/widgets/FontStyleButton.js +89 -39
- package/lib/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +20 -25
- package/lib/core/editor/components/Toolbar/widgets/NodeAlignWidget.module.scss +22 -6
- package/lib/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +14 -11
- package/lib/core/editor/components/Toolbar/widgets/components/DropdownButton.js +23 -8
- package/lib/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +14 -5
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +54 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +23 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +23 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/index.js +25 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/layerTitle.js +23 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +23 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/text.js +40 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/textStyleUtil.js +58 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +39 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +47 -0
- package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +28 -0
- package/lib/core/editor/components/settings/CloseablePanel.js +8 -2
- package/lib/core/editor/components/settings/CloseablePanel.module.scss +9 -0
- package/lib/core/editor/components/settings/PropertyView.js +9 -7
- package/lib/core/editor/components/settings/common/AlignSetting/index.js +1 -2
- package/lib/core/editor/components/settings/common/text/fontStyleUtil.js +5 -4
- package/lib/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +7 -1
- package/lib/core/editor/components/settings/propertyViews/text/TextPropertyView.js +1 -1
- package/lib/core/editor/utils/textStyleUtil.js +1 -0
- package/lib/core/hooks/usePolling.js +2 -5
- package/lib/core/models/AttributeMetricDisplay.js +4 -0
- package/lib/core/models/TopoApp.js +1 -1
- package/lib/utils/htElementUtils.js +5 -0
- package/package.json +2 -2
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.