@flozy/editor 9.8.9 → 9.9.0
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,7 +5,7 @@ import { Box } from "@mui/material";
|
|
5
5
|
import { isTextSelected } from "../../utils/helper";
|
6
6
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
7
7
|
import SimpleTextStyle from "./style";
|
8
|
-
import { getBreakpointLineSpacing } from "../../helper/theme";
|
8
|
+
import { getBreakpointLineSpacing, getDevice } from "../../helper/theme";
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
10
10
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
11
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
@@ -28,14 +28,11 @@ const SimpleText = props => {
|
|
28
28
|
editorPlaceholder,
|
29
29
|
translation
|
30
30
|
} = customProps;
|
31
|
-
const {
|
32
|
-
activeBreakPoint
|
33
|
-
} = useEditorContext();
|
34
31
|
// const { element: pageSt } = getPageSettings(editor) || {};
|
35
32
|
// const { pageColor } = pageSt?.pageProps || {};
|
36
|
-
const
|
33
|
+
const breakpoint = getDevice(window.innerWidth);
|
37
34
|
const lineH = element?.children[0]?.lineHeight;
|
38
|
-
const lineHeight = getBreakpointLineSpacing(lineH,
|
35
|
+
const lineHeight = getBreakpointLineSpacing(lineH, breakpoint);
|
39
36
|
const classes = SimpleTextStyle({
|
40
37
|
pageColor: "#FFFFFF",
|
41
38
|
lineHeight
|
@@ -18,6 +18,7 @@ import FontFamilyAutocomplete from "../FormatTools/FontFamilyAutocomplete";
|
|
18
18
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
19
19
|
import LineSpacing from "../../common/StyleBuilder/fieldTypes/lineSpacing";
|
20
20
|
import { getPageSettings } from "../../utils/pageSettings";
|
21
|
+
import { getDevice } from "../../helper/theme";
|
21
22
|
import { jsx as _jsx } from "react/jsx-runtime";
|
22
23
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
23
24
|
const allTools = toolbarGroups.flat();
|
@@ -46,10 +47,7 @@ const TextFormat = props => {
|
|
46
47
|
fontFamilies,
|
47
48
|
theme: appTheme
|
48
49
|
} = useEditorContext();
|
49
|
-
const
|
50
|
-
activeBreakPoint
|
51
|
-
} = useEditorContext();
|
52
|
-
const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
|
50
|
+
const breakpoint = getDevice(window.innerWidth);
|
53
51
|
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
54
52
|
const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
|
55
53
|
const fontAlign = allTools.filter(f => f.format?.indexOf("align") >= 0);
|
@@ -15,8 +15,7 @@ const SwitchViewport = props => {
|
|
15
15
|
} = props;
|
16
16
|
const classes = useSwitchViewport();
|
17
17
|
const {
|
18
|
-
setSelectedElement
|
19
|
-
setActiveBreakPoint
|
18
|
+
setSelectedElement
|
20
19
|
} = useEditorContext();
|
21
20
|
useEffect(() => {
|
22
21
|
// to reset selection on viewport changes - FS-6589
|
@@ -32,7 +31,6 @@ const SwitchViewport = props => {
|
|
32
31
|
children: /*#__PURE__*/_jsx(IconButton, {
|
33
32
|
className: `${!breakpoint || breakpoint === "lg" ? "active" : ""}`,
|
34
33
|
onClick: () => {
|
35
|
-
setActiveBreakPoint("");
|
36
34
|
onChange("");
|
37
35
|
},
|
38
36
|
children: /*#__PURE__*/_jsx(PersonalVideoIcon, {})
|
@@ -42,7 +40,6 @@ const SwitchViewport = props => {
|
|
42
40
|
children: /*#__PURE__*/_jsx(IconButton, {
|
43
41
|
className: `${breakpoint === "xs" ? "active" : ""}`,
|
44
42
|
onClick: () => {
|
45
|
-
setActiveBreakPoint("xs");
|
46
43
|
onChange("xs");
|
47
44
|
},
|
48
45
|
children: /*#__PURE__*/_jsx(PhoneIphoneIcon, {})
|
@@ -133,7 +133,7 @@ const useCommonStyle = theme => ({
|
|
133
133
|
background: theme?.palette?.editor?.inputFieldBgColor,
|
134
134
|
border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
|
135
135
|
borderRadius: "10px",
|
136
|
-
width: "
|
136
|
+
width: "52px !important",
|
137
137
|
marginLeft: "10px",
|
138
138
|
height: "36px !important"
|
139
139
|
},
|
@@ -39,7 +39,6 @@ export const EditorProvider = ({
|
|
39
39
|
path: null
|
40
40
|
});
|
41
41
|
const [fontFamilies, setFontFamilies] = useState(defaultFontFamilies);
|
42
|
-
const [activeBreakPoint, setActiveBreakPoint] = useState("");
|
43
42
|
useEffect(() => {
|
44
43
|
window.updateSelectedItem = d => {
|
45
44
|
setSelectedElement(d);
|
@@ -105,10 +104,8 @@ export const EditorProvider = ({
|
|
105
104
|
setFontFamilies,
|
106
105
|
openTheme,
|
107
106
|
setOpenTheme,
|
108
|
-
activeBreakPoint,
|
109
|
-
setActiveBreakPoint,
|
110
107
|
triggerRender
|
111
|
-
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme
|
108
|
+
}), [path, editor?.selection, selectedPath, selectedElement, contextMenu, openAI, popupType, drop, openTheme]);
|
112
109
|
return /*#__PURE__*/_jsx(EditorContext.Provider, {
|
113
110
|
value: otherValues,
|
114
111
|
children: children
|