@flozy/editor 9.8.5 → 9.8.6

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 (142) hide show
  1. package/dist/Editor/ChatEditor.js +17 -16
  2. package/dist/Editor/CommonEditor.js +119 -18
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +16 -8
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
  6. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  7. package/dist/Editor/Elements/Button/EditorButton.js +37 -25
  8. package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
  9. package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
  10. package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
  11. package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
  12. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
  15. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
  16. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
  17. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
  18. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
  19. package/dist/Editor/Elements/Embed/Image.js +2 -2
  20. package/dist/Editor/Elements/Embed/Video.js +1 -1
  21. package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
  22. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +48 -22
  23. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +25 -4
  24. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +46 -3
  25. package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -2
  26. package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
  27. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  28. package/dist/Editor/Elements/List/CheckList.js +4 -1
  29. package/dist/Editor/Elements/Search/SearchButton.js +1 -1
  30. package/dist/Editor/Elements/Search/SearchList.js +3 -2
  31. package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +2 -8
  32. package/dist/Editor/Elements/SimpleText/index.js +9 -1
  33. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  34. package/dist/Editor/Elements/Table/Table.js +3 -3
  35. package/dist/Editor/Elements/Title/title.js +9 -8
  36. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  37. package/dist/Editor/MiniEditor.js +2 -1
  38. package/dist/Editor/Styles/EditorStyles.js +5 -5
  39. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  40. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  41. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  42. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  43. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
  44. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  45. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
  46. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
  47. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
  48. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
  49. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
  50. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
  51. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  52. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  53. package/dist/Editor/assets/svg/BackIcon.js +18 -0
  54. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  55. package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
  56. package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
  57. package/dist/Editor/common/ColorPickerButton.js +38 -16
  58. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  59. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  60. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  61. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  62. package/dist/Editor/common/CustomSelect.js +43 -0
  63. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  64. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  65. package/dist/Editor/common/Icon.js +31 -1
  66. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  67. package/dist/Editor/common/MUIIcon/index.js +0 -3
  68. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
  69. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
  70. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  71. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  72. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  73. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  74. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
  75. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  76. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  77. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
  78. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  79. package/dist/Editor/common/RnD/ShadowElement.js +2 -1
  80. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
  81. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  82. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
  83. package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
  84. package/dist/Editor/common/RnD/Utils/index.js +3 -0
  85. package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
  86. package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
  87. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
  88. package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
  89. package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
  90. package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
  91. package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
  92. package/dist/Editor/common/RnD/index.js +59 -10
  93. package/dist/Editor/common/Shorthands/elements.js +54 -0
  94. package/dist/Editor/common/SnackBar/index.js +43 -0
  95. package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
  96. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
  97. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
  98. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
  100. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
  101. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
  102. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
  103. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
  104. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  105. package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
  106. package/dist/Editor/common/Uploader.js +8 -0
  107. package/dist/Editor/common/iconslist.js +7 -8
  108. package/dist/Editor/commonStyle.js +95 -60
  109. package/dist/Editor/helper/textIndeces.js +58 -0
  110. package/dist/Editor/helper/theme.js +202 -2
  111. package/dist/Editor/hooks/useAutoScroll.js +38 -0
  112. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  113. package/dist/Editor/hooks/useMouseMove.js +9 -3
  114. package/dist/Editor/hooks/useThemeValues.js +63 -0
  115. package/dist/Editor/plugins/withEmbeds.js +1 -1
  116. package/dist/Editor/plugins/withHTML.js +11 -9
  117. package/dist/Editor/plugins/withLinks.js +9 -10
  118. package/dist/Editor/plugins/withTable.js +1 -1
  119. package/dist/Editor/theme/ThemeList.js +50 -173
  120. package/dist/Editor/theme/index.js +149 -0
  121. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  122. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  123. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  124. package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
  125. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  126. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  127. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  128. package/dist/Editor/themeSettings/fonts/style.js +62 -0
  129. package/dist/Editor/themeSettings/icons.js +60 -0
  130. package/dist/Editor/themeSettings/index.js +361 -0
  131. package/dist/Editor/themeSettings/style.js +292 -0
  132. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  133. package/dist/Editor/themeSettingsAI/index.js +355 -0
  134. package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
  135. package/dist/Editor/themeSettingsAI/style.js +324 -0
  136. package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
  137. package/dist/Editor/utils/button.js +1 -17
  138. package/dist/Editor/utils/draftToSlate.js +3 -2
  139. package/dist/Editor/utils/font.js +40 -37
  140. package/dist/Editor/utils/freegrid.js +2 -3
  141. package/dist/Editor/utils/helper.js +90 -19
  142. package/package.json +4 -4
@@ -9,20 +9,20 @@ const FormStyles = theme => ({
9
9
  color: "#94A3B8"
10
10
  },
11
11
  bodyTextArea: {
12
- '& .mini-editor-cls': {
13
- padding: '12px',
14
- '&:focus-visible': {
15
- outline: 'none',
16
- border: 'none'
12
+ "& .mini-editor-cls": {
13
+ padding: "12px",
14
+ "&:focus-visible": {
15
+ outline: "none",
16
+ border: "none"
17
17
  }
18
18
  },
19
19
  "& .editorWorkflow": {
20
- minHeight: '130px',
21
- padding: '12px',
20
+ minHeight: "130px",
21
+ padding: "12px",
22
22
  paddingBottom: 0,
23
- '&:focus-visible': {
24
- outline: 'none',
25
- border: 'none'
23
+ "&:focus-visible": {
24
+ outline: "none",
25
+ border: "none"
26
26
  }
27
27
  }
28
28
  },
@@ -105,7 +105,7 @@ const FormStyles = theme => ({
105
105
  padding: "4px 22px",
106
106
  textTransform: "none",
107
107
  border: "1px solid #D8DDE1",
108
- minWidth: '126px',
108
+ minWidth: "126px",
109
109
  "& svg": {
110
110
  "& path": {
111
111
  stroke: "#64748B"
@@ -169,17 +169,19 @@ const FormStyles = theme => ({
169
169
  }
170
170
  },
171
171
  colorButtonSingle: {
172
+ border: "1.5px solid #DCE4EC !important",
172
173
  "&.active": {
173
- "&:before": {
174
- content: '" "',
175
- position: "absolute",
176
- top: "-5px",
177
- left: "-5px",
178
- width: "calc(100% + 4px)",
179
- height: "calc(100% + 4px)",
180
- border: "3px solid blue",
181
- borderRadius: "50%"
182
- }
174
+ // "&:before": {
175
+ // content: '" "',
176
+ // position: "absolute",
177
+ // top: "-5px",
178
+ // left: "-5px",
179
+ // width: "calc(100% + 4px)",
180
+ // height: "calc(100% + 4px)",
181
+ // border: "3px solid blue",
182
+ // borderRadius: "50%",
183
+ // },
184
+ outline: "2px solid #2563EB"
183
185
  }
184
186
  },
185
187
  colorButtonsInner: {
@@ -249,7 +251,7 @@ const FormStyles = theme => ({
249
251
  }
250
252
  },
251
253
  root: {
252
- padding: '10px'
254
+ padding: "10px"
253
255
  }
254
256
  });
255
257
  export default FormStyles;
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React, { useEffect, useRef, useState } from "react";
2
2
  import { Path, Transforms, Node } from "slate";
3
3
  import { ReactEditor, useSlateStatic } from "slate-react";
4
4
  import { Box, useTheme } from "@mui/material";
@@ -43,7 +43,8 @@ const FreeGrid = props => {
43
43
  } = props;
44
44
  const {
45
45
  sectionName,
46
- sectionBorderRadius
46
+ sectionBorderRadius,
47
+ height_xs
47
48
  } = element;
48
49
  const {
49
50
  readOnly,
@@ -64,11 +65,14 @@ const FreeGrid = props => {
64
65
  const {
65
66
  setSelectedElement
66
67
  } = useEditorContext();
68
+ const [autoAlign, setAutoAlign] = useState(false);
69
+ const count = useRef(2);
70
+ const childrenCountRef = useRef(element?.children?.length);
67
71
  const onChange = data => {
68
72
  const append = breakpoint === "lg" ? "" : `_${breakpoint}`;
69
73
  const updateData = {
70
74
  ...data,
71
- [`height${append}`]: height + data.height
75
+ [`height${append}`]: data.height
72
76
  };
73
77
  if (append !== "") {
74
78
  delete updateData.height;
@@ -130,6 +134,10 @@ const FreeGrid = props => {
130
134
  setSelectedElement
131
135
  });
132
136
  break;
137
+ case "forceAutoAlignment":
138
+ setAutoAlign(true);
139
+ setSelectedElement({});
140
+ break;
133
141
  case "deleteSection":
134
142
  if (Node.has(editor, cur_root_path)) {
135
143
  Transforms.removeNodes(editor, {
@@ -151,9 +159,12 @@ const FreeGrid = props => {
151
159
  console.log(err);
152
160
  }
153
161
  };
162
+ useEffect(() => {
163
+ childrenCountRef.current = element?.children?.length;
164
+ }, [element?.children?.length]);
154
165
  const handleAddElementClick = type => () => {
155
166
  const isEmpty = isEmptySection();
156
- const insertAt = isEmpty ? [...path, 0] : [...path, element?.children?.length];
167
+ const insertAt = isEmpty ? [...path, 0] : [...path, childrenCountRef.current];
157
168
  switch (type) {
158
169
  case "addText":
159
170
  Transforms.insertNodes(editor, [{
@@ -188,20 +199,6 @@ const FreeGrid = props => {
188
199
  linkType: "webAddress"
189
200
  },
190
201
  iconPosition: "start",
191
- bgColor: "#2563EB",
192
- textColor: "#FFF",
193
- borderRadius: {
194
- topLeft: 30,
195
- topRight: 30,
196
- bottomLeft: 30,
197
- bottomRight: 30
198
- },
199
- bannerSpacing: {
200
- left: 12,
201
- top: 12,
202
- right: 12,
203
- bottom: 12
204
- },
205
202
  textAlign: "center",
206
203
  label: "Get Started"
207
204
  }],
@@ -374,6 +371,19 @@ const FreeGrid = props => {
374
371
  break;
375
372
  default:
376
373
  }
374
+ if (breakpoint === "lg") {
375
+ setSelectedElement({});
376
+
377
+ // auto align in mobile
378
+ Transforms.setNodes(editor, {
379
+ xs_updatedOn: null,
380
+ updated_at: new Date().getTime()
381
+ }, {
382
+ at: path
383
+ });
384
+ }
385
+ count.current = count.current + 1;
386
+
377
387
  // focus on newly added element
378
388
  focusOnNewItem(editor, insertAt, {
379
389
  setSelectedElement
@@ -445,6 +455,17 @@ const FreeGrid = props => {
445
455
  }
446
456
  }, theme);
447
457
  const sectionTypeOptions = (itemOptions?.section || []).filter(f => (hideTools || []).indexOf(f) === -1);
458
+
459
+ // const id = useMemo(() => {
460
+ // let eleId = `freegrid_container_${path.join("|")}_${breakpoint}`;
461
+
462
+ // if (autoAlign) {
463
+ // eleId += `_${updated_at}`; // re-render component on force auto align
464
+ // }
465
+
466
+ // return eleId;
467
+ // }, [autoAlign, updated_at, breakpoint, path]);
468
+
448
469
  return /*#__PURE__*/_jsx(RnD, {
449
470
  id: `freegrid_container_${path.join("|")}_${updated_at}_${breakpoint}`,
450
471
  className: `
@@ -458,6 +479,9 @@ const FreeGrid = props => {
458
479
  position: "relative",
459
480
  "--height": `${height}px`
460
481
  },
482
+ dataSets: {
483
+ "data-height-xs": height_xs
484
+ },
461
485
  defaultStyle: {
462
486
  width: "100%",
463
487
  height: height ? `${height}px` : "auto"
@@ -514,7 +538,8 @@ const FreeGrid = props => {
514
538
  },
515
539
  customProps: {
516
540
  customProps
517
- }
541
+ },
542
+ breakpoint
518
543
  }
519
544
  },
520
545
  settings: {
@@ -525,9 +550,7 @@ const FreeGrid = props => {
525
550
  editor,
526
551
  path,
527
552
  classes,
528
- customProps,
529
- translation,
530
- customProps
553
+ translation
531
554
  }
532
555
  }
533
556
  },
@@ -537,6 +560,9 @@ const FreeGrid = props => {
537
560
  handleContextMenuClick: handleContextMenuClick,
538
561
  translation: translation,
539
562
  customProps: customProps,
563
+ sectionElement: element,
564
+ autoAlign: autoAlign,
565
+ setAutoAlign: setAutoAlign,
540
566
  children: /*#__PURE__*/_jsxs(Box, {
541
567
  ...attributes,
542
568
  id: sectionName,
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React, { useMemo } from "react";
2
2
  import { Transforms, Node, Path } from "slate";
3
3
  import { useSlateStatic } from "slate-react";
4
4
  import { ReactEditor } from "slate-react";
@@ -37,7 +37,12 @@ const FreeGridBox = props => {
37
37
  sectionBorderRadius,
38
38
  borderWidth,
39
39
  borderColor,
40
- borderStyle
40
+ borderStyle,
41
+ height_xs,
42
+ marginTop_xs,
43
+ gridArea_xs,
44
+ width_xs,
45
+ left_xs
41
46
  } = element;
42
47
  // get values based on breakpoint size
43
48
  const {
@@ -152,9 +157,12 @@ const FreeGridBox = props => {
152
157
  };
153
158
  const repeatTimes = Math.floor(height / ROW_HEIGHT);
154
159
  const sectionTypeOptions = (itemOptions?.box || []).filter(f => (hideTools || []).indexOf(f) === -1);
160
+ const isBoxHeader = useMemo(() => {
161
+ return element?.children?.some(c => c.childType === "appHeader" && !c.xs_updatedOn);
162
+ }, [element]);
155
163
  return /*#__PURE__*/_jsx(RnD, {
156
164
  id: `freegrid_box_item_${path.join("|")}_${updated_at}_${breakpoint}`,
157
- className: `freegrid-item path-${path.length} breakpoint-${breakpoint}`,
165
+ className: `freegrid-item path-${path.length} breakpoint-${breakpoint} freegrid-box_${path.join("_")}`,
158
166
  editor: editor,
159
167
  path: path,
160
168
  actions: sectionTypeOptions,
@@ -169,12 +177,23 @@ const FreeGridBox = props => {
169
177
  "--gridArea": `${gridArea}`,
170
178
  "--width": `${width}px`,
171
179
  "--height": `${height}px`,
172
- "--zIndex": 100 + arrangeIndex
180
+ "--zIndex": 100 + arrangeIndex,
181
+ "--height_xs": height_xs ? `${height_xs}px` : "auto",
182
+ "--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "24px"
183
+ // "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
173
184
  },
185
+
174
186
  defaultStyle: {
175
187
  height: `${height}px`,
176
188
  width: `${width}px`
177
189
  },
190
+ dataSets: {
191
+ "data-grid-area-xs": gridArea_xs,
192
+ "data-margin-top-xs": marginTop_xs,
193
+ "data-height-xs": height_xs,
194
+ "data-width-xs": width_xs,
195
+ "data-left-xs": left_xs
196
+ },
178
197
  gridArea: gridArea,
179
198
  onChange: onChange,
180
199
  delta: {
@@ -192,6 +211,8 @@ const FreeGridBox = props => {
192
211
  type: "parent-container",
193
212
  customProps: customProps,
194
213
  translation: translation,
214
+ breakpoint: breakpoint,
215
+ isBoxHeader: isBoxHeader,
195
216
  children: /*#__PURE__*/_jsx(Box, {
196
217
  component: "div",
197
218
  ...attributes,
@@ -1,4 +1,4 @@
1
- import React, { useState } from "react";
1
+ import React, { useMemo, useState } from "react";
2
2
  import { Transforms, Node, Path } from "slate";
3
3
  import { useSlateStatic } from "slate-react";
4
4
  import { ReactEditor } from "slate-react";
@@ -35,7 +35,12 @@ const FreeGridItem = props => {
35
35
  const {
36
36
  updated_at,
37
37
  childType,
38
- zIndex
38
+ zIndex,
39
+ height_xs,
40
+ width_xs,
41
+ marginTop_xs,
42
+ gridArea_xs,
43
+ left_xs
39
44
  } = element;
40
45
  // get values based on breakpoint size
41
46
  const {
@@ -54,6 +59,9 @@ const FreeGridItem = props => {
54
59
  arrangeIndex = Math.max(1, arrangeIndex);
55
60
  const [popup, setPopup] = useState(null);
56
61
  const onChangeSettings = () => {};
62
+ // const refInput = useRef();
63
+ // const [virtualHeight, setVirtualHeight] = useState(height || 0);
64
+
57
65
  const onChange = data => {
58
66
  let updateData = {
59
67
  ...data
@@ -109,6 +117,13 @@ const FreeGridItem = props => {
109
117
  Transforms.removeNodes(editor, {
110
118
  at: path
111
119
  });
120
+ const parentPath = Path.parent(path);
121
+ Transforms.setNodes(editor, {
122
+ xs_updatedOn: null,
123
+ updated_at: new Date().getTime()
124
+ }, {
125
+ at: parentPath
126
+ });
112
127
  } catch (err) {
113
128
  console.log(err);
114
129
  }
@@ -235,6 +250,22 @@ const FreeGridItem = props => {
235
250
  }
236
251
  };
237
252
  const itemTypeOptions = (itemOptions[childType] || itemOptions?.default).filter(f => (hideTools || []).indexOf(f) === -1);
253
+ const variableStyle = useMemo(() => {
254
+ const {
255
+ width,
256
+ height
257
+ } = element || {};
258
+ let widthVar = width_xs;
259
+ let heightVar = height_xs;
260
+ if (element?.childType === "image") {
261
+ widthVar = width_xs || width;
262
+ heightVar = height_xs || height;
263
+ }
264
+ return {
265
+ "--width_xs": widthVar ? `${widthVar}px` : "auto",
266
+ "--height_xs": heightVar ? `${heightVar}px` : "auto"
267
+ };
268
+ }, [element]);
238
269
  return /*#__PURE__*/_jsx(RnD, {
239
270
  id: `freegrid_item_${path.join("|")}_${updated_at}_${breakpoint}`,
240
271
  className: `freegrid-item path-${path.length} breakpoint-${breakpoint}`,
@@ -254,7 +285,18 @@ const FreeGridItem = props => {
254
285
  "--gridArea": `${gridArea}`,
255
286
  "--width": `${width}px`,
256
287
  "--height": `${height}px`,
257
- "--zIndex": 100 + arrangeIndex
288
+ "--zIndex": 100 + arrangeIndex,
289
+ "--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "0px",
290
+ ...variableStyle
291
+ // "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
292
+ },
293
+
294
+ dataSets: {
295
+ "data-grid-area-xs": gridArea_xs,
296
+ "data-margin-top-xs": marginTop_xs,
297
+ "data-height-xs": height_xs,
298
+ "data-width-xs": width_xs,
299
+ "data-left-xs": left_xs
258
300
  },
259
301
  defaultStyle: {
260
302
  height: `${height}px`,
@@ -277,6 +319,7 @@ const FreeGridItem = props => {
277
319
  },
278
320
  customProps: customProps,
279
321
  translation: translation,
322
+ breakpoint: breakpoint,
280
323
  children: /*#__PURE__*/_jsxs(Box, {
281
324
  component: "div",
282
325
  ...attributes,
@@ -5,7 +5,8 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
5
5
  const More = props => {
6
6
  const {
7
7
  handleClick,
8
- translation
8
+ translation,
9
+ breakpoint
9
10
  } = props;
10
11
  return /*#__PURE__*/_jsx(Box, {
11
12
  children: /*#__PURE__*/_jsxs(List, {
@@ -18,7 +19,11 @@ const More = props => {
18
19
  className: "item-wrapper",
19
20
  onClick: handleClick("duplicateSection"),
20
21
  children: translation?.translation("Duplicate Section")
21
- }), /*#__PURE__*/_jsx(ListItemButton, {
22
+ }), breakpoint === "xs" ? /*#__PURE__*/_jsx(ListItemButton, {
23
+ className: "item-wrapper",
24
+ onClick: handleClick("forceAutoAlignment"),
25
+ children: "Force Auto Alignment"
26
+ }) : null, /*#__PURE__*/_jsx(ListItemButton, {
22
27
  className: "item-wrapper",
23
28
  onClick: handleClick("deleteSection"),
24
29
  children: "Delete Section"
@@ -316,6 +316,9 @@ const useFreeGridStyles = ({
316
316
  "& .fgi_type_text": {
317
317
  "& .edt-headings": {
318
318
  margin: "0px"
319
+ },
320
+ "& .edt-paragraphs": {
321
+ margin: "0px"
319
322
  }
320
323
  },
321
324
  /** element toolbar hide */
@@ -292,7 +292,7 @@ const GridItem = props => {
292
292
  ...getBRProps,
293
293
  display: "flex",
294
294
  flexDirection: flexDirection || "column",
295
- background: bgColor || "transparent",
295
+ background: bgColor,
296
296
  borderColor: getBorderColor(),
297
297
  borderWidth: borderWidth || "1px",
298
298
  borderStyle: borderStyle || "solid",
@@ -27,6 +27,9 @@ const CheckList = props => {
27
27
  checked
28
28
  } = element;
29
29
  const path = ReactEditor.findPath(editor, element);
30
+ const {
31
+ customLineHeight
32
+ } = customProps || {};
30
33
  const handleCheck = e => {
31
34
  Transforms.setNodes(editor, {
32
35
  checked: e.target.checked
@@ -45,7 +48,7 @@ const CheckList = props => {
45
48
  justifyContent: "center",
46
49
  alignItems: "center",
47
50
  ...(style || {}),
48
- lineHeight: 1.43
51
+ lineHeight: `${customLineHeight} !important`
49
52
  },
50
53
  children: [/*#__PURE__*/_jsxs("div", {
51
54
  contentEditable: false,
@@ -113,7 +113,7 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
113
113
  open: open,
114
114
  onClose: handleClose,
115
115
  customClass: "emojiDrawer",
116
- swipeableDrawer: true,
116
+ swipeableDrawer: false,
117
117
  children: /*#__PURE__*/_jsx(Paper, {
118
118
  sx: {
119
119
  width: '100%',
@@ -35,7 +35,7 @@ const SearchAndDocList = ({
35
35
  children: translation("Brains")
36
36
  }), !isMobile ? /*#__PURE__*/_jsx(IconButton, {
37
37
  onClick: e => {
38
- e?.stopPropagation();
38
+ e.stopPropagation();
39
39
  handleClose();
40
40
  },
41
41
  sx: {
@@ -138,7 +138,8 @@ const SearchAndDocList = ({
138
138
  position: 'relative',
139
139
  maxHeight: '400px',
140
140
  minWidth: "275px",
141
- overflow: 'auto',
141
+ overflowY: 'auto',
142
+ overflowX: 'hidden',
142
143
  padding: '0px 16px 8px',
143
144
  marginBottom: '20px',
144
145
  scrollbarWidth: "thin",
@@ -1,6 +1,6 @@
1
1
  import React, { useRef, useState } from "react";
2
2
  import SignatureCanvas from "react-signature-canvas";
3
- import { Grid, useMediaQuery } from "@mui/material";
3
+ import { Grid } from "@mui/material";
4
4
  import { jsx as _jsx } from "react/jsx-runtime";
5
5
  import { jsxs as _jsxs } from "react/jsx-runtime";
6
6
  const DrawSignature = props => {
@@ -24,11 +24,6 @@ const DrawSignature = props => {
24
24
  signature: result?.imageURL || strImage
25
25
  });
26
26
  };
27
- const isMobile = useMediaQuery("(max-width:599px)");
28
- const signatureCanvasStyle = isMobile ? {
29
- width: "260px",
30
- height: "200px"
31
- } : {};
32
27
  return /*#__PURE__*/_jsxs(Grid, {
33
28
  container: true,
34
29
  children: [uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
@@ -40,8 +35,7 @@ const DrawSignature = props => {
40
35
  },
41
36
  children: /*#__PURE__*/_jsx(SignatureCanvas, {
42
37
  canvasProps: {
43
- className: "signature-canvas",
44
- ...signatureCanvasStyle
38
+ className: "signature-canvas"
45
39
  },
46
40
  onEnd: onSigned,
47
41
  ref: ref => canvasRef = ref,
@@ -5,6 +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
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";
@@ -27,10 +28,17 @@ const SimpleText = props => {
27
28
  editorPlaceholder,
28
29
  translation
29
30
  } = customProps;
31
+ const {
32
+ activeBreakPoint
33
+ } = useEditorContext();
30
34
  // const { element: pageSt } = getPageSettings(editor) || {};
31
35
  // const { pageColor } = pageSt?.pageProps || {};
36
+ const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
37
+ const lineH = element?.children[0]?.lineHeight;
38
+ const lineHeight = getBreakpointLineSpacing(lineH, activeBreakPoint || (isMobile ? "xs" : "lg"));
32
39
  const classes = SimpleTextStyle({
33
- pageColor: "#FFFFFF"
40
+ pageColor: "#FFFFFF",
41
+ lineHeight
34
42
  });
35
43
  const selected = useSelected();
36
44
  const path = ReactEditor.findPath(editor, element);
@@ -35,8 +35,8 @@ const SimpleTextStyle = ({
35
35
  height: "24px",
36
36
  overflow: "hidden",
37
37
  fontSize: "14px",
38
- display: 'inline-flex',
39
- alignItems: 'center',
38
+ display: "inline-flex",
39
+ alignItems: "center",
40
40
  "& .bg-pad-sl": {
41
41
  padding: "2px 4px 2px 4px",
42
42
  background: "transparent",
@@ -307,7 +307,7 @@ const Table = props => {
307
307
  onScroll: handleScroll,
308
308
  onMouseOver: onMouseOver,
309
309
  onMouseLeave: onMouseLeave,
310
- className: !hideTools.includes("add_column") ? "custom-scroll" : '',
310
+ className: "custom-scroll",
311
311
  children: [/*#__PURE__*/_jsx(TableComp, {
312
312
  className: readOnly ? "readOnly" : "",
313
313
  sx: {
@@ -345,8 +345,8 @@ const Table = props => {
345
345
  handleAction: handleAction,
346
346
  exandTools: exandTools,
347
347
  openSetttings: openSetttings,
348
- translation: translation,
349
- hideTools: hideTools
348
+ hideTools: hideTools,
349
+ translation: translation
350
350
  }), /*#__PURE__*/_jsx(MoreTableSettings, {
351
351
  exandTools: exandTools,
352
352
  handleAction: handleAction,
@@ -1,9 +1,16 @@
1
1
  import React, { useEffect, useState } from "react";
2
- import { Editor, Text } from "slate";
2
+ import { Editor } from "slate";
3
3
  import { useSlate } from "slate-react";
4
4
  import { getNodeText } from "../../utils/helper";
5
+ import { Text } from "slate";
5
6
  import { jsx as _jsx } from "react/jsx-runtime";
6
7
  import { jsxs as _jsxs } from "react/jsx-runtime";
8
+ const isEmptyTextNode = node => {
9
+ if (Text.isText(node)) {
10
+ return !node.text.trim();
11
+ }
12
+ return false;
13
+ };
7
14
  const Title = props => {
8
15
  const {
9
16
  attributes,
@@ -11,8 +18,8 @@ const Title = props => {
11
18
  element,
12
19
  customProps
13
20
  } = props;
14
- const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
15
21
  useDetectExitFromTitle(element, customProps?.getTitleSaveData);
22
+ const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
16
23
  return /*#__PURE__*/_jsxs("div", {
17
24
  ...attributes,
18
25
  placeholder: "Title",
@@ -50,10 +57,4 @@ const useDetectExitFromTitle = (titleNode, onSaveTitle) => {
50
57
  }
51
58
  }, [editor.selection]);
52
59
  return null;
53
- };
54
- const isEmptyTextNode = node => {
55
- if (Text.isText(node)) {
56
- return !node.text.trim();
57
- }
58
- return false;
59
60
  };
@@ -34,7 +34,8 @@ const VariableButton = props => {
34
34
  PaperProps: {
35
35
  style: {
36
36
  maxHeight: 300,
37
- overflowY: "auto"
37
+ overflowY: "auto",
38
+ transformOrigin: 'top left'
38
39
  },
39
40
  sx: {
40
41
  "&::-webkit-scrollbar-track": {
@@ -44,6 +45,14 @@ const VariableButton = props => {
44
45
  borderRadius: "16px"
45
46
  }
46
47
  }
48
+ },
49
+ anchorOrigin: {
50
+ vertical: 'bottom',
51
+ horizontal: 'right'
52
+ },
53
+ transformOrigin: {
54
+ vertical: 'top',
55
+ horizontal: 'right'
47
56
  }
48
57
  },
49
58
  children: [/*#__PURE__*/_jsx(MenuItem, {
@@ -45,12 +45,13 @@ const MiniEditor = props => {
45
45
  const {
46
46
  translationMock
47
47
  } = otherProps;
48
+ const dummyTranslation = () => {};
48
49
  const customProps = {
49
50
  ...(otherProps || {}),
50
51
  readOnly: isReadOnly,
51
52
  editorPlaceholder: miniEditorPlaceholder,
52
53
  page_id: id,
53
- translation: translation || translationMock
54
+ translation: translation || translationMock || dummyTranslation
54
55
  };
55
56
  const [mentions, setMentions] = useMentions({
56
57
  editor,