@leankylin-sheet/react 4.0.14 → 4.0.16
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/index.esm.js +8 -2
- package/dist/index.js +8 -2
- package/dist/index.umd.js +8 -2
- package/dist/index.umd.min.js +1 -1
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -2415,6 +2415,9 @@ var NotationBoxes = function NotationBoxes() {
|
|
|
2415
2415
|
onDoubleClick: function onDoubleClick(e) {
|
|
2416
2416
|
return e.stopPropagation();
|
|
2417
2417
|
},
|
|
2418
|
+
onPaste: function onPaste(e) {
|
|
2419
|
+
return e.stopPropagation();
|
|
2420
|
+
},
|
|
2418
2421
|
className: "luckysheet-postil-show-main",
|
|
2419
2422
|
style: {
|
|
2420
2423
|
width: width,
|
|
@@ -2464,11 +2467,14 @@ var NotationBoxes = function NotationBoxes() {
|
|
|
2464
2467
|
style: {
|
|
2465
2468
|
width: "100%",
|
|
2466
2469
|
height: "100%",
|
|
2467
|
-
overflow: "
|
|
2470
|
+
overflow: "auto",
|
|
2468
2471
|
display: "flex",
|
|
2469
2472
|
flexDirection: "column"
|
|
2470
2473
|
},
|
|
2471
|
-
|
|
2474
|
+
onContextMenu: function onContextMenu(e) {
|
|
2475
|
+
return e.stopPropagation();
|
|
2476
|
+
},
|
|
2477
|
+
onWheelCapture: function onWheelCapture(e) {
|
|
2472
2478
|
return e.stopPropagation();
|
|
2473
2479
|
},
|
|
2474
2480
|
id: "".concat(commentId, "-editor"),
|
package/dist/index.js
CHANGED
|
@@ -2425,6 +2425,9 @@ var NotationBoxes = function NotationBoxes() {
|
|
|
2425
2425
|
onDoubleClick: function onDoubleClick(e) {
|
|
2426
2426
|
return e.stopPropagation();
|
|
2427
2427
|
},
|
|
2428
|
+
onPaste: function onPaste(e) {
|
|
2429
|
+
return e.stopPropagation();
|
|
2430
|
+
},
|
|
2428
2431
|
className: "luckysheet-postil-show-main",
|
|
2429
2432
|
style: {
|
|
2430
2433
|
width: width,
|
|
@@ -2474,11 +2477,14 @@ var NotationBoxes = function NotationBoxes() {
|
|
|
2474
2477
|
style: {
|
|
2475
2478
|
width: "100%",
|
|
2476
2479
|
height: "100%",
|
|
2477
|
-
overflow: "
|
|
2480
|
+
overflow: "auto",
|
|
2478
2481
|
display: "flex",
|
|
2479
2482
|
flexDirection: "column"
|
|
2480
2483
|
},
|
|
2481
|
-
|
|
2484
|
+
onContextMenu: function onContextMenu(e) {
|
|
2485
|
+
return e.stopPropagation();
|
|
2486
|
+
},
|
|
2487
|
+
onWheelCapture: function onWheelCapture(e) {
|
|
2482
2488
|
return e.stopPropagation();
|
|
2483
2489
|
},
|
|
2484
2490
|
id: "".concat(commentId, "-editor"),
|
package/dist/index.umd.js
CHANGED
|
@@ -95763,6 +95763,9 @@
|
|
|
95763
95763
|
onDoubleClick: function onDoubleClick(e) {
|
|
95764
95764
|
return e.stopPropagation();
|
|
95765
95765
|
},
|
|
95766
|
+
onPaste: function onPaste(e) {
|
|
95767
|
+
return e.stopPropagation();
|
|
95768
|
+
},
|
|
95766
95769
|
className: "luckysheet-postil-show-main",
|
|
95767
95770
|
style: {
|
|
95768
95771
|
width: width,
|
|
@@ -95812,11 +95815,14 @@
|
|
|
95812
95815
|
style: {
|
|
95813
95816
|
width: "100%",
|
|
95814
95817
|
height: "100%",
|
|
95815
|
-
overflow: "
|
|
95818
|
+
overflow: "auto",
|
|
95816
95819
|
display: "flex",
|
|
95817
95820
|
flexDirection: "column"
|
|
95818
95821
|
},
|
|
95819
|
-
|
|
95822
|
+
onContextMenu: function onContextMenu(e) {
|
|
95823
|
+
return e.stopPropagation();
|
|
95824
|
+
},
|
|
95825
|
+
onWheelCapture: function onWheelCapture(e) {
|
|
95820
95826
|
return e.stopPropagation();
|
|
95821
95827
|
},
|
|
95822
95828
|
id: "".concat(commentId, "-editor"),
|