@flozy/editor 9.4.0 → 9.4.1

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.
@@ -5,6 +5,7 @@ import ToolbarIcon from "../../common/ToolbarIcon";
5
5
  import { getPageSettings, updatePageSettings } from "../../utils/pageSettings";
6
6
  import SettingsIcon from "../../assets/svg/SettingsIcon";
7
7
  import { IconButton } from "@mui/material";
8
+ import { useEditorContext } from "../../hooks/useMouseMove";
8
9
  import { jsx as _jsx } from "react/jsx-runtime";
9
10
  import { Fragment as _Fragment } from "react/jsx-runtime";
10
11
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -23,6 +24,9 @@ const PageSettingsButton = props => {
23
24
  const {
24
25
  translation
25
26
  } = customProps;
27
+ const {
28
+ theme
29
+ } = useEditorContext();
26
30
  const onSettings = () => {
27
31
  setToolTip(true);
28
32
  setPopper("page-settings");
@@ -30,8 +34,12 @@ const PageSettingsButton = props => {
30
34
  element,
31
35
  path
32
36
  } = getPageSettings(editor);
37
+ const updatedPageProps = {
38
+ ...element?.pageProps,
39
+ color: element?.pageProps?.color ?? (theme?.palette?.type === "light" ? "rgb(0, 0, 0)" : "rgb(255, 255, 255)")
40
+ };
33
41
  setOpenSettings({
34
- element: element?.pageProps || {},
42
+ element: updatedPageProps || {},
35
43
  path
36
44
  });
37
45
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.4.0",
3
+ "version": "9.4.1",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"