mirror of
https://github.com/konvajs/konva.git
synced 2025-10-14 03:24:54 +08:00
update dev dependencies. close #1015
This commit is contained in:
12
kinetic.js
12
kinetic.js
@@ -4,7 +4,7 @@
|
|||||||
* http://www.kineticjs.com/
|
* http://www.kineticjs.com/
|
||||||
* Copyright 2013, Eric Rowell
|
* Copyright 2013, Eric Rowell
|
||||||
* Licensed under the MIT or GPL Version 2 licenses.
|
* Licensed under the MIT or GPL Version 2 licenses.
|
||||||
* Date: 2014-10-02
|
* Date: 2014-10-03
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011 - 2013 by Eric Rowell
|
* Copyright (C) 2011 - 2013 by Eric Rowell
|
||||||
*
|
*
|
||||||
@@ -54,7 +54,7 @@ var Kinetic = {};
|
|||||||
/**
|
/**
|
||||||
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
|
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
|
||||||
* But you may override such property, if you want to use your value.
|
* But you may override such property, if you want to use your value.
|
||||||
* @property
|
* @property pixelRatio
|
||||||
* @default undefined
|
* @default undefined
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -64,7 +64,7 @@ var Kinetic = {};
|
|||||||
/**
|
/**
|
||||||
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
|
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
|
||||||
* only then start dragging.
|
* only then start dragging.
|
||||||
* @property
|
* @property dragDistance
|
||||||
* @default 0
|
* @default 0
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -73,7 +73,7 @@ var Kinetic = {};
|
|||||||
dragDistance : 0,
|
dragDistance : 0,
|
||||||
/**
|
/**
|
||||||
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
|
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
|
||||||
* @property
|
* @property angleDeg
|
||||||
* @default true
|
* @default true
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -84,7 +84,7 @@ var Kinetic = {};
|
|||||||
angleDeg: true,
|
angleDeg: true,
|
||||||
/**
|
/**
|
||||||
* Show different warnings about errors or wrong API usage
|
* Show different warnings about errors or wrong API usage
|
||||||
* @property
|
* @property showWarnings
|
||||||
* @default true
|
* @default true
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -14717,7 +14717,7 @@ var Kinetic = {};
|
|||||||
height = this.getHeight(),
|
height = this.getHeight(),
|
||||||
pointerDirection = this.getPointerDirection(),
|
pointerDirection = this.getPointerDirection(),
|
||||||
pointerWidth = this.getPointerWidth(),
|
pointerWidth = this.getPointerWidth(),
|
||||||
pointerHeight = this.getPointerHeight();
|
pointerHeight = this.getPointerHeight(),
|
||||||
cornerRadius = this.getCornerRadius();
|
cornerRadius = this.getCornerRadius();
|
||||||
|
|
||||||
context.beginPath();
|
context.beginPath();
|
||||||
|
4
kinetic.min.js
vendored
4
kinetic.min.js
vendored
File diff suppressed because one or more lines are too long
34
package.json
34
package.json
@@ -2,24 +2,24 @@
|
|||||||
"name": "kinetic",
|
"name": "kinetic",
|
||||||
"version": "5.1.1",
|
"version": "5.1.1",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt-contrib-jshint": "0.8.0",
|
"grunt-contrib-jshint": "0.10.0",
|
||||||
"grunt-contrib-nodeunit": "0.3.2",
|
"grunt-contrib-nodeunit": "0.4.1",
|
||||||
"grunt-contrib-uglify": "0.3.2",
|
"grunt-contrib-uglify": "0.6.0",
|
||||||
"grunt-contrib-concat": "0.3.0",
|
"grunt-contrib-concat": "0.5.0",
|
||||||
"grunt-replace": "0.6.2",
|
"grunt-replace": "0.7.9",
|
||||||
"grunt-contrib-clean": "0.5.0",
|
"grunt-contrib-clean": "0.6.0",
|
||||||
"mocha": "1.17.1",
|
"mocha": "1.21.4",
|
||||||
"chai": "1.9.0",
|
"chai": "1.9.2",
|
||||||
"phantomjs": "1.9.7-1",
|
"phantomjs": "1.9.10",
|
||||||
"mocha-phantomjs": "3.3.2",
|
"mocha-phantomjs": "3.5.0",
|
||||||
"grunt-cli": "0.1.13",
|
"grunt-cli": "0.1.13",
|
||||||
"grunt": "0.4.2",
|
"grunt": "0.4.5",
|
||||||
"connect": "2.13.0",
|
"connect": "3.2.0",
|
||||||
"grunt-contrib-copy": "~0.5.0",
|
"grunt-contrib-copy": "~0.6.0",
|
||||||
"jsdoc": "~3.3.0-alpha4",
|
"jsdoc": "~3.3.0-alpha9",
|
||||||
"grunt-mocha-phantomjs": "~0.4.2",
|
"grunt-mocha-phantomjs": "~0.6.0",
|
||||||
"grunt-contrib-watch": "~0.5.3",
|
"grunt-contrib-watch": "~0.6.1",
|
||||||
"grunt-shell": "~0.6.4"
|
"grunt-shell": "~1.1.1"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"canvas",
|
"canvas",
|
||||||
|
@@ -54,7 +54,7 @@ var Kinetic = {};
|
|||||||
/**
|
/**
|
||||||
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
|
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
|
||||||
* But you may override such property, if you want to use your value.
|
* But you may override such property, if you want to use your value.
|
||||||
* @property
|
* @property pixelRatio
|
||||||
* @default undefined
|
* @default undefined
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -64,7 +64,7 @@ var Kinetic = {};
|
|||||||
/**
|
/**
|
||||||
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
|
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
|
||||||
* only then start dragging.
|
* only then start dragging.
|
||||||
* @property
|
* @property dragDistance
|
||||||
* @default 0
|
* @default 0
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -73,7 +73,7 @@ var Kinetic = {};
|
|||||||
dragDistance : 0,
|
dragDistance : 0,
|
||||||
/**
|
/**
|
||||||
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
|
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
|
||||||
* @property
|
* @property angleDeg
|
||||||
* @default true
|
* @default true
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
@@ -84,7 +84,7 @@ var Kinetic = {};
|
|||||||
angleDeg: true,
|
angleDeg: true,
|
||||||
/**
|
/**
|
||||||
* Show different warnings about errors or wrong API usage
|
* Show different warnings about errors or wrong API usage
|
||||||
* @property
|
* @property showWarnings
|
||||||
* @default true
|
* @default true
|
||||||
* @memberof Kinetic
|
* @memberof Kinetic
|
||||||
* @example
|
* @example
|
||||||
|
@@ -183,7 +183,7 @@
|
|||||||
height = this.getHeight(),
|
height = this.getHeight(),
|
||||||
pointerDirection = this.getPointerDirection(),
|
pointerDirection = this.getPointerDirection(),
|
||||||
pointerWidth = this.getPointerWidth(),
|
pointerWidth = this.getPointerWidth(),
|
||||||
pointerHeight = this.getPointerHeight();
|
pointerHeight = this.getPointerHeight(),
|
||||||
cornerRadius = this.getCornerRadius();
|
cornerRadius = this.getCornerRadius();
|
||||||
|
|
||||||
context.beginPath();
|
context.beginPath();
|
||||||
|
Reference in New Issue
Block a user