@fileverse-dev/fortune-react 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/ConditionFormat/index.css +0 -2
- package/es/components/ContextMenu/Menu.d.ts +0 -1
- package/es/components/ContextMenu/Menu.js +2 -5
- package/es/components/ContextMenu/index.css +1 -4
- package/es/components/ContextMenu/index.js +8 -35
- package/es/components/DataVerification/ColorPicker.js +2 -2
- package/es/components/DataVerification/DropdownList.js +13 -3
- package/es/components/DataVerification/DropdownOption.js +14 -1
- package/es/components/DataVerification/RangeDialog.js +3 -0
- package/es/components/DataVerification/index.css +18 -4
- package/es/components/DataVerification/index.js +29 -13
- package/es/components/SheetOverlay/ColumnHeader.js +6 -17
- package/es/components/SheetOverlay/FormulaSearch/index.css +1 -0
- package/es/components/SheetOverlay/FormulaSearch/index.js +1 -1
- package/es/components/SheetOverlay/RowHeader.js +5 -5
- package/es/components/SheetOverlay/index.css +24 -7
- package/es/components/Toolbar/Combo.js +2 -5
- package/es/components/Toolbar/Select.js +1 -1
- package/es/components/Toolbar/index.css +1 -21
- package/es/components/Toolbar/index.js +1 -2
- package/lib/components/ConditionFormat/index.css +0 -2
- package/lib/components/ContextMenu/Menu.d.ts +0 -1
- package/lib/components/ContextMenu/Menu.js +2 -5
- package/lib/components/ContextMenu/index.css +1 -4
- package/lib/components/ContextMenu/index.js +7 -34
- package/lib/components/DataVerification/ColorPicker.js +2 -2
- package/lib/components/DataVerification/DropdownList.js +13 -3
- package/lib/components/DataVerification/DropdownOption.js +14 -1
- package/lib/components/DataVerification/RangeDialog.js +3 -0
- package/lib/components/DataVerification/index.css +18 -4
- package/lib/components/DataVerification/index.js +29 -13
- package/lib/components/SheetOverlay/ColumnHeader.js +5 -15
- package/lib/components/SheetOverlay/FormulaSearch/index.css +1 -0
- package/lib/components/SheetOverlay/FormulaSearch/index.js +1 -1
- package/lib/components/SheetOverlay/RowHeader.js +4 -3
- package/lib/components/SheetOverlay/index.css +24 -7
- package/lib/components/Toolbar/Combo.js +1 -4
- package/lib/components/Toolbar/Select.js +1 -1
- package/lib/components/Toolbar/index.css +1 -21
- package/package.json +2 -2
|
@@ -3,7 +3,6 @@ type Props = React.PropsWithChildren<{
|
|
|
3
3
|
onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>, container: HTMLDivElement) => void;
|
|
4
4
|
onMouseLeave?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>, container: HTMLDivElement) => void;
|
|
5
5
|
onMouseEnter?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>, container: HTMLDivElement) => void;
|
|
6
|
-
isActive?: boolean;
|
|
7
6
|
}>;
|
|
8
7
|
declare const Menu: React.FC<Props>;
|
|
9
8
|
export default Menu;
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
import { cn } from "@fileverse/ui";
|
|
2
1
|
import React, { useRef } from "react";
|
|
3
2
|
var Menu = function Menu(_a) {
|
|
4
3
|
var _onClick = _a.onClick,
|
|
5
4
|
_onMouseLeave = _a.onMouseLeave,
|
|
6
5
|
_onMouseEnter = _a.onMouseEnter,
|
|
7
|
-
children = _a.children
|
|
8
|
-
_b = _a.isActive,
|
|
9
|
-
isActive = _b === void 0 ? false : _b;
|
|
6
|
+
children = _a.children;
|
|
10
7
|
var containerRef = useRef(null);
|
|
11
8
|
return /*#__PURE__*/React.createElement("div", {
|
|
12
9
|
ref: containerRef,
|
|
13
|
-
className:
|
|
10
|
+
className: "luckysheet-cols-menuitem luckysheet-mousedown-cancel",
|
|
14
11
|
onClick: function onClick(e) {
|
|
15
12
|
return _onClick === null || _onClick === void 0 ? void 0 : _onClick(e, containerRef.current);
|
|
16
13
|
},
|
|
@@ -82,10 +82,7 @@
|
|
|
82
82
|
cursor: pointer;
|
|
83
83
|
list-style: none;
|
|
84
84
|
margin: 0;
|
|
85
|
-
padding
|
|
86
|
-
padding-left: 8px !important;
|
|
87
|
-
padding-top: 6px !important;
|
|
88
|
-
padding-bottom: 6px !important;
|
|
85
|
+
padding: 8px !important;
|
|
89
86
|
white-space: nowrap;
|
|
90
87
|
user-select: none;
|
|
91
88
|
display: flex;
|
|
@@ -115,7 +115,7 @@ var __generator = this && this.__generator || function (thisArg, body) {
|
|
|
115
115
|
};
|
|
116
116
|
import { locale, handleCopy, handlePasteByClick, deleteRowCol, insertRowCol, removeActiveImage, deleteSelectedCellText, sortSelection, createFilter, showImgChooser, handleLink, hideSelected, showSelected, getSheetIndex, api, isAllowEdit, jfrefreshgrid, newComment, getFreezeState, toggleFreeze, clearFilter, clearSelectedCellFormat, clearColumnsCellsFormat, clearRowsCellsFormat } from "@fileverse-dev/fortune-core";
|
|
117
117
|
import _ from "lodash";
|
|
118
|
-
import React, { useContext, useRef, useCallback, useLayoutEffect
|
|
118
|
+
import React, { useContext, useRef, useCallback, useLayoutEffect } from "react";
|
|
119
119
|
import regeneratorRuntime from "regenerator-runtime";
|
|
120
120
|
import Tippy from "@tippyjs/react";
|
|
121
121
|
import { LucideIcon } from "@fileverse/ui";
|
|
@@ -149,9 +149,6 @@ var ContextMenu = function ContextMenu() {
|
|
|
149
149
|
info = _b.info,
|
|
150
150
|
toolbar = _b.toolbar,
|
|
151
151
|
splitText = _b.splitText;
|
|
152
|
-
var _c = useState(""),
|
|
153
|
-
activeMenu = _c[0],
|
|
154
|
-
setActiveMenu = _c[1];
|
|
155
152
|
var addRowColRightAvobe = function addRowColRightAvobe(type, direction) {
|
|
156
153
|
var _a, _b, _c, _d, _e, _f;
|
|
157
154
|
var positionCol = (_c = (_b = (_a = context.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.column) === null || _c === void 0 ? void 0 : _c[0];
|
|
@@ -832,12 +829,6 @@ var ContextMenu = function ContextMenu() {
|
|
|
832
829
|
arrow: false,
|
|
833
830
|
zIndex: 3000,
|
|
834
831
|
appendTo: document.body,
|
|
835
|
-
onShow: function onShow() {
|
|
836
|
-
setActiveMenu("sort");
|
|
837
|
-
},
|
|
838
|
-
onHide: function onHide() {
|
|
839
|
-
if (activeMenu === "sort") setActiveMenu("");
|
|
840
|
-
},
|
|
841
832
|
content: /*#__PURE__*/React.createElement("div", {
|
|
842
833
|
className: "fortune-toolbar-select",
|
|
843
834
|
style: {
|
|
@@ -876,9 +867,7 @@ var ContextMenu = function ContextMenu() {
|
|
|
876
867
|
}), /*#__PURE__*/React.createElement("p", null, sort.desc))))),
|
|
877
868
|
trigger: "mouseenter focus",
|
|
878
869
|
hideOnClick: false
|
|
879
|
-
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, {
|
|
880
|
-
isActive: activeMenu === "sort"
|
|
881
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
870
|
+
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, null, /*#__PURE__*/React.createElement("div", {
|
|
882
871
|
className: "flex items-center justify-between w-full"
|
|
883
872
|
}, /*#__PURE__*/React.createElement("div", {
|
|
884
873
|
className: "context-item"
|
|
@@ -918,7 +907,7 @@ var ContextMenu = function ContextMenu() {
|
|
|
918
907
|
}, /*#__PURE__*/React.createElement("div", {
|
|
919
908
|
className: "context-item p-2 w-full",
|
|
920
909
|
style: {
|
|
921
|
-
height: "
|
|
910
|
+
height: "40px"
|
|
922
911
|
}
|
|
923
912
|
}, /*#__PURE__*/React.createElement(LucideIcon, {
|
|
924
913
|
name: "Filter",
|
|
@@ -933,22 +922,14 @@ var ContextMenu = function ContextMenu() {
|
|
|
933
922
|
}, /*#__PURE__*/React.createElement("div", {
|
|
934
923
|
className: "context-item p-2 w-full",
|
|
935
924
|
style: {
|
|
936
|
-
height: "
|
|
925
|
+
height: "40px"
|
|
937
926
|
}
|
|
938
927
|
}, /*#__PURE__*/React.createElement(LucideIcon, {
|
|
939
928
|
name: "Eraser"
|
|
940
929
|
}), /*#__PURE__*/React.createElement("p", null, filter.clearFilter))))),
|
|
941
930
|
trigger: "mouseenter focus",
|
|
942
|
-
hideOnClick: false
|
|
943
|
-
|
|
944
|
-
setActiveMenu("filter");
|
|
945
|
-
},
|
|
946
|
-
onHide: function onHide() {
|
|
947
|
-
if (activeMenu === "filter") setActiveMenu("");
|
|
948
|
-
}
|
|
949
|
-
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, {
|
|
950
|
-
isActive: activeMenu === "filter"
|
|
951
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
931
|
+
hideOnClick: false
|
|
932
|
+
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, null, /*#__PURE__*/React.createElement("div", {
|
|
952
933
|
className: "flex items-center justify-between w-full"
|
|
953
934
|
}, /*#__PURE__*/React.createElement("div", {
|
|
954
935
|
className: "context-item"
|
|
@@ -1002,12 +983,6 @@ var ContextMenu = function ContextMenu() {
|
|
|
1002
983
|
arrow: false,
|
|
1003
984
|
zIndex: 3000,
|
|
1004
985
|
appendTo: document.body,
|
|
1005
|
-
onShow: function onShow() {
|
|
1006
|
-
setActiveMenu("conditionFormat");
|
|
1007
|
-
},
|
|
1008
|
-
onHide: function onHide() {
|
|
1009
|
-
if (activeMenu === "conditionFormat") setActiveMenu("");
|
|
1010
|
-
},
|
|
1011
986
|
content: /*#__PURE__*/React.createElement("div", {
|
|
1012
987
|
style: {
|
|
1013
988
|
minWidth: 220
|
|
@@ -1018,9 +993,7 @@ var ContextMenu = function ContextMenu() {
|
|
|
1018
993
|
})),
|
|
1019
994
|
trigger: "mouseenter focus",
|
|
1020
995
|
hideOnClick: false
|
|
1021
|
-
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, {
|
|
1022
|
-
isActive: activeMenu === "conditionFormat"
|
|
1023
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
996
|
+
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, null, /*#__PURE__*/React.createElement("div", {
|
|
1024
997
|
className: "flex items-center justify-between w-full"
|
|
1025
998
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1026
999
|
className: "flex items-center gap-2 context-item"
|
|
@@ -1056,7 +1029,7 @@ var ContextMenu = function ContextMenu() {
|
|
|
1056
1029
|
}), /*#__PURE__*/React.createElement("p", null, "Clear formatting")));
|
|
1057
1030
|
}
|
|
1058
1031
|
return null;
|
|
1059
|
-
}, [context, setContext, refs.globalCache, rightclick, showAlert, showDialog, drag.noMulti, info.tipRowHeightLimit, info.tipColumnWidthLimit, generalDialog.partiallyError, generalDialog.readOnlyError, generalDialog.dataNullError
|
|
1032
|
+
}, [context, setContext, refs.globalCache, rightclick, showAlert, showDialog, drag.noMulti, info.tipRowHeightLimit, info.tipColumnWidthLimit, generalDialog.partiallyError, generalDialog.readOnlyError, generalDialog.dataNullError]);
|
|
1060
1033
|
useLayoutEffect(function () {
|
|
1061
1034
|
var _a;
|
|
1062
1035
|
if (!containerRef.current) {
|
|
@@ -104,14 +104,14 @@ export var ColorSection = function ColorSection(_a) {
|
|
|
104
104
|
title: color.name
|
|
105
105
|
}));
|
|
106
106
|
}), /*#__PURE__*/React.createElement("div", {
|
|
107
|
-
className: "w-full flex justify-center",
|
|
107
|
+
className: "w-full flex justify-center color-picker-reset-btn",
|
|
108
108
|
onClick: function onClick() {
|
|
109
109
|
onPick("228, 232, 237");
|
|
110
110
|
setIsOpen(false);
|
|
111
111
|
}
|
|
112
112
|
}, /*#__PURE__*/React.createElement(IconButton, {
|
|
113
113
|
icon: "DropletOff",
|
|
114
|
-
size: "
|
|
114
|
+
size: "sm",
|
|
115
115
|
variant: "ghost",
|
|
116
116
|
className: "color-picker-icon"
|
|
117
117
|
}), /*#__PURE__*/React.createElement(Button, {
|
|
@@ -146,8 +146,15 @@ var DropDownList = function DropDownList() {
|
|
|
146
146
|
display: isMul && selected.indexOf(v) >= 0 ? "inline" : "none"
|
|
147
147
|
}
|
|
148
148
|
}), v);
|
|
149
|
+
}), /*#__PURE__*/React.createElement("hr", {
|
|
150
|
+
style: {
|
|
151
|
+
border: "none",
|
|
152
|
+
height: "1px",
|
|
153
|
+
background: "hsl(var(--color-bg-default-hover, #F2F4F5))",
|
|
154
|
+
marginBottom: "4px"
|
|
155
|
+
}
|
|
149
156
|
}), /*#__PURE__*/React.createElement("div", {
|
|
150
|
-
className: "w-full flex align-center",
|
|
157
|
+
className: "w-full flex align-center edit-dropdown",
|
|
151
158
|
style: {
|
|
152
159
|
height: "28px"
|
|
153
160
|
},
|
|
@@ -159,11 +166,14 @@ var DropDownList = function DropDownList() {
|
|
|
159
166
|
icon: "Pencil",
|
|
160
167
|
size: "sm",
|
|
161
168
|
variant: "ghost",
|
|
162
|
-
className: "color-picker-icon
|
|
169
|
+
className: "color-picker-icon color-picker edit-dropdown",
|
|
170
|
+
style: {
|
|
171
|
+
paddingTop: "0px !important"
|
|
172
|
+
}
|
|
163
173
|
}), /*#__PURE__*/React.createElement(Button, {
|
|
164
174
|
size: "md",
|
|
165
175
|
variant: "ghost",
|
|
166
|
-
className: "color-picker-reset color-picker"
|
|
176
|
+
className: "color-picker-reset color-picker edit-dropdown"
|
|
167
177
|
}, "Edit")));
|
|
168
178
|
};
|
|
169
179
|
export default DropDownList;
|
|
@@ -47,7 +47,20 @@ var DynamicInputList = function DynamicInputList(_a) {
|
|
|
47
47
|
});
|
|
48
48
|
};
|
|
49
49
|
useEffect(function () {
|
|
50
|
-
|
|
50
|
+
if (optionItems.length === 0) {
|
|
51
|
+
var nextNum_1 = 1;
|
|
52
|
+
setOptionItems(function (prev) {
|
|
53
|
+
return __spreadArray(__spreadArray([], prev, true), [{
|
|
54
|
+
id: createId(),
|
|
55
|
+
value: "Option ".concat(nextNum_1),
|
|
56
|
+
color: "228, 232, 237"
|
|
57
|
+
}, {
|
|
58
|
+
id: createId(),
|
|
59
|
+
value: "Option ".concat(nextNum_1 + 1),
|
|
60
|
+
color: "228, 232, 237"
|
|
61
|
+
}], false);
|
|
62
|
+
});
|
|
63
|
+
}
|
|
51
64
|
}, []);
|
|
52
65
|
var handleRemove = function handleRemove(index) {
|
|
53
66
|
setOptionItems(function (prev) {
|
|
@@ -18,10 +18,12 @@ var RangeDialog = function RangeDialog() {
|
|
|
18
18
|
rangeTxt2 = _c[0],
|
|
19
19
|
setRangeTxt2 = _c[1];
|
|
20
20
|
var close = useCallback(function () {
|
|
21
|
+
var _a;
|
|
21
22
|
setContext(function (ctx) {
|
|
22
23
|
ctx.rangeDialog.show = false;
|
|
23
24
|
ctx.rangeDialog.singleSelect = false;
|
|
24
25
|
});
|
|
26
|
+
(_a = document.getElementById("data-verification-button")) === null || _a === void 0 ? void 0 : _a.click();
|
|
25
27
|
if (!context.rangeDialog) return;
|
|
26
28
|
var rangeDialogType = context.rangeDialog.type;
|
|
27
29
|
if (rangeDialogType.indexOf("between") >= 0) {
|
|
@@ -90,6 +92,7 @@ var RangeDialog = function RangeDialog() {
|
|
|
90
92
|
minWidth: "80px"
|
|
91
93
|
},
|
|
92
94
|
onClick: function onClick() {
|
|
95
|
+
console.log("rangeTxt2", rangeTxt2);
|
|
93
96
|
setContext(function (ctx) {
|
|
94
97
|
ctx.rangeDialog.rangeTxt = rangeTxt2;
|
|
95
98
|
});
|
|
@@ -201,6 +201,15 @@
|
|
|
201
201
|
min-width: 100px;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
.color-picker-reset-btn {
|
|
205
|
+
height: 30px;
|
|
206
|
+
border-radius: 6px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.color-picker-reset-btn:hover {
|
|
210
|
+
background: hsl(var(--color-bg-default-hover, #F2F4F5))!important;
|
|
211
|
+
}
|
|
212
|
+
|
|
204
213
|
.color-picker:hover {
|
|
205
214
|
background: hsl(var(--color-bg-default-hover, #F2F4F5))!important;
|
|
206
215
|
}
|
|
@@ -212,15 +221,20 @@
|
|
|
212
221
|
}
|
|
213
222
|
|
|
214
223
|
.color-picker-reset {
|
|
224
|
+
height: 30px !important;
|
|
225
|
+
padding-top: 0px !important;
|
|
226
|
+
padding-bottom: 0px !important;
|
|
215
227
|
min-width: 0px !important;
|
|
216
228
|
padding-left: 0px !important;
|
|
217
229
|
margin-left: 0px !important;
|
|
218
230
|
}
|
|
219
231
|
|
|
220
|
-
.
|
|
221
|
-
|
|
232
|
+
.edit-dropdown {
|
|
233
|
+
height: 28px!important;
|
|
234
|
+
border-radius: 5px;
|
|
222
235
|
}
|
|
223
236
|
|
|
224
|
-
.
|
|
225
|
-
|
|
237
|
+
.edit-dropdown:hover {
|
|
238
|
+
height: 28px!important;
|
|
239
|
+
background: hsl(var(--color-bg-default-hover, #F2F4F5))!important;
|
|
226
240
|
}
|
|
@@ -215,6 +215,18 @@ var DataVerification = function DataVerification() {
|
|
|
215
215
|
}
|
|
216
216
|
});
|
|
217
217
|
}, []);
|
|
218
|
+
var rangeOnClick = function rangeOnClick() {
|
|
219
|
+
var _a;
|
|
220
|
+
(_a = document.getElementById("data-verification-button")) === null || _a === void 0 ? void 0 : _a.click();
|
|
221
|
+
hideDialog();
|
|
222
|
+
dataSelectRange("rangeTxt", context.dataVerification.dataRegulation.value1);
|
|
223
|
+
};
|
|
224
|
+
var rangeOnChange = function rangeOnChange(e) {
|
|
225
|
+
var value = e.target.value;
|
|
226
|
+
setContext(function (ctx) {
|
|
227
|
+
ctx.dataVerification.dataRegulation.rangeTxt = value;
|
|
228
|
+
});
|
|
229
|
+
};
|
|
218
230
|
return /*#__PURE__*/React.createElement("div", {
|
|
219
231
|
id: "fortune-data-verification"
|
|
220
232
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -230,23 +242,19 @@ var DataVerification = function DataVerification() {
|
|
|
230
242
|
}, dataVerification.cellRange), /*#__PURE__*/React.createElement(TextField, {
|
|
231
243
|
rightIcon: /*#__PURE__*/React.createElement(LucideIcon, {
|
|
232
244
|
name: "Grid2x2",
|
|
233
|
-
size: "sm"
|
|
245
|
+
size: "sm",
|
|
246
|
+
onClick: rangeOnClick,
|
|
247
|
+
onChange: rangeOnChange,
|
|
248
|
+
style: {
|
|
249
|
+
cursor: "pointer",
|
|
250
|
+
color: "#363B3F"
|
|
251
|
+
}
|
|
234
252
|
}),
|
|
235
253
|
"aria-hidden": "true",
|
|
236
254
|
readOnly: true,
|
|
237
255
|
value: (_a = context.dataVerification.dataRegulation) === null || _a === void 0 ? void 0 : _a.rangeTxt,
|
|
238
|
-
onChange:
|
|
239
|
-
|
|
240
|
-
setContext(function (ctx) {
|
|
241
|
-
ctx.dataVerification.dataRegulation.rangeTxt = value;
|
|
242
|
-
});
|
|
243
|
-
},
|
|
244
|
-
onClick: function onClick() {
|
|
245
|
-
var _a;
|
|
246
|
-
(_a = document.getElementById("data-verification-button")) === null || _a === void 0 ? void 0 : _a.click();
|
|
247
|
-
hideDialog();
|
|
248
|
-
dataSelectRange("rangeTxt", context.dataVerification.dataRegulation.value1);
|
|
249
|
-
}
|
|
256
|
+
onChange: rangeOnChange,
|
|
257
|
+
onClick: rangeOnClick
|
|
250
258
|
})), /*#__PURE__*/React.createElement("div", {
|
|
251
259
|
className: "flex flex-col"
|
|
252
260
|
}, /*#__PURE__*/React.createElement("div", {
|
|
@@ -299,9 +307,17 @@ var DataVerification = function DataVerification() {
|
|
|
299
307
|
}, /*#__PURE__*/React.createElement("span", {
|
|
300
308
|
className: "data-verification-checkbox-label"
|
|
301
309
|
}, dataVerification.selected), /*#__PURE__*/React.createElement(TextField, {
|
|
310
|
+
onMouseDown: function onMouseDown(e) {
|
|
311
|
+
e.stopPropagation();
|
|
312
|
+
e.target.focus();
|
|
313
|
+
},
|
|
314
|
+
onKeyDown: function onKeyDown(e) {
|
|
315
|
+
e.stopPropagation();
|
|
316
|
+
},
|
|
302
317
|
value: (_g = (_f = context.dataVerification) === null || _f === void 0 ? void 0 : _f.dataRegulation) === null || _g === void 0 ? void 0 : _g.value1,
|
|
303
318
|
placeholder: dataVerification.placeholder2,
|
|
304
319
|
onChange: function onChange(e) {
|
|
320
|
+
e.stopPropagation();
|
|
305
321
|
var value = e.target.value;
|
|
306
322
|
setContext(function (ctx) {
|
|
307
323
|
ctx.dataVerification.dataRegulation.value1 = value;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { colLocation, colLocationByIndex, selectTitlesMap, selectTitlesRange, handleColSizeHandleMouseDown, handleColumnHeaderMouseDown, isAllowEdit, getFlowdata, fixColumnStyleOverflowInFreeze, handleColFreezeHandleMouseDown, getSheetIndex, fixPositionOnFrozenCells, showSelected } from "@fileverse-dev/fortune-core";
|
|
2
|
-
import { api } from "@fileverse-dev/fortune-core";
|
|
1
|
+
import { colLocation, colLocationByIndex, selectTitlesMap, selectTitlesRange, handleColSizeHandleMouseDown, handleColumnHeaderMouseDown, isAllowEdit, getFlowdata, fixColumnStyleOverflowInFreeze, handleColFreezeHandleMouseDown, getSheetIndex, fixPositionOnFrozenCells, showSelected, api } from "@fileverse-dev/fortune-core";
|
|
3
2
|
import _ from "lodash";
|
|
4
3
|
import React, { useContext, useState, useRef, useCallback, useEffect, useMemo } from "react";
|
|
5
4
|
import WorkbookContext from "../../context";
|
|
@@ -217,10 +216,10 @@ var ColumnHeader = function ColumnHeader() {
|
|
|
217
216
|
}
|
|
218
217
|
}, hiddenPointers.map(function (item) {
|
|
219
218
|
return /*#__PURE__*/React.createElement("div", {
|
|
220
|
-
className: "flex gap-4 cursor-pointer hide-btn align-center",
|
|
219
|
+
className: "flex gap-4 cursor-pointer hide-btn align-center jusify-between",
|
|
221
220
|
style: {
|
|
222
221
|
height: context.columnHeaderHeight - 12,
|
|
223
|
-
left: "".concat(item.left -
|
|
222
|
+
left: "".concat(item.left - 15, "px")
|
|
224
223
|
},
|
|
225
224
|
onClick: function onClick(e) {
|
|
226
225
|
return showColumn(e, item);
|
|
@@ -236,18 +235,7 @@ var ColumnHeader = function ColumnHeader() {
|
|
|
236
235
|
}, /*#__PURE__*/React.createElement("path", {
|
|
237
236
|
d: "M0.164574 4.20629L3.54376 7.58548C3.7275 7.76922 4.04167 7.63909 4.04167 7.37924L4.04167 0.620865C4.04167 0.361018 3.7275 0.230885 3.54376 0.414625L0.164575 3.79381C0.0506717 3.90772 0.0506715 4.09239 0.164574 4.20629Z",
|
|
238
237
|
fill: "#363B3F"
|
|
239
|
-
})))
|
|
240
|
-
}), hiddenPointers.map(function (item) {
|
|
241
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
242
|
-
className: "flex gap-4 cursor-pointer hide-btn align-center",
|
|
243
|
-
style: {
|
|
244
|
-
height: context.columnHeaderHeight - 12,
|
|
245
|
-
left: "".concat(item.left + 6, "px")
|
|
246
|
-
},
|
|
247
|
-
onClick: function onClick(e) {
|
|
248
|
-
return showColumn(e, item);
|
|
249
|
-
}
|
|
250
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
238
|
+
}))), /*#__PURE__*/React.createElement("div", {
|
|
251
239
|
className: ""
|
|
252
240
|
}, /*#__PURE__*/React.createElement("svg", {
|
|
253
241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -306,12 +294,13 @@ var ColumnHeader = function ColumnHeader() {
|
|
|
306
294
|
c1 = _a.c1,
|
|
307
295
|
c2 = _a.c2;
|
|
308
296
|
return /*#__PURE__*/React.createElement("div", {
|
|
309
|
-
className: "fortune-col-header-selected
|
|
297
|
+
className: "fortune-col-header-selected",
|
|
310
298
|
key: i,
|
|
311
299
|
style: _.assign({
|
|
312
300
|
left: col_pre,
|
|
313
301
|
width: col - col_pre - 1,
|
|
314
302
|
display: "block",
|
|
303
|
+
backgroundColor: "#EFC703",
|
|
315
304
|
mixBlendMode: "multiply"
|
|
316
305
|
}, fixColumnStyleOverflowInFreeze(context, c1, c2, (_b = refs.globalCache.freezen) === null || _b === void 0 ? void 0 : _b[context.currentSheetId]))
|
|
317
306
|
});
|
|
@@ -53,7 +53,7 @@ var FormulaSearch = function FormulaSearch(props) {
|
|
|
53
53
|
});
|
|
54
54
|
if (_.isEmpty(context.functionCandidates) && _.isEmpty(context.defaultCandidates)) return null;
|
|
55
55
|
return /*#__PURE__*/React.createElement("div", {
|
|
56
|
-
className: "flex
|
|
56
|
+
className: "flex flex-col luckysheet-formula-search-c-p custom-scroll",
|
|
57
57
|
id: "luckysheet-formula-search-c-p",
|
|
58
58
|
style: {
|
|
59
59
|
top: top
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { rowLocation, rowLocationByIndex, selectTitlesMap, selectTitlesRange, handleContextMenu, handleRowHeaderMouseDown, handleRowSizeHandleMouseDown, fixRowStyleOverflowInFreeze, handleRowFreezeHandleMouseDown, getSheetIndex, showSelected, fixPositionOnFrozenCells } from "@fileverse-dev/fortune-core";
|
|
2
|
-
import { api } from "@fileverse-dev/fortune-core";
|
|
1
|
+
import { rowLocation, rowLocationByIndex, selectTitlesMap, selectTitlesRange, handleContextMenu, handleRowHeaderMouseDown, handleRowSizeHandleMouseDown, fixRowStyleOverflowInFreeze, handleRowFreezeHandleMouseDown, getSheetIndex, showSelected, fixPositionOnFrozenCells, api } from "@fileverse-dev/fortune-core";
|
|
3
2
|
import _ from "lodash";
|
|
4
3
|
import React, { useContext, useState, useRef, useCallback, useEffect, useMemo } from "react";
|
|
5
4
|
import WorkbookContext from "../../context";
|
|
@@ -207,9 +206,9 @@ var RowHeader = function RowHeader() {
|
|
|
207
206
|
onContextMenu: onContextMenu
|
|
208
207
|
}, hiddenPointers.map(function (item) {
|
|
209
208
|
return /*#__PURE__*/React.createElement("div", {
|
|
210
|
-
className: "flex flex-col gap-4 cursor-pointer align-center hide-btn-row
|
|
209
|
+
className: "flex flex-col gap-4 cursor-pointer align-center hide-btn-row",
|
|
211
210
|
style: {
|
|
212
|
-
top: "".concat(item.top -
|
|
211
|
+
top: "".concat(item.top - 15, "px"),
|
|
213
212
|
zIndex: 100
|
|
214
213
|
},
|
|
215
214
|
onClick: function onClick(e) {
|
|
@@ -266,12 +265,13 @@ var RowHeader = function RowHeader() {
|
|
|
266
265
|
r1 = _a.r1,
|
|
267
266
|
r2 = _a.r2;
|
|
268
267
|
return /*#__PURE__*/React.createElement("div", {
|
|
269
|
-
className: "fortune-row-header-selected
|
|
268
|
+
className: "fortune-row-header-selected",
|
|
270
269
|
key: i,
|
|
271
270
|
style: _.assign({
|
|
272
271
|
top: row_pre,
|
|
273
272
|
height: row - row_pre - 1,
|
|
274
273
|
display: "block",
|
|
274
|
+
backgroundColor: "#EFC703",
|
|
275
275
|
mixBlendMode: "multiply"
|
|
276
276
|
}, fixRowStyleOverflowInFreeze(context, r1, r2, (_b = refs.globalCache.freezen) === null || _b === void 0 ? void 0 : _b[context.currentSheetId]))
|
|
277
277
|
});
|
|
@@ -45,10 +45,12 @@
|
|
|
45
45
|
.fortune-row-header-selected {
|
|
46
46
|
position: absolute;
|
|
47
47
|
z-index: 10;
|
|
48
|
+
border-right: 1px solid #0188fb;
|
|
48
49
|
right: 0;
|
|
49
50
|
width: 100%;
|
|
50
51
|
margin-top: 2px;
|
|
51
52
|
display: none;
|
|
53
|
+
background-color: rgba(76, 76, 76, 0.1);
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
.fortune-col-header-wrap {
|
|
@@ -92,10 +94,12 @@
|
|
|
92
94
|
cursor: default;
|
|
93
95
|
position: absolute;
|
|
94
96
|
z-index: 10;
|
|
97
|
+
border-bottom: 1px solid #0188fb;
|
|
95
98
|
bottom: 0;
|
|
96
99
|
height: 100%;
|
|
97
100
|
margin-left: 0px;
|
|
98
101
|
display: none;
|
|
102
|
+
background-color: rgba(76, 76, 76, 0.1);
|
|
99
103
|
}
|
|
100
104
|
|
|
101
105
|
.fortune-left-top {
|
|
@@ -133,7 +137,7 @@
|
|
|
133
137
|
z-index: 14;
|
|
134
138
|
/*border:1px solid #fff;*/
|
|
135
139
|
margin: 0px 0 0 0px;
|
|
136
|
-
|
|
140
|
+
background: rgba(0, 80, 208, 0.15);
|
|
137
141
|
display: none;
|
|
138
142
|
}
|
|
139
143
|
|
|
@@ -195,9 +199,9 @@
|
|
|
195
199
|
z-index: 15;
|
|
196
200
|
border: 2.5px solid #efc703;
|
|
197
201
|
margin: -1px 0 0 -1px;
|
|
202
|
+
background: rgba(1, 136, 251, 0.15);
|
|
198
203
|
display: none;
|
|
199
204
|
box-sizing: content-box;
|
|
200
|
-
background: rgba(239, 199, 5, 0.02);
|
|
201
205
|
}
|
|
202
206
|
|
|
203
207
|
.luckysheet-cs-inner-border {
|
|
@@ -1009,16 +1013,22 @@
|
|
|
1009
1013
|
}
|
|
1010
1014
|
|
|
1011
1015
|
.hide-btn {
|
|
1012
|
-
padding-
|
|
1016
|
+
padding-left: 3px;
|
|
1017
|
+
padding-right: 3px;
|
|
1018
|
+
padding-top: 2px;
|
|
1013
1019
|
position: absolute;
|
|
1014
|
-
|
|
1020
|
+
width: 32px;
|
|
1015
1021
|
top: 5px;
|
|
1016
1022
|
z-index: 200;
|
|
1017
|
-
width: 9px;
|
|
1018
1023
|
}
|
|
1019
1024
|
|
|
1020
1025
|
.hide-btn:hover {
|
|
1021
|
-
|
|
1026
|
+
padding-left: 2px;
|
|
1027
|
+
padding-right: 2px;
|
|
1028
|
+
padding-top: 1px;
|
|
1029
|
+
background-color: rgba(255, 255, 255, 1);
|
|
1030
|
+
border-radius: var(--border-radius-sm, 4px);
|
|
1031
|
+
border: 1px solid #BDC4C8;
|
|
1022
1032
|
}
|
|
1023
1033
|
|
|
1024
1034
|
.rotate-row-icon {
|
|
@@ -1027,6 +1037,13 @@
|
|
|
1027
1037
|
|
|
1028
1038
|
.hide-btn-row {
|
|
1029
1039
|
position: absolute;
|
|
1030
|
-
|
|
1040
|
+
left: 4px;
|
|
1031
1041
|
z-index: 200;
|
|
1042
|
+
width: 12px;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.hide-btn-row:hover {
|
|
1046
|
+
background-color: white;
|
|
1047
|
+
border: 1px solid #BDC4C8;
|
|
1048
|
+
border-radius: 4px;
|
|
1032
1049
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useMemo, useRef, useState } from "react";
|
|
2
|
-
import { IconButton, Tooltip, Popover, PopoverContent, PopoverTrigger, cn, Button
|
|
2
|
+
import { IconButton, Tooltip, Popover, PopoverContent, PopoverTrigger, cn, Button } from "@fileverse/ui";
|
|
3
3
|
import SVGIcon from "../SVGIcon";
|
|
4
4
|
import { getLucideIcon } from ".";
|
|
5
5
|
var Combo = function Combo(_a) {
|
|
@@ -49,10 +49,7 @@ var Combo = function Combo(_a) {
|
|
|
49
49
|
height: 16
|
|
50
50
|
})) : (/*#__PURE__*/React.createElement("span", {
|
|
51
51
|
className: "fortune-toolbar-combo-text"
|
|
52
|
-
}, text !== undefined ? text : "")), /*#__PURE__*/React.createElement(
|
|
53
|
-
className: "w-[16px] h-[16px]",
|
|
54
|
-
name: "ChevronDown"
|
|
55
|
-
})))) : (/*#__PURE__*/React.createElement("span", null, iconId === "font-color" ? (/*#__PURE__*/React.createElement(Tooltip, {
|
|
52
|
+
}, text !== undefined ? text : ""))))) : (/*#__PURE__*/React.createElement("span", null, iconId === "font-color" ? (/*#__PURE__*/React.createElement(Tooltip, {
|
|
56
53
|
text: tooltip,
|
|
57
54
|
placement: "bottom"
|
|
58
55
|
}, /*#__PURE__*/React.createElement(Button, {
|
|
@@ -27,7 +27,7 @@ var Option = function Option(_a) {
|
|
|
27
27
|
}, iconId && /*#__PURE__*/React.createElement(SVGIcon, {
|
|
28
28
|
name: iconId
|
|
29
29
|
}), /*#__PURE__*/React.createElement("div", {
|
|
30
|
-
className: "fortuen-toolbar-text color-text-default text-body-sm
|
|
30
|
+
className: "fortuen-toolbar-text color-text-default text-body-sm"
|
|
31
31
|
}, children));
|
|
32
32
|
};
|
|
33
33
|
export { Option };
|
|
@@ -141,30 +141,14 @@
|
|
|
141
141
|
|
|
142
142
|
.fortune-toolbar-combo-button {
|
|
143
143
|
font-size: 12px;
|
|
144
|
-
padding-top: 4px;
|
|
145
|
-
padding-bottom: 4px;
|
|
146
|
-
padding-left: 8px;
|
|
147
|
-
padding-right: 8px;
|
|
148
|
-
border-radius: 4px;
|
|
149
|
-
gap: 8px;
|
|
150
|
-
}
|
|
151
|
-
.fortune-toolbar-combo-button:hover {
|
|
152
|
-
background: hsl(var(--color-bg-default-hover));
|
|
153
144
|
}
|
|
154
145
|
|
|
155
146
|
.fortune-toolbar-select-option {
|
|
156
147
|
font-size: 12px;
|
|
157
148
|
min-width: 60px;
|
|
158
|
-
padding
|
|
159
|
-
padding-right: 8px;
|
|
160
|
-
padding-top: 6px;
|
|
161
|
-
padding-bottom: 6px;
|
|
149
|
+
padding: 8px;
|
|
162
150
|
cursor: pointer;
|
|
163
151
|
user-select: none;
|
|
164
|
-
height: 32px;
|
|
165
|
-
display: flex;
|
|
166
|
-
align-items: center;
|
|
167
|
-
|
|
168
152
|
}
|
|
169
153
|
|
|
170
154
|
.fortune-toolbar-select-option:hover {
|
|
@@ -187,10 +171,6 @@
|
|
|
187
171
|
font-weight: 500;
|
|
188
172
|
font-size: 14px;
|
|
189
173
|
line-height: 20px;
|
|
190
|
-
max-width: 56px;
|
|
191
|
-
overflow: hidden;
|
|
192
|
-
text-overflow: ellipsis;
|
|
193
|
-
white-space: nowrap;
|
|
194
174
|
}
|
|
195
175
|
|
|
196
176
|
.fortune-toolbar-color-picker-item {
|
|
@@ -123,8 +123,7 @@ var __spreadArray = this && this.__spreadArray || function (to, from, pack) {
|
|
|
123
123
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
124
124
|
};
|
|
125
125
|
import React, { useContext, useCallback, useRef, useEffect, useState } from "react";
|
|
126
|
-
import { toolbarItemClickHandler, handleTextBackground, handleTextColor, handleTextSize, normalizedCellAttr, getFlowdata, newComment, editComment, deleteComment, showHideComment, showHideAllComments, autoSelectionFormula, handleSum, locale, handleMerge, handleBorder, toolbarItemSelectedFunc, handleFreeze, insertImage, showImgChooser, updateFormat, handleSort, handleHorizontalAlign, handleVerticalAlign, handleScreenShot, createFilter, clearFilter, applyLocation, insertDuneChart } from "@fileverse-dev/fortune-core";
|
|
127
|
-
import { api } from "@fileverse-dev/fortune-core";
|
|
126
|
+
import { toolbarItemClickHandler, handleTextBackground, handleTextColor, handleTextSize, normalizedCellAttr, getFlowdata, newComment, editComment, deleteComment, showHideComment, showHideAllComments, autoSelectionFormula, handleSum, locale, handleMerge, handleBorder, toolbarItemSelectedFunc, handleFreeze, insertImage, showImgChooser, updateFormat, handleSort, handleHorizontalAlign, handleVerticalAlign, handleScreenShot, createFilter, clearFilter, applyLocation, insertDuneChart, api } from "@fileverse-dev/fortune-core";
|
|
128
127
|
import _ from "lodash";
|
|
129
128
|
import { IconButton, LucideIcon, Tooltip, Command, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem } from "@fileverse/ui";
|
|
130
129
|
import DataVerificationPortal from "./dataVerificationPortal";
|