@riil-frontend/component-topology 6.0.0-alpha.31 → 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.
Files changed (57) hide show
  1. package/build/index.css +1 -1
  2. package/build/index.js +2 -2
  3. package/es/core/editor/components/Toolbar/hooks/textStyleSetting/EmptySetting.js +8 -0
  4. package/es/core/editor/components/Toolbar/hooks/textStyleSetting/edgeTagSetting.js +8 -0
  5. package/es/core/editor/components/Toolbar/hooks/textStyleSetting/globalTag.js +36 -0
  6. package/es/core/editor/components/Toolbar/hooks/textStyleSetting/nodeTagSetting.js +8 -0
  7. package/es/core/editor/components/Toolbar/hooks/textStyleSetting/text.js +8 -0
  8. package/es/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +47 -24
  9. package/es/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +16 -16
  10. package/es/core/editor/components/Toolbar/widgets/FontSizeWidget.js +20 -18
  11. package/es/core/editor/components/Toolbar/widgets/FontStyleButton.js +42 -45
  12. package/es/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +3 -2
  13. package/es/core/editor/components/Toolbar/widgets/components/DropdownButton.js +4 -2
  14. package/es/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +6 -1
  15. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +40 -0
  16. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +13 -0
  17. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +13 -0
  18. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/index.js +12 -0
  19. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/layerTitle.js +13 -0
  20. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +13 -0
  21. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/text.js +25 -0
  22. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/textStyleUtil.js +46 -0
  23. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +25 -0
  24. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +36 -0
  25. package/es/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +17 -0
  26. package/es/core/editor/components/settings/PropertyView.js +10 -4
  27. package/es/core/editor/components/settings/common/text/fontStyleUtil.js +5 -4
  28. package/es/core/editor/components/settings/propertyViews/text/TextPropertyView.js +1 -1
  29. package/es/core/models/TopoApp.js +1 -1
  30. package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/EmptySetting.js +13 -0
  31. package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/edgeTagSetting.js +13 -0
  32. package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/globalTag.js +47 -0
  33. package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/nodeTagSetting.js +13 -0
  34. package/lib/core/editor/components/Toolbar/hooks/textStyleSetting/text.js +13 -0
  35. package/lib/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +54 -28
  36. package/lib/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +17 -16
  37. package/lib/core/editor/components/Toolbar/widgets/FontSizeWidget.js +21 -18
  38. package/lib/core/editor/components/Toolbar/widgets/FontStyleButton.js +43 -48
  39. package/lib/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +3 -2
  40. package/lib/core/editor/components/Toolbar/widgets/components/DropdownButton.js +5 -2
  41. package/lib/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +5 -1
  42. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/ElementTextStyleSetting.js +54 -0
  43. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/edgeTag.js +23 -0
  44. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/groupTitle.js +23 -0
  45. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/index.js +25 -0
  46. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/layerTitle.js +23 -0
  47. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/nodeTag.js +23 -0
  48. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/elements/text.js +40 -0
  49. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/ElementTextStyleSetting/textStyleUtil.js +58 -0
  50. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/GlobalTagStyleSetting.js +39 -0
  51. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/GlobalTagStyleSetting/globalTag.js +47 -0
  52. package/lib/core/editor/components/Toolbar/widgets/components/textStyleSetting/textStyleSettingRouter.js +28 -0
  53. package/lib/core/editor/components/settings/PropertyView.js +11 -5
  54. package/lib/core/editor/components/settings/common/text/fontStyleUtil.js +5 -4
  55. package/lib/core/editor/components/settings/propertyViews/text/TextPropertyView.js +1 -1
  56. package/lib/core/models/TopoApp.js +1 -1
  57. 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.