@flozy/editor 4.0.1 → 4.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/ChatEditor.js +3 -19
- package/dist/Editor/CommonEditor.js +181 -109
- package/dist/Editor/Editor.css +31 -3
- package/dist/Editor/Elements/AI/AIInput.js +31 -33
- package/dist/Editor/Elements/AI/CustomSelect.js +19 -12
- package/dist/Editor/Elements/AI/PopoverAIInput.js +73 -97
- package/dist/Editor/Elements/AI/Styles.js +2 -2
- package/dist/Editor/Elements/AI/VoiceToText/AudioWave.js +73 -0
- package/dist/Editor/Elements/AI/VoiceToText/index.js +184 -0
- package/dist/Editor/Elements/AI/VoiceToText/style.js +40 -0
- package/dist/Editor/Elements/AI/helper.js +5 -3
- package/dist/Editor/Elements/Accordion/Accordion.js +1 -1
- package/dist/Editor/Elements/Accordion/AccordionSummary.js +5 -10
- package/dist/Editor/Elements/AppHeader/AppHeader.js +26 -4
- package/dist/Editor/Elements/Button/EditorButton.js +28 -16
- package/dist/Editor/Elements/Carousel/CarouselButton.js +2 -1
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +60 -15
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +4 -4
- package/dist/Editor/Elements/Color Picker/Styles.js +3 -1
- package/dist/Editor/Elements/Emoji/EmojiPicker.js +2 -4
- package/dist/Editor/Elements/Form/Workflow/FormWorkflow.js +12 -3
- package/dist/Editor/Elements/Form/Workflow/UserInputs.js +2 -1
- package/dist/Editor/Elements/Grid/Grid.js +27 -3
- package/dist/Editor/Elements/Grid/GridItem.js +3 -1
- package/dist/Editor/Elements/Link/Link.js +6 -1
- package/dist/Editor/Elements/Link/LinkButton.js +4 -2
- package/dist/Editor/Elements/Link/LinkPopup.js +73 -14
- package/dist/Editor/Elements/Link/LinkPopupStyles.js +28 -0
- package/dist/Editor/Elements/List/CheckList.js +1 -2
- package/dist/Editor/Elements/NewLine/NewLineButton.js +2 -1
- package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +3 -3
- package/dist/Editor/Elements/Redo/RedoButton.js +14 -0
- package/dist/Editor/Elements/Signature/Signature.css +13 -6
- package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +2 -1
- package/dist/Editor/Elements/Signature/SignaturePopup.js +185 -30
- package/dist/Editor/Elements/SimpleText/index.js +11 -1
- package/dist/Editor/Elements/SimpleText/style.js +1 -1
- package/dist/Editor/Elements/Table/Styles.js +23 -1
- package/dist/Editor/Elements/Table/Table.js +2 -1
- package/dist/Editor/Elements/Table/TableCell.js +69 -7
- package/dist/Editor/Elements/TableContextMenu/TableContextMenu.js +1 -0
- package/dist/Editor/Elements/Undo/UndoButton.js +14 -0
- package/dist/Editor/MiniEditor.js +3 -1
- package/dist/Editor/Styles/EditorStyles.js +1 -1
- package/dist/Editor/Toolbar/Basic/index.js +4 -2
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +31 -20
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +36 -5
- package/dist/Editor/Toolbar/Mini/Options/Options.js +10 -0
- package/dist/Editor/Toolbar/Mini/Styles.js +7 -0
- package/dist/Editor/Toolbar/PopupTool/ButtonTemplatesCard.js +12 -13
- package/dist/Editor/Toolbar/PopupTool/FullViewCard.js +12 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/CustomSelectTool.js +3 -0
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +4 -11
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectSuperSubscript.js +59 -0
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +213 -86
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +4 -2
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +123 -44
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +106 -44
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +438 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +7 -6
- package/dist/Editor/Toolbar/toolbarGroups.js +53 -11
- package/dist/Editor/assets/svg/AIIcons.js +153 -1
- package/dist/Editor/assets/svg/AddTemplateIcon.js +13 -10
- package/dist/Editor/assets/svg/RedoIcon.js +27 -0
- package/dist/Editor/assets/svg/SettingsIcon.js +28 -0
- package/dist/Editor/assets/svg/TextIcon.js +8 -5
- package/dist/Editor/assets/svg/ThemeIcons.js +291 -0
- package/dist/Editor/assets/svg/UndoIcon.js +27 -0
- package/dist/Editor/common/ColorPickerButton.js +26 -18
- package/dist/Editor/common/CustomColorPicker/index.js +106 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog/index.js +94 -0
- package/dist/Editor/common/CustomDialog/style.js +67 -0
- package/dist/Editor/common/CustomSelect.js +33 -0
- package/dist/Editor/common/DnD/DragHandleButton.js +56 -47
- package/dist/Editor/common/EditorIcons.js +7 -7
- package/dist/Editor/common/Icon.js +64 -25
- package/dist/Editor/common/ImageList.js +16 -3
- package/dist/Editor/common/ImageSelector/ImageSelector.js +30 -9
- package/dist/Editor/common/ImageSelector/Styles.js +2 -1
- package/dist/Editor/common/LinkSettings/NavComponents.js +5 -2
- package/dist/Editor/common/LinkSettings/index.js +4 -2
- package/dist/Editor/common/LinkSettings/navOptions.js +7 -2
- package/dist/Editor/common/LinkSettings/style.js +11 -8
- package/dist/Editor/common/MentionsPopup/Styles.js +1 -1
- package/dist/Editor/common/Section/index.js +57 -7
- package/dist/Editor/common/Section/styles.js +11 -0
- package/dist/Editor/common/Shorthands/elements.js +63 -9
- package/dist/Editor/common/StyleBuilder/accordionTitleBtnStyle.js +1 -2
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +13 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +1 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +29 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +13 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +14 -4
- package/dist/Editor/common/StyleBuilder/index.js +1 -1
- package/dist/Editor/common/iconListV2.js +843 -0
- package/dist/Editor/common/iconslist.js +0 -31
- package/dist/Editor/commonStyle.js +6 -0
- package/dist/Editor/helper/index.js +0 -22
- package/dist/Editor/helper/theme.js +189 -3
- package/dist/Editor/hooks/useEditorTheme.js +139 -0
- package/dist/Editor/hooks/useMouseMove.js +4 -1
- package/dist/Editor/hooks/useWindowMessage.js +10 -7
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +1 -1
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +50 -173
- package/dist/Editor/theme/index.js +144 -0
- package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
- package/dist/Editor/themeSettings/buttons/index.js +290 -0
- package/dist/Editor/themeSettings/buttons/style.js +21 -0
- package/dist/Editor/themeSettings/colorTheme/index.js +290 -0
- package/dist/Editor/themeSettings/colorTheme/style.js +77 -0
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +123 -0
- package/dist/Editor/themeSettings/fonts/index.js +213 -0
- package/dist/Editor/themeSettings/fonts/style.js +44 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +320 -0
- package/dist/Editor/themeSettings/style.js +152 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +356 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +190 -0
- package/dist/Editor/themeSettingsAI/style.js +247 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +169 -27
- package/dist/Editor/utils/button.js +1 -17
- package/dist/Editor/utils/events.js +54 -2
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/helper.js +31 -2
- package/dist/Editor/utils/table.js +51 -43
- package/package.json +4 -3
@@ -19,6 +19,9 @@ const CustomSelectTool = ({
|
|
19
19
|
e.preventDefault();
|
20
20
|
setAnchorEl(e.currentTarget);
|
21
21
|
},
|
22
|
+
style: {
|
23
|
+
margin: "0px"
|
24
|
+
},
|
22
25
|
children: [selected?.label || selected?.title, " ", /*#__PURE__*/_jsx(DownArrowIcon, {})]
|
23
26
|
}), /*#__PURE__*/_jsx(Popover, {
|
24
27
|
open: open,
|
@@ -1,10 +1,9 @@
|
|
1
1
|
import { useEffect, useRef, useState } from "react";
|
2
|
-
import { activeMark, addMarkData
|
2
|
+
import { activeMark, addMarkData } from "../../../utils/SlateUtilityFunctions";
|
3
3
|
import { Button, IconButton, Popover, TextField } from "@mui/material";
|
4
4
|
import DownArrowIcon from "../../../assets/svg/DownArrowIcon";
|
5
5
|
import useWindowResize from "../../../hooks/useWindowResize";
|
6
|
-
import { BREAKPOINTS_DEVICES, getBreakPointsValue } from "../../../helper/theme";
|
7
|
-
import { headingMap, sizeMap } from "../../../utils/font";
|
6
|
+
import { BREAKPOINTS_DEVICES, getBreakPointsValue, getTextSizeVal } from "../../../helper/theme";
|
8
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
8
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
9
|
const fontSizeOptions = [8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 26, 32, 36, 40, 48, 64, 96, 128];
|
@@ -19,7 +18,7 @@ function SelectFontSize({
|
|
19
18
|
const containerRef = useRef();
|
20
19
|
const [size] = useWindowResize();
|
21
20
|
const val = activeMark(editor, format);
|
22
|
-
const value =
|
21
|
+
const value = getTextSizeVal(editor);
|
23
22
|
const timerRef = useRef();
|
24
23
|
const updateMarkData = newVal => {
|
25
24
|
let upData = {
|
@@ -53,13 +52,7 @@ function SelectFontSize({
|
|
53
52
|
};
|
54
53
|
const getSizeVal = () => {
|
55
54
|
try {
|
56
|
-
|
57
|
-
Object.entries(headingMap).forEach(([format, value]) => {
|
58
|
-
if (isBlockActive(editor, format) && isNaN(parseInt(size))) {
|
59
|
-
size = value;
|
60
|
-
}
|
61
|
-
});
|
62
|
-
return parseInt(size);
|
55
|
+
return parseInt(value);
|
63
56
|
} catch (err) {
|
64
57
|
return "";
|
65
58
|
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import { useMemo } from "react";
|
2
|
+
import { activeMark, toggleMark } from "../../../utils/SlateUtilityFunctions";
|
3
|
+
import CustomSelectTool from "./CustomSelectTool";
|
4
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
5
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
6
|
+
function Label({
|
7
|
+
label,
|
8
|
+
type
|
9
|
+
}) {
|
10
|
+
return /*#__PURE__*/_jsxs("span", {
|
11
|
+
children: [/*#__PURE__*/_jsx("strong", {
|
12
|
+
children: label
|
13
|
+
}), " ", type]
|
14
|
+
});
|
15
|
+
}
|
16
|
+
const superSubscriptOptions = [{
|
17
|
+
id: 9,
|
18
|
+
format: "superscript",
|
19
|
+
type: "mark",
|
20
|
+
title: /*#__PURE__*/_jsx(Label, {
|
21
|
+
label: "X²",
|
22
|
+
type: "Superscript"
|
23
|
+
}),
|
24
|
+
label: "X²",
|
25
|
+
group: "superSubscript",
|
26
|
+
value: "superscript"
|
27
|
+
}, {
|
28
|
+
id: 10,
|
29
|
+
format: "subscript",
|
30
|
+
type: "mark",
|
31
|
+
title: /*#__PURE__*/_jsx(Label, {
|
32
|
+
label: "X₂",
|
33
|
+
type: "Subscript"
|
34
|
+
}),
|
35
|
+
label: "X₂",
|
36
|
+
group: "superSubscript",
|
37
|
+
value: "subscript"
|
38
|
+
}];
|
39
|
+
function SelectSuperSubscript({
|
40
|
+
editor,
|
41
|
+
classes,
|
42
|
+
closeMainPopup
|
43
|
+
}) {
|
44
|
+
const selectedMark = useMemo(() => {
|
45
|
+
return superSubscriptOptions.find(option => activeMark(editor, option.format));
|
46
|
+
}, [editor]);
|
47
|
+
const onChange = format => {
|
48
|
+
toggleMark(editor, format);
|
49
|
+
closeMainPopup();
|
50
|
+
};
|
51
|
+
return /*#__PURE__*/_jsx(CustomSelectTool, {
|
52
|
+
options: superSubscriptOptions,
|
53
|
+
editor: editor,
|
54
|
+
onChange: onChange,
|
55
|
+
value: selectedMark?.value || "superscript",
|
56
|
+
classes: classes
|
57
|
+
});
|
58
|
+
}
|
59
|
+
export default SelectSuperSubscript;
|
@@ -2,8 +2,11 @@ import { useMemo } from "react";
|
|
2
2
|
import { activeMark, addMarkData, isBlockActive, toggleBlock } from "../../../utils/SlateUtilityFunctions";
|
3
3
|
import CustomSelectTool from "./CustomSelectTool";
|
4
4
|
import useWindowResize from "../../../hooks/useWindowResize";
|
5
|
-
import { BREAKPOINTS_DEVICES, getBreakPointsValue } from "../../../helper/theme";
|
5
|
+
import { BREAKPOINTS_DEVICES, getBreakPointsValue, isTextCustomized as isCustomized, textThemeFields as themeFields } from "../../../helper/theme";
|
6
6
|
import { sizeMap } from "../../../utils/font";
|
7
|
+
import { Editor } from "slate";
|
8
|
+
import { MenuItem, Select } from "@mui/material";
|
9
|
+
import { useEditorTheme } from "../../../hooks/useEditorTheme";
|
7
10
|
import { jsx as _jsx } from "react/jsx-runtime";
|
8
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
9
12
|
function Label({
|
@@ -17,93 +20,194 @@ function Label({
|
|
17
20
|
});
|
18
21
|
}
|
19
22
|
function DisplayHeaderLabel({
|
20
|
-
type
|
23
|
+
type,
|
24
|
+
isCustomized,
|
25
|
+
isPara = false
|
21
26
|
}) {
|
22
27
|
return /*#__PURE__*/_jsxs("div", {
|
23
|
-
children: ["H", /*#__PURE__*/_jsx("sub", {
|
28
|
+
children: [isCustomized ? "*" : "", isPara ? "P" : "H", /*#__PURE__*/_jsx("sub", {
|
24
29
|
children: type
|
25
30
|
})]
|
26
31
|
});
|
27
32
|
}
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
},
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
type: "
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
33
|
+
function getTypographyOptions(isCustomized) {
|
34
|
+
const typographyOptions = [{
|
35
|
+
id: 11,
|
36
|
+
format: "headingOne",
|
37
|
+
type: "block",
|
38
|
+
title: /*#__PURE__*/_jsx(Label, {
|
39
|
+
label: "H1",
|
40
|
+
type: "Heading"
|
41
|
+
}),
|
42
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
43
|
+
type: 1,
|
44
|
+
isCustomized: isCustomized
|
45
|
+
}),
|
46
|
+
group: "typography",
|
47
|
+
value: "headingOne"
|
48
|
+
}, {
|
49
|
+
id: 12,
|
50
|
+
format: "headingTwo",
|
51
|
+
type: "block",
|
52
|
+
title: /*#__PURE__*/_jsx(Label, {
|
53
|
+
label: "H2",
|
54
|
+
type: "Heading"
|
55
|
+
}),
|
56
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
57
|
+
type: 2,
|
58
|
+
isCustomized: isCustomized
|
59
|
+
}),
|
60
|
+
group: "typography",
|
61
|
+
value: "headingTwo"
|
62
|
+
}, {
|
63
|
+
id: 13,
|
64
|
+
format: "headingThree",
|
65
|
+
type: "block",
|
66
|
+
title: /*#__PURE__*/_jsx(Label, {
|
67
|
+
label: "H3",
|
68
|
+
type: "Heading"
|
69
|
+
}),
|
70
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
71
|
+
type: 3,
|
72
|
+
isCustomized: isCustomized
|
73
|
+
}),
|
74
|
+
group: "typography",
|
75
|
+
value: "headingThree"
|
76
|
+
}, {
|
77
|
+
id: 17,
|
78
|
+
format: "headingFour",
|
79
|
+
type: "block",
|
80
|
+
title: /*#__PURE__*/_jsx(Label, {
|
81
|
+
label: "H4",
|
82
|
+
type: "Heading"
|
83
|
+
}),
|
84
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
85
|
+
type: 4,
|
86
|
+
isCustomized: isCustomized
|
87
|
+
}),
|
88
|
+
group: "typography",
|
89
|
+
value: "headingFour"
|
90
|
+
}, {
|
91
|
+
id: 18,
|
92
|
+
format: "headingFive",
|
93
|
+
type: "block",
|
94
|
+
title: /*#__PURE__*/_jsx(Label, {
|
95
|
+
label: "H5",
|
96
|
+
type: "Heading"
|
97
|
+
}),
|
98
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
99
|
+
type: 5,
|
100
|
+
isCustomized: isCustomized
|
101
|
+
}),
|
102
|
+
group: "typography",
|
103
|
+
value: "headingFive"
|
104
|
+
}, {
|
105
|
+
id: 19,
|
106
|
+
format: "headingSix",
|
107
|
+
type: "block",
|
108
|
+
title: /*#__PURE__*/_jsx(Label, {
|
109
|
+
label: "H6",
|
110
|
+
type: "Heading"
|
111
|
+
}),
|
112
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
113
|
+
type: 6,
|
114
|
+
isCustomized: isCustomized
|
115
|
+
}),
|
116
|
+
group: "typography",
|
117
|
+
value: "headingSix"
|
118
|
+
}, {
|
119
|
+
id: 20,
|
120
|
+
format: "paragraphOne",
|
121
|
+
type: "block",
|
122
|
+
title: /*#__PURE__*/_jsx(Label, {
|
123
|
+
label: "P1",
|
124
|
+
type: "Paragraph"
|
125
|
+
}),
|
126
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
127
|
+
type: 1,
|
128
|
+
isCustomized: isCustomized,
|
129
|
+
isPara: true
|
130
|
+
}),
|
131
|
+
group: "typography",
|
132
|
+
value: "paragraphOne"
|
133
|
+
}, {
|
134
|
+
id: 21,
|
135
|
+
format: "paragraphTwo",
|
136
|
+
type: "block",
|
137
|
+
title: /*#__PURE__*/_jsx(Label, {
|
138
|
+
label: "P2",
|
139
|
+
type: "Paragraph"
|
140
|
+
}),
|
141
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
142
|
+
type: 2,
|
143
|
+
isCustomized: isCustomized,
|
144
|
+
isPara: true
|
145
|
+
}),
|
146
|
+
group: "typography",
|
147
|
+
value: "paragraphTwo"
|
148
|
+
}, {
|
149
|
+
id: 22,
|
150
|
+
format: "paragraphThree",
|
151
|
+
type: "block",
|
152
|
+
title: /*#__PURE__*/_jsx(Label, {
|
153
|
+
label: "P3",
|
154
|
+
type: "Paragraph"
|
155
|
+
}),
|
156
|
+
label: /*#__PURE__*/_jsx(DisplayHeaderLabel, {
|
157
|
+
type: 3,
|
158
|
+
isCustomized: isCustomized,
|
159
|
+
isPara: true
|
160
|
+
}),
|
161
|
+
group: "typography",
|
162
|
+
value: "paragraphThree"
|
163
|
+
}, {
|
164
|
+
id: 14,
|
165
|
+
format: "fontSize",
|
166
|
+
type: "mark",
|
167
|
+
title: /*#__PURE__*/_jsx(Label, {
|
168
|
+
label: "L",
|
169
|
+
type: "Large"
|
170
|
+
}),
|
72
171
|
label: "L",
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
172
|
+
group: "typography",
|
173
|
+
value: "huge"
|
174
|
+
}, {
|
175
|
+
id: 15,
|
176
|
+
format: "fontSize",
|
177
|
+
type: "mark",
|
178
|
+
title: /*#__PURE__*/_jsx(Label, {
|
179
|
+
label: "M",
|
180
|
+
type: "Medium"
|
181
|
+
}),
|
83
182
|
label: "M",
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
183
|
+
group: "typography",
|
184
|
+
value: "medium"
|
185
|
+
}, {
|
186
|
+
id: 16,
|
187
|
+
format: "fontSize",
|
188
|
+
type: "mark",
|
189
|
+
title: /*#__PURE__*/_jsx(Label, {
|
190
|
+
label: "S",
|
191
|
+
type: "Small"
|
192
|
+
}),
|
94
193
|
label: "S",
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
}];
|
194
|
+
group: "typography",
|
195
|
+
value: "small"
|
196
|
+
}];
|
197
|
+
return typographyOptions;
|
198
|
+
}
|
101
199
|
function SelectTypography({
|
102
200
|
editor,
|
103
201
|
classes,
|
104
|
-
closeMainPopup
|
202
|
+
closeMainPopup,
|
203
|
+
type
|
105
204
|
}) {
|
106
205
|
const [size] = useWindowResize();
|
206
|
+
const {
|
207
|
+
theme
|
208
|
+
} = useEditorTheme();
|
209
|
+
const isTextCustomized = theme?.id ? isCustomized(editor) : false;
|
210
|
+
const typographyOptions = getTypographyOptions(isTextCustomized);
|
107
211
|
const updateMarkData = newVal => {
|
108
212
|
const val = activeMark(editor, "fontSize");
|
109
213
|
let upData = {
|
@@ -148,26 +252,49 @@ function SelectTypography({
|
|
148
252
|
});
|
149
253
|
}, [typographyOptions, activeMark, isBlockActive, editor]);
|
150
254
|
const onChange = (format, option) => {
|
151
|
-
// add/reset block elements
|
152
|
-
toggleBlock(editor, format);
|
153
255
|
if (option.type === "block") {
|
154
|
-
|
155
|
-
|
156
|
-
format: "fontSize",
|
157
|
-
value: {}
|
256
|
+
themeFields.forEach(field => {
|
257
|
+
Editor.removeMark(editor, field);
|
158
258
|
});
|
259
|
+
|
260
|
+
// add/reset block elements
|
261
|
+
toggleBlock(editor, format);
|
159
262
|
} else if (option.type === "mark") {
|
160
263
|
const size = sizeMap[option.value] || "";
|
161
264
|
const [sizeInNumber] = size.split("px");
|
162
265
|
updateMarkData(Number(sizeInNumber));
|
163
266
|
}
|
164
267
|
};
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
268
|
+
const typographyValue = selectedBlock?.value || "headingOne";
|
269
|
+
if (type === "miniToolBar") {
|
270
|
+
return /*#__PURE__*/_jsx(CustomSelectTool, {
|
271
|
+
options: typographyOptions,
|
272
|
+
editor: editor,
|
273
|
+
onChange: onChange,
|
274
|
+
value: typographyValue,
|
275
|
+
classes: classes
|
276
|
+
});
|
277
|
+
}
|
278
|
+
return /*#__PURE__*/_jsx(Select, {
|
279
|
+
value: typographyValue,
|
280
|
+
className: "editor-dd",
|
281
|
+
onChange: e => {
|
282
|
+
const {
|
283
|
+
value
|
284
|
+
} = e.target;
|
285
|
+
const option = typographyOptions?.find(o => o.value === value);
|
286
|
+
onChange(value, option);
|
287
|
+
},
|
288
|
+
style: {
|
289
|
+
width: "100%",
|
290
|
+
height: "36px",
|
291
|
+
borderRadius: "10px",
|
292
|
+
fontSize: "14px"
|
293
|
+
},
|
294
|
+
children: typographyOptions.map((item, index) => /*#__PURE__*/_jsxs(MenuItem, {
|
295
|
+
value: item.value,
|
296
|
+
children: [item.title, " ", isTextCustomized && item.value === typographyValue ? " *" : ""]
|
297
|
+
}, index))
|
171
298
|
});
|
172
299
|
}
|
173
300
|
export default SelectTypography;
|
@@ -53,7 +53,8 @@ const MiniTextFormat = props => {
|
|
53
53
|
children: [customProps?.hideTools?.includes("infinityAI") ? null : /*#__PURE__*/_jsx(InfinityAITool, {}), /*#__PURE__*/_jsx(SelectTypography, {
|
54
54
|
classes: classes,
|
55
55
|
editor: editor,
|
56
|
-
closeMainPopup: closeMainPopup
|
56
|
+
closeMainPopup: closeMainPopup,
|
57
|
+
type: "miniToolBar"
|
57
58
|
}), /*#__PURE__*/_jsx("div", {
|
58
59
|
className: "verticalLine"
|
59
60
|
}), /*#__PURE__*/_jsx(SelectList, {
|
@@ -120,7 +121,8 @@ const MiniTextFormat = props => {
|
|
120
121
|
onClose: () => setAnchorEl(null)
|
121
122
|
}), /*#__PURE__*/_jsx(TextFormat, {
|
122
123
|
editor: editor,
|
123
|
-
classes: classes
|
124
|
+
classes: classes,
|
125
|
+
closeMainPopup: closeMainPopup
|
124
126
|
})]
|
125
127
|
})
|
126
128
|
})
|