@flozy/editor 9.8.5 → 9.8.7

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 (137) hide show
  1. package/dist/Editor/ChatEditor.js +17 -16
  2. package/dist/Editor/CommonEditor.js +119 -17
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +17 -9
  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 +25 -9
  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/SimpleText/index.js +9 -1
  30. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  31. package/dist/Editor/Elements/Table/Table.js +3 -3
  32. package/dist/Editor/Elements/Title/title.js +6 -6
  33. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  34. package/dist/Editor/MiniEditor.js +2 -1
  35. package/dist/Editor/Styles/EditorStyles.js +5 -5
  36. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  37. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  38. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  39. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  40. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
  41. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  42. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
  43. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
  44. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
  45. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
  46. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
  47. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
  48. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  49. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  50. package/dist/Editor/assets/svg/BackIcon.js +18 -0
  51. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  52. package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
  53. package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
  54. package/dist/Editor/common/ColorPickerButton.js +38 -16
  55. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  56. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  57. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  58. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  59. package/dist/Editor/common/CustomSelect.js +43 -0
  60. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  61. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  62. package/dist/Editor/common/Icon.js +31 -1
  63. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  64. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
  65. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
  66. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  67. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  68. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  69. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  70. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
  71. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  72. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  73. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
  74. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  75. package/dist/Editor/common/RnD/ShadowElement.js +2 -1
  76. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
  77. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  78. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
  79. package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
  80. package/dist/Editor/common/RnD/Utils/index.js +3 -0
  81. package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
  82. package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
  83. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
  84. package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
  85. package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
  86. package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
  87. package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
  88. package/dist/Editor/common/RnD/index.js +59 -3
  89. package/dist/Editor/common/Shorthands/elements.js +54 -0
  90. package/dist/Editor/common/SnackBar/index.js +43 -0
  91. package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
  92. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
  93. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
  94. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
  95. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
  96. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
  97. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
  98. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
  100. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  101. package/dist/Editor/common/Uploader.js +8 -0
  102. package/dist/Editor/common/iconslist.js +7 -8
  103. package/dist/Editor/commonStyle.js +95 -60
  104. package/dist/Editor/helper/textIndeces.js +58 -0
  105. package/dist/Editor/helper/theme.js +202 -2
  106. package/dist/Editor/hooks/useAutoScroll.js +38 -0
  107. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  108. package/dist/Editor/hooks/useMouseMove.js +9 -3
  109. package/dist/Editor/hooks/useThemeValues.js +63 -0
  110. package/dist/Editor/plugins/withEmbeds.js +1 -1
  111. package/dist/Editor/plugins/withHTML.js +10 -7
  112. package/dist/Editor/plugins/withLinks.js +9 -10
  113. package/dist/Editor/plugins/withTable.js +1 -1
  114. package/dist/Editor/theme/ThemeList.js +50 -173
  115. package/dist/Editor/theme/index.js +149 -0
  116. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  117. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  118. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  119. package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
  120. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  121. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  122. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  123. package/dist/Editor/themeSettings/fonts/style.js +62 -0
  124. package/dist/Editor/themeSettings/icons.js +60 -0
  125. package/dist/Editor/themeSettings/index.js +361 -0
  126. package/dist/Editor/themeSettings/style.js +292 -0
  127. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  128. package/dist/Editor/themeSettingsAI/index.js +355 -0
  129. package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
  130. package/dist/Editor/themeSettingsAI/style.js +324 -0
  131. package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
  132. package/dist/Editor/utils/button.js +1 -17
  133. package/dist/Editor/utils/draftToSlate.js +3 -2
  134. package/dist/Editor/utils/font.js +40 -37
  135. package/dist/Editor/utils/freegrid.js +2 -3
  136. package/dist/Editor/utils/helper.js +90 -19
  137. package/package.json +4 -4
@@ -98,6 +98,9 @@ const usePopupStyle = theme => ({
98
98
  }
99
99
  }
100
100
  },
101
+ "& .MuiDivider-root": {
102
+ border: `0.5px solid ${theme?.palette?.editor?.deviderBgColor}`
103
+ },
101
104
  "@media only screen and (max-width: 599px)": {
102
105
  // margin: "10px !important",
103
106
  background: "unset",
@@ -111,6 +114,7 @@ const usePopupStyle = theme => ({
111
114
  width: "323px",
112
115
  maxWidth: "100%",
113
116
  overflowX: "hidden !important",
117
+ marginTop: "6px",
114
118
  // 30% of window height
115
119
  maxHeight: `${window.innerHeight * 0.45}px`,
116
120
  overflow: "auto",
@@ -130,7 +134,7 @@ const usePopupStyle = theme => ({
130
134
  },
131
135
  "& .accordionIcon": {
132
136
  "& p": {
133
- textAlign: 'left'
137
+ textAlign: "left"
134
138
  }
135
139
  }
136
140
  },
@@ -304,6 +308,21 @@ const usePopupStyle = theme => ({
304
308
  paddingRight: "0px !important"
305
309
  }
306
310
  },
311
+ textFormatContainer: {
312
+ ".saveThemeBtnsWrapper": {
313
+ position: "sticky",
314
+ bottom: "0px",
315
+ right: "0px",
316
+ boxShadow: `0px -3px 16px 0px ${theme?.palette?.editor?.cardShadow}`,
317
+ padding: "10px",
318
+ borderRadius: "8px 8px 19px 19px",
319
+ display: "flex",
320
+ justifyContent: "end",
321
+ alignItems: "center",
322
+ gap: "8px",
323
+ background: theme?.palette?.editor?.miniToolBarBackground
324
+ }
325
+ },
307
326
  textFormatLabel: {
308
327
  display: "flex",
309
328
  alignItems: "center",
@@ -335,9 +354,10 @@ const usePopupStyle = theme => ({
335
354
  borderBottom: `1px solid ${theme?.palette?.editor?.deviderBgColor} !important`
336
355
  },
337
356
  textFormatField: {
338
- marginBottom: "8px",
339
- marginTop: "8px"
357
+ marginBottom: "8px"
358
+ // marginTop: "8px",
340
359
  },
360
+
341
361
  textFormatField1: {
342
362
  marginBottom: "16px",
343
363
  marginTop: "10px"
@@ -416,6 +436,11 @@ const usePopupStyle = theme => ({
416
436
  "& .MuiOutlinedInput-notchedOutline": {
417
437
  border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
418
438
  },
439
+ "& .MuiInputBase-root": {
440
+ "& input": {
441
+ border: "none !important"
442
+ }
443
+ },
419
444
  "& svg": {
420
445
  width: "20px",
421
446
  height: "24px"
@@ -424,9 +449,6 @@ const usePopupStyle = theme => ({
424
449
  fontFamilyListOptions: {
425
450
  "& .MuiAutocomplete-listbox": {
426
451
  padding: "0px",
427
- // "&::-webkit-scrollbar-thumb": {
428
- // background: `none !important`,
429
- // },
430
452
  "&::-webkit-scrollbar-thumb": {
431
453
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
432
454
  },
@@ -437,8 +459,8 @@ const usePopupStyle = theme => ({
437
459
  margin: "5px",
438
460
  borderRadius: "8px",
439
461
  color: theme?.palette?.editor?.menuOptionTextColor,
440
- fontSize: '14px',
441
- padding: '8px 12px',
462
+ fontSize: "14px",
463
+ padding: "8px 12px",
442
464
  '&[aria-selected="true"]': {
443
465
  backgroundColor: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
444
466
  }
@@ -537,7 +559,7 @@ const usePopupStyle = theme => ({
537
559
  }
538
560
  },
539
561
  alignItems: "flexStart",
540
- justifyContent: "center",
562
+ // justifyContent: "center",
541
563
  flexDirection: "row",
542
564
  "&:hover": {
543
565
  background: "unset"
@@ -786,8 +808,13 @@ const usePopupStyle = theme => ({
786
808
  padding: "0px"
787
809
  },
788
810
  defaultBtn: {
789
- color: "#0F172A",
790
- textTransform: "none"
811
+ color: "#2563EB !important",
812
+ textTransform: "none",
813
+ textDecoration: "underline",
814
+ "&.Mui-disabled": {
815
+ color: "#A0AEC0 !important",
816
+ textDecoration: "none"
817
+ }
791
818
  },
792
819
  templateCardBtnGrp: {
793
820
  display: "none",
@@ -864,7 +891,7 @@ const usePopupStyle = theme => ({
864
891
  margin: "30px",
865
892
  "& .MuiPaper-root": {
866
893
  overflow: "auto",
867
- backgroundColor: theme?.palette?.editor?.background,
894
+ backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
868
895
  borderRadius: "14px !important",
869
896
  border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`,
870
897
  minWidth: "fit-content",
@@ -1138,6 +1165,39 @@ const usePopupStyle = theme => ({
1138
1165
  "& fieldset": {
1139
1166
  border: "none !important"
1140
1167
  }
1168
+ },
1169
+ customCheckBox: {
1170
+ marginTop: "4px",
1171
+ padding: "0px",
1172
+ "& .MuiCheckbox-root": {
1173
+ padding: "8px 8px 8px 10px",
1174
+ "&:hover": {
1175
+ background: "unset !important"
1176
+ }
1177
+ },
1178
+ "& button": {
1179
+ width: "14px !important",
1180
+ height: "14px !important",
1181
+ borderRadius: "3px",
1182
+ border: `1px solid ${theme?.palette?.editor?.buttonBorder3}`,
1183
+ padding: "0px",
1184
+ "& svg": {
1185
+ width: "10px",
1186
+ height: "10px"
1187
+ }
1188
+ },
1189
+ "& .checkedIcon": {
1190
+ background: "#2563EB",
1191
+ borderColor: "#2563EB"
1192
+ },
1193
+ "& .unCheckedIcon": {
1194
+ background: theme?.palette?.editor?.checkedIconBg
1195
+ },
1196
+ "& p": {
1197
+ margin: "0px !important",
1198
+ color: theme?.palette?.editor?.tv_text,
1199
+ fontSize: "13px"
1200
+ }
1141
1201
  }
1142
1202
  });
1143
1203
  export default usePopupStyle;
@@ -10,11 +10,13 @@ import { AllColors } from "../../Elements/Color Picker/ColorButtons";
10
10
  import { fontFamilyMap } from "../../utils/font";
11
11
  import { getBorderColor } from "../../utils/helper";
12
12
  import SelectTypography from "./MiniTextFormat/SelectTypography";
13
+ import { isTextCustomized, saveToTheme } from "../../helper/theme";
14
+ import { useEditorTheme } from "../../hooks/useEditorTheme";
13
15
  import SelectSuperSubscript from "./MiniTextFormat/SelectSuperSubscript";
14
16
  import { ColorResetIcon, TextDefaultStyleIcon } from "../../common/iconListV2";
15
17
  import FontFamilyAutocomplete from "../FormatTools/FontFamilyAutocomplete";
16
18
  import { useEditorContext } from "../../hooks/useMouseMove";
17
- // import LineSpacing from "../../common/StyleBuilder/fieldTypes/lineSpacing";
19
+ import LineSpacing from "../../common/StyleBuilder/fieldTypes/lineSpacing";
18
20
  import { getPageSettings } from "../../utils/pageSettings";
19
21
  import { jsx as _jsx } from "react/jsx-runtime";
20
22
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -39,15 +41,15 @@ const TextFormat = props => {
39
41
  const {
40
42
  element: pageSt
41
43
  } = getPageSettings(editor) || {};
42
- // const pageSettingLine = pageSt?.pageProps?.lineHeight;
44
+ const pageSettingLine = pageSt?.pageProps?.lineHeight;
43
45
  const {
44
46
  fontFamilies,
45
- theme
47
+ theme: appTheme
46
48
  } = useEditorContext();
47
49
  const {
48
50
  activeBreakPoint
49
51
  } = useEditorContext();
50
- // const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
52
+ const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
51
53
  const fontWeight = allTools.find(f => f.format === "fontWeight");
52
54
  const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
53
55
  const fontAlign = allTools.filter(f => f.format?.indexOf("align") >= 0);
@@ -64,12 +66,13 @@ const TextFormat = props => {
64
66
  color: "",
65
67
  bgColor: ""
66
68
  };
67
-
68
- // let lineSpacingValue = activeMark(editor, "lineHeight");
69
- // lineSpacingValue =
70
- // lineSpacingValue?.[breakpoint] !== undefined
71
- // ? lineSpacingValue
72
- // : pageSettingLine;
69
+ const {
70
+ theme,
71
+ updateTheme
72
+ } = useEditorTheme();
73
+ const customized = isTextCustomized(editor);
74
+ let lineSpacingValue = activeMark(editor, "lineHeight");
75
+ lineSpacingValue = lineSpacingValue?.[breakpoint] !== undefined ? lineSpacingValue : pageSettingLine;
73
76
  const handleColorPicker = type => e => {
74
77
  setType(type);
75
78
  setAnchorEl(e.currentTarget);
@@ -110,16 +113,63 @@ const TextFormat = props => {
110
113
  value
111
114
  });
112
115
  };
113
-
114
- // const handleLineSpacing = (data) => {
115
- // const [[format, value]] = Object.entries(data);
116
- // addMarkData(editor, { format, value });
117
- // };
116
+ const handleLineSpacing = data => {
117
+ const [[format, value]] = Object.entries(data);
118
+ addMarkData(editor, {
119
+ format,
120
+ value
121
+ });
122
+ };
118
123
  return /*#__PURE__*/_jsxs(Grid, {
119
124
  container: true,
120
125
  sx: classes.textFormatWrapper,
121
126
  className: "text-formatter-popup",
122
127
  children: [/*#__PURE__*/_jsxs(Grid, {
128
+ item: true,
129
+ xs: 12,
130
+ children: [/*#__PURE__*/_jsxs(Grid, {
131
+ container: true,
132
+ justifyContent: "space-between",
133
+ alignItems: "center",
134
+ children: [/*#__PURE__*/_jsx(Grid, {
135
+ item: true,
136
+ children: /*#__PURE__*/_jsx(Typography, {
137
+ variant: "body1",
138
+ color: "primary",
139
+ sx: classes.typoLabel,
140
+ children: "Style"
141
+ })
142
+ }), /*#__PURE__*/_jsx(Grid, {
143
+ item: true,
144
+ children: theme?.id ? /*#__PURE__*/_jsx(Button, {
145
+ sx: classes.defaultBtn,
146
+ onClick: () => {
147
+ const {
148
+ field,
149
+ theme
150
+ } = saveToTheme(editor) || {};
151
+ updateTheme(theme, {
152
+ action: "ELEMENT_PROPS_CHANGE",
153
+ fieldName: field
154
+ });
155
+ },
156
+ disabled: !customized,
157
+ children: "Save to theme"
158
+ }) : null
159
+ })]
160
+ }), /*#__PURE__*/_jsx(Grid, {
161
+ item: true,
162
+ xs: 12,
163
+ sx: classes.textFormatField,
164
+ children: /*#__PURE__*/_jsx(SelectTypography, {
165
+ editor: editor,
166
+ classes: classes,
167
+ closeMainPopup: closeMainPopup,
168
+ type: "fullWidth",
169
+ customProps: customProps
170
+ })
171
+ })]
172
+ }), /*#__PURE__*/_jsxs(Grid, {
123
173
  item: true,
124
174
  xs: 12,
125
175
  children: [/*#__PURE__*/_jsxs(Grid, {
@@ -246,7 +296,8 @@ const TextFormat = props => {
246
296
  rounded: true,
247
297
  title: translation("textColor"),
248
298
  id: "11_cc",
249
- classes: classes
299
+ classes: classes,
300
+ type: "textColor"
250
301
  }, "11_cc")
251
302
  })]
252
303
  }), /*#__PURE__*/_jsxs(Grid, {
@@ -272,7 +323,7 @@ const TextFormat = props => {
272
323
  children: /*#__PURE__*/_jsx(Button, {
273
324
  sx: classes.defaultBtn2,
274
325
  startIcon: /*#__PURE__*/_jsx(ColorResetIcon, {
275
- stroke: theme?.palette?.type === "dark" ? "#505359" : "#A2B0B9"
326
+ stroke: appTheme?.palette?.type === "dark" ? "#505359" : "#A2B0B9"
276
327
  }),
277
328
  onClick: handleDefault({
278
329
  format: "bgColor"
@@ -362,12 +413,7 @@ const TextFormat = props => {
362
413
  xs: 12,
363
414
  className: "typo-icons",
364
415
  sx: classes.evenSpace,
365
- children: [/*#__PURE__*/_jsx(SelectTypography, {
366
- classes: classes,
367
- editor: editor,
368
- closeMainPopup: closeMainPopup || onClose,
369
- customProps: customProps
370
- }), fontStyle?.map((m, i) => {
416
+ children: [fontStyle?.map((m, i) => {
371
417
  return /*#__PURE__*/_jsx(MarkButton, {
372
418
  editor: editor,
373
419
  ...m,
@@ -389,6 +435,32 @@ const TextFormat = props => {
389
435
  xs: 12,
390
436
  sx: classes.dividerGrid,
391
437
  children: /*#__PURE__*/_jsx(Divider, {})
438
+ }), /*#__PURE__*/_jsxs(Grid, {
439
+ item: true,
440
+ xs: 12,
441
+ children: [/*#__PURE__*/_jsx(Typography, {
442
+ variant: "body1",
443
+ color: "primary",
444
+ sx: classes.typoLabel,
445
+ children: "Line Spacing"
446
+ }), /*#__PURE__*/_jsx(Grid, {
447
+ item: true,
448
+ xs: 12,
449
+ className: "typo-icons",
450
+ sx: classes.evenSpace,
451
+ children: /*#__PURE__*/_jsx(LineSpacing, {
452
+ value: lineSpacingValue,
453
+ onChange: handleLineSpacing,
454
+ data: {
455
+ key: "lineHeight"
456
+ }
457
+ })
458
+ })]
459
+ }), /*#__PURE__*/_jsx(Grid, {
460
+ item: true,
461
+ xs: 12,
462
+ sx: classes.dividerGrid,
463
+ children: /*#__PURE__*/_jsx(Divider, {})
392
464
  }), /*#__PURE__*/_jsx(Grid, {
393
465
  item: true,
394
466
  xs: 12,