Comparing version 1.7.5 to 1.7.6
@@ -7,2 +7,12 @@ # Change Log | ||
## [1.7.6][2017-11-01] | ||
## Fixed | ||
- Some typescript fixes | ||
## [1.7.4][2017-10-30] | ||
## Fixed | ||
- `isBrowser` detection for electron | ||
## [1.7.3][2017-10-19] | ||
@@ -9,0 +19,0 @@ |
@@ -335,2 +335,3 @@ declare module Konva { | ||
strokeScaleEnabled?: boolean; | ||
strokeHitEnabled?: boolean; | ||
strokeEnabled?: boolean; | ||
@@ -480,6 +481,7 @@ lineJoin?: string; | ||
clearBeforeDraw?: boolean; | ||
hitGraphEnabled?: boolean; | ||
} | ||
class FastLayer extends Container { | ||
constructor (config?: ContainerConfig); | ||
constructor (config?: LayerConfig); | ||
drawScene(): void; | ||
@@ -486,0 +488,0 @@ hitGraphEnabled(val: boolean): FastLayer; |
{ | ||
"name": "konva", | ||
"version": "1.7.5", | ||
"version": "1.7.6", | ||
"author": "Anton Lavrenov", | ||
@@ -5,0 +5,0 @@ "files": [ |
@@ -54,3 +54,6 @@ /* | ||
typeof window !== 'undefined' && | ||
{}.toString.call(window) === '[object Window]', | ||
// browser case | ||
({}.toString.call(window) === '[object Window]' || | ||
// electron case | ||
{}.toString.call(window) === '[object global]'), | ||
@@ -57,0 +60,0 @@ // configurations |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
1208977
33907