@flozy/editor 9.8.3 → 9.8.4
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 +26 -19
- package/dist/Editor/CommonEditor.js +141 -26
- package/dist/Editor/DialogWrapper.js +31 -25
- package/dist/Editor/Editor.css +11 -7
- package/dist/Editor/Elements/AI/AIInput.js +5 -3
- package/dist/Editor/Elements/AI/CustomSelect.js +9 -5
- package/dist/Editor/Elements/AI/PopoverAIInput.js +15 -5
- package/dist/Editor/Elements/Accordion/Accordion.js +4 -3
- package/dist/Editor/Elements/Accordion/AccordionBtnPopup.js +4 -1
- package/dist/Editor/Elements/Accordion/AccordionButton.js +6 -2
- package/dist/Editor/Elements/Accordion/AccordionTitlePopup.js +4 -1
- package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
- package/dist/Editor/Elements/AppHeader/AppHeaderButton.js +6 -2
- package/dist/Editor/Elements/AppHeader/AppHeaderPopup.js +4 -1
- package/dist/Editor/Elements/Attachments/AttachmentsButton.js +4 -1
- package/dist/Editor/Elements/Button/ButtonPopup.js +4 -1
- package/dist/Editor/Elements/Button/ButtonToolIcon.js +6 -2
- package/dist/Editor/Elements/Button/EditorButton.js +43 -30
- package/dist/Editor/Elements/Carousel/Carousel.js +5 -4
- package/dist/Editor/Elements/Carousel/CarouselButton.js +6 -2
- package/dist/Editor/Elements/Carousel/CarouselItem.js +3 -2
- package/dist/Editor/Elements/ChipText/ChipTextPopup.js +4 -1
- package/dist/Editor/Elements/CodeToText/CodeToText.js +5 -4
- package/dist/Editor/Elements/CodeToText/HtmlContextMenu.js +6 -2
- package/dist/Editor/Elements/Color Picker/ColorButtons.js +60 -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/Colorbox/ColorboxButton.js +6 -2
- package/dist/Editor/Elements/DataView/DataView.js +5 -2
- package/dist/Editor/Elements/DataView/DataViewButton.js +6 -2
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +13 -12
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +7 -4
- package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +7 -5
- package/dist/Editor/Elements/DataView/Layouts/FilterView.js +9 -7
- package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +8 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +5 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +6 -5
- package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +5 -3
- package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +9 -7
- package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +15 -12
- package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +3 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/index.js +23 -6
- package/dist/Editor/Elements/DataView/Layouts/TableView.js +6 -4
- package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
- package/dist/Editor/Elements/DataView/Layouts/index.js +3 -1
- package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +5 -2
- package/dist/Editor/Elements/Divider/Divider.js +5 -3
- package/dist/Editor/Elements/Divider/DividerButton.js +6 -2
- package/dist/Editor/Elements/Divider/DividerPopup.js +3 -2
- package/dist/Editor/Elements/Embed/Embed.js +4 -1
- package/dist/Editor/Elements/Embed/EmbedPopup.js +4 -1
- package/dist/Editor/Elements/Embed/Image.js +16 -11
- package/dist/Editor/Elements/Embed/Video.js +10 -7
- package/dist/Editor/Elements/EmbedScript/Code.js +7 -4
- package/dist/Editor/Elements/EmbedScript/EmbedScript.js +6 -2
- package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +8 -5
- package/dist/Editor/Elements/Emoji/EmojiButton.js +6 -2
- package/dist/Editor/Elements/Form/FieldPopup.js +4 -1
- package/dist/Editor/Elements/Form/Form.js +12 -9
- package/dist/Editor/Elements/Form/FormButton.js +6 -2
- package/dist/Editor/Elements/Form/FormPopup.js +3 -2
- package/dist/Editor/Elements/Form/Workflow/FormWorkflow.js +18 -12
- package/dist/Editor/Elements/Form/Workflow/ListWorkflow.js +13 -8
- package/dist/Editor/Elements/Form/Workflow/MoreOptions.js +3 -2
- package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
- package/dist/Editor/Elements/Form/Workflow/UserInputs.js +4 -2
- package/dist/Editor/Elements/Form/Workflow/index.js +15 -9
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +67 -23
- package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +31 -6
- package/dist/Editor/Elements/FreeGrid/FreeGridButton.js +6 -2
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +54 -6
- package/dist/Editor/Elements/FreeGrid/Options/AddElement.js +3 -2
- package/dist/Editor/Elements/FreeGrid/Options/More.js +10 -4
- package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
- package/dist/Editor/Elements/Grid/Grid.js +13 -10
- package/dist/Editor/Elements/Grid/GridButton.js +9 -5
- package/dist/Editor/Elements/Grid/GridItem.js +14 -8
- package/dist/Editor/Elements/Grid/GridItemPopup.js +4 -1
- package/dist/Editor/Elements/Grid/GridPopup.js +4 -1
- package/dist/Editor/Elements/Grid/SectionPopup.js +4 -1
- package/dist/Editor/Elements/Link/Link.js +8 -5
- package/dist/Editor/Elements/Link/LinkButton.js +4 -1
- package/dist/Editor/Elements/List/CheckList.js +18 -10
- package/dist/Editor/Elements/NewLine/NewLineButton.js +6 -2
- package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +4 -1
- package/dist/Editor/Elements/PageSettings/PageSettingsPopup.js +4 -1
- package/dist/Editor/Elements/Search/SearchButton.js +7 -4
- package/dist/Editor/Elements/Search/SearchList.js +10 -5
- package/dist/Editor/Elements/Signature/SignatureButton.js +6 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +2 -8
- package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +6 -2
- package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +4 -1
- package/dist/Editor/Elements/Signature/SignaturePopup.js +17 -16
- package/dist/Editor/Elements/SimpleText/index.js +14 -5
- package/dist/Editor/Elements/SimpleText/style.js +2 -2
- package/dist/Editor/Elements/Table/DragButton.js +4 -2
- package/dist/Editor/Elements/Table/Table.js +23 -11
- package/dist/Editor/Elements/Table/TablePopup.js +4 -1
- package/dist/Editor/Elements/Table/TableSelector.js +10 -6
- package/dist/Editor/Elements/Table/TableTool.js +8 -4
- package/dist/Editor/Elements/Title/title.js +9 -8
- package/dist/Editor/Elements/TopBanner/TopBannerButton.js +4 -1
- package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
- package/dist/Editor/MiniEditor.js +10 -3
- package/dist/Editor/Styles/EditorStyles.js +5 -5
- package/dist/Editor/Toolbar/Basic/index.js +2 -1
- package/dist/Editor/Toolbar/FormatTools/BlockButton.js +6 -2
- 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 +8 -4
- package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
- package/dist/Editor/Toolbar/Mini/MiniToolbar.js +17 -5
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +10 -5
- package/dist/Editor/Toolbar/PopupTool/ButtonTemplatesCard.js +10 -4
- package/dist/Editor/Toolbar/PopupTool/FullViewCard.js +10 -4
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +9 -3
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +42 -35
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +58 -51
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectSuperSubscript.js +29 -22
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +226 -87
- package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +20 -10
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +10 -5
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +71 -11
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +11 -5
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +122 -42
- package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +436 -0
- package/dist/Editor/Toolbar/PopupTool/index.js +18 -2
- package/dist/Editor/Toolbar/Toolbar.js +20 -10
- package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
- package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
- package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
- package/dist/Editor/assets/svg/ThemeIcons.js +291 -0
- package/dist/Editor/common/ColorPickerButton.js +39 -14
- package/dist/Editor/common/CustomColorPicker/index.js +131 -0
- package/dist/Editor/common/CustomColorPicker/style.js +53 -0
- package/dist/Editor/common/CustomDialog/index.js +8 -10
- 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 +31 -1
- package/dist/Editor/common/ImageSelector/ImageSelector.js +10 -8
- package/dist/Editor/common/ImageSelector/Options/AddLink.js +6 -4
- package/dist/Editor/common/ImageSelector/Styles.js +3 -9
- package/dist/Editor/common/LinkSettings/NavComponents.js +14 -10
- package/dist/Editor/common/LinkSettings/index.js +20 -14
- package/dist/Editor/common/LinkSettings/navOptions.js +1 -1
- package/dist/Editor/common/MUIIcon/index.js +0 -3
- package/dist/Editor/common/MentionsPopup/index.js +6 -2
- package/dist/Editor/common/RnD/ContextMenu/CMenus.js +46 -22
- package/dist/Editor/common/RnD/ContextMenu/index.js +3 -2
- package/dist/Editor/common/RnD/ElementOptions/index.js +7 -2
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/SaveAsTemplate.js +8 -3
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +7 -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 +7 -4
- 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 +6 -2
- package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
- package/dist/Editor/common/RnD/OptionsPopup/index.js +4 -3
- package/dist/Editor/common/RnD/ShadowElement.js +2 -1
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +11 -4
- 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 +73 -9
- package/dist/Editor/common/RnD/Utils/index.js +3 -0
- package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
- package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
- package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
- package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
- package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
- package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
- package/dist/Editor/common/RnD/index.js +69 -13
- package/dist/Editor/common/Section/index.js +7 -4
- package/dist/Editor/common/Shorthands/elements.js +72 -3
- package/dist/Editor/common/SnackBar/index.js +43 -0
- package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +4 -4
- package/dist/Editor/common/StyleBuilder/boxStyle.js +2 -2
- package/dist/Editor/common/StyleBuilder/buttonStyle.js +6 -4
- package/dist/Editor/common/StyleBuilder/dividerStyles.js +2 -2
- package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +6 -6
- package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +13 -9
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +11 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +19 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +22 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +6 -3
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +27 -13
- package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +43 -14
- package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +10 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +19 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +5 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +9 -6
- package/dist/Editor/common/StyleBuilder/fieldTypes/metaDataMapping.js +8 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +12 -11
- package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -4
- package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +6 -2
- package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +21 -12
- package/dist/Editor/common/StyleBuilder/formStyle.js +7 -7
- package/dist/Editor/common/StyleBuilder/gridItemStyle.js +6 -6
- package/dist/Editor/common/StyleBuilder/gridStyle.js +5 -5
- package/dist/Editor/common/StyleBuilder/index.js +8 -5
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
- package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
- package/dist/Editor/common/Uploader.js +16 -5
- package/dist/Editor/commonStyle.js +68 -57
- package/dist/Editor/helper/index.js +27 -3
- package/dist/Editor/helper/textIndeces.js +58 -0
- package/dist/Editor/helper/theme.js +202 -2
- package/dist/Editor/hooks/useAutoScroll.js +38 -0
- package/dist/Editor/hooks/useEditorTheme.js +153 -0
- package/dist/Editor/hooks/useMouseMove.js +9 -3
- package/dist/Editor/hooks/useThemeValues.js +63 -0
- package/dist/Editor/plugins/withEmbeds.js +1 -1
- package/dist/Editor/plugins/withHTML.js +11 -9
- package/dist/Editor/plugins/withLayout.js +3 -2
- package/dist/Editor/plugins/withLinks.js +10 -0
- 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 +72 -0
- package/dist/Editor/themeSettings/buttons/index.js +290 -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 +61 -0
- package/dist/Editor/themeSettings/icons.js +60 -0
- package/dist/Editor/themeSettings/index.js +351 -0
- package/dist/Editor/themeSettings/style.js +220 -0
- package/dist/Editor/themeSettingsAI/icons.js +96 -0
- package/dist/Editor/themeSettingsAI/index.js +355 -0
- package/dist/Editor/themeSettingsAI/saveTheme.js +205 -0
- package/dist/Editor/themeSettingsAI/style.js +259 -0
- package/dist/Editor/utils/SlateUtilityFunctions.js +186 -54
- package/dist/Editor/utils/brains.js +1 -2
- package/dist/Editor/utils/draftToSlate.js +3 -2
- package/dist/Editor/utils/font.js +40 -37
- package/dist/Editor/utils/freegrid.js +3 -3
- package/dist/Editor/utils/helper.js +92 -21
- package/package.json +4 -4
@@ -31,7 +31,8 @@ const SignaturePopup = props => {
|
|
31
31
|
const {
|
32
32
|
readOnly,
|
33
33
|
metadata,
|
34
|
-
isSignerDetailsRequired = false
|
34
|
+
isSignerDetailsRequired = false,
|
35
|
+
translation
|
35
36
|
} = customProps;
|
36
37
|
const [open, setOpen] = useState(false);
|
37
38
|
const [tab, setTab] = useState(0);
|
@@ -67,7 +68,7 @@ const SignaturePopup = props => {
|
|
67
68
|
isValidEmail = validationMethods?.isEmail(signedData?.signedByEmail);
|
68
69
|
}
|
69
70
|
if (isValidEmail === "Enter valid email address") {
|
70
|
-
alert(isValidEmail);
|
71
|
+
alert(translation(isValidEmail));
|
71
72
|
} else {
|
72
73
|
onSave(signedData);
|
73
74
|
// manual delay
|
@@ -140,14 +141,14 @@ const SignaturePopup = props => {
|
|
140
141
|
style: {
|
141
142
|
color: "#A2B0B9"
|
142
143
|
},
|
143
|
-
children: "Your sign will be placed here"
|
144
|
+
children: translation("Your sign will be placed here")
|
144
145
|
})]
|
145
146
|
}), /*#__PURE__*/_jsx(Button, {
|
146
147
|
onClick: handleOpen,
|
147
148
|
style: {
|
148
149
|
width: "fit-content"
|
149
150
|
},
|
150
|
-
children: "Sign here"
|
151
|
+
children: translation("Sign here")
|
151
152
|
})]
|
152
153
|
}), /*#__PURE__*/_jsx(Dialog, {
|
153
154
|
className: `${className} dialogComp`,
|
@@ -184,7 +185,7 @@ const SignaturePopup = props => {
|
|
184
185
|
variant: "h6",
|
185
186
|
color: "primary",
|
186
187
|
sx: classes.popupTitle2,
|
187
|
-
children: "Signature"
|
188
|
+
children: translation("Signature")
|
188
189
|
})
|
189
190
|
}), /*#__PURE__*/_jsx(Grid, {
|
190
191
|
item: true,
|
@@ -231,7 +232,7 @@ const SignaturePopup = props => {
|
|
231
232
|
style: {
|
232
233
|
textTransform: "none"
|
233
234
|
},
|
234
|
-
children: "Draw Signature"
|
235
|
+
children: translation("Draw Signature")
|
235
236
|
})]
|
236
237
|
})
|
237
238
|
}), /*#__PURE__*/_jsx(Tab, {
|
@@ -244,7 +245,7 @@ const SignaturePopup = props => {
|
|
244
245
|
style: {
|
245
246
|
textTransform: "none"
|
246
247
|
},
|
247
|
-
children: "Type Signature"
|
248
|
+
children: translation("Type Signature")
|
248
249
|
})]
|
249
250
|
})
|
250
251
|
}), /*#__PURE__*/_jsx(Tab, {
|
@@ -257,7 +258,7 @@ const SignaturePopup = props => {
|
|
257
258
|
style: {
|
258
259
|
textTransform: "none"
|
259
260
|
},
|
260
|
-
children: "Upload Signature"
|
261
|
+
children: translation("Upload Signature")
|
261
262
|
})]
|
262
263
|
})
|
263
264
|
})]
|
@@ -303,7 +304,7 @@ const SignaturePopup = props => {
|
|
303
304
|
fontWeight: 500,
|
304
305
|
fontSize: "14px"
|
305
306
|
},
|
306
|
-
children: "
|
307
|
+
children: translation("nameField")
|
307
308
|
})
|
308
309
|
}), /*#__PURE__*/_jsx(Grid, {
|
309
310
|
item: true,
|
@@ -312,7 +313,7 @@ const SignaturePopup = props => {
|
|
312
313
|
fullWidth: true,
|
313
314
|
id: "signedBy",
|
314
315
|
name: "signedBy",
|
315
|
-
placeholder: "Enter Name",
|
316
|
+
placeholder: translation("Enter Name"),
|
316
317
|
value: signedData.signedBy || ""
|
317
318
|
// defaultValue={defaultName || ""}
|
318
319
|
,
|
@@ -340,7 +341,7 @@ const SignaturePopup = props => {
|
|
340
341
|
fontWeight: 500,
|
341
342
|
fontSize: "14px"
|
342
343
|
},
|
343
|
-
children: "
|
344
|
+
children: translation("dateField")
|
344
345
|
})
|
345
346
|
}), /*#__PURE__*/_jsx(Grid, {
|
346
347
|
item: true,
|
@@ -361,7 +362,7 @@ const SignaturePopup = props => {
|
|
361
362
|
customInput: /*#__PURE__*/_jsx(TextField, {
|
362
363
|
fullWidth: true,
|
363
364
|
name: "signedOn",
|
364
|
-
placeholder: "Select Date",
|
365
|
+
placeholder: translation("Select Date"),
|
365
366
|
size: "small",
|
366
367
|
InputProps: {
|
367
368
|
startAdornment: /*#__PURE__*/_jsx(InputAdornment, {
|
@@ -431,7 +432,7 @@ const SignaturePopup = props => {
|
|
431
432
|
fontWeight: 500,
|
432
433
|
fontSize: "14px"
|
433
434
|
},
|
434
|
-
children: "
|
435
|
+
children: translation("emailField")
|
435
436
|
})
|
436
437
|
}), /*#__PURE__*/_jsx(Grid, {
|
437
438
|
container: true,
|
@@ -440,7 +441,7 @@ const SignaturePopup = props => {
|
|
440
441
|
fullWidth: true,
|
441
442
|
id: "signedByEmail",
|
442
443
|
name: "signedByEmail",
|
443
|
-
placeholder: "Enter Email",
|
444
|
+
placeholder: translation("Enter Email"),
|
444
445
|
size: "small",
|
445
446
|
onChange: onChange,
|
446
447
|
sx: classes.signaturePopUpNameField,
|
@@ -518,12 +519,12 @@ const SignaturePopup = props => {
|
|
518
519
|
children: [!readOnly ? /*#__PURE__*/_jsx(Button, {
|
519
520
|
onClick: handleClear,
|
520
521
|
className: `secondaryBtn actionBtn deleteBtn deleteButtonSignature`,
|
521
|
-
children: "Delete"
|
522
|
+
children: translation("Delete")
|
522
523
|
}) : null, /*#__PURE__*/_jsx(Button, {
|
523
524
|
onClick: handleSave,
|
524
525
|
className: `primaryBtn actionBtn ${isEmpty ? "disabled disabledSaveBtn" : ""}`,
|
525
526
|
disabled: isEmpty,
|
526
|
-
children: "Save"
|
527
|
+
children: translation("Save")
|
527
528
|
})]
|
528
529
|
})]
|
529
530
|
})]
|
@@ -5,6 +5,7 @@ import { Box } from "@mui/material";
|
|
5
5
|
import { isTextSelected } from "../../utils/helper";
|
6
6
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
7
7
|
import SimpleTextStyle from "./style";
|
8
|
+
import { getBreakpointLineSpacing } from "../../helper/theme";
|
8
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
10
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
10
11
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
@@ -24,12 +25,20 @@ const SimpleText = props => {
|
|
24
25
|
} = props;
|
25
26
|
const {
|
26
27
|
readOnly,
|
27
|
-
editorPlaceholder
|
28
|
+
editorPlaceholder,
|
29
|
+
translation
|
28
30
|
} = customProps;
|
31
|
+
const {
|
32
|
+
activeBreakPoint
|
33
|
+
} = useEditorContext();
|
29
34
|
// const { element: pageSt } = getPageSettings(editor) || {};
|
30
35
|
// const { pageColor } = pageSt?.pageProps || {};
|
36
|
+
const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
|
37
|
+
const lineH = element?.children[0]?.lineHeight;
|
38
|
+
const lineHeight = getBreakpointLineSpacing(lineH, activeBreakPoint || (isMobile ? "xs" : "lg"));
|
31
39
|
const classes = SimpleTextStyle({
|
32
|
-
pageColor: "#FFFFFF"
|
40
|
+
pageColor: "#FFFFFF",
|
41
|
+
lineHeight
|
33
42
|
});
|
34
43
|
const selected = useSelected();
|
35
44
|
const path = ReactEditor.findPath(editor, element);
|
@@ -46,15 +55,15 @@ const SimpleText = props => {
|
|
46
55
|
}, children, openAI ? null : /*#__PURE__*/_jsx("span", {
|
47
56
|
contentEditable: false,
|
48
57
|
className: "placeholder-simple-text",
|
49
|
-
children: isEmptyEditor ? editorPlaceholder || "
|
50
|
-
children: ["Type", " ", /*#__PURE__*/_jsx("span", {
|
58
|
+
children: isEmptyEditor ? editorPlaceholder || translation("writeSomethingPlaceHolder") : showPlaceHolder ? opacity && selected ? /*#__PURE__*/_jsxs(_Fragment, {
|
59
|
+
children: [translation("Type"), " ", /*#__PURE__*/_jsx("span", {
|
51
60
|
style: {
|
52
61
|
backgroundColor: "#F2F6FA",
|
53
62
|
padding: "0px 2px",
|
54
63
|
borderRadius: "2px"
|
55
64
|
},
|
56
65
|
children: "/"
|
57
|
-
}), " ", "
|
66
|
+
}), " ", translation("browseElementText")]
|
58
67
|
}) : "" : ""
|
59
68
|
}));
|
60
69
|
};
|
@@ -35,8 +35,8 @@ const SimpleTextStyle = ({
|
|
35
35
|
height: "24px",
|
36
36
|
overflow: "hidden",
|
37
37
|
fontSize: "14px",
|
38
|
-
display:
|
39
|
-
alignItems:
|
38
|
+
display: "inline-flex",
|
39
|
+
alignItems: "center",
|
40
40
|
"& .bg-pad-sl": {
|
41
41
|
padding: "2px 4px 2px 4px",
|
42
42
|
background: "transparent",
|
@@ -29,7 +29,8 @@ function DragButton({
|
|
29
29
|
const dragElement = useRef(null);
|
30
30
|
const [showTool, setShowTool] = useState(false);
|
31
31
|
const {
|
32
|
-
isMobile
|
32
|
+
isMobile,
|
33
|
+
translation
|
33
34
|
} = customProps || {};
|
34
35
|
const onDragClick = () => {
|
35
36
|
onDrag();
|
@@ -62,7 +63,8 @@ function DragButton({
|
|
62
63
|
hideDelete,
|
63
64
|
handleToolAction: (value, option, dragType) => {
|
64
65
|
handleAction(value, option, dragType);
|
65
|
-
}
|
66
|
+
},
|
67
|
+
translation
|
66
68
|
};
|
67
69
|
return /*#__PURE__*/_jsx(_Fragment, {
|
68
70
|
children: show || showTool ? /*#__PURE__*/_jsxs(_Fragment, {
|
@@ -27,7 +27,8 @@ const hideRowDragBtns = (hide, dragRowBtnCls) => {
|
|
27
27
|
const ToolTableComponent = props => {
|
28
28
|
const {
|
29
29
|
handleAction,
|
30
|
-
editorTheme
|
30
|
+
editorTheme,
|
31
|
+
translation
|
31
32
|
} = props;
|
32
33
|
const {
|
33
34
|
updateTableSelection
|
@@ -39,7 +40,8 @@ const ToolTableComponent = props => {
|
|
39
40
|
if (type === "duplicate") {
|
40
41
|
updateTableSelection(getDefaultTableSelection());
|
41
42
|
}
|
42
|
-
}
|
43
|
+
},
|
44
|
+
translation: translation
|
43
45
|
});
|
44
46
|
};
|
45
47
|
const MoreTableSettings = props => {
|
@@ -48,9 +50,13 @@ const MoreTableSettings = props => {
|
|
48
50
|
handleAction,
|
49
51
|
editorTheme,
|
50
52
|
setExpandTools,
|
51
|
-
classes
|
53
|
+
classes,
|
54
|
+
customProps
|
52
55
|
} = props;
|
53
56
|
const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
|
57
|
+
const {
|
58
|
+
translation
|
59
|
+
} = customProps;
|
54
60
|
return isMobile ? /*#__PURE__*/_jsx(SwipeableDrawerComponent, {
|
55
61
|
open: Boolean(exandTools),
|
56
62
|
onClose: () => {
|
@@ -61,7 +67,8 @@ const MoreTableSettings = props => {
|
|
61
67
|
sx: classes.mobileToolDrawer,
|
62
68
|
children: /*#__PURE__*/_jsx(ToolTableComponent, {
|
63
69
|
handleAction: handleAction,
|
64
|
-
editorTheme: editorTheme
|
70
|
+
editorTheme: editorTheme,
|
71
|
+
translation: translation
|
65
72
|
})
|
66
73
|
})
|
67
74
|
}) : /*#__PURE__*/_jsx(Popper, {
|
@@ -77,7 +84,8 @@ const MoreTableSettings = props => {
|
|
77
84
|
children: /*#__PURE__*/_jsx("div", {
|
78
85
|
children: /*#__PURE__*/_jsx(ToolTableComponent, {
|
79
86
|
handleAction: handleAction,
|
80
|
-
editorTheme: editorTheme
|
87
|
+
editorTheme: editorTheme,
|
88
|
+
translation: translation
|
81
89
|
})
|
82
90
|
})
|
83
91
|
})
|
@@ -92,6 +100,7 @@ const ToolBar = props => {
|
|
92
100
|
handleAction,
|
93
101
|
exandTools,
|
94
102
|
openSetttings,
|
103
|
+
translation,
|
95
104
|
hideTools
|
96
105
|
} = props;
|
97
106
|
const {
|
@@ -105,7 +114,7 @@ const ToolBar = props => {
|
|
105
114
|
sx: classes.tableToolBar,
|
106
115
|
children: !hideTools.includes("settings") ? /*#__PURE__*/_jsxs(_Fragment, {
|
107
116
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
108
|
-
title: "Settings",
|
117
|
+
title: translation("Settings"),
|
109
118
|
arrow: true,
|
110
119
|
onClick: () => handleAction("settings"),
|
111
120
|
children: /*#__PURE__*/_jsx(IconButton, {
|
@@ -113,7 +122,7 @@ const ToolBar = props => {
|
|
113
122
|
children: /*#__PURE__*/_jsx(SettingsIcon, {})
|
114
123
|
})
|
115
124
|
}), /*#__PURE__*/_jsx(Tooltip, {
|
116
|
-
title: "Show Tools",
|
125
|
+
title: translation("Show Tools"),
|
117
126
|
arrow: true,
|
118
127
|
onClick: handleExpand,
|
119
128
|
children: /*#__PURE__*/_jsx(IconButton, {
|
@@ -147,7 +156,8 @@ const Table = props => {
|
|
147
156
|
const {
|
148
157
|
readOnly,
|
149
158
|
isMobile,
|
150
|
-
hideTools = []
|
159
|
+
hideTools = [],
|
160
|
+
translation
|
151
161
|
} = customProps;
|
152
162
|
const [openSetttings, setOpenSettings] = useState(false);
|
153
163
|
const [exandTools, setExpandTools] = useState(null);
|
@@ -297,7 +307,7 @@ const Table = props => {
|
|
297
307
|
onScroll: handleScroll,
|
298
308
|
onMouseOver: onMouseOver,
|
299
309
|
onMouseLeave: onMouseLeave,
|
300
|
-
className:
|
310
|
+
className: "custom-scroll",
|
301
311
|
children: [/*#__PURE__*/_jsx(TableComp, {
|
302
312
|
className: readOnly ? "readOnly" : "",
|
303
313
|
sx: {
|
@@ -335,13 +345,15 @@ const Table = props => {
|
|
335
345
|
handleAction: handleAction,
|
336
346
|
exandTools: exandTools,
|
337
347
|
openSetttings: openSetttings,
|
338
|
-
hideTools: hideTools
|
348
|
+
hideTools: hideTools,
|
349
|
+
translation: translation
|
339
350
|
}), /*#__PURE__*/_jsx(MoreTableSettings, {
|
340
351
|
exandTools: exandTools,
|
341
352
|
handleAction: handleAction,
|
342
353
|
editorTheme: editorTheme,
|
343
354
|
setExpandTools: setExpandTools,
|
344
|
-
classes: classes
|
355
|
+
classes: classes,
|
356
|
+
customProps: customProps
|
345
357
|
}), openSetttings ? /*#__PURE__*/_jsx(TablePopup, {
|
346
358
|
element: tableProps?.styleProps || {},
|
347
359
|
onSave: onSave,
|
@@ -15,8 +15,11 @@ const TablePopup = props => {
|
|
15
15
|
styleType
|
16
16
|
} = props;
|
17
17
|
const styles = STYLE_TYPES[styleType] || tableStyle;
|
18
|
+
const {
|
19
|
+
translation
|
20
|
+
} = customProps;
|
18
21
|
return /*#__PURE__*/_jsx(StyleBuilder, {
|
19
|
-
title: "Table",
|
22
|
+
title: translation("Table"),
|
20
23
|
type: "gridStyle",
|
21
24
|
element: element,
|
22
25
|
onSave: onSave,
|
@@ -10,7 +10,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
11
11
|
const TableSelector = ({
|
12
12
|
editor,
|
13
|
-
icoBtnType
|
13
|
+
icoBtnType,
|
14
|
+
customProps
|
14
15
|
}) => {
|
15
16
|
const tableOptionsRef = useRef();
|
16
17
|
const [selection, setSelection] = useState();
|
@@ -20,6 +21,9 @@ const TableSelector = ({
|
|
20
21
|
column: 2
|
21
22
|
});
|
22
23
|
const table = new TableUtil(editor);
|
24
|
+
const {
|
25
|
+
translation
|
26
|
+
} = customProps;
|
23
27
|
const handleButtonClick = () => {
|
24
28
|
setSelection(editor.selection);
|
25
29
|
setShowOptions(true);
|
@@ -72,7 +76,7 @@ const TableSelector = ({
|
|
72
76
|
variant: "h6",
|
73
77
|
className: "popupTitle",
|
74
78
|
color: "primary",
|
75
|
-
children: "Table"
|
79
|
+
children: translation("Table")
|
76
80
|
}), /*#__PURE__*/_jsx(Grid, {
|
77
81
|
style: {
|
78
82
|
display: "flex"
|
@@ -110,7 +114,7 @@ const TableSelector = ({
|
|
110
114
|
fontSize: "14px",
|
111
115
|
fontWeight: 500
|
112
116
|
},
|
113
|
-
children: "
|
117
|
+
children: translation("numberOfRow")
|
114
118
|
})
|
115
119
|
}), /*#__PURE__*/_jsx(TextField, {
|
116
120
|
fullWidth: true,
|
@@ -137,7 +141,7 @@ const TableSelector = ({
|
|
137
141
|
fontSize: "14px",
|
138
142
|
fontWeight: 500
|
139
143
|
},
|
140
|
-
children: "
|
144
|
+
children: translation("numberOfCoumns")
|
141
145
|
})
|
142
146
|
}), /*#__PURE__*/_jsx(TextField, {
|
143
147
|
fullWidth: true,
|
@@ -158,11 +162,11 @@ const TableSelector = ({
|
|
158
162
|
children: [/*#__PURE__*/_jsx(Button, {
|
159
163
|
onClick: onCancel,
|
160
164
|
className: "secondaryBtn",
|
161
|
-
children: "Cancel"
|
165
|
+
children: translation("Cancel")
|
162
166
|
}), /*#__PURE__*/_jsx(Button, {
|
163
167
|
onClick: handleInsert,
|
164
168
|
className: "primaryBtn",
|
165
|
-
children: "Save"
|
169
|
+
children: translation("Save")
|
166
170
|
})]
|
167
171
|
})]
|
168
172
|
})
|
@@ -67,7 +67,8 @@ export function TableToolOnDrag({
|
|
67
67
|
theme,
|
68
68
|
dragType,
|
69
69
|
handleToolAction,
|
70
|
-
hideDelete
|
70
|
+
hideDelete,
|
71
|
+
translation
|
71
72
|
}) {
|
72
73
|
const classes = Styles(theme);
|
73
74
|
const tools = getTools(dragType, hideDelete);
|
@@ -81,12 +82,14 @@ export function TableToolOnDrag({
|
|
81
82
|
btnProps: {
|
82
83
|
onMouseDown: e => e.stopPropagation(),
|
83
84
|
onMouseUp: e => e.stopPropagation()
|
84
|
-
}
|
85
|
+
},
|
86
|
+
translation: translation
|
85
87
|
});
|
86
88
|
}
|
87
89
|
function TableTool({
|
88
90
|
theme,
|
89
|
-
handleToolAction
|
91
|
+
handleToolAction,
|
92
|
+
translation
|
90
93
|
}) {
|
91
94
|
const classes = Styles(theme);
|
92
95
|
return /*#__PURE__*/_jsx(CustomSelect, {
|
@@ -95,7 +98,8 @@ function TableTool({
|
|
95
98
|
options: wholeTableTools,
|
96
99
|
onSend: (value, option) => {
|
97
100
|
handleToolAction(value, option);
|
98
|
-
}
|
101
|
+
},
|
102
|
+
translation: translation
|
99
103
|
});
|
100
104
|
}
|
101
105
|
export default TableTool;
|
@@ -1,9 +1,16 @@
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
2
|
-
import { Editor
|
2
|
+
import { Editor } from "slate";
|
3
3
|
import { useSlate } from "slate-react";
|
4
4
|
import { getNodeText } from "../../utils/helper";
|
5
|
+
import { Text } from "slate";
|
5
6
|
import { jsx as _jsx } from "react/jsx-runtime";
|
6
7
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
8
|
+
const isEmptyTextNode = node => {
|
9
|
+
if (Text.isText(node)) {
|
10
|
+
return !node.text.trim();
|
11
|
+
}
|
12
|
+
return false;
|
13
|
+
};
|
7
14
|
const Title = props => {
|
8
15
|
const {
|
9
16
|
attributes,
|
@@ -11,8 +18,8 @@ const Title = props => {
|
|
11
18
|
element,
|
12
19
|
customProps
|
13
20
|
} = props;
|
14
|
-
const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
|
15
21
|
useDetectExitFromTitle(element, customProps?.getTitleSaveData);
|
22
|
+
const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
|
16
23
|
return /*#__PURE__*/_jsxs("div", {
|
17
24
|
...attributes,
|
18
25
|
placeholder: "Title",
|
@@ -50,10 +57,4 @@ const useDetectExitFromTitle = (titleNode, onSaveTitle) => {
|
|
50
57
|
}
|
51
58
|
}, [editor.selection]);
|
52
59
|
return null;
|
53
|
-
};
|
54
|
-
const isEmptyTextNode = node => {
|
55
|
-
if (Text.isText(node)) {
|
56
|
-
return !node.text.trim();
|
57
|
-
}
|
58
|
-
return false;
|
59
60
|
};
|
@@ -13,6 +13,9 @@ const TopBannerButton = props => {
|
|
13
13
|
customProps
|
14
14
|
} = props;
|
15
15
|
const [open, setOpen] = useState(false);
|
16
|
+
const {
|
17
|
+
translation
|
18
|
+
} = customProps;
|
16
19
|
const onSelectImage = url => {
|
17
20
|
if (url) {
|
18
21
|
insertTopBanner(editor, {
|
@@ -29,7 +32,7 @@ const TopBannerButton = props => {
|
|
29
32
|
};
|
30
33
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
31
34
|
children: [/*#__PURE__*/_jsx(ToolbarIcon, {
|
32
|
-
title: "Top Banner",
|
35
|
+
title: translation("Top Banner"),
|
33
36
|
onClick: handleClick,
|
34
37
|
icon: /*#__PURE__*/_jsx(Icon, {
|
35
38
|
icon: "topbanner"
|
@@ -34,7 +34,8 @@ const VariableButton = props => {
|
|
34
34
|
PaperProps: {
|
35
35
|
style: {
|
36
36
|
maxHeight: 300,
|
37
|
-
overflowY: "auto"
|
37
|
+
overflowY: "auto",
|
38
|
+
transformOrigin: 'top left'
|
38
39
|
},
|
39
40
|
sx: {
|
40
41
|
"&::-webkit-scrollbar-track": {
|
@@ -44,6 +45,14 @@ const VariableButton = props => {
|
|
44
45
|
borderRadius: "16px"
|
45
46
|
}
|
46
47
|
}
|
48
|
+
},
|
49
|
+
anchorOrigin: {
|
50
|
+
vertical: 'bottom',
|
51
|
+
horizontal: 'right'
|
52
|
+
},
|
53
|
+
transformOrigin: {
|
54
|
+
vertical: 'top',
|
55
|
+
horizontal: 'right'
|
47
56
|
}
|
48
57
|
},
|
49
58
|
children: [/*#__PURE__*/_jsx(MenuItem, {
|
@@ -26,7 +26,8 @@ const MiniEditor = props => {
|
|
26
26
|
className,
|
27
27
|
otherProps,
|
28
28
|
onSave,
|
29
|
-
theme
|
29
|
+
theme,
|
30
|
+
translation
|
30
31
|
} = props;
|
31
32
|
const {
|
32
33
|
CHARACTERS = []
|
@@ -41,11 +42,16 @@ const MiniEditor = props => {
|
|
41
42
|
const [value, setValue] = useState(ensureWrappedVariables(updatedContent));
|
42
43
|
const [deboundedValue] = useDebounce(value, 500);
|
43
44
|
const isReadOnly = readOnly === "readonly";
|
45
|
+
const {
|
46
|
+
translationMock
|
47
|
+
} = otherProps;
|
48
|
+
const dummyTranslation = () => {};
|
44
49
|
const customProps = {
|
45
50
|
...(otherProps || {}),
|
46
51
|
readOnly: isReadOnly,
|
47
52
|
editorPlaceholder: miniEditorPlaceholder,
|
48
|
-
page_id: id
|
53
|
+
page_id: id,
|
54
|
+
translation: translation || translationMock || dummyTranslation
|
49
55
|
};
|
50
56
|
const [mentions, setMentions] = useMentions({
|
51
57
|
editor,
|
@@ -58,7 +64,8 @@ const MiniEditor = props => {
|
|
58
64
|
} = mentions;
|
59
65
|
const chars = type ? Shorthands[type]({
|
60
66
|
...mentions,
|
61
|
-
CHARACTERS
|
67
|
+
CHARACTERS,
|
68
|
+
translation: translation || translationMock
|
62
69
|
}) : [];
|
63
70
|
useEffect(() => {
|
64
71
|
if (onSave && isInteracted) {
|
@@ -133,7 +133,7 @@ const editorStyles = ({
|
|
133
133
|
},
|
134
134
|
"& .accordion-summary-collapse-btn": {
|
135
135
|
padding: "4px",
|
136
|
-
width:
|
136
|
+
width: "5px"
|
137
137
|
},
|
138
138
|
"& .workflow-icon-btn": {
|
139
139
|
pointerEvents: "none",
|
@@ -242,7 +242,7 @@ const editorStyles = ({
|
|
242
242
|
}
|
243
243
|
},
|
244
244
|
"& .section-tw": {
|
245
|
-
background:
|
245
|
+
background: "transparent !important",
|
246
246
|
"& button": {
|
247
247
|
padding: "2px",
|
248
248
|
borderRadius: "0px",
|
@@ -291,8 +291,8 @@ const editorStyles = ({
|
|
291
291
|
}
|
292
292
|
},
|
293
293
|
"& ::selection": {
|
294
|
-
background:
|
295
|
-
color:
|
294
|
+
background: "rgba(35, 131, 226, 0.35)!important",
|
295
|
+
color: "inherit"
|
296
296
|
},
|
297
297
|
"&.readOnlyContainer": {
|
298
298
|
"& .max-content": {
|
@@ -302,7 +302,7 @@ const editorStyles = ({
|
|
302
302
|
},
|
303
303
|
fullScreenWrapper: {
|
304
304
|
"& .editor-wrapper": {
|
305
|
-
paddingTop:
|
305
|
+
paddingTop: "20px"
|
306
306
|
},
|
307
307
|
"& .MuiDialog-paper, & .MuiPopover-paper": {
|
308
308
|
background: `${theme?.palette?.editor?.background} !important`
|
@@ -59,7 +59,8 @@ const BasicToolbar = props => {
|
|
59
59
|
children: fontStyle?.map((m, i) => {
|
60
60
|
return /*#__PURE__*/_jsx(MarkButton, {
|
61
61
|
editor: editor,
|
62
|
-
...m
|
62
|
+
...m,
|
63
|
+
customProps: customProps
|
63
64
|
}, `pptool_mark_${i}_${m.id}`);
|
64
65
|
})
|
65
66
|
}), !hideLink && /*#__PURE__*/_jsx(Grid, {
|
@@ -10,8 +10,12 @@ const BlockButton = props => {
|
|
10
10
|
const {
|
11
11
|
editor,
|
12
12
|
format,
|
13
|
-
title
|
13
|
+
title,
|
14
|
+
customProps
|
14
15
|
} = props;
|
16
|
+
const {
|
17
|
+
translation
|
18
|
+
} = customProps;
|
15
19
|
const isMark = MARK_TYPES?.indexOf(format) >= 0;
|
16
20
|
const isActive = isMark ? isMarkActive(editor, format) : isBlockActive(editor, format);
|
17
21
|
const {
|
@@ -29,7 +33,7 @@ const BlockButton = props => {
|
|
29
33
|
toggleBlock(editor, format);
|
30
34
|
}
|
31
35
|
},
|
32
|
-
title: title,
|
36
|
+
title: translation(title),
|
33
37
|
sx: classes.textAlignButtons,
|
34
38
|
style: {
|
35
39
|
color: "#64748B"
|