@flozy/editor 10.4.4 → 10.4.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.
- package/dist/Editor/ChatEditor.js +17 -16
- package/dist/Editor/CommonEditor.js +131 -16
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +46 -8
- package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
- package/dist/Editor/Elements/Accordion/Accordion.js +46 -9
- package/dist/Editor/Elements/Accordion/AccordionSummary.js +1 -23
- package/dist/Editor/Elements/AppHeader/AppHeader.js +10 -5
- package/dist/Editor/Elements/Button/EditorButton.js +27 -9
- package/dist/Editor/Elements/Carousel/CarouselItem.js +2 -1
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
- package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
- package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
- package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +27 -26
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +5 -5
- package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +10 -4
- package/dist/Editor/Elements/Embed/Video.js +1 -1
- package/dist/Editor/Elements/Form/Form.js +3 -3
- package/dist/Editor/Elements/Form/FormElements/FormTextArea.js +0 -1
- package/dist/Editor/Elements/Form/FormField.js +3 -2
- package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +35 -31
- package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +7 -4
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +1 -0
- package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -7
- package/dist/Editor/Elements/FreeGrid/Options/sectionItemOptions.js +1 -1
- package/dist/Editor/Elements/FreeGrid/helper.js +115 -0
- package/dist/Editor/Elements/FreeGrid/styles.js +14 -0
- package/dist/Editor/Elements/Grid/Grid.js +14 -2
- package/dist/Editor/Elements/Grid/GridItem.js +1 -1
- package/dist/Editor/Elements/Signature/Signature.css +2 -1
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +18 -5
- package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +16 -3
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/DragButton.js +0 -1
- package/dist/Editor/Elements/Table/Draggable.js +6 -2
- package/dist/Editor/Elements/Table/Styles.js +7 -0
- package/dist/Editor/Elements/Table/Table.js +3 -3
- package/dist/Editor/Elements/Table/TableCell.js +24 -5
- package/dist/Editor/Elements/Title/title.js +6 -6
- package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
- package/dist/Editor/MiniEditor.js +2 -1
- package/dist/Editor/Styles/EditorStyles.js +5 -5
- package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
- package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
- package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +2 -1
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +58 -10
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/BackIcon.js +18 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
- package/dist/Editor/common/Checkbox/index.js +46 -0
- package/dist/Editor/common/Checkbox/styles.js +45 -0
- package/dist/Editor/common/ColorPickerButton.js +41 -16
- package/dist/Editor/common/CustomColorPicker/index.js +130 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog2/index.js +94 -0
- package/dist/Editor/common/CustomDialog2/style.js +67 -0
- package/dist/Editor/common/CustomSelect.js +43 -0
- package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
- package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
- package/dist/Editor/common/Icon.js +28 -0
- package/dist/Editor/common/ImageSelector/ImageSelector.js +2 -2
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/LinkSettings/NavComponents.js +45 -65
- package/dist/Editor/common/LinkSettings/index.js +14 -28
- package/dist/Editor/common/LinkSettings/navOptions.js +2 -2
- package/dist/Editor/common/LinkSettings/style.js +164 -244
- package/dist/Editor/common/MentionsPopup/index.js +4 -1
- package/dist/Editor/common/RadioGroup/index.js +48 -0
- package/dist/Editor/common/RadioGroup/styles.js +29 -0
- package/dist/Editor/common/RnD/ElementOptions/Actions.js +4 -5
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Signature.js +4 -3
- package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
- package/dist/Editor/common/RnD/ElementSettings/styles.js +0 -1
- package/dist/Editor/common/RnD/OptionsPopup/style.js +0 -1
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +11 -2
- package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
- package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +28 -19
- package/dist/Editor/common/RnD/Utils/index.js +3 -1
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +42 -58
- package/dist/Editor/common/RnD/VirtualElement/helper.js +323 -132
- package/dist/Editor/common/RnD/VirtualElement/styles.js +16 -0
- package/dist/Editor/common/RnD/index.js +67 -38
- package/dist/Editor/common/Select/index.js +44 -7
- package/dist/Editor/common/Select/styles.js +30 -2
- package/dist/Editor/common/Shorthands/elements.js +54 -0
- package/dist/Editor/common/StyleBuilder/accordionTitleBtnStyle.js +2 -2
- package/dist/Editor/common/StyleBuilder/accordionTitleStyle.js +12 -9
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
- package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +4 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/embedUpload.js +115 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
- package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +3 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
- package/dist/Editor/common/SwipeableDrawer/style.js +14 -12
- package/dist/Editor/common/Uploader.js +16 -0
- package/dist/Editor/common/iconListV2.js +76 -0
- package/dist/Editor/common/iconslist.js +21 -0
- package/dist/Editor/commonStyle.js +116 -61
- package/dist/Editor/helper/index.js +5 -1
- package/dist/Editor/helper/textIndeces.js +58 -0
- package/dist/Editor/helper/theme.js +203 -2
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +9 -3
- package/dist/Editor/hooks/useTable.js +5 -4
- package/dist/Editor/hooks/useThemeValues.js +63 -0
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +3 -1
- package/dist/Editor/plugins/withTable.js +1 -1
- package/dist/Editor/theme/ThemeList.js +50 -173
- package/dist/Editor/theme/index.js +149 -0
- package/dist/Editor/themeSettings/ActiveTheme.js +82 -0
- package/dist/Editor/themeSettings/buttons/index.js +300 -0
- package/dist/Editor/themeSettings/buttons/style.js +23 -0
- package/dist/Editor/themeSettings/colorTheme/index.js +310 -0
- package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
- package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
- package/dist/Editor/themeSettings/fonts/index.js +240 -0
- package/dist/Editor/themeSettings/fonts/style.js +62 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +380 -0
- package/dist/Editor/themeSettings/style.js +299 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
- package/dist/Editor/themeSettingsAI/style.js +332 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +161 -37
- package/dist/Editor/utils/accordion.js +14 -4
- package/dist/Editor/utils/button.js +1 -17
- package/dist/Editor/utils/customHooks/useTableResize.js +49 -9
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/events.js +50 -6
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/formfield.js +1 -0
- package/dist/Editor/utils/helper.js +210 -26
- package/dist/Editor/utils/insertAppHeader.js +1 -1
- package/dist/Editor/utils/signature.js +2 -9
- package/dist/Editor/utils/updateFormName.js +22 -0
- package/package.json +4 -4
@@ -1,36 +1,71 @@
|
|
1
|
-
const ButtonNavSettingsStyles = theme =>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
const ButtonNavSettingsStyles = theme => {
|
2
|
+
const {
|
3
|
+
editor,
|
4
|
+
grey
|
5
|
+
} = theme?.palette || {};
|
6
|
+
const {
|
7
|
+
borderColor,
|
8
|
+
background,
|
9
|
+
textColor,
|
10
|
+
activeColor,
|
11
|
+
miniToolBarBackground
|
12
|
+
} = editor || {};
|
13
|
+
const commonContainerStyle = {
|
14
|
+
backgroundColor: miniToolBarBackground,
|
15
|
+
"& .MuiTypography-root": {
|
16
|
+
color: textColor
|
8
17
|
},
|
9
|
-
"& .
|
18
|
+
"& .link-settings-title": {
|
19
|
+
fontSize: "18px",
|
20
|
+
padding: "12px 0px",
|
10
21
|
fontWeight: 600,
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
borderRadius: "20px !important",
|
23
|
-
backgroundColor: `${theme?.palette?.editor?.miniToolBarBackground} !important`,
|
24
|
-
border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
|
22
|
+
color: theme?.palette?.editor?.textColor,
|
23
|
+
borderRadius: "8px",
|
24
|
+
marginTop: "2px",
|
25
|
+
"& li": {
|
26
|
+
padding: "6px 16px",
|
27
|
+
margin: "5px !important",
|
28
|
+
borderRadius: "4px !important"
|
29
|
+
},
|
30
|
+
"& .MuiList-root": {
|
31
|
+
padding: "0px"
|
32
|
+
},
|
25
33
|
"& .MuiTypography-root": {
|
26
|
-
|
34
|
+
fontSize: "12px !important",
|
35
|
+
fontWeight: 500,
|
36
|
+
fontFamily: "'Inter',sans-serif"
|
27
37
|
},
|
28
|
-
"& .
|
38
|
+
"& .Mui-selected": {
|
39
|
+
background: theme?.palette?.editor?.menuOptionSelectedOption,
|
29
40
|
color: theme?.palette?.editor?.textColor
|
41
|
+
}
|
42
|
+
},
|
43
|
+
"& .MuiInputBase-root, fieldset": {
|
44
|
+
background: theme?.palette?.editor?.inputFieldBgColor,
|
45
|
+
borderRadius: "8px",
|
46
|
+
// border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`,
|
47
|
+
"& fieldset": {
|
48
|
+
// border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
|
49
|
+
background: "transparent",
|
50
|
+
borderRadius: "8px"
|
30
51
|
},
|
31
|
-
"&
|
32
|
-
|
33
|
-
|
52
|
+
"& input": {
|
53
|
+
border: `1px solid transparent`,
|
54
|
+
background: theme?.palette?.editor?.inputFieldBgColor,
|
55
|
+
borderRadius: "8px",
|
56
|
+
color: theme?.palette?.editor?.textColor
|
57
|
+
}
|
58
|
+
},
|
59
|
+
"& .MuiSvgIcon-root": {
|
60
|
+
color: textColor
|
61
|
+
},
|
62
|
+
"& .MuiFormLabel-root": {
|
63
|
+
color: textColor,
|
64
|
+
backgroundColor: background
|
65
|
+
},
|
66
|
+
"& .Mui-checked": {
|
67
|
+
"& .MuiSvgIcon-root": {
|
68
|
+
color: `${activeColor} !important`
|
34
69
|
}
|
35
70
|
},
|
36
71
|
"& .dialog-title": {
|
@@ -60,47 +95,6 @@ const ButtonNavSettingsStyles = theme => ({
|
|
60
95
|
borderRadius: "8px",
|
61
96
|
color: theme?.palette?.editor?.textColor
|
62
97
|
}
|
63
|
-
},
|
64
|
-
"& .radioBtnGrp": {
|
65
|
-
paddingRight: "0px",
|
66
|
-
paddingLeft: "0px"
|
67
|
-
}
|
68
|
-
},
|
69
|
-
"& .MuiFormControlLabel-root": {
|
70
|
-
"& .MuiCheckbox-root": {
|
71
|
-
"& svg": {
|
72
|
-
color: `${theme?.palette?.editor?.radioBtnBorder}`
|
73
|
-
}
|
74
|
-
}
|
75
|
-
},
|
76
|
-
"& .ccheckbox-primary": {
|
77
|
-
padding: "0px",
|
78
|
-
"& .MuiCheckbox-root": {
|
79
|
-
padding: "8px 8px 8px 10px",
|
80
|
-
"&:hover": {
|
81
|
-
background: "unset !important"
|
82
|
-
}
|
83
|
-
},
|
84
|
-
"& button": {
|
85
|
-
width: "18px !important",
|
86
|
-
height: "18px !important",
|
87
|
-
borderRadius: "3px",
|
88
|
-
border: `1px solid ${theme?.palette?.editor?.buttonBorder3}`,
|
89
|
-
"& svg": {
|
90
|
-
width: "14px",
|
91
|
-
height: "14px"
|
92
|
-
}
|
93
|
-
},
|
94
|
-
"& .checkedIcon": {
|
95
|
-
background: "#2563EB",
|
96
|
-
borderColor: "#2563EB",
|
97
|
-
padding: "0px"
|
98
|
-
},
|
99
|
-
"& .unCheckedIcon": {
|
100
|
-
background: theme?.palette?.editor?.checkedIconBg
|
101
|
-
},
|
102
|
-
"& p": {
|
103
|
-
margin: "0px !important"
|
104
98
|
}
|
105
99
|
},
|
106
100
|
"& .trigger-text": {
|
@@ -109,194 +103,120 @@ const ButtonNavSettingsStyles = theme => ({
|
|
109
103
|
fontFamily: "'Inter',sans-serif",
|
110
104
|
color: theme?.palette?.editor?.textColor
|
111
105
|
}
|
112
|
-
}
|
113
|
-
|
114
|
-
|
115
|
-
"&
|
116
|
-
"
|
117
|
-
|
118
|
-
}
|
106
|
+
};
|
107
|
+
return {
|
108
|
+
dialogContainer: {
|
109
|
+
"& .MuiDialogContent-root": {
|
110
|
+
margin: "0px 20px",
|
111
|
+
padding: "0px 4px",
|
112
|
+
borderTop: `1px solid ${borderColor}`,
|
113
|
+
borderBottom: `1px solid ${borderColor}`
|
114
|
+
},
|
115
|
+
"& .MuiDialogActions-root": {
|
116
|
+
padding: "10px"
|
117
|
+
},
|
118
|
+
"& .MuiTypography-h6": {
|
119
|
+
fontWeight: 600,
|
120
|
+
fontSize: "20px",
|
121
|
+
paddingRight: "20px"
|
122
|
+
},
|
123
|
+
"& .MuiGrid-container": {
|
124
|
+
marginTop: "0px"
|
125
|
+
},
|
126
|
+
"& .MuiGrid-item": {
|
127
|
+
padding: "14px"
|
128
|
+
},
|
129
|
+
"& .MuiPaper-root": {
|
130
|
+
padding: "10px !important",
|
131
|
+
borderRadius: "20px !important",
|
132
|
+
backgroundColor: `${theme?.palette?.editor?.miniToolBarBackground} !important`,
|
133
|
+
border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
|
134
|
+
...commonContainerStyle
|
119
135
|
}
|
120
136
|
},
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
137
|
+
swipeableDrawerContainer: commonContainerStyle,
|
138
|
+
customSelect: {
|
139
|
+
zIndex: "1302 !important",
|
140
|
+
"& .MuiPopover-paper": {
|
141
|
+
background: theme?.palette?.editor?.textWeightPopUpBackground,
|
142
|
+
color: theme?.palette?.editor?.textColor,
|
143
|
+
borderRadius: "8px",
|
144
|
+
marginTop: "2px",
|
145
|
+
"& li": {
|
146
|
+
padding: "6px 16px",
|
147
|
+
margin: "5px !important",
|
148
|
+
borderRadius: "4px !important"
|
149
|
+
},
|
150
|
+
"& .MuiList-root": {
|
151
|
+
padding: "0px"
|
152
|
+
},
|
153
|
+
"& .MuiTypography-root": {
|
154
|
+
fontSize: "12px !important",
|
155
|
+
fontWeight: 500,
|
156
|
+
fontFamily: "'Inter',sans-serif"
|
157
|
+
},
|
158
|
+
"& .Mui-selected": {
|
159
|
+
background: theme?.palette?.editor?.menuOptionSelectedOption,
|
160
|
+
color: theme?.palette?.editor?.textColor
|
125
161
|
}
|
126
162
|
}
|
127
|
-
}
|
128
|
-
|
129
|
-
customSelect: {
|
130
|
-
zIndex: "1302 !important",
|
131
|
-
"& .MuiPopover-paper": {
|
132
|
-
background: theme?.palette?.editor?.textWeightPopUpBackground,
|
133
|
-
color: theme?.palette?.editor?.textColor,
|
134
|
-
borderRadius: "8px",
|
135
|
-
marginTop: "2px",
|
136
|
-
"& li": {
|
137
|
-
padding: "6px 16px",
|
138
|
-
margin: "5px !important",
|
139
|
-
borderRadius: "4px !important"
|
140
|
-
},
|
141
|
-
"& .MuiList-root": {
|
142
|
-
padding: "0px"
|
143
|
-
},
|
144
|
-
"& .MuiTypography-root": {
|
145
|
-
fontSize: "12px !important",
|
146
|
-
fontWeight: 500,
|
147
|
-
fontFamily: "'Inter',sans-serif"
|
148
|
-
},
|
149
|
-
"& .Mui-selected": {
|
150
|
-
background: theme?.palette?.editor?.menuOptionSelectedOption,
|
151
|
-
color: theme?.palette?.editor?.textColor
|
152
|
-
}
|
153
|
-
}
|
154
|
-
},
|
155
|
-
saveBtn: {
|
156
|
-
color: "#fff !important",
|
157
|
-
background: "#2563EB !important",
|
158
|
-
fontSize: "14px !important",
|
159
|
-
fontWeight: "700 !important",
|
160
|
-
padding: "8px 24px !important",
|
161
|
-
textTransform: "none !important",
|
162
|
-
borderRadius: "8px !important",
|
163
|
-
fontFamily: "'Inter',sans-serif !important",
|
164
|
-
"&:hover": {
|
163
|
+
},
|
164
|
+
saveBtn: {
|
165
165
|
color: "#fff !important",
|
166
|
-
background: "#2563EB !important"
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder} !important`,
|
177
|
-
borderRadius: "8px !important",
|
178
|
-
fontFamily: "'Inter',sans-serif !important",
|
179
|
-
"&:hover": {
|
180
|
-
border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder} !important`,
|
181
|
-
backgroundColor: `${theme?.palette?.editor?.closeButtonBgColor} !important`,
|
182
|
-
color: `${theme?.palette?.editor?.customDialogueCloseBtnColor} !important`
|
183
|
-
}
|
184
|
-
},
|
185
|
-
closeIcon: {
|
186
|
-
background: theme?.palette?.editor?.closeButtonBackground,
|
187
|
-
borderRadius: "8px",
|
188
|
-
padding: "2px",
|
189
|
-
marginRight: "8px",
|
190
|
-
"& svg": {
|
191
|
-
fill: theme?.palette?.editor?.closeButtonSvgStroke
|
192
|
-
}
|
193
|
-
},
|
194
|
-
gridDivider: {
|
195
|
-
borderRight: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
|
196
|
-
"& .MuiTypography-root": {
|
197
|
-
color: "#64748B !important",
|
198
|
-
fontFamily: "'Inter',sans-serif",
|
199
|
-
fontWeight: 500,
|
200
|
-
fontSize: "16px"
|
201
|
-
}
|
202
|
-
},
|
203
|
-
mobileActionBtns: {
|
204
|
-
display: "flex",
|
205
|
-
justifyContent: "flex-end",
|
206
|
-
gap: "8px",
|
207
|
-
paddingTop: "14px",
|
208
|
-
marginTop: "14px",
|
209
|
-
borderTop: `1px solid ${theme?.palette?.grey[300]}`
|
210
|
-
},
|
211
|
-
customAutoComplete: {
|
212
|
-
"& .MuiAutocomplete-listbox": {
|
213
|
-
padding: "0px",
|
214
|
-
"& li": {
|
215
|
-
margin: "5px",
|
216
|
-
borderRadius: "8px",
|
217
|
-
color: theme?.palette?.editor?.menuOptionTextColor,
|
218
|
-
fontSize: "14px",
|
219
|
-
padding: "8px 12px",
|
220
|
-
'&[aria-selected="true"]': {
|
221
|
-
backgroundColor: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
|
222
|
-
}
|
223
|
-
},
|
224
|
-
"& .Mui-selected": {
|
225
|
-
background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
|
166
|
+
background: "#2563EB !important",
|
167
|
+
fontSize: "14px !important",
|
168
|
+
fontWeight: "700 !important",
|
169
|
+
padding: "8px 24px !important",
|
170
|
+
textTransform: "none !important",
|
171
|
+
borderRadius: "8px !important",
|
172
|
+
fontFamily: "'Inter',sans-serif !important",
|
173
|
+
"&:hover": {
|
174
|
+
color: "#fff !important",
|
175
|
+
background: "#2563EB !important"
|
226
176
|
}
|
227
177
|
},
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
178
|
+
closeBtn: {
|
179
|
+
backgroundColor: `${theme?.palette?.editor?.closeButtonBgColor} !important`,
|
180
|
+
color: `${theme?.palette?.editor?.customDialogueCloseBtnColor} !important`,
|
181
|
+
fontSize: "14px !important",
|
182
|
+
fontWeight: "700 !important",
|
183
|
+
padding: "8px 22px !important",
|
184
|
+
textTransform: "none !important",
|
185
|
+
border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder} !important`,
|
186
|
+
borderRadius: "8px !important",
|
187
|
+
fontFamily: "'Inter',sans-serif !important",
|
188
|
+
"&:hover": {
|
189
|
+
border: `1px solid ${theme?.palette?.editor?.customDialogueCloseBtnBorder} !important`,
|
190
|
+
backgroundColor: `${theme?.palette?.editor?.closeButtonBgColor} !important`,
|
191
|
+
color: `${theme?.palette?.editor?.customDialogueCloseBtnColor} !important`
|
192
|
+
}
|
239
193
|
},
|
240
|
-
|
241
|
-
background: theme?.palette?.editor?.
|
194
|
+
closeIcon: {
|
195
|
+
background: theme?.palette?.editor?.closeButtonBackground,
|
242
196
|
borderRadius: "8px",
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
borderRadius: "8px"
|
248
|
-
},
|
249
|
-
"& input": {
|
250
|
-
border: `1px solid transparent`,
|
251
|
-
background: theme?.palette?.editor?.inputFieldBgColor,
|
252
|
-
borderRadius: "8px",
|
253
|
-
color: theme?.palette?.editor?.textColor
|
197
|
+
padding: "2px",
|
198
|
+
marginRight: "8px",
|
199
|
+
"& svg": {
|
200
|
+
fill: theme?.palette?.editor?.closeButtonSvgStroke
|
254
201
|
}
|
255
202
|
},
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
"& .MuiFormControlLabel-root": {
|
264
|
-
"& .MuiCheckbox-root": {
|
265
|
-
"& svg": {
|
266
|
-
color: `${theme?.palette?.editor?.radioBtnBorder}`
|
267
|
-
}
|
203
|
+
gridDivider: {
|
204
|
+
borderRight: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
|
205
|
+
"& .MuiTypography-root": {
|
206
|
+
color: "#64748B !important",
|
207
|
+
fontFamily: "'Inter',sans-serif",
|
208
|
+
fontWeight: 500,
|
209
|
+
fontSize: "16px"
|
268
210
|
}
|
269
211
|
},
|
270
|
-
|
271
|
-
|
272
|
-
"
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
},
|
278
|
-
"& button": {
|
279
|
-
width: "18px !important",
|
280
|
-
height: "18px !important",
|
281
|
-
borderRadius: "3px",
|
282
|
-
border: `1px solid ${theme?.palette?.editor?.buttonBorder3}`,
|
283
|
-
"& svg": {
|
284
|
-
width: "14px",
|
285
|
-
height: "14px"
|
286
|
-
}
|
287
|
-
},
|
288
|
-
"& .checkedIcon": {
|
289
|
-
background: "#2563EB",
|
290
|
-
borderColor: "#2563EB",
|
291
|
-
padding: "0px"
|
292
|
-
},
|
293
|
-
"& .unCheckedIcon": {
|
294
|
-
background: theme?.palette?.editor?.checkedIconBg
|
295
|
-
},
|
296
|
-
"& p": {
|
297
|
-
margin: "0px !important"
|
298
|
-
}
|
212
|
+
mobileActionBtns: {
|
213
|
+
display: "flex",
|
214
|
+
justifyContent: "flex-end",
|
215
|
+
gap: "8px",
|
216
|
+
paddingTop: "14px",
|
217
|
+
marginTop: "14px",
|
218
|
+
borderTop: `1px solid ${grey[300]}`
|
299
219
|
}
|
300
|
-
}
|
301
|
-
}
|
220
|
+
};
|
221
|
+
};
|
302
222
|
export default ButtonNavSettingsStyles;
|
@@ -146,7 +146,10 @@ const MentionsPopup = /*#__PURE__*/forwardRef((props, ref) => {
|
|
146
146
|
setOpenAI("fromElements");
|
147
147
|
}
|
148
148
|
insertMention(editor, char, type);
|
149
|
-
|
149
|
+
if (mentions === "mentions") {
|
150
|
+
Transforms.insertText(editor, " "); //Added to insert space after inserting mention node
|
151
|
+
}
|
152
|
+
|
150
153
|
setMentions({
|
151
154
|
...mentions,
|
152
155
|
target: null
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import { RadioGroup as Core, Radio, FormControl, FormControlLabel, IconButton, Typography } from "@mui/material";
|
2
|
+
import RadioGroupStyles from "./styles";
|
3
|
+
import { useEditorContext } from "../../hooks/useMouseMove";
|
4
|
+
import { CheckedRadioIcon } from "../iconListV2";
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
6
|
+
function RadioGroup(props) {
|
7
|
+
const {
|
8
|
+
value,
|
9
|
+
options,
|
10
|
+
onChange,
|
11
|
+
label,
|
12
|
+
labelProps,
|
13
|
+
radioProps,
|
14
|
+
translation,
|
15
|
+
...rest
|
16
|
+
} = props;
|
17
|
+
const {
|
18
|
+
theme
|
19
|
+
} = useEditorContext();
|
20
|
+
const classes = RadioGroupStyles(theme);
|
21
|
+
return /*#__PURE__*/_jsx(FormControl, {
|
22
|
+
children: /*#__PURE__*/_jsx(Core, {
|
23
|
+
value: value,
|
24
|
+
sx: classes.customRadioGroup,
|
25
|
+
...rest,
|
26
|
+
children: options?.map((option, i) => {
|
27
|
+
return /*#__PURE__*/_jsx(FormControlLabel, {
|
28
|
+
value: option.value,
|
29
|
+
control: /*#__PURE__*/_jsx(Radio, {
|
30
|
+
checkedIcon: /*#__PURE__*/_jsx(CheckedRadioIcon, {}),
|
31
|
+
icon: /*#__PURE__*/_jsx(IconButton, {
|
32
|
+
className: "unCheckedIcon"
|
33
|
+
}),
|
34
|
+
...(radioProps || {})
|
35
|
+
}),
|
36
|
+
label: /*#__PURE__*/_jsx(Typography, {
|
37
|
+
variant: "body1",
|
38
|
+
sx: classes.label,
|
39
|
+
...(labelProps || {}),
|
40
|
+
children: translation(option.label)
|
41
|
+
}),
|
42
|
+
onChange: () => onChange(option)
|
43
|
+
}, i);
|
44
|
+
})
|
45
|
+
})
|
46
|
+
});
|
47
|
+
}
|
48
|
+
export default RadioGroup;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
const SelectStyles = (theme = {}) => {
|
2
|
+
const {
|
3
|
+
buttonBorder3,
|
4
|
+
checkedIconBg,
|
5
|
+
tv_text,
|
6
|
+
inputFieldBgColor
|
7
|
+
} = theme?.palette?.editor || {};
|
8
|
+
return {
|
9
|
+
customRadioGroup: {
|
10
|
+
gap: "4px",
|
11
|
+
"& button": {
|
12
|
+
border: `1px solid ${buttonBorder3}`
|
13
|
+
},
|
14
|
+
"& .unCheckedIcon": {
|
15
|
+
background: checkedIconBg,
|
16
|
+
width: "17px",
|
17
|
+
height: "17px",
|
18
|
+
padding: "0px"
|
19
|
+
},
|
20
|
+
"& .radio-icon-path": {
|
21
|
+
fill: inputFieldBgColor
|
22
|
+
}
|
23
|
+
},
|
24
|
+
label: {
|
25
|
+
color: `${tv_text} !important`
|
26
|
+
}
|
27
|
+
};
|
28
|
+
};
|
29
|
+
export default SelectStyles;
|
@@ -1,12 +1,11 @@
|
|
1
1
|
import { Button, IconButton } from "@mui/material";
|
2
|
-
import CloseRoundedIcon from
|
2
|
+
import CloseRoundedIcon from "@mui/icons-material/CloseRounded";
|
3
3
|
import AutoAwesomeIcon from "@mui/icons-material/AutoAwesome";
|
4
4
|
import DragIndicatorIcon from "@mui/icons-material/DragIndicator";
|
5
5
|
import MoreVertIcon from "@mui/icons-material/MoreVert";
|
6
|
-
import AddRoundedIcon from
|
7
|
-
import ArrowUpwardRoundedIcon from
|
8
|
-
import ArrowDownwardRoundedIcon from
|
9
|
-
import SaveIcon from "@mui/icons-material/Save";
|
6
|
+
import AddRoundedIcon from "@mui/icons-material/AddRounded";
|
7
|
+
import ArrowUpwardRoundedIcon from "@mui/icons-material/ArrowUpwardRounded";
|
8
|
+
import ArrowDownwardRoundedIcon from "@mui/icons-material/ArrowDownwardRounded";
|
10
9
|
import LinkIcon from "./Icons/LinkIcon";
|
11
10
|
import FilterFramesIcon from "@mui/icons-material/FilterFrames";
|
12
11
|
import { GridAddSectionIcon, SignatureIcon, WorkflowIcon } from "../../iconslist";
|
@@ -13,7 +13,7 @@ const Signature = props => {
|
|
13
13
|
const pPath = path?.split("|")?.map(m => parseInt(m));
|
14
14
|
const element_path = [...pPath, 0];
|
15
15
|
const onSave = (data = {}) => {
|
16
|
-
onClear();
|
16
|
+
onClear(element_path);
|
17
17
|
Transforms.insertNodes(editor, [{
|
18
18
|
type: "sign",
|
19
19
|
signature: null,
|
@@ -35,9 +35,10 @@ const Signature = props => {
|
|
35
35
|
at: parentPath
|
36
36
|
});
|
37
37
|
};
|
38
|
-
const onClear =
|
38
|
+
const onClear = path => {
|
39
|
+
const parentPath = path || Path.parent(element_path);
|
39
40
|
Transforms.removeNodes(editor, {
|
40
|
-
at:
|
41
|
+
at: parentPath
|
41
42
|
});
|
42
43
|
};
|
43
44
|
return /*#__PURE__*/_jsx(_Fragment, {
|
@@ -8,7 +8,8 @@ const AppHeaderSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
11
|
+
customProps,
|
12
|
+
onClose
|
12
13
|
} = props;
|
13
14
|
const item_path = path?.split("|").map(m => parseInt(m));
|
14
15
|
const element_path = [...item_path, 0];
|
@@ -27,7 +28,7 @@ const AppHeaderSettings = props => {
|
|
27
28
|
});
|
28
29
|
};
|
29
30
|
const handleClose = () => {
|
30
|
-
|
31
|
+
onClose();
|
31
32
|
};
|
32
33
|
return /*#__PURE__*/_jsx(Box, {
|
33
34
|
component: "div",
|
@@ -8,7 +8,8 @@ const BoxSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
11
|
+
customProps,
|
12
|
+
onClose
|
12
13
|
} = props;
|
13
14
|
const item_path = path?.split("|").map(m => parseInt(m));
|
14
15
|
const element_path = [...item_path];
|
@@ -27,7 +28,7 @@ const BoxSettings = props => {
|
|
27
28
|
});
|
28
29
|
};
|
29
30
|
const handleClose = () => {
|
30
|
-
|
31
|
+
onClose();
|
31
32
|
};
|
32
33
|
return /*#__PURE__*/_jsx(Box, {
|
33
34
|
component: "div",
|
@@ -8,7 +8,8 @@ const ButtonSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
11
|
+
customProps,
|
12
|
+
onClose
|
12
13
|
} = props;
|
13
14
|
const item_path = path?.split("|").map(m => parseInt(m));
|
14
15
|
const element_path = [...item_path, 0];
|
@@ -28,7 +29,7 @@ const ButtonSettings = props => {
|
|
28
29
|
});
|
29
30
|
};
|
30
31
|
const handleClose = () => {
|
31
|
-
|
32
|
+
onClose();
|
32
33
|
};
|
33
34
|
return /*#__PURE__*/_jsx(Box, {
|
34
35
|
component: "div",
|
@@ -8,7 +8,8 @@ const CodeSettings = props => {
|
|
8
8
|
const {
|
9
9
|
editor,
|
10
10
|
path,
|
11
|
-
customProps
|
11
|
+
customProps,
|
12
|
+
onClose
|
12
13
|
} = props;
|
13
14
|
const item_path = path?.split("|").map(m => parseInt(m));
|
14
15
|
const element_path = [...item_path, 0];
|
@@ -27,7 +28,7 @@ const CodeSettings = props => {
|
|
27
28
|
});
|
28
29
|
};
|
29
30
|
const handleClose = () => {
|
30
|
-
|
31
|
+
onClose();
|
31
32
|
};
|
32
33
|
return /*#__PURE__*/_jsx(Box, {
|
33
34
|
component: "div",
|