Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

konva

Package Overview
Dependencies
Maintainers
1
Versions
212
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

konva - npm Package Compare versions

Comparing version 1.7.5 to 1.7.6

10

CHANGELOG.md

@@ -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 @@

4

konva.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc