@fileverse-dev/fortune-react 1.2.59 → 1.2.62
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.
|
@@ -612,7 +612,9 @@ var Workbook = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
|
612
612
|
}, [handleRedo, handleUndo, setContextWithProduce]);
|
|
613
613
|
var onPaste = useCallback(function (e) {
|
|
614
614
|
var _a;
|
|
615
|
+
var startPaste = true;
|
|
615
616
|
if (cellInput.current === document.activeElement || ((_a = document.activeElement) === null || _a === void 0 ? void 0 : _a.className) === "fortune-sheet-overlay") {
|
|
617
|
+
if (!startPaste) return;
|
|
616
618
|
var clipboardData = e.clipboardData;
|
|
617
619
|
if (!clipboardData) {
|
|
618
620
|
clipboardData = window.clipboardData;
|
|
@@ -641,7 +643,10 @@ var Workbook = /*#__PURE__*/React.forwardRef(function (_a, ref) {
|
|
|
641
643
|
}
|
|
642
644
|
setContextWithProduce(function (draftCtx) {
|
|
643
645
|
try {
|
|
644
|
-
|
|
646
|
+
if (startPaste) {
|
|
647
|
+
startPaste = false;
|
|
648
|
+
handlePaste(draftCtx, e);
|
|
649
|
+
}
|
|
645
650
|
} catch (err) {
|
|
646
651
|
console.error(err);
|
|
647
652
|
}
|
|
@@ -621,7 +621,9 @@ var Workbook = /*#__PURE__*/_react.default.forwardRef(function (_a, ref) {
|
|
|
621
621
|
}, [handleRedo, handleUndo, setContextWithProduce]);
|
|
622
622
|
var onPaste = (0, _react.useCallback)(function (e) {
|
|
623
623
|
var _a;
|
|
624
|
+
var startPaste = true;
|
|
624
625
|
if (cellInput.current === document.activeElement || ((_a = document.activeElement) === null || _a === void 0 ? void 0 : _a.className) === "fortune-sheet-overlay") {
|
|
626
|
+
if (!startPaste) return;
|
|
625
627
|
var clipboardData = e.clipboardData;
|
|
626
628
|
if (!clipboardData) {
|
|
627
629
|
clipboardData = window.clipboardData;
|
|
@@ -650,7 +652,10 @@ var Workbook = /*#__PURE__*/_react.default.forwardRef(function (_a, ref) {
|
|
|
650
652
|
}
|
|
651
653
|
setContextWithProduce(function (draftCtx) {
|
|
652
654
|
try {
|
|
653
|
-
(
|
|
655
|
+
if (startPaste) {
|
|
656
|
+
startPaste = false;
|
|
657
|
+
(0, _fortuneCore.handlePaste)(draftCtx, e);
|
|
658
|
+
}
|
|
654
659
|
} catch (err) {
|
|
655
660
|
console.error(err);
|
|
656
661
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fileverse-dev/fortune-react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.62",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"tsc": "tsc"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@fileverse-dev/fortune-core": "1.2.
|
|
19
|
+
"@fileverse-dev/fortune-core": "1.2.62",
|
|
20
20
|
"@fileverse/ui": "^4.1.7-patch-40",
|
|
21
21
|
"@tippyjs/react": "^4.2.6",
|
|
22
22
|
"@types/regenerator-runtime": "^0.13.6",
|