@flozy/editor 9.8.8 → 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.
@@ -138,6 +138,14 @@ const MultiSelectWithPopover = props => {
138
138
  const handleClearSelection = () => {
139
139
  setSelectedOptions([]);
140
140
  };
141
+ const handleDeleteChip = (event, option) => {
142
+ event.stopPropagation();
143
+ setSelectedOptions(prev => {
144
+ const updatedOptions = prev.filter(selected => selected?.value !== option?.value);
145
+ onChange(updatedOptions);
146
+ return updatedOptions;
147
+ });
148
+ };
141
149
  const filteredOptions = availableOptions?.filter(option => option?.value?.toLowerCase()?.includes(inputValue?.toLowerCase()));
142
150
  const isExactMatch = availableOptions?.some(opt => opt?.value?.toLowerCase() === inputValue?.toLowerCase());
143
151
  const open = Boolean(anchorEl);
@@ -157,8 +165,7 @@ const MultiSelectWithPopover = props => {
157
165
  children: selectedOptions?.map((option, index) => /*#__PURE__*/_jsx(Chip, {
158
166
  label: option?.value,
159
167
  onDelete: event => {
160
- event.stopPropagation();
161
- setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
168
+ handleDeleteChip(event, option);
162
169
  },
163
170
  deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
164
171
  variant: "filled",
@@ -168,7 +175,7 @@ const MultiSelectWithPopover = props => {
168
175
  "& .MuiChip-deleteIcon": {
169
176
  flexShrink: 0,
170
177
  "& path": {
171
- stroke: '#0F172A'
178
+ stroke: '#0F172A !important'
172
179
  }
173
180
  },
174
181
  "&:hover": {
@@ -303,8 +310,7 @@ const MultiSelectWithPopover = props => {
303
310
  index
304
311
  }),
305
312
  onDelete: event => {
306
- event?.stopPropagation();
307
- setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
313
+ handleDeleteChip(event, option);
308
314
  },
309
315
  deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
310
316
  sx: {
@@ -313,7 +319,7 @@ const MultiSelectWithPopover = props => {
313
319
  "& .MuiChip-deleteIcon": {
314
320
  flexShrink: 0,
315
321
  "& path": {
316
- stroke: '#0F172A'
322
+ stroke: '#0F172A !important'
317
323
  }
318
324
  },
319
325
  "&:hover": {
@@ -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 isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
33
+ const breakpoint = getDevice(window.innerWidth);
37
34
  const lineH = element?.children[0]?.lineHeight;
38
- const lineHeight = getBreakpointLineSpacing(lineH, activeBreakPoint || (isMobile ? "xs" : "lg"));
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: "46px !important",
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, activeBreakPoint]);
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.8.8",
3
+ "version": "9.9.0",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"