From 0731316a7ed21a8ce02f104fcd863deb2cafc3a8 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Fri, 11 Oct 2019 07:55:04 -0500 Subject: [PATCH] ts fixes --- CHANGELOG.md | 3 +++ konva.js | 2 +- konva.min.js | 2 +- src/shapes/Image.ts | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98199f17..f4ba6879 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Not released: +## 4.0.14 - 2019-10-11 + +* TS fixes * Fix globalCompositeOperation + cached hit detections. * Fix absolute position calculations for cached parent diff --git a/konva.js b/konva.js index 5ded9bcf..e48c6f83 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v4.0.13 * http://konvajs.org/ * Licensed under the MIT - * Date: Thu Oct 10 2019 + * Date: Fri Oct 11 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/konva.min.js b/konva.min.js index 110af46f..0d654da5 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,7 +3,7 @@ * Konva JavaScript Framework v4.0.13 * http://konvajs.org/ * Licensed under the MIT - * Date: Thu Oct 10 2019 + * Date: Fri Oct 11 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/src/shapes/Image.ts b/src/shapes/Image.ts index 192a3af1..bbdff34b 100644 --- a/src/shapes/Image.ts +++ b/src/shapes/Image.ts @@ -7,7 +7,7 @@ import { _registerNode } from '../Global'; import { GetSet, IRect } from '../types'; export interface ImageConfig extends ShapeConfig { - image: ImageBitmapSource; + image: CanvasImageSource | undefined; crop?: IRect; } @@ -124,7 +124,7 @@ export class Image extends Shape { img.src = url; } - image: GetSet; + image: GetSet; crop: GetSet; cropX: GetSet; cropY: GetSet;