@flozy/editor 9.4.2 → 9.4.3
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.
@@ -67,7 +67,8 @@ const MoreTableSettings = props => {
|
|
67
67
|
sx: classes.mobileToolDrawer,
|
68
68
|
children: /*#__PURE__*/_jsx(ToolTableComponent, {
|
69
69
|
handleAction: handleAction,
|
70
|
-
editorTheme: editorTheme
|
70
|
+
editorTheme: editorTheme,
|
71
|
+
translation: translation
|
71
72
|
})
|
72
73
|
})
|
73
74
|
}) : /*#__PURE__*/_jsx(Popper, {
|
@@ -99,7 +100,8 @@ const ToolBar = props => {
|
|
99
100
|
handleAction,
|
100
101
|
exandTools,
|
101
102
|
openSetttings,
|
102
|
-
hideTools
|
103
|
+
hideTools,
|
104
|
+
translation
|
103
105
|
} = props;
|
104
106
|
const {
|
105
107
|
getSelectedCells
|
@@ -112,7 +114,7 @@ const ToolBar = props => {
|
|
112
114
|
sx: classes.tableToolBar,
|
113
115
|
children: !hideTools.includes("settings") ? /*#__PURE__*/_jsxs(_Fragment, {
|
114
116
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
115
|
-
title: "Settings",
|
117
|
+
title: translation("Settings"),
|
116
118
|
arrow: true,
|
117
119
|
onClick: () => handleAction("settings"),
|
118
120
|
children: /*#__PURE__*/_jsx(IconButton, {
|
@@ -120,7 +122,7 @@ const ToolBar = props => {
|
|
120
122
|
children: /*#__PURE__*/_jsx(SettingsIcon, {})
|
121
123
|
})
|
122
124
|
}), /*#__PURE__*/_jsx(Tooltip, {
|
123
|
-
title: "Show Tools",
|
125
|
+
title: translation("Show Tools"),
|
124
126
|
arrow: true,
|
125
127
|
onClick: handleExpand,
|
126
128
|
children: /*#__PURE__*/_jsx(IconButton, {
|
@@ -154,7 +156,8 @@ const Table = props => {
|
|
154
156
|
const {
|
155
157
|
readOnly,
|
156
158
|
isMobile,
|
157
|
-
hideTools = []
|
159
|
+
hideTools = [],
|
160
|
+
translation
|
158
161
|
} = customProps;
|
159
162
|
const [openSetttings, setOpenSettings] = useState(false);
|
160
163
|
const [exandTools, setExpandTools] = useState(null);
|
@@ -342,7 +345,8 @@ const Table = props => {
|
|
342
345
|
handleAction: handleAction,
|
343
346
|
exandTools: exandTools,
|
344
347
|
openSetttings: openSetttings,
|
345
|
-
hideTools: hideTools
|
348
|
+
hideTools: hideTools,
|
349
|
+
translation: translation
|
346
350
|
}), /*#__PURE__*/_jsx(MoreTableSettings, {
|
347
351
|
exandTools: exandTools,
|
348
352
|
handleAction: handleAction,
|
@@ -287,7 +287,7 @@ const TableCell = props => {
|
|
287
287
|
minWidth: width,
|
288
288
|
maxWidth: width
|
289
289
|
};
|
290
|
-
const cellBorderColor = borderColor || rowProps?.borderColor || parentProps?.borderColor
|
290
|
+
const cellBorderColor = borderColor || entireBorderColor || rowProps?.borderColor || parentProps?.borderColor;
|
291
291
|
const selectCurrentCell = () => {
|
292
292
|
const cellPath = Editor.start(editor, path);
|
293
293
|
const selection = {
|
@@ -11,6 +11,9 @@ import useEditorScroll from "../../hooks/useEditorScroll";
|
|
11
11
|
import { isCarouselSelected } from "../../helper";
|
12
12
|
import { hideSlateSelection } from "../../utils/helper";
|
13
13
|
import { jsx as _jsx } from "react/jsx-runtime";
|
14
|
+
const isSlateDOM = event => {
|
15
|
+
return event.target.getAttribute("data-slate-string") === "true";
|
16
|
+
};
|
14
17
|
const PopupTool = props => {
|
15
18
|
const {
|
16
19
|
theme,
|
@@ -100,6 +103,9 @@ const PopupTool = props => {
|
|
100
103
|
onClickAway: e => {
|
101
104
|
// close the mini toolbar, if user clicks outside the editor (in Flozy app.)
|
102
105
|
|
106
|
+
if (isSlateDOM(e)) {
|
107
|
+
return;
|
108
|
+
}
|
103
109
|
const wrapper = document.getElementById("slate-wrapper-scroll-container");
|
104
110
|
const isInsideWrapper = wrapper && wrapper.contains(e.target);
|
105
111
|
if (isInsideWrapper) {
|