update deps

This commit is contained in:
Anton Lavrenov
2019-10-04 07:46:30 -05:00
parent 23661c6c5a
commit c4b9d977de
3 changed files with 26 additions and 18 deletions

View File

@@ -8,7 +8,7 @@
* Konva JavaScript Framework v4.0.13 * Konva JavaScript Framework v4.0.13
* http://konvajs.org/ * http://konvajs.org/
* Licensed under the MIT * Licensed under the MIT
* Date: Wed Oct 02 2019 * Date: Fri Oct 04 2019
* *
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)
@@ -1423,6 +1423,14 @@
extendStatics(d, b); extendStatics(d, b);
function __() { this.constructor = d; } function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
}
function __spreadArrays() {
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
for (var r = Array(s), k = 0, i = 0; i < il; i++)
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
r[k] = a[j];
return r;
} }
var COMMA = ',', OPEN_PAREN = '(', CLOSE_PAREN = ')', OPEN_PAREN_BRACKET = '([', CLOSE_BRACKET_PAREN = '])', SEMICOLON = ';', DOUBLE_PAREN = '()', var COMMA = ',', OPEN_PAREN = '(', CLOSE_PAREN = ')', OPEN_PAREN_BRACKET = '([', CLOSE_BRACKET_PAREN = '])', SEMICOLON = ';', DOUBLE_PAREN = '()',
@@ -5949,7 +5957,7 @@
setPointerCapture(pointerId, this); setPointerCapture(pointerId, this);
}; };
Stage.prototype.releaseCapture = function (pointerId) { Stage.prototype.releaseCapture = function (pointerId) {
releaseCapture(pointerId, this); releaseCapture(pointerId);
}; };
/** /**
* returns a {@link Konva.Collection} of layers * returns a {@link Konva.Collection} of layers
@@ -7446,7 +7454,7 @@
setPointerCapture(pointerId, this); setPointerCapture(pointerId, this);
}; };
Shape.prototype.releaseCapture = function (pointerId) { Shape.prototype.releaseCapture = function (pointerId) {
releaseCapture(pointerId, this); releaseCapture(pointerId);
}; };
return Shape; return Shape;
}(Node)); }(Node));
@@ -10129,10 +10137,10 @@
}; };
} }
if (this.tension() !== 0) { if (this.tension() !== 0) {
points = [ points = __spreadArrays([
points[0], points[0],
points[1] points[1]
].concat(this._getTensionPoints(), [ ], this._getTensionPoints(), [
points[points.length - 2], points[points.length - 2],
points[points.length - 2] points[points.length - 2]
]); ]);

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -28,11 +28,11 @@
}, },
"devDependencies": { "devDependencies": {
"chai": "4.2.0", "chai": "4.2.0",
"gulp": "^4.0.0", "gulp": "^4.0.2",
"gulp-concat": "^2.6.1", "gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0", "gulp-connect": "^5.7.0",
"gulp-eslint": "^5.0.0", "gulp-eslint": "^6.0.0",
"gulp-exec": "^3.0.2", "gulp-exec": "^4.0.0",
"gulp-jscpd": "0.0.8", "gulp-jscpd": "0.0.8",
"gulp-jsdoc3": "^2.0.0", "gulp-jsdoc3": "^2.0.0",
"gulp-rename": "^1.4.0", "gulp-rename": "^1.4.0",
@@ -40,16 +40,16 @@
"gulp-typescript": "^5.0.1", "gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2", "gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8", "gulp-util": "^3.0.8",
"mocha": "5.2.0", "mocha": "6.2.1",
"mocha-headless-chrome": "^2.0.2", "mocha-headless-chrome": "^2.0.3",
"parcel-bundler": "^1.12.3", "parcel-bundler": "^1.12.3",
"prettier": "^1.16.4", "prettier": "^1.18.2",
"rollup": "^1.7.4", "rollup": "^1.23.0",
"rollup-plugin-commonjs": "^9.2.2", "rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^4.0.1", "rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2", "rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.20.1", "rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.4.5" "typescript": "^3.6.3"
}, },
"keywords": [ "keywords": [
"canvas", "canvas",