Removed the material-design dependency.

This commit is contained in:
Sebastian Kupke 2019-05-21 13:58:26 +02:00
parent cdf331463e
commit 51bd9cf170
7 changed files with 16 additions and 21 deletions

View File

@ -75694,8 +75694,8 @@ var pixi_projection;
})(pixi_projection || (pixi_projection = {}));
/*!
* VERSION: 2.1.2
* DATE: 2019-03-01
* VERSION: 2.1.3
* DATE: 2019-05-17
* UPDATES AND DOCS AT: http://greensock.com
*
* @license Copyright (c) 2008-2019, GreenSock. All rights reserved.
@ -76658,7 +76658,7 @@ var pixi_projection;
p._firstPT = p._targets = p._overwrittenProps = p._startAt = null;
p._notifyPluginsOfEnabled = p._lazy = false;
TweenLite.version = "2.1.2";
TweenLite.version = "2.1.3";
TweenLite.defaultEase = p._ease = new Ease(null, null, 1, 1);
TweenLite.defaultOverwrite = "auto";
TweenLite.ticker = _ticker;

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
/*!
* VERSION: 2.1.2
* DATE: 2019-03-01
* VERSION: 2.1.3
* DATE: 2019-05-17
* UPDATES AND DOCS AT: http://greensock.com
*
* @license Copyright (c) 2008-2019, GreenSock. All rights reserved.
@ -963,7 +963,7 @@
p._firstPT = p._targets = p._overwrittenProps = p._startAt = null;
p._notifyPluginsOfEnabled = p._lazy = false;
TweenLite.version = "2.1.2";
TweenLite.version = "2.1.3";
TweenLite.defaultEase = p._ease = new Ease(null, null, 1, 1);
TweenLite.defaultOverwrite = "auto";
TweenLite.ticker = _ticker;

File diff suppressed because one or more lines are too long

7
dist/iwmlib.pixi.js vendored
View File

@ -13006,8 +13006,8 @@
* // Create the app
* const app = new PIXIApp({
* view: canvas,
* width: 900,
* height: 250
* width: 600,
* height: 400
* }).setup().run()
*
* // Create the Scrollview
@ -13015,7 +13015,7 @@
* .add('elephant', './assets/elephant-1.jpg')
* .load((loader, resources) => {
* const sprite = new PIXI.Sprite(resources.elephant.texture)
* const scrollview = new Scrollview({boxWidth: 400, boxHeight: 180})
* const scrollview = new Scrollview({boxWidth: 400, boxHeight: 300})
* scrollview.content.addChild(sprite)
* app.scene.addChild(scrollview)
*
@ -13030,6 +13030,7 @@
* Creates an instance of a Scrollview.
*
* @constructor
* @see https://davidfig.github.io/pixi-scrollbox/jsdoc/Scrollbox.html
*/
constructor(opts = {}) {

11
package-lock.json generated
View File

@ -2280,9 +2280,9 @@
"integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="
},
"gsap": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/gsap/-/gsap-2.1.2.tgz",
"integrity": "sha512-7saMzK2HQ3OD4/hbygtkh0uAK8LUqcom6abL4YqGttyxAQdEvywQOw5VK3obKQ7GaLU8KhszArKJPxIKe8mbvg=="
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/gsap/-/gsap-2.1.3.tgz",
"integrity": "sha512-8RFASCqi2FOCBuv7X4o7M6bLdy+1hbR0azg+MG7zz+EVsI+OmJblYsTk0GEepQd2Jg/ItMPiVTibF7r3EVxjZQ=="
},
"gulp": {
"version": "4.0.2",
@ -2887,11 +2887,6 @@
}
}
},
"material-design-icons": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/material-design-icons/-/material-design-icons-3.0.1.tgz",
"integrity": "sha1-mnHEh0chjrylHlGmbaaCA4zct78="
},
"micromatch": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",

View File

@ -28,9 +28,8 @@
"gulp-uglify": "^3.0.2"
},
"dependencies": {
"gsap": "^2.1.2",
"gsap": "^2.1.3",
"hammerjs": "^2.0.8",
"material-design-icons": "^3.0.1",
"optimal-select": "^4.0.1",
"pixi-compressed-textures": "^1.1.8",
"pixi-filters": "^2.7.1",