@flozy/editor 6.0.3 → 6.0.5
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.
- package/dist/Editor/ChatEditor.js +7 -7
- package/dist/Editor/CommonEditor.js +25 -81
- package/dist/Editor/DialogWrapper.js +25 -31
- package/dist/Editor/Editor.css +16 -22
- package/dist/Editor/Elements/AI/PopoverAIInput.js +12 -2
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/Button/EditorButton.js +9 -26
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +12 -57
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +1 -25
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +4 -4
- package/dist/Editor/Elements/Color Picker/Styles.js +1 -1
- package/dist/Editor/Elements/DataView/DataView.js +3 -4
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/NumberType.js +1 -5
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +1 -5
- package/dist/Editor/Elements/DataView/Layouts/FilterView.js +19 -23
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +1 -1
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Form/Form.js +0 -1
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +14 -0
- package/dist/Editor/Elements/FreeGrid/styles.js +0 -4
- package/dist/Editor/Elements/Grid/GridItem.js +3 -2
- package/dist/Editor/Elements/Link/Link.js +43 -70
- package/dist/Editor/Elements/List/CheckList.js +1 -2
- package/dist/Editor/Elements/Search/SearchAttachment.js +0 -1
- package/dist/Editor/Elements/Search/SearchList.js +1 -8
- package/dist/Editor/Elements/SimpleText/index.js +1 -8
- package/dist/Editor/Elements/SimpleText/style.js +1 -5
- package/dist/Editor/Elements/Table/Table.js +3 -3
- package/dist/Editor/Elements/Table/TableCell.js +9 -14
- package/dist/Editor/Elements/Title/title.js +1 -13
- package/dist/Editor/Elements/Variables/Style.js +2 -28
- package/dist/Editor/Elements/Variables/VariableButton.js +4 -17
- package/dist/Editor/MiniEditor.js +2 -4
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
- package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +15 -7
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +36 -46
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +1 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +1 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +91 -211
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +4 -11
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -16
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +1 -1
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +7 -99
- package/dist/Editor/Toolbar/PopupTool/index.js +0 -2
- package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
- package/dist/Editor/common/ColorPickerButton.js +9 -32
- package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
- package/dist/Editor/common/DnD/Draggable.js +1 -0
- package/dist/Editor/common/FontLoader/FontList.js +9 -1
- package/dist/Editor/common/FontLoader/FontLoader.js +4 -6
- package/dist/Editor/common/Icon.js +0 -28
- package/dist/Editor/common/ImageSelector/Styles.js +9 -3
- package/dist/Editor/common/MentionsPopup/Styles.js +9 -3
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +1 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -4
- package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +2 -3
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -14
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +3 -6
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +4 -5
- package/dist/Editor/common/RnD/Utils/index.js +0 -40
- package/dist/Editor/common/RnD/index.js +3 -23
- package/dist/Editor/common/Shorthands/elements.js +0 -54
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +2 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +11 -35
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +4 -13
- package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +1 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +0 -4
- package/dist/Editor/common/Uploader.js +0 -8
- package/dist/Editor/commonStyle.js +63 -58
- package/dist/Editor/helper/deserialize/index.js +1 -1
- package/dist/Editor/helper/index.js +2 -2
- package/dist/Editor/helper/theme.js +3 -224
- package/dist/Editor/hooks/useMouseMove.js +5 -13
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +2 -2
- package/dist/Editor/plugins/withLayout.js +1 -1
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +173 -50
- package/dist/Editor/utils/SlateUtilityFunctions.js +42 -161
- package/dist/Editor/utils/button.js +14 -0
- package/dist/Editor/utils/customHooks/useTableResize.js +1 -2
- package/dist/Editor/utils/draftToSlate.js +2 -3
- package/dist/Editor/utils/font.js +37 -40
- package/dist/Editor/utils/helper.js +19 -88
- package/dist/Editor/utils/link.js +1 -1
- package/dist/Editor/utils/pageSettings.js +2 -14
- package/dist/Editor/utils/table.js +0 -21
- package/package.json +2 -5
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -438
- package/dist/Editor/assets/svg/ThemeIcons.js +0 -291
- package/dist/Editor/common/CustomColorPicker/index.js +0 -106
- package/dist/Editor/common/CustomColorPicker/style.js +0 -53
- package/dist/Editor/common/CustomDialog/index.js +0 -94
- package/dist/Editor/common/CustomDialog/style.js +0 -67
- package/dist/Editor/common/CustomSelect.js +0 -33
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +0 -79
- package/dist/Editor/helper/ensureWrappedVariables.js +0 -28
- package/dist/Editor/hooks/useEditorTheme.js +0 -153
- package/dist/Editor/theme/index.js +0 -144
- package/dist/Editor/themeSettings/ActiveTheme.js +0 -72
- package/dist/Editor/themeSettings/buttons/index.js +0 -283
- package/dist/Editor/themeSettings/buttons/style.js +0 -21
- package/dist/Editor/themeSettings/colorTheme/index.js +0 -292
- package/dist/Editor/themeSettings/colorTheme/style.js +0 -77
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
- package/dist/Editor/themeSettings/fonts/index.js +0 -220
- package/dist/Editor/themeSettings/fonts/style.js +0 -44
- package/dist/Editor/themeSettings/icons.js +0 -60
- package/dist/Editor/themeSettings/index.js +0 -320
- package/dist/Editor/themeSettings/style.js +0 -152
- package/dist/Editor/themeSettingsAI/icons.js +0 -96
- package/dist/Editor/themeSettingsAI/index.js +0 -356
- package/dist/Editor/themeSettingsAI/saveTheme.js +0 -197
- package/dist/Editor/themeSettingsAI/style.js +0 -250
@@ -28,20 +28,16 @@ export const toolbarGroups = [[{
|
|
28
28
|
type: "dropdown",
|
29
29
|
options: [{
|
30
30
|
text: "Normal",
|
31
|
-
value: "normal"
|
32
|
-
numVal: "400"
|
31
|
+
value: "normal"
|
33
32
|
}, {
|
34
33
|
text: "Bold",
|
35
|
-
value: "bold"
|
36
|
-
numVal: "700"
|
34
|
+
value: "bold"
|
37
35
|
}, {
|
38
36
|
text: "Bolder",
|
39
|
-
value: "bolder"
|
40
|
-
numVal: "700"
|
37
|
+
value: "bolder"
|
41
38
|
}, {
|
42
39
|
text: "Lighter",
|
43
|
-
value: "lighter"
|
44
|
-
numVal: "100"
|
40
|
+
value: "lighter"
|
45
41
|
}],
|
46
42
|
icon: FormatBoldIcon,
|
47
43
|
width: "100px"
|
@@ -50,8 +46,7 @@ export const toolbarGroups = [[{
|
|
50
46
|
format: "bold",
|
51
47
|
type: "mark",
|
52
48
|
title: "Bold",
|
53
|
-
basic: true
|
54
|
-
themeEnabled: true
|
49
|
+
basic: true
|
55
50
|
}, {
|
56
51
|
id: 5,
|
57
52
|
format: "underline",
|
@@ -62,8 +57,7 @@ export const toolbarGroups = [[{
|
|
62
57
|
format: "italic",
|
63
58
|
type: "mark",
|
64
59
|
title: "Italic",
|
65
|
-
basic: true
|
66
|
-
themeEnabled: true
|
60
|
+
basic: true
|
67
61
|
}, {
|
68
62
|
id: 6,
|
69
63
|
format: "strikethrough",
|
@@ -107,42 +101,6 @@ export const toolbarGroups = [[{
|
|
107
101
|
type: "block",
|
108
102
|
title: "H3",
|
109
103
|
group: "typography"
|
110
|
-
}, {
|
111
|
-
id: 39,
|
112
|
-
format: "headingFour",
|
113
|
-
type: "block",
|
114
|
-
title: "H4",
|
115
|
-
group: "typography"
|
116
|
-
}, {
|
117
|
-
id: 40,
|
118
|
-
format: "headingFive",
|
119
|
-
type: "block",
|
120
|
-
title: "H5",
|
121
|
-
group: "typography"
|
122
|
-
}, {
|
123
|
-
id: 41,
|
124
|
-
format: "headingSix",
|
125
|
-
type: "block",
|
126
|
-
title: "H6",
|
127
|
-
group: "typography"
|
128
|
-
}, {
|
129
|
-
id: 42,
|
130
|
-
format: "paragraphOne",
|
131
|
-
type: "block",
|
132
|
-
title: "Paragraph 1",
|
133
|
-
group: "typography"
|
134
|
-
}, {
|
135
|
-
id: 43,
|
136
|
-
format: "paragraphTwo",
|
137
|
-
type: "block",
|
138
|
-
title: "Paragraph 2",
|
139
|
-
group: "typography"
|
140
|
-
}, {
|
141
|
-
id: 44,
|
142
|
-
format: "paragraphThree",
|
143
|
-
type: "block",
|
144
|
-
title: "Paragraph 3",
|
145
|
-
group: "typography"
|
146
104
|
}, {
|
147
105
|
id: 14,
|
148
106
|
format: "doublequote",
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import React, { useMemo, useState } from "react";
|
2
2
|
import { Grid, Button, Popover } from "@mui/material";
|
3
|
+
import ColorPickerTool from "react-gcolor-picker";
|
3
4
|
import { colors } from "../Elements/Color Picker/defaultColors";
|
4
5
|
import SwipeableDrawerComponent from "./SwipeableDrawer";
|
5
|
-
import CustomColorPicker from "./CustomColorPicker";
|
6
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
7
7
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
8
8
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -12,10 +12,7 @@ const ColorPickerToolComponent = ({
|
|
12
12
|
onSave = () => {},
|
13
13
|
recentColors = [],
|
14
14
|
hideGradient,
|
15
|
-
handleClose
|
16
|
-
closeDrawer,
|
17
|
-
hideThemeColors,
|
18
|
-
disableEditTheme
|
15
|
+
handleClose
|
19
16
|
}) => {
|
20
17
|
const [color, setColor] = useState(value);
|
21
18
|
const handleSave = () => {
|
@@ -36,15 +33,11 @@ const ColorPickerToolComponent = ({
|
|
36
33
|
item: true,
|
37
34
|
xs: 12,
|
38
35
|
children: [/*#__PURE__*/_jsx("div", {
|
39
|
-
children: /*#__PURE__*/_jsx(
|
36
|
+
children: /*#__PURE__*/_jsx(ColorPickerTool, {
|
40
37
|
gradient: hideGradient ? false : true,
|
41
|
-
|
38
|
+
value: color,
|
42
39
|
onChange: handleColorChange,
|
43
|
-
|
44
|
-
defaultColors: initialColors,
|
45
|
-
closeDrawer: closeDrawer,
|
46
|
-
hideThemeColors: hideThemeColors,
|
47
|
-
disableEditTheme: disableEditTheme
|
40
|
+
defaultColors: initialColors
|
48
41
|
})
|
49
42
|
}), /*#__PURE__*/_jsxs("div", {
|
50
43
|
style: {
|
@@ -71,11 +64,7 @@ const ColorPickerButton = props => {
|
|
71
64
|
defaultColors = [],
|
72
65
|
classes = {},
|
73
66
|
recentColors = [],
|
74
|
-
hideGradient
|
75
|
-
children,
|
76
|
-
handleClose: closeDrawer,
|
77
|
-
hideThemeColors,
|
78
|
-
disableEditTheme
|
67
|
+
hideGradient
|
79
68
|
} = props;
|
80
69
|
const [anchorEl, setAnchorEl] = useState(null);
|
81
70
|
const open = Boolean(anchorEl);
|
@@ -87,13 +76,7 @@ const ColorPickerButton = props => {
|
|
87
76
|
setAnchorEl(null);
|
88
77
|
};
|
89
78
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
90
|
-
children: [
|
91
|
-
onClick: handleColorPicker,
|
92
|
-
style: {
|
93
|
-
cursor: "pointer"
|
94
|
-
},
|
95
|
-
children: children
|
96
|
-
}) : /*#__PURE__*/_jsx(Button, {
|
79
|
+
children: [/*#__PURE__*/_jsx(Button, {
|
97
80
|
style: {
|
98
81
|
background: value,
|
99
82
|
height: "22px",
|
@@ -120,10 +103,7 @@ const ColorPickerButton = props => {
|
|
120
103
|
onSave: onSave,
|
121
104
|
recentColors: recentColors,
|
122
105
|
hideGradient: hideGradient,
|
123
|
-
handleClose: handleClose
|
124
|
-
closeDrawer: closeDrawer,
|
125
|
-
hideThemeColors: hideThemeColors,
|
126
|
-
disableEditTheme: disableEditTheme
|
106
|
+
handleClose: handleClose
|
127
107
|
})
|
128
108
|
})
|
129
109
|
}) : /*#__PURE__*/_jsx(Popover, {
|
@@ -149,10 +129,7 @@ const ColorPickerButton = props => {
|
|
149
129
|
onSave: onSave,
|
150
130
|
recentColors: recentColors,
|
151
131
|
hideGradient: hideGradient,
|
152
|
-
handleClose: handleClose
|
153
|
-
closeDrawer: closeDrawer,
|
154
|
-
hideThemeColors: hideThemeColors,
|
155
|
-
disableEditTheme: disableEditTheme
|
132
|
+
handleClose: handleClose
|
156
133
|
})
|
157
134
|
})
|
158
135
|
})]
|
@@ -7,7 +7,7 @@ import { useEditorContext } from "../../hooks/useMouseMove";
|
|
7
7
|
import { Transforms } from "slate";
|
8
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
9
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
|
-
const DRAGGABLE_TYPES = ["paragraph", "headingOne", "headingTwo", "headingThree", "
|
10
|
+
const DRAGGABLE_TYPES = ["paragraph", "headingOne", "headingTwo", "headingThree", "grid"];
|
11
11
|
const DragHandleStyle = fromPopper => {
|
12
12
|
const handleDragStyle = fromPopper ? {
|
13
13
|
position: "absolute",
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import React, { useEffect } from "react";
|
2
2
|
import { useDraggable } from "@dnd-kit/core";
|
3
3
|
import { Box } from "@mui/material";
|
4
|
+
import DragIndicatorIcon from "@mui/icons-material/DragIndicator";
|
4
5
|
import { SectionDragIcon } from "../iconListV2";
|
5
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
7
|
const Draggable = props => {
|
@@ -1,3 +1,11 @@
|
|
1
1
|
const otherFonts = ["PoppinsRegular", "PoppinsBold", "Qwitcher Grypen", "Bulgarian Garamond", "Redacted Script", "Herr Von Muellerhoff", "Dawning of a New Day", "Coming Soon", "Engagement", "Ingrid Darling", "La Belle Aurore", "Mea Culpa", "The Girl Next Door"];
|
2
2
|
const mostUsedGoogleFonts = ["Roboto", "Poppins", "Lato", "Inter", "Nunito", "Ubuntu", "Oswald", "Rubik", "Roboto Slab", "PT Sans", "Work Sans", "Lora", "Mulish", "DM Sans", "Fira Sans", "Quicksand", "Barlow", "Manrope", "IBM Plex Sans", "PT Serif", "Libre Franklin", "Bebas Neue", "Cabin", "Titillium Web", "Heebo", "Noto Serif", "Jost", "Source Code Pro", "Josefin Sans", "Dosis", "Fira Sans Condensed", "Archivo", "Noto Serif JP", "Crimson Text", "Cairo", "Pacifico", "Red Hat Display", "Assistant", "Comfortaa", "Lexend", "Fjalla One", "Caveat", "Arvo", "Lobster", "Schibsted Grotesk", "EB Garamond", "Sora", "Kalam", "Onest", "Space Grotesk", "Outfit", "Plus Jakarta Sans"];
|
3
|
-
|
3
|
+
const systemFonts = ["Monaco", "Helvetica", "Georgia", "Times New Roman", "Courier New", "Impact"];
|
4
|
+
export const googleFontList = [...mostUsedGoogleFonts, ...otherFonts];
|
5
|
+
const fontList = [...mostUsedGoogleFonts, ...otherFonts, ...systemFonts];
|
6
|
+
export const defaultFontFamilies = {
|
7
|
+
id: 1,
|
8
|
+
format: "fontFamily",
|
9
|
+
type: "fontfamilydropdown",
|
10
|
+
options: fontList || []
|
11
|
+
};
|
@@ -18,7 +18,6 @@ const FontLoader = props => {
|
|
18
18
|
const loadFontsInBatches = (families, batchSize = 5, maxRetries = 3) => {
|
19
19
|
let currentIndex = 0;
|
20
20
|
let retryCount = 0;
|
21
|
-
let hideLoaderOn = 30;
|
22
21
|
const loadNextBatch = () => {
|
23
22
|
try {
|
24
23
|
if (currentIndex >= families?.length) {
|
@@ -27,7 +26,7 @@ const FontLoader = props => {
|
|
27
26
|
return;
|
28
27
|
}
|
29
28
|
const batch = families?.slice(currentIndex, currentIndex + batchSize);
|
30
|
-
const batchWithWeights = batch
|
29
|
+
const batchWithWeights = batch?.map(font => `${font}:300,400,600,700`);
|
31
30
|
WebFont.load({
|
32
31
|
google: {
|
33
32
|
families: [...batchWithWeights]
|
@@ -79,11 +78,10 @@ const FontLoader = props => {
|
|
79
78
|
// console.log(err);
|
80
79
|
setLoading(false);
|
81
80
|
});
|
82
|
-
// setLoading(true);
|
83
81
|
} else {
|
84
82
|
function correctFontArray(fontString) {
|
85
|
-
let fontsArray = fontString
|
86
|
-
let cleanedFontsArray = [...new Set(fontsArray
|
83
|
+
let fontsArray = fontString?.split(",");
|
84
|
+
let cleanedFontsArray = [...new Set(fontsArray?.map(font => font.trim()))];
|
87
85
|
return cleanedFontsArray;
|
88
86
|
}
|
89
87
|
function sanitizeFontFamily(fontFamily) {
|
@@ -100,7 +98,7 @@ const FontLoader = props => {
|
|
100
98
|
families = correctFontArray(families.join(", "));
|
101
99
|
families = families?.map(font => font?.replace(/\"/g, ""));
|
102
100
|
families = families?.map(font => font?.replace(", sans-serif", ""));
|
103
|
-
families = families
|
101
|
+
families = families?.filter(font => googleFontList?.includes(font));
|
104
102
|
loadFontsInBatches(families);
|
105
103
|
}
|
106
104
|
|
@@ -44,16 +44,6 @@ import ChervDown from "../assets/svg/ChervDown";
|
|
44
44
|
import ChervUp from "../assets/svg/ChervUp";
|
45
45
|
import { jsx as _jsx } from "react/jsx-runtime";
|
46
46
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
47
|
-
const HeadingIcon = ({
|
48
|
-
variant
|
49
|
-
}) => {
|
50
|
-
return /*#__PURE__*/_jsx("div", {
|
51
|
-
style: {
|
52
|
-
color: "#64748B"
|
53
|
-
},
|
54
|
-
children: variant
|
55
|
-
});
|
56
|
-
};
|
57
47
|
const iconList = {
|
58
48
|
fontFamily: /*#__PURE__*/_jsx(FontFamilyIcon, {
|
59
49
|
size: 20
|
@@ -86,24 +76,6 @@ const iconList = {
|
|
86
76
|
size: 18,
|
87
77
|
fill: "#64748B"
|
88
78
|
}),
|
89
|
-
headingFour: /*#__PURE__*/_jsx(HeadingIcon, {
|
90
|
-
variant: "H4"
|
91
|
-
}),
|
92
|
-
headingFive: /*#__PURE__*/_jsx(HeadingIcon, {
|
93
|
-
variant: "H5"
|
94
|
-
}),
|
95
|
-
headingSix: /*#__PURE__*/_jsx(HeadingIcon, {
|
96
|
-
variant: "H6"
|
97
|
-
}),
|
98
|
-
paragraphOne: /*#__PURE__*/_jsx(HeadingIcon, {
|
99
|
-
variant: "P1"
|
100
|
-
}),
|
101
|
-
paragraphTwo: /*#__PURE__*/_jsx(HeadingIcon, {
|
102
|
-
variant: "P2"
|
103
|
-
}),
|
104
|
-
paragraphThree: /*#__PURE__*/_jsx(HeadingIcon, {
|
105
|
-
variant: "P3"
|
106
|
-
}),
|
107
79
|
blockquote: /*#__PURE__*/_jsx(MdFormatQuote, {
|
108
80
|
size: 20,
|
109
81
|
fill: "#64748B",
|
@@ -76,7 +76,7 @@ const ImageSelectorStyles = theme => ({
|
|
76
76
|
background: theme?.palette?.editor?.deviderBgColor,
|
77
77
|
"@media only screen and (min-width: 899px)": {
|
78
78
|
margin: "0px 24px",
|
79
|
-
width:
|
79
|
+
width: 'calc(100% - 48px)'
|
80
80
|
}
|
81
81
|
},
|
82
82
|
"& .primaryBtn": {
|
@@ -104,6 +104,12 @@ const ImageSelectorStyles = theme => ({
|
|
104
104
|
marginRight: "8px !important"
|
105
105
|
},
|
106
106
|
"& .MuiGrid-root": {
|
107
|
+
"&::-webkit-scrollbar-thumb": {
|
108
|
+
background: `none !important`
|
109
|
+
},
|
110
|
+
"&::-webkit-scrollbar-track": {
|
111
|
+
visibility: "hidden"
|
112
|
+
},
|
107
113
|
"&::-webkit-scrollbar-thumb": {
|
108
114
|
background: `${theme?.palette?.editor?.brainPopupScroll} !important`
|
109
115
|
},
|
@@ -112,10 +118,10 @@ const ImageSelectorStyles = theme => ({
|
|
112
118
|
}
|
113
119
|
},
|
114
120
|
"& .MuiImageList-root": {
|
115
|
-
margin:
|
121
|
+
margin: '0px'
|
116
122
|
},
|
117
123
|
"& .MuiDialogContent-root": {
|
118
|
-
padding:
|
124
|
+
padding: '20px 24px 5px 24px'
|
119
125
|
}
|
120
126
|
},
|
121
127
|
titleTypo: {
|
@@ -59,6 +59,12 @@ const usePopupStyles = theme => ({
|
|
59
59
|
"& .orderedListIcon, .bulletedListTextIcon, .checkedListTextIcon, .accordianIconSvgTextFormat": {
|
60
60
|
width: "20px !important"
|
61
61
|
},
|
62
|
+
"&::-webkit-scrollbar-thumb": {
|
63
|
+
background: `none !important`
|
64
|
+
},
|
65
|
+
"&::-webkit-scrollbar-track": {
|
66
|
+
visibility: "hidden"
|
67
|
+
},
|
62
68
|
"&::-webkit-scrollbar-thumb": {
|
63
69
|
background: `${theme?.palette?.editor?.brainPopupScroll} !important`
|
64
70
|
},
|
@@ -142,13 +148,13 @@ const usePopupStyles = theme => ({
|
|
142
148
|
}
|
143
149
|
},
|
144
150
|
"& .calederIconSvg": {
|
145
|
-
|
151
|
+
'& rect': {
|
146
152
|
stroke: theme?.palette?.editor?.closeButtonSvgStroke
|
147
153
|
},
|
148
|
-
|
154
|
+
'& .strokePath': {
|
149
155
|
stroke: theme?.palette?.editor?.closeButtonSvgStroke
|
150
156
|
},
|
151
|
-
|
157
|
+
'& .fillPath': {
|
152
158
|
fill: theme?.palette?.editor?.closeButtonSvgStroke
|
153
159
|
}
|
154
160
|
}
|
@@ -8,8 +8,7 @@ const AppHeaderSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path, 0];
|
@@ -28,7 +27,7 @@ const AppHeaderSettings = props => {
|
|
28
27
|
});
|
29
28
|
};
|
30
29
|
const handleClose = () => {
|
31
|
-
|
30
|
+
console.log("close");
|
32
31
|
};
|
33
32
|
return /*#__PURE__*/_jsx(Box, {
|
34
33
|
component: "div",
|
@@ -8,8 +8,7 @@ const BoxSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path];
|
@@ -28,7 +27,7 @@ const BoxSettings = props => {
|
|
28
27
|
});
|
29
28
|
};
|
30
29
|
const handleClose = () => {
|
31
|
-
|
30
|
+
console.log("close");
|
32
31
|
};
|
33
32
|
return /*#__PURE__*/_jsx(Box, {
|
34
33
|
component: "div",
|
@@ -8,8 +8,7 @@ const ButtonSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path, 0];
|
@@ -29,7 +28,7 @@ const ButtonSettings = props => {
|
|
29
28
|
});
|
30
29
|
};
|
31
30
|
const handleClose = () => {
|
32
|
-
|
31
|
+
console.log("close");
|
33
32
|
};
|
34
33
|
return /*#__PURE__*/_jsx(Box, {
|
35
34
|
component: "div",
|
@@ -8,8 +8,7 @@ const CodeSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path, 0];
|
@@ -28,7 +27,7 @@ const CodeSettings = props => {
|
|
28
27
|
});
|
29
28
|
};
|
30
29
|
const handleClose = () => {
|
31
|
-
|
30
|
+
console.log("close");
|
32
31
|
};
|
33
32
|
return /*#__PURE__*/_jsx(Box, {
|
34
33
|
component: "div",
|
@@ -12,8 +12,7 @@ const FormSettings = props => {
|
|
12
12
|
const {
|
13
13
|
editor,
|
14
14
|
path,
|
15
|
-
customProps
|
16
|
-
onClose
|
15
|
+
customProps
|
17
16
|
} = props;
|
18
17
|
const item_path = path?.split("|").map(m => parseInt(m));
|
19
18
|
const element_path = [...item_path];
|
@@ -56,14 +55,13 @@ const FormSettings = props => {
|
|
56
55
|
}
|
57
56
|
};
|
58
57
|
const handleClose = () => {
|
59
|
-
|
58
|
+
console.log("close");
|
60
59
|
};
|
61
60
|
const muiTheme = createTheme({
|
62
61
|
components: {
|
63
62
|
MuiAccordion: {
|
64
63
|
styleOverrides: {
|
65
64
|
root: {
|
66
|
-
background: theme?.palette?.editor?.miniToolBarBackground,
|
67
65
|
"& .MuiAccordionSummary-root": {
|
68
66
|
flexDirection: "row-reverse",
|
69
67
|
"& .MuiSvgIcon-root": {
|
@@ -8,8 +8,7 @@ const ImageSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path, 0];
|
@@ -28,7 +27,7 @@ const ImageSettings = props => {
|
|
28
27
|
});
|
29
28
|
};
|
30
29
|
const handleClose = () => {
|
31
|
-
|
30
|
+
console.log("close");
|
32
31
|
};
|
33
32
|
return /*#__PURE__*/_jsx(Box, {
|
34
33
|
component: "div",
|
@@ -9,8 +9,7 @@ const TableSettings = props => {
|
|
9
9
|
const {
|
10
10
|
editor,
|
11
11
|
path,
|
12
|
-
customProps
|
13
|
-
onClose
|
12
|
+
customProps
|
14
13
|
} = props;
|
15
14
|
const item_path = path?.split("|").map(m => parseInt(m));
|
16
15
|
const element_path = [...item_path, 0];
|
@@ -58,7 +57,7 @@ const TableSettings = props => {
|
|
58
57
|
}
|
59
58
|
};
|
60
59
|
const handleClose = () => {
|
61
|
-
|
60
|
+
console.log("close");
|
62
61
|
};
|
63
62
|
return /*#__PURE__*/_jsx(Box, {
|
64
63
|
component: "div",
|
@@ -8,8 +8,7 @@ const VideoSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
12
|
-
onClose
|
11
|
+
customProps
|
13
12
|
} = props;
|
14
13
|
const item_path = path?.split("|").map(m => parseInt(m));
|
15
14
|
const element_path = [...item_path, 0];
|
@@ -29,7 +28,7 @@ const VideoSettings = props => {
|
|
29
28
|
});
|
30
29
|
};
|
31
30
|
const handleClose = () => {
|
32
|
-
|
31
|
+
console.log("close");
|
33
32
|
};
|
34
33
|
return /*#__PURE__*/_jsx(Box, {
|
35
34
|
component: "div",
|
@@ -3,35 +3,24 @@ import PersonalVideoIcon from "@mui/icons-material/PersonalVideo";
|
|
3
3
|
import PhoneIphoneIcon from "@mui/icons-material/PhoneIphone";
|
4
4
|
import useSwitchViewport from "./styles";
|
5
5
|
import { useEffect } from "react";
|
6
|
-
import { useEditorContext } from "../../../hooks/useMouseMove";
|
7
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
8
7
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
9
8
|
const SwitchViewport = props => {
|
10
9
|
const {
|
11
10
|
breakpoint,
|
12
|
-
onChange
|
13
|
-
show
|
11
|
+
onChange
|
14
12
|
} = props;
|
15
13
|
const classes = useSwitchViewport();
|
16
|
-
const {
|
17
|
-
setSelectedElement,
|
18
|
-
setActiveBreakPoint
|
19
|
-
} = useEditorContext();
|
20
14
|
useEffect(() => {
|
21
|
-
|
22
|
-
setSelectedElement({});
|
15
|
+
console.log(breakpoint);
|
23
16
|
}, [breakpoint]);
|
24
17
|
return /*#__PURE__*/_jsxs(Box, {
|
25
18
|
sx: classes.root,
|
26
|
-
style: {
|
27
|
-
display: show ? "block" : "none"
|
28
|
-
},
|
29
19
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
30
20
|
title: "Desktop View",
|
31
21
|
children: /*#__PURE__*/_jsx(IconButton, {
|
32
22
|
className: `${!breakpoint || breakpoint === "lg" ? "active" : ""}`,
|
33
23
|
onClick: () => {
|
34
|
-
setActiveBreakPoint("");
|
35
24
|
onChange("");
|
36
25
|
},
|
37
26
|
children: /*#__PURE__*/_jsx(PersonalVideoIcon, {})
|
@@ -41,7 +30,6 @@ const SwitchViewport = props => {
|
|
41
30
|
children: /*#__PURE__*/_jsx(IconButton, {
|
42
31
|
className: `${breakpoint === "xs" ? "active" : ""}`,
|
43
32
|
onClick: () => {
|
44
|
-
setActiveBreakPoint("xs");
|
45
33
|
onChange("xs");
|
46
34
|
},
|
47
35
|
children: /*#__PURE__*/_jsx(PhoneIphoneIcon, {})
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { useTheme, createTheme } from "@mui/material";
|
2
|
+
import { useTheme, ThemeProvider, createTheme } from "@mui/material";
|
3
3
|
import { isStimulator, STIMULATOR_MOCK } from "../../../hooks/useBreakpoints";
|
4
|
-
import MainThemeProvider from "./MainThemeProvider";
|
5
4
|
|
6
5
|
// Custom breakpoints functions
|
7
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
@@ -52,14 +51,12 @@ const extendedTheme = prevTheme => createTheme({
|
|
52
51
|
}
|
53
52
|
});
|
54
53
|
const ViewportStimulator = ({
|
55
|
-
children
|
56
|
-
selectedTheme
|
54
|
+
children
|
57
55
|
}) => {
|
58
56
|
const theme = useTheme();
|
59
57
|
const viewportTheme = extendedTheme(theme);
|
60
|
-
return /*#__PURE__*/_jsx(
|
58
|
+
return /*#__PURE__*/_jsx(ThemeProvider, {
|
61
59
|
theme: viewportTheme,
|
62
|
-
userSelectedTheme: selectedTheme,
|
63
60
|
children: children
|
64
61
|
});
|
65
62
|
};
|
@@ -2,11 +2,10 @@ import { Transforms, Node, Path } from "slate";
|
|
2
2
|
import { ReactEditor } from "slate-react";
|
3
3
|
import { handleNegativeInteger } from "../../../utils/helper";
|
4
4
|
export const ROW_HEIGHT = 50;
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
// };
|
5
|
+
const MARGIN_OF = {
|
6
|
+
xs: 160,
|
7
|
+
lg: 490
|
8
|
+
};
|
10
9
|
|
11
10
|
/**
|
12
11
|
* This method will update the grid template rows of parent section based on height
|
@@ -1,8 +1,6 @@
|
|
1
1
|
import { Transforms, Node } from "slate";
|
2
2
|
import { ReactEditor } from "slate-react";
|
3
3
|
import { getNearestItem } from "./calculateDropItem";
|
4
|
-
import { ROW_HEIGHT, getBorderWidth } from "./gridDropItem";
|
5
|
-
import { handleNegativeInteger } from "../../../utils/helper";
|
6
4
|
const GUIDE_LINE_THRESHOLD = 5;
|
7
5
|
const GUIDE_LINE_OVERLAP_THRESHOLD = 5;
|
8
6
|
const handleMoveNode = (editor, path, newPath, {
|
@@ -250,42 +248,4 @@ export function getParentSectionPath(props, closestClass) {
|
|
250
248
|
} catch (err) {
|
251
249
|
console.log(err);
|
252
250
|
}
|
253
|
-
}
|
254
|
-
export function getAbsolutePositionX(currentEle) {
|
255
|
-
const {
|
256
|
-
left: currElementLeft
|
257
|
-
} = currentEle?.getBoundingClientRect() || {};
|
258
|
-
const parentBoxDom = currentEle?.closest(".fgi_type_box");
|
259
|
-
const relativeElementX = parentBoxDom || document.querySelector(".rnd-guideline-lv");
|
260
|
-
const {
|
261
|
-
left
|
262
|
-
} = relativeElementX?.getBoundingClientRect() || {};
|
263
|
-
const borderLeftWidth = getBorderWidth(relativeElementX, "borderLeftWidth");
|
264
|
-
const absolutePositionX = parseInt(currElementLeft - left - borderLeftWidth);
|
265
|
-
return {
|
266
|
-
absolutePositionX
|
267
|
-
};
|
268
|
-
}
|
269
|
-
export function getAbsolutePositionY(currentEle) {
|
270
|
-
const {
|
271
|
-
top: currElementTop
|
272
|
-
} = currentEle?.getBoundingClientRect() || {};
|
273
|
-
const relativeElementY = currentEle?.closest(".freegrid-container-parent");
|
274
|
-
const borderTopWidth = getBorderWidth(relativeElementY, "borderTopWidth");
|
275
|
-
const rect = relativeElementY.getBoundingClientRect();
|
276
|
-
const absolutePositionY = handleNegativeInteger(currElementTop - rect.top - borderTopWidth);
|
277
|
-
|
278
|
-
// Calculate grid position
|
279
|
-
const row = Math.floor(absolutePositionY / ROW_HEIGHT) + 1;
|
280
|
-
|
281
|
-
// Update grid area
|
282
|
-
const gridArea = `${row} / 1 / ${row + 1} / 2`;
|
283
|
-
|
284
|
-
// to calculate difference inside the grid
|
285
|
-
const marginTop = Math.abs((row - 1) * ROW_HEIGHT - absolutePositionY);
|
286
|
-
return {
|
287
|
-
absolutePositionY,
|
288
|
-
gridArea,
|
289
|
-
marginTop
|
290
|
-
};
|
291
251
|
}
|