diff --git a/konva.js b/konva.js index 4c8566fc..69d88112 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v3.2.4 * http://konvajs.org/ * Licensed under the MIT - * Date: Mon Apr 08 2019 + * Date: Wed Apr 17 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -3988,7 +3988,7 @@ /** * get the node type, which may return Stage, Layer, Group, or Shape * @method - * @name Konva.Node#getTranslation + * @name Konva.Node#getType * @returns {String} */ Node.prototype.getType = function () { diff --git a/konva.min.js b/konva.min.js index ca1cd0f9..52352347 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,7 +3,7 @@ * Konva JavaScript Framework v3.2.4 * http://konvajs.org/ * Licensed under the MIT - * Date: Mon Apr 08 2019 + * Date: Wed Apr 17 2019 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/package.json b/package.json index d521554c..31cb40eb 100644 --- a/package.json +++ b/package.json @@ -31,24 +31,24 @@ "gulp-concat": "^2.6.1", "gulp-connect": "^5.7.0", "gulp-eslint": "^5.0.0", + "gulp-exec": "^3.0.2", "gulp-jscpd": "0.0.8", "gulp-jsdoc3": "^2.0.0", "gulp-rename": "^1.4.0", "gulp-replace": "^1.0.0", + "gulp-typescript": "^5.0.1", "gulp-uglify": "^3.0.2", "gulp-util": "^3.0.8", "mocha": "5.2.0", "mocha-headless-chrome": "^2.0.2", "parcel-bundler": "^1.12.3", "prettier": "^1.16.4", - "typescript": "^3.4.1", - "gulp-exec": "^3.0.2", - "gulp-typescript": "^5.0.1", "rollup": "^1.7.4", "rollup-plugin-commonjs": "^9.2.2", "rollup-plugin-node-resolve": "^4.0.1", "rollup-plugin-sourcemaps": "^0.4.2", - "rollup-plugin-typescript2": "^0.20.1" + "rollup-plugin-typescript2": "^0.20.1", + "typescript": "^3.4.3" }, "keywords": [ "canvas", diff --git a/src/BaseLayer.ts b/src/BaseLayer.ts index f8d45c31..f7666527 100644 --- a/src/BaseLayer.ts +++ b/src/BaseLayer.ts @@ -6,6 +6,8 @@ import { SceneCanvas, HitCanvas } from './Canvas'; import { Stage } from './Stage'; import { GetSet } from './types'; +import { Group } from './Group'; +import { Shape } from './Shape'; export interface LayerConfig extends ContainerConfig { clearBeforeDraw?: boolean; @@ -23,7 +25,7 @@ export interface LayerConfig extends ContainerConfig { * @@nodeParams * @@containerParams */ -export abstract class BaseLayer extends Container { +export abstract class BaseLayer extends Container { canvas = new SceneCanvas(); hitCanvas: HitCanvas; diff --git a/src/Container.ts b/src/Container.ts index fed95adb..cd1650bf 100644 --- a/src/Container.ts +++ b/src/Container.ts @@ -26,8 +26,10 @@ export interface ContainerConfig extends NodeConfig { * @@nodeParams * @@containerParams */ -export abstract class Container extends Node { - children = new Collection(); +export abstract class Container extends Node< + ContainerConfig +> { + children = new Collection(); /** * returns a {@link Konva.Collection} of direct descendant nodes @@ -113,7 +115,7 @@ export abstract class Container extends Node { * // remember to redraw layer if you changed something * layer.draw(); */ - add(child: Node) { + add(child: ChildType) { if (arguments.length > 1) { for (var i = 0; i < arguments.length; i++) { this.add(arguments[i]); @@ -249,7 +251,7 @@ export abstract class Container extends Node { if (!child.hasChildren()) { continue; } - shouldStop = (child as Container)._descendants(fn); + shouldStop = (child as any)._descendants(fn); if (shouldStop) { return true; } diff --git a/src/Group.ts b/src/Group.ts index 774d3725..c0fe9053 100644 --- a/src/Group.ts +++ b/src/Group.ts @@ -2,6 +2,7 @@ import { Util, Collection } from './Util'; import { Container } from './Container'; import { _registerNode } from './Global'; import { Node } from './Node'; +import { Shape } from './Shape'; /** * Group constructor. Groups are used to contain shapes or other groups. @@ -14,8 +15,8 @@ import { Node } from './Node'; * @example * var group = new Konva.Group(); */ -export class Group extends Container { - _validateAdd(child) { +export class Group extends Container { + _validateAdd(child: Group | Shape) { var type = child.getType(); if (type !== 'Group' && type !== 'Shape') { Util.throw('You may only add groups and shapes to groups.'); diff --git a/src/Node.ts b/src/Node.ts index b7ae5e06..f1530987 100644 --- a/src/Node.ts +++ b/src/Node.ts @@ -170,7 +170,7 @@ export abstract class Node { eventListeners = {}; attrs: any = {}; index = 0; - parent: Container | null = null; + parent: Container | null = null; _cache: Map = new Map(); _lastPos = null; _attrsAffectingSize: string[]; @@ -453,7 +453,7 @@ export abstract class Node { skipTransform?: boolean; skipShadow?: boolean; skipStroke?: boolean; - relativeTo?: Container; + relativeTo?: Container; }): { x: number; y: number; width: number; height: number } { // abstract method // redefine in Container and Shape @@ -466,7 +466,7 @@ export abstract class Node { { x: rect.x + rect.width, y: rect.y + rect.height }, { x: rect.x, y: rect.y + rect.height } ]; - var minX, minY, maxX, maxY; + var minX: number, minY: number, maxX: number, maxY: number; var trans = this.getAbsoluteTransform(top); points.forEach(function(point) { var transformed = trans.point(point); @@ -1877,7 +1877,7 @@ export abstract class Node { /** * get the node type, which may return Stage, Layer, Group, or Shape * @method - * @name Konva.Node#getTranslation + * @name Konva.Node#getType * @returns {String} */ getType() { diff --git a/src/Stage.ts b/src/Stage.ts index 67a28378..2bfdb4b2 100644 --- a/src/Stage.ts +++ b/src/Stage.ts @@ -109,7 +109,7 @@ function checkNoClip(attrs: any = {}) { * }); */ -export class Stage extends Container { +export class Stage extends Container { content: HTMLDivElement; pointerPos: Vector2d | null; bufferCanvas: SceneCanvas; @@ -120,8 +120,6 @@ export class Stage extends Container { dblTimeout: any; tapStartShape: Shape; - children: Collection; - constructor(config: StageConfig) { super(checkNoClip(config)); this._buildDOM(); diff --git a/src/index-types.d.ts b/src/index-types.d.ts index 8c5d614e..16b22c1a 100644 --- a/src/index-types.d.ts +++ b/src/index-types.d.ts @@ -43,7 +43,7 @@ declare namespace Konva { export type NodeConfig = import('./Node').NodeConfig; export const Container: typeof import('./Container').Container; - export type Container = import('./Container').Container; + export type Container = import('./Container').Container; export type ContainerConfig = import('./Container').ContainerConfig; export const Collection: typeof import('./Util').Collection;