diff --git a/src/Container.ts b/src/Container.ts index af2b9829..a400b4c3 100644 --- a/src/Container.ts +++ b/src/Container.ts @@ -33,7 +33,7 @@ export interface ContainerConfig extends NodeConfig { export abstract class Container< ChildType extends Node = Node > extends Node { - children: Array | undefined = []; + children: Array = []; /** * returns an array of direct descendant nodes @@ -220,7 +220,9 @@ export abstract class Container< * return node.getType() === 'Shape' * }) */ - findOne(selector: string | Function): ChildNode | undefined { + findOne( + selector: string | Function + ): ChildNode | undefined { var result = this._generalFind(selector, true); return result.length > 0 ? result[0] : undefined; } @@ -313,7 +315,7 @@ export abstract class Container< * @returns {Array} array of shapes */ getAllIntersections(pos) { - var arr = []; + var arr: Shape[] = []; this.find('Shape').forEach(function (shape: Shape) { if (shape.isVisible() && shape.intersects(pos)) { @@ -341,7 +343,7 @@ export abstract class Container< this._requestDraw(); } drawScene(can?: SceneCanvas, top?: Node) { - var layer = this.getLayer(), + var layer = this.getLayer()!, canvas = can || (layer && layer.getCanvas()), context = canvas && canvas.getContext(), cachedCanvas = this._getCanvasCache(), @@ -368,7 +370,7 @@ export abstract class Container< return this; } - var layer = this.getLayer(), + var layer = this.getLayer()!, canvas = can || (layer && layer.hitCanvas), context = canvas && canvas.getContext(), cachedCanvas = this._getCanvasCache(), diff --git a/src/Node.ts b/src/Node.ts index c6d0ae2c..96f24638 100644 --- a/src/Node.ts +++ b/src/Node.ts @@ -148,7 +148,7 @@ export abstract class Node { parent: Container | null = null; _cache: Map = new Map(); _attachedDepsListeners: Map = new Map(); - _lastPos: Vector2d = null; + _lastPos: Vector2d | null = null; _attrsAffectingSize!: string[]; _batchingTransformChange = false; _needClearTransformCache = false; diff --git a/src/shapes/Text.ts b/src/shapes/Text.ts index 29cac55c..9cf42e2c 100644 --- a/src/shapes/Text.ts +++ b/src/shapes/Text.ts @@ -134,7 +134,7 @@ function checkDefaultFill(config: TextConfig) { * @param {Object} config * @param {String} [config.fontFamily] default is Arial * @param {Number} [config.fontSize] in pixels. Default is 12 - * @param {String} [config.fontStyle] can be 'normal', 'bold', 'italic' or even 'italic bold'. Default is 'normal' + * @param {String} [config.fontStyle] can be 'normal', 'italic', or 'bold', '500' or even 'italic bold'. 'normal' is the default. * @param {String} [config.fontVariant] can be normal or small-caps. Default is normal * @param {String} [config.textDecoration] can be line-through, underline or empty string. Default is empty string. * @param {String} config.text @@ -702,7 +702,7 @@ Factory.addGetterSetter(Text, 'fontFamily', 'Arial'); Factory.addGetterSetter(Text, 'fontSize', 12, getNumberValidator()); /** - * get/set font style. Can be 'normal', 'italic', or 'bold' or even 'italic bold'. 'normal' is the default. + * get/set font style. Can be 'normal', 'italic', or 'bold', '500' or even 'italic bold'. 'normal' is the default. * @name Konva.Text#fontStyle * @method * @param {String} fontStyle diff --git a/src/shapes/TextPath.ts b/src/shapes/TextPath.ts index 60dd7eb6..72aaa6b3 100644 --- a/src/shapes/TextPath.ts +++ b/src/shapes/TextPath.ts @@ -37,7 +37,7 @@ function _strokeFunc(context) { * @param {Object} config * @param {String} [config.fontFamily] default is Arial * @param {Number} [config.fontSize] default is 12 - * @param {String} [config.fontStyle] can be normal, bold, or italic. Default is normal + * @param {String} [config.fontStyle] Can be 'normal', 'italic', or 'bold', '500' or even 'italic bold'. 'normal' is the default. * @param {String} [config.fontVariant] can be normal or small-caps. Default is normal * @param {String} [config.textBaseline] Can be 'top', 'bottom', 'middle', 'alphabetic', 'hanging'. Default is middle * @param {String} config.text @@ -444,7 +444,7 @@ Factory.addGetterSetter(TextPath, 'fontFamily', 'Arial'); Factory.addGetterSetter(TextPath, 'fontSize', 12, getNumberValidator()); /** - * get/set font style. Can be 'normal', 'italic', or 'bold'. 'normal' is the default. + * get/set font style. Can be 'normal', 'italic', or 'bold', '500' or even 'italic bold'. 'normal' is the default. * @name Konva.TextPath#fontStyle * @method * @param {String} fontStyle diff --git a/test/sandbox.html b/test/sandbox.html index 5eb83d4c..a46d4066 100644 --- a/test/sandbox.html +++ b/test/sandbox.html @@ -25,78 +25,47 @@ -
+
diff --git a/tsconfig.json b/tsconfig.json index 27271353..69361d4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,8 @@ "lib": ["ES2015", "dom"], "moduleResolution": "node", "declaration": true, - "removeComments": false + "removeComments": false, + "strictNullChecks": false, }, "include": ["./src/**/*.ts"] }