react-konva-grid
Advanced tools
Comparing version 2.6.8 to 2.6.9
@@ -871,3 +871,3 @@ "use strict"; | ||
strokeWidth: activeCellStrokeWidth, | ||
fill: selectionBackgroundColor, | ||
fill: "transparent", | ||
x: x, | ||
@@ -874,0 +874,0 @@ y: y, |
@@ -140,4 +140,7 @@ "use strict"; | ||
e.nativeEvent.ctrlKey || | ||
(e.nativeEvent.shiftKey && e.nativeEvent.key === "Shift") || | ||
e.nativeEvent.metaKey) | ||
(e.nativeEvent.shiftKey && | ||
(e.nativeEvent.key === "Shift" || | ||
e.nativeEvent.which === types_1.KeyCodes.SPACE)) || | ||
e.nativeEvent.metaKey || | ||
e.nativeEvent.which === types_1.KeyCodes.ALT) | ||
return; | ||
@@ -144,0 +147,0 @@ /* If user has not made any selection yet */ |
@@ -13,3 +13,4 @@ export declare enum KeyCodes { | ||
A = 65, | ||
SPACE = 32 | ||
SPACE = 32, | ||
ALT = 18 | ||
} | ||
@@ -16,0 +17,0 @@ export declare enum Direction { |
@@ -18,2 +18,3 @@ "use strict"; | ||
KeyCodes[KeyCodes["SPACE"] = 32] = "SPACE"; | ||
KeyCodes[KeyCodes["ALT"] = 18] = "ALT"; | ||
})(KeyCodes = exports.KeyCodes || (exports.KeyCodes = {})); | ||
@@ -20,0 +21,0 @@ var Direction; |
{ | ||
"name": "react-konva-grid", | ||
"description": "Declarative React Canvas Grid primitive for Data table, Pivot table, Excel Worksheets", | ||
"version": "2.6.8", | ||
"version": "2.6.9", | ||
"main": "dist/index.js", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -14,2 +14,3 @@ export enum KeyCodes { | ||
SPACE = 32, | ||
ALT = 18, | ||
} | ||
@@ -16,0 +17,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14787479
21243