diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 5decee1..0000000 --- a/.eslintrc +++ /dev/null @@ -1,176 +0,0 @@ -{ - "parserOptions": { - "ecmaVersion": 8, - "ecmaFeatures": { - "experimentalObjectRestSpread": true, - "jsx": true - }, - "sourceType": "module" - }, - - "env": { - "es6": true - }, - - "plugins": [ - "import" - ], - - "globals": { - "document": false, - "navigator": false, - "window": false - }, - - "rules": { - "accessor-pairs": "error", - "arrow-spacing": ["error", { "before": true, "after": true }], - "block-spacing": ["error", "always"], - "brace-style": ["error", "1tbs", { "allowSingleLine": true }], - "camelcase": ["error", { "properties": "never" }], - "comma-dangle": ["error", { - "arrays": "never", - "objects": "never", - "imports": "never", - "exports": "never", - "functions": "never" - }], - "comma-spacing": ["error", { "before": false, "after": true }], - "comma-style": ["error", "last"], - "constructor-super": "error", - "curly": ["error", "multi-line"], - "dot-location": ["error", "property"], - "eol-last": "error", - "eqeqeq": ["error", "always", { "null": "ignore" }], - "func-call-spacing": ["error", "never"], - "generator-star-spacing": ["error", { "before": true, "after": true }], - "handle-callback-err": ["error", "^(err|error)$" ], - "indent": ["error", 2, { "SwitchCase": 1 }], - "key-spacing": ["error", { "beforeColon": false, "afterColon": true }], - "keyword-spacing": ["error", { "before": true, "after": true }], - "new-cap": ["error", { "newIsCap": true, "capIsNew": false }], - "new-parens": "error", - "no-array-constructor": "error", - "no-caller": "error", - "no-class-assign": "error", - "no-compare-neg-zero": "error", - "no-cond-assign": "error", - "no-const-assign": "error", - "no-constant-condition": ["error", { "checkLoops": false }], - "no-control-regex": "error", - "no-debugger": "error", - "no-delete-var": "error", - "no-dupe-args": "error", - "no-dupe-class-members": "error", - "no-dupe-keys": "error", - "no-duplicate-case": "error", - "no-empty-character-class": "error", - "no-empty-pattern": "error", - "no-eval": "error", - "no-ex-assign": "error", - "no-extend-native": "error", - "no-extra-bind": "error", - "no-extra-boolean-cast": "error", - "no-extra-parens": ["error", "functions"], - "no-fallthrough": "error", - "no-floating-decimal": "error", - "no-func-assign": "error", - "no-global-assign": "error", - "no-implied-eval": "error", - "no-inner-declarations": ["error", "functions"], - "no-invalid-regexp": "error", - "no-irregular-whitespace": "error", - "no-iterator": "error", - "no-label-var": "error", - "no-labels": ["error", { "allowLoop": false, "allowSwitch": false }], - "no-lone-blocks": "error", - "no-mixed-operators": ["error", { - "groups": [ - ["==", "!=", "===", "!==", ">", ">=", "<", "<="], - ["in", "instanceof"] - ], - "allowSamePrecedence": true - }], - "no-mixed-spaces-and-tabs": "error", - "no-multi-spaces": "error", - "no-multi-str": "error", - "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }], - "no-negated-in-lhs": "error", - "no-new": "error", - "no-new-func": "error", - "no-new-object": "error", - "no-new-require": "error", - "no-new-symbol": "error", - "no-new-wrappers": "error", - "no-obj-calls": "error", - "no-octal": "error", - "no-octal-escape": "error", - "no-path-concat": "error", - "no-proto": "error", - "no-redeclare": "error", - "no-regex-spaces": "error", - "no-return-assign": ["error", "except-parens"], - "no-return-await": "error", - "no-self-assign": "error", - "no-self-compare": "error", - "no-sequences": "error", - "no-shadow-restricted-names": "error", - "no-sparse-arrays": "error", - "no-tabs": "error", - "no-template-curly-in-string": "error", - "no-this-before-super": "error", - "no-throw-literal": "error", - "no-trailing-spaces": "error", - "no-undef": "error", - "no-undef-init": "error", - "no-unexpected-multiline": "error", - "no-unmodified-loop-condition": "error", - "no-unneeded-ternary": ["error", { "defaultAssignment": false }], - "no-unreachable": "error", - "no-unsafe-finally": "error", - "no-unsafe-negation": "error", - "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, "allowTaggedTemplates": true }], - "no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }], - "no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }], - "no-useless-call": "error", - "no-useless-computed-key": "error", - "no-useless-constructor": "error", - "no-useless-escape": "error", - "no-useless-rename": "error", - "no-useless-return": "error", - "no-whitespace-before-property": "error", - "no-with": "error", - "object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }], - "one-var": ["error", { "initialized": "never" }], - "operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" } }], - "padded-blocks": ["error", { "blocks": "never", "switches": "never", "classes": "never" }], - "prefer-promise-reject-errors": "error", - "quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }], - "rest-spread-spacing": ["error", "never"], - "semi": ["error", "never"], - "semi-spacing": ["error", { "before": false, "after": true }], - "space-before-blocks": ["error", "always"], - "space-before-function-paren": ["error", "always"], - "space-in-parens": ["error", "never"], - "space-infix-ops": "error", - "space-unary-ops": ["error", { "words": true, "nonwords": false }], - "spaced-comment": ["error", "always", { - "line": { "markers": ["*package", "!", "/", ","] }, - "block": { "balanced": true, "markers": ["*package", "!", ",", ":", "::", "flow-include"], "exceptions": ["*"] } - }], - "symbol-description": "error", - "template-curly-spacing": ["error", "never"], - "template-tag-spacing": ["error", "never"], - "unicode-bom": ["error", "never"], - "use-isnan": "error", - "valid-typeof": ["error", { "requireStringLiterals": true }], - "wrap-iife": ["error", "any", { "functionPrototypeMethods": true }], - "yield-star-spacing": ["error", "both"], - "yoda": ["error", "never"], - - "import/export": "error", - "import/first": "error", - "import/no-duplicates": "error", - "import/no-webpack-loader-syntax": "error" - } -} \ No newline at end of file diff --git a/API.md b/API.md index 56ba50c..d9fd227 100644 --- a/API.md +++ b/API.md @@ -8,12 +8,11 @@ Lightweight, effecient and modular ES6 version of tween.js **Copyright**: 2017 @dalisoft and es6-tween contributors **Example** ```js -// ES6 const {add, remove, isRunning, autoPlay} = TWEEN +// ES6 +const {add, remove, isRunning, autoPlay} = TWEEN ``` * [TWEEN](#TWEEN) : object - * [.now](#TWEEN.now) ⇒ - * [.Plugins](#TWEEN.Plugins) : object * [.Easing](#TWEEN.Easing) : object * [.Interpolation](#TWEEN.Interpolation) : object * [.Interpolator](#TWEEN.Interpolator) ⇒ function @@ -43,6 +42,8 @@ Lightweight, effecient and modular ES6 version of tween.js * [.Tween#easing(_easingFunction)](#TWEEN.Tween.Tween+easing) * [.Tween#interpolation(_interpolationFunction)](#TWEEN.Tween.Tween+interpolation) * [.Tween#update(time, [preserve], [forceTime])](#TWEEN.Tween.Tween+update) + * [.Plugins](#TWEEN.Plugins) : object + * [.now](#TWEEN.now) ⇒ * [.add(tween)](#TWEEN.add) * [.onTick(fn)](#TWEEN.onTick) * [.FrameThrottle([frameCount])](#TWEEN.FrameThrottle) @@ -54,27 +55,6 @@ Lightweight, effecient and modular ES6 version of tween.js * [.update([time], [preserve])](#TWEEN.update) * [.isRunning()](#TWEEN.isRunning) ⇒ Boolean - - -### TWEEN.now ⇒ -Get browser/Node.js current time-stamp - -**Kind**: static property of [TWEEN](#TWEEN) -**Returns**: Normalised current time-stamp in milliseconds -**Example** -```js -TWEEN.now -``` - - -### TWEEN.Plugins : object -The plugins store object - -**Kind**: static namespace of [TWEEN](#TWEEN) -**Example** -```js -let num = Plugins.num = function (node, start, end) { return t => start + (end - start) * t } -``` ### TWEEN.Easing : object @@ -83,7 +63,9 @@ List of full easings **Kind**: static namespace of [TWEEN](#TWEEN) **Example** ```js -import {Tween, Easing} from 'es6-tween' // then set via new Tween({x:0}).to({x:100}, 1000).easing(Easing.Quadratic.InOut).start() +import {Tween, Easing} from 'es6-tween' + +// then set via new Tween({x:0}).to({x:100}, 1000).easing(Easing.Quadratic.InOut).start() ``` @@ -93,7 +75,10 @@ List of full Interpolation **Kind**: static namespace of [TWEEN](#TWEEN) **Example** ```js -import {Interpolation, Tween} from 'es6-tween' let bezier = Interpolation.Bezier new Tween({x:0}).to({x:[0, 4, 8, 12, 15, 20, 30, 40, 20, 40, 10, 50]}, 1000).interpolation(bezier).start() +import {Interpolation, Tween} from 'es6-tween' + +let bezier = Interpolation.Bezier +new Tween({x:0}).to({x:[0, 4, 8, 12, 15, 20, 30, 40, 20, 40, 10, 50]}, 1000).interpolation(bezier).start() ``` @@ -159,9 +144,9 @@ Sets max `event` listener's count to Events system **Kind**: static method of [Tween](#TWEEN.Tween) -| Param | Type | Description | -| --- | --- | --- | -| count | number | Event listener's count | +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| count | number | 15 | Event listener's count | @@ -178,7 +163,8 @@ Adds `event` to Events system #### Tween.Tween#once(event, callback) -Adds `event` to Events system. Removes itself after fired once +Adds `event` to Events system. +Removes itself after fired once **Kind**: static method of [Tween](#TWEEN.Tween) @@ -484,6 +470,29 @@ Updates initial object to target value by given `time` ```js tween.update(100) ``` + + +### TWEEN.Plugins : object +The plugins store object + +**Kind**: static namespace of [TWEEN](#TWEEN) +**Example** +```js +let num = Plugins.num = function (node, start, end) { +return t => start + (end - start) * t +} +``` + + +### TWEEN.now ⇒ +Get browser/Node.js current time-stamp + +**Kind**: static constant of [TWEEN](#TWEEN) +**Returns**: Normalised current time-stamp in milliseconds +**Example** +```js +TWEEN.now +``` ### TWEEN.add(tween) @@ -497,7 +506,9 @@ Adds tween to list **Example** ```js -let tween = new Tween({x:0}) tween.to({x:200}, 1000) TWEEN.add(tween) +let tween = new Tween({x:0}) +tween.to({x:200}, 1000) +TWEEN.add(tween) ``` diff --git a/README.md b/README.md index be5612e..6ca4ea9 100644 --- a/README.md +++ b/README.md @@ -114,17 +114,6 @@ Download the [library](https://raw.githubusercontent.com/tweenjs/es6-tween/maste ### More advanced users might want to... -#### Using `grunt` - -PR are welcome... - -#### Using `gulp` - -After package installed, go-to directory and then run: - -- if you want build, then `$ gulp` -- if you want watch, then `$ gulp watch` - #### Using `import` ```javascript @@ -145,14 +134,12 @@ const { Tween, Easing, autoPlay } = require('es6-tween') ``` -#### Using `npm`, `yarn` or `bower` +#### Using `npm` or `yarn` ```bash $ yarn add es6-tween # or $ npm install es6-tween -# or -$ bower install es6-tween ``` Then include the Tween.js module with the standard node.js `require`: @@ -173,9 +160,9 @@ You can run script commands to build modules into single `UMD` compatible file: #### Using commands ```bash -$ npm run build # builds production files +$ yarn build # builds production files # or -$ npm run dev # builds and watchs development files +$ yarn dev # builds and watchs development files ``` Then reference the library source: diff --git a/bower.json b/bower.json deleted file mode 100644 index 3688484..0000000 --- a/bower.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "es6-tween", - "homepage": "https://github.com/tweenjs/es6-tween", - "authors": [ - "tween.js contributors" - ], - "description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.", - "main": "src/Tween.js", - "moduleType": [ - "node" - ], - "keywords": [ - "tween", - "interpolation" - ], - "license": "MIT", - "ignore": [ - "node_modules", - "bower_components", - "test", - "assets", - "docs", - "examples", - ".*" - ] -} \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 2005513..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,32 +0,0 @@ -var gulp = require('gulp'); -var ts = require('gulp-typescript'); -var buble = require('gulp-buble'); -var concat = require('gulp-concat'); -var uglify = require('gulp-uglify'); - -gulp.task('ts-es6', function(){ - return gulp.src('ts/*.ts') - .pipe(ts()) - .pipe(gulp.dest('./src/')) -}); - -gulp.task('es6-es5', function(){ - return gulp.src('src/*.js') - .pipe(buble()) - .pipe(concat('Tween.js')) - .pipe(gulp.dest('./bundled/')) -}); - -gulp.task('minify', function(){ - return gulp.src('src/*.js') - .pipe(buble()) - .pipe(uglify()) - .pipe(concat('Tween.min.js')) - .pipe(gulp.dest('./bundled/')) -}); - -gulp.task('watch', function(){ - gulp.watch('ts/*.ts', [ 'ts-es6', 'es6-es5' ]); -}); - -gulp.task('default', [ 'ts-es6', 'es6-es5', 'minify' ]); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index e3b784a..0000000 --- a/package-lock.json +++ /dev/null @@ -1,8309 +0,0 @@ -{ - "name": "es6-tween", - "version": "5.0.5", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@ava/babel-plugin-throws-helper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz", - "integrity": "sha1-L8H+PCEacQcaTsp7j3r1hCzRrnw=", - "dev": true - }, - "@ava/babel-preset-stage-4": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz", - "integrity": "sha512-oWqTnIGXW3k72UFidXzW0ONlO7hnO9x02S/QReJ7NBGeiBH9cUHY9+EfV6C8PXC6YJH++WrliEq03wMSJGNZFg==", - "dev": true, - "requires": { - "babel-plugin-check-es2015-constants": "6.22.0", - "babel-plugin-syntax-trailing-function-commas": "6.22.0", - "babel-plugin-transform-async-to-generator": "6.24.1", - "babel-plugin-transform-es2015-destructuring": "6.23.0", - "babel-plugin-transform-es2015-function-name": "6.24.1", - "babel-plugin-transform-es2015-modules-commonjs": "6.26.0", - "babel-plugin-transform-es2015-parameters": "6.24.1", - "babel-plugin-transform-es2015-spread": "6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "6.24.1", - "babel-plugin-transform-es2015-unicode-regex": "6.24.1", - "babel-plugin-transform-exponentiation-operator": "6.24.1", - "package-hash": "1.2.0" - }, - "dependencies": { - "md5-hex": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-1.3.0.tgz", - "integrity": "sha1-0sSv6YPENwZiF5uMrRRSGRNQRsQ=", - "dev": true, - "requires": { - "md5-o-matic": "0.1.1" - } - }, - "package-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-1.2.0.tgz", - "integrity": "sha1-AD5WzVe3NqbtYRTMK4FUJnJ3DkQ=", - "dev": true, - "requires": { - "md5-hex": "1.3.0" - } - } - } - }, - "@ava/babel-preset-transform-test-files": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz", - "integrity": "sha1-ze0RlqjY2TgaUJJAq5LpGl7Aafc=", - "dev": true, - "requires": { - "@ava/babel-plugin-throws-helper": "2.0.0", - "babel-plugin-espower": "2.3.2" - } - }, - "@ava/write-file-atomic": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz", - "integrity": "sha512-BTNB3nGbEfJT+69wuqXFr/bQH7Vr7ihx2xGOMNqPgDGhwspoZhiWumDDZNjBy7AScmqS5CELIOGtPVXESyrnDA==", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "slide": "1.1.6" - } - }, - "@concordance/react": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@concordance/react/-/react-1.0.0.tgz", - "integrity": "sha512-htrsRaQX8Iixlsek8zQU7tE8wcsTQJ5UhZkSPEA8slCDAisKpC/2VgU/ucPn32M5/LjGGXRaUEKvEw1Wiuu4zQ==", - "dev": true, - "requires": { - "arrify": "1.0.1" - } - }, - "acorn": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.2.tgz", - "integrity": "sha512-o96FZLJBPY1lvTuJylGA9Bk3t/GKPPJG8H0ydQQl01crzwJgspa4AEIq/pVTXigmK0PHVQhiAtn8WMBLL9D2WA==", - "dev": true - }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "dev": true, - "requires": { - "acorn": "3.3.0" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", - "dev": true - } - } - }, - "acorn5-object-spread": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/acorn5-object-spread/-/acorn5-object-spread-4.0.0.tgz", - "integrity": "sha1-1XWAge7ZcSGrC+R+Mcqu8qo5lpc=", - "dev": true, - "requires": { - "acorn": "5.1.2" - } - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true - }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", - "dev": true, - "requires": { - "string-width": "2.1.1" - } - }, - "ansi-colors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.0.1.tgz", - "integrity": "sha512-yopkAU0ZD/WQ56Tms3xLn6jRuX3SyUMAVi0FdmDIbmmnHW3jHiI1sQFdUl3gfVddjnrsP3Y6ywFKvCRopvoVIA==", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } - }, - "ansi-cyan": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", - "integrity": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } - }, - "ansi-escape-sequences": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz", - "integrity": "sha1-HBg5S2r5t2/5pjUJ+kl2af0s5T4=", - "dev": true, - "requires": { - "array-back": "1.0.4" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "ansi-escapes": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-2.0.0.tgz", - "integrity": "sha1-W65SvkJIeN2Xg+iRDj/Cki6DyBs=", - "dev": true - }, - "ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } - }, - "ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=", - "dev": true, - "requires": { - "ansi-wrap": "0.1.0" - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", - "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", - "dev": true, - "requires": { - "color-convert": "1.9.0" - } - }, - "ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=", - "dev": true - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true, - "requires": { - "micromatch": "2.3.11", - "normalize-path": "2.1.1" - } - }, - "app-usage-stats": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/app-usage-stats/-/app-usage-stats-0.5.1.tgz", - "integrity": "sha1-ZUfF25urCqX1ssVg6syK8g0KsTs=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "home-path": "1.0.5", - "test-value": "2.1.0", - "usage-stats": "0.9.4" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", - "dev": true, - "requires": { - "buffer-equal": "1.0.0" - } - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", - "dev": true - }, - "argparse": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", - "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", - "dev": true, - "requires": { - "sprintf-js": "1.0.3" - } - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "1.1.0" - } - }, - "arr-exclude": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/arr-exclude/-/arr-exclude-1.0.0.tgz", - "integrity": "sha1-38fC5VKicHI8zaBM8xKMjL/lxjE=", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-back": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz", - "integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==", - "dev": true, - "requires": { - "typical": "2.6.1" - } - }, - "array-differ": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", - "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", - "dev": true - }, - "array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", - "dev": true - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true - }, - "array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "1.0.3" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", - "dev": true, - "optional": true - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", - "dev": true - }, - "atob": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz", - "integrity": "sha1-GcenYEc3dEaPILLS0DNyrX1Mv10=", - "dev": true - }, - "auto-bind": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/auto-bind/-/auto-bind-1.1.0.tgz", - "integrity": "sha1-k7hk3H7gGjJigXddXHXKCnUeWWE=", - "dev": true - }, - "ava": { - "version": "0.22.0", - "resolved": "https://registry.npmjs.org/ava/-/ava-0.22.0.tgz", - "integrity": "sha512-dYxvVDL9CeIcgaQ/FojaBVaL/rnIsXdgPVliDOMe1O5nSsIZEsPYDIzmZ1KnO/cuxeQx1PQbtW6qziiEwQZusg==", - "dev": true, - "requires": { - "@ava/babel-preset-stage-4": "1.1.0", - "@ava/babel-preset-transform-test-files": "3.0.0", - "@ava/write-file-atomic": "2.2.0", - "@concordance/react": "1.0.0", - "ansi-escapes": "2.0.0", - "ansi-styles": "3.2.0", - "arr-flatten": "1.1.0", - "array-union": "1.0.2", - "array-uniq": "1.0.3", - "arrify": "1.0.1", - "auto-bind": "1.1.0", - "ava-init": "0.2.1", - "babel-core": "6.26.0", - "bluebird": "3.5.0", - "caching-transform": "1.0.1", - "chalk": "2.1.0", - "chokidar": "1.7.0", - "clean-stack": "1.3.0", - "clean-yaml-object": "0.1.0", - "cli-cursor": "2.1.0", - "cli-spinners": "1.0.1", - "cli-truncate": "1.1.0", - "co-with-promise": "4.6.0", - "code-excerpt": "2.1.0", - "common-path-prefix": "1.0.0", - "concordance": "3.0.0", - "convert-source-map": "1.5.0", - "core-assert": "0.2.1", - "currently-unhandled": "0.4.1", - "debug": "2.6.9", - "dot-prop": "4.2.0", - "empower-core": "0.6.2", - "equal-length": "1.0.1", - "figures": "2.0.0", - "find-cache-dir": "1.0.0", - "fn-name": "2.0.1", - "get-port": "3.2.0", - "globby": "6.1.0", - "has-flag": "2.0.0", - "hullabaloo-config-manager": "1.1.1", - "ignore-by-default": "1.0.1", - "import-local": "0.1.1", - "indent-string": "3.2.0", - "is-ci": "1.0.10", - "is-generator-fn": "1.0.0", - "is-obj": "1.0.1", - "is-observable": "0.2.0", - "is-promise": "2.1.0", - "js-yaml": "3.10.0", - "last-line-stream": "1.0.0", - "lodash.clonedeepwith": "4.5.0", - "lodash.debounce": "4.0.8", - "lodash.difference": "4.5.0", - "lodash.flatten": "4.4.0", - "loud-rejection": "1.6.0", - "make-dir": "1.0.0", - "matcher": "1.0.0", - "md5-hex": "2.0.0", - "meow": "3.7.0", - "ms": "2.0.0", - "multimatch": "2.1.0", - "observable-to-promise": "0.5.0", - "option-chain": "1.0.0", - "package-hash": "2.0.0", - "pkg-conf": "2.0.0", - "plur": "2.1.2", - "pretty-ms": "2.1.0", - "require-precompiled": "0.1.0", - "resolve-cwd": "2.0.0", - "safe-buffer": "5.1.1", - "slash": "1.0.0", - "source-map-support": "0.4.18", - "stack-utils": "1.0.1", - "strip-ansi": "4.0.0", - "strip-bom-buf": "1.0.0", - "supports-color": "4.4.0", - "time-require": "0.1.2", - "trim-off-newlines": "1.0.1", - "unique-temp-dir": "1.0.0", - "update-notifier": "2.2.0" - } - }, - "ava-init": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/ava-init/-/ava-init-0.2.1.tgz", - "integrity": "sha512-lXwK5LM+2g1euDRqW1mcSX/tqzY1QU7EjKpqayFPPtNRmbSYZ8RzPO5tqluTToijmtjp2M+pNpVdbcHssC4glg==", - "dev": true, - "requires": { - "arr-exclude": "1.0.0", - "execa": "0.7.0", - "has-yarn": "1.0.0", - "read-pkg-up": "2.0.0", - "write-pkg": "3.1.0" - } - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "esutils": "2.0.2", - "js-tokens": "3.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "babel-core": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz", - "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", - "dev": true, - "requires": { - "babel-code-frame": "6.26.0", - "babel-generator": "6.26.0", - "babel-helpers": "6.24.1", - "babel-messages": "6.23.0", - "babel-register": "6.26.0", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "convert-source-map": "1.5.0", - "debug": "2.6.9", - "json5": "0.5.1", - "lodash": "4.17.4", - "minimatch": "3.0.4", - "path-is-absolute": "1.0.1", - "private": "0.1.7", - "slash": "1.0.0", - "source-map": "0.5.7" - } - }, - "babel-generator": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz", - "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=", - "dev": true, - "requires": { - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "detect-indent": "4.0.0", - "jsesc": "1.3.0", - "lodash": "4.17.4", - "source-map": "0.5.7", - "trim-right": "1.0.1" - }, - "dependencies": { - "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", - "dev": true - } - } - }, - "babel-helper-builder-binary-assignment-operator-visitor": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", - "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", - "dev": true, - "requires": { - "babel-helper-explode-assignable-expression": "6.24.1", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-call-delegate": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", - "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", - "dev": true, - "requires": { - "babel-helper-hoist-variables": "6.24.1", - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-explode-assignable-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", - "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "dev": true, - "requires": { - "babel-helper-get-function-arity": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-get-function-arity": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-hoist-variables": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", - "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helper-regex": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", - "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "lodash": "4.17.4" - } - }, - "babel-helper-remap-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", - "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", - "dev": true, - "requires": { - "babel-helper-function-name": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-helpers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", - "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-template": "6.26.0" - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-check-es2015-constants": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", - "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-espower": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz", - "integrity": "sha1-VRa4/NsmyfDh2BYHSfbkxl5xJx4=", - "dev": true, - "requires": { - "babel-generator": "6.26.0", - "babylon": "6.18.0", - "call-matcher": "1.0.1", - "core-js": "2.5.1", - "espower-location-detector": "1.0.0", - "espurify": "1.7.0", - "estraverse": "4.2.0" - } - }, - "babel-plugin-syntax-async-functions": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", - "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=", - "dev": true - }, - "babel-plugin-syntax-exponentiation-operator": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", - "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=", - "dev": true - }, - "babel-plugin-syntax-trailing-function-commas": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", - "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=", - "dev": true - }, - "babel-plugin-transform-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", - "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", - "dev": true, - "requires": { - "babel-helper-remap-async-to-generator": "6.24.1", - "babel-plugin-syntax-async-functions": "6.13.0", - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-transform-es2015-destructuring": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-transform-es2015-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", - "dev": true, - "requires": { - "babel-helper-function-name": "6.24.1", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz", - "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=", - "dev": true, - "requires": { - "babel-plugin-transform-strict-mode": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-plugin-transform-es2015-parameters": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", - "dev": true, - "requires": { - "babel-helper-call-delegate": "6.24.1", - "babel-helper-get-function-arity": "6.24.1", - "babel-runtime": "6.26.0", - "babel-template": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-plugin-transform-es2015-spread": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-transform-es2015-sticky-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", - "dev": true, - "requires": { - "babel-helper-regex": "6.26.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-plugin-transform-es2015-unicode-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", - "dev": true, - "requires": { - "babel-helper-regex": "6.26.0", - "babel-runtime": "6.26.0", - "regexpu-core": "2.0.0" - } - }, - "babel-plugin-transform-exponentiation-operator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", - "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", - "dev": true, - "requires": { - "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1", - "babel-plugin-syntax-exponentiation-operator": "6.13.0", - "babel-runtime": "6.26.0" - } - }, - "babel-plugin-transform-strict-mode": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", - "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-types": "6.26.0" - } - }, - "babel-register": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", - "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", - "dev": true, - "requires": { - "babel-core": "6.26.0", - "babel-runtime": "6.26.0", - "core-js": "2.5.1", - "home-or-tmp": "2.0.0", - "lodash": "4.17.4", - "mkdirp": "0.5.1", - "source-map-support": "0.4.18" - } - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "dev": true, - "requires": { - "core-js": "2.5.1", - "regenerator-runtime": "0.11.0" - } - }, - "babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", - "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "babel-traverse": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "lodash": "4.17.4" - } - }, - "babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", - "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "dev": true, - "requires": { - "babel-code-frame": "6.26.0", - "babel-messages": "6.23.0", - "babel-runtime": "6.26.0", - "babel-types": "6.26.0", - "babylon": "6.18.0", - "debug": "2.6.9", - "globals": "9.18.0", - "invariant": "2.2.2", - "lodash": "4.17.4" - } - }, - "babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "dev": true, - "requires": { - "babel-runtime": "6.26.0", - "esutils": "2.0.2", - "lodash": "4.17.4", - "to-fast-properties": "1.0.3" - } - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "1.0.1", - "class-utils": "0.3.5", - "component-emitter": "1.2.1", - "define-property": "1.0.0", - "isobject": "3.0.1", - "mixin-deep": "1.3.0", - "pascalcase": "0.1.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "beeper": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", - "dev": true - }, - "binary-extensions": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz", - "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=", - "dev": true - }, - "bluebird": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz", - "integrity": "sha1-eRQg1/VR7qKJdFOop3ZT+WYG1nw=", - "dev": true - }, - "boxen": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.2.1.tgz", - "integrity": "sha1-DxHn/jRO25OXl3/BPt5/ZNlWSB0=", - "dev": true, - "requires": { - "ansi-align": "2.0.0", - "camelcase": "4.1.0", - "chalk": "2.1.0", - "cli-boxes": "1.0.0", - "string-width": "2.1.1", - "term-size": "1.2.0", - "widest-line": "1.0.0" - }, - "dependencies": { - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - } - } - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", - "dev": true, - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true, - "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" - } - }, - "buble": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/buble/-/buble-0.18.0.tgz", - "integrity": "sha512-U3NJxUiSz0H1EB54PEHAuBTxdXgQH4DaQkvkINFXf9kEKCDWSn67EgQfFKbkTzsok4xRrIPsoxWDl2czCHR65g==", - "dev": true, - "requires": { - "acorn": "5.1.2", - "acorn-jsx": "3.0.1", - "acorn5-object-spread": "4.0.0", - "chalk": "2.1.0", - "magic-string": "0.22.4", - "minimist": "1.2.0", - "os-homedir": "1.0.2", - "vlq": "0.2.2" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "buf-compare": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz", - "integrity": "sha1-/vKNqLgROgoNtEMLC2Rntpcws0o=", - "dev": true - }, - "buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "1.0.0", - "component-emitter": "1.2.1", - "get-value": "2.0.6", - "has-value": "1.0.0", - "isobject": "3.0.1", - "set-value": "2.0.0", - "to-object-path": "0.3.0", - "union-value": "1.0.0", - "unset-value": "1.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "cache-point": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cache-point/-/cache-point-0.4.1.tgz", - "integrity": "sha512-4TgWfe9SF+bUy5cCql8gWHqKNrviufNwSYxLjf2utB0pY4+bdcuFwMmY1hDB+67Gz/L1vmhFNhePAjJTFBtV+Q==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "fs-then-native": "2.0.0", - "mkdirp2": "1.0.3" - } - }, - "caching-transform": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-1.0.1.tgz", - "integrity": "sha1-bb2y8g+Nj7znnz6U6dF0Lc31wKE=", - "dev": true, - "requires": { - "md5-hex": "1.3.0", - "mkdirp": "0.5.1", - "write-file-atomic": "1.3.4" - }, - "dependencies": { - "md5-hex": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-1.3.0.tgz", - "integrity": "sha1-0sSv6YPENwZiF5uMrRRSGRNQRsQ=", - "dev": true, - "requires": { - "md5-o-matic": "0.1.1" - } - }, - "write-file-atomic": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", - "integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "slide": "1.1.6" - } - } - } - }, - "call-matcher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-matcher/-/call-matcher-1.0.1.tgz", - "integrity": "sha1-UTTQd5hPcSpU2tPL9i3ijc5BbKg=", - "dev": true, - "requires": { - "core-js": "2.5.1", - "deep-equal": "1.0.1", - "espurify": "1.7.0", - "estraverse": "4.2.0" - } - }, - "call-signature": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/call-signature/-/call-signature-0.0.2.tgz", - "integrity": "sha1-qEq8glpV70yysCi9dOIFpluaSZY=", - "dev": true - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "requires": { - "camelcase": "2.1.1", - "map-obj": "1.0.1" - } - }, - "capture-stack-trace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz", - "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0=", - "dev": true - }, - "catharsis": { - "version": "0.8.9", - "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz", - "integrity": "sha1-mMyJDKZS3S7w5ws3klMQ/56Q/Is=", - "dev": true, - "requires": { - "underscore-contrib": "0.3.0" - } - }, - "chalk": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz", - "integrity": "sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==", - "dev": true, - "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.4.0" - } - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "requires": { - "anymatch": "1.3.2", - "async-each": "1.0.1", - "fsevents": "1.1.3", - "glob-parent": "2.0.0", - "inherits": "2.0.3", - "is-binary-path": "1.0.1", - "is-glob": "2.0.1", - "path-is-absolute": "1.0.1", - "readdirp": "2.1.0" - } - }, - "ci-info": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.1.1.tgz", - "integrity": "sha512-vHDDF/bP9RYpTWtUhpJRhCFdvvp3iDWvEbuDbWgvjUrNGV1MXJrE0MPcwGtEled04m61iwdBLUIHZtDgzWS4ZQ==", - "dev": true - }, - "class-utils": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.5.tgz", - "integrity": "sha1-F+eTEDdQ+WJ7IXbqNM/RtWWQPIA=", - "dev": true, - "requires": { - "arr-union": "3.1.0", - "define-property": "0.2.5", - "isobject": "3.0.1", - "lazy-cache": "2.0.2", - "static-extend": "0.1.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "clean-stack": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz", - "integrity": "sha1-noIVAa6XmYbEax1m0tQy2y/UrjE=", - "dev": true - }, - "clean-yaml-object": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz", - "integrity": "sha1-Y/sRDcLOGoTcIfbZM0h20BCui2g=", - "dev": true - }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", - "dev": true - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "2.0.0" - } - }, - "cli-spinners": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.0.1.tgz", - "integrity": "sha1-JnUyHBAPGVsCh3rEmemRH6NLl4M=", - "dev": true - }, - "cli-truncate": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz", - "integrity": "sha512-bAtZo0u82gCfaAGfSNxUdTI9mNyza7D8w4CVCcaOsy7sgwDzvx6ekr6cuWJqY3UGzgnQ1+4wgENup5eIhgxEYA==", - "dev": true, - "requires": { - "slice-ansi": "1.0.0", - "string-width": "2.1.1" - } - }, - "clone": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz", - "integrity": "sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8=", - "dev": true - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", - "dev": true - }, - "clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", - "dev": true - }, - "cloneable-readable": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz", - "integrity": "sha1-pikNQT8hemEjL5XkWP84QYz7ARc=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "process-nextick-args": "1.0.7", - "through2": "2.0.3" - } - }, - "co-with-promise": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co-with-promise/-/co-with-promise-4.6.0.tgz", - "integrity": "sha1-QT59tvWJOmC5Qs9JLEvsk9tBWrc=", - "dev": true, - "requires": { - "pinkie-promise": "1.0.0" - } - }, - "code-excerpt": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.0.tgz", - "integrity": "sha1-XcwIHoj0p+O1VOnjXX7yMtR/gUc=", - "dev": true, - "requires": { - "convert-to-spaces": "1.0.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collect-all": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/collect-all/-/collect-all-1.0.3.tgz", - "integrity": "sha512-0y0rBgoX8IzIjBAUnO73SEtSb4Mhk3IoceWJq5zZSxb9mWORhWH8xLYo4EDSOE1jRBk1LhmfjqWFFt10h/+MEA==", - "dev": true, - "requires": { - "stream-connect": "1.0.2", - "stream-via": "1.0.4" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "1.0.0", - "object-visit": "1.0.1" - } - }, - "color-convert": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz", - "integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "command-line-args": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-4.0.7.tgz", - "integrity": "sha512-aUdPvQRAyBvQd2n7jXcsMDz68ckBJELXNzBybCHOibUWEg0mWTnaYCSRU8h9R+aNRSvDihJtssSRCiDRpLaezA==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "find-replace": "1.0.3", - "typical": "2.6.1" - } - }, - "command-line-tool": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/command-line-tool/-/command-line-tool-0.7.0.tgz", - "integrity": "sha1-yoB5KuIGnPfKpWLAy8LNEYERIqA=", - "dev": true, - "requires": { - "ansi-escape-sequences": "3.0.0", - "array-back": "1.0.4", - "command-line-args": "4.0.7", - "command-line-usage": "4.0.1", - "typical": "2.6.1" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "command-line-usage": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-4.0.1.tgz", - "integrity": "sha512-IqYzZuXizukrdhnbdUj2hh4iceycow+Jn10mER4lwU4IapYvl5ZzoRPsj5Yraew5oRk4yfFKMuULGvAfb5o29w==", - "dev": true, - "requires": { - "ansi-escape-sequences": "4.0.0", - "array-back": "2.0.0", - "table-layout": "0.4.2", - "typical": "2.6.1" - }, - "dependencies": { - "ansi-escape-sequences": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-4.0.0.tgz", - "integrity": "sha512-v+0wW9Wezwsyb0uF4aBVCjmSqit3Ru7PZFziGF0o2KwTvN2zWfTi3BRLq9EkJFdg3eBbyERXGTntVpBxH1J68Q==", - "dev": true, - "requires": { - "array-back": "2.0.0" - } - } - } - }, - "commander": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz", - "integrity": "sha512-BFnaq5ZOGcDN7FlrtBT4xxkgIToalIIxwjxLWVJ8bGTpe1LroqMiqQXdA7ygc7CRvaYS+9zfPGFnJqFSayx+AA==", - "dev": true - }, - "common-path-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-1.0.0.tgz", - "integrity": "sha1-zVL28HEuC6q5fW+XModPIvR3UsA=", - "dev": true - }, - "common-sequence": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/common-sequence/-/common-sequence-1.0.2.tgz", - "integrity": "sha1-MOB/P49vf5s97oVPILLTnu4Ibeg=", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "concat-with-sourcemaps": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.5.tgz", - "integrity": "sha512-YtnS0VEY+e2Khzsey/6mra9EoM6h/5gxaC0e3mcHpA5yfDxafhygytNmcJWodvUgyXzSiL5MSkPO6bQGgfliHw==", - "dev": true, - "requires": { - "source-map": "0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "concordance": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/concordance/-/concordance-3.0.0.tgz", - "integrity": "sha512-CZBzJ3/l5QJjlZM20WY7+5GP5pMTw+1UEbThcpMw8/rojsi5sBCiD8ZbBLtD+jYpRGAkwuKuqk108c154V9eyQ==", - "dev": true, - "requires": { - "date-time": "2.1.0", - "esutils": "2.0.2", - "fast-diff": "1.1.2", - "function-name-support": "0.2.0", - "js-string-escape": "1.0.1", - "lodash.clonedeep": "4.5.0", - "lodash.flattendeep": "4.4.0", - "lodash.merge": "4.6.0", - "md5-hex": "2.0.0", - "semver": "5.4.1", - "well-known-symbols": "1.0.0" - } - }, - "config-master": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/config-master/-/config-master-3.1.0.tgz", - "integrity": "sha1-ZnZjWQUFooO/JqSE1oSJ10xUhdo=", - "dev": true, - "requires": { - "walk-back": "2.0.1" - }, - "dependencies": { - "walk-back": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz", - "integrity": "sha1-VU4qnYdPrEeoywBr9EwvDEmYoKQ=", - "dev": true - } - } - }, - "configstore": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz", - "integrity": "sha512-5oNkD/L++l0O6xGXxb1EWS7SivtjfGQlRyxJsYgE0Z495/L81e2h4/d3r969hoPXuFItzNOKMtsXgYG4c7dYvw==", - "dev": true, - "requires": { - "dot-prop": "4.2.0", - "graceful-fs": "4.1.11", - "make-dir": "1.0.0", - "unique-string": "1.0.0", - "write-file-atomic": "2.3.0", - "xdg-basedir": "3.0.0" - } - }, - "convert-source-map": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", - "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=", - "dev": true - }, - "convert-to-spaces": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz", - "integrity": "sha1-fj5Iu+bZl7FBfdyihoIEtNPYVxU=", - "dev": true - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "core-assert": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz", - "integrity": "sha1-+F4s+b/tKPdzzIs/pcW2m9wC/j8=", - "dev": true, - "requires": { - "buf-compare": "1.0.1", - "is-error": "2.2.1" - } - }, - "core-js": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "dev": true, - "requires": { - "capture-stack-trace": "1.0.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "4.1.1", - "shebang-command": "1.2.0", - "which": "1.3.0" - } - }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", - "dev": true - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "1.0.2" - } - }, - "date-time": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz", - "integrity": "sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==", - "dev": true, - "requires": { - "time-zone": "1.0.0" - } - }, - "dateformat": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", - "integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true - }, - "deep-extend": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=", - "dev": true - }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", - "dev": true, - "requires": { - "clone": "1.0.3" - } - }, - "defer-promise": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/defer-promise/-/defer-promise-1.0.1.tgz", - "integrity": "sha1-HKb/7dvO8XFd16riXHYW+a4iky8=", - "dev": true - }, - "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", - "dev": true, - "requires": { - "foreach": "2.0.5", - "object-keys": "1.0.11" - } - }, - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "1.0.2" - } - }, - "deprecated": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz", - "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk=", - "dev": true - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", - "dev": true - }, - "detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "dev": true, - "requires": { - "repeating": "2.0.1" - } - }, - "dmd": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/dmd/-/dmd-3.0.6.tgz", - "integrity": "sha1-lMDg+4jRy2uCg3WVBT3nkZx1PCU=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "cache-point": "0.4.1", - "common-sequence": "1.0.2", - "file-set": "1.1.1", - "handlebars": "3.0.3", - "marked": "0.3.6", - "object-get": "2.1.0", - "reduce-flatten": "1.0.1", - "reduce-unique": "1.0.0", - "reduce-without": "1.0.1", - "test-value": "2.1.0", - "walk-back": "3.0.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "docdash": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/docdash/-/docdash-0.4.0.tgz", - "integrity": "sha1-BcOlDYMYmYFpnuDAdtOjlQ237AA=", - "dev": true - }, - "dot-prop": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", - "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", - "dev": true, - "requires": { - "is-obj": "1.0.1" - } - }, - "duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", - "dev": true, - "requires": { - "readable-stream": "1.1.14" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "dev": true - }, - "duplexify": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.3.tgz", - "integrity": "sha512-g8ID9OroF9hKt2POf8YLayy+9594PzmM3scI00/uBXocX3TWNgoB67hjzkFe9ITAbQOne/lLdBxHXvYUM4ZgGA==", - "dev": true, - "requires": { - "end-of-stream": "1.4.1", - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "stream-shift": "1.0.0" - }, - "dependencies": { - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "1.4.0" - } - } - } - }, - "empower-core": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/empower-core/-/empower-core-0.6.2.tgz", - "integrity": "sha1-Wt71ZgiOMfuoC6CjbfR9cJQWkUQ=", - "dev": true, - "requires": { - "call-signature": "0.0.2", - "core-js": "2.5.1" - } - }, - "end-of-stream": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", - "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", - "dev": true, - "requires": { - "once": "1.3.3" - }, - "dependencies": { - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - } - } - }, - "equal-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz", - "integrity": "sha1-IcoRLUirJLTh5//A5TOdMf38J0w=", - "dev": true - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "dev": true, - "requires": { - "is-arrayish": "0.2.1" - } - }, - "es6-error": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.0.2.tgz", - "integrity": "sha1-7sXHJurO9Rt/a3PCDbbhsTsGnJg=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "espower-location-detector": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/espower-location-detector/-/espower-location-detector-1.0.0.tgz", - "integrity": "sha1-oXt+zFnTDheeK+9z+0E3cEyzMbU=", - "dev": true, - "requires": { - "is-url": "1.2.2", - "path-is-absolute": "1.0.1", - "source-map": "0.5.7", - "xtend": "4.0.1" - } - }, - "esprima": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz", - "integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==", - "dev": true - }, - "espurify": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/espurify/-/espurify-1.7.0.tgz", - "integrity": "sha1-HFz2y8zDLm9jk4C9T5kfq5up0iY=", - "dev": true, - "requires": { - "core-js": "2.5.1" - } - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - }, - "estree-walker": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.5.1.tgz", - "integrity": "sha512-7HgCgz1axW7w5aOvgOQkoR1RMBkllygJrssU3BvymKQ95lxXYv6Pon17fBRDm9qhkvXZGijOULoSF9ShOk/ZLg==", - "dev": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "dev": true, - "requires": { - "cross-spawn": "5.1.0", - "get-stream": "3.0.0", - "is-stream": "1.1.0", - "npm-run-path": "2.0.2", - "p-finally": "1.0.0", - "signal-exit": "3.0.2", - "strip-eof": "1.0.0" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "0.1.1" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dev": true, - "requires": { - "fill-range": "2.2.3" - } - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", - "dev": true, - "requires": { - "homedir-polyfill": "1.0.1" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", - "dev": true - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "0.1.1" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "fancy-log": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz", - "integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=", - "dev": true, - "requires": { - "ansi-gray": "0.1.1", - "color-support": "1.1.3", - "time-stamp": "1.1.0" - } - }, - "fast-diff": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", - "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==", - "dev": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "1.0.5" - } - }, - "file-set": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/file-set/-/file-set-1.1.1.tgz", - "integrity": "sha1-0+xwwIDsjxjyBLod4QZ4DJBWkms=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "glob": "7.1.2" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true - }, - "fill-range": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", - "dev": true, - "requires": { - "is-number": "2.1.0", - "isobject": "2.1.0", - "randomatic": "1.1.7", - "repeat-element": "1.1.2", - "repeat-string": "1.6.1" - } - }, - "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "dev": true, - "requires": { - "commondir": "1.0.1", - "make-dir": "1.0.0", - "pkg-dir": "2.0.0" - } - }, - "find-index": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", - "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", - "dev": true - }, - "find-replace": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz", - "integrity": "sha1-uI5zZNLZyVlVnziMZmcNYTBEH6A=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "test-value": "2.1.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "2.0.0" - } - }, - "findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", - "dev": true, - "requires": { - "detect-file": "1.0.0", - "is-glob": "3.1.0", - "micromatch": "3.1.5", - "resolve-dir": "1.0.1" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz", - "integrity": "sha512-P4O8UQRdGiMLWSizsApmXVQDBS6KCt7dSexgLKBmH5Hr1CZq7vsnscFh8oR1sP1ab1Zj0uCHCEzZeV6SfUf3rA==", - "dev": true, - "requires": { - "arr-flatten": "1.1.0", - "array-unique": "0.3.2", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "fill-range": "4.0.0", - "isobject": "3.0.1", - "repeat-element": "1.1.2", - "snapdragon": "0.8.1", - "snapdragon-node": "2.1.1", - "split-string": "3.1.0", - "to-regex": "3.0.1" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - } - } - }, - "extglob": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.3.tgz", - "integrity": "sha512-AyptZexgu7qppEPq59DtN/XJGZDrLcVxSHai+4hdgMMS9EpF4GBvygcWWApno8lL9qSjVpYt7Raao28qzJX1ww==", - "dev": true, - "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "micromatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.5.tgz", - "integrity": "sha512-ykttrLPQrz1PUJcXjwsTUjGoPJ64StIGNE2lGVD1c9CuguJ+L7/navsE8IcDNndOoCMvYV0qc/exfVbMHkUhvA==", - "dev": true, - "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "braces": "2.3.0", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "extglob": "2.0.3", - "fragment-cache": "0.2.1", - "kind-of": "6.0.2", - "nanomatch": "1.2.7", - "object.pick": "1.3.0", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" - } - } - } - }, - "fined": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz", - "integrity": "sha1-s33IRLdqL15wgeiE98CuNE8VNHY=", - "dev": true, - "requires": { - "expand-tilde": "2.0.2", - "is-plain-object": "2.0.4", - "object.defaults": "1.1.0", - "object.pick": "1.3.0", - "parse-filepath": "1.0.2" - } - }, - "first-chunk-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", - "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", - "dev": true - }, - "flagged-respawn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz", - "integrity": "sha1-Tnmumy6zi/hrO7Vr8+ClaqX8q9c=", - "dev": true - }, - "flush-write-stream": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz", - "integrity": "sha1-yBuQ2HRnZvGmCaRoCZRsRd2K5Bc=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" - } - }, - "fn-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz", - "integrity": "sha1-UhTXU3pNBqSjAcDMJi/rhBiAAuc=", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "1.0.2" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "0.2.2" - } - }, - "fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "through2": "2.0.3" - } - }, - "fs-then-native": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fs-then-native/-/fs-then-native-2.0.0.tgz", - "integrity": "sha1-GaEk2U2QwiyOBF8ujdbr6jbUjGc=", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz", - "integrity": "sha512-WIr7iDkdmdbxu/Gh6eKEZJL6KPE74/5MEsf2whTOFNxbIoIixogroLdKYqB6FDav4Wavh/lZdzzd3b2KxIXC5Q==", - "dev": true, - "optional": true, - "requires": { - "nan": "2.8.0", - "node-pre-gyp": "0.6.39" - }, - "dependencies": { - "abbrev": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "ajv": { - "version": "4.11.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" - } - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true - }, - "aproba": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "1.0.0", - "readable-stream": "2.2.9" - } - }, - "asn1": { - "version": "0.2.3", - "bundled": true, - "dev": true, - "optional": true - }, - "assert-plus": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "asynckit": { - "version": "0.4.0", - "bundled": true, - "dev": true, - "optional": true - }, - "aws-sign2": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "aws4": { - "version": "1.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "balanced-match": { - "version": "0.4.2", - "bundled": true, - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "block-stream": { - "version": "0.0.9", - "bundled": true, - "dev": true, - "requires": { - "inherits": "2.0.3" - } - }, - "boom": { - "version": "2.10.1", - "bundled": true, - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, - "brace-expansion": { - "version": "1.1.7", - "bundled": true, - "dev": true, - "requires": { - "balanced-match": "0.4.2", - "concat-map": "0.0.1" - } - }, - "buffer-shims": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "caseless": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "optional": true - }, - "co": { - "version": "4.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true - }, - "combined-stream": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "requires": { - "delayed-stream": "1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "cryptiles": { - "version": "2.0.5", - "bundled": true, - "dev": true, - "requires": { - "boom": "2.10.1" - } - }, - "dashdash": { - "version": "1.14.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "debug": { - "version": "2.6.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.4.2", - "bundled": true, - "dev": true, - "optional": true - }, - "delayed-stream": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "ecc-jsbn": { - "version": "0.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "extend": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "extsprintf": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "bundled": true, - "dev": true, - "optional": true - }, - "form-data": { - "version": "2.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.15" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "fstream": { - "version": "1.0.11", - "bundled": true, - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.1" - } - }, - "fstream-ignore": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fstream": "1.0.11", - "inherits": "2.0.3", - "minimatch": "3.0.4" - } - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "1.1.1", - "console-control-strings": "1.1.0", - "has-unicode": "2.0.1", - "object-assign": "4.1.1", - "signal-exit": "3.0.2", - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wide-align": "1.1.2" - } - }, - "getpass": { - "version": "0.1.7", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "glob": { - "version": "7.1.2", - "bundled": true, - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "graceful-fs": { - "version": "4.1.11", - "bundled": true, - "dev": true - }, - "har-schema": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "optional": true - }, - "har-validator": { - "version": "4.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ajv": "4.11.8", - "har-schema": "1.0.5" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "hawk": { - "version": "3.1.3", - "bundled": true, - "dev": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "bundled": true, - "dev": true - }, - "http-signature": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.0", - "sshpk": "1.13.0" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "dev": true - }, - "ini": { - "version": "1.3.4", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "isstream": { - "version": "0.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "jodid25519": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "jsbn": { - "version": "0.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "bundled": true, - "dev": true, - "optional": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsonify": "0.0.0" - } - }, - "json-stringify-safe": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "jsonify": { - "version": "0.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "jsprim": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.0.2", - "json-schema": "0.2.3", - "verror": "1.3.6" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "mime-db": { - "version": "1.27.0", - "bundled": true, - "dev": true - }, - "mime-types": { - "version": "2.1.15", - "bundled": true, - "dev": true, - "requires": { - "mime-db": "1.27.0" - } - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "requires": { - "brace-expansion": "1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "dev": true - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "node-pre-gyp": { - "version": "0.6.39", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "1.0.2", - "hawk": "3.1.3", - "mkdirp": "0.5.1", - "nopt": "4.0.1", - "npmlog": "4.1.0", - "rc": "1.2.1", - "request": "2.81.0", - "rimraf": "2.6.1", - "semver": "5.3.0", - "tar": "2.2.1", - "tar-pack": "3.4.0" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1.1.0", - "osenv": "0.1.4" - } - }, - "npmlog": { - "version": "4.1.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "1.1.4", - "console-control-strings": "1.1.0", - "gauge": "2.7.4", - "set-blocking": "2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true - }, - "oauth-sign": { - "version": "0.8.2", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true - }, - "performance-now": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "1.0.7", - "bundled": true, - "dev": true - }, - "punycode": { - "version": "1.4.1", - "bundled": true, - "dev": true, - "optional": true - }, - "qs": { - "version": "6.4.0", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "0.4.2", - "ini": "1.3.4", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.2.9", - "bundled": true, - "dev": true, - "requires": { - "buffer-shims": "1.0.0", - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "1.0.1", - "util-deprecate": "1.0.2" - } - }, - "request": { - "version": "2.81.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "4.2.1", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.15", - "oauth-sign": "0.8.2", - "performance-now": "0.2.0", - "qs": "6.4.0", - "safe-buffer": "5.0.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.2", - "tunnel-agent": "0.6.0", - "uuid": "3.0.1" - } - }, - "rimraf": { - "version": "2.6.1", - "bundled": true, - "dev": true, - "requires": { - "glob": "7.1.2" - } - }, - "safe-buffer": { - "version": "5.0.1", - "bundled": true, - "dev": true - }, - "semver": { - "version": "5.3.0", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sntp": { - "version": "1.0.9", - "bundled": true, - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, - "sshpk": { - "version": "1.13.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jodid25519": "1.0.2", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "string_decoder": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "requires": { - "safe-buffer": "5.0.1" - } - }, - "stringstream": { - "version": "0.0.5", - "bundled": true, - "dev": true, - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "2.2.1", - "bundled": true, - "dev": true, - "requires": { - "block-stream": "0.0.9", - "fstream": "1.0.11", - "inherits": "2.0.3" - } - }, - "tar-pack": { - "version": "3.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "2.6.8", - "fstream": "1.0.11", - "fstream-ignore": "1.0.5", - "once": "1.4.0", - "readable-stream": "2.2.9", - "rimraf": "2.6.1", - "tar": "2.2.1", - "uid-number": "0.0.6" - } - }, - "tough-cookie": { - "version": "2.3.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "punycode": "1.4.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "bundled": true, - "dev": true, - "optional": true - }, - "uid-number": { - "version": "0.0.6", - "bundled": true, - "dev": true, - "optional": true - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "uuid": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "verror": { - "version": "1.3.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "extsprintf": "1.0.2" - } - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "1.0.2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true - } - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "function-name-support": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/function-name-support/-/function-name-support-0.2.0.tgz", - "integrity": "sha1-VdO/qm6v1QWlD5vIH99XVkoLsHE=", - "dev": true - }, - "gaze": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", - "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", - "dev": true, - "requires": { - "globule": "0.1.0" - } - }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=", - "dev": true - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "2.0.0", - "is-glob": "2.0.1" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "2.0.1" - } - }, - "glob-stream": { - "version": "3.1.18", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", - "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", - "dev": true, - "requires": { - "glob": "4.5.3", - "glob2base": "0.0.12", - "minimatch": "2.0.10", - "ordered-read-streams": "0.1.0", - "through2": "0.6.5", - "unique-stream": "1.0.0" - }, - "dependencies": { - "glob": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", - "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", - "dev": true, - "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "2.0.10", - "once": "1.4.0" - } - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "minimatch": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", - "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", - "dev": true, - "requires": { - "brace-expansion": "1.1.8" - } - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true, - "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" - } - } - } - }, - "glob-watcher": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", - "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", - "dev": true, - "requires": { - "gaze": "0.5.2" - } - }, - "glob2base": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", - "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", - "dev": true, - "requires": { - "find-index": "0.1.1" - } - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "1.0.2", - "is-windows": "1.0.1", - "resolve-dir": "1.0.1" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", - "dev": true, - "requires": { - "expand-tilde": "2.0.2", - "homedir-polyfill": "1.0.1", - "ini": "1.3.4", - "is-windows": "1.0.1", - "which": "1.3.0" - } - }, - "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", - "dev": true - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "dev": true, - "requires": { - "array-union": "1.0.2", - "glob": "7.1.2", - "object-assign": "4.1.1", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - }, - "dependencies": { - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "2.0.4" - } - } - } - }, - "globule": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", - "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", - "dev": true, - "requires": { - "glob": "3.1.21", - "lodash": "1.0.2", - "minimatch": "0.2.14" - }, - "dependencies": { - "glob": { - "version": "3.1.21", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", - "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", - "dev": true, - "requires": { - "graceful-fs": "1.2.3", - "inherits": "1.0.2", - "minimatch": "0.2.14" - } - }, - "graceful-fs": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", - "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", - "dev": true - }, - "inherits": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", - "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", - "dev": true - }, - "lodash": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", - "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", - "dev": true - }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", - "dev": true - }, - "minimatch": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", - "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", - "dev": true, - "requires": { - "lru-cache": "2.7.3", - "sigmund": "1.0.1" - } - } - } - }, - "glogg": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", - "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", - "dev": true, - "requires": { - "sparkles": "1.0.0" - } - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", - "dev": true, - "requires": { - "create-error-class": "3.0.2", - "duplexer3": "0.1.4", - "get-stream": "3.0.0", - "is-redirect": "1.0.0", - "is-retry-allowed": "1.1.0", - "is-stream": "1.1.0", - "lowercase-keys": "1.0.0", - "safe-buffer": "5.1.1", - "timed-out": "4.0.1", - "unzip-response": "2.0.1", - "url-parse-lax": "1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", - "dev": true - }, - "gulp": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", - "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", - "dev": true, - "requires": { - "archy": "1.0.0", - "chalk": "1.1.3", - "deprecated": "0.0.1", - "gulp-util": "3.0.8", - "interpret": "1.1.0", - "liftoff": "2.5.0", - "minimist": "1.2.0", - "orchestrator": "0.3.8", - "pretty-hrtime": "1.0.3", - "semver": "4.3.6", - "tildify": "1.2.0", - "v8flags": "2.1.1", - "vinyl-fs": "0.3.14" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "semver": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", - "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "gulp-buble": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/gulp-buble/-/gulp-buble-0.9.0.tgz", - "integrity": "sha512-98YOmUfd9VG4Inskae19sfUuAxHnmzIatEt0/X6qbHGhlr8NozDFDA6+vTQQGh6tOgRZ2simlVc7c23h4gr1gg==", - "dev": true, - "requires": { - "buble": "0.18.0", - "plugin-error": "0.1.2", - "readable-stream": "2.3.3", - "vinyl": "2.1.0", - "vinyl-sourcemaps-apply": "0.2.1" - }, - "dependencies": { - "clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", - "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "vinyl": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", - "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", - "dev": true, - "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" - } - } - } - }, - "gulp-concat": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", - "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", - "dev": true, - "requires": { - "concat-with-sourcemaps": "1.0.5", - "through2": "2.0.3", - "vinyl": "2.1.0" - }, - "dependencies": { - "clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", - "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "vinyl": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", - "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", - "dev": true, - "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" - } - } - } - }, - "gulp-typescript": { - "version": "4.0.0-alpha.1", - "resolved": "https://registry.npmjs.org/gulp-typescript/-/gulp-typescript-4.0.0-alpha.1.tgz", - "integrity": "sha512-XFDopOdgVfo1lScV2m8YRFQx3spyvyRYsUZ/PLKWELoGfIMA9qB/5A5dywoQThz0HqgXVAtpRZPlf2zBmGILPw==", - "dev": true, - "requires": { - "ansi-colors": "1.0.1", - "plugin-error": "0.1.2", - "source-map": "0.6.1", - "through2": "2.0.3", - "vinyl-fs": "3.0.1" - }, - "dependencies": { - "clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", - "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "3.1.0", - "path-dirname": "1.0.2" - } - }, - "glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", - "dev": true, - "requires": { - "extend": "3.0.1", - "glob": "7.1.2", - "glob-parent": "3.1.0", - "is-negated-glob": "1.0.0", - "ordered-read-streams": "1.0.1", - "pumpify": "1.3.6", - "readable-stream": "2.3.3", - "remove-trailing-separator": "1.1.0", - "to-absolute-glob": "2.0.2", - "unique-stream": "2.2.1" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "2.1.1" - } - }, - "ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", - "dev": true, - "requires": { - "readable-stream": "2.3.3" - } - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "unique-stream": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz", - "integrity": "sha1-WqADz76Uxf+GbE59ZouxxNuts2k=", - "dev": true, - "requires": { - "json-stable-stringify": "1.0.1", - "through2-filter": "2.0.0" - } - }, - "vinyl": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", - "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", - "dev": true, - "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" - } - }, - "vinyl-fs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.1.tgz", - "integrity": "sha1-dK9faDahz0FNNe6zwQ8uZfwqLBA=", - "dev": true, - "requires": { - "flush-write-stream": "1.0.2", - "fs-mkdirp-stream": "1.0.0", - "glob-stream": "6.1.0", - "graceful-fs": "4.1.11", - "is-valid-glob": "1.0.0", - "lazystream": "1.0.0", - "lead": "1.0.0", - "object.assign": "4.1.0", - "pumpify": "1.3.6", - "remove-bom-buffer": "3.0.0", - "remove-bom-stream": "1.2.0", - "resolve-options": "1.1.0", - "through2": "2.0.3", - "to-through": "2.0.0", - "value-or-function": "3.0.0", - "vinyl": "2.1.0", - "vinyl-sourcemap": "1.1.0" - } - } - } - }, - "gulp-uglify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.0.tgz", - "integrity": "sha1-DfAzHXKg0wLj434QlIXd3zPG0co=", - "dev": true, - "requires": { - "gulplog": "1.0.0", - "has-gulplog": "0.1.0", - "lodash": "4.17.4", - "make-error-cause": "1.2.2", - "through2": "2.0.3", - "uglify-js": "3.3.5", - "vinyl-sourcemaps-apply": "0.2.1" - } - }, - "gulp-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", - "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", - "dev": true, - "requires": { - "array-differ": "1.0.0", - "array-uniq": "1.0.3", - "beeper": "1.1.1", - "chalk": "1.1.3", - "dateformat": "2.2.0", - "fancy-log": "1.3.2", - "gulplog": "1.0.0", - "has-gulplog": "0.1.0", - "lodash._reescape": "3.0.0", - "lodash._reevaluate": "3.0.0", - "lodash._reinterpolate": "3.0.0", - "lodash.template": "3.6.2", - "minimist": "1.2.0", - "multipipe": "0.1.2", - "object-assign": "3.0.0", - "replace-ext": "0.0.1", - "through2": "2.0.3", - "vinyl": "0.5.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", - "dev": true, - "requires": { - "glogg": "1.0.0" - } - }, - "handlebars": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-3.0.3.tgz", - "integrity": "sha1-DgllGi8Ps8lJFgWDcQ1VH5Lm0q0=", - "dev": true, - "requires": { - "optimist": "0.6.1", - "source-map": "0.1.43", - "uglify-js": "2.3.6" - }, - "dependencies": { - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", - "dev": true, - "requires": { - "amdefine": "1.0.1" - } - }, - "uglify-js": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz", - "integrity": "sha1-+gmEdwtCi3qbKoBY9GNV0U/vIRo=", - "dev": true, - "optional": true, - "requires": { - "async": "0.2.10", - "optimist": "0.3.7", - "source-map": "0.1.43" - }, - "dependencies": { - "optimist": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", - "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", - "dev": true, - "optional": true, - "requires": { - "wordwrap": "0.0.3" - } - } - } - } - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "has-color": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz", - "integrity": "sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8=", - "dev": true - }, - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", - "dev": true - }, - "has-gulplog": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", - "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", - "dev": true, - "requires": { - "sparkles": "1.0.0" - } - }, - "has-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "2.0.6", - "has-values": "1.0.0", - "isobject": "3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "has-yarn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-1.0.0.tgz", - "integrity": "sha1-ieJdtgS3Jcj1l2//Ct3JIbgopac=", - "dev": true - }, - "home-or-tmp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", - "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", - "dev": true, - "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" - } - }, - "home-path": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/home-path/-/home-path-1.0.5.tgz", - "integrity": "sha1-eIspgVsS1Tus9XVkhHbm+QQdEz8=", - "dev": true - }, - "homedir-polyfill": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", - "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", - "dev": true, - "requires": { - "parse-passwd": "1.0.0" - } - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==", - "dev": true - }, - "hullabaloo-config-manager": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz", - "integrity": "sha512-ztKnkZV0TmxnumCDHHgLGNiDnotu4EHCp9YMkznWuo4uTtCyJ+cu+RNcxUeXYKTllpvLFWnbfWry09yzszgg+A==", - "dev": true, - "requires": { - "dot-prop": "4.2.0", - "es6-error": "4.0.2", - "graceful-fs": "4.1.11", - "indent-string": "3.2.0", - "json5": "0.5.1", - "lodash.clonedeep": "4.5.0", - "lodash.clonedeepwith": "4.5.0", - "lodash.isequal": "4.5.0", - "lodash.merge": "4.6.0", - "md5-hex": "2.0.0", - "package-hash": "2.0.0", - "pkg-dir": "2.0.0", - "resolve-from": "3.0.0", - "safe-buffer": "5.1.1" - } - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", - "dev": true - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", - "dev": true - }, - "import-local": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-0.1.1.tgz", - "integrity": "sha1-sReVcqrNwRxqkQCftDDbyrX2aKg=", - "dev": true, - "requires": { - "pkg-dir": "2.0.0", - "resolve-cwd": "2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "ini": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", - "integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4=", - "dev": true - }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", - "dev": true - }, - "invariant": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", - "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", - "dev": true, - "requires": { - "loose-envify": "1.3.1" - } - }, - "irregular-plurals": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.3.0.tgz", - "integrity": "sha512-njf5A+Mxb3kojuHd1DzISjjIl+XhyzovXEOyPPSzdQozq/Lf2tN27mOrAAsxEPZxpn6I4MGzs1oo9TxXxPFpaA==", - "dev": true - }, - "is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "requires": { - "is-relative": "1.0.0", - "is-windows": "1.0.1" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "1.10.0" - } - }, - "is-buffer": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", - "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", - "dev": true - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-ci": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz", - "integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=", - "dev": true, - "requires": { - "ci-info": "1.1.1" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "1.0.0", - "is-data-descriptor": "1.0.0", - "kind-of": "6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "2.0.0" - } - }, - "is-error": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.1.tgz", - "integrity": "sha1-aEqW2EB2V3yY9M20DG0mpRI78Zw=", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-generator-fn": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz", - "integrity": "sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", - "dev": true - }, - "is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", - "dev": true - }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", - "dev": true - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "is-observable": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-0.2.0.tgz", - "integrity": "sha1-s2ExHYPG5dcmyr9eJQsCNxBvWuI=", - "dev": true, - "requires": { - "symbol-observable": "0.2.4" - } - }, - "is-odd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz", - "integrity": "sha1-O4qTLrAos3dcObsJ6RdnrM22kIg=", - "dev": true, - "requires": { - "is-number": "3.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - } - } - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", - "dev": true - }, - "is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "requires": { - "is-unc-path": "1.0.0" - } - }, - "is-retry-allowed": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "requires": { - "unc-path-regex": "0.1.2" - } - }, - "is-url": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz", - "integrity": "sha1-SYkFpZO/R8wtnn9zg3K792lsfyY=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", - "dev": true - }, - "is-windows": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz", - "integrity": "sha1-MQ23D3QtJZoWo2kgK1GvhCMzENk=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, - "js-string-escape": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", - "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", - "dev": true - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, - "js-yaml": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz", - "integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==", - "dev": true, - "requires": { - "argparse": "1.0.9", - "esprima": "4.0.0" - } - }, - "js2xmlparser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-3.0.0.tgz", - "integrity": "sha1-P7YOqgicVED5MZ9RdgzNB+JJlzM=", - "dev": true, - "requires": { - "xmlcreate": "1.0.2" - } - }, - "jsdoc": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.5.5.tgz", - "integrity": "sha512-6PxB65TAU4WO0Wzyr/4/YhlGovXl0EVYfpKbpSroSj0qBxT4/xod/l40Opkm38dRHRdQgdeY836M0uVnJQG7kg==", - "dev": true, - "requires": { - "babylon": "7.0.0-beta.19", - "bluebird": "3.5.0", - "catharsis": "0.8.9", - "escape-string-regexp": "1.0.5", - "js2xmlparser": "3.0.0", - "klaw": "2.0.0", - "marked": "0.3.6", - "mkdirp": "0.5.1", - "requizzle": "0.2.1", - "strip-json-comments": "2.0.1", - "taffydb": "2.6.2", - "underscore": "1.8.3" - }, - "dependencies": { - "babylon": { - "version": "7.0.0-beta.19", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz", - "integrity": "sha512-Vg0C9s/REX6/WIXN37UKpv5ZhRi6A4pjHlpkE34+8/a6c2W1Q692n3hmc+SZG5lKRnaExLUbxtJ1SVT+KaCQ/A==", - "dev": true - } - } - }, - "jsdoc-api": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-4.0.0.tgz", - "integrity": "sha512-S518NDIdh17dpNeI82WUFLbJt2OidZLMhuZuY67m2NZFGce0zw3er1UjHuL0QD3cdDCrZOBBmnRnHclCKxApMA==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "cache-point": "0.4.1", - "collect-all": "1.0.3", - "file-set": "1.1.1", - "fs-then-native": "2.0.0", - "jsdoc": "3.5.5", - "object-to-spawn-args": "1.1.1", - "temp-path": "1.0.0", - "walk-back": "3.0.0" - } - }, - "jsdoc-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-3.0.0.tgz", - "integrity": "sha1-JxUx2I8Z3yUgsWMqf2yYlEGof94=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "lodash.omit": "4.5.0", - "lodash.pick": "4.4.0", - "reduce-extract": "1.0.0", - "sort-array": "1.1.2", - "test-value": "2.1.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "jsdoc-to-markdown": { - "version": "3.1.0-0", - "resolved": "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-3.1.0-0.tgz", - "integrity": "sha512-DYQDbrZCo1DWeP2ktLX2DNLpx/7+2mL12hNOsmphrSId939IPM0kdDnIzT3poPiQy/EqP++O87hPb5y8mem5YQ==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "command-line-tool": "0.7.0", - "config-master": "3.1.0", - "dmd": "3.0.6", - "jsdoc-api": "4.0.0", - "jsdoc-parse": "3.0.0", - "jsdoc2md-stats": "2.0.1", - "walk-back": "3.0.0" - } - }, - "jsdoc2md-stats": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/jsdoc2md-stats/-/jsdoc2md-stats-2.0.1.tgz", - "integrity": "sha1-vYNDc0z+aeqAUKF5MSUSk/DZBHs=", - "dev": true, - "requires": { - "app-usage-stats": "0.5.1" - } - }, - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "dev": true, - "requires": { - "jsonify": "0.0.0" - } - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", - "dev": true - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - }, - "klaw": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-2.0.0.tgz", - "integrity": "sha1-WcEo4Nxc5BAgEVEZTuucv4WGUPY=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11" - } - }, - "last-line-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/last-line-stream/-/last-line-stream-1.0.0.tgz", - "integrity": "sha1-0bZNafhv8kry0EiDos7uFFIKVgA=", - "dev": true, - "requires": { - "through2": "2.0.3" - } - }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", - "dev": true, - "requires": { - "package-json": "4.0.1" - } - }, - "lazy-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=", - "dev": true, - "requires": { - "set-getter": "0.1.0" - } - }, - "lazystream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", - "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", - "dev": true, - "requires": { - "readable-stream": "2.3.3" - } - }, - "lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", - "dev": true, - "requires": { - "flush-write-stream": "1.0.2" - } - }, - "liftoff": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz", - "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=", - "dev": true, - "requires": { - "extend": "3.0.1", - "findup-sync": "2.0.0", - "fined": "1.1.0", - "flagged-respawn": "1.0.0", - "is-plain-object": "2.0.4", - "object.map": "1.0.1", - "rechoir": "0.6.2", - "resolve": "1.4.0" - } - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "strip-bom": "3.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "2.0.0", - "path-exists": "3.0.0" - } - }, - "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "dev": true - }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", - "dev": true - }, - "lodash._basetostring": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", - "dev": true - }, - "lodash._basevalues": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", - "dev": true - }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", - "dev": true - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", - "dev": true - }, - "lodash._reescape": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", - "dev": true - }, - "lodash._reevaluate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", - "dev": true - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", - "dev": true - }, - "lodash._root": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", - "dev": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", - "dev": true - }, - "lodash.clonedeepwith": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz", - "integrity": "sha1-buMFc6A6GmDWcKYu8zwQzxr9vdQ=", - "dev": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", - "dev": true - }, - "lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=", - "dev": true - }, - "lodash.escape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", - "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", - "dev": true, - "requires": { - "lodash._root": "3.0.1" - } - }, - "lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=", - "dev": true - }, - "lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", - "dev": true - }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", - "dev": true - }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", - "dev": true - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", - "dev": true - }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", - "dev": true, - "requires": { - "lodash._getnative": "3.9.1", - "lodash.isarguments": "3.1.0", - "lodash.isarray": "3.0.4" - } - }, - "lodash.merge": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.0.tgz", - "integrity": "sha1-aYhLoUSsM/5plzemCG3v+t0PicU=", - "dev": true - }, - "lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=", - "dev": true - }, - "lodash.padend": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz", - "integrity": "sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4=", - "dev": true - }, - "lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=", - "dev": true - }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", - "dev": true - }, - "lodash.template": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", - "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", - "dev": true, - "requires": { - "lodash._basecopy": "3.0.1", - "lodash._basetostring": "3.0.1", - "lodash._basevalues": "3.0.0", - "lodash._isiterateecall": "3.0.9", - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0", - "lodash.keys": "3.1.2", - "lodash.restparam": "3.6.1", - "lodash.templatesettings": "3.1.1" - } - }, - "lodash.templatesettings": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", - "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", - "dev": true, - "requires": { - "lodash._reinterpolate": "3.0.0", - "lodash.escape": "3.2.0" - } - }, - "loose-envify": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "dev": true, - "requires": { - "js-tokens": "3.0.2" - } - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "0.4.1", - "signal-exit": "3.0.2" - } - }, - "lowercase-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", - "dev": true - }, - "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", - "dev": true, - "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" - } - }, - "magic-string": { - "version": "0.22.4", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.22.4.tgz", - "integrity": "sha512-kxBL06p6iO2qPBHsqGK2b3cRwiRGpnmSuVWNhwHcMX7qJOUr1HvricYP1LZOCdkQBUp0jiWg2d6WJwR3vYgByw==", - "dev": true, - "requires": { - "vlq": "0.2.2" - } - }, - "make-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz", - "integrity": "sha1-l6ARdR6R3YfPre9Ygy67BJNt6Xg=", - "dev": true, - "requires": { - "pify": "2.3.0" - } - }, - "make-error": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.2.tgz", - "integrity": "sha512-l9ra35l5VWLF24y75Tg8XgfGLX0ueRhph118WKM6H5denx4bB5QF59+4UAm9oJ2qsPQZas/CQUDdtDdfvYHBdQ==", - "dev": true - }, - "make-error-cause": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz", - "integrity": "sha1-3wOI/NCzeBbf8KX7gQiTl3fcvJ0=", - "dev": true, - "requires": { - "make-error": "1.3.2" - } - }, - "make-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz", - "integrity": "sha1-V7713IXSOSO6I3ZzJNjo+PPZaUs=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, - "requires": { - "object-visit": "1.0.1" - } - }, - "marked": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.6.tgz", - "integrity": "sha1-ssbGGPzOzk74bE/Gy4p8v1rtqNc=", - "dev": true - }, - "matcher": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-1.0.0.tgz", - "integrity": "sha1-qvDEgW62m5IJRnQXViXzRmsOPhk=", - "dev": true, - "requires": { - "escape-string-regexp": "1.0.5" - } - }, - "md5-hex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz", - "integrity": "sha1-0FiOnxx0lUSS7NJKwKxs6ZfZLjM=", - "dev": true, - "requires": { - "md5-o-matic": "0.1.1" - } - }, - "md5-o-matic": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz", - "integrity": "sha1-givM1l4RfFFPqxdrJZRdVBAKA8M=", - "dev": true - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "requires": { - "camelcase-keys": "2.1.0", - "decamelize": "1.2.0", - "loud-rejection": "1.6.0", - "map-obj": "1.0.1", - "minimist": "1.2.0", - "normalize-package-data": "2.4.0", - "object-assign": "4.1.1", - "read-pkg-up": "1.0.1", - "redent": "1.0.0", - "trim-newlines": "1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "2.0.4" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - } - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.4" - } - }, - "mimic-fn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz", - "integrity": "sha1-5md4PZLonb00KBi1IwudYqZyrRg=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "1.1.8" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - }, - "mixin-deep": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz", - "integrity": "sha512-dgaCvoh6i1nosAUBKb0l0pfJ78K8+S9fluyIR2YvAeUD/QuMahnFnF3xYty5eYXMjhGSsB0DsW6A0uAZyetoAg==", - "dev": true, - "requires": { - "for-in": "1.0.2", - "is-extendable": "1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "2.0.4" - } - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "mkdirp2": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.3.tgz", - "integrity": "sha1-zI3YJl8fBuLY9bELblL04FC+0hs=", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "multimatch": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", - "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", - "dev": true, - "requires": { - "array-differ": "1.0.0", - "array-union": "1.0.2", - "arrify": "1.0.1", - "minimatch": "3.0.4" - } - }, - "multipipe": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", - "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", - "dev": true, - "requires": { - "duplexer2": "0.0.2" - } - }, - "nan": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", - "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=", - "dev": true, - "optional": true - }, - "nanomatch": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.7.tgz", - "integrity": "sha512-/5ldsnyurvEw7wNpxLFgjVvBLMta43niEYOy0CJ4ntcYSbx6bugRUTQeFb4BR/WanEL1o3aQgHuVLHQaB6tOqg==", - "dev": true, - "requires": { - "arr-diff": "4.0.0", - "array-unique": "0.3.2", - "define-property": "1.0.0", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "is-odd": "1.0.0", - "kind-of": "5.1.0", - "object.pick": "1.3.0", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.1" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "natives": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz", - "integrity": "sha512-8eRaxn8u/4wN8tGkhlc2cgwwvOLMLUMUn4IYTexMgWd+LyUDfeXVkk2ygQR0hvIHbJQXgHujia3ieUUDwNGkEA==", - "dev": true - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "dev": true, - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.4.1", - "validate-npm-package-license": "3.0.1" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "1.1.0" - } - }, - "now-and-later": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.0.tgz", - "integrity": "sha1-vGHLtFbXnLMiB85HygUTb/Ln1u4=", - "dev": true, - "requires": { - "once": "1.4.0" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "dev": true, - "requires": { - "path-key": "2.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "0.1.1", - "define-property": "0.2.5", - "kind-of": "3.2.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - } - } - }, - "object-get": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object-get/-/object-get-2.1.0.tgz", - "integrity": "sha1-ciu9tgA576R8rTxtws5RqFwCxa4=", - "dev": true - }, - "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", - "dev": true - }, - "object-to-spawn-args": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-1.1.1.tgz", - "integrity": "sha1-d9qIJ/Bz0BHJ4bFz+JV4FHAkZ4U=", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "dev": true, - "requires": { - "define-properties": "1.1.2", - "function-bind": "1.1.1", - "has-symbols": "1.0.0", - "object-keys": "1.0.11" - } - }, - "object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", - "dev": true, - "requires": { - "array-each": "1.0.1", - "array-slice": "1.1.0", - "for-own": "1.0.0", - "isobject": "3.0.1" - }, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true, - "requires": { - "for-in": "1.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", - "dev": true, - "requires": { - "for-own": "1.0.0", - "make-iterator": "1.0.0" - }, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true, - "requires": { - "for-in": "1.0.2" - } - } - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "0.1.5", - "is-extendable": "0.1.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "observable-to-promise": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/observable-to-promise/-/observable-to-promise-0.5.0.tgz", - "integrity": "sha1-yCjw8NxH6fhq+KSXfF1VB2znqR8=", - "dev": true, - "requires": { - "is-observable": "0.2.0", - "symbol-observable": "1.0.4" - }, - "dependencies": { - "symbol-observable": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", - "integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=", - "dev": true - } - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "1.1.0" - } - }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "requires": { - "minimist": "0.0.8", - "wordwrap": "0.0.3" - } - }, - "option-chain": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/option-chain/-/option-chain-1.0.0.tgz", - "integrity": "sha1-k41zvU4Xg/lI00AjZEraI2aeMPI=", - "dev": true - }, - "orchestrator": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", - "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", - "dev": true, - "requires": { - "end-of-stream": "0.1.5", - "sequencify": "0.0.7", - "stream-consume": "0.1.0" - } - }, - "ordered-read-streams": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", - "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", - "dev": true - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", - "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=", - "dev": true - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "1.1.0" - } - }, - "package-hash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-2.0.0.tgz", - "integrity": "sha1-eK4ybIngWk2BO2hgGXevBcANKg0=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "lodash.flattendeep": "4.4.0", - "md5-hex": "2.0.0", - "release-zalgo": "1.0.0" - } - }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", - "dev": true, - "requires": { - "got": "6.7.1", - "registry-auth-token": "3.3.1", - "registry-url": "3.1.0", - "semver": "5.4.1" - } - }, - "parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", - "dev": true, - "requires": { - "is-absolute": "1.0.0", - "map-cache": "0.2.2", - "path-root": "0.1.1" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "0.3.0", - "is-dotfile": "1.0.3", - "is-extglob": "1.0.0", - "is-glob": "2.0.1" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "1.3.1" - } - }, - "parse-ms": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz", - "integrity": "sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=", - "dev": true - }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", - "dev": true - }, - "path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", - "dev": true, - "requires": { - "path-root-regex": "0.1.2" - } - }, - "path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", - "dev": true - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", - "dev": true, - "requires": { - "pify": "2.3.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz", - "integrity": "sha1-Wkfyi6EBXQIBvae/DzWOR77Ix+Q=", - "dev": true - }, - "pinkie-promise": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", - "integrity": "sha1-0dpn9UglY7t89X8oauKCLs+/NnA=", - "dev": true, - "requires": { - "pinkie": "1.0.0" - } - }, - "pkg-conf": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.0.0.tgz", - "integrity": "sha1-BxyHZQQDvM+5xif1h1G/5HwGcnk=", - "dev": true, - "requires": { - "find-up": "2.1.0", - "load-json-file": "2.0.0" - } - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "requires": { - "find-up": "2.1.0" - } - }, - "plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=", - "dev": true, - "requires": { - "ansi-cyan": "0.1.1", - "ansi-red": "0.1.1", - "arr-diff": "1.1.0", - "arr-union": "2.1.0", - "extend-shallow": "1.1.4" - }, - "dependencies": { - "arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=", - "dev": true, - "requires": { - "arr-flatten": "1.1.0", - "array-slice": "0.2.3" - } - }, - "arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=", - "dev": true - }, - "array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=", - "dev": true - }, - "extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=", - "dev": true, - "requires": { - "kind-of": "1.1.0" - } - }, - "kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=", - "dev": true - } - } - }, - "plur": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz", - "integrity": "sha1-dIJFLBoPUI4+NE6uwxLJHCncZVo=", - "dev": true, - "requires": { - "irregular-plurals": "1.3.0" - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true - }, - "pretty-ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz", - "integrity": "sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=", - "dev": true, - "requires": { - "is-finite": "1.0.2", - "parse-ms": "1.0.1", - "plur": "1.0.0" - }, - "dependencies": { - "plur": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz", - "integrity": "sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=", - "dev": true - } - } - }, - "private": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz", - "integrity": "sha1-aM5eih7woju1cMwoU3tTMqumPvE=", - "dev": true - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "pump": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.0.tgz", - "integrity": "sha512-6MYypjOvtiXhBSTOD0Zs5eNjCGfnqi5mPsCsW+dgKTxrZzQMZQNpBo3XRkLx7id753f3EeyHLBqzqqUymIolgw==", - "dev": true, - "requires": { - "end-of-stream": "1.4.1", - "once": "1.4.0" - }, - "dependencies": { - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "1.4.0" - } - } - } - }, - "pumpify": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.3.6.tgz", - "integrity": "sha512-BurGAcvezsINL5US9T9wGHHcLNrG6MCp//ECtxron3vcR+Rfx5Anqq7HbZXNJvFQli8FGVsWCAvywEJFV5Hx/Q==", - "dev": true, - "requires": { - "duplexify": "3.5.3", - "inherits": "2.0.3", - "pump": "2.0.0" - } - }, - "randomatic": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", - "dev": true, - "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "rc": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz", - "integrity": "sha1-LgPo5C7kULjLPc5lvhv4l04d/ZU=", - "dev": true, - "requires": { - "deep-extend": "0.4.2", - "ini": "1.3.4", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "dev": true, - "requires": { - "load-json-file": "2.0.0", - "normalize-package-data": "2.4.0", - "path-type": "2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", - "dev": true, - "requires": { - "find-up": "2.1.0", - "read-pkg": "2.0.0" - } - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "readdirp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "minimatch": "3.0.4", - "readable-stream": "2.3.3", - "set-immediate-shim": "1.0.1" - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "1.4.0" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "requires": { - "indent-string": "2.1.0", - "strip-indent": "1.0.1" - }, - "dependencies": { - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "requires": { - "repeating": "2.0.1" - } - } - } - }, - "reduce-extract": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz", - "integrity": "sha1-Z/I4W+2mUGG19fQxJmLosIDKFSU=", - "dev": true, - "requires": { - "test-value": "1.1.0" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - }, - "test-value": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz", - "integrity": "sha1-oJE29y7AQ9J8iTcHwrFZv6196T8=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "typical": "2.6.1" - } - } - } - }, - "reduce-flatten": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz", - "integrity": "sha1-JYx479FT3fk8tWEjf2EYTzaW4yc=", - "dev": true - }, - "reduce-unique": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/reduce-unique/-/reduce-unique-1.0.0.tgz", - "integrity": "sha1-flhrz4ek4ytter2Cd/rWzeyfSAM=", - "dev": true - }, - "reduce-without": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz", - "integrity": "sha1-aK0OrRGFXJo31OglbBW7+Hly/Iw=", - "dev": true, - "requires": { - "test-value": "2.1.0" - } - }, - "regenerate": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", - "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "dev": true - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dev": true, - "requires": { - "is-equal-shallow": "0.1.3" - } - }, - "regex-not": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz", - "integrity": "sha1-Qvg+OXcWIt+CawKvF2Ul1qXxV/k=", - "dev": true, - "requires": { - "extend-shallow": "2.0.1" - } - }, - "regexpu-core": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", - "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", - "dev": true, - "requires": { - "regenerate": "1.3.3", - "regjsgen": "0.2.0", - "regjsparser": "0.1.5" - } - }, - "registry-auth-token": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz", - "integrity": "sha1-+w0yie4Nmtosu1KvXf5mywcNMAY=", - "dev": true, - "requires": { - "rc": "1.2.1", - "safe-buffer": "5.1.1" - } - }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", - "dev": true, - "requires": { - "rc": "1.2.1" - } - }, - "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "dev": true - }, - "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "dev": true, - "requires": { - "jsesc": "0.5.0" - } - }, - "release-zalgo": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", - "integrity": "sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=", - "dev": true, - "requires": { - "es6-error": "4.0.2" - } - }, - "remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dev": true, - "requires": { - "is-buffer": "1.1.5", - "is-utf8": "0.2.1" - } - }, - "remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", - "dev": true, - "requires": { - "remove-bom-buffer": "3.0.0", - "safe-buffer": "5.1.1", - "through2": "2.0.3" - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "1.0.2" - } - }, - "replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", - "dev": true - }, - "req-then": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/req-then/-/req-then-0.6.4.tgz", - "integrity": "sha512-Uf7xsK1qPqPUetESHemNQ7nGtgOxngSFtlcAOOkx0lDAo+XRZpEA9QDrGBdyOfGq4b+a0z/D5gR2VJ+pp/dzBA==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "defer-promise": "1.0.1", - "lodash.pick": "4.4.0", - "stream-read-all": "0.1.2", - "typical": "2.6.1" - } - }, - "require-precompiled": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/require-precompiled/-/require-precompiled-0.1.0.tgz", - "integrity": "sha1-WhtS63Dr7UPrmC6XTIWrWVceVvo=", - "dev": true - }, - "require-relative": { - "version": "0.8.7", - "resolved": "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz", - "integrity": "sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4=", - "dev": true - }, - "requizzle": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz", - "integrity": "sha1-aUPDUwxNmn5G8c3dUcFY/GcM294=", - "dev": true, - "requires": { - "underscore": "1.6.0" - }, - "dependencies": { - "underscore": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", - "integrity": "sha1-izixDKze9jM3uLJOT/htRa6lKag=", - "dev": true - } - } - }, - "resolve": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz", - "integrity": "sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==", - "dev": true, - "requires": { - "path-parse": "1.0.5" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "dev": true, - "requires": { - "resolve-from": "3.0.0" - } - }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", - "dev": true, - "requires": { - "expand-tilde": "2.0.2", - "global-modules": "1.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", - "dev": true, - "requires": { - "value-or-function": "3.0.0" - } - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "2.0.1", - "signal-exit": "3.0.2" - } - }, - "rollup": { - "version": "0.50.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-0.50.1.tgz", - "integrity": "sha512-XwrnqjSTk+yR8GbP6hiJuVe83MVmBw/gm4P3qP34A10fRXvv6ppl0ZUg1+Pj1tIZSR/aw5ZaILLEiVxwXIAdAw==", - "dev": true - }, - "rollup-plugin-commonjs": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.2.6.tgz", - "integrity": "sha512-qK0+uhktmnAgZkHkqFuajNmPw93fjrO7+CysDaxWE5jrUR9XSlSvuao5ZJP+XizxA8weakhgYYBtbVz9SGBpjA==", - "dev": true, - "requires": { - "acorn": "5.3.0", - "estree-walker": "0.5.1", - "magic-string": "0.22.4", - "resolve": "1.4.0", - "rollup-pluginutils": "2.0.1" - }, - "dependencies": { - "acorn": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.3.0.tgz", - "integrity": "sha512-Yej+zOJ1Dm/IMZzzj78OntP/r3zHEaKcyNoU2lAaxPtrseM6rF0xwqoz5Q5ysAiED9hTjI2hgtvLXitlCN1/Ug==", - "dev": true - } - } - }, - "rollup-plugin-node-resolve": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.2.tgz", - "integrity": "sha512-ZwmMip/yqw6cmDQJuCQJ1G7gw2z11iGUtQNFYrFZHmqadRHU+OZGC3nOXwXu+UTvcm5lzDspB1EYWrkTgPWybw==", - "dev": true, - "requires": { - "builtin-modules": "1.1.1", - "is-module": "1.0.0", - "resolve": "1.4.0" - } - }, - "rollup-pluginutils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz", - "integrity": "sha1-fslbNXP2VDpGpkYb2afFRFJdD8A=", - "dev": true, - "requires": { - "estree-walker": "0.3.1", - "micromatch": "2.3.11" - }, - "dependencies": { - "estree-walker": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.3.1.tgz", - "integrity": "sha1-5rGlHPcpJSTnI3wxLl/mZgwc4ao=", - "dev": true - } - } - }, - "rollup-watch": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/rollup-watch/-/rollup-watch-4.3.1.tgz", - "integrity": "sha512-6yjnIwfjpSrqA8IafyIu7fsEyeImNR4aDjA1bQ7KWeVuiA+Clfsx8+PGQkyABWIQzmauQ//tIJ5wAxLXsXs8qQ==", - "dev": true, - "requires": { - "chokidar": "1.7.0", - "require-relative": "0.8.7", - "rollup-pluginutils": "2.0.1" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - }, - "semver": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", - "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", - "dev": true - }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", - "dev": true, - "requires": { - "semver": "5.4.1" - } - }, - "sequencify": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", - "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", - "dev": true - }, - "set-getter": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz", - "integrity": "sha1-12nBgsnVpR9AkUXy+6guXoboA3Y=", - "dev": true, - "requires": { - "to-object-path": "0.3.0" - } - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "dev": true - }, - "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", - "dev": true, - "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "split-string": "3.1.0" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true - }, - "slice-ansi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", - "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "2.0.0" - } - }, - "slide": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", - "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=", - "dev": true - }, - "snapdragon": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz", - "integrity": "sha1-4StUh/re0+PeoKyR6UAL91tAE3A=", - "dev": true, - "requires": { - "base": "0.11.2", - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "map-cache": "0.2.2", - "source-map": "0.5.7", - "source-map-resolve": "0.5.1", - "use": "2.0.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "1.0.0", - "isobject": "3.0.1", - "snapdragon-util": "3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "sort-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-array/-/sort-array-1.1.2.tgz", - "integrity": "sha1-uImGBTwBcKf53mPxiknsecJMPmQ=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "object-get": "2.1.0", - "typical": "2.6.1" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "sort-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", - "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", - "dev": true, - "requires": { - "is-plain-obj": "1.1.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "source-map-resolve": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz", - "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==", - "dev": true, - "requires": { - "atob": "2.0.3", - "decode-uri-component": "0.2.0", - "resolve-url": "0.2.1", - "source-map-url": "0.4.0", - "urix": "0.1.0" - } - }, - "source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "requires": { - "source-map": "0.5.7" - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, - "sparkles": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", - "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", - "dev": true - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "dev": true, - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", - "dev": true - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", - "dev": true - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "2.0.4" - } - } - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha1-1PM6tU6OOHeLDKXP07OvsS22hiA=", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "requires": { - "define-property": "0.2.5", - "object-copy": "0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "stream-connect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz", - "integrity": "sha1-GLyB8u2zW4tdmoAJIAqYUxRCipc=", - "dev": true, - "requires": { - "array-back": "1.0.4" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "stream-consume": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz", - "integrity": "sha1-pB6tGm1ggc63n2WwYZAbbY89HQ8=", - "dev": true - }, - "stream-read-all": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/stream-read-all/-/stream-read-all-0.1.2.tgz", - "integrity": "sha512-KX42xBg853m+KnwRtwCKT95ShopAbY/MNKs2dBQ0WkNeuJdqgQYRtGRbTlxdx0L6t979h3z/wMq2eMSAu7Tygw==", - "dev": true - }, - "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", - "dev": true - }, - "stream-via": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", - "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "2.0.0", - "strip-ansi": "4.0.0" - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "3.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - } - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "strip-bom-buf": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz", - "integrity": "sha1-HLRar1dTD0yvhsf3UXnSyaUd1XI=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "requires": { - "get-stdin": "4.0.1" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "supports-color": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz", - "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", - "dev": true, - "requires": { - "has-flag": "2.0.0" - } - }, - "symbol-observable": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-0.2.4.tgz", - "integrity": "sha1-lag9smGG1q9+ehjb2XYKL4bQj0A=", - "dev": true - }, - "table-layout": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-0.4.2.tgz", - "integrity": "sha512-tygyl5+eSHj4chpq5Zfy6cpc7MOUBClAW9ozghFH7hg9bAUzShOYn+/vUzTRkKOSLJWKfgYtP2tAU2c0oAD8eg==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "deep-extend": "0.5.0", - "lodash.padend": "4.6.1", - "typical": "2.6.1", - "wordwrapjs": "3.0.0" - }, - "dependencies": { - "deep-extend": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.0.tgz", - "integrity": "sha1-bvSgmwX5iw41jW2T1Mo8rsZnKAM=", - "dev": true - } - } - }, - "taffydb": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz", - "integrity": "sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=", - "dev": true - }, - "temp-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz", - "integrity": "sha1-JLFUOXOrRCiW2a02fdnL2/r+kYs=", - "dev": true - }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", - "dev": true, - "requires": { - "execa": "0.7.0" - } - }, - "test-value": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz", - "integrity": "sha1-Edpv9nDzRxpztiXKTz/c97t0gpE=", - "dev": true, - "requires": { - "array-back": "1.0.4", - "typical": "2.6.1" - }, - "dependencies": { - "array-back": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz", - "integrity": "sha1-ZEun8JX3/898Q7Xw3DnTwfA8Bjs=", - "dev": true, - "requires": { - "typical": "2.6.1" - } - } - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "2.3.3", - "xtend": "4.0.1" - } - }, - "through2-filter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz", - "integrity": "sha1-YLxVoNrLdghdsfna6Zq0P4PWIuw=", - "dev": true, - "requires": { - "through2": "2.0.3", - "xtend": "4.0.1" - } - }, - "tildify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", - "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", - "dev": true, - "requires": { - "os-homedir": "1.0.2" - } - }, - "time-require": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/time-require/-/time-require-0.1.2.tgz", - "integrity": "sha1-+eEss3D8JgXhFARYK6VO9corLZg=", - "dev": true, - "requires": { - "chalk": "0.4.0", - "date-time": "0.1.1", - "pretty-ms": "0.2.2", - "text-table": "0.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz", - "integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=", - "dev": true - }, - "chalk": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz", - "integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=", - "dev": true, - "requires": { - "ansi-styles": "1.0.0", - "has-color": "0.1.7", - "strip-ansi": "0.1.1" - } - }, - "date-time": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/date-time/-/date-time-0.1.1.tgz", - "integrity": "sha1-7S9tk9l5DOL9ZtW1/z7dW7y/Owc=", - "dev": true - }, - "parse-ms": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-0.1.2.tgz", - "integrity": "sha1-3T+iXtbC78e93hKtm0bBY6opIk4=", - "dev": true - }, - "pretty-ms": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-0.2.2.tgz", - "integrity": "sha1-2oeaaC/zOjcBEEbxPWJ/Z8c7hPY=", - "dev": true, - "requires": { - "parse-ms": "0.1.2" - } - }, - "strip-ansi": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz", - "integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=", - "dev": true - } - } - }, - "time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", - "dev": true - }, - "time-zone": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", - "integrity": "sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=", - "dev": true - }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", - "dev": true - }, - "to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", - "dev": true, - "requires": { - "is-absolute": "1.0.0", - "is-negated-glob": "1.0.0" - } - }, - "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "to-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz", - "integrity": "sha1-FTWL7kosg712N3uh3ASdDxiDeq4=", - "dev": true, - "requires": { - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "regex-not": "1.0.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "3.0.0", - "repeat-string": "1.6.1" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - } - } - }, - "to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", - "dev": true, - "requires": { - "through2": "2.0.3" - } - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "trim-off-newlines": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz", - "integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=", - "dev": true - }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, - "typescript": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz", - "integrity": "sha1-PFtv1/beCRQmkCfwPAlGdY92c6Q=", - "dev": true - }, - "typical": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz", - "integrity": "sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0=", - "dev": true - }, - "uglify-js": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.5.tgz", - "integrity": "sha512-ZebM2kgBL/UI9rKeAbsS2J0UPPv7SBy5hJNZml/YxB1zC6JK8IztcPs+cxilE4pu0li6vadVSFqiO7xFTKuSrg==", - "dev": true, - "requires": { - "commander": "2.12.2", - "source-map": "0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "uid2": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz", - "integrity": "sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I=", - "dev": true - }, - "unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", - "dev": true - }, - "underscore": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", - "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=", - "dev": true - }, - "underscore-contrib": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", - "integrity": "sha1-ZltmwkeD+PorGMn4y7Dix9SMJsc=", - "dev": true, - "requires": { - "underscore": "1.6.0" - }, - "dependencies": { - "underscore": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", - "integrity": "sha1-izixDKze9jM3uLJOT/htRa6lKag=", - "dev": true - } - } - }, - "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", - "dev": true, - "requires": { - "arr-union": "3.1.0", - "get-value": "2.0.6", - "is-extendable": "0.1.1", - "set-value": "0.4.3" - }, - "dependencies": { - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", - "dev": true, - "requires": { - "extend-shallow": "2.0.1", - "is-extendable": "0.1.1", - "is-plain-object": "2.0.4", - "to-object-path": "0.3.0" - } - } - } - }, - "unique-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz", - "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs=", - "dev": true - }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", - "dev": true, - "requires": { - "crypto-random-string": "1.0.0" - } - }, - "unique-temp-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz", - "integrity": "sha1-bc6VsmgcoAPuv7MEpBX5y6vMU4U=", - "dev": true, - "requires": { - "mkdirp": "0.5.1", - "os-tmpdir": "1.0.2", - "uid2": "0.0.3" - } - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, - "requires": { - "has-value": "0.3.1", - "isobject": "3.0.1" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "2.0.6", - "has-values": "0.1.4", - "isobject": "2.1.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", - "dev": true - }, - "update-notifier": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz", - "integrity": "sha1-G1g3z5DAc22IYncytmHBOPht5y8=", - "dev": true, - "requires": { - "boxen": "1.2.1", - "chalk": "1.1.3", - "configstore": "3.1.1", - "import-lazy": "2.1.0", - "is-npm": "1.0.0", - "latest-version": "3.1.0", - "semver-diff": "2.1.0", - "xdg-basedir": "3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "dev": true, - "requires": { - "prepend-http": "1.0.4" - } - }, - "usage-stats": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/usage-stats/-/usage-stats-0.9.4.tgz", - "integrity": "sha512-u94pT+UDv+ZcjA5PT4KuMR67JL6VqeaQU6RN83Gf7yTqGrD/WqgCwhaj1DAKETR/KrteWXL0XZwlkDJuLJdtkg==", - "dev": true, - "requires": { - "array-back": "2.0.0", - "home-path": "1.0.5", - "mkdirp2": "1.0.3", - "req-then": "0.6.4", - "typical": "2.6.1", - "uuid": "3.1.0" - } - }, - "use": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/use/-/use-2.0.2.tgz", - "integrity": "sha1-riig1y+TvyJCKhii43mZMRLeyOg=", - "dev": true, - "requires": { - "define-property": "0.2.5", - "isobject": "3.0.1", - "lazy-cache": "2.0.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "0.1.6" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "user-home": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", - "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", - "dev": true - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "uuid": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", - "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==", - "dev": true - }, - "v8flags": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", - "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", - "dev": true, - "requires": { - "user-home": "1.1.1" - } - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "dev": true, - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } - }, - "value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", - "dev": true - }, - "vinyl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", - "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", - "dev": true, - "requires": { - "clone": "1.0.3", - "clone-stats": "0.0.1", - "replace-ext": "0.0.1" - } - }, - "vinyl-fs": { - "version": "0.3.14", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", - "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", - "dev": true, - "requires": { - "defaults": "1.0.3", - "glob-stream": "3.1.18", - "glob-watcher": "0.0.6", - "graceful-fs": "3.0.11", - "mkdirp": "0.5.1", - "strip-bom": "1.0.0", - "through2": "0.6.5", - "vinyl": "0.4.6" - }, - "dependencies": { - "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", - "dev": true - }, - "graceful-fs": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", - "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", - "dev": true, - "requires": { - "natives": "1.1.1" - } - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "0.0.1", - "string_decoder": "0.10.31" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, - "strip-bom": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", - "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", - "dev": true, - "requires": { - "first-chunk-stream": "1.0.0", - "is-utf8": "0.2.1" - } - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true, - "requires": { - "readable-stream": "1.0.34", - "xtend": "4.0.1" - } - }, - "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", - "dev": true, - "requires": { - "clone": "0.2.0", - "clone-stats": "0.0.1" - } - } - } - }, - "vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", - "dev": true, - "requires": { - "append-buffer": "1.0.2", - "convert-source-map": "1.5.0", - "graceful-fs": "4.1.11", - "normalize-path": "2.1.1", - "now-and-later": "2.0.0", - "remove-bom-buffer": "3.0.0", - "vinyl": "2.1.0" - }, - "dependencies": { - "clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", - "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "vinyl": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", - "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", - "dev": true, - "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" - } - } - } - }, - "vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", - "dev": true, - "requires": { - "source-map": "0.5.7" - } - }, - "vlq": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.2.tgz", - "integrity": "sha1-4xbVJXtAuGu0PLjV/qXX9U1rDKE=", - "dev": true - }, - "walk-back": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-3.0.0.tgz", - "integrity": "sha1-I1h4ejXakQMtrV6S+AsSNw2HlcU=", - "dev": true - }, - "well-known-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-1.0.0.tgz", - "integrity": "sha1-c8eK6Bp3Jqj6WY4ogIAcixYiVRg=", - "dev": true - }, - "which": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", - "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", - "dev": true, - "requires": { - "isexe": "2.0.0" - } - }, - "widest-line": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz", - "integrity": "sha1-DAnIXCqUaD0Nfq+O4JfVZL8OEFw=", - "dev": true, - "requires": { - "string-width": "1.0.2" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - } - } - }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", - "dev": true - }, - "wordwrapjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-3.0.0.tgz", - "integrity": "sha512-mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw==", - "dev": true, - "requires": { - "reduce-flatten": "1.0.1", - "typical": "2.6.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write-file-atomic": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz", - "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "signal-exit": "3.0.2" - } - }, - "write-json-file": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-2.2.0.tgz", - "integrity": "sha1-UYYlBruzthnu+reFnx/WxtBTCHY=", - "dev": true, - "requires": { - "detect-indent": "5.0.0", - "graceful-fs": "4.1.11", - "make-dir": "1.0.0", - "pify": "2.3.0", - "sort-keys": "1.1.2", - "write-file-atomic": "2.3.0" - }, - "dependencies": { - "detect-indent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", - "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", - "dev": true - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "dev": true, - "requires": { - "is-plain-obj": "1.1.0" - } - } - } - }, - "write-pkg": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz", - "integrity": "sha1-AwqZlMyZk9JbTnWp8aGSNgcpHOk=", - "dev": true, - "requires": { - "sort-keys": "2.0.0", - "write-json-file": "2.2.0" - } - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", - "dev": true - }, - "xmlcreate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-1.0.2.tgz", - "integrity": "sha1-+mv3YqYKQT+z3Y9LA8WyaSONMI8=", - "dev": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - } - } -} diff --git a/package.json b/package.json index c033b0c..8a9c16c 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,24 @@ { "name": "es6-tween", - "version": "5.1.0", + "version": "5.2.0", "description": "ES6 implementation of amazing tween.js", "browser": "bundled/Tween.min.js", "cdn": "bundled/Tween.min.js", "main": "bundled/Tween.js", "module": "src/index.js", - "types": "src/index.d.ts", "directories": { "example": "examples" }, "scripts": { - "source": "rollup -c", - "minify": "uglifyjs bundled/Tween.js -c -m -o bundled/Tween.min.js --source-map \"filename='bundled/Tween.min.js.map'\"", + "source": "npx rollup -c", + "minify": "npx uglifyjs bundled/Tween.js -c -m -o bundled/Tween.min.js --source-map \"filename='bundled/Tween.min.js.map'\"", "build": "npm run source && npm run minify", - "dev": "rollup -c -w", - "test": "tsc && rollup -c && ava --verbose", - "prepublishOnly": "tsc && npm run build && ava --verbose && npm run doc && npm run doc-md", - "doc": "jsdoc --readme README.md --configure jsdoc.json --verbose", - "doc-md": "jsdoc2md src/** > API.md" + "dev": "npx rollup -c -w", + "prepublishOnly": "npm run build && npx ava --verbose && npm run doc && npm run doc-md", + "doc": "npx jsdoc --readme README.md --configure jsdoc.json --verbose", + "doc-md": "npx jsdoc2md src/** > API.md", + "test": "npx standard --verbose | npx snazzy && npx ava --verbose", + "fix": "npx standard --fix" }, "repository": { "type": "git", @@ -40,21 +40,19 @@ }, "homepage": "https://es6-tween.js.org", "devDependencies": { + "@babel/core": "^7.0.0-beta.44", + "@babel/plugin-proposal-class-properties": "^7.0.0-beta.44", + "@babel/preset-env": "^7.0.0-beta.44", "ava": "^0.22.0", "docdash": "^0.4.0", - "gulp": "^3.9.1", - "gulp-buble": "^0.9.0", - "gulp-concat": "^2.6.1", - "gulp-typescript": "^4.0.0-alpha.1", - "gulp-uglify": "^3.0.0", "jsdoc": "^3.5.5", - "jsdoc-to-markdown": "next", + "jsdoc-to-markdown": "^3.1.0-1", "rollup": "^0.50.1", - "rollup-plugin-commonjs": "^8.2.6", - "rollup-plugin-node-resolve": "^3.0.2", - "rollup-watch": "^4.3.1", - "typescript": "^2.6.2", + "rollup-plugin-babel": "^4.0.0-beta.4", "uglify-js": "^3.3.5" }, - "dependencies": {} + "dependencies": {}, + "standard": { + "ignore": ["node_modules", "bundled", "examples", "performance"] + } } diff --git a/performance/TweenMax.js b/performance/TweenMax.js index 921e3c4..7519aed 100644 --- a/performance/TweenMax.js +++ b/performance/TweenMax.js @@ -2,709 +2,729 @@ * VERSION: 1.20.2 * DATE: 2017-06-30 * UPDATES AND DOCS AT: http://greensock.com - * + * * Includes all of the following: TweenLite, TweenMax, TimelineLite, TimelineMax, EasePack, CSSPlugin, RoundPropsPlugin, BezierPlugin, AttrPlugin, DirectionalRotationPlugin * * @license Copyright (c) 2008-2017, GreenSock. All rights reserved. * This work is subject to the terms at http://greensock.com/standard-license or for * Club GreenSock members, the software agreement that was issued with your membership. - * + * * @author: Jack Doyle, jack@greensock.com **/ -var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(global) !== "undefined") ? global : this || window; //helps ensure compatibility with AMD/RequireJS and CommonJS/Node -(_gsScope._gsQueue || (_gsScope._gsQueue = [])).push( function() { - - "use strict"; - - _gsScope._gsDefine("TweenMax", ["core.Animation","core.SimpleTimeline","TweenLite"], function(Animation, SimpleTimeline, TweenLite) { - - var _slice = function(a) { //don't use [].slice because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() - var b = [], - l = a.length, - i; - for (i = 0; i !== l; b.push(a[i++])); - return b; - }, - _applyCycle = function(vars, targets, i) { - var alt = vars.cycle, - p, val; - for (p in alt) { - val = alt[p]; - vars[p] = (typeof(val) === "function") ? val(i, targets[i]) : val[i % val.length]; - } - delete vars.cycle; - }, - TweenMax = function(target, duration, vars) { - TweenLite.call(this, target, duration, vars); - this._cycle = 0; - this._yoyo = (this.vars.yoyo === true || !!this.vars.yoyoEase); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._dirty = true; //ensures that if there is any repeat, the totalDuration will get recalculated to accurately report it. - this.render = TweenMax.prototype.render; //speed optimization (avoid prototype lookup on this "hot" method) - }, - _tinyNum = 0.0000000001, - TweenLiteInternals = TweenLite._internals, - _isSelector = TweenLiteInternals.isSelector, - _isArray = TweenLiteInternals.isArray, - p = TweenMax.prototype = TweenLite.to({}, 0.1, {}), - _blankArray = []; - - TweenMax.version = "1.20.2"; - p.constructor = TweenMax; - p.kill()._gc = false; - TweenMax.killTweensOf = TweenMax.killDelayedCallsTo = TweenLite.killTweensOf; - TweenMax.getTweensOf = TweenLite.getTweensOf; - TweenMax.lagSmoothing = TweenLite.lagSmoothing; - TweenMax.ticker = TweenLite.ticker; - TweenMax.render = TweenLite.render; - - p.invalidate = function() { - this._yoyo = (this.vars.yoyo === true || !!this.vars.yoyoEase); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._yoyoEase = null; - this._uncache(true); - return TweenLite.prototype.invalidate.call(this); - }; - - p.updateTo = function(vars, resetDuration) { - var curRatio = this.ratio, - immediate = this.vars.immediateRender || vars.immediateRender, - p; - if (resetDuration && this._startTime < this._timeline._time) { - this._startTime = this._timeline._time; - this._uncache(false); - if (this._gc) { - this._enabled(true, false); - } else { - this._timeline.insert(this, this._startTime - this._delay); //ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. - } - } - for (p in vars) { - this.vars[p] = vars[p]; - } - if (this._initted || immediate) { - if (resetDuration) { - this._initted = false; - if (immediate) { - this.render(0, true, true); - } - } else { - if (this._gc) { - this._enabled(true, false); - } - if (this._notifyPluginsOfEnabled && this._firstPT) { - TweenLite._onPluginEvent("_onDisable", this); //in case a plugin like MotionBlur must perform some cleanup tasks - } - if (this._time / this._duration > 0.998) { //if the tween has finished (or come extremely close to finishing), we just need to rewind it to 0 and then render it again at the end which forces it to re-initialize (parsing the new vars). We allow tweens that are close to finishing (but haven't quite finished) to work this way too because otherwise, the values are so small when determining where to project the starting values that binary math issues creep in and can make the tween appear to render incorrectly when run backwards. - var prevTime = this._totalTime; - this.render(0, true, false); - this._initted = false; - this.render(prevTime, true, false); - } else { - this._initted = false; - this._init(); - if (this._time > 0 || immediate) { - var inv = 1 / (1 - curRatio), - pt = this._firstPT, endValue; - while (pt) { - endValue = pt.s + pt.c; - pt.c *= inv; - pt.s = endValue - pt.c; - pt = pt._next; - } - } - } - } - } - return this; - }; - - p.render = function(time, suppressEvents, force) { - if (!this._initted) if (this._duration === 0 && this.vars.repeat) { //zero duration tweens that render immediately have render() called from TweenLite's constructor, before TweenMax's constructor has finished setting _repeat, _repeatDelay, and _yoyo which are critical in determining totalDuration() so we need to call invalidate() which is a low-kb way to get those set properly. - this.invalidate(); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - prevTime = this._time, - prevTotalTime = this._totalTime, - prevCycle = this._cycle, - duration = this._duration, - prevRawPrevTime = this._rawPrevTime, - isComplete, callback, pt, cycleDuration, r, type, pow, rawPrevTime, yoyoEase; - if (time >= totalDur - 0.0000001 && time >= 0) { //to work around occasional floating point math artifacts. - this._totalTime = totalDur; - this._cycle = this._repeat; - if (this._yoyo && (this._cycle & 1) !== 0) { - this._time = 0; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0; - } else { - this._time = duration; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1; - } - if (!this._reversed) { - isComplete = true; - callback = "onComplete"; - force = (force || this._timeline.autoRemoveChildren); //otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. - } - if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - if (this._startTime === this._timeline._duration) { //if a zero-duration tween is at the VERY end of a timeline and that timeline renders at its end, it will typically add a tiny bit of cushion to the render time to prevent rounding errors from getting in the way of tweens rendering their VERY end. If we then reverse() that timeline, the zero-duration tween will trigger its onReverseComplete even though technically the playhead didn't pass over it again. It's a very specific edge case we must accommodate. - time = 0; - } - if (prevRawPrevTime < 0 || (time <= 0 && time >= -0.0000001) || (prevRawPrevTime === _tinyNum && this.data !== "isPause")) if (prevRawPrevTime !== time) { //note: when this.data is "isPause", it's a callback added by addPause() on a timeline that we should not be triggered when LEAVING its exact start time. In other words, tl.addPause(1).play(1) shouldn't pause. - force = true; - if (prevRawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - } - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - this._totalTime = this._time = this._cycle = 0; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0; - if (prevTotalTime !== 0 || (duration === 0 && prevRawPrevTime > 0)) { - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - if (prevRawPrevTime >= 0) { - force = true; - } - this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - } - } - if (!this._initted) { //if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately. - force = true; - } - } else { - this._totalTime = this._time = time; - if (this._repeat !== 0) { - cycleDuration = duration + this._repeatDelay; - this._cycle = (this._totalTime / cycleDuration) >> 0; //originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but some browsers report it as 0.79999999!) - if (this._cycle !== 0) if (this._cycle === this._totalTime / cycleDuration && prevTotalTime <= time) { - this._cycle--; //otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) - } - this._time = this._totalTime - (this._cycle * cycleDuration); - if (this._yoyo) if ((this._cycle & 1) !== 0) { - this._time = duration - this._time; - yoyoEase = this._yoyoEase || this.vars.yoyoEase; //note: we don't set this._yoyoEase in _init() like we do other properties because it's TweenMax-specific and doing it here allows us to optimize performance (most tweens don't have a yoyoEase). Note that we also must skip the this.ratio calculation further down right after we _init() in this function, because we're doing it here. - if (yoyoEase) { - if (!this._yoyoEase) { - if (yoyoEase === true && !this._initted) { //if it's not initted and yoyoEase is true, this._ease won't have been populated yet so we must discern it here. - yoyoEase = this.vars.ease; - this._yoyoEase = yoyoEase = !yoyoEase ? TweenLite.defaultEase : (yoyoEase instanceof Ease) ? yoyoEase : (typeof(yoyoEase) === "function") ? new Ease(yoyoEase, this.vars.easeParams) : Ease.map[yoyoEase] || TweenLite.defaultEase; - } else { - this._yoyoEase = yoyoEase = (yoyoEase === true) ? this._ease : (yoyoEase instanceof Ease) ? yoyoEase : Ease.map[yoyoEase]; - } - } - this.ratio = yoyoEase ? 1 - yoyoEase.getRatio((duration - this._time) / duration) : 0; - } - } - if (this._time > duration) { - this._time = duration; - } else if (this._time < 0) { - this._time = 0; - } - } - - if (this._easeType && !yoyoEase) { - r = this._time / duration; - type = this._easeType; - pow = this._easePower; - if (type === 1 || (type === 3 && r >= 0.5)) { - r = 1 - r; - } - if (type === 3) { - r *= 2; - } - if (pow === 1) { - r *= r; - } else if (pow === 2) { - r *= r * r; - } else if (pow === 3) { - r *= r * r * r; - } else if (pow === 4) { - r *= r * r * r * r; - } - - if (type === 1) { - this.ratio = 1 - r; - } else if (type === 2) { - this.ratio = r; - } else if (this._time / duration < 0.5) { - this.ratio = r / 2; - } else { - this.ratio = 1 - (r / 2); - } - - } else if (!yoyoEase) { - this.ratio = this._ease.getRatio(this._time / duration); - } - - } - - if (prevTime === this._time && !force && prevCycle === this._cycle) { - if (prevTotalTime !== this._totalTime) if (this._onUpdate) if (!suppressEvents) { //so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. - this._callback("onUpdate"); - } - return; - } else if (!this._initted) { - this._init(); - if (!this._initted || this._gc) { //immediateRender tweens typically won't initialize until the playhead advances (_time is greater than 0) in order to ensure that overwriting occurs properly. Also, if all of the tweening properties have been overwritten (which would cause _gc to be true, as set in _init()), we shouldn't continue otherwise an onStart callback could be called for example. - return; - } else if (!force && this._firstPT && ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration))) { //we stick it in the queue for rendering at the very end of the tick - this is a performance optimization because browsers invalidate styles and force a recalculation if you read, write, and then read style data (so it's better to read/read/read/write/write/write than read/write/read/write/read/write). The down side, of course, is that usually you WANT things to render immediately because you may have code running right after that which depends on the change. Like imagine running TweenLite.set(...) and then immediately after that, creating a nother tween that animates the same property to another value; the starting values of that 2nd tween wouldn't be accurate if lazy is true. - this._time = prevTime; - this._totalTime = prevTotalTime; - this._rawPrevTime = prevRawPrevTime; - this._cycle = prevCycle; - TweenLiteInternals.lazyTweens.push(this); - this._lazy = [time, suppressEvents]; - return; - } - //_ease is initially set to defaultEase, so now that init() has run, _ease is set properly and we need to recalculate the ratio. Overall this is faster than using conditional logic earlier in the method to avoid having to set ratio twice because we only init() once but renderTime() gets called VERY frequently. - if (this._time && !isComplete && !yoyoEase) { - this.ratio = this._ease.getRatio(this._time / duration); - } else if (isComplete && this._ease._calcEnd && !yoyoEase) { - this.ratio = this._ease.getRatio((this._time === 0) ? 0 : 1); - } - } - if (this._lazy !== false) { - this._lazy = false; - } - - if (!this._active) if (!this._paused && this._time !== prevTime && time >= 0) { - this._active = true; //so that if the user renders a tween (as opposed to the timeline rendering it), the timeline is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the tween already finished but the user manually re-renders it as halfway done. - } - if (prevTotalTime === 0) { - if (this._initted === 2 && time > 0) { - //this.invalidate(); - this._init(); //will just apply overwriting since _initted of (2) means it was a from() tween that had immediateRender:true - } - if (this._startAt) { - if (time >= 0) { - this._startAt.render(time, suppressEvents, force); - } else if (!callback) { - callback = "_dummyGS"; //if no callback is defined, use a dummy value just so that the condition at the end evaluates as true because _startAt should render AFTER the normal render loop when the time is negative. We could handle this in a more intuitive way, of course, but the render loop is the MOST important thing to optimize, so this technique allows us to avoid adding extra conditional logic in a high-frequency area. - } - } - if (this.vars.onStart) if (this._totalTime !== 0 || duration === 0) if (!suppressEvents) { - this._callback("onStart"); - } - } - - pt = this._firstPT; - while (pt) { - if (pt.f) { - pt.t[pt.p](pt.c * this.ratio + pt.s); - } else { - pt.t[pt.p] = pt.c * this.ratio + pt.s; - } - pt = pt._next; - } - - if (this._onUpdate) { - if (time < 0) if (this._startAt && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. - this._startAt.render(time, suppressEvents, force); //note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete. - } - if (!suppressEvents) if (this._totalTime !== prevTotalTime || callback) { - this._callback("onUpdate"); - } - } - if (this._cycle !== prevCycle) if (!suppressEvents) if (!this._gc) if (this.vars.onRepeat) { - this._callback("onRepeat"); - } - if (callback) if (!this._gc || force) { //check gc because there's a chance that kill() could be called in an onUpdate - if (time < 0 && this._startAt && !this._onUpdate && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. - this._startAt.render(time, suppressEvents, force); - } - if (isComplete) { - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this._callback(callback); - } - if (duration === 0 && this._rawPrevTime === _tinyNum && rawPrevTime !== _tinyNum) { //the onComplete or onReverseComplete could trigger movement of the playhead and for zero-duration tweens (which must discern direction) that land directly back on their start time, we don't want to fire again on the next render. Think of several addPause()'s in a timeline that forces the playhead to a certain spot, but what if it's already paused and another tween is tweening the "time" of the timeline? Each time it moves [forward] past that spot, it would move back, and since suppressEvents is true, it'd reset _rawPrevTime to _tinyNum so that when it begins again, the callback would fire (so ultimately it could bounce back and forth during that tween). Again, this is a very uncommon scenario, but possible nonetheless. - this._rawPrevTime = 0; - } - } - }; - -//---- STATIC FUNCTIONS ----------------------------------------------------------------------------------------------------------- - - TweenMax.to = function(target, duration, vars) { - return new TweenMax(target, duration, vars); - }; - - TweenMax.from = function(target, duration, vars) { - vars.runBackwards = true; - vars.immediateRender = (vars.immediateRender != false); - return new TweenMax(target, duration, vars); - }; - - TweenMax.fromTo = function(target, duration, fromVars, toVars) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return new TweenMax(target, duration, toVars); - }; - - TweenMax.staggerTo = TweenMax.allTo = function(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - stagger = stagger || 0; - var delay = 0, - a = [], - finalComplete = function() { - if (vars.onComplete) { - vars.onComplete.apply(vars.onCompleteScope || this, arguments); - } - onCompleteAll.apply(onCompleteAllScope || vars.callbackScope || this, onCompleteAllParams || _blankArray); - }, - cycle = vars.cycle, - fromCycle = (vars.startAt && vars.startAt.cycle), - l, copy, i, p; - if (!_isArray(targets)) { - if (typeof(targets) === "string") { - targets = TweenLite.selector(targets) || targets; - } - if (_isSelector(targets)) { - targets = _slice(targets); - } - } - targets = targets || []; - if (stagger < 0) { - targets = _slice(targets); - targets.reverse(); - stagger *= -1; - } - l = targets.length - 1; - for (i = 0; i <= l; i++) { - copy = {}; - for (p in vars) { - copy[p] = vars[p]; - } - if (cycle) { - _applyCycle(copy, targets, i); - if (copy.duration != null) { - duration = copy.duration; - delete copy.duration; - } - } - if (fromCycle) { - fromCycle = copy.startAt = {}; - for (p in vars.startAt) { - fromCycle[p] = vars.startAt[p]; - } - _applyCycle(copy.startAt, targets, i); - } - copy.delay = delay + (copy.delay || 0); - if (i === l && onCompleteAll) { - copy.onComplete = finalComplete; - } - a[i] = new TweenMax(targets[i], duration, copy); - delay += stagger; - } - return a; - }; - - TweenMax.staggerFrom = TweenMax.allFrom = function(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - vars.runBackwards = true; - vars.immediateRender = (vars.immediateRender != false); - return TweenMax.staggerTo(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - TweenMax.staggerFromTo = TweenMax.allFromTo = function(targets, duration, fromVars, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return TweenMax.staggerTo(targets, duration, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - TweenMax.delayedCall = function(delay, callback, params, scope, useFrames) { - return new TweenMax(callback, 0, {delay:delay, onComplete:callback, onCompleteParams:params, callbackScope:scope, onReverseComplete:callback, onReverseCompleteParams:params, immediateRender:false, useFrames:useFrames, overwrite:0}); - }; - - TweenMax.set = function(target, vars) { - return new TweenMax(target, 0, vars); - }; - - TweenMax.isTweening = function(target) { - return (TweenLite.getTweensOf(target, true).length > 0); - }; - - var _getChildrenOf = function(timeline, includeTimelines) { - var a = [], - cnt = 0, - tween = timeline._first; - while (tween) { - if (tween instanceof TweenLite) { - a[cnt++] = tween; - } else { - if (includeTimelines) { - a[cnt++] = tween; - } - a = a.concat(_getChildrenOf(tween, includeTimelines)); - cnt = a.length; - } - tween = tween._next; - } - return a; - }, - getAllTweens = TweenMax.getAllTweens = function(includeTimelines) { - return _getChildrenOf(Animation._rootTimeline, includeTimelines).concat( _getChildrenOf(Animation._rootFramesTimeline, includeTimelines) ); - }; - - TweenMax.killAll = function(complete, tweens, delayedCalls, timelines) { - if (tweens == null) { - tweens = true; - } - if (delayedCalls == null) { - delayedCalls = true; - } - var a = getAllTweens((timelines != false)), - l = a.length, - allTrue = (tweens && delayedCalls && timelines), - isDC, tween, i; - for (i = 0; i < l; i++) { - tween = a[i]; - if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { - if (complete) { - tween.totalTime(tween._reversed ? 0 : tween.totalDuration()); - } else { - tween._enabled(false, false); - } - } - } - }; - - TweenMax.killChildTweensOf = function(parent, complete) { - if (parent == null) { - return; - } - var tl = TweenLiteInternals.tweenLookup, - a, curParent, p, i, l; - if (typeof(parent) === "string") { - parent = TweenLite.selector(parent) || parent; - } - if (_isSelector(parent)) { - parent = _slice(parent); - } - if (_isArray(parent)) { - i = parent.length; - while (--i > -1) { - TweenMax.killChildTweensOf(parent[i], complete); - } - return; - } - a = []; - for (p in tl) { - curParent = tl[p].target.parentNode; - while (curParent) { - if (curParent === parent) { - a = a.concat(tl[p].tweens); - } - curParent = curParent.parentNode; - } - } - l = a.length; - for (i = 0; i < l; i++) { - if (complete) { - a[i].totalTime(a[i].totalDuration()); - } - a[i]._enabled(false, false); - } - }; - - var _changePause = function(pause, tweens, delayedCalls, timelines) { - tweens = (tweens !== false); - delayedCalls = (delayedCalls !== false); - timelines = (timelines !== false); - var a = getAllTweens(timelines), - allTrue = (tweens && delayedCalls && timelines), - i = a.length, - isDC, tween; - while (--i > -1) { - tween = a[i]; - if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { - tween.paused(pause); - } - } - }; - - TweenMax.pauseAll = function(tweens, delayedCalls, timelines) { - _changePause(true, tweens, delayedCalls, timelines); - }; - - TweenMax.resumeAll = function(tweens, delayedCalls, timelines) { - _changePause(false, tweens, delayedCalls, timelines); - }; - - TweenMax.globalTimeScale = function(value) { - var tl = Animation._rootTimeline, - t = TweenLite.ticker.time; - if (!arguments.length) { - return tl._timeScale; - } - value = value || _tinyNum; //can't allow zero because it'll throw the math off - tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value); - tl = Animation._rootFramesTimeline; - t = TweenLite.ticker.frame; - tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value); - tl._timeScale = Animation._rootTimeline._timeScale = value; - return value; - }; - - -//---- GETTERS / SETTERS ---------------------------------------------------------------------------------------------------------- - - p.progress = function(value, suppressEvents) { - return (!arguments.length) ? this._time / this.duration() : this.totalTime( this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), suppressEvents); - }; - - p.totalProgress = function(value, suppressEvents) { - return (!arguments.length) ? this._totalTime / this.totalDuration() : this.totalTime( this.totalDuration() * value, suppressEvents); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - if (value > this._duration) { - value = this._duration; - } - if (this._yoyo && (this._cycle & 1) !== 0) { - value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)); - } else if (this._repeat !== 0) { - value += this._cycle * (this._duration + this._repeatDelay); - } - return this.totalTime(value, suppressEvents); - }; - - p.duration = function(value) { - if (!arguments.length) { - return this._duration; //don't set _dirty = false because there could be repeats that haven't been factored into the _totalDuration yet. Otherwise, if you create a repeated TweenMax and then immediately check its duration(), it would cache the value and the totalDuration would not be correct, thus repeats wouldn't take effect. - } - return Animation.prototype.duration.call(this, value); - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - //instead of Infinity, we use 999999999999 so that we can accommodate reverses - this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat); - this._dirty = false; - } - return this._totalDuration; - } - return (this._repeat === -1) ? this : this.duration( (value - (this._repeat * this._repeatDelay)) / (this._repeat + 1) ); - }; - - p.repeat = function(value) { - if (!arguments.length) { - return this._repeat; - } - this._repeat = value; - return this._uncache(true); - }; - - p.repeatDelay = function(value) { - if (!arguments.length) { - return this._repeatDelay; - } - this._repeatDelay = value; - return this._uncache(true); - }; - - p.yoyo = function(value) { - if (!arguments.length) { - return this._yoyo; - } - this._yoyo = value; - return this; - }; - - - return TweenMax; - - }, true); - - - - - - - - -/* +var _gsScope = (typeof (module) !== 'undefined' && module.exports && typeof (global) !== 'undefined') ? global : this || window; // helps ensure compatibility with AMD/RequireJS and CommonJS/Node +(_gsScope._gsQueue || (_gsScope._gsQueue = [])).push(function () { + 'use strict' + + _gsScope._gsDefine('TweenMax', ['core.Animation', 'core.SimpleTimeline', 'TweenLite'], function (Animation, SimpleTimeline, TweenLite) { + var _slice = function (a) { // don't use [].slice because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() + var b = [], + l = a.length, + i + for (i = 0; i !== l; b.push(a[i++])); + return b + }, + _applyCycle = function (vars, targets, i) { + var alt = vars.cycle, + p, val + for (p in alt) { + val = alt[p] + vars[p] = (typeof (val) === 'function') ? val(i, targets[i]) : val[i % val.length] + } + delete vars.cycle + }, + TweenMax = function (target, duration, vars) { + TweenLite.call(this, target, duration, vars) + this._cycle = 0 + this._yoyo = (this.vars.yoyo === true || !!this.vars.yoyoEase) + this._repeat = this.vars.repeat || 0 + this._repeatDelay = this.vars.repeatDelay || 0 + this._dirty = true // ensures that if there is any repeat, the totalDuration will get recalculated to accurately report it. + this.render = TweenMax.prototype.render // speed optimization (avoid prototype lookup on this "hot" method) + }, + _tinyNum = 0.0000000001, + TweenLiteInternals = TweenLite._internals, + _isSelector = TweenLiteInternals.isSelector, + _isArray = TweenLiteInternals.isArray, + p = TweenMax.prototype = TweenLite.to({}, 0.1, {}), + _blankArray = [] + + TweenMax.version = '1.20.2' + p.constructor = TweenMax + p.kill()._gc = false + TweenMax.killTweensOf = TweenMax.killDelayedCallsTo = TweenLite.killTweensOf + TweenMax.getTweensOf = TweenLite.getTweensOf + TweenMax.lagSmoothing = TweenLite.lagSmoothing + TweenMax.ticker = TweenLite.ticker + TweenMax.render = TweenLite.render + + p.invalidate = function () { + this._yoyo = (this.vars.yoyo === true || !!this.vars.yoyoEase) + this._repeat = this.vars.repeat || 0 + this._repeatDelay = this.vars.repeatDelay || 0 + this._yoyoEase = null + this._uncache(true) + return TweenLite.prototype.invalidate.call(this) + } + + p.updateTo = function (vars, resetDuration) { + var curRatio = this.ratio, + immediate = this.vars.immediateRender || vars.immediateRender, + p + if (resetDuration && this._startTime < this._timeline._time) { + this._startTime = this._timeline._time + this._uncache(false) + if (this._gc) { + this._enabled(true, false) + } else { + this._timeline.insert(this, this._startTime - this._delay) // ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. + } + } + for (p in vars) { + this.vars[p] = vars[p] + } + if (this._initted || immediate) { + if (resetDuration) { + this._initted = false + if (immediate) { + this.render(0, true, true) + } + } else { + if (this._gc) { + this._enabled(true, false) + } + if (this._notifyPluginsOfEnabled && this._firstPT) { + TweenLite._onPluginEvent('_onDisable', this) // in case a plugin like MotionBlur must perform some cleanup tasks + } + if (this._time / this._duration > 0.998) { // if the tween has finished (or come extremely close to finishing), we just need to rewind it to 0 and then render it again at the end which forces it to re-initialize (parsing the new vars). We allow tweens that are close to finishing (but haven't quite finished) to work this way too because otherwise, the values are so small when determining where to project the starting values that binary math issues creep in and can make the tween appear to render incorrectly when run backwards. + var prevTime = this._totalTime + this.render(0, true, false) + this._initted = false + this.render(prevTime, true, false) + } else { + this._initted = false + this._init() + if (this._time > 0 || immediate) { + var inv = 1 / (1 - curRatio), + pt = this._firstPT, endValue + while (pt) { + endValue = pt.s + pt.c + pt.c *= inv + pt.s = endValue - pt.c + pt = pt._next + } + } + } + } + } + return this + } + + p.render = function (time, suppressEvents, force) { + if (!this._initted) { + if (this._duration === 0 && this.vars.repeat) { // zero duration tweens that render immediately have render() called from TweenLite's constructor, before TweenMax's constructor has finished setting _repeat, _repeatDelay, and _yoyo which are critical in determining totalDuration() so we need to call invalidate() which is a low-kb way to get those set properly. + this.invalidate() + } + } + var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), + prevTime = this._time, + prevTotalTime = this._totalTime, + prevCycle = this._cycle, + duration = this._duration, + prevRawPrevTime = this._rawPrevTime, + isComplete, callback, pt, cycleDuration, r, type, pow, rawPrevTime, yoyoEase + if (time >= totalDur - 0.0000001 && time >= 0) { // to work around occasional floating point math artifacts. + this._totalTime = totalDur + this._cycle = this._repeat + if (this._yoyo && (this._cycle & 1) !== 0) { + this._time = 0 + this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0 + } else { + this._time = duration + this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1 + } + if (!this._reversed) { + isComplete = true + callback = 'onComplete' + force = (force || this._timeline.autoRemoveChildren) // otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. + } + if (duration === 0) { + if (this._initted || !this.vars.lazy || force) { // zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (this._startTime === this._timeline._duration) { // if a zero-duration tween is at the VERY end of a timeline and that timeline renders at its end, it will typically add a tiny bit of cushion to the render time to prevent rounding errors from getting in the way of tweens rendering their VERY end. If we then reverse() that timeline, the zero-duration tween will trigger its onReverseComplete even though technically the playhead didn't pass over it again. It's a very specific edge case we must accommodate. + time = 0 + } + if (prevRawPrevTime < 0 || (time <= 0 && time >= -0.0000001) || (prevRawPrevTime === _tinyNum && this.data !== 'isPause')) { + if (prevRawPrevTime !== time) { // note: when this.data is "isPause", it's a callback added by addPause() on a timeline that we should not be triggered when LEAVING its exact start time. In other words, tl.addPause(1).play(1) shouldn't pause. + force = true + if (prevRawPrevTime > _tinyNum) { + callback = 'onReverseComplete' + } + } + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + } + } else if (time < 0.0000001) { // to work around occasional floating point math artifacts, round super small values to 0. + this._totalTime = this._time = this._cycle = 0 + this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0 + if (prevTotalTime !== 0 || (duration === 0 && prevRawPrevTime > 0)) { + callback = 'onReverseComplete' + isComplete = this._reversed + } + if (time < 0) { + this._active = false + if (duration === 0) { + if (this._initted || !this.vars.lazy || force) { // zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (prevRawPrevTime >= 0) { + force = true + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + } + } + if (!this._initted) { // if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately. + force = true + } + } else { + this._totalTime = this._time = time + if (this._repeat !== 0) { + cycleDuration = duration + this._repeatDelay + this._cycle = (this._totalTime / cycleDuration) >> 0 // originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but some browsers report it as 0.79999999!) + if (this._cycle !== 0) { + if (this._cycle === this._totalTime / cycleDuration && prevTotalTime <= time) { + this._cycle-- // otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) + } + } + this._time = this._totalTime - (this._cycle * cycleDuration) + if (this._yoyo) { + if ((this._cycle & 1) !== 0) { + this._time = duration - this._time + yoyoEase = this._yoyoEase || this.vars.yoyoEase // note: we don't set this._yoyoEase in _init() like we do other properties because it's TweenMax-specific and doing it here allows us to optimize performance (most tweens don't have a yoyoEase). Note that we also must skip the this.ratio calculation further down right after we _init() in this function, because we're doing it here. + if (yoyoEase) { + if (!this._yoyoEase) { + if (yoyoEase === true && !this._initted) { // if it's not initted and yoyoEase is true, this._ease won't have been populated yet so we must discern it here. + yoyoEase = this.vars.ease + this._yoyoEase = yoyoEase = !yoyoEase ? TweenLite.defaultEase : (yoyoEase instanceof Ease) ? yoyoEase : (typeof (yoyoEase) === 'function') ? new Ease(yoyoEase, this.vars.easeParams) : Ease.map[yoyoEase] || TweenLite.defaultEase + } else { + this._yoyoEase = yoyoEase = (yoyoEase === true) ? this._ease : (yoyoEase instanceof Ease) ? yoyoEase : Ease.map[yoyoEase] + } + } + this.ratio = yoyoEase ? 1 - yoyoEase.getRatio((duration - this._time) / duration) : 0 + } + } + } + if (this._time > duration) { + this._time = duration + } else if (this._time < 0) { + this._time = 0 + } + } + + if (this._easeType && !yoyoEase) { + r = this._time / duration + type = this._easeType + pow = this._easePower + if (type === 1 || (type === 3 && r >= 0.5)) { + r = 1 - r + } + if (type === 3) { + r *= 2 + } + if (pow === 1) { + r *= r + } else if (pow === 2) { + r *= r * r + } else if (pow === 3) { + r *= r * r * r + } else if (pow === 4) { + r *= r * r * r * r + } + + if (type === 1) { + this.ratio = 1 - r + } else if (type === 2) { + this.ratio = r + } else if (this._time / duration < 0.5) { + this.ratio = r / 2 + } else { + this.ratio = 1 - (r / 2) + } + } else if (!yoyoEase) { + this.ratio = this._ease.getRatio(this._time / duration) + } + } + + if (prevTime === this._time && !force && prevCycle === this._cycle) { + if (prevTotalTime !== this._totalTime) { + if (this._onUpdate) { + if (!suppressEvents) { // so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. + this._callback('onUpdate') + } + } + } + return + } else if (!this._initted) { + this._init() + if (!this._initted || this._gc) { // immediateRender tweens typically won't initialize until the playhead advances (_time is greater than 0) in order to ensure that overwriting occurs properly. Also, if all of the tweening properties have been overwritten (which would cause _gc to be true, as set in _init()), we shouldn't continue otherwise an onStart callback could be called for example. + return + } else if (!force && this._firstPT && ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration))) { // we stick it in the queue for rendering at the very end of the tick - this is a performance optimization because browsers invalidate styles and force a recalculation if you read, write, and then read style data (so it's better to read/read/read/write/write/write than read/write/read/write/read/write). The down side, of course, is that usually you WANT things to render immediately because you may have code running right after that which depends on the change. Like imagine running TweenLite.set(...) and then immediately after that, creating a nother tween that animates the same property to another value; the starting values of that 2nd tween wouldn't be accurate if lazy is true. + this._time = prevTime + this._totalTime = prevTotalTime + this._rawPrevTime = prevRawPrevTime + this._cycle = prevCycle + TweenLiteInternals.lazyTweens.push(this) + this._lazy = [time, suppressEvents] + return + } + // _ease is initially set to defaultEase, so now that init() has run, _ease is set properly and we need to recalculate the ratio. Overall this is faster than using conditional logic earlier in the method to avoid having to set ratio twice because we only init() once but renderTime() gets called VERY frequently. + if (this._time && !isComplete && !yoyoEase) { + this.ratio = this._ease.getRatio(this._time / duration) + } else if (isComplete && this._ease._calcEnd && !yoyoEase) { + this.ratio = this._ease.getRatio((this._time === 0) ? 0 : 1) + } + } + if (this._lazy !== false) { + this._lazy = false + } + + if (!this._active) { + if (!this._paused && this._time !== prevTime && time >= 0) { + this._active = true // so that if the user renders a tween (as opposed to the timeline rendering it), the timeline is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the tween already finished but the user manually re-renders it as halfway done. + } + } + if (prevTotalTime === 0) { + if (this._initted === 2 && time > 0) { + // this.invalidate(); + this._init() // will just apply overwriting since _initted of (2) means it was a from() tween that had immediateRender:true + } + if (this._startAt) { + if (time >= 0) { + this._startAt.render(time, suppressEvents, force) + } else if (!callback) { + callback = '_dummyGS' // if no callback is defined, use a dummy value just so that the condition at the end evaluates as true because _startAt should render AFTER the normal render loop when the time is negative. We could handle this in a more intuitive way, of course, but the render loop is the MOST important thing to optimize, so this technique allows us to avoid adding extra conditional logic in a high-frequency area. + } + } + if (this.vars.onStart) { + if (this._totalTime !== 0 || duration === 0) { + if (!suppressEvents) { + this._callback('onStart') + } + } + } + } + + pt = this._firstPT + while (pt) { + if (pt.f) { + pt.t[pt.p](pt.c * this.ratio + pt.s) + } else { + pt.t[pt.p] = pt.c * this.ratio + pt.s + } + pt = pt._next + } + + if (this._onUpdate) { + if (time < 0) { + if (this._startAt && this._startTime) { // if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. + this._startAt.render(time, suppressEvents, force) // note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete. + } + } + if (!suppressEvents) { + if (this._totalTime !== prevTotalTime || callback) { + this._callback('onUpdate') + } + } + } + if (this._cycle !== prevCycle) { + if (!suppressEvents) { + if (!this._gc) { + if (this.vars.onRepeat) { + this._callback('onRepeat') + } + } + } + } + if (callback) { + if (!this._gc || force) { // check gc because there's a chance that kill() could be called in an onUpdate + if (time < 0 && this._startAt && !this._onUpdate && this._startTime) { // if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. + this._startAt.render(time, suppressEvents, force) + } + if (isComplete) { + if (this._timeline.autoRemoveChildren) { + this._enabled(false, false) + } + this._active = false + } + if (!suppressEvents && this.vars[callback]) { + this._callback(callback) + } + if (duration === 0 && this._rawPrevTime === _tinyNum && rawPrevTime !== _tinyNum) { // the onComplete or onReverseComplete could trigger movement of the playhead and for zero-duration tweens (which must discern direction) that land directly back on their start time, we don't want to fire again on the next render. Think of several addPause()'s in a timeline that forces the playhead to a certain spot, but what if it's already paused and another tween is tweening the "time" of the timeline? Each time it moves [forward] past that spot, it would move back, and since suppressEvents is true, it'd reset _rawPrevTime to _tinyNum so that when it begins again, the callback would fire (so ultimately it could bounce back and forth during that tween). Again, this is a very uncommon scenario, but possible nonetheless. + this._rawPrevTime = 0 + } + } + } + } + + // ---- STATIC FUNCTIONS ----------------------------------------------------------------------------------------------------------- + + TweenMax.to = function (target, duration, vars) { + return new TweenMax(target, duration, vars) + } + + TweenMax.from = function (target, duration, vars) { + vars.runBackwards = true + vars.immediateRender = (vars.immediateRender != false) + return new TweenMax(target, duration, vars) + } + + TweenMax.fromTo = function (target, duration, fromVars, toVars) { + toVars.startAt = fromVars + toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false) + return new TweenMax(target, duration, toVars) + } + + TweenMax.staggerTo = TweenMax.allTo = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + stagger = stagger || 0 + var delay = 0, + a = [], + finalComplete = function () { + if (vars.onComplete) { + vars.onComplete.apply(vars.onCompleteScope || this, arguments) + } + onCompleteAll.apply(onCompleteAllScope || vars.callbackScope || this, onCompleteAllParams || _blankArray) + }, + cycle = vars.cycle, + fromCycle = (vars.startAt && vars.startAt.cycle), + l, copy, i, p + if (!_isArray(targets)) { + if (typeof (targets) === 'string') { + targets = TweenLite.selector(targets) || targets + } + if (_isSelector(targets)) { + targets = _slice(targets) + } + } + targets = targets || [] + if (stagger < 0) { + targets = _slice(targets) + targets.reverse() + stagger *= -1 + } + l = targets.length - 1 + for (i = 0; i <= l; i++) { + copy = {} + for (p in vars) { + copy[p] = vars[p] + } + if (cycle) { + _applyCycle(copy, targets, i) + if (copy.duration != null) { + duration = copy.duration + delete copy.duration + } + } + if (fromCycle) { + fromCycle = copy.startAt = {} + for (p in vars.startAt) { + fromCycle[p] = vars.startAt[p] + } + _applyCycle(copy.startAt, targets, i) + } + copy.delay = delay + (copy.delay || 0) + if (i === l && onCompleteAll) { + copy.onComplete = finalComplete + } + a[i] = new TweenMax(targets[i], duration, copy) + delay += stagger + } + return a + } + + TweenMax.staggerFrom = TweenMax.allFrom = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + vars.runBackwards = true + vars.immediateRender = (vars.immediateRender != false) + return TweenMax.staggerTo(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) + } + + TweenMax.staggerFromTo = TweenMax.allFromTo = function (targets, duration, fromVars, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + toVars.startAt = fromVars + toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false) + return TweenMax.staggerTo(targets, duration, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) + } + + TweenMax.delayedCall = function (delay, callback, params, scope, useFrames) { + return new TweenMax(callback, 0, {delay: delay, onComplete: callback, onCompleteParams: params, callbackScope: scope, onReverseComplete: callback, onReverseCompleteParams: params, immediateRender: false, useFrames: useFrames, overwrite: 0}) + } + + TweenMax.set = function (target, vars) { + return new TweenMax(target, 0, vars) + } + + TweenMax.isTweening = function (target) { + return (TweenLite.getTweensOf(target, true).length > 0) + } + + var _getChildrenOf = function (timeline, includeTimelines) { + var a = [], + cnt = 0, + tween = timeline._first + while (tween) { + if (tween instanceof TweenLite) { + a[cnt++] = tween + } else { + if (includeTimelines) { + a[cnt++] = tween + } + a = a.concat(_getChildrenOf(tween, includeTimelines)) + cnt = a.length + } + tween = tween._next + } + return a + }, + getAllTweens = TweenMax.getAllTweens = function (includeTimelines) { + return _getChildrenOf(Animation._rootTimeline, includeTimelines).concat(_getChildrenOf(Animation._rootFramesTimeline, includeTimelines)) + } + + TweenMax.killAll = function (complete, tweens, delayedCalls, timelines) { + if (tweens == null) { + tweens = true + } + if (delayedCalls == null) { + delayedCalls = true + } + var a = getAllTweens((timelines != false)), + l = a.length, + allTrue = (tweens && delayedCalls && timelines), + isDC, tween, i + for (i = 0; i < l; i++) { + tween = a[i] + if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { + if (complete) { + tween.totalTime(tween._reversed ? 0 : tween.totalDuration()) + } else { + tween._enabled(false, false) + } + } + } + } + + TweenMax.killChildTweensOf = function (parent, complete) { + if (parent == null) { + return + } + var tl = TweenLiteInternals.tweenLookup, + a, curParent, p, i, l + if (typeof (parent) === 'string') { + parent = TweenLite.selector(parent) || parent + } + if (_isSelector(parent)) { + parent = _slice(parent) + } + if (_isArray(parent)) { + i = parent.length + while (--i > -1) { + TweenMax.killChildTweensOf(parent[i], complete) + } + return + } + a = [] + for (p in tl) { + curParent = tl[p].target.parentNode + while (curParent) { + if (curParent === parent) { + a = a.concat(tl[p].tweens) + } + curParent = curParent.parentNode + } + } + l = a.length + for (i = 0; i < l; i++) { + if (complete) { + a[i].totalTime(a[i].totalDuration()) + } + a[i]._enabled(false, false) + } + } + + var _changePause = function (pause, tweens, delayedCalls, timelines) { + tweens = (tweens !== false) + delayedCalls = (delayedCalls !== false) + timelines = (timelines !== false) + var a = getAllTweens(timelines), + allTrue = (tweens && delayedCalls && timelines), + i = a.length, + isDC, tween + while (--i > -1) { + tween = a[i] + if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { + tween.paused(pause) + } + } + } + + TweenMax.pauseAll = function (tweens, delayedCalls, timelines) { + _changePause(true, tweens, delayedCalls, timelines) + } + + TweenMax.resumeAll = function (tweens, delayedCalls, timelines) { + _changePause(false, tweens, delayedCalls, timelines) + } + + TweenMax.globalTimeScale = function (value) { + var tl = Animation._rootTimeline, + t = TweenLite.ticker.time + if (!arguments.length) { + return tl._timeScale + } + value = value || _tinyNum // can't allow zero because it'll throw the math off + tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value) + tl = Animation._rootFramesTimeline + t = TweenLite.ticker.frame + tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value) + tl._timeScale = Animation._rootTimeline._timeScale = value + return value + } + + // ---- GETTERS / SETTERS ---------------------------------------------------------------------------------------------------------- + + p.progress = function (value, suppressEvents) { + return (!arguments.length) ? this._time / this.duration() : this.totalTime(this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), suppressEvents) + } + + p.totalProgress = function (value, suppressEvents) { + return (!arguments.length) ? this._totalTime / this.totalDuration() : this.totalTime(this.totalDuration() * value, suppressEvents) + } + + p.time = function (value, suppressEvents) { + if (!arguments.length) { + return this._time + } + if (this._dirty) { + this.totalDuration() + } + if (value > this._duration) { + value = this._duration + } + if (this._yoyo && (this._cycle & 1) !== 0) { + value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)) + } else if (this._repeat !== 0) { + value += this._cycle * (this._duration + this._repeatDelay) + } + return this.totalTime(value, suppressEvents) + } + + p.duration = function (value) { + if (!arguments.length) { + return this._duration // don't set _dirty = false because there could be repeats that haven't been factored into the _totalDuration yet. Otherwise, if you create a repeated TweenMax and then immediately check its duration(), it would cache the value and the totalDuration would not be correct, thus repeats wouldn't take effect. + } + return Animation.prototype.duration.call(this, value) + } + + p.totalDuration = function (value) { + if (!arguments.length) { + if (this._dirty) { + // instead of Infinity, we use 999999999999 so that we can accommodate reverses + this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat) + this._dirty = false + } + return this._totalDuration + } + return (this._repeat === -1) ? this : this.duration((value - (this._repeat * this._repeatDelay)) / (this._repeat + 1)) + } + + p.repeat = function (value) { + if (!arguments.length) { + return this._repeat + } + this._repeat = value + return this._uncache(true) + } + + p.repeatDelay = function (value) { + if (!arguments.length) { + return this._repeatDelay + } + this._repeatDelay = value + return this._uncache(true) + } + + p.yoyo = function (value) { + if (!arguments.length) { + return this._yoyo + } + this._yoyo = value + return this + } + + return TweenMax + }, true) + + /* * ---------------------------------------------------------------- * TimelineLite * ---------------------------------------------------------------- */ - _gsScope._gsDefine("TimelineLite", ["core.Animation","core.SimpleTimeline","TweenLite"], function(Animation, SimpleTimeline, TweenLite) { - - var TimelineLite = function(vars) { - SimpleTimeline.call(this, vars); - this._labels = {}; - this.autoRemoveChildren = (this.vars.autoRemoveChildren === true); - this.smoothChildTiming = (this.vars.smoothChildTiming === true); - this._sortChildren = true; - this._onUpdate = this.vars.onUpdate; - var v = this.vars, - val, p; - for (p in v) { - val = v[p]; - if (_isArray(val)) if (val.join("").indexOf("{self}") !== -1) { - v[p] = this._swapSelfInParams(val); - } - } - if (_isArray(v.tweens)) { - this.add(v.tweens, 0, v.align, v.stagger); - } - }, - _tinyNum = 0.0000000001, - TweenLiteInternals = TweenLite._internals, - _internals = TimelineLite._internals = {}, - _isSelector = TweenLiteInternals.isSelector, - _isArray = TweenLiteInternals.isArray, - _lazyTweens = TweenLiteInternals.lazyTweens, - _lazyRender = TweenLiteInternals.lazyRender, - _globals = _gsScope._gsDefine.globals, - _copy = function(vars) { - var copy = {}, p; - for (p in vars) { - copy[p] = vars[p]; - } - return copy; - }, - _applyCycle = function(vars, targets, i) { - var alt = vars.cycle, - p, val; - for (p in alt) { - val = alt[p]; - vars[p] = (typeof(val) === "function") ? val(i, targets[i]) : val[i % val.length]; - } - delete vars.cycle; - }, - _pauseCallback = _internals.pauseCallback = function() {}, - _slice = function(a) { //don't use [].slice because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() - var b = [], - l = a.length, - i; - for (i = 0; i !== l; b.push(a[i++])); - return b; - }, - p = TimelineLite.prototype = new SimpleTimeline(); - - TimelineLite.version = "1.20.2"; - p.constructor = TimelineLite; - p.kill()._gc = p._forcingPlayhead = p._hasPause = false; - - /* might use later... + _gsScope._gsDefine('TimelineLite', ['core.Animation', 'core.SimpleTimeline', 'TweenLite'], function (Animation, SimpleTimeline, TweenLite) { + var TimelineLite = function (vars) { + SimpleTimeline.call(this, vars) + this._labels = {} + this.autoRemoveChildren = (this.vars.autoRemoveChildren === true) + this.smoothChildTiming = (this.vars.smoothChildTiming === true) + this._sortChildren = true + this._onUpdate = this.vars.onUpdate + var v = this.vars, + val, p + for (p in v) { + val = v[p] + if (_isArray(val)) { + if (val.join('').indexOf('{self}') !== -1) { + v[p] = this._swapSelfInParams(val) + } + } + } + if (_isArray(v.tweens)) { + this.add(v.tweens, 0, v.align, v.stagger) + } + }, + _tinyNum = 0.0000000001, + TweenLiteInternals = TweenLite._internals, + _internals = TimelineLite._internals = {}, + _isSelector = TweenLiteInternals.isSelector, + _isArray = TweenLiteInternals.isArray, + _lazyTweens = TweenLiteInternals.lazyTweens, + _lazyRender = TweenLiteInternals.lazyRender, + _globals = _gsScope._gsDefine.globals, + _copy = function (vars) { + var copy = {}, p + for (p in vars) { + copy[p] = vars[p] + } + return copy + }, + _applyCycle = function (vars, targets, i) { + var alt = vars.cycle, + p, val + for (p in alt) { + val = alt[p] + vars[p] = (typeof (val) === 'function') ? val(i, targets[i]) : val[i % val.length] + } + delete vars.cycle + }, + _pauseCallback = _internals.pauseCallback = function () {}, + _slice = function (a) { // don't use [].slice because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() + var b = [], + l = a.length, + i + for (i = 0; i !== l; b.push(a[i++])); + return b + }, + p = TimelineLite.prototype = new SimpleTimeline() + + TimelineLite.version = '1.20.2' + p.constructor = TimelineLite + p.kill()._gc = p._forcingPlayhead = p._hasPause = false + + /* might use later... //translates a local time inside an animation to the corresponding time on the root/global timeline, factoring in all nesting and timeScales. function localToGlobal(time, animation) { while (animation) { @@ -726,914 +746,939 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa } */ - p.to = function(target, duration, vars, position) { - var Engine = (vars.repeat && _globals.TweenMax) || TweenLite; - return duration ? this.add( new Engine(target, duration, vars), position) : this.set(target, vars, position); - }; - - p.from = function(target, duration, vars, position) { - return this.add( ((vars.repeat && _globals.TweenMax) || TweenLite).from(target, duration, vars), position); - }; - - p.fromTo = function(target, duration, fromVars, toVars, position) { - var Engine = (toVars.repeat && _globals.TweenMax) || TweenLite; - return duration ? this.add( Engine.fromTo(target, duration, fromVars, toVars), position) : this.set(target, toVars, position); - }; - - p.staggerTo = function(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - var tl = new TimelineLite({onComplete:onCompleteAll, onCompleteParams:onCompleteAllParams, callbackScope:onCompleteAllScope, smoothChildTiming:this.smoothChildTiming}), - cycle = vars.cycle, - copy, i; - if (typeof(targets) === "string") { - targets = TweenLite.selector(targets) || targets; - } - targets = targets || []; - if (_isSelector(targets)) { //senses if the targets object is a selector. If it is, we should translate it into an array. - targets = _slice(targets); - } - stagger = stagger || 0; - if (stagger < 0) { - targets = _slice(targets); - targets.reverse(); - stagger *= -1; - } - for (i = 0; i < targets.length; i++) { - copy = _copy(vars); - if (copy.startAt) { - copy.startAt = _copy(copy.startAt); - if (copy.startAt.cycle) { - _applyCycle(copy.startAt, targets, i); - } - } - if (cycle) { - _applyCycle(copy, targets, i); - if (copy.duration != null) { - duration = copy.duration; - delete copy.duration; - } - } - tl.to(targets[i], duration, copy, i * stagger); - } - return this.add(tl, position); - }; - - p.staggerFrom = function(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - vars.immediateRender = (vars.immediateRender != false); - vars.runBackwards = true; - return this.staggerTo(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - p.staggerFromTo = function(targets, duration, fromVars, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return this.staggerTo(targets, duration, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - p.call = function(callback, params, scope, position) { - return this.add( TweenLite.delayedCall(0, callback, params, scope), position); - }; - - p.set = function(target, vars, position) { - position = this._parseTimeOrLabel(position, 0, true); - if (vars.immediateRender == null) { - vars.immediateRender = (position === this._time && !this._paused); - } - return this.add( new TweenLite(target, 0, vars), position); - }; - - TimelineLite.exportRoot = function(vars, ignoreDelayedCalls) { - vars = vars || {}; - if (vars.smoothChildTiming == null) { - vars.smoothChildTiming = true; - } - var tl = new TimelineLite(vars), - root = tl._timeline, - tween, next; - if (ignoreDelayedCalls == null) { - ignoreDelayedCalls = true; - } - root._remove(tl, true); - tl._startTime = 0; - tl._rawPrevTime = tl._time = tl._totalTime = root._time; - tween = root._first; - while (tween) { - next = tween._next; - if (!ignoreDelayedCalls || !(tween instanceof TweenLite && tween.target === tween.vars.onComplete)) { - tl.add(tween, tween._startTime - tween._delay); - } - tween = next; - } - root.add(tl, 0); - return tl; - }; - - p.add = function(value, position, align, stagger) { - var curTime, l, i, child, tl, beforeRawTime; - if (typeof(position) !== "number") { - position = this._parseTimeOrLabel(position, 0, true, value); - } - if (!(value instanceof Animation)) { - if ((value instanceof Array) || (value && value.push && _isArray(value))) { - align = align || "normal"; - stagger = stagger || 0; - curTime = position; - l = value.length; - for (i = 0; i < l; i++) { - if (_isArray(child = value[i])) { - child = new TimelineLite({tweens:child}); - } - this.add(child, curTime); - if (typeof(child) !== "string" && typeof(child) !== "function") { - if (align === "sequence") { - curTime = child._startTime + (child.totalDuration() / child._timeScale); - } else if (align === "start") { - child._startTime -= child.delay(); - } - } - curTime += stagger; - } - return this._uncache(true); - } else if (typeof(value) === "string") { - return this.addLabel(value, position); - } else if (typeof(value) === "function") { - value = TweenLite.delayedCall(0, value); - } else { - throw("Cannot add " + value + " into the timeline; it is not a tween, timeline, function, or string."); - } - } - - SimpleTimeline.prototype.add.call(this, value, position); - - if (value._time) { //in case, for example, the _startTime is moved on a tween that has already rendered. Imagine it's at its end state, then the startTime is moved WAY later (after the end of this timeline), it should render at its beginning. - value.render((this.rawTime() - value._startTime) * value._timeScale, false, false); - } - - //if the timeline has already ended but the inserted tween/timeline extends the duration, we should enable this timeline again so that it renders properly. We should also align the playhead with the parent timeline's when appropriate. - if (this._gc || this._time === this._duration) if (!this._paused) if (this._duration < this.duration()) { - //in case any of the ancestors had completed but should now be enabled... - tl = this; - beforeRawTime = (tl.rawTime() > value._startTime); //if the tween is placed on the timeline so that it starts BEFORE the current rawTime, we should align the playhead (move the timeline). This is because sometimes users will create a timeline, let it finish, and much later append a tween and expect it to run instead of jumping to its end state. While technically one could argue that it should jump to its end state, that's not what users intuitively expect. - while (tl._timeline) { - if (beforeRawTime && tl._timeline.smoothChildTiming) { - tl.totalTime(tl._totalTime, true); //moves the timeline (shifts its startTime) if necessary, and also enables it. - } else if (tl._gc) { - tl._enabled(true, false); - } - tl = tl._timeline; - } - } - - return this; - }; - - p.remove = function(value) { - if (value instanceof Animation) { - this._remove(value, false); - var tl = value._timeline = value.vars.useFrames ? Animation._rootFramesTimeline : Animation._rootTimeline; //now that it's removed, default it to the root timeline so that if it gets played again, it doesn't jump back into this timeline. - value._startTime = (value._paused ? value._pauseTime : tl._time) - ((!value._reversed ? value._totalTime : value.totalDuration() - value._totalTime) / value._timeScale); //ensure that if it gets played again, the timing is correct. - return this; - } else if (value instanceof Array || (value && value.push && _isArray(value))) { - var i = value.length; - while (--i > -1) { - this.remove(value[i]); - } - return this; - } else if (typeof(value) === "string") { - return this.removeLabel(value); - } - return this.kill(null, value); - }; - - p._remove = function(tween, skipDisable) { - SimpleTimeline.prototype._remove.call(this, tween, skipDisable); - var last = this._last; - if (!last) { - this._time = this._totalTime = this._duration = this._totalDuration = 0; - } else if (this._time > this.duration()) { - this._time = this._duration; - this._totalTime = this._totalDuration; - } - return this; - }; - - p.append = function(value, offsetOrLabel) { - return this.add(value, this._parseTimeOrLabel(null, offsetOrLabel, true, value)); - }; - - p.insert = p.insertMultiple = function(value, position, align, stagger) { - return this.add(value, position || 0, align, stagger); - }; - - p.appendMultiple = function(tweens, offsetOrLabel, align, stagger) { - return this.add(tweens, this._parseTimeOrLabel(null, offsetOrLabel, true, tweens), align, stagger); - }; - - p.addLabel = function(label, position) { - this._labels[label] = this._parseTimeOrLabel(position); - return this; - }; - - p.addPause = function(position, callback, params, scope) { - var t = TweenLite.delayedCall(0, _pauseCallback, params, scope || this); - t.vars.onComplete = t.vars.onReverseComplete = callback; - t.data = "isPause"; - this._hasPause = true; - return this.add(t, position); - }; - - p.removeLabel = function(label) { - delete this._labels[label]; - return this; - }; - - p.getLabelTime = function(label) { - return (this._labels[label] != null) ? this._labels[label] : -1; - }; - - p._parseTimeOrLabel = function(timeOrLabel, offsetOrLabel, appendIfAbsent, ignore) { - var clippedDuration, i; - //if we're about to add a tween/timeline (or an array of them) that's already a child of this timeline, we should remove it first so that it doesn't contaminate the duration(). - if (ignore instanceof Animation && ignore.timeline === this) { - this.remove(ignore); - } else if (ignore && ((ignore instanceof Array) || (ignore.push && _isArray(ignore)))) { - i = ignore.length; - while (--i > -1) { - if (ignore[i] instanceof Animation && ignore[i].timeline === this) { - this.remove(ignore[i]); - } - } - } - clippedDuration = (this.duration() > 99999999999) ? this.recent().endTime(false) : this._duration; //in case there's a child that infinitely repeats, users almost never intend for the insertion point of a new child to be based on a SUPER long value like that so we clip it and assume the most recently-added child's endTime should be used instead. - if (typeof(offsetOrLabel) === "string") { - return this._parseTimeOrLabel(offsetOrLabel, (appendIfAbsent && typeof(timeOrLabel) === "number" && this._labels[offsetOrLabel] == null) ? timeOrLabel - clippedDuration : 0, appendIfAbsent); - } - offsetOrLabel = offsetOrLabel || 0; - if (typeof(timeOrLabel) === "string" && (isNaN(timeOrLabel) || this._labels[timeOrLabel] != null)) { //if the string is a number like "1", check to see if there's a label with that name, otherwise interpret it as a number (absolute value). - i = timeOrLabel.indexOf("="); - if (i === -1) { - if (this._labels[timeOrLabel] == null) { - return appendIfAbsent ? (this._labels[timeOrLabel] = clippedDuration + offsetOrLabel) : offsetOrLabel; - } - return this._labels[timeOrLabel] + offsetOrLabel; - } - offsetOrLabel = parseInt(timeOrLabel.charAt(i-1) + "1", 10) * Number(timeOrLabel.substr(i+1)); - timeOrLabel = (i > 1) ? this._parseTimeOrLabel(timeOrLabel.substr(0, i-1), 0, appendIfAbsent) : clippedDuration; - } else if (timeOrLabel == null) { - timeOrLabel = clippedDuration; - } - return Number(timeOrLabel) + offsetOrLabel; - }; - - p.seek = function(position, suppressEvents) { - return this.totalTime((typeof(position) === "number") ? position : this._parseTimeOrLabel(position), (suppressEvents !== false)); - }; - - p.stop = function() { - return this.paused(true); - }; - - p.gotoAndPlay = function(position, suppressEvents) { - return this.play(position, suppressEvents); - }; - - p.gotoAndStop = function(position, suppressEvents) { - return this.pause(position, suppressEvents); - }; - - p.render = function(time, suppressEvents, force) { - if (this._gc) { - this._enabled(true, false); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - prevTime = this._time, - prevStart = this._startTime, - prevTimeScale = this._timeScale, - prevPaused = this._paused, - tween, isComplete, next, callback, internalForce, pauseTween, curTime; - if (time >= totalDur - 0.0000001 && time >= 0) { //to work around occasional floating point math artifacts. - this._totalTime = this._time = totalDur; - if (!this._reversed) if (!this._hasPausedChild()) { - isComplete = true; - callback = "onComplete"; - internalForce = !!this._timeline.autoRemoveChildren; //otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. - if (this._duration === 0) if ((time <= 0 && time >= -0.0000001) || this._rawPrevTime < 0 || this._rawPrevTime === _tinyNum) if (this._rawPrevTime !== time && this._first) { - internalForce = true; - if (this._rawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - } - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - time = totalDur + 0.0001; //to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - this._totalTime = this._time = 0; - if (prevTime !== 0 || (this._duration === 0 && this._rawPrevTime !== _tinyNum && (this._rawPrevTime > 0 || (time < 0 && this._rawPrevTime >= 0)))) { - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (this._timeline.autoRemoveChildren && this._reversed) { //ensures proper GC if a timeline is resumed after it's finished reversing. - internalForce = isComplete = true; - callback = "onReverseComplete"; - } else if (this._rawPrevTime >= 0 && this._first) { //when going back beyond the start, force a render so that zero-duration tweens that sit at the very beginning render their start values properly. Otherwise, if the parent timeline's playhead lands exactly at this timeline's startTime, and then moves backwards, the zero-duration tweens at the beginning would still be at their end state. - internalForce = true; - } - this._rawPrevTime = time; - } else { - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - if (time === 0 && isComplete) { //if there's a zero-duration tween at the very beginning of a timeline and the playhead lands EXACTLY at time 0, that tween will correctly render its end values, but we need to keep the timeline alive for one more render so that the beginning values render properly as the parent's playhead keeps moving beyond the begining. Imagine obj.x starts at 0 and then we do tl.set(obj, {x:100}).to(obj, 1, {x:200}) and then later we tl.reverse()...the goal is to have obj.x revert to 0. If the playhead happens to land on exactly 0, without this chunk of code, it'd complete the timeline and remove it from the rendering queue (not good). - tween = this._first; - while (tween && tween._startTime === 0) { - if (!tween._duration) { - isComplete = false; - } - tween = tween._next; - } - } - time = 0; //to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) - if (!this._initted) { - internalForce = true; - } - } - - } else { - - if (this._hasPause && !this._forcingPlayhead && !suppressEvents) { - if (time >= prevTime) { - tween = this._first; - while (tween && tween._startTime <= time && !pauseTween) { - if (!tween._duration) if (tween.data === "isPause" && !tween.ratio && !(tween._startTime === 0 && this._rawPrevTime === 0)) { - pauseTween = tween; - } - tween = tween._next; - } - } else { - tween = this._last; - while (tween && tween._startTime >= time && !pauseTween) { - if (!tween._duration) if (tween.data === "isPause" && tween._rawPrevTime > 0) { - pauseTween = tween; - } - tween = tween._prev; - } - } - if (pauseTween) { - this._time = time = pauseTween._startTime; - this._totalTime = time + (this._cycle * (this._totalDuration + this._repeatDelay)); - } - } - - this._totalTime = this._time = this._rawPrevTime = time; - } - if ((this._time === prevTime || !this._first) && !force && !internalForce && !pauseTween) { - return; - } else if (!this._initted) { - this._initted = true; - } - - if (!this._active) if (!this._paused && this._time !== prevTime && time > 0) { - this._active = true; //so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. - } - - if (prevTime === 0) if (this.vars.onStart) if (this._time !== 0 || !this._duration) if (!suppressEvents) { - this._callback("onStart"); - } - - curTime = this._time; - if (curTime >= prevTime) { - tween = this._first; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (curTime !== this._time || (this._paused && !prevPaused)) { //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete - break; - } else if (tween._active || (tween._startTime <= curTime && !tween._paused && !tween._gc)) { - if (pauseTween === tween) { - this.pause(); - } - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } else { - tween = this._last; - while (tween) { - next = tween._prev; //record it here because the value could change after rendering... - if (curTime !== this._time || (this._paused && !prevPaused)) { //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete - break; - } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { - if (pauseTween === tween) { - pauseTween = tween._prev; //the linked list is organized by _startTime, thus it's possible that a tween could start BEFORE the pause and end after it, in which case it would be positioned before the pause tween in the linked list, but we should render it before we pause() the timeline and cease rendering. This is only a concern when going in reverse. - while (pauseTween && pauseTween.endTime() > this._time) { - pauseTween.render( (pauseTween._reversed ? pauseTween.totalDuration() - ((time - pauseTween._startTime) * pauseTween._timeScale) : (time - pauseTween._startTime) * pauseTween._timeScale), suppressEvents, force); - pauseTween = pauseTween._prev; - } - pauseTween = null; - this.pause(); - } - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } - - if (this._onUpdate) if (!suppressEvents) { - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onUpdate on a timeline that reports/checks tweened values. - _lazyRender(); - } - this._callback("onUpdate"); - } - - if (callback) if (!this._gc) if (prevStart === this._startTime || prevTimeScale !== this._timeScale) if (this._time === 0 || totalDur >= this.totalDuration()) { //if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate - if (isComplete) { - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onComplete on a timeline that reports/checks tweened values. - _lazyRender(); - } - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this._callback(callback); - } - } - }; - - p._hasPausedChild = function() { - var tween = this._first; - while (tween) { - if (tween._paused || ((tween instanceof TimelineLite) && tween._hasPausedChild())) { - return true; - } - tween = tween._next; - } - return false; - }; - - p.getChildren = function(nested, tweens, timelines, ignoreBeforeTime) { - ignoreBeforeTime = ignoreBeforeTime || -9999999999; - var a = [], - tween = this._first, - cnt = 0; - while (tween) { - if (tween._startTime < ignoreBeforeTime) { - //do nothing - } else if (tween instanceof TweenLite) { - if (tweens !== false) { - a[cnt++] = tween; - } - } else { - if (timelines !== false) { - a[cnt++] = tween; - } - if (nested !== false) { - a = a.concat(tween.getChildren(true, tweens, timelines)); - cnt = a.length; - } - } - tween = tween._next; - } - return a; - }; - - p.getTweensOf = function(target, nested) { - var disabled = this._gc, - a = [], - cnt = 0, - tweens, i; - if (disabled) { - this._enabled(true, true); //getTweensOf() filters out disabled tweens, and we have to mark them as _gc = true when the timeline completes in order to allow clean garbage collection, so temporarily re-enable the timeline here. - } - tweens = TweenLite.getTweensOf(target); - i = tweens.length; - while (--i > -1) { - if (tweens[i].timeline === this || (nested && this._contains(tweens[i]))) { - a[cnt++] = tweens[i]; - } - } - if (disabled) { - this._enabled(false, true); - } - return a; - }; - - p.recent = function() { - return this._recent; - }; - - p._contains = function(tween) { - var tl = tween.timeline; - while (tl) { - if (tl === this) { - return true; - } - tl = tl.timeline; - } - return false; - }; - - p.shiftChildren = function(amount, adjustLabels, ignoreBeforeTime) { - ignoreBeforeTime = ignoreBeforeTime || 0; - var tween = this._first, - labels = this._labels, - p; - while (tween) { - if (tween._startTime >= ignoreBeforeTime) { - tween._startTime += amount; - } - tween = tween._next; - } - if (adjustLabels) { - for (p in labels) { - if (labels[p] >= ignoreBeforeTime) { - labels[p] += amount; - } - } - } - return this._uncache(true); - }; - - p._kill = function(vars, target) { - if (!vars && !target) { - return this._enabled(false, false); - } - var tweens = (!target) ? this.getChildren(true, true, false) : this.getTweensOf(target), - i = tweens.length, - changed = false; - while (--i > -1) { - if (tweens[i]._kill(vars, target)) { - changed = true; - } - } - return changed; - }; - - p.clear = function(labels) { - var tweens = this.getChildren(false, true, true), - i = tweens.length; - this._time = this._totalTime = 0; - while (--i > -1) { - tweens[i]._enabled(false, false); - } - if (labels !== false) { - this._labels = {}; - } - return this._uncache(true); - }; - - p.invalidate = function() { - var tween = this._first; - while (tween) { - tween.invalidate(); - tween = tween._next; - } - return Animation.prototype.invalidate.call(this);; - }; - - p._enabled = function(enabled, ignoreTimeline) { - if (enabled === this._gc) { - var tween = this._first; - while (tween) { - tween._enabled(enabled, true); - tween = tween._next; - } - } - return SimpleTimeline.prototype._enabled.call(this, enabled, ignoreTimeline); - }; - - p.totalTime = function(time, suppressEvents, uncapped) { - this._forcingPlayhead = true; - var val = Animation.prototype.totalTime.apply(this, arguments); - this._forcingPlayhead = false; - return val; - }; - - p.duration = function(value) { - if (!arguments.length) { - if (this._dirty) { - this.totalDuration(); //just triggers recalculation - } - return this._duration; - } - if (this.duration() !== 0 && value !== 0) { - this.timeScale(this._duration / value); - } - return this; - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - var max = 0, - tween = this._last, - prevStart = 999999999999, - prev, end; - while (tween) { - prev = tween._prev; //record it here in case the tween changes position in the sequence... - if (tween._dirty) { - tween.totalDuration(); //could change the tween._startTime, so make sure the tween's cache is clean before analyzing it. - } - if (tween._startTime > prevStart && this._sortChildren && !tween._paused) { //in case one of the tweens shifted out of order, it needs to be re-inserted into the correct position in the sequence - this.add(tween, tween._startTime - tween._delay); - } else { - prevStart = tween._startTime; - } - if (tween._startTime < 0 && !tween._paused) { //children aren't allowed to have negative startTimes unless smoothChildTiming is true, so adjust here if one is found. - max -= tween._startTime; - if (this._timeline.smoothChildTiming) { - this._startTime += tween._startTime / this._timeScale; - } - this.shiftChildren(-tween._startTime, false, -9999999999); - prevStart = 0; - } - end = tween._startTime + (tween._totalDuration / tween._timeScale); - if (end > max) { - max = end; - } - tween = prev; - } - this._duration = this._totalDuration = max; - this._dirty = false; - } - return this._totalDuration; - } - return (value && this.totalDuration()) ? this.timeScale(this._totalDuration / value) : this; - }; - - p.paused = function(value) { - if (!value) { //if there's a pause directly at the spot from where we're unpausing, skip it. - var tween = this._first, - time = this._time; - while (tween) { - if (tween._startTime === time && tween.data === "isPause") { - tween._rawPrevTime = 0; //remember, _rawPrevTime is how zero-duration tweens/callbacks sense directionality and determine whether or not to fire. If _rawPrevTime is the same as _startTime on the next render, it won't fire. - } - tween = tween._next; - } - } - return Animation.prototype.paused.apply(this, arguments); - }; - - p.usesFrames = function() { - var tl = this._timeline; - while (tl._timeline) { - tl = tl._timeline; - } - return (tl === Animation._rootFramesTimeline); - }; - - p.rawTime = function(wrapRepeats) { - return (wrapRepeats && (this._paused || (this._repeat && this.time() > 0 && this.totalProgress() < 1))) ? this._totalTime % (this._duration + this._repeatDelay) : this._paused ? this._totalTime : (this._timeline.rawTime(wrapRepeats) - this._startTime) * this._timeScale; - }; - - return TimelineLite; - - }, true); - - - - - - - - - - - - - -/* + p.to = function (target, duration, vars, position) { + var Engine = (vars.repeat && _globals.TweenMax) || TweenLite + return duration ? this.add(new Engine(target, duration, vars), position) : this.set(target, vars, position) + } + + p.from = function (target, duration, vars, position) { + return this.add(((vars.repeat && _globals.TweenMax) || TweenLite).from(target, duration, vars), position) + } + + p.fromTo = function (target, duration, fromVars, toVars, position) { + var Engine = (toVars.repeat && _globals.TweenMax) || TweenLite + return duration ? this.add(Engine.fromTo(target, duration, fromVars, toVars), position) : this.set(target, toVars, position) + } + + p.staggerTo = function (targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + var tl = new TimelineLite({onComplete: onCompleteAll, onCompleteParams: onCompleteAllParams, callbackScope: onCompleteAllScope, smoothChildTiming: this.smoothChildTiming}), + cycle = vars.cycle, + copy, i + if (typeof (targets) === 'string') { + targets = TweenLite.selector(targets) || targets + } + targets = targets || [] + if (_isSelector(targets)) { // senses if the targets object is a selector. If it is, we should translate it into an array. + targets = _slice(targets) + } + stagger = stagger || 0 + if (stagger < 0) { + targets = _slice(targets) + targets.reverse() + stagger *= -1 + } + for (i = 0; i < targets.length; i++) { + copy = _copy(vars) + if (copy.startAt) { + copy.startAt = _copy(copy.startAt) + if (copy.startAt.cycle) { + _applyCycle(copy.startAt, targets, i) + } + } + if (cycle) { + _applyCycle(copy, targets, i) + if (copy.duration != null) { + duration = copy.duration + delete copy.duration + } + } + tl.to(targets[i], duration, copy, i * stagger) + } + return this.add(tl, position) + } + + p.staggerFrom = function (targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + vars.immediateRender = (vars.immediateRender != false) + vars.runBackwards = true + return this.staggerTo(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) + } + + p.staggerFromTo = function (targets, duration, fromVars, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { + toVars.startAt = fromVars + toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false) + return this.staggerTo(targets, duration, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) + } + + p.call = function (callback, params, scope, position) { + return this.add(TweenLite.delayedCall(0, callback, params, scope), position) + } + + p.set = function (target, vars, position) { + position = this._parseTimeOrLabel(position, 0, true) + if (vars.immediateRender == null) { + vars.immediateRender = (position === this._time && !this._paused) + } + return this.add(new TweenLite(target, 0, vars), position) + } + + TimelineLite.exportRoot = function (vars, ignoreDelayedCalls) { + vars = vars || {} + if (vars.smoothChildTiming == null) { + vars.smoothChildTiming = true + } + var tl = new TimelineLite(vars), + root = tl._timeline, + tween, next + if (ignoreDelayedCalls == null) { + ignoreDelayedCalls = true + } + root._remove(tl, true) + tl._startTime = 0 + tl._rawPrevTime = tl._time = tl._totalTime = root._time + tween = root._first + while (tween) { + next = tween._next + if (!ignoreDelayedCalls || !(tween instanceof TweenLite && tween.target === tween.vars.onComplete)) { + tl.add(tween, tween._startTime - tween._delay) + } + tween = next + } + root.add(tl, 0) + return tl + } + + p.add = function (value, position, align, stagger) { + var curTime, l, i, child, tl, beforeRawTime + if (typeof (position) !== 'number') { + position = this._parseTimeOrLabel(position, 0, true, value) + } + if (!(value instanceof Animation)) { + if ((value instanceof Array) || (value && value.push && _isArray(value))) { + align = align || 'normal' + stagger = stagger || 0 + curTime = position + l = value.length + for (i = 0; i < l; i++) { + if (_isArray(child = value[i])) { + child = new TimelineLite({tweens: child}) + } + this.add(child, curTime) + if (typeof (child) !== 'string' && typeof (child) !== 'function') { + if (align === 'sequence') { + curTime = child._startTime + (child.totalDuration() / child._timeScale) + } else if (align === 'start') { + child._startTime -= child.delay() + } + } + curTime += stagger + } + return this._uncache(true) + } else if (typeof (value) === 'string') { + return this.addLabel(value, position) + } else if (typeof (value) === 'function') { + value = TweenLite.delayedCall(0, value) + } else { + throw ('Cannot add ' + value + ' into the timeline; it is not a tween, timeline, function, or string.') + } + } + + SimpleTimeline.prototype.add.call(this, value, position) + + if (value._time) { // in case, for example, the _startTime is moved on a tween that has already rendered. Imagine it's at its end state, then the startTime is moved WAY later (after the end of this timeline), it should render at its beginning. + value.render((this.rawTime() - value._startTime) * value._timeScale, false, false) + } + + // if the timeline has already ended but the inserted tween/timeline extends the duration, we should enable this timeline again so that it renders properly. We should also align the playhead with the parent timeline's when appropriate. + if (this._gc || this._time === this._duration) { + if (!this._paused) { + if (this._duration < this.duration()) { + // in case any of the ancestors had completed but should now be enabled... + tl = this + beforeRawTime = (tl.rawTime() > value._startTime) // if the tween is placed on the timeline so that it starts BEFORE the current rawTime, we should align the playhead (move the timeline). This is because sometimes users will create a timeline, let it finish, and much later append a tween and expect it to run instead of jumping to its end state. While technically one could argue that it should jump to its end state, that's not what users intuitively expect. + while (tl._timeline) { + if (beforeRawTime && tl._timeline.smoothChildTiming) { + tl.totalTime(tl._totalTime, true) // moves the timeline (shifts its startTime) if necessary, and also enables it. + } else if (tl._gc) { + tl._enabled(true, false) + } + tl = tl._timeline + } + } + } + } + + return this + } + + p.remove = function (value) { + if (value instanceof Animation) { + this._remove(value, false) + var tl = value._timeline = value.vars.useFrames ? Animation._rootFramesTimeline : Animation._rootTimeline // now that it's removed, default it to the root timeline so that if it gets played again, it doesn't jump back into this timeline. + value._startTime = (value._paused ? value._pauseTime : tl._time) - ((!value._reversed ? value._totalTime : value.totalDuration() - value._totalTime) / value._timeScale) // ensure that if it gets played again, the timing is correct. + return this + } else if (value instanceof Array || (value && value.push && _isArray(value))) { + var i = value.length + while (--i > -1) { + this.remove(value[i]) + } + return this + } else if (typeof (value) === 'string') { + return this.removeLabel(value) + } + return this.kill(null, value) + } + + p._remove = function (tween, skipDisable) { + SimpleTimeline.prototype._remove.call(this, tween, skipDisable) + var last = this._last + if (!last) { + this._time = this._totalTime = this._duration = this._totalDuration = 0 + } else if (this._time > this.duration()) { + this._time = this._duration + this._totalTime = this._totalDuration + } + return this + } + + p.append = function (value, offsetOrLabel) { + return this.add(value, this._parseTimeOrLabel(null, offsetOrLabel, true, value)) + } + + p.insert = p.insertMultiple = function (value, position, align, stagger) { + return this.add(value, position || 0, align, stagger) + } + + p.appendMultiple = function (tweens, offsetOrLabel, align, stagger) { + return this.add(tweens, this._parseTimeOrLabel(null, offsetOrLabel, true, tweens), align, stagger) + } + + p.addLabel = function (label, position) { + this._labels[label] = this._parseTimeOrLabel(position) + return this + } + + p.addPause = function (position, callback, params, scope) { + var t = TweenLite.delayedCall(0, _pauseCallback, params, scope || this) + t.vars.onComplete = t.vars.onReverseComplete = callback + t.data = 'isPause' + this._hasPause = true + return this.add(t, position) + } + + p.removeLabel = function (label) { + delete this._labels[label] + return this + } + + p.getLabelTime = function (label) { + return (this._labels[label] != null) ? this._labels[label] : -1 + } + + p._parseTimeOrLabel = function (timeOrLabel, offsetOrLabel, appendIfAbsent, ignore) { + var clippedDuration, i + // if we're about to add a tween/timeline (or an array of them) that's already a child of this timeline, we should remove it first so that it doesn't contaminate the duration(). + if (ignore instanceof Animation && ignore.timeline === this) { + this.remove(ignore) + } else if (ignore && ((ignore instanceof Array) || (ignore.push && _isArray(ignore)))) { + i = ignore.length + while (--i > -1) { + if (ignore[i] instanceof Animation && ignore[i].timeline === this) { + this.remove(ignore[i]) + } + } + } + clippedDuration = (this.duration() > 99999999999) ? this.recent().endTime(false) : this._duration // in case there's a child that infinitely repeats, users almost never intend for the insertion point of a new child to be based on a SUPER long value like that so we clip it and assume the most recently-added child's endTime should be used instead. + if (typeof (offsetOrLabel) === 'string') { + return this._parseTimeOrLabel(offsetOrLabel, (appendIfAbsent && typeof (timeOrLabel) === 'number' && this._labels[offsetOrLabel] == null) ? timeOrLabel - clippedDuration : 0, appendIfAbsent) + } + offsetOrLabel = offsetOrLabel || 0 + if (typeof (timeOrLabel) === 'string' && (isNaN(timeOrLabel) || this._labels[timeOrLabel] != null)) { // if the string is a number like "1", check to see if there's a label with that name, otherwise interpret it as a number (absolute value). + i = timeOrLabel.indexOf('=') + if (i === -1) { + if (this._labels[timeOrLabel] == null) { + return appendIfAbsent ? (this._labels[timeOrLabel] = clippedDuration + offsetOrLabel) : offsetOrLabel + } + return this._labels[timeOrLabel] + offsetOrLabel + } + offsetOrLabel = parseInt(timeOrLabel.charAt(i - 1) + '1', 10) * Number(timeOrLabel.substr(i + 1)) + timeOrLabel = (i > 1) ? this._parseTimeOrLabel(timeOrLabel.substr(0, i - 1), 0, appendIfAbsent) : clippedDuration + } else if (timeOrLabel == null) { + timeOrLabel = clippedDuration + } + return Number(timeOrLabel) + offsetOrLabel + } + + p.seek = function (position, suppressEvents) { + return this.totalTime((typeof (position) === 'number') ? position : this._parseTimeOrLabel(position), (suppressEvents !== false)) + } + + p.stop = function () { + return this.paused(true) + } + + p.gotoAndPlay = function (position, suppressEvents) { + return this.play(position, suppressEvents) + } + + p.gotoAndStop = function (position, suppressEvents) { + return this.pause(position, suppressEvents) + } + + p.render = function (time, suppressEvents, force) { + if (this._gc) { + this._enabled(true, false) + } + var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), + prevTime = this._time, + prevStart = this._startTime, + prevTimeScale = this._timeScale, + prevPaused = this._paused, + tween, isComplete, next, callback, internalForce, pauseTween, curTime + if (time >= totalDur - 0.0000001 && time >= 0) { // to work around occasional floating point math artifacts. + this._totalTime = this._time = totalDur + if (!this._reversed) { + if (!this._hasPausedChild()) { + isComplete = true + callback = 'onComplete' + internalForce = !!this._timeline.autoRemoveChildren // otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. + if (this._duration === 0) { + if ((time <= 0 && time >= -0.0000001) || this._rawPrevTime < 0 || this._rawPrevTime === _tinyNum) { + if (this._rawPrevTime !== time && this._first) { + internalForce = true + if (this._rawPrevTime > _tinyNum) { + callback = 'onReverseComplete' + } + } + } + } + } + } + this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + time = totalDur + 0.0001 // to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. + } else if (time < 0.0000001) { // to work around occasional floating point math artifacts, round super small values to 0. + this._totalTime = this._time = 0 + if (prevTime !== 0 || (this._duration === 0 && this._rawPrevTime !== _tinyNum && (this._rawPrevTime > 0 || (time < 0 && this._rawPrevTime >= 0)))) { + callback = 'onReverseComplete' + isComplete = this._reversed + } + if (time < 0) { + this._active = false + if (this._timeline.autoRemoveChildren && this._reversed) { // ensures proper GC if a timeline is resumed after it's finished reversing. + internalForce = isComplete = true + callback = 'onReverseComplete' + } else if (this._rawPrevTime >= 0 && this._first) { // when going back beyond the start, force a render so that zero-duration tweens that sit at the very beginning render their start values properly. Otherwise, if the parent timeline's playhead lands exactly at this timeline's startTime, and then moves backwards, the zero-duration tweens at the beginning would still be at their end state. + internalForce = true + } + this._rawPrevTime = time + } else { + this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + if (time === 0 && isComplete) { // if there's a zero-duration tween at the very beginning of a timeline and the playhead lands EXACTLY at time 0, that tween will correctly render its end values, but we need to keep the timeline alive for one more render so that the beginning values render properly as the parent's playhead keeps moving beyond the begining. Imagine obj.x starts at 0 and then we do tl.set(obj, {x:100}).to(obj, 1, {x:200}) and then later we tl.reverse()...the goal is to have obj.x revert to 0. If the playhead happens to land on exactly 0, without this chunk of code, it'd complete the timeline and remove it from the rendering queue (not good). + tween = this._first + while (tween && tween._startTime === 0) { + if (!tween._duration) { + isComplete = false + } + tween = tween._next + } + } + time = 0 // to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) + if (!this._initted) { + internalForce = true + } + } + } else { + if (this._hasPause && !this._forcingPlayhead && !suppressEvents) { + if (time >= prevTime) { + tween = this._first + while (tween && tween._startTime <= time && !pauseTween) { + if (!tween._duration) { + if (tween.data === 'isPause' && !tween.ratio && !(tween._startTime === 0 && this._rawPrevTime === 0)) { + pauseTween = tween + } + } + tween = tween._next + } + } else { + tween = this._last + while (tween && tween._startTime >= time && !pauseTween) { + if (!tween._duration) { + if (tween.data === 'isPause' && tween._rawPrevTime > 0) { + pauseTween = tween + } + } + tween = tween._prev + } + } + if (pauseTween) { + this._time = time = pauseTween._startTime + this._totalTime = time + (this._cycle * (this._totalDuration + this._repeatDelay)) + } + } + + this._totalTime = this._time = this._rawPrevTime = time + } + if ((this._time === prevTime || !this._first) && !force && !internalForce && !pauseTween) { + return + } else if (!this._initted) { + this._initted = true + } + + if (!this._active) { + if (!this._paused && this._time !== prevTime && time > 0) { + this._active = true // so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. + } + } + + if (prevTime === 0) { + if (this.vars.onStart) { + if (this._time !== 0 || !this._duration) { + if (!suppressEvents) { + this._callback('onStart') + } + } + } + } + + curTime = this._time + if (curTime >= prevTime) { + tween = this._first + while (tween) { + next = tween._next // record it here because the value could change after rendering... + if (curTime !== this._time || (this._paused && !prevPaused)) { // in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete + break + } else if (tween._active || (tween._startTime <= curTime && !tween._paused && !tween._gc)) { + if (pauseTween === tween) { + this.pause() + } + if (!tween._reversed) { + tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force) + } else { + tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force) + } + } + tween = next + } + } else { + tween = this._last + while (tween) { + next = tween._prev // record it here because the value could change after rendering... + if (curTime !== this._time || (this._paused && !prevPaused)) { // in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete + break + } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { + if (pauseTween === tween) { + pauseTween = tween._prev // the linked list is organized by _startTime, thus it's possible that a tween could start BEFORE the pause and end after it, in which case it would be positioned before the pause tween in the linked list, but we should render it before we pause() the timeline and cease rendering. This is only a concern when going in reverse. + while (pauseTween && pauseTween.endTime() > this._time) { + pauseTween.render((pauseTween._reversed ? pauseTween.totalDuration() - ((time - pauseTween._startTime) * pauseTween._timeScale) : (time - pauseTween._startTime) * pauseTween._timeScale), suppressEvents, force) + pauseTween = pauseTween._prev + } + pauseTween = null + this.pause() + } + if (!tween._reversed) { + tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force) + } else { + tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force) + } + } + tween = next + } + } + + if (this._onUpdate) { + if (!suppressEvents) { + if (_lazyTweens.length) { // in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onUpdate on a timeline that reports/checks tweened values. + _lazyRender() + } + this._callback('onUpdate') + } + } + + if (callback) { + if (!this._gc) { + if (prevStart === this._startTime || prevTimeScale !== this._timeScale) { + if (this._time === 0 || totalDur >= this.totalDuration()) { // if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate + if (isComplete) { + if (_lazyTweens.length) { // in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onComplete on a timeline that reports/checks tweened values. + _lazyRender() + } + if (this._timeline.autoRemoveChildren) { + this._enabled(false, false) + } + this._active = false + } + if (!suppressEvents && this.vars[callback]) { + this._callback(callback) + } + } + } + } + } + } + + p._hasPausedChild = function () { + var tween = this._first + while (tween) { + if (tween._paused || ((tween instanceof TimelineLite) && tween._hasPausedChild())) { + return true + } + tween = tween._next + } + return false + } + + p.getChildren = function (nested, tweens, timelines, ignoreBeforeTime) { + ignoreBeforeTime = ignoreBeforeTime || -9999999999 + var a = [], + tween = this._first, + cnt = 0 + while (tween) { + if (tween._startTime < ignoreBeforeTime) { + // do nothing + } else if (tween instanceof TweenLite) { + if (tweens !== false) { + a[cnt++] = tween + } + } else { + if (timelines !== false) { + a[cnt++] = tween + } + if (nested !== false) { + a = a.concat(tween.getChildren(true, tweens, timelines)) + cnt = a.length + } + } + tween = tween._next + } + return a + } + + p.getTweensOf = function (target, nested) { + var disabled = this._gc, + a = [], + cnt = 0, + tweens, i + if (disabled) { + this._enabled(true, true) // getTweensOf() filters out disabled tweens, and we have to mark them as _gc = true when the timeline completes in order to allow clean garbage collection, so temporarily re-enable the timeline here. + } + tweens = TweenLite.getTweensOf(target) + i = tweens.length + while (--i > -1) { + if (tweens[i].timeline === this || (nested && this._contains(tweens[i]))) { + a[cnt++] = tweens[i] + } + } + if (disabled) { + this._enabled(false, true) + } + return a + } + + p.recent = function () { + return this._recent + } + + p._contains = function (tween) { + var tl = tween.timeline + while (tl) { + if (tl === this) { + return true + } + tl = tl.timeline + } + return false + } + + p.shiftChildren = function (amount, adjustLabels, ignoreBeforeTime) { + ignoreBeforeTime = ignoreBeforeTime || 0 + var tween = this._first, + labels = this._labels, + p + while (tween) { + if (tween._startTime >= ignoreBeforeTime) { + tween._startTime += amount + } + tween = tween._next + } + if (adjustLabels) { + for (p in labels) { + if (labels[p] >= ignoreBeforeTime) { + labels[p] += amount + } + } + } + return this._uncache(true) + } + + p._kill = function (vars, target) { + if (!vars && !target) { + return this._enabled(false, false) + } + var tweens = (!target) ? this.getChildren(true, true, false) : this.getTweensOf(target), + i = tweens.length, + changed = false + while (--i > -1) { + if (tweens[i]._kill(vars, target)) { + changed = true + } + } + return changed + } + + p.clear = function (labels) { + var tweens = this.getChildren(false, true, true), + i = tweens.length + this._time = this._totalTime = 0 + while (--i > -1) { + tweens[i]._enabled(false, false) + } + if (labels !== false) { + this._labels = {} + } + return this._uncache(true) + } + + p.invalidate = function () { + var tween = this._first + while (tween) { + tween.invalidate() + tween = tween._next + } + return Animation.prototype.invalidate.call(this) + } + + p._enabled = function (enabled, ignoreTimeline) { + if (enabled === this._gc) { + var tween = this._first + while (tween) { + tween._enabled(enabled, true) + tween = tween._next + } + } + return SimpleTimeline.prototype._enabled.call(this, enabled, ignoreTimeline) + } + + p.totalTime = function (time, suppressEvents, uncapped) { + this._forcingPlayhead = true + var val = Animation.prototype.totalTime.apply(this, arguments) + this._forcingPlayhead = false + return val + } + + p.duration = function (value) { + if (!arguments.length) { + if (this._dirty) { + this.totalDuration() // just triggers recalculation + } + return this._duration + } + if (this.duration() !== 0 && value !== 0) { + this.timeScale(this._duration / value) + } + return this + } + + p.totalDuration = function (value) { + if (!arguments.length) { + if (this._dirty) { + var max = 0, + tween = this._last, + prevStart = 999999999999, + prev, end + while (tween) { + prev = tween._prev // record it here in case the tween changes position in the sequence... + if (tween._dirty) { + tween.totalDuration() // could change the tween._startTime, so make sure the tween's cache is clean before analyzing it. + } + if (tween._startTime > prevStart && this._sortChildren && !tween._paused) { // in case one of the tweens shifted out of order, it needs to be re-inserted into the correct position in the sequence + this.add(tween, tween._startTime - tween._delay) + } else { + prevStart = tween._startTime + } + if (tween._startTime < 0 && !tween._paused) { // children aren't allowed to have negative startTimes unless smoothChildTiming is true, so adjust here if one is found. + max -= tween._startTime + if (this._timeline.smoothChildTiming) { + this._startTime += tween._startTime / this._timeScale + } + this.shiftChildren(-tween._startTime, false, -9999999999) + prevStart = 0 + } + end = tween._startTime + (tween._totalDuration / tween._timeScale) + if (end > max) { + max = end + } + tween = prev + } + this._duration = this._totalDuration = max + this._dirty = false + } + return this._totalDuration + } + return (value && this.totalDuration()) ? this.timeScale(this._totalDuration / value) : this + } + + p.paused = function (value) { + if (!value) { // if there's a pause directly at the spot from where we're unpausing, skip it. + var tween = this._first, + time = this._time + while (tween) { + if (tween._startTime === time && tween.data === 'isPause') { + tween._rawPrevTime = 0 // remember, _rawPrevTime is how zero-duration tweens/callbacks sense directionality and determine whether or not to fire. If _rawPrevTime is the same as _startTime on the next render, it won't fire. + } + tween = tween._next + } + } + return Animation.prototype.paused.apply(this, arguments) + } + + p.usesFrames = function () { + var tl = this._timeline + while (tl._timeline) { + tl = tl._timeline + } + return (tl === Animation._rootFramesTimeline) + } + + p.rawTime = function (wrapRepeats) { + return (wrapRepeats && (this._paused || (this._repeat && this.time() > 0 && this.totalProgress() < 1))) ? this._totalTime % (this._duration + this._repeatDelay) : this._paused ? this._totalTime : (this._timeline.rawTime(wrapRepeats) - this._startTime) * this._timeScale + } + + return TimelineLite + }, true) + + /* * ---------------------------------------------------------------- * TimelineMax * ---------------------------------------------------------------- */ - _gsScope._gsDefine("TimelineMax", ["TimelineLite","TweenLite","easing.Ease"], function(TimelineLite, TweenLite, Ease) { - - var TimelineMax = function(vars) { - TimelineLite.call(this, vars); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._cycle = 0; - this._yoyo = (this.vars.yoyo === true); - this._dirty = true; - }, - _tinyNum = 0.0000000001, - TweenLiteInternals = TweenLite._internals, - _lazyTweens = TweenLiteInternals.lazyTweens, - _lazyRender = TweenLiteInternals.lazyRender, - _globals = _gsScope._gsDefine.globals, - _easeNone = new Ease(null, null, 1, 0), - p = TimelineMax.prototype = new TimelineLite(); - - p.constructor = TimelineMax; - p.kill()._gc = false; - TimelineMax.version = "1.20.2"; - - p.invalidate = function() { - this._yoyo = (this.vars.yoyo === true); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._uncache(true); - return TimelineLite.prototype.invalidate.call(this); - }; - - p.addCallback = function(callback, position, params, scope) { - return this.add( TweenLite.delayedCall(0, callback, params, scope), position); - }; - - p.removeCallback = function(callback, position) { - if (callback) { - if (position == null) { - this._kill(null, callback); - } else { - var a = this.getTweensOf(callback, false), - i = a.length, - time = this._parseTimeOrLabel(position); - while (--i > -1) { - if (a[i]._startTime === time) { - a[i]._enabled(false, false); - } - } - } - } - return this; - }; - - p.removePause = function(position) { - return this.removeCallback(TimelineLite._internals.pauseCallback, position); - }; - - p.tweenTo = function(position, vars) { - vars = vars || {}; - var copy = {ease:_easeNone, useFrames:this.usesFrames(), immediateRender:false}, - Engine = (vars.repeat && _globals.TweenMax) || TweenLite, - duration, p, t; - for (p in vars) { - copy[p] = vars[p]; - } - copy.time = this._parseTimeOrLabel(position); - duration = (Math.abs(Number(copy.time) - this._time) / this._timeScale) || 0.001; - t = new Engine(this, duration, copy); - copy.onStart = function() { - t.target.paused(true); - if (t.vars.time !== t.target.time() && duration === t.duration()) { //don't make the duration zero - if it's supposed to be zero, don't worry because it's already initting the tween and will complete immediately, effectively making the duration zero anyway. If we make duration zero, the tween won't run at all. - t.duration( Math.abs( t.vars.time - t.target.time()) / t.target._timeScale ); - } - if (vars.onStart) { //in case the user had an onStart in the vars - we don't want to overwrite it. - vars.onStart.apply(vars.onStartScope || vars.callbackScope || t, vars.onStartParams || []); //don't use t._callback("onStart") or it'll point to the copy.onStart and we'll get a recursion error. - } - }; - return t; - }; - - p.tweenFromTo = function(fromPosition, toPosition, vars) { - vars = vars || {}; - fromPosition = this._parseTimeOrLabel(fromPosition); - vars.startAt = {onComplete:this.seek, onCompleteParams:[fromPosition], callbackScope:this}; - vars.immediateRender = (vars.immediateRender !== false); - var t = this.tweenTo(toPosition, vars); - return t.duration((Math.abs( t.vars.time - fromPosition) / this._timeScale) || 0.001); - }; - - p.render = function(time, suppressEvents, force) { - if (this._gc) { - this._enabled(true, false); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - dur = this._duration, - prevTime = this._time, - prevTotalTime = this._totalTime, - prevStart = this._startTime, - prevTimeScale = this._timeScale, - prevRawPrevTime = this._rawPrevTime, - prevPaused = this._paused, - prevCycle = this._cycle, - tween, isComplete, next, callback, internalForce, cycleDuration, pauseTween, curTime; - if (time >= totalDur - 0.0000001 && time >= 0) { //to work around occasional floating point math artifacts. - if (!this._locked) { - this._totalTime = totalDur; - this._cycle = this._repeat; - } - if (!this._reversed) if (!this._hasPausedChild()) { - isComplete = true; - callback = "onComplete"; - internalForce = !!this._timeline.autoRemoveChildren; //otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. - if (this._duration === 0) if ((time <= 0 && time >= -0.0000001) || prevRawPrevTime < 0 || prevRawPrevTime === _tinyNum) if (prevRawPrevTime !== time && this._first) { - internalForce = true; - if (prevRawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - } - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - if (this._yoyo && (this._cycle & 1) !== 0) { - this._time = time = 0; - } else { - this._time = dur; - time = dur + 0.0001; //to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. We cannot do less then 0.0001 because the same issue can occur when the duration is extremely large like 999999999999 in which case adding 0.00000001, for example, causes it to act like nothing was added. - } - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - if (!this._locked) { - this._totalTime = this._cycle = 0; - } - this._time = 0; - if (prevTime !== 0 || (dur === 0 && prevRawPrevTime !== _tinyNum && (prevRawPrevTime > 0 || (time < 0 && prevRawPrevTime >= 0)) && !this._locked)) { //edge case for checking time < 0 && prevRawPrevTime >= 0: a zero-duration fromTo() tween inside a zero-duration timeline (yeah, very rare) - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (this._timeline.autoRemoveChildren && this._reversed) { - internalForce = isComplete = true; - callback = "onReverseComplete"; - } else if (prevRawPrevTime >= 0 && this._first) { //when going back beyond the start, force a render so that zero-duration tweens that sit at the very beginning render their start values properly. Otherwise, if the parent timeline's playhead lands exactly at this timeline's startTime, and then moves backwards, the zero-duration tweens at the beginning would still be at their end state. - internalForce = true; - } - this._rawPrevTime = time; - } else { - this._rawPrevTime = (dur || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - if (time === 0 && isComplete) { //if there's a zero-duration tween at the very beginning of a timeline and the playhead lands EXACTLY at time 0, that tween will correctly render its end values, but we need to keep the timeline alive for one more render so that the beginning values render properly as the parent's playhead keeps moving beyond the begining. Imagine obj.x starts at 0 and then we do tl.set(obj, {x:100}).to(obj, 1, {x:200}) and then later we tl.reverse()...the goal is to have obj.x revert to 0. If the playhead happens to land on exactly 0, without this chunk of code, it'd complete the timeline and remove it from the rendering queue (not good). - tween = this._first; - while (tween && tween._startTime === 0) { - if (!tween._duration) { - isComplete = false; - } - tween = tween._next; - } - } - time = 0; //to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) - if (!this._initted) { - internalForce = true; - } - } - - } else { - if (dur === 0 && prevRawPrevTime < 0) { //without this, zero-duration repeating timelines (like with a simple callback nested at the very beginning and a repeatDelay) wouldn't render the first time through. - internalForce = true; - } - this._time = this._rawPrevTime = time; - if (!this._locked) { - this._totalTime = time; - if (this._repeat !== 0) { - cycleDuration = dur + this._repeatDelay; - this._cycle = (this._totalTime / cycleDuration) >> 0; //originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but it gets reported as 0.79999999!) - if (this._cycle !== 0) if (this._cycle === this._totalTime / cycleDuration && prevTotalTime <= time) { - this._cycle--; //otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) - } - this._time = this._totalTime - (this._cycle * cycleDuration); - if (this._yoyo) if ((this._cycle & 1) !== 0) { - this._time = dur - this._time; - } - if (this._time > dur) { - this._time = dur; - time = dur + 0.0001; //to avoid occasional floating point rounding error - } else if (this._time < 0) { - this._time = time = 0; - } else { - time = this._time; - } - } - } - - if (this._hasPause && !this._forcingPlayhead && !suppressEvents) { - time = this._time; - if (time >= prevTime || (this._repeat && prevCycle !== this._cycle)) { - tween = this._first; - while (tween && tween._startTime <= time && !pauseTween) { - if (!tween._duration) if (tween.data === "isPause" && !tween.ratio && !(tween._startTime === 0 && this._rawPrevTime === 0)) { - pauseTween = tween; - } - tween = tween._next; - } - } else { - tween = this._last; - while (tween && tween._startTime >= time && !pauseTween) { - if (!tween._duration) if (tween.data === "isPause" && tween._rawPrevTime > 0) { - pauseTween = tween; - } - tween = tween._prev; - } - } - if (pauseTween && pauseTween._startTime < dur) { - this._time = time = pauseTween._startTime; - this._totalTime = time + (this._cycle * (this._totalDuration + this._repeatDelay)); - } - } - - } - - if (this._cycle !== prevCycle) if (!this._locked) { - /* + _gsScope._gsDefine('TimelineMax', ['TimelineLite', 'TweenLite', 'easing.Ease'], function (TimelineLite, TweenLite, Ease) { + var TimelineMax = function (vars) { + TimelineLite.call(this, vars) + this._repeat = this.vars.repeat || 0 + this._repeatDelay = this.vars.repeatDelay || 0 + this._cycle = 0 + this._yoyo = (this.vars.yoyo === true) + this._dirty = true + }, + _tinyNum = 0.0000000001, + TweenLiteInternals = TweenLite._internals, + _lazyTweens = TweenLiteInternals.lazyTweens, + _lazyRender = TweenLiteInternals.lazyRender, + _globals = _gsScope._gsDefine.globals, + _easeNone = new Ease(null, null, 1, 0), + p = TimelineMax.prototype = new TimelineLite() + + p.constructor = TimelineMax + p.kill()._gc = false + TimelineMax.version = '1.20.2' + + p.invalidate = function () { + this._yoyo = (this.vars.yoyo === true) + this._repeat = this.vars.repeat || 0 + this._repeatDelay = this.vars.repeatDelay || 0 + this._uncache(true) + return TimelineLite.prototype.invalidate.call(this) + } + + p.addCallback = function (callback, position, params, scope) { + return this.add(TweenLite.delayedCall(0, callback, params, scope), position) + } + + p.removeCallback = function (callback, position) { + if (callback) { + if (position == null) { + this._kill(null, callback) + } else { + var a = this.getTweensOf(callback, false), + i = a.length, + time = this._parseTimeOrLabel(position) + while (--i > -1) { + if (a[i]._startTime === time) { + a[i]._enabled(false, false) + } + } + } + } + return this + } + + p.removePause = function (position) { + return this.removeCallback(TimelineLite._internals.pauseCallback, position) + } + + p.tweenTo = function (position, vars) { + vars = vars || {} + var copy = {ease: _easeNone, useFrames: this.usesFrames(), immediateRender: false}, + Engine = (vars.repeat && _globals.TweenMax) || TweenLite, + duration, p, t + for (p in vars) { + copy[p] = vars[p] + } + copy.time = this._parseTimeOrLabel(position) + duration = (Math.abs(Number(copy.time) - this._time) / this._timeScale) || 0.001 + t = new Engine(this, duration, copy) + copy.onStart = function () { + t.target.paused(true) + if (t.vars.time !== t.target.time() && duration === t.duration()) { // don't make the duration zero - if it's supposed to be zero, don't worry because it's already initting the tween and will complete immediately, effectively making the duration zero anyway. If we make duration zero, the tween won't run at all. + t.duration(Math.abs(t.vars.time - t.target.time()) / t.target._timeScale) + } + if (vars.onStart) { // in case the user had an onStart in the vars - we don't want to overwrite it. + vars.onStart.apply(vars.onStartScope || vars.callbackScope || t, vars.onStartParams || []) // don't use t._callback("onStart") or it'll point to the copy.onStart and we'll get a recursion error. + } + } + return t + } + + p.tweenFromTo = function (fromPosition, toPosition, vars) { + vars = vars || {} + fromPosition = this._parseTimeOrLabel(fromPosition) + vars.startAt = {onComplete: this.seek, onCompleteParams: [fromPosition], callbackScope: this} + vars.immediateRender = (vars.immediateRender !== false) + var t = this.tweenTo(toPosition, vars) + return t.duration((Math.abs(t.vars.time - fromPosition) / this._timeScale) || 0.001) + } + + p.render = function (time, suppressEvents, force) { + if (this._gc) { + this._enabled(true, false) + } + var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), + dur = this._duration, + prevTime = this._time, + prevTotalTime = this._totalTime, + prevStart = this._startTime, + prevTimeScale = this._timeScale, + prevRawPrevTime = this._rawPrevTime, + prevPaused = this._paused, + prevCycle = this._cycle, + tween, isComplete, next, callback, internalForce, cycleDuration, pauseTween, curTime + if (time >= totalDur - 0.0000001 && time >= 0) { // to work around occasional floating point math artifacts. + if (!this._locked) { + this._totalTime = totalDur + this._cycle = this._repeat + } + if (!this._reversed) { + if (!this._hasPausedChild()) { + isComplete = true + callback = 'onComplete' + internalForce = !!this._timeline.autoRemoveChildren // otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. + if (this._duration === 0) { + if ((time <= 0 && time >= -0.0000001) || prevRawPrevTime < 0 || prevRawPrevTime === _tinyNum) { + if (prevRawPrevTime !== time && this._first) { + internalForce = true + if (prevRawPrevTime > _tinyNum) { + callback = 'onReverseComplete' + } + } + } + } + } + } + this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + if (this._yoyo && (this._cycle & 1) !== 0) { + this._time = time = 0 + } else { + this._time = dur + time = dur + 0.0001 // to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. We cannot do less then 0.0001 because the same issue can occur when the duration is extremely large like 999999999999 in which case adding 0.00000001, for example, causes it to act like nothing was added. + } + } else if (time < 0.0000001) { // to work around occasional floating point math artifacts, round super small values to 0. + if (!this._locked) { + this._totalTime = this._cycle = 0 + } + this._time = 0 + if (prevTime !== 0 || (dur === 0 && prevRawPrevTime !== _tinyNum && (prevRawPrevTime > 0 || (time < 0 && prevRawPrevTime >= 0)) && !this._locked)) { // edge case for checking time < 0 && prevRawPrevTime >= 0: a zero-duration fromTo() tween inside a zero-duration timeline (yeah, very rare) + callback = 'onReverseComplete' + isComplete = this._reversed + } + if (time < 0) { + this._active = false + if (this._timeline.autoRemoveChildren && this._reversed) { + internalForce = isComplete = true + callback = 'onReverseComplete' + } else if (prevRawPrevTime >= 0 && this._first) { // when going back beyond the start, force a render so that zero-duration tweens that sit at the very beginning render their start values properly. Otherwise, if the parent timeline's playhead lands exactly at this timeline's startTime, and then moves backwards, the zero-duration tweens at the beginning would still be at their end state. + internalForce = true + } + this._rawPrevTime = time + } else { + this._rawPrevTime = (dur || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + if (time === 0 && isComplete) { // if there's a zero-duration tween at the very beginning of a timeline and the playhead lands EXACTLY at time 0, that tween will correctly render its end values, but we need to keep the timeline alive for one more render so that the beginning values render properly as the parent's playhead keeps moving beyond the begining. Imagine obj.x starts at 0 and then we do tl.set(obj, {x:100}).to(obj, 1, {x:200}) and then later we tl.reverse()...the goal is to have obj.x revert to 0. If the playhead happens to land on exactly 0, without this chunk of code, it'd complete the timeline and remove it from the rendering queue (not good). + tween = this._first + while (tween && tween._startTime === 0) { + if (!tween._duration) { + isComplete = false + } + tween = tween._next + } + } + time = 0 // to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) + if (!this._initted) { + internalForce = true + } + } + } else { + if (dur === 0 && prevRawPrevTime < 0) { // without this, zero-duration repeating timelines (like with a simple callback nested at the very beginning and a repeatDelay) wouldn't render the first time through. + internalForce = true + } + this._time = this._rawPrevTime = time + if (!this._locked) { + this._totalTime = time + if (this._repeat !== 0) { + cycleDuration = dur + this._repeatDelay + this._cycle = (this._totalTime / cycleDuration) >> 0 // originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but it gets reported as 0.79999999!) + if (this._cycle !== 0) { + if (this._cycle === this._totalTime / cycleDuration && prevTotalTime <= time) { + this._cycle-- // otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) + } + } + this._time = this._totalTime - (this._cycle * cycleDuration) + if (this._yoyo) { + if ((this._cycle & 1) !== 0) { + this._time = dur - this._time + } + } + if (this._time > dur) { + this._time = dur + time = dur + 0.0001 // to avoid occasional floating point rounding error + } else if (this._time < 0) { + this._time = time = 0 + } else { + time = this._time + } + } + } + + if (this._hasPause && !this._forcingPlayhead && !suppressEvents) { + time = this._time + if (time >= prevTime || (this._repeat && prevCycle !== this._cycle)) { + tween = this._first + while (tween && tween._startTime <= time && !pauseTween) { + if (!tween._duration) { + if (tween.data === 'isPause' && !tween.ratio && !(tween._startTime === 0 && this._rawPrevTime === 0)) { + pauseTween = tween + } + } + tween = tween._next + } + } else { + tween = this._last + while (tween && tween._startTime >= time && !pauseTween) { + if (!tween._duration) { + if (tween.data === 'isPause' && tween._rawPrevTime > 0) { + pauseTween = tween + } + } + tween = tween._prev + } + } + if (pauseTween && pauseTween._startTime < dur) { + this._time = time = pauseTween._startTime + this._totalTime = time + (this._cycle * (this._totalDuration + this._repeatDelay)) + } + } + } + + if (this._cycle !== prevCycle) { + if (!this._locked) { + /* make sure children at the end/beginning of the timeline are rendered properly. If, for example, a 3-second long timeline rendered at 2.9 seconds previously, and now renders at 3.2 seconds (which would get transated to 2.8 seconds if the timeline yoyos or 0.2 seconds if it just repeats), there @@ -1641,1026 +1686,1027 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa we need to push the timeline to the end (and/or beginning depending on its yoyo value). Also we must ensure that zero-duration tweens at the very beginning or end of the TimelineMax work. */ - var backwards = (this._yoyo && (prevCycle & 1) !== 0), - wrap = (backwards === (this._yoyo && (this._cycle & 1) !== 0)), - recTotalTime = this._totalTime, - recCycle = this._cycle, - recRawPrevTime = this._rawPrevTime, - recTime = this._time; - - this._totalTime = prevCycle * dur; - if (this._cycle < prevCycle) { - backwards = !backwards; - } else { - this._totalTime += dur; - } - this._time = prevTime; //temporarily revert _time so that render() renders the children in the correct order. Without this, tweens won't rewind correctly. We could arhictect things in a "cleaner" way by splitting out the rendering queue into a separate method but for performance reasons, we kept it all inside this method. - - this._rawPrevTime = (dur === 0) ? prevRawPrevTime - 0.0001 : prevRawPrevTime; - this._cycle = prevCycle; - this._locked = true; //prevents changes to totalTime and skips repeat/yoyo behavior when we recursively call render() - prevTime = (backwards) ? 0 : dur; - this.render(prevTime, suppressEvents, (dur === 0)); - if (!suppressEvents) if (!this._gc) { - if (this.vars.onRepeat) { - this._cycle = recCycle; //in case the onRepeat alters the playhead or invalidates(), we shouldn't stay locked or use the previous cycle. - this._locked = false; - this._callback("onRepeat"); - } - } - if (prevTime !== this._time) { //in case there's a callback like onComplete in a nested tween/timeline that changes the playhead position, like via seek(), we should just abort. - return; - } - if (wrap) { - this._cycle = prevCycle; //if there's an onRepeat, we reverted this above, so make sure it's set properly again. We also unlocked in that scenario, so reset that too. - this._locked = true; - prevTime = (backwards) ? dur + 0.0001 : -0.0001; - this.render(prevTime, true, false); - } - this._locked = false; - if (this._paused && !prevPaused) { //if the render() triggered callback that paused this timeline, we should abort (very rare, but possible) - return; - } - this._time = recTime; - this._totalTime = recTotalTime; - this._cycle = recCycle; - this._rawPrevTime = recRawPrevTime; - } - - if ((this._time === prevTime || !this._first) && !force && !internalForce && !pauseTween) { - if (prevTotalTime !== this._totalTime) if (this._onUpdate) if (!suppressEvents) { //so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. - this._callback("onUpdate"); - } - return; - } else if (!this._initted) { - this._initted = true; - } - - if (!this._active) if (!this._paused && this._totalTime !== prevTotalTime && time > 0) { - this._active = true; //so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. - } - - if (prevTotalTime === 0) if (this.vars.onStart) if (this._totalTime !== 0 || !this._totalDuration) if (!suppressEvents) { - this._callback("onStart"); - } - - curTime = this._time; - if (curTime >= prevTime) { - tween = this._first; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (curTime !== this._time || (this._paused && !prevPaused)) { //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete - break; - } else if (tween._active || (tween._startTime <= this._time && !tween._paused && !tween._gc)) { - if (pauseTween === tween) { - this.pause(); - } - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } else { - tween = this._last; - while (tween) { - next = tween._prev; //record it here because the value could change after rendering... - if (curTime !== this._time || (this._paused && !prevPaused)) { //in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete - break; - } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { - if (pauseTween === tween) { - pauseTween = tween._prev; //the linked list is organized by _startTime, thus it's possible that a tween could start BEFORE the pause and end after it, in which case it would be positioned before the pause tween in the linked list, but we should render it before we pause() the timeline and cease rendering. This is only a concern when going in reverse. - while (pauseTween && pauseTween.endTime() > this._time) { - pauseTween.render( (pauseTween._reversed ? pauseTween.totalDuration() - ((time - pauseTween._startTime) * pauseTween._timeScale) : (time - pauseTween._startTime) * pauseTween._timeScale), suppressEvents, force); - pauseTween = pauseTween._prev; - } - pauseTween = null; - this.pause(); - } - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } - - if (this._onUpdate) if (!suppressEvents) { - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onUpdate on a timeline that reports/checks tweened values. - _lazyRender(); - } - this._callback("onUpdate"); - } - if (callback) if (!this._locked) if (!this._gc) if (prevStart === this._startTime || prevTimeScale !== this._timeScale) if (this._time === 0 || totalDur >= this.totalDuration()) { //if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate - if (isComplete) { - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onComplete on a timeline that reports/checks tweened values. - _lazyRender(); - } - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this._callback(callback); - } - } - }; - - p.getActive = function(nested, tweens, timelines) { - if (nested == null) { - nested = true; - } - if (tweens == null) { - tweens = true; - } - if (timelines == null) { - timelines = false; - } - var a = [], - all = this.getChildren(nested, tweens, timelines), - cnt = 0, - l = all.length, - i, tween; - for (i = 0; i < l; i++) { - tween = all[i]; - if (tween.isActive()) { - a[cnt++] = tween; - } - } - return a; - }; - - - p.getLabelAfter = function(time) { - if (!time) if (time !== 0) { //faster than isNan() - time = this._time; - } - var labels = this.getLabelsArray(), - l = labels.length, - i; - for (i = 0; i < l; i++) { - if (labels[i].time > time) { - return labels[i].name; - } - } - return null; - }; - - p.getLabelBefore = function(time) { - if (time == null) { - time = this._time; - } - var labels = this.getLabelsArray(), - i = labels.length; - while (--i > -1) { - if (labels[i].time < time) { - return labels[i].name; - } - } - return null; - }; - - p.getLabelsArray = function() { - var a = [], - cnt = 0, - p; - for (p in this._labels) { - a[cnt++] = {time:this._labels[p], name:p}; - } - a.sort(function(a,b) { - return a.time - b.time; - }); - return a; - }; - - p.invalidate = function() { - this._locked = false; //unlock and set cycle in case invalidate() is called from inside an onRepeat - return TimelineLite.prototype.invalidate.call(this); - }; - - -//---- GETTERS / SETTERS ------------------------------------------------------------------------------------------------------- - - p.progress = function(value, suppressEvents) { - return (!arguments.length) ? (this._time / this.duration()) || 0 : this.totalTime( this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), suppressEvents); - }; - - p.totalProgress = function(value, suppressEvents) { - return (!arguments.length) ? (this._totalTime / this.totalDuration()) || 0 : this.totalTime( this.totalDuration() * value, suppressEvents); - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - TimelineLite.prototype.totalDuration.call(this); //just forces refresh - //Instead of Infinity, we use 999999999999 so that we can accommodate reverses. - this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat); - } - return this._totalDuration; - } - return (this._repeat === -1 || !value) ? this : this.timeScale( this.totalDuration() / value ); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - if (value > this._duration) { - value = this._duration; - } - if (this._yoyo && (this._cycle & 1) !== 0) { - value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)); - } else if (this._repeat !== 0) { - value += this._cycle * (this._duration + this._repeatDelay); - } - return this.totalTime(value, suppressEvents); - }; - - p.repeat = function(value) { - if (!arguments.length) { - return this._repeat; - } - this._repeat = value; - return this._uncache(true); - }; - - p.repeatDelay = function(value) { - if (!arguments.length) { - return this._repeatDelay; - } - this._repeatDelay = value; - return this._uncache(true); - }; - - p.yoyo = function(value) { - if (!arguments.length) { - return this._yoyo; - } - this._yoyo = value; - return this; - }; - - p.currentLabel = function(value) { - if (!arguments.length) { - return this.getLabelBefore(this._time + 0.00000001); - } - return this.seek(value, true); - }; - - return TimelineMax; - - }, true); - - - - - - - - - - - - -/* + var backwards = (this._yoyo && (prevCycle & 1) !== 0), + wrap = (backwards === (this._yoyo && (this._cycle & 1) !== 0)), + recTotalTime = this._totalTime, + recCycle = this._cycle, + recRawPrevTime = this._rawPrevTime, + recTime = this._time + + this._totalTime = prevCycle * dur + if (this._cycle < prevCycle) { + backwards = !backwards + } else { + this._totalTime += dur + } + this._time = prevTime // temporarily revert _time so that render() renders the children in the correct order. Without this, tweens won't rewind correctly. We could arhictect things in a "cleaner" way by splitting out the rendering queue into a separate method but for performance reasons, we kept it all inside this method. + + this._rawPrevTime = (dur === 0) ? prevRawPrevTime - 0.0001 : prevRawPrevTime + this._cycle = prevCycle + this._locked = true // prevents changes to totalTime and skips repeat/yoyo behavior when we recursively call render() + prevTime = (backwards) ? 0 : dur + this.render(prevTime, suppressEvents, (dur === 0)) + if (!suppressEvents) { + if (!this._gc) { + if (this.vars.onRepeat) { + this._cycle = recCycle // in case the onRepeat alters the playhead or invalidates(), we shouldn't stay locked or use the previous cycle. + this._locked = false + this._callback('onRepeat') + } + } + } + if (prevTime !== this._time) { // in case there's a callback like onComplete in a nested tween/timeline that changes the playhead position, like via seek(), we should just abort. + return + } + if (wrap) { + this._cycle = prevCycle // if there's an onRepeat, we reverted this above, so make sure it's set properly again. We also unlocked in that scenario, so reset that too. + this._locked = true + prevTime = (backwards) ? dur + 0.0001 : -0.0001 + this.render(prevTime, true, false) + } + this._locked = false + if (this._paused && !prevPaused) { // if the render() triggered callback that paused this timeline, we should abort (very rare, but possible) + return + } + this._time = recTime + this._totalTime = recTotalTime + this._cycle = recCycle + this._rawPrevTime = recRawPrevTime + } + } + + if ((this._time === prevTime || !this._first) && !force && !internalForce && !pauseTween) { + if (prevTotalTime !== this._totalTime) { + if (this._onUpdate) { + if (!suppressEvents) { // so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. + this._callback('onUpdate') + } + } + } + return + } else if (!this._initted) { + this._initted = true + } + + if (!this._active) { + if (!this._paused && this._totalTime !== prevTotalTime && time > 0) { + this._active = true // so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. + } + } + + if (prevTotalTime === 0) { + if (this.vars.onStart) { + if (this._totalTime !== 0 || !this._totalDuration) { + if (!suppressEvents) { + this._callback('onStart') + } + } + } + } + + curTime = this._time + if (curTime >= prevTime) { + tween = this._first + while (tween) { + next = tween._next // record it here because the value could change after rendering... + if (curTime !== this._time || (this._paused && !prevPaused)) { // in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete + break + } else if (tween._active || (tween._startTime <= this._time && !tween._paused && !tween._gc)) { + if (pauseTween === tween) { + this.pause() + } + if (!tween._reversed) { + tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force) + } else { + tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force) + } + } + tween = next + } + } else { + tween = this._last + while (tween) { + next = tween._prev // record it here because the value could change after rendering... + if (curTime !== this._time || (this._paused && !prevPaused)) { // in case a tween pauses or seeks the timeline when rendering, like inside of an onUpdate/onComplete + break + } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { + if (pauseTween === tween) { + pauseTween = tween._prev // the linked list is organized by _startTime, thus it's possible that a tween could start BEFORE the pause and end after it, in which case it would be positioned before the pause tween in the linked list, but we should render it before we pause() the timeline and cease rendering. This is only a concern when going in reverse. + while (pauseTween && pauseTween.endTime() > this._time) { + pauseTween.render((pauseTween._reversed ? pauseTween.totalDuration() - ((time - pauseTween._startTime) * pauseTween._timeScale) : (time - pauseTween._startTime) * pauseTween._timeScale), suppressEvents, force) + pauseTween = pauseTween._prev + } + pauseTween = null + this.pause() + } + if (!tween._reversed) { + tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force) + } else { + tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force) + } + } + tween = next + } + } + + if (this._onUpdate) { + if (!suppressEvents) { + if (_lazyTweens.length) { // in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onUpdate on a timeline that reports/checks tweened values. + _lazyRender() + } + this._callback('onUpdate') + } + } + if (callback) { + if (!this._locked) { + if (!this._gc) { + if (prevStart === this._startTime || prevTimeScale !== this._timeScale) { + if (this._time === 0 || totalDur >= this.totalDuration()) { // if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate + if (isComplete) { + if (_lazyTweens.length) { // in case rendering caused any tweens to lazy-init, we should render them because typically when a timeline finishes, users expect things to have rendered fully. Imagine an onComplete on a timeline that reports/checks tweened values. + _lazyRender() + } + if (this._timeline.autoRemoveChildren) { + this._enabled(false, false) + } + this._active = false + } + if (!suppressEvents && this.vars[callback]) { + this._callback(callback) + } + } + } + } + } + } + } + + p.getActive = function (nested, tweens, timelines) { + if (nested == null) { + nested = true + } + if (tweens == null) { + tweens = true + } + if (timelines == null) { + timelines = false + } + var a = [], + all = this.getChildren(nested, tweens, timelines), + cnt = 0, + l = all.length, + i, tween + for (i = 0; i < l; i++) { + tween = all[i] + if (tween.isActive()) { + a[cnt++] = tween + } + } + return a + } + + p.getLabelAfter = function (time) { + if (!time) { + if (time !== 0) { // faster than isNan() + time = this._time + } + } + var labels = this.getLabelsArray(), + l = labels.length, + i + for (i = 0; i < l; i++) { + if (labels[i].time > time) { + return labels[i].name + } + } + return null + } + + p.getLabelBefore = function (time) { + if (time == null) { + time = this._time + } + var labels = this.getLabelsArray(), + i = labels.length + while (--i > -1) { + if (labels[i].time < time) { + return labels[i].name + } + } + return null + } + + p.getLabelsArray = function () { + var a = [], + cnt = 0, + p + for (p in this._labels) { + a[cnt++] = {time: this._labels[p], name: p} + } + a.sort(function (a, b) { + return a.time - b.time + }) + return a + } + + p.invalidate = function () { + this._locked = false // unlock and set cycle in case invalidate() is called from inside an onRepeat + return TimelineLite.prototype.invalidate.call(this) + } + + // ---- GETTERS / SETTERS ------------------------------------------------------------------------------------------------------- + + p.progress = function (value, suppressEvents) { + return (!arguments.length) ? (this._time / this.duration()) || 0 : this.totalTime(this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), suppressEvents) + } + + p.totalProgress = function (value, suppressEvents) { + return (!arguments.length) ? (this._totalTime / this.totalDuration()) || 0 : this.totalTime(this.totalDuration() * value, suppressEvents) + } + + p.totalDuration = function (value) { + if (!arguments.length) { + if (this._dirty) { + TimelineLite.prototype.totalDuration.call(this) // just forces refresh + // Instead of Infinity, we use 999999999999 so that we can accommodate reverses. + this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat) + } + return this._totalDuration + } + return (this._repeat === -1 || !value) ? this : this.timeScale(this.totalDuration() / value) + } + + p.time = function (value, suppressEvents) { + if (!arguments.length) { + return this._time + } + if (this._dirty) { + this.totalDuration() + } + if (value > this._duration) { + value = this._duration + } + if (this._yoyo && (this._cycle & 1) !== 0) { + value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)) + } else if (this._repeat !== 0) { + value += this._cycle * (this._duration + this._repeatDelay) + } + return this.totalTime(value, suppressEvents) + } + + p.repeat = function (value) { + if (!arguments.length) { + return this._repeat + } + this._repeat = value + return this._uncache(true) + } + + p.repeatDelay = function (value) { + if (!arguments.length) { + return this._repeatDelay + } + this._repeatDelay = value + return this._uncache(true) + } + + p.yoyo = function (value) { + if (!arguments.length) { + return this._yoyo + } + this._yoyo = value + return this + } + + p.currentLabel = function (value) { + if (!arguments.length) { + return this.getLabelBefore(this._time + 0.00000001) + } + return this.seek(value, true) + } + + return TimelineMax + }, true); + + /* * ---------------------------------------------------------------- * BezierPlugin * ---------------------------------------------------------------- */ - (function() { - - var _RAD2DEG = 180 / Math.PI, - _r1 = [], - _r2 = [], - _r3 = [], - _corProps = {}, - _globals = _gsScope._gsDefine.globals, - Segment = function(a, b, c, d) { - if (c === d) { //if c and d match, the final autoRotate value could lock at -90 degrees, so differentiate them slightly. - c = d - (d - b) / 1000000; - } - if (a === b) { //if a and b match, the starting autoRotate value could lock at -90 degrees, so differentiate them slightly. - b = a + (c - a) / 1000000; - } - this.a = a; - this.b = b; - this.c = c; - this.d = d; - this.da = d - a; - this.ca = c - a; - this.ba = b - a; - }, - _correlate = ",x,y,z,left,top,right,bottom,marginTop,marginLeft,marginRight,marginBottom,paddingLeft,paddingTop,paddingRight,paddingBottom,backgroundPosition,backgroundPosition_y,", - cubicToQuadratic = function(a, b, c, d) { - var q1 = {a:a}, - q2 = {}, - q3 = {}, - q4 = {c:d}, - mab = (a + b) / 2, - mbc = (b + c) / 2, - mcd = (c + d) / 2, - mabc = (mab + mbc) / 2, - mbcd = (mbc + mcd) / 2, - m8 = (mbcd - mabc) / 8; - q1.b = mab + (a - mab) / 4; - q2.b = mabc + m8; - q1.c = q2.a = (q1.b + q2.b) / 2; - q2.c = q3.a = (mabc + mbcd) / 2; - q3.b = mbcd - m8; - q4.b = mcd + (d - mcd) / 4; - q3.c = q4.a = (q3.b + q4.b) / 2; - return [q1, q2, q3, q4]; - }, - _calculateControlPoints = function(a, curviness, quad, basic, correlate) { - var l = a.length - 1, - ii = 0, - cp1 = a[0].a, - i, p1, p2, p3, seg, m1, m2, mm, cp2, qb, r1, r2, tl; - for (i = 0; i < l; i++) { - seg = a[ii]; - p1 = seg.a; - p2 = seg.d; - p3 = a[ii+1].d; - - if (correlate) { - r1 = _r1[i]; - r2 = _r2[i]; - tl = ((r2 + r1) * curviness * 0.25) / (basic ? 0.5 : _r3[i] || 0.5); - m1 = p2 - (p2 - p1) * (basic ? curviness * 0.5 : (r1 !== 0 ? tl / r1 : 0)); - m2 = p2 + (p3 - p2) * (basic ? curviness * 0.5 : (r2 !== 0 ? tl / r2 : 0)); - mm = p2 - (m1 + (((m2 - m1) * ((r1 * 3 / (r1 + r2)) + 0.5) / 4) || 0)); - } else { - m1 = p2 - (p2 - p1) * curviness * 0.5; - m2 = p2 + (p3 - p2) * curviness * 0.5; - mm = p2 - (m1 + m2) / 2; - } - m1 += mm; - m2 += mm; - - seg.c = cp2 = m1; - if (i !== 0) { - seg.b = cp1; - } else { - seg.b = cp1 = seg.a + (seg.c - seg.a) * 0.6; //instead of placing b on a exactly, we move it inline with c so that if the user specifies an ease like Back.easeIn or Elastic.easeIn which goes BEYOND the beginning, it will do so smoothly. - } - - seg.da = p2 - p1; - seg.ca = cp2 - p1; - seg.ba = cp1 - p1; - - if (quad) { - qb = cubicToQuadratic(p1, cp1, cp2, p2); - a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]); - ii += 4; - } else { - ii++; - } - - cp1 = m2; - } - seg = a[ii]; - seg.b = cp1; - seg.c = cp1 + (seg.d - cp1) * 0.4; //instead of placing c on d exactly, we move it inline with b so that if the user specifies an ease like Back.easeOut or Elastic.easeOut which goes BEYOND the end, it will do so smoothly. - seg.da = seg.d - seg.a; - seg.ca = seg.c - seg.a; - seg.ba = cp1 - seg.a; - if (quad) { - qb = cubicToQuadratic(seg.a, cp1, seg.c, seg.d); - a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]); - } - }, - _parseAnchors = function(values, p, correlate, prepend) { - var a = [], - l, i, p1, p2, p3, tmp; - if (prepend) { - values = [prepend].concat(values); - i = values.length; - while (--i > -1) { - if (typeof( (tmp = values[i][p]) ) === "string") if (tmp.charAt(1) === "=") { - values[i][p] = prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)); //accommodate relative values. Do it inline instead of breaking it out into a function for speed reasons - } - } - } - l = values.length - 2; - if (l < 0) { - a[0] = new Segment(values[0][p], 0, 0, values[0][p]); - return a; - } - for (i = 0; i < l; i++) { - p1 = values[i][p]; - p2 = values[i+1][p]; - a[i] = new Segment(p1, 0, 0, p2); - if (correlate) { - p3 = values[i+2][p]; - _r1[i] = (_r1[i] || 0) + (p2 - p1) * (p2 - p1); - _r2[i] = (_r2[i] || 0) + (p3 - p2) * (p3 - p2); - } - } - a[i] = new Segment(values[i][p], 0, 0, values[i+1][p]); - return a; - }, - bezierThrough = function(values, curviness, quadratic, basic, correlate, prepend) { - var obj = {}, - props = [], - first = prepend || values[0], - i, p, a, j, r, l, seamless, last; - correlate = (typeof(correlate) === "string") ? ","+correlate+"," : _correlate; - if (curviness == null) { - curviness = 1; - } - for (p in values[0]) { - props.push(p); - } - //check to see if the last and first values are identical (well, within 0.05). If so, make seamless by appending the second element to the very end of the values array and the 2nd-to-last element to the very beginning (we'll remove those segments later) - if (values.length > 1) { - last = values[values.length - 1]; - seamless = true; - i = props.length; - while (--i > -1) { - p = props[i]; - if (Math.abs(first[p] - last[p]) > 0.05) { //build in a tolerance of +/-0.05 to accommodate rounding errors. - seamless = false; - break; - } - } - if (seamless) { - values = values.concat(); //duplicate the array to avoid contaminating the original which the user may be reusing for other tweens - if (prepend) { - values.unshift(prepend); - } - values.push(values[1]); - prepend = values[values.length - 3]; - } - } - _r1.length = _r2.length = _r3.length = 0; - i = props.length; - while (--i > -1) { - p = props[i]; - _corProps[p] = (correlate.indexOf(","+p+",") !== -1); - obj[p] = _parseAnchors(values, p, _corProps[p], prepend); - } - i = _r1.length; - while (--i > -1) { - _r1[i] = Math.sqrt(_r1[i]); - _r2[i] = Math.sqrt(_r2[i]); - } - if (!basic) { - i = props.length; - while (--i > -1) { - if (_corProps[p]) { - a = obj[props[i]]; - l = a.length - 1; - for (j = 0; j < l; j++) { - r = (a[j+1].da / _r2[j] + a[j].da / _r1[j]) || 0; - _r3[j] = (_r3[j] || 0) + r * r; - } - } - } - i = _r3.length; - while (--i > -1) { - _r3[i] = Math.sqrt(_r3[i]); - } - } - i = props.length; - j = quadratic ? 4 : 1; - while (--i > -1) { - p = props[i]; - a = obj[p]; - _calculateControlPoints(a, curviness, quadratic, basic, _corProps[p]); //this method requires that _parseAnchors() and _setSegmentRatios() ran first so that _r1, _r2, and _r3 values are populated for all properties - if (seamless) { - a.splice(0, j); - a.splice(a.length - j, j); - } - } - return obj; - }, - _parseBezierData = function(values, type, prepend) { - type = type || "soft"; - var obj = {}, - inc = (type === "cubic") ? 3 : 2, - soft = (type === "soft"), - props = [], - a, b, c, d, cur, i, j, l, p, cnt, tmp; - if (soft && prepend) { - values = [prepend].concat(values); - } - if (values == null || values.length < inc + 1) { throw "invalid Bezier data"; } - for (p in values[0]) { - props.push(p); - } - i = props.length; - while (--i > -1) { - p = props[i]; - obj[p] = cur = []; - cnt = 0; - l = values.length; - for (j = 0; j < l; j++) { - a = (prepend == null) ? values[j][p] : (typeof( (tmp = values[j][p]) ) === "string" && tmp.charAt(1) === "=") ? prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)) : Number(tmp); - if (soft) if (j > 1) if (j < l - 1) { - cur[cnt++] = (a + cur[cnt-2]) / 2; - } - cur[cnt++] = a; - } - l = cnt - inc + 1; - cnt = 0; - for (j = 0; j < l; j += inc) { - a = cur[j]; - b = cur[j+1]; - c = cur[j+2]; - d = (inc === 2) ? 0 : cur[j+3]; - cur[cnt++] = tmp = (inc === 3) ? new Segment(a, b, c, d) : new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c); - } - cur.length = cnt; - } - return obj; - }, - _addCubicLengths = function(a, steps, resolution) { - var inc = 1 / resolution, - j = a.length, - d, d1, s, da, ca, ba, p, i, inv, bez, index; - while (--j > -1) { - bez = a[j]; - s = bez.a; - da = bez.d - s; - ca = bez.c - s; - ba = bez.b - s; - d = d1 = 0; - for (i = 1; i <= resolution; i++) { - p = inc * i; - inv = 1 - p; - d = d1 - (d1 = (p * p * da + 3 * inv * (p * ca + inv * ba)) * p); - index = j * resolution + i - 1; - steps[index] = (steps[index] || 0) + d * d; - } - } - }, - _parseLengthData = function(obj, resolution) { - resolution = resolution >> 0 || 6; - var a = [], - lengths = [], - d = 0, - total = 0, - threshold = resolution - 1, - segments = [], - curLS = [], //current length segments array - p, i, l, index; - for (p in obj) { - _addCubicLengths(obj[p], a, resolution); - } - l = a.length; - for (i = 0; i < l; i++) { - d += Math.sqrt(a[i]); - index = i % resolution; - curLS[index] = d; - if (index === threshold) { - total += d; - index = (i / resolution) >> 0; - segments[index] = curLS; - lengths[index] = total; - d = 0; - curLS = []; - } - } - return {length:total, lengths:lengths, segments:segments}; - }, - - - - BezierPlugin = _gsScope._gsDefine.plugin({ - propName: "bezier", - priority: -1, - version: "1.3.8", - API: 2, - global:true, - - //gets called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, vars, tween) { - this._target = target; - if (vars instanceof Array) { - vars = {values:vars}; - } - this._func = {}; - this._mod = {}; - this._props = []; - this._timeRes = (vars.timeResolution == null) ? 6 : parseInt(vars.timeResolution, 10); - var values = vars.values || [], - first = {}, - second = values[0], - autoRotate = vars.autoRotate || tween.vars.orientToBezier, - p, isFunc, i, j, prepend; - - this._autoRotate = autoRotate ? (autoRotate instanceof Array) ? autoRotate : [["x","y","rotation",((autoRotate === true) ? 0 : Number(autoRotate) || 0)]] : null; - for (p in second) { - this._props.push(p); - } - - i = this._props.length; - while (--i > -1) { - p = this._props[i]; - - this._overwriteProps.push(p); - isFunc = this._func[p] = (typeof(target[p]) === "function"); - first[p] = (!isFunc) ? parseFloat(target[p]) : target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ](); - if (!prepend) if (first[p] !== values[0][p]) { - prepend = first; - } - } - this._beziers = (vars.type !== "cubic" && vars.type !== "quadratic" && vars.type !== "soft") ? bezierThrough(values, isNaN(vars.curviness) ? 1 : vars.curviness, false, (vars.type === "thruBasic"), vars.correlate, prepend) : _parseBezierData(values, vars.type, first); - this._segCount = this._beziers[p].length; - - if (this._timeRes) { - var ld = _parseLengthData(this._beziers, this._timeRes); - this._length = ld.length; - this._lengths = ld.lengths; - this._segments = ld.segments; - this._l1 = this._li = this._s1 = this._si = 0; - this._l2 = this._lengths[0]; - this._curSeg = this._segments[0]; - this._s2 = this._curSeg[0]; - this._prec = 1 / this._curSeg.length; - } - - if ((autoRotate = this._autoRotate)) { - this._initialRotations = []; - if (!(autoRotate[0] instanceof Array)) { - this._autoRotate = autoRotate = [autoRotate]; - } - i = autoRotate.length; - while (--i > -1) { - for (j = 0; j < 3; j++) { - p = autoRotate[i][j]; - this._func[p] = (typeof(target[p]) === "function") ? target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ] : false; - } - p = autoRotate[i][2]; - this._initialRotations[i] = (this._func[p] ? this._func[p].call(this._target) : this._target[p]) || 0; - this._overwriteProps.push(p); - } - } - this._startRatio = tween.vars.runBackwards ? 1 : 0; //we determine the starting ratio when the tween inits which is always 0 unless the tween has runBackwards:true (indicating it's a from() tween) in which case it's 1. - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(v) { - var segments = this._segCount, - func = this._func, - target = this._target, - notStart = (v !== this._startRatio), - curIndex, inv, i, p, b, t, val, l, lengths, curSeg; - if (!this._timeRes) { - curIndex = (v < 0) ? 0 : (v >= 1) ? segments - 1 : (segments * v) >> 0; - t = (v - (curIndex * (1 / segments))) * segments; - } else { - lengths = this._lengths; - curSeg = this._curSeg; - v *= this._length; - i = this._li; - //find the appropriate segment (if the currently cached one isn't correct) - if (v > this._l2 && i < segments - 1) { - l = segments - 1; - while (i < l && (this._l2 = lengths[++i]) <= v) { } - this._l1 = lengths[i-1]; - this._li = i; - this._curSeg = curSeg = this._segments[i]; - this._s2 = curSeg[(this._s1 = this._si = 0)]; - } else if (v < this._l1 && i > 0) { - while (i > 0 && (this._l1 = lengths[--i]) >= v) { } - if (i === 0 && v < this._l1) { - this._l1 = 0; - } else { - i++; - } - this._l2 = lengths[i]; - this._li = i; - this._curSeg = curSeg = this._segments[i]; - this._s1 = curSeg[(this._si = curSeg.length - 1) - 1] || 0; - this._s2 = curSeg[this._si]; - } - curIndex = i; - //now find the appropriate sub-segment (we split it into the number of pieces that was defined by "precision" and measured each one) - v -= this._l1; - i = this._si; - if (v > this._s2 && i < curSeg.length - 1) { - l = curSeg.length - 1; - while (i < l && (this._s2 = curSeg[++i]) <= v) { } - this._s1 = curSeg[i-1]; - this._si = i; - } else if (v < this._s1 && i > 0) { - while (i > 0 && (this._s1 = curSeg[--i]) >= v) { } - if (i === 0 && v < this._s1) { - this._s1 = 0; - } else { - i++; - } - this._s2 = curSeg[i]; - this._si = i; - } - t = ((i + (v - this._s1) / (this._s2 - this._s1)) * this._prec) || 0; - } - inv = 1 - t; - - i = this._props.length; - while (--i > -1) { - p = this._props[i]; - b = this._beziers[p][curIndex]; - val = (t * t * b.da + 3 * inv * (t * b.ca + inv * b.ba)) * t + b.a; - if (this._mod[p]) { - val = this._mod[p](val, target); - } - if (func[p]) { - target[p](val); - } else { - target[p] = val; - } - } - - if (this._autoRotate) { - var ar = this._autoRotate, - b2, x1, y1, x2, y2, add, conv; - i = ar.length; - while (--i > -1) { - p = ar[i][2]; - add = ar[i][3] || 0; - conv = (ar[i][4] === true) ? 1 : _RAD2DEG; - b = this._beziers[ar[i][0]]; - b2 = this._beziers[ar[i][1]]; - - if (b && b2) { //in case one of the properties got overwritten. - b = b[curIndex]; - b2 = b2[curIndex]; - - x1 = b.a + (b.b - b.a) * t; - x2 = b.b + (b.c - b.b) * t; - x1 += (x2 - x1) * t; - x2 += ((b.c + (b.d - b.c) * t) - x2) * t; - - y1 = b2.a + (b2.b - b2.a) * t; - y2 = b2.b + (b2.c - b2.b) * t; - y1 += (y2 - y1) * t; - y2 += ((b2.c + (b2.d - b2.c) * t) - y2) * t; - - val = notStart ? Math.atan2(y2 - y1, x2 - x1) * conv + add : this._initialRotations[i]; - - if (this._mod[p]) { - val = this._mod[p](val, target); //for modProps - } - - if (func[p]) { - target[p](val); - } else { - target[p] = val; - } - } - } - } - } - }), - p = BezierPlugin.prototype; - - - BezierPlugin.bezierThrough = bezierThrough; - BezierPlugin.cubicToQuadratic = cubicToQuadratic; - BezierPlugin._autoCSS = true; //indicates that this plugin can be inserted into the "css" object using the autoCSS feature of TweenLite - BezierPlugin.quadraticToCubic = function(a, b, c) { - return new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c); - }; - - BezierPlugin._cssRegister = function() { - var CSSPlugin = _globals.CSSPlugin; - if (!CSSPlugin) { - return; - } - var _internals = CSSPlugin._internals, - _parseToProxy = _internals._parseToProxy, - _setPluginRatio = _internals._setPluginRatio, - CSSPropTween = _internals.CSSPropTween; - _internals._registerComplexSpecialProp("bezier", {parser:function(t, e, prop, cssp, pt, plugin) { - if (e instanceof Array) { - e = {values:e}; - } - plugin = new BezierPlugin(); - var values = e.values, - l = values.length - 1, - pluginValues = [], - v = {}, - i, p, data; - if (l < 0) { - return pt; - } - for (i = 0; i <= l; i++) { - data = _parseToProxy(t, values[i], cssp, pt, plugin, (l !== i)); - pluginValues[i] = data.end; - } - for (p in e) { - v[p] = e[p]; //duplicate the vars object because we need to alter some things which would cause problems if the user plans to reuse the same vars object for another tween. - } - v.values = pluginValues; - pt = new CSSPropTween(t, "bezier", 0, 0, data.pt, 2); - pt.data = data; - pt.plugin = plugin; - pt.setRatio = _setPluginRatio; - if (v.autoRotate === 0) { - v.autoRotate = true; - } - if (v.autoRotate && !(v.autoRotate instanceof Array)) { - i = (v.autoRotate === true) ? 0 : Number(v.autoRotate); - v.autoRotate = (data.end.left != null) ? [["left","top","rotation",i,false]] : (data.end.x != null) ? [["x","y","rotation",i,false]] : false; - } - if (v.autoRotate) { - if (!cssp._transform) { - cssp._enableTransforms(false); - } - data.autoRotate = cssp._target._gsTransform; - data.proxy.rotation = data.autoRotate.rotation || 0; - cssp._overwriteProps.push("rotation"); - } - plugin._onInitTween(data.proxy, v, cssp._tween); - return pt; - }}); - }; - - p._mod = function(lookup) { - var op = this._overwriteProps, - i = op.length, - val; - while (--i > -1) { - val = lookup[op[i]]; - if (val && typeof(val) === "function") { - this._mod[op[i]] = val; - } - } - }; - - p._kill = function(lookup) { - var a = this._props, - p, i; - for (p in this._beziers) { - if (p in lookup) { - delete this._beziers[p]; - delete this._func[p]; - i = a.length; - while (--i > -1) { - if (a[i] === p) { - a.splice(i, 1); - } - } - } - } - a = this._autoRotate; - if (a) { - i = a.length; - while (--i > -1) { - if (lookup[a[i][2]]) { - a.splice(i, 1); - } - } - } - return this._super._kill.call(this, lookup); - }; - - }()); - - - - - - - - - - - - - - -/* + (function () { + var _RAD2DEG = 180 / Math.PI, + _r1 = [], + _r2 = [], + _r3 = [], + _corProps = {}, + _globals = _gsScope._gsDefine.globals, + Segment = function (a, b, c, d) { + if (c === d) { // if c and d match, the final autoRotate value could lock at -90 degrees, so differentiate them slightly. + c = d - (d - b) / 1000000 + } + if (a === b) { // if a and b match, the starting autoRotate value could lock at -90 degrees, so differentiate them slightly. + b = a + (c - a) / 1000000 + } + this.a = a + this.b = b + this.c = c + this.d = d + this.da = d - a + this.ca = c - a + this.ba = b - a + }, + _correlate = ',x,y,z,left,top,right,bottom,marginTop,marginLeft,marginRight,marginBottom,paddingLeft,paddingTop,paddingRight,paddingBottom,backgroundPosition,backgroundPosition_y,', + cubicToQuadratic = function (a, b, c, d) { + var q1 = {a: a}, + q2 = {}, + q3 = {}, + q4 = {c: d}, + mab = (a + b) / 2, + mbc = (b + c) / 2, + mcd = (c + d) / 2, + mabc = (mab + mbc) / 2, + mbcd = (mbc + mcd) / 2, + m8 = (mbcd - mabc) / 8 + q1.b = mab + (a - mab) / 4 + q2.b = mabc + m8 + q1.c = q2.a = (q1.b + q2.b) / 2 + q2.c = q3.a = (mabc + mbcd) / 2 + q3.b = mbcd - m8 + q4.b = mcd + (d - mcd) / 4 + q3.c = q4.a = (q3.b + q4.b) / 2 + return [q1, q2, q3, q4] + }, + _calculateControlPoints = function (a, curviness, quad, basic, correlate) { + var l = a.length - 1, + ii = 0, + cp1 = a[0].a, + i, p1, p2, p3, seg, m1, m2, mm, cp2, qb, r1, r2, tl + for (i = 0; i < l; i++) { + seg = a[ii] + p1 = seg.a + p2 = seg.d + p3 = a[ii + 1].d + + if (correlate) { + r1 = _r1[i] + r2 = _r2[i] + tl = ((r2 + r1) * curviness * 0.25) / (basic ? 0.5 : _r3[i] || 0.5) + m1 = p2 - (p2 - p1) * (basic ? curviness * 0.5 : (r1 !== 0 ? tl / r1 : 0)) + m2 = p2 + (p3 - p2) * (basic ? curviness * 0.5 : (r2 !== 0 ? tl / r2 : 0)) + mm = p2 - (m1 + (((m2 - m1) * ((r1 * 3 / (r1 + r2)) + 0.5) / 4) || 0)) + } else { + m1 = p2 - (p2 - p1) * curviness * 0.5 + m2 = p2 + (p3 - p2) * curviness * 0.5 + mm = p2 - (m1 + m2) / 2 + } + m1 += mm + m2 += mm + + seg.c = cp2 = m1 + if (i !== 0) { + seg.b = cp1 + } else { + seg.b = cp1 = seg.a + (seg.c - seg.a) * 0.6 // instead of placing b on a exactly, we move it inline with c so that if the user specifies an ease like Back.easeIn or Elastic.easeIn which goes BEYOND the beginning, it will do so smoothly. + } + + seg.da = p2 - p1 + seg.ca = cp2 - p1 + seg.ba = cp1 - p1 + + if (quad) { + qb = cubicToQuadratic(p1, cp1, cp2, p2) + a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]) + ii += 4 + } else { + ii++ + } + + cp1 = m2 + } + seg = a[ii] + seg.b = cp1 + seg.c = cp1 + (seg.d - cp1) * 0.4 // instead of placing c on d exactly, we move it inline with b so that if the user specifies an ease like Back.easeOut or Elastic.easeOut which goes BEYOND the end, it will do so smoothly. + seg.da = seg.d - seg.a + seg.ca = seg.c - seg.a + seg.ba = cp1 - seg.a + if (quad) { + qb = cubicToQuadratic(seg.a, cp1, seg.c, seg.d) + a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]) + } + }, + _parseAnchors = function (values, p, correlate, prepend) { + var a = [], + l, i, p1, p2, p3, tmp + if (prepend) { + values = [prepend].concat(values) + i = values.length + while (--i > -1) { + if (typeof ((tmp = values[i][p])) === 'string') { + if (tmp.charAt(1) === '=') { + values[i][p] = prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)) // accommodate relative values. Do it inline instead of breaking it out into a function for speed reasons + } + } + } + } + l = values.length - 2 + if (l < 0) { + a[0] = new Segment(values[0][p], 0, 0, values[0][p]) + return a + } + for (i = 0; i < l; i++) { + p1 = values[i][p] + p2 = values[i + 1][p] + a[i] = new Segment(p1, 0, 0, p2) + if (correlate) { + p3 = values[i + 2][p] + _r1[i] = (_r1[i] || 0) + (p2 - p1) * (p2 - p1) + _r2[i] = (_r2[i] || 0) + (p3 - p2) * (p3 - p2) + } + } + a[i] = new Segment(values[i][p], 0, 0, values[i + 1][p]) + return a + }, + bezierThrough = function (values, curviness, quadratic, basic, correlate, prepend) { + var obj = {}, + props = [], + first = prepend || values[0], + i, p, a, j, r, l, seamless, last + correlate = (typeof (correlate) === 'string') ? ',' + correlate + ',' : _correlate + if (curviness == null) { + curviness = 1 + } + for (p in values[0]) { + props.push(p) + } + // check to see if the last and first values are identical (well, within 0.05). If so, make seamless by appending the second element to the very end of the values array and the 2nd-to-last element to the very beginning (we'll remove those segments later) + if (values.length > 1) { + last = values[values.length - 1] + seamless = true + i = props.length + while (--i > -1) { + p = props[i] + if (Math.abs(first[p] - last[p]) > 0.05) { // build in a tolerance of +/-0.05 to accommodate rounding errors. + seamless = false + break + } + } + if (seamless) { + values = values.concat() // duplicate the array to avoid contaminating the original which the user may be reusing for other tweens + if (prepend) { + values.unshift(prepend) + } + values.push(values[1]) + prepend = values[values.length - 3] + } + } + _r1.length = _r2.length = _r3.length = 0 + i = props.length + while (--i > -1) { + p = props[i] + _corProps[p] = (correlate.indexOf(',' + p + ',') !== -1) + obj[p] = _parseAnchors(values, p, _corProps[p], prepend) + } + i = _r1.length + while (--i > -1) { + _r1[i] = Math.sqrt(_r1[i]) + _r2[i] = Math.sqrt(_r2[i]) + } + if (!basic) { + i = props.length + while (--i > -1) { + if (_corProps[p]) { + a = obj[props[i]] + l = a.length - 1 + for (j = 0; j < l; j++) { + r = (a[j + 1].da / _r2[j] + a[j].da / _r1[j]) || 0 + _r3[j] = (_r3[j] || 0) + r * r + } + } + } + i = _r3.length + while (--i > -1) { + _r3[i] = Math.sqrt(_r3[i]) + } + } + i = props.length + j = quadratic ? 4 : 1 + while (--i > -1) { + p = props[i] + a = obj[p] + _calculateControlPoints(a, curviness, quadratic, basic, _corProps[p]) // this method requires that _parseAnchors() and _setSegmentRatios() ran first so that _r1, _r2, and _r3 values are populated for all properties + if (seamless) { + a.splice(0, j) + a.splice(a.length - j, j) + } + } + return obj + }, + _parseBezierData = function (values, type, prepend) { + type = type || 'soft' + var obj = {}, + inc = (type === 'cubic') ? 3 : 2, + soft = (type === 'soft'), + props = [], + a, b, c, d, cur, i, j, l, p, cnt, tmp + if (soft && prepend) { + values = [prepend].concat(values) + } + if (values == null || values.length < inc + 1) { throw 'invalid Bezier data' } + for (p in values[0]) { + props.push(p) + } + i = props.length + while (--i > -1) { + p = props[i] + obj[p] = cur = [] + cnt = 0 + l = values.length + for (j = 0; j < l; j++) { + a = (prepend == null) ? values[j][p] : (typeof ((tmp = values[j][p])) === 'string' && tmp.charAt(1) === '=') ? prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)) : Number(tmp) + if (soft) { + if (j > 1) { + if (j < l - 1) { + cur[cnt++] = (a + cur[cnt - 2]) / 2 + } + } + } + cur[cnt++] = a + } + l = cnt - inc + 1 + cnt = 0 + for (j = 0; j < l; j += inc) { + a = cur[j] + b = cur[j + 1] + c = cur[j + 2] + d = (inc === 2) ? 0 : cur[j + 3] + cur[cnt++] = tmp = (inc === 3) ? new Segment(a, b, c, d) : new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c) + } + cur.length = cnt + } + return obj + }, + _addCubicLengths = function (a, steps, resolution) { + var inc = 1 / resolution, + j = a.length, + d, d1, s, da, ca, ba, p, i, inv, bez, index + while (--j > -1) { + bez = a[j] + s = bez.a + da = bez.d - s + ca = bez.c - s + ba = bez.b - s + d = d1 = 0 + for (i = 1; i <= resolution; i++) { + p = inc * i + inv = 1 - p + d = d1 - (d1 = (p * p * da + 3 * inv * (p * ca + inv * ba)) * p) + index = j * resolution + i - 1 + steps[index] = (steps[index] || 0) + d * d + } + } + }, + _parseLengthData = function (obj, resolution) { + resolution = resolution >> 0 || 6 + var a = [], + lengths = [], + d = 0, + total = 0, + threshold = resolution - 1, + segments = [], + curLS = [], // current length segments array + p, i, l, index + for (p in obj) { + _addCubicLengths(obj[p], a, resolution) + } + l = a.length + for (i = 0; i < l; i++) { + d += Math.sqrt(a[i]) + index = i % resolution + curLS[index] = d + if (index === threshold) { + total += d + index = (i / resolution) >> 0 + segments[index] = curLS + lengths[index] = total + d = 0 + curLS = [] + } + } + return {length: total, lengths: lengths, segments: segments} + }, + + BezierPlugin = _gsScope._gsDefine.plugin({ + propName: 'bezier', + priority: -1, + version: '1.3.8', + API: 2, + global: true, + + // gets called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. + init: function (target, vars, tween) { + this._target = target + if (vars instanceof Array) { + vars = {values: vars} + } + this._func = {} + this._mod = {} + this._props = [] + this._timeRes = (vars.timeResolution == null) ? 6 : parseInt(vars.timeResolution, 10) + var values = vars.values || [], + first = {}, + second = values[0], + autoRotate = vars.autoRotate || tween.vars.orientToBezier, + p, isFunc, i, j, prepend + + this._autoRotate = autoRotate ? (autoRotate instanceof Array) ? autoRotate : [['x', 'y', 'rotation', ((autoRotate === true) ? 0 : Number(autoRotate) || 0)]] : null + for (p in second) { + this._props.push(p) + } + + i = this._props.length + while (--i > -1) { + p = this._props[i] + + this._overwriteProps.push(p) + isFunc = this._func[p] = (typeof (target[p]) === 'function') + first[p] = (!isFunc) ? parseFloat(target[p]) : target[ ((p.indexOf('set') || typeof (target['get' + p.substr(3)]) !== 'function') ? p : 'get' + p.substr(3)) ]() + if (!prepend) { + if (first[p] !== values[0][p]) { + prepend = first + } + } + } + this._beziers = (vars.type !== 'cubic' && vars.type !== 'quadratic' && vars.type !== 'soft') ? bezierThrough(values, isNaN(vars.curviness) ? 1 : vars.curviness, false, (vars.type === 'thruBasic'), vars.correlate, prepend) : _parseBezierData(values, vars.type, first) + this._segCount = this._beziers[p].length + + if (this._timeRes) { + var ld = _parseLengthData(this._beziers, this._timeRes) + this._length = ld.length + this._lengths = ld.lengths + this._segments = ld.segments + this._l1 = this._li = this._s1 = this._si = 0 + this._l2 = this._lengths[0] + this._curSeg = this._segments[0] + this._s2 = this._curSeg[0] + this._prec = 1 / this._curSeg.length + } + + if ((autoRotate = this._autoRotate)) { + this._initialRotations = [] + if (!(autoRotate[0] instanceof Array)) { + this._autoRotate = autoRotate = [autoRotate] + } + i = autoRotate.length + while (--i > -1) { + for (j = 0; j < 3; j++) { + p = autoRotate[i][j] + this._func[p] = (typeof (target[p]) === 'function') ? target[ ((p.indexOf('set') || typeof (target['get' + p.substr(3)]) !== 'function') ? p : 'get' + p.substr(3)) ] : false + } + p = autoRotate[i][2] + this._initialRotations[i] = (this._func[p] ? this._func[p].call(this._target) : this._target[p]) || 0 + this._overwriteProps.push(p) + } + } + this._startRatio = tween.vars.runBackwards ? 1 : 0 // we determine the starting ratio when the tween inits which is always 0 unless the tween has runBackwards:true (indicating it's a from() tween) in which case it's 1. + return true + }, + + // called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) + set: function (v) { + var segments = this._segCount, + func = this._func, + target = this._target, + notStart = (v !== this._startRatio), + curIndex, inv, i, p, b, t, val, l, lengths, curSeg + if (!this._timeRes) { + curIndex = (v < 0) ? 0 : (v >= 1) ? segments - 1 : (segments * v) >> 0 + t = (v - (curIndex * (1 / segments))) * segments + } else { + lengths = this._lengths + curSeg = this._curSeg + v *= this._length + i = this._li + // find the appropriate segment (if the currently cached one isn't correct) + if (v > this._l2 && i < segments - 1) { + l = segments - 1 + while (i < l && (this._l2 = lengths[++i]) <= v) { } + this._l1 = lengths[i - 1] + this._li = i + this._curSeg = curSeg = this._segments[i] + this._s2 = curSeg[(this._s1 = this._si = 0)] + } else if (v < this._l1 && i > 0) { + while (i > 0 && (this._l1 = lengths[--i]) >= v) { } + if (i === 0 && v < this._l1) { + this._l1 = 0 + } else { + i++ + } + this._l2 = lengths[i] + this._li = i + this._curSeg = curSeg = this._segments[i] + this._s1 = curSeg[(this._si = curSeg.length - 1) - 1] || 0 + this._s2 = curSeg[this._si] + } + curIndex = i + // now find the appropriate sub-segment (we split it into the number of pieces that was defined by "precision" and measured each one) + v -= this._l1 + i = this._si + if (v > this._s2 && i < curSeg.length - 1) { + l = curSeg.length - 1 + while (i < l && (this._s2 = curSeg[++i]) <= v) { } + this._s1 = curSeg[i - 1] + this._si = i + } else if (v < this._s1 && i > 0) { + while (i > 0 && (this._s1 = curSeg[--i]) >= v) { } + if (i === 0 && v < this._s1) { + this._s1 = 0 + } else { + i++ + } + this._s2 = curSeg[i] + this._si = i + } + t = ((i + (v - this._s1) / (this._s2 - this._s1)) * this._prec) || 0 + } + inv = 1 - t + + i = this._props.length + while (--i > -1) { + p = this._props[i] + b = this._beziers[p][curIndex] + val = (t * t * b.da + 3 * inv * (t * b.ca + inv * b.ba)) * t + b.a + if (this._mod[p]) { + val = this._mod[p](val, target) + } + if (func[p]) { + target[p](val) + } else { + target[p] = val + } + } + + if (this._autoRotate) { + var ar = this._autoRotate, + b2, x1, y1, x2, y2, add, conv + i = ar.length + while (--i > -1) { + p = ar[i][2] + add = ar[i][3] || 0 + conv = (ar[i][4] === true) ? 1 : _RAD2DEG + b = this._beziers[ar[i][0]] + b2 = this._beziers[ar[i][1]] + + if (b && b2) { // in case one of the properties got overwritten. + b = b[curIndex] + b2 = b2[curIndex] + + x1 = b.a + (b.b - b.a) * t + x2 = b.b + (b.c - b.b) * t + x1 += (x2 - x1) * t + x2 += ((b.c + (b.d - b.c) * t) - x2) * t + + y1 = b2.a + (b2.b - b2.a) * t + y2 = b2.b + (b2.c - b2.b) * t + y1 += (y2 - y1) * t + y2 += ((b2.c + (b2.d - b2.c) * t) - y2) * t + + val = notStart ? Math.atan2(y2 - y1, x2 - x1) * conv + add : this._initialRotations[i] + + if (this._mod[p]) { + val = this._mod[p](val, target) // for modProps + } + + if (func[p]) { + target[p](val) + } else { + target[p] = val + } + } + } + } + } + }), + p = BezierPlugin.prototype + + BezierPlugin.bezierThrough = bezierThrough + BezierPlugin.cubicToQuadratic = cubicToQuadratic + BezierPlugin._autoCSS = true // indicates that this plugin can be inserted into the "css" object using the autoCSS feature of TweenLite + BezierPlugin.quadraticToCubic = function (a, b, c) { + return new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c) + } + + BezierPlugin._cssRegister = function () { + var CSSPlugin = _globals.CSSPlugin + if (!CSSPlugin) { + return + } + var _internals = CSSPlugin._internals, + _parseToProxy = _internals._parseToProxy, + _setPluginRatio = _internals._setPluginRatio, + CSSPropTween = _internals.CSSPropTween + _internals._registerComplexSpecialProp('bezier', {parser: function (t, e, prop, cssp, pt, plugin) { + if (e instanceof Array) { + e = {values: e} + } + plugin = new BezierPlugin() + var values = e.values, + l = values.length - 1, + pluginValues = [], + v = {}, + i, p, data + if (l < 0) { + return pt + } + for (i = 0; i <= l; i++) { + data = _parseToProxy(t, values[i], cssp, pt, plugin, (l !== i)) + pluginValues[i] = data.end + } + for (p in e) { + v[p] = e[p] // duplicate the vars object because we need to alter some things which would cause problems if the user plans to reuse the same vars object for another tween. + } + v.values = pluginValues + pt = new CSSPropTween(t, 'bezier', 0, 0, data.pt, 2) + pt.data = data + pt.plugin = plugin + pt.setRatio = _setPluginRatio + if (v.autoRotate === 0) { + v.autoRotate = true + } + if (v.autoRotate && !(v.autoRotate instanceof Array)) { + i = (v.autoRotate === true) ? 0 : Number(v.autoRotate) + v.autoRotate = (data.end.left != null) ? [['left', 'top', 'rotation', i, false]] : (data.end.x != null) ? [['x', 'y', 'rotation', i, false]] : false + } + if (v.autoRotate) { + if (!cssp._transform) { + cssp._enableTransforms(false) + } + data.autoRotate = cssp._target._gsTransform + data.proxy.rotation = data.autoRotate.rotation || 0 + cssp._overwriteProps.push('rotation') + } + plugin._onInitTween(data.proxy, v, cssp._tween) + return pt + }}) + } + + p._mod = function (lookup) { + var op = this._overwriteProps, + i = op.length, + val + while (--i > -1) { + val = lookup[op[i]] + if (val && typeof (val) === 'function') { + this._mod[op[i]] = val + } + } + } + + p._kill = function (lookup) { + var a = this._props, + p, i + for (p in this._beziers) { + if (p in lookup) { + delete this._beziers[p] + delete this._func[p] + i = a.length + while (--i > -1) { + if (a[i] === p) { + a.splice(i, 1) + } + } + } + } + a = this._autoRotate + if (a) { + i = a.length + while (--i > -1) { + if (lookup[a[i][2]]) { + a.splice(i, 1) + } + } + } + return this._super._kill.call(this, lookup) + } + }()) + + /* * ---------------------------------------------------------------- * CSSPlugin * ---------------------------------------------------------------- */ - _gsScope._gsDefine("plugins.CSSPlugin", ["plugins.TweenPlugin","TweenLite"], function(TweenPlugin, TweenLite) { - - /** @constructor **/ - var CSSPlugin = function() { - TweenPlugin.call(this, "css"); - this._overwriteProps.length = 0; - this.setRatio = CSSPlugin.prototype.setRatio; //speed optimization (avoid prototype lookup on this "hot" method) - }, - _globals = _gsScope._gsDefine.globals, - _hasPriority, //turns true whenever a CSSPropTween instance is created that has a priority other than 0. This helps us discern whether or not we should spend the time organizing the linked list or not after a CSSPlugin's _onInitTween() method is called. - _suffixMap, //we set this in _onInitTween() each time as a way to have a persistent variable we can use in other methods like _parse() without having to pass it around as a parameter and we keep _parse() decoupled from a particular CSSPlugin instance - _cs, //computed style (we store this in a shared variable to conserve memory and make minification tighter - _overwriteProps, //alias to the currently instantiating CSSPlugin's _overwriteProps array. We use this closure in order to avoid having to pass a reference around from method to method and aid in minification. - _specialProps = {}, - p = CSSPlugin.prototype = new TweenPlugin("css"); - - p.constructor = CSSPlugin; - CSSPlugin.version = "1.20.0"; - CSSPlugin.API = 2; - CSSPlugin.defaultTransformPerspective = 0; - CSSPlugin.defaultSkewType = "compensated"; - CSSPlugin.defaultSmoothOrigin = true; - p = "px"; //we'll reuse the "p" variable to keep file size down - CSSPlugin.suffixMap = {top:p, right:p, bottom:p, left:p, width:p, height:p, fontSize:p, padding:p, margin:p, perspective:p, lineHeight:""}; - - - var _numExp = /(?:\-|\.|\b)(\d|\.|e\-)+/g, - _relNumExp = /(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g, - _valuesExp = /(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi, //finds all the values that begin with numbers or += or -= and then a number. Includes suffixes. We use this to split complex values apart like "1px 5px 20px rgb(255,102,51)" - _NaNExp = /(?![+-]?\d*\.?\d+|[+-]|e[+-]\d+)[^0-9]/g, //also allows scientific notation and doesn't kill the leading -/+ in -= and += - _suffixExp = /(?:\d|\-|\+|=|#|\.)*/g, - _opacityExp = /opacity *= *([^)]*)/i, - _opacityValExp = /opacity:([^;]*)/i, - _alphaFilterExp = /alpha\(opacity *=.+?\)/i, - _rgbhslExp = /^(rgb|hsl)/, - _capsExp = /([A-Z])/g, - _camelExp = /-([a-z])/gi, - _urlExp = /(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi, //for pulling out urls from url(...) or url("...") strings (some browsers wrap urls in quotes, some don't when reporting things like backgroundImage) - _camelFunc = function(s, g) { return g.toUpperCase(); }, - _horizExp = /(?:Left|Right|Width)/i, - _ieGetMatrixExp = /(M11|M12|M21|M22)=[\d\-\.e]+/gi, - _ieSetMatrixExp = /progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i, - _commasOutsideParenExp = /,(?=[^\)]*(?:\(|$))/gi, //finds any commas that are not within parenthesis - _complexExp = /[\s,\(]/i, //for testing a string to find if it has a space, comma, or open parenthesis (clues that it's a complex value) - _DEG2RAD = Math.PI / 180, - _RAD2DEG = 180 / Math.PI, - _forcePT = {}, - _dummyElement = {style:{}}, - _doc = _gsScope.document || {createElement: function() {return _dummyElement;}}, - _createElement = function(type, ns) { - return _doc.createElementNS ? _doc.createElementNS(ns || "http://www.w3.org/1999/xhtml", type) : _doc.createElement(type); - }, - _tempDiv = _createElement("div"), - _tempImg = _createElement("img"), - _internals = CSSPlugin._internals = {_specialProps:_specialProps}, //provides a hook to a few internal methods that we need to access from inside other plugins - _agent = (_gsScope.navigator || {}).userAgent || "", - _autoRound, - _reqSafariFix, //we won't apply the Safari transform fix until we actually come across a tween that affects a transform property (to maintain best performance). - - _isSafari, - _isFirefox, //Firefox has a bug that causes 3D transformed elements to randomly disappear unless a repaint is forced after each update on each element. - _isSafariLT6, //Safari (and Android 4 which uses a flavor of Safari) has a bug that prevents changes to "top" and "left" properties from rendering properly if changed on the same frame as a transform UNLESS we set the element's WebkitBackfaceVisibility to hidden (weird, I know). Doing this for Android 3 and earlier seems to actually cause other problems, though (fun!) - _ieVers, - _supportsOpacity = (function() { //we set _isSafari, _ieVers, _isFirefox, and _supportsOpacity all in one function here to reduce file size slightly, especially in the minified version. - var i = _agent.indexOf("Android"), - a = _createElement("a"); - _isSafari = (_agent.indexOf("Safari") !== -1 && _agent.indexOf("Chrome") === -1 && (i === -1 || parseFloat(_agent.substr(i+8, 2)) > 3)); - _isSafariLT6 = (_isSafari && (parseFloat(_agent.substr(_agent.indexOf("Version/")+8, 2)) < 6)); - _isFirefox = (_agent.indexOf("Firefox") !== -1); - if ((/MSIE ([0-9]{1,}[\.0-9]{0,})/).exec(_agent) || (/Trident\/.*rv:([0-9]{1,}[\.0-9]{0,})/).exec(_agent)) { - _ieVers = parseFloat( RegExp.$1 ); - } - if (!a) { - return false; - } - a.style.cssText = "top:1px;opacity:.55;"; - return /^0.55/.test(a.style.opacity); - }()), - _getIEOpacity = function(v) { - return (_opacityExp.test( ((typeof(v) === "string") ? v : (v.currentStyle ? v.currentStyle.filter : v.style.filter) || "") ) ? ( parseFloat( RegExp.$1 ) / 100 ) : 1); - }, - _log = function(s) {//for logging messages, but in a way that won't throw errors in old versions of IE. - if (_gsScope.console) { - console.log(s); - } - }, - _target, //when initting a CSSPlugin, we set this variable so that we can access it from within many other functions without having to pass it around as params - _index, //when initting a CSSPlugin, we set this variable so that we can access it from within many other functions without having to pass it around as params - - _prefixCSS = "", //the non-camelCase vendor prefix like "-o-", "-moz-", "-ms-", or "-webkit-" - _prefix = "", //camelCase vendor prefix like "O", "ms", "Webkit", or "Moz". - - // @private feed in a camelCase property name like "transform" and it will check to see if it is valid as-is or if it needs a vendor prefix. It returns the corrected camelCase property name (i.e. "WebkitTransform" or "MozTransform" or "transform" or null if no such property is found, like if the browser is IE8 or before, "transform" won't be found at all) - _checkPropPrefix = function(p, e) { - e = e || _tempDiv; - var s = e.style, - a, i; - if (s[p] !== undefined) { - return p; - } - p = p.charAt(0).toUpperCase() + p.substr(1); - a = ["O","Moz","ms","Ms","Webkit"]; - i = 5; - while (--i > -1 && s[a[i]+p] === undefined) { } - if (i >= 0) { - _prefix = (i === 3) ? "ms" : a[i]; - _prefixCSS = "-" + _prefix.toLowerCase() + "-"; - return _prefix + p; - } - return null; - }, - - _getComputedStyle = _doc.defaultView ? _doc.defaultView.getComputedStyle : function() {}, - - /** + _gsScope._gsDefine('plugins.CSSPlugin', ['plugins.TweenPlugin', 'TweenLite'], function (TweenPlugin, TweenLite) { + /** @constructor **/ + var CSSPlugin = function () { + TweenPlugin.call(this, 'css') + this._overwriteProps.length = 0 + this.setRatio = CSSPlugin.prototype.setRatio // speed optimization (avoid prototype lookup on this "hot" method) + }, + _globals = _gsScope._gsDefine.globals, + _hasPriority, // turns true whenever a CSSPropTween instance is created that has a priority other than 0. This helps us discern whether or not we should spend the time organizing the linked list or not after a CSSPlugin's _onInitTween() method is called. + _suffixMap, // we set this in _onInitTween() each time as a way to have a persistent variable we can use in other methods like _parse() without having to pass it around as a parameter and we keep _parse() decoupled from a particular CSSPlugin instance + _cs, // computed style (we store this in a shared variable to conserve memory and make minification tighter + _overwriteProps, // alias to the currently instantiating CSSPlugin's _overwriteProps array. We use this closure in order to avoid having to pass a reference around from method to method and aid in minification. + _specialProps = {}, + p = CSSPlugin.prototype = new TweenPlugin('css') + + p.constructor = CSSPlugin + CSSPlugin.version = '1.20.0' + CSSPlugin.API = 2 + CSSPlugin.defaultTransformPerspective = 0 + CSSPlugin.defaultSkewType = 'compensated' + CSSPlugin.defaultSmoothOrigin = true + p = 'px' // we'll reuse the "p" variable to keep file size down + CSSPlugin.suffixMap = {top: p, right: p, bottom: p, left: p, width: p, height: p, fontSize: p, padding: p, margin: p, perspective: p, lineHeight: ''} + + var _numExp = /(?:\-|\.|\b)(\d|\.|e\-)+/g, + _relNumExp = /(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g, + _valuesExp = /(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi, // finds all the values that begin with numbers or += or -= and then a number. Includes suffixes. We use this to split complex values apart like "1px 5px 20px rgb(255,102,51)" + _NaNExp = /(?![+-]?\d*\.?\d+|[+-]|e[+-]\d+)[^0-9]/g, // also allows scientific notation and doesn't kill the leading -/+ in -= and += + _suffixExp = /(?:\d|\-|\+|=|#|\.)*/g, + _opacityExp = /opacity *= *([^)]*)/i, + _opacityValExp = /opacity:([^;]*)/i, + _alphaFilterExp = /alpha\(opacity *=.+?\)/i, + _rgbhslExp = /^(rgb|hsl)/, + _capsExp = /([A-Z])/g, + _camelExp = /-([a-z])/gi, + _urlExp = /(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi, // for pulling out urls from url(...) or url("...") strings (some browsers wrap urls in quotes, some don't when reporting things like backgroundImage) + _camelFunc = function (s, g) { return g.toUpperCase() }, + _horizExp = /(?:Left|Right|Width)/i, + _ieGetMatrixExp = /(M11|M12|M21|M22)=[\d\-\.e]+/gi, + _ieSetMatrixExp = /progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i, + _commasOutsideParenExp = /,(?=[^\)]*(?:\(|$))/gi, // finds any commas that are not within parenthesis + _complexExp = /[\s,\(]/i, // for testing a string to find if it has a space, comma, or open parenthesis (clues that it's a complex value) + _DEG2RAD = Math.PI / 180, + _RAD2DEG = 180 / Math.PI, + _forcePT = {}, + _dummyElement = {style: {}}, + _doc = _gsScope.document || {createElement: function () { return _dummyElement }}, + _createElement = function (type, ns) { + return _doc.createElementNS ? _doc.createElementNS(ns || 'http://www.w3.org/1999/xhtml', type) : _doc.createElement(type) + }, + _tempDiv = _createElement('div'), + _tempImg = _createElement('img'), + _internals = CSSPlugin._internals = {_specialProps: _specialProps}, // provides a hook to a few internal methods that we need to access from inside other plugins + _agent = (_gsScope.navigator || {}).userAgent || '', + _autoRound, + _reqSafariFix, // we won't apply the Safari transform fix until we actually come across a tween that affects a transform property (to maintain best performance). + + _isSafari, + _isFirefox, // Firefox has a bug that causes 3D transformed elements to randomly disappear unless a repaint is forced after each update on each element. + _isSafariLT6, // Safari (and Android 4 which uses a flavor of Safari) has a bug that prevents changes to "top" and "left" properties from rendering properly if changed on the same frame as a transform UNLESS we set the element's WebkitBackfaceVisibility to hidden (weird, I know). Doing this for Android 3 and earlier seems to actually cause other problems, though (fun!) + _ieVers, + _supportsOpacity = (function () { // we set _isSafari, _ieVers, _isFirefox, and _supportsOpacity all in one function here to reduce file size slightly, especially in the minified version. + var i = _agent.indexOf('Android'), + a = _createElement('a') + _isSafari = (_agent.indexOf('Safari') !== -1 && _agent.indexOf('Chrome') === -1 && (i === -1 || parseFloat(_agent.substr(i + 8, 2)) > 3)) + _isSafariLT6 = (_isSafari && (parseFloat(_agent.substr(_agent.indexOf('Version/') + 8, 2)) < 6)) + _isFirefox = (_agent.indexOf('Firefox') !== -1) + if ((/MSIE ([0-9]{1,}[\.0-9]{0,})/).exec(_agent) || (/Trident\/.*rv:([0-9]{1,}[\.0-9]{0,})/).exec(_agent)) { + _ieVers = parseFloat(RegExp.$1) + } + if (!a) { + return false + } + a.style.cssText = 'top:1px;opacity:.55;' + return /^0.55/.test(a.style.opacity) + }()), + _getIEOpacity = function (v) { + return (_opacityExp.test(((typeof (v) === 'string') ? v : (v.currentStyle ? v.currentStyle.filter : v.style.filter) || '')) ? (parseFloat(RegExp.$1) / 100) : 1) + }, + _log = function (s) { // for logging messages, but in a way that won't throw errors in old versions of IE. + if (_gsScope.console) { + console.log(s) + } + }, + _target, // when initting a CSSPlugin, we set this variable so that we can access it from within many other functions without having to pass it around as params + _index, // when initting a CSSPlugin, we set this variable so that we can access it from within many other functions without having to pass it around as params + + _prefixCSS = '', // the non-camelCase vendor prefix like "-o-", "-moz-", "-ms-", or "-webkit-" + _prefix = '', // camelCase vendor prefix like "O", "ms", "Webkit", or "Moz". + + // @private feed in a camelCase property name like "transform" and it will check to see if it is valid as-is or if it needs a vendor prefix. It returns the corrected camelCase property name (i.e. "WebkitTransform" or "MozTransform" or "transform" or null if no such property is found, like if the browser is IE8 or before, "transform" won't be found at all) + _checkPropPrefix = function (p, e) { + e = e || _tempDiv + var s = e.style, + a, i + if (s[p] !== undefined) { + return p + } + p = p.charAt(0).toUpperCase() + p.substr(1) + a = ['O', 'Moz', 'ms', 'Ms', 'Webkit'] + i = 5 + while (--i > -1 && s[a[i] + p] === undefined) { } + if (i >= 0) { + _prefix = (i === 3) ? 'ms' : a[i] + _prefixCSS = '-' + _prefix.toLowerCase() + '-' + return _prefix + p + } + return null + }, + + _getComputedStyle = _doc.defaultView ? _doc.defaultView.getComputedStyle : function () {}, + + /** * @private Returns the css style for a particular property of an element. For example, to get whatever the current "left" css value for an element with an ID of "myElement", you could do: * var currentLeft = CSSPlugin.getStyle( document.getElementById("myElement"), "left"); * @@ -2671,22 +2717,24 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {string=} dflt Default value that should be returned in the place of null, "none", "auto" or "auto auto". * @return {?string} The current property value */ - _getStyle = CSSPlugin.getStyle = function(t, p, cs, calc, dflt) { - var rv; - if (!_supportsOpacity) if (p === "opacity") { //several versions of IE don't use the standard "opacity" property - they use things like filter:alpha(opacity=50), so we parse that here. - return _getIEOpacity(t); - } - if (!calc && t.style[p]) { - rv = t.style[p]; - } else if ((cs = cs || _getComputedStyle(t))) { - rv = cs[p] || cs.getPropertyValue(p) || cs.getPropertyValue(p.replace(_capsExp, "-$1").toLowerCase()); - } else if (t.currentStyle) { - rv = t.currentStyle[p]; - } - return (dflt != null && (!rv || rv === "none" || rv === "auto" || rv === "auto auto")) ? dflt : rv; - }, - - /** + _getStyle = CSSPlugin.getStyle = function (t, p, cs, calc, dflt) { + var rv + if (!_supportsOpacity) { + if (p === 'opacity') { // several versions of IE don't use the standard "opacity" property - they use things like filter:alpha(opacity=50), so we parse that here. + return _getIEOpacity(t) + } + } + if (!calc && t.style[p]) { + rv = t.style[p] + } else if ((cs = cs || _getComputedStyle(t))) { + rv = cs[p] || cs.getPropertyValue(p) || cs.getPropertyValue(p.replace(_capsExp, '-$1').toLowerCase()) + } else if (t.currentStyle) { + rv = t.currentStyle[p] + } + return (dflt != null && (!rv || rv === 'none' || rv === 'auto' || rv === 'auto auto')) ? dflt : rv + }, + + /** * @private Pass the target element, the property name, the numeric value, and the suffix (like "%", "em", "px", etc.) and it will spit back the equivalent pixel number. * @param {!Object} t Target element * @param {!string} p Property name (like "left", "top", "marginLeft", etc.) @@ -2695,233 +2743,243 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {boolean=} recurse If true, the call is a recursive one. In some browsers (like IE7/8), occasionally the value isn't accurately reported initially, but if we run the function again it will take effect. * @return {number} value in pixels */ - _convertToPixels = _internals.convertToPixels = function(t, p, v, sfx, recurse) { - if (sfx === "px" || (!sfx && p !== "lineHeight")) { return v; } - if (sfx === "auto" || !v) { return 0; } - var horiz = _horizExp.test(p), - node = t, - style = _tempDiv.style, - neg = (v < 0), - precise = (v === 1), - pix, cache, time; - if (neg) { - v = -v; - } - if (precise) { - v *= 100; - } - if (p === "lineHeight" && !sfx) { //special case of when a simple lineHeight (without a unit) is used. Set it to the value, read back the computed value, and then revert. - cache = _getComputedStyle(t).lineHeight; - t.style.lineHeight = v; - pix = parseFloat(_getComputedStyle(t).lineHeight); - t.style.lineHeight = cache; - } else if (sfx === "%" && p.indexOf("border") !== -1) { - pix = (v / 100) * (horiz ? t.clientWidth : t.clientHeight); - } else { - style.cssText = "border:0 solid red;position:" + _getStyle(t, "position") + ";line-height:0;"; - if (sfx === "%" || !node.appendChild || sfx.charAt(0) === "v" || sfx === "rem") { - node = t.parentNode || _doc.body; - if (_getStyle(node, "display").indexOf("flex") !== -1) { //Edge and IE11 have a bug that causes offsetWidth to report as 0 if the container has display:flex and the child is position:relative. Switching to position: absolute solves it. - style.position = "absolute"; - } - cache = node._gsCache; - time = TweenLite.ticker.frame; - if (cache && horiz && cache.time === time) { //performance optimization: we record the width of elements along with the ticker frame so that we can quickly get it again on the same tick (seems relatively safe to assume it wouldn't change on the same tick) - return cache.width * v / 100; - } - style[(horiz ? "width" : "height")] = v + sfx; - } else { - style[(horiz ? "borderLeftWidth" : "borderTopWidth")] = v + sfx; - } - node.appendChild(_tempDiv); - pix = parseFloat(_tempDiv[(horiz ? "offsetWidth" : "offsetHeight")]); - node.removeChild(_tempDiv); - if (horiz && sfx === "%" && CSSPlugin.cacheWidths !== false) { - cache = node._gsCache = node._gsCache || {}; - cache.time = time; - cache.width = pix / v * 100; - } - if (pix === 0 && !recurse) { - pix = _convertToPixels(t, p, v, sfx, true); - } - } - if (precise) { - pix /= 100; - } - return neg ? -pix : pix; - }, - _calculateOffset = _internals.calculateOffset = function(t, p, cs) { //for figuring out "top" or "left" in px when it's "auto". We need to factor in margin with the offsetLeft/offsetTop - if (_getStyle(t, "position", cs) !== "absolute") { return 0; } - var dim = ((p === "left") ? "Left" : "Top"), - v = _getStyle(t, "margin" + dim, cs); - return t["offset" + dim] - (_convertToPixels(t, p, parseFloat(v), v.replace(_suffixExp, "")) || 0); - }, - - // @private returns at object containing ALL of the style properties in camelCase and their associated values. - _getAllStyles = function(t, cs) { - var s = {}, - i, tr, p; - if ((cs = cs || _getComputedStyle(t, null))) { - if ((i = cs.length)) { - while (--i > -1) { - p = cs[i]; - if (p.indexOf("-transform") === -1 || _transformPropCSS === p) { //Some webkit browsers duplicate transform values, one non-prefixed and one prefixed ("transform" and "WebkitTransform"), so we must weed out the extra one here. - s[p.replace(_camelExp, _camelFunc)] = cs.getPropertyValue(p); - } - } - } else { //some browsers behave differently - cs.length is always 0, so we must do a for...in loop. - for (i in cs) { - if (i.indexOf("Transform") === -1 || _transformProp === i) { //Some webkit browsers duplicate transform values, one non-prefixed and one prefixed ("transform" and "WebkitTransform"), so we must weed out the extra one here. - s[i] = cs[i]; - } - } - } - } else if ((cs = t.currentStyle || t.style)) { - for (i in cs) { - if (typeof(i) === "string" && s[i] === undefined) { - s[i.replace(_camelExp, _camelFunc)] = cs[i]; - } - } - } - if (!_supportsOpacity) { - s.opacity = _getIEOpacity(t); - } - tr = _getTransform(t, cs, false); - s.rotation = tr.rotation; - s.skewX = tr.skewX; - s.scaleX = tr.scaleX; - s.scaleY = tr.scaleY; - s.x = tr.x; - s.y = tr.y; - if (_supports3D) { - s.z = tr.z; - s.rotationX = tr.rotationX; - s.rotationY = tr.rotationY; - s.scaleZ = tr.scaleZ; - } - if (s.filters) { - delete s.filters; - } - return s; - }, - - // @private analyzes two style objects (as returned by _getAllStyles()) and only looks for differences between them that contain tweenable values (like a number or color). It returns an object with a "difs" property which refers to an object containing only those isolated properties and values for tweening, and a "firstMPT" property which refers to the first MiniPropTween instance in a linked list that recorded all the starting values of the different properties so that we can revert to them at the end or beginning of the tween - we don't want the cascading to get messed up. The forceLookup parameter is an optional generic object with properties that should be forced into the results - this is necessary for className tweens that are overwriting others because imagine a scenario where a rollover/rollout adds/removes a class and the user swipes the mouse over the target SUPER fast, thus nothing actually changed yet and the subsequent comparison of the properties would indicate they match (especially when px rounding is taken into consideration), thus no tweening is necessary even though it SHOULD tween and remove those properties after the tween (otherwise the inline styles will contaminate things). See the className SpecialProp code for details. - _cssDif = function(t, s1, s2, vars, forceLookup) { - var difs = {}, - style = t.style, - val, p, mpt; - for (p in s2) { - if (p !== "cssText") if (p !== "length") if (isNaN(p)) if (s1[p] !== (val = s2[p]) || (forceLookup && forceLookup[p])) if (p.indexOf("Origin") === -1) if (typeof(val) === "number" || typeof(val) === "string") { - difs[p] = (val === "auto" && (p === "left" || p === "top")) ? _calculateOffset(t, p) : ((val === "" || val === "auto" || val === "none") && typeof(s1[p]) === "string" && s1[p].replace(_NaNExp, "") !== "") ? 0 : val; //if the ending value is defaulting ("" or "auto"), we check the starting value and if it can be parsed into a number (a string which could have a suffix too, like 700px), then we swap in 0 for "" or "auto" so that things actually tween. - if (style[p] !== undefined) { //for className tweens, we must remember which properties already existed inline - the ones that didn't should be removed when the tween isn't in progress because they were only introduced to facilitate the transition between classes. - mpt = new MiniPropTween(style, p, style[p], mpt); - } - } - } - if (vars) { - for (p in vars) { //copy properties (except className) - if (p !== "className") { - difs[p] = vars[p]; - } - } - } - return {difs:difs, firstMPT:mpt}; - }, - _dimensions = {width:["Left","Right"], height:["Top","Bottom"]}, - _margins = ["marginLeft","marginRight","marginTop","marginBottom"], - - /** + _convertToPixels = _internals.convertToPixels = function (t, p, v, sfx, recurse) { + if (sfx === 'px' || (!sfx && p !== 'lineHeight')) { return v } + if (sfx === 'auto' || !v) { return 0 } + var horiz = _horizExp.test(p), + node = t, + style = _tempDiv.style, + neg = (v < 0), + precise = (v === 1), + pix, cache, time + if (neg) { + v = -v + } + if (precise) { + v *= 100 + } + if (p === 'lineHeight' && !sfx) { // special case of when a simple lineHeight (without a unit) is used. Set it to the value, read back the computed value, and then revert. + cache = _getComputedStyle(t).lineHeight + t.style.lineHeight = v + pix = parseFloat(_getComputedStyle(t).lineHeight) + t.style.lineHeight = cache + } else if (sfx === '%' && p.indexOf('border') !== -1) { + pix = (v / 100) * (horiz ? t.clientWidth : t.clientHeight) + } else { + style.cssText = 'border:0 solid red;position:' + _getStyle(t, 'position') + ';line-height:0;' + if (sfx === '%' || !node.appendChild || sfx.charAt(0) === 'v' || sfx === 'rem') { + node = t.parentNode || _doc.body + if (_getStyle(node, 'display').indexOf('flex') !== -1) { // Edge and IE11 have a bug that causes offsetWidth to report as 0 if the container has display:flex and the child is position:relative. Switching to position: absolute solves it. + style.position = 'absolute' + } + cache = node._gsCache + time = TweenLite.ticker.frame + if (cache && horiz && cache.time === time) { // performance optimization: we record the width of elements along with the ticker frame so that we can quickly get it again on the same tick (seems relatively safe to assume it wouldn't change on the same tick) + return cache.width * v / 100 + } + style[(horiz ? 'width' : 'height')] = v + sfx + } else { + style[(horiz ? 'borderLeftWidth' : 'borderTopWidth')] = v + sfx + } + node.appendChild(_tempDiv) + pix = parseFloat(_tempDiv[(horiz ? 'offsetWidth' : 'offsetHeight')]) + node.removeChild(_tempDiv) + if (horiz && sfx === '%' && CSSPlugin.cacheWidths !== false) { + cache = node._gsCache = node._gsCache || {} + cache.time = time + cache.width = pix / v * 100 + } + if (pix === 0 && !recurse) { + pix = _convertToPixels(t, p, v, sfx, true) + } + } + if (precise) { + pix /= 100 + } + return neg ? -pix : pix + }, + _calculateOffset = _internals.calculateOffset = function (t, p, cs) { // for figuring out "top" or "left" in px when it's "auto". We need to factor in margin with the offsetLeft/offsetTop + if (_getStyle(t, 'position', cs) !== 'absolute') { return 0 } + var dim = ((p === 'left') ? 'Left' : 'Top'), + v = _getStyle(t, 'margin' + dim, cs) + return t['offset' + dim] - (_convertToPixels(t, p, parseFloat(v), v.replace(_suffixExp, '')) || 0) + }, + + // @private returns at object containing ALL of the style properties in camelCase and their associated values. + _getAllStyles = function (t, cs) { + var s = {}, + i, tr, p + if ((cs = cs || _getComputedStyle(t, null))) { + if ((i = cs.length)) { + while (--i > -1) { + p = cs[i] + if (p.indexOf('-transform') === -1 || _transformPropCSS === p) { // Some webkit browsers duplicate transform values, one non-prefixed and one prefixed ("transform" and "WebkitTransform"), so we must weed out the extra one here. + s[p.replace(_camelExp, _camelFunc)] = cs.getPropertyValue(p) + } + } + } else { // some browsers behave differently - cs.length is always 0, so we must do a for...in loop. + for (i in cs) { + if (i.indexOf('Transform') === -1 || _transformProp === i) { // Some webkit browsers duplicate transform values, one non-prefixed and one prefixed ("transform" and "WebkitTransform"), so we must weed out the extra one here. + s[i] = cs[i] + } + } + } + } else if ((cs = t.currentStyle || t.style)) { + for (i in cs) { + if (typeof (i) === 'string' && s[i] === undefined) { + s[i.replace(_camelExp, _camelFunc)] = cs[i] + } + } + } + if (!_supportsOpacity) { + s.opacity = _getIEOpacity(t) + } + tr = _getTransform(t, cs, false) + s.rotation = tr.rotation + s.skewX = tr.skewX + s.scaleX = tr.scaleX + s.scaleY = tr.scaleY + s.x = tr.x + s.y = tr.y + if (_supports3D) { + s.z = tr.z + s.rotationX = tr.rotationX + s.rotationY = tr.rotationY + s.scaleZ = tr.scaleZ + } + if (s.filters) { + delete s.filters + } + return s + }, + + // @private analyzes two style objects (as returned by _getAllStyles()) and only looks for differences between them that contain tweenable values (like a number or color). It returns an object with a "difs" property which refers to an object containing only those isolated properties and values for tweening, and a "firstMPT" property which refers to the first MiniPropTween instance in a linked list that recorded all the starting values of the different properties so that we can revert to them at the end or beginning of the tween - we don't want the cascading to get messed up. The forceLookup parameter is an optional generic object with properties that should be forced into the results - this is necessary for className tweens that are overwriting others because imagine a scenario where a rollover/rollout adds/removes a class and the user swipes the mouse over the target SUPER fast, thus nothing actually changed yet and the subsequent comparison of the properties would indicate they match (especially when px rounding is taken into consideration), thus no tweening is necessary even though it SHOULD tween and remove those properties after the tween (otherwise the inline styles will contaminate things). See the className SpecialProp code for details. + _cssDif = function (t, s1, s2, vars, forceLookup) { + var difs = {}, + style = t.style, + val, p, mpt + for (p in s2) { + if (p !== 'cssText') { + if (p !== 'length') { + if (isNaN(p)) { + if (s1[p] !== (val = s2[p]) || (forceLookup && forceLookup[p])) { + if (p.indexOf('Origin') === -1) { + if (typeof (val) === 'number' || typeof (val) === 'string') { + difs[p] = (val === 'auto' && (p === 'left' || p === 'top')) ? _calculateOffset(t, p) : ((val === '' || val === 'auto' || val === 'none') && typeof (s1[p]) === 'string' && s1[p].replace(_NaNExp, '') !== '') ? 0 : val // if the ending value is defaulting ("" or "auto"), we check the starting value and if it can be parsed into a number (a string which could have a suffix too, like 700px), then we swap in 0 for "" or "auto" so that things actually tween. + if (style[p] !== undefined) { // for className tweens, we must remember which properties already existed inline - the ones that didn't should be removed when the tween isn't in progress because they were only introduced to facilitate the transition between classes. + mpt = new MiniPropTween(style, p, style[p], mpt) + } + } + } + } + } + } + } + } + if (vars) { + for (p in vars) { // copy properties (except className) + if (p !== 'className') { + difs[p] = vars[p] + } + } + } + return {difs: difs, firstMPT: mpt} + }, + _dimensions = {width: ['Left', 'Right'], height: ['Top', 'Bottom']}, + _margins = ['marginLeft', 'marginRight', 'marginTop', 'marginBottom'], + + /** * @private Gets the width or height of an element * @param {!Object} t Target element * @param {!string} p Property name ("width" or "height") * @param {Object=} cs Computed style object (if one exists). Just a speed optimization. * @return {number} Dimension (in pixels) */ - _getDimension = function(t, p, cs) { - if ((t.nodeName + "").toLowerCase() === "svg") { //Chrome no longer supports offsetWidth/offsetHeight on SVG elements. - return (cs || _getComputedStyle(t))[p] || 0; - } else if (t.getCTM && _isSVG(t)) { - return t.getBBox()[p] || 0; - } - var v = parseFloat((p === "width") ? t.offsetWidth : t.offsetHeight), - a = _dimensions[p], - i = a.length; - cs = cs || _getComputedStyle(t, null); - while (--i > -1) { - v -= parseFloat( _getStyle(t, "padding" + a[i], cs, true) ) || 0; - v -= parseFloat( _getStyle(t, "border" + a[i] + "Width", cs, true) ) || 0; - } - return v; - }, - - // @private Parses position-related complex strings like "top left" or "50px 10px" or "70% 20%", etc. which are used for things like transformOrigin or backgroundPosition. Optionally decorates a supplied object (recObj) with the following properties: "ox" (offsetX), "oy" (offsetY), "oxp" (if true, "ox" is a percentage not a pixel value), and "oxy" (if true, "oy" is a percentage not a pixel value) - _parsePosition = function(v, recObj) { - if (v === "contain" || v === "auto" || v === "auto auto") { //note: Firefox uses "auto auto" as default whereas Chrome uses "auto". - return v + " "; - } - if (v == null || v === "") { - v = "0 0"; - } - var a = v.split(" "), - x = (v.indexOf("left") !== -1) ? "0%" : (v.indexOf("right") !== -1) ? "100%" : a[0], - y = (v.indexOf("top") !== -1) ? "0%" : (v.indexOf("bottom") !== -1) ? "100%" : a[1], - i; - if (a.length > 3 && !recObj) { //multiple positions - a = v.split(", ").join(",").split(","); - v = []; - for (i = 0; i < a.length; i++) { - v.push(_parsePosition(a[i])); - } - return v.join(","); - } - if (y == null) { - y = (x === "center") ? "50%" : "0"; - } else if (y === "center") { - y = "50%"; - } - if (x === "center" || (isNaN(parseFloat(x)) && (x + "").indexOf("=") === -1)) { //remember, the user could flip-flop the values and say "bottom center" or "center bottom", etc. "center" is ambiguous because it could be used to describe horizontal or vertical, hence the isNaN(). If there's an "=" sign in the value, it's relative. - x = "50%"; - } - v = x + " " + y + ((a.length > 2) ? " " + a[2] : ""); - if (recObj) { - recObj.oxp = (x.indexOf("%") !== -1); - recObj.oyp = (y.indexOf("%") !== -1); - recObj.oxr = (x.charAt(1) === "="); - recObj.oyr = (y.charAt(1) === "="); - recObj.ox = parseFloat(x.replace(_NaNExp, "")); - recObj.oy = parseFloat(y.replace(_NaNExp, "")); - recObj.v = v; - } - return recObj || v; - }, - - /** + _getDimension = function (t, p, cs) { + if ((t.nodeName + '').toLowerCase() === 'svg') { // Chrome no longer supports offsetWidth/offsetHeight on SVG elements. + return (cs || _getComputedStyle(t))[p] || 0 + } else if (t.getCTM && _isSVG(t)) { + return t.getBBox()[p] || 0 + } + var v = parseFloat((p === 'width') ? t.offsetWidth : t.offsetHeight), + a = _dimensions[p], + i = a.length + cs = cs || _getComputedStyle(t, null) + while (--i > -1) { + v -= parseFloat(_getStyle(t, 'padding' + a[i], cs, true)) || 0 + v -= parseFloat(_getStyle(t, 'border' + a[i] + 'Width', cs, true)) || 0 + } + return v + }, + + // @private Parses position-related complex strings like "top left" or "50px 10px" or "70% 20%", etc. which are used for things like transformOrigin or backgroundPosition. Optionally decorates a supplied object (recObj) with the following properties: "ox" (offsetX), "oy" (offsetY), "oxp" (if true, "ox" is a percentage not a pixel value), and "oxy" (if true, "oy" is a percentage not a pixel value) + _parsePosition = function (v, recObj) { + if (v === 'contain' || v === 'auto' || v === 'auto auto') { // note: Firefox uses "auto auto" as default whereas Chrome uses "auto". + return v + ' ' + } + if (v == null || v === '') { + v = '0 0' + } + var a = v.split(' '), + x = (v.indexOf('left') !== -1) ? '0%' : (v.indexOf('right') !== -1) ? '100%' : a[0], + y = (v.indexOf('top') !== -1) ? '0%' : (v.indexOf('bottom') !== -1) ? '100%' : a[1], + i + if (a.length > 3 && !recObj) { // multiple positions + a = v.split(', ').join(',').split(',') + v = [] + for (i = 0; i < a.length; i++) { + v.push(_parsePosition(a[i])) + } + return v.join(',') + } + if (y == null) { + y = (x === 'center') ? '50%' : '0' + } else if (y === 'center') { + y = '50%' + } + if (x === 'center' || (isNaN(parseFloat(x)) && (x + '').indexOf('=') === -1)) { // remember, the user could flip-flop the values and say "bottom center" or "center bottom", etc. "center" is ambiguous because it could be used to describe horizontal or vertical, hence the isNaN(). If there's an "=" sign in the value, it's relative. + x = '50%' + } + v = x + ' ' + y + ((a.length > 2) ? ' ' + a[2] : '') + if (recObj) { + recObj.oxp = (x.indexOf('%') !== -1) + recObj.oyp = (y.indexOf('%') !== -1) + recObj.oxr = (x.charAt(1) === '=') + recObj.oyr = (y.charAt(1) === '=') + recObj.ox = parseFloat(x.replace(_NaNExp, '')) + recObj.oy = parseFloat(y.replace(_NaNExp, '')) + recObj.v = v + } + return recObj || v + }, + + /** * @private Takes an ending value (typically a string, but can be a number) and a starting value and returns the change between the two, looking for relative value indicators like += and -= and it also ignores suffixes (but make sure the ending value starts with a number or +=/-= and that the starting value is a NUMBER!) * @param {(number|string)} e End value which is typically a string, but could be a number * @param {(number|string)} b Beginning value which is typically a string but could be a number * @return {number} Amount of change between the beginning and ending values (relative values that have a "+=" or "-=" are recognized) */ - _parseChange = function(e, b) { - if (typeof(e) === "function") { - e = e(_index, _target); - } - return (typeof(e) === "string" && e.charAt(1) === "=") ? parseInt(e.charAt(0) + "1", 10) * parseFloat(e.substr(2)) : (parseFloat(e) - parseFloat(b)) || 0; - }, - - /** + _parseChange = function (e, b) { + if (typeof (e) === 'function') { + e = e(_index, _target) + } + return (typeof (e) === 'string' && e.charAt(1) === '=') ? parseInt(e.charAt(0) + '1', 10) * parseFloat(e.substr(2)) : (parseFloat(e) - parseFloat(b)) || 0 + }, + + /** * @private Takes a value and a default number, checks if the value is relative, null, or numeric and spits back a normalized number accordingly. Primarily used in the _parseTransform() function. * @param {Object} v Value to be parsed * @param {!number} d Default value (which is also used for relative calculations if "+=" or "-=" is found in the first parameter) * @return {number} Parsed value */ - _parseVal = function(v, d) { - if (typeof(v) === "function") { - v = v(_index, _target); - } - return (v == null) ? d : (typeof(v) === "string" && v.charAt(1) === "=") ? parseInt(v.charAt(0) + "1", 10) * parseFloat(v.substr(2)) + d : parseFloat(v) || 0; - }, - - /** + _parseVal = function (v, d) { + if (typeof (v) === 'function') { + v = v(_index, _target) + } + return (v == null) ? d : (typeof (v) === 'string' && v.charAt(1) === '=') ? parseInt(v.charAt(0) + '1', 10) * parseFloat(v.substr(2)) + d : parseFloat(v) || 0 + }, + + /** * @private Translates strings like "40deg" or "40" or 40rad" or "+=40deg" or "270_short" or "-90_cw" or "+=45_ccw" to a numeric radian angle. Of course a starting/default value must be fed in too so that relative values can be calculated properly. * @param {Object} v Value to be parsed * @param {!number} d Default value (which is also used for relative calculations if "+=" or "-=" is found in the first parameter) @@ -2929,318 +2987,317 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {Object=} directionalEnd An object that will store the raw end values for directional angles ("_short", "_cw", or "_ccw" suffix). We need a way to store the uncompensated value so that at the end of the tween, we set it to exactly what was requested with no directional compensation. * @return {number} parsed angle in radians */ - _parseAngle = function(v, d, p, directionalEnd) { - var min = 0.000001, - cap, split, dif, result, isRelative; - if (typeof(v) === "function") { - v = v(_index, _target); - } - if (v == null) { - result = d; - } else if (typeof(v) === "number") { - result = v; - } else { - cap = 360; - split = v.split("_"); - isRelative = (v.charAt(1) === "="); - dif = (isRelative ? parseInt(v.charAt(0) + "1", 10) * parseFloat(split[0].substr(2)) : parseFloat(split[0])) * ((v.indexOf("rad") === -1) ? 1 : _RAD2DEG) - (isRelative ? 0 : d); - if (split.length) { - if (directionalEnd) { - directionalEnd[p] = d + dif; - } - if (v.indexOf("short") !== -1) { - dif = dif % cap; - if (dif !== dif % (cap / 2)) { - dif = (dif < 0) ? dif + cap : dif - cap; - } - } - if (v.indexOf("_cw") !== -1 && dif < 0) { - dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } else if (v.indexOf("ccw") !== -1 && dif > 0) { - dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } - } - result = d + dif; - } - if (result < min && result > -min) { - result = 0; - } - return result; - }, - - _colorLookup = {aqua:[0,255,255], - lime:[0,255,0], - silver:[192,192,192], - black:[0,0,0], - maroon:[128,0,0], - teal:[0,128,128], - blue:[0,0,255], - navy:[0,0,128], - white:[255,255,255], - fuchsia:[255,0,255], - olive:[128,128,0], - yellow:[255,255,0], - orange:[255,165,0], - gray:[128,128,128], - purple:[128,0,128], - green:[0,128,0], - red:[255,0,0], - pink:[255,192,203], - cyan:[0,255,255], - transparent:[255,255,255,0]}, - - _hue = function(h, m1, m2) { - h = (h < 0) ? h + 1 : (h > 1) ? h - 1 : h; - return ((((h * 6 < 1) ? m1 + (m2 - m1) * h * 6 : (h < 0.5) ? m2 : (h * 3 < 2) ? m1 + (m2 - m1) * (2 / 3 - h) * 6 : m1) * 255) + 0.5) | 0; - }, - - /** + _parseAngle = function (v, d, p, directionalEnd) { + var min = 0.000001, + cap, split, dif, result, isRelative + if (typeof (v) === 'function') { + v = v(_index, _target) + } + if (v == null) { + result = d + } else if (typeof (v) === 'number') { + result = v + } else { + cap = 360 + split = v.split('_') + isRelative = (v.charAt(1) === '=') + dif = (isRelative ? parseInt(v.charAt(0) + '1', 10) * parseFloat(split[0].substr(2)) : parseFloat(split[0])) * ((v.indexOf('rad') === -1) ? 1 : _RAD2DEG) - (isRelative ? 0 : d) + if (split.length) { + if (directionalEnd) { + directionalEnd[p] = d + dif + } + if (v.indexOf('short') !== -1) { + dif = dif % cap + if (dif !== dif % (cap / 2)) { + dif = (dif < 0) ? dif + cap : dif - cap + } + } + if (v.indexOf('_cw') !== -1 && dif < 0) { + dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap + } else if (v.indexOf('ccw') !== -1 && dif > 0) { + dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap + } + } + result = d + dif + } + if (result < min && result > -min) { + result = 0 + } + return result + }, + + _colorLookup = {aqua: [0, 255, 255], + lime: [0, 255, 0], + silver: [192, 192, 192], + black: [0, 0, 0], + maroon: [128, 0, 0], + teal: [0, 128, 128], + blue: [0, 0, 255], + navy: [0, 0, 128], + white: [255, 255, 255], + fuchsia: [255, 0, 255], + olive: [128, 128, 0], + yellow: [255, 255, 0], + orange: [255, 165, 0], + gray: [128, 128, 128], + purple: [128, 0, 128], + green: [0, 128, 0], + red: [255, 0, 0], + pink: [255, 192, 203], + cyan: [0, 255, 255], + transparent: [255, 255, 255, 0]}, + + _hue = function (h, m1, m2) { + h = (h < 0) ? h + 1 : (h > 1) ? h - 1 : h + return ((((h * 6 < 1) ? m1 + (m2 - m1) * h * 6 : (h < 0.5) ? m2 : (h * 3 < 2) ? m1 + (m2 - m1) * (2 / 3 - h) * 6 : m1) * 255) + 0.5) | 0 + }, + + /** * @private Parses a color (like #9F0, #FF9900, rgb(255,51,153) or hsl(108, 50%, 10%)) into an array with 3 elements for red, green, and blue or if toHSL parameter is true, it will populate the array with hue, saturation, and lightness values. If a relative value is found in an hsl() or hsla() string, it will preserve those relative prefixes and all the values in the array will be strings instead of numbers (in all other cases it will be populated with numbers). * @param {(string|number)} v The value the should be parsed which could be a string like #9F0 or rgb(255,102,51) or rgba(255,0,0,0.5) or it could be a number like 0xFF00CC or even a named color like red, blue, purple, etc. * @param {(boolean)} toHSL If true, an hsl() or hsla() value will be returned instead of rgb() or rgba() * @return {Array.} An array containing red, green, and blue (and optionally alpha) in that order, or if the toHSL parameter was true, the array will contain hue, saturation and lightness (and optionally alpha) in that order. Always numbers unless there's a relative prefix found in an hsl() or hsla() string and toHSL is true. */ - _parseColor = CSSPlugin.parseColor = function(v, toHSL) { - var a, r, g, b, h, s, l, max, min, d, wasHSL; - if (!v) { - a = _colorLookup.black; - } else if (typeof(v) === "number") { - a = [v >> 16, (v >> 8) & 255, v & 255]; - } else { - if (v.charAt(v.length - 1) === ",") { //sometimes a trailing comma is included and we should chop it off (typically from a comma-delimited list of values like a textShadow:"2px 2px 2px blue, 5px 5px 5px rgb(255,0,0)" - in this example "blue," has a trailing comma. We could strip it out inside parseComplex() but we'd need to do it to the beginning and ending values plus it wouldn't provide protection from other potential scenarios like if the user passes in a similar value. - v = v.substr(0, v.length - 1); - } - if (_colorLookup[v]) { - a = _colorLookup[v]; - } else if (v.charAt(0) === "#") { - if (v.length === 4) { //for shorthand like #9F0 - r = v.charAt(1); - g = v.charAt(2); - b = v.charAt(3); - v = "#" + r + r + g + g + b + b; - } - v = parseInt(v.substr(1), 16); - a = [v >> 16, (v >> 8) & 255, v & 255]; - } else if (v.substr(0, 3) === "hsl") { - a = wasHSL = v.match(_numExp); - if (!toHSL) { - h = (Number(a[0]) % 360) / 360; - s = Number(a[1]) / 100; - l = Number(a[2]) / 100; - g = (l <= 0.5) ? l * (s + 1) : l + s - l * s; - r = l * 2 - g; - if (a.length > 3) { - a[3] = Number(v[3]); - } - a[0] = _hue(h + 1 / 3, r, g); - a[1] = _hue(h, r, g); - a[2] = _hue(h - 1 / 3, r, g); - } else if (v.indexOf("=") !== -1) { //if relative values are found, just return the raw strings with the relative prefixes in place. - return v.match(_relNumExp); - } - } else { - a = v.match(_numExp) || _colorLookup.transparent; - } - a[0] = Number(a[0]); - a[1] = Number(a[1]); - a[2] = Number(a[2]); - if (a.length > 3) { - a[3] = Number(a[3]); - } - } - if (toHSL && !wasHSL) { - r = a[0] / 255; - g = a[1] / 255; - b = a[2] / 255; - max = Math.max(r, g, b); - min = Math.min(r, g, b); - l = (max + min) / 2; - if (max === min) { - h = s = 0; - } else { - d = max - min; - s = l > 0.5 ? d / (2 - max - min) : d / (max + min); - h = (max === r) ? (g - b) / d + (g < b ? 6 : 0) : (max === g) ? (b - r) / d + 2 : (r - g) / d + 4; - h *= 60; - } - a[0] = (h + 0.5) | 0; - a[1] = (s * 100 + 0.5) | 0; - a[2] = (l * 100 + 0.5) | 0; - } - return a; - }, - _formatColors = function(s, toHSL) { - var colors = s.match(_colorExp) || [], - charIndex = 0, - parsed = "", - i, color, temp; - if (!colors.length) { - return s; - } - for (i = 0; i < colors.length; i++) { - color = colors[i]; - temp = s.substr(charIndex, s.indexOf(color, charIndex)-charIndex); - charIndex += temp.length + color.length; - color = _parseColor(color, toHSL); - if (color.length === 3) { - color.push(1); - } - parsed += temp + (toHSL ? "hsla(" + color[0] + "," + color[1] + "%," + color[2] + "%," + color[3] : "rgba(" + color.join(",")) + ")"; - } - return parsed + s.substr(charIndex); - }, - _colorExp = "(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#(?:[0-9a-f]{3}){1,2}\\b"; //we'll dynamically build this Regular Expression to conserve file size. After building it, it will be able to find rgb(), rgba(), # (hexadecimal), and named color values like red, blue, purple, etc. - - for (p in _colorLookup) { - _colorExp += "|" + p + "\\b"; - } - _colorExp = new RegExp(_colorExp+")", "gi"); - - CSSPlugin.colorStringFilter = function(a) { - var combined = a[0] + " " + a[1], - toHSL; - if (_colorExp.test(combined)) { - toHSL = (combined.indexOf("hsl(") !== -1 || combined.indexOf("hsla(") !== -1); - a[0] = _formatColors(a[0], toHSL); - a[1] = _formatColors(a[1], toHSL); - } - _colorExp.lastIndex = 0; - }; - - if (!TweenLite.defaultStringFilter) { - TweenLite.defaultStringFilter = CSSPlugin.colorStringFilter; - } - - /** + _parseColor = CSSPlugin.parseColor = function (v, toHSL) { + var a, r, g, b, h, s, l, max, min, d, wasHSL + if (!v) { + a = _colorLookup.black + } else if (typeof (v) === 'number') { + a = [v >> 16, (v >> 8) & 255, v & 255] + } else { + if (v.charAt(v.length - 1) === ',') { // sometimes a trailing comma is included and we should chop it off (typically from a comma-delimited list of values like a textShadow:"2px 2px 2px blue, 5px 5px 5px rgb(255,0,0)" - in this example "blue," has a trailing comma. We could strip it out inside parseComplex() but we'd need to do it to the beginning and ending values plus it wouldn't provide protection from other potential scenarios like if the user passes in a similar value. + v = v.substr(0, v.length - 1) + } + if (_colorLookup[v]) { + a = _colorLookup[v] + } else if (v.charAt(0) === '#') { + if (v.length === 4) { // for shorthand like #9F0 + r = v.charAt(1) + g = v.charAt(2) + b = v.charAt(3) + v = '#' + r + r + g + g + b + b + } + v = parseInt(v.substr(1), 16) + a = [v >> 16, (v >> 8) & 255, v & 255] + } else if (v.substr(0, 3) === 'hsl') { + a = wasHSL = v.match(_numExp) + if (!toHSL) { + h = (Number(a[0]) % 360) / 360 + s = Number(a[1]) / 100 + l = Number(a[2]) / 100 + g = (l <= 0.5) ? l * (s + 1) : l + s - l * s + r = l * 2 - g + if (a.length > 3) { + a[3] = Number(v[3]) + } + a[0] = _hue(h + 1 / 3, r, g) + a[1] = _hue(h, r, g) + a[2] = _hue(h - 1 / 3, r, g) + } else if (v.indexOf('=') !== -1) { // if relative values are found, just return the raw strings with the relative prefixes in place. + return v.match(_relNumExp) + } + } else { + a = v.match(_numExp) || _colorLookup.transparent + } + a[0] = Number(a[0]) + a[1] = Number(a[1]) + a[2] = Number(a[2]) + if (a.length > 3) { + a[3] = Number(a[3]) + } + } + if (toHSL && !wasHSL) { + r = a[0] / 255 + g = a[1] / 255 + b = a[2] / 255 + max = Math.max(r, g, b) + min = Math.min(r, g, b) + l = (max + min) / 2 + if (max === min) { + h = s = 0 + } else { + d = max - min + s = l > 0.5 ? d / (2 - max - min) : d / (max + min) + h = (max === r) ? (g - b) / d + (g < b ? 6 : 0) : (max === g) ? (b - r) / d + 2 : (r - g) / d + 4 + h *= 60 + } + a[0] = (h + 0.5) | 0 + a[1] = (s * 100 + 0.5) | 0 + a[2] = (l * 100 + 0.5) | 0 + } + return a + }, + _formatColors = function (s, toHSL) { + var colors = s.match(_colorExp) || [], + charIndex = 0, + parsed = '', + i, color, temp + if (!colors.length) { + return s + } + for (i = 0; i < colors.length; i++) { + color = colors[i] + temp = s.substr(charIndex, s.indexOf(color, charIndex) - charIndex) + charIndex += temp.length + color.length + color = _parseColor(color, toHSL) + if (color.length === 3) { + color.push(1) + } + parsed += temp + (toHSL ? 'hsla(' + color[0] + ',' + color[1] + '%,' + color[2] + '%,' + color[3] : 'rgba(' + color.join(',')) + ')' + } + return parsed + s.substr(charIndex) + }, + _colorExp = '(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#(?:[0-9a-f]{3}){1,2}\\b' // we'll dynamically build this Regular Expression to conserve file size. After building it, it will be able to find rgb(), rgba(), # (hexadecimal), and named color values like red, blue, purple, etc. + + for (p in _colorLookup) { + _colorExp += '|' + p + '\\b' + } + _colorExp = new RegExp(_colorExp + ')', 'gi') + + CSSPlugin.colorStringFilter = function (a) { + var combined = a[0] + ' ' + a[1], + toHSL + if (_colorExp.test(combined)) { + toHSL = (combined.indexOf('hsl(') !== -1 || combined.indexOf('hsla(') !== -1) + a[0] = _formatColors(a[0], toHSL) + a[1] = _formatColors(a[1], toHSL) + } + _colorExp.lastIndex = 0 + } + + if (!TweenLite.defaultStringFilter) { + TweenLite.defaultStringFilter = CSSPlugin.colorStringFilter + } + + /** * @private Returns a formatter function that handles taking a string (or number in some cases) and returning a consistently formatted one in terms of delimiters, quantity of values, etc. For example, we may get boxShadow values defined as "0px red" or "0px 0px 10px rgb(255,0,0)" or "0px 0px 20px 20px #F00" and we need to ensure that what we get back is described with 4 numbers and a color. This allows us to feed it into the _parseComplex() method and split the values up appropriately. The neat thing about this _getFormatter() function is that the dflt defines a pattern as well as a default, so for example, _getFormatter("0px 0px 0px 0px #777", true) not only sets the default as 0px for all distances and #777 for the color, but also sets the pattern such that 4 numbers and a color will always get returned. * @param {!string} dflt The default value and pattern to follow. So "0px 0px 0px 0px #777" will ensure that 4 numbers and a color will always get returned. * @param {boolean=} clr If true, the values should be searched for color-related data. For example, boxShadow values typically contain a color whereas borderRadius don't. * @param {boolean=} collapsible If true, the value is a top/left/right/bottom style one that acts like margin or padding, where if only one value is received, it's used for all 4; if 2 are received, the first is duplicated for 3rd (bottom) and the 2nd is duplicated for the 4th spot (left), etc. * @return {Function} formatter function */ - var _getFormatter = function(dflt, clr, collapsible, multi) { - if (dflt == null) { - return function(v) {return v;}; - } - var dColor = clr ? (dflt.match(_colorExp) || [""])[0] : "", - dVals = dflt.split(dColor).join("").match(_valuesExp) || [], - pfx = dflt.substr(0, dflt.indexOf(dVals[0])), - sfx = (dflt.charAt(dflt.length - 1) === ")") ? ")" : "", - delim = (dflt.indexOf(" ") !== -1) ? " " : ",", - numVals = dVals.length, - dSfx = (numVals > 0) ? dVals[0].replace(_numExp, "") : "", - formatter; - if (!numVals) { - return function(v) {return v;}; - } - if (clr) { - formatter = function(v) { - var color, vals, i, a; - if (typeof(v) === "number") { - v += dSfx; - } else if (multi && _commasOutsideParenExp.test(v)) { - a = v.replace(_commasOutsideParenExp, "|").split("|"); - for (i = 0; i < a.length; i++) { - a[i] = formatter(a[i]); - } - return a.join(","); - } - color = (v.match(_colorExp) || [dColor])[0]; - vals = v.split(color).join("").match(_valuesExp) || []; - i = vals.length; - if (numVals > i--) { - while (++i < numVals) { - vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i]; - } - } - return pfx + vals.join(delim) + delim + color + sfx + (v.indexOf("inset") !== -1 ? " inset" : ""); - }; - return formatter; - - } - formatter = function(v) { - var vals, a, i; - if (typeof(v) === "number") { - v += dSfx; - } else if (multi && _commasOutsideParenExp.test(v)) { - a = v.replace(_commasOutsideParenExp, "|").split("|"); - for (i = 0; i < a.length; i++) { - a[i] = formatter(a[i]); - } - return a.join(","); - } - vals = v.match(_valuesExp) || []; - i = vals.length; - if (numVals > i--) { - while (++i < numVals) { - vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i]; - } - } - return pfx + vals.join(delim) + sfx; - }; - return formatter; - }, - - /** + var _getFormatter = function (dflt, clr, collapsible, multi) { + if (dflt == null) { + return function (v) { return v } + } + var dColor = clr ? (dflt.match(_colorExp) || [''])[0] : '', + dVals = dflt.split(dColor).join('').match(_valuesExp) || [], + pfx = dflt.substr(0, dflt.indexOf(dVals[0])), + sfx = (dflt.charAt(dflt.length - 1) === ')') ? ')' : '', + delim = (dflt.indexOf(' ') !== -1) ? ' ' : ',', + numVals = dVals.length, + dSfx = (numVals > 0) ? dVals[0].replace(_numExp, '') : '', + formatter + if (!numVals) { + return function (v) { return v } + } + if (clr) { + formatter = function (v) { + var color, vals, i, a + if (typeof (v) === 'number') { + v += dSfx + } else if (multi && _commasOutsideParenExp.test(v)) { + a = v.replace(_commasOutsideParenExp, '|').split('|') + for (i = 0; i < a.length; i++) { + a[i] = formatter(a[i]) + } + return a.join(',') + } + color = (v.match(_colorExp) || [dColor])[0] + vals = v.split(color).join('').match(_valuesExp) || [] + i = vals.length + if (numVals > i--) { + while (++i < numVals) { + vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i] + } + } + return pfx + vals.join(delim) + delim + color + sfx + (v.indexOf('inset') !== -1 ? ' inset' : '') + } + return formatter + } + formatter = function (v) { + var vals, a, i + if (typeof (v) === 'number') { + v += dSfx + } else if (multi && _commasOutsideParenExp.test(v)) { + a = v.replace(_commasOutsideParenExp, '|').split('|') + for (i = 0; i < a.length; i++) { + a[i] = formatter(a[i]) + } + return a.join(',') + } + vals = v.match(_valuesExp) || [] + i = vals.length + if (numVals > i--) { + while (++i < numVals) { + vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i] + } + } + return pfx + vals.join(delim) + sfx + } + return formatter + }, + + /** * @private returns a formatter function that's used for edge-related values like marginTop, marginLeft, paddingBottom, paddingRight, etc. Just pass a comma-delimited list of property names related to the edges. * @param {!string} props a comma-delimited list of property names in order from top to left, like "marginTop,marginRight,marginBottom,marginLeft" * @return {Function} a formatter function */ - _getEdgeParser = function(props) { - props = props.split(","); - return function(t, e, p, cssp, pt, plugin, vars) { - var a = (e + "").split(" "), - i; - vars = {}; - for (i = 0; i < 4; i++) { - vars[props[i]] = a[i] = a[i] || a[(((i - 1) / 2) >> 0)]; - } - return cssp.parse(t, vars, pt, plugin); - }; - }, - - // @private used when other plugins must tween values first, like BezierPlugin or ThrowPropsPlugin, etc. That plugin's setRatio() gets called first so that the values are updated, and then we loop through the MiniPropTweens which handle copying the values into their appropriate slots so that they can then be applied correctly in the main CSSPlugin setRatio() method. Remember, we typically create a proxy object that has a bunch of uniquely-named properties that we feed to the sub-plugin and it does its magic normally, and then we must interpret those values and apply them to the css because often numbers must get combined/concatenated, suffixes added, etc. to work with css, like boxShadow could have 4 values plus a color. - _setPluginRatio = _internals._setPluginRatio = function(v) { - this.plugin.setRatio(v); - var d = this.data, - proxy = d.proxy, - mpt = d.firstMPT, - min = 0.000001, - val, pt, i, str, p; - while (mpt) { - val = proxy[mpt.v]; - if (mpt.r) { - val = Math.round(val); - } else if (val < min && val > -min) { - val = 0; - } - mpt.t[mpt.p] = val; - mpt = mpt._next; - } - if (d.autoRotate) { - d.autoRotate.rotation = d.mod ? d.mod(proxy.rotation, this.t) : proxy.rotation; //special case for ModifyPlugin to hook into an auto-rotating bezier - } - //at the end, we must set the CSSPropTween's "e" (end) value dynamically here because that's what is used in the final setRatio() method. Same for "b" at the beginning. - if (v === 1 || v === 0) { - mpt = d.firstMPT; - p = (v === 1) ? "e" : "b"; - while (mpt) { - pt = mpt.t; - if (!pt.type) { - pt[p] = pt.s + pt.xs0; - } else if (pt.type === 1) { - str = pt.xs0 + pt.s + pt.xs1; - for (i = 1; i < pt.l; i++) { - str += pt["xn"+i] + pt["xs"+(i+1)]; - } - pt[p] = str; - } - mpt = mpt._next; - } - } - }, - - /** + _getEdgeParser = function (props) { + props = props.split(',') + return function (t, e, p, cssp, pt, plugin, vars) { + var a = (e + '').split(' '), + i + vars = {} + for (i = 0; i < 4; i++) { + vars[props[i]] = a[i] = a[i] || a[(((i - 1) / 2) >> 0)] + } + return cssp.parse(t, vars, pt, plugin) + } + }, + + // @private used when other plugins must tween values first, like BezierPlugin or ThrowPropsPlugin, etc. That plugin's setRatio() gets called first so that the values are updated, and then we loop through the MiniPropTweens which handle copying the values into their appropriate slots so that they can then be applied correctly in the main CSSPlugin setRatio() method. Remember, we typically create a proxy object that has a bunch of uniquely-named properties that we feed to the sub-plugin and it does its magic normally, and then we must interpret those values and apply them to the css because often numbers must get combined/concatenated, suffixes added, etc. to work with css, like boxShadow could have 4 values plus a color. + _setPluginRatio = _internals._setPluginRatio = function (v) { + this.plugin.setRatio(v) + var d = this.data, + proxy = d.proxy, + mpt = d.firstMPT, + min = 0.000001, + val, pt, i, str, p + while (mpt) { + val = proxy[mpt.v] + if (mpt.r) { + val = Math.round(val) + } else if (val < min && val > -min) { + val = 0 + } + mpt.t[mpt.p] = val + mpt = mpt._next + } + if (d.autoRotate) { + d.autoRotate.rotation = d.mod ? d.mod(proxy.rotation, this.t) : proxy.rotation // special case for ModifyPlugin to hook into an auto-rotating bezier + } + // at the end, we must set the CSSPropTween's "e" (end) value dynamically here because that's what is used in the final setRatio() method. Same for "b" at the beginning. + if (v === 1 || v === 0) { + mpt = d.firstMPT + p = (v === 1) ? 'e' : 'b' + while (mpt) { + pt = mpt.t + if (!pt.type) { + pt[p] = pt.s + pt.xs0 + } else if (pt.type === 1) { + str = pt.xs0 + pt.s + pt.xs1 + for (i = 1; i < pt.l; i++) { + str += pt['xn' + i] + pt['xs' + (i + 1)] + } + pt[p] = str + } + mpt = mpt._next + } + } + }, + + /** * @private @constructor Used by a few SpecialProps to hold important values for proxies. For example, _parseToProxy() creates a MiniPropTween instance for each property that must get tweened on the proxy, and we record the original property name as well as the unique one we create for the proxy, plus whether or not the value needs to be rounded plus the original value. * @param {!Object} t target object whose property we're tweening (often a CSSPropTween) * @param {!string} p property name @@ -3248,18 +3305,18 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {MiniPropTween=} next next MiniPropTween in the linked list * @param {boolean=} r if true, the tweened value should be rounded to the nearest integer */ - MiniPropTween = function(t, p, v, next, r) { - this.t = t; - this.p = p; - this.v = v; - this.r = r; - if (next) { - next._prev = this; - this._next = next; - } - }, - - /** + MiniPropTween = function (t, p, v, next, r) { + this.t = t + this.p = p + this.v = v + this.r = r + if (next) { + next._prev = this + this._next = next + } + }, + + /** * @private Most other plugins (like BezierPlugin and ThrowPropsPlugin and others) can only tween numeric values, but CSSPlugin must accommodate special values that have a bunch of extra data (like a suffix or strings between numeric values, etc.). For example, boxShadow has values like "10px 10px 20px 30px rgb(255,0,0)" which would utterly confuse other plugins. This method allows us to split that data apart and grab only the numeric data and attach it to uniquely-named properties of a generic proxy object ({}) so that we can feed that to virtually any plugin to have the numbers tweened. However, we must also keep track of which properties from the proxy go with which CSSPropTween values and instances. So we create a linked list of MiniPropTweens. Each one records a target (the original CSSPropTween), property (like "s" or "xn1" or "xn2") that we're tweening and the unique property name that was used for the proxy (like "boxShadow_xn1" and "boxShadow_xn2") and whether or not they need to be rounded. That way, in the _setPluginRatio() method we can simply copy the values over from the proxy to the CSSPropTween instance(s). Then, when the main CSSPlugin setRatio() method runs and applies the CSSPropTween values accordingly, they're updated nicely. So the external plugin tweens the numbers, _setPluginRatio() copies them over, and setRatio() acts normally, applying css-specific values to the element. * This method returns an object that has the following properties: * - proxy: a generic object containing the starting values for all the properties that will be tweened by the external plugin. This is what we feed to the external _onInitTween() as the target @@ -3274,57 +3331,55 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {boolean=} shallow if true, the resulting linked list from the parse will NOT be attached to the CSSPropTween that was passed in as the "pt" (4th) parameter. * @return An object containing the following properties: proxy, end, firstMPT, and pt (see above for descriptions) */ - _parseToProxy = _internals._parseToProxy = function(t, vars, cssp, pt, plugin, shallow) { - var bpt = pt, - start = {}, - end = {}, - transform = cssp._transform, - oldForce = _forcePT, - i, p, xp, mpt, firstPT; - cssp._transform = null; - _forcePT = vars; - pt = firstPT = cssp.parse(t, vars, pt, plugin); - _forcePT = oldForce; - //break off from the linked list so the new ones are isolated. - if (shallow) { - cssp._transform = transform; - if (bpt) { - bpt._prev = null; - if (bpt._prev) { - bpt._prev._next = null; - } - } - } - while (pt && pt !== bpt) { - if (pt.type <= 1) { - p = pt.p; - end[p] = pt.s + pt.c; - start[p] = pt.s; - if (!shallow) { - mpt = new MiniPropTween(pt, "s", p, mpt, pt.r); - pt.c = 0; - } - if (pt.type === 1) { - i = pt.l; - while (--i > 0) { - xp = "xn" + i; - p = pt.p + "_" + xp; - end[p] = pt.data[xp]; - start[p] = pt[xp]; - if (!shallow) { - mpt = new MiniPropTween(pt, xp, p, mpt, pt.rxp[xp]); - } - } - } - } - pt = pt._next; - } - return {proxy:start, end:end, firstMPT:mpt, pt:firstPT}; - }, - - - - /** + _parseToProxy = _internals._parseToProxy = function (t, vars, cssp, pt, plugin, shallow) { + var bpt = pt, + start = {}, + end = {}, + transform = cssp._transform, + oldForce = _forcePT, + i, p, xp, mpt, firstPT + cssp._transform = null + _forcePT = vars + pt = firstPT = cssp.parse(t, vars, pt, plugin) + _forcePT = oldForce + // break off from the linked list so the new ones are isolated. + if (shallow) { + cssp._transform = transform + if (bpt) { + bpt._prev = null + if (bpt._prev) { + bpt._prev._next = null + } + } + } + while (pt && pt !== bpt) { + if (pt.type <= 1) { + p = pt.p + end[p] = pt.s + pt.c + start[p] = pt.s + if (!shallow) { + mpt = new MiniPropTween(pt, 's', p, mpt, pt.r) + pt.c = 0 + } + if (pt.type === 1) { + i = pt.l + while (--i > 0) { + xp = 'xn' + i + p = pt.p + '_' + xp + end[p] = pt.data[xp] + start[p] = pt[xp] + if (!shallow) { + mpt = new MiniPropTween(pt, xp, p, mpt, pt.rxp[xp]) + } + } + } + } + pt = pt._next + } + return {proxy: start, end: end, firstMPT: mpt, pt: firstPT} + }, + + /** * @constructor Each property that is tweened has at least one CSSPropTween associated with it. These instances store important information like the target, property, starting value, amount of change, etc. They can also optionally have a number of "extra" strings and numeric values named xs1, xn1, xs2, xn2, xs3, xn3, etc. where "s" indicates string and "n" indicates number. These can be pieced together in a complex-value tween (type:1) that has alternating types of data like a string, number, string, number, etc. For example, boxShadow could be "5px 5px 8px rgb(102, 102, 51)". In that value, there are 6 numbers that may need to tween and then pieced back together into a string again with spaces, suffixes, etc. xs0 is special in that it stores the suffix for standard (type:0) tweens, -OR- the first string (prefix) in a complex-value (type:1) CSSPropTween -OR- it can be the non-tweening value in a type:-1 CSSPropTween. We do this to conserve memory. * CSSPropTweens have the following optional properties as well (not defined through the constructor): * - l: Length in terms of the number of extra properties that the CSSPropTween has (default: 0). For example, for a boxShadow we may need to tween 5 numbers in which case l would be 5; Keep in mind that the start/end values for the first number that's tweened are always stored in the s and c properties to conserve memory. All additional values thereafter are stored in xn1, xn2, etc. @@ -3344,37 +3399,37 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {string=} b Beginning value. We store this to ensure that it is EXACTLY what it was when the tween began without any risk of interpretation issues. * @param {string=} e Ending value. We store this to ensure that it is EXACTLY what the user defined at the end of the tween without any risk of interpretation issues. */ - CSSPropTween = _internals.CSSPropTween = function(t, p, s, c, next, type, n, r, pr, b, e) { - this.t = t; //target - this.p = p; //property - this.s = s; //starting value - this.c = c; //change value - this.n = n || p; //name that this CSSPropTween should be associated to (usually the same as p, but not always - n is what overwriting looks at) - if (!(t instanceof CSSPropTween)) { - _overwriteProps.push(this.n); - } - this.r = r; //round (boolean) - this.type = type || 0; //0 = normal tween, -1 = non-tweening (in which case xs0 will be applied to the target's property, like tp.t[tp.p] = tp.xs0), 1 = complex-value SpecialProp, 2 = custom setRatio() that does all the work - if (pr) { - this.pr = pr; - _hasPriority = true; - } - this.b = (b === undefined) ? s : b; - this.e = (e === undefined) ? s + c : e; - if (next) { - this._next = next; - next._prev = this; - } - }, - - _addNonTweeningNumericPT = function(target, prop, start, end, next, overwriteProp) { //cleans up some code redundancies and helps minification. Just a fast way to add a NUMERIC non-tweening CSSPropTween - var pt = new CSSPropTween(target, prop, start, end - start, next, -1, overwriteProp); - pt.b = start; - pt.e = pt.xs0 = end; - return pt; - }, - - /** + CSSPropTween = _internals.CSSPropTween = function (t, p, s, c, next, type, n, r, pr, b, e) { + this.t = t // target + this.p = p // property + this.s = s // starting value + this.c = c // change value + this.n = n || p // name that this CSSPropTween should be associated to (usually the same as p, but not always - n is what overwriting looks at) + if (!(t instanceof CSSPropTween)) { + _overwriteProps.push(this.n) + } + this.r = r // round (boolean) + this.type = type || 0 // 0 = normal tween, -1 = non-tweening (in which case xs0 will be applied to the target's property, like tp.t[tp.p] = tp.xs0), 1 = complex-value SpecialProp, 2 = custom setRatio() that does all the work + if (pr) { + this.pr = pr + _hasPriority = true + } + this.b = (b === undefined) ? s : b + this.e = (e === undefined) ? s + c : e + if (next) { + this._next = next + next._prev = this + } + }, + + _addNonTweeningNumericPT = function (target, prop, start, end, next, overwriteProp) { // cleans up some code redundancies and helps minification. Just a fast way to add a NUMERIC non-tweening CSSPropTween + var pt = new CSSPropTween(target, prop, start, end - start, next, -1, overwriteProp) + pt.b = start + pt.e = pt.xs0 = end + return pt + }, + + /** * Takes a target, the beginning value and ending value (as strings) and parses them into a CSSPropTween (possibly with child CSSPropTweens) that accommodates multiple numbers, colors, comma-delimited values, etc. For example: * sp.parseComplex(element, "boxShadow", "5px 10px 20px rgb(255,102,51)", "0px 0px 0px red", true, "0px 0px 0px rgb(0,0,0,0)", pt); * It will walk through the beginning and ending values (which should be in the same format with the same number and type of values) and figure out which parts are numbers, what strings separate the numeric/tweenable values, and then create the CSSPropTweens accordingly. If a plugin is defined, no child CSSPropTweens will be created. Instead, the ending values will be stored in the "data" property of the returned CSSPropTween like: {s:-5, xn1:-10, xn2:-20, xn3:255, xn4:0, xn5:0} so that it can be fed to any other plugin and it'll be plain numeric tweens but the recomposition of the complex value will be handled inside CSSPlugin's setRatio(). @@ -3392,132 +3447,131 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {function(number)=} setRatio If values should be set in a custom function instead of being pieced together in a type:1 (complex-value) CSSPropTween, define that custom function here. * @return {CSSPropTween} The first CSSPropTween in the linked list which includes the new one(s) added by the parseComplex() call. */ - _parseComplex = CSSPlugin.parseComplex = function(t, p, b, e, clrs, dflt, pt, pr, plugin, setRatio) { - //DEBUG: _log("parseComplex: "+p+", b: "+b+", e: "+e); - b = b || dflt || ""; - if (typeof(e) === "function") { - e = e(_index, _target); - } - pt = new CSSPropTween(t, p, 0, 0, pt, (setRatio ? 2 : 1), null, false, pr, b, e); - e += ""; //ensures it's a string - if (clrs && _colorExp.test(e + b)) { //if colors are found, normalize the formatting to rgba() or hsla(). - e = [b, e]; - CSSPlugin.colorStringFilter(e); - b = e[0]; - e = e[1]; - } - var ba = b.split(", ").join(",").split(" "), //beginning array - ea = e.split(", ").join(",").split(" "), //ending array - l = ba.length, - autoRound = (_autoRound !== false), - i, xi, ni, bv, ev, bnums, enums, bn, hasAlpha, temp, cv, str, useHSL; - if (e.indexOf(",") !== -1 || b.indexOf(",") !== -1) { - ba = ba.join(" ").replace(_commasOutsideParenExp, ", ").split(" "); - ea = ea.join(" ").replace(_commasOutsideParenExp, ", ").split(" "); - l = ba.length; - } - if (l !== ea.length) { - //DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); - ba = (dflt || "").split(" "); - l = ba.length; - } - pt.plugin = plugin; - pt.setRatio = setRatio; - _colorExp.lastIndex = 0; - for (i = 0; i < l; i++) { - bv = ba[i]; - ev = ea[i]; - bn = parseFloat(bv); - //if the value begins with a number (most common). It's fine if it has a suffix like px - if (bn || bn === 0) { - pt.appendXtra("", bn, _parseChange(ev, bn), ev.replace(_relNumExp, ""), (autoRound && ev.indexOf("px") !== -1), true); - - //if the value is a color - } else if (clrs && _colorExp.test(bv)) { - str = ev.indexOf(")") + 1; - str = ")" + (str ? ev.substr(str) : ""); //if there's a comma or ) at the end, retain it. - useHSL = (ev.indexOf("hsl") !== -1 && _supportsOpacity); - temp = ev; //original string value so we can look for any prefix later. - bv = _parseColor(bv, useHSL); - ev = _parseColor(ev, useHSL); - hasAlpha = (bv.length + ev.length > 6); - if (hasAlpha && !_supportsOpacity && ev[3] === 0) { //older versions of IE don't support rgba(), so if the destination alpha is 0, just use "transparent" for the end color - pt["xs" + pt.l] += pt.l ? " transparent" : "transparent"; - pt.e = pt.e.split(ea[i]).join("transparent"); - } else { - if (!_supportsOpacity) { //old versions of IE don't support rgba(). - hasAlpha = false; - } - if (useHSL) { - pt.appendXtra(temp.substr(0, temp.indexOf("hsl")) + (hasAlpha ? "hsla(" : "hsl("), bv[0], _parseChange(ev[0], bv[0]), ",", false, true) - .appendXtra("", bv[1], _parseChange(ev[1], bv[1]), "%,", false) - .appendXtra("", bv[2], _parseChange(ev[2], bv[2]), (hasAlpha ? "%," : "%" + str), false); - } else { - pt.appendXtra(temp.substr(0, temp.indexOf("rgb")) + (hasAlpha ? "rgba(" : "rgb("), bv[0], ev[0] - bv[0], ",", true, true) - .appendXtra("", bv[1], ev[1] - bv[1], ",", true) - .appendXtra("", bv[2], ev[2] - bv[2], (hasAlpha ? "," : str), true); - } - - if (hasAlpha) { - bv = (bv.length < 4) ? 1 : bv[3]; - pt.appendXtra("", bv, ((ev.length < 4) ? 1 : ev[3]) - bv, str, false); - } - } - _colorExp.lastIndex = 0; //otherwise the test() on the RegExp could move the lastIndex and taint future results. - - } else { - bnums = bv.match(_numExp); //gets each group of numbers in the beginning value string and drops them into an array - - //if no number is found, treat it as a non-tweening value and just append the string to the current xs. - if (!bnums) { - pt["xs" + pt.l] += (pt.l || pt["xs" + pt.l]) ? " " + ev : ev; - - //loop through all the numbers that are found and construct the extra values on the pt. - } else { - enums = ev.match(_relNumExp); //get each group of numbers in the end value string and drop them into an array. We allow relative values too, like +=50 or -=.5 - if (!enums || enums.length !== bnums.length) { - //DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); - return pt; - } - ni = 0; - for (xi = 0; xi < bnums.length; xi++) { - cv = bnums[xi]; - temp = bv.indexOf(cv, ni); - pt.appendXtra(bv.substr(ni, temp - ni), Number(cv), _parseChange(enums[xi], cv), "", (autoRound && bv.substr(temp + cv.length, 2) === "px"), (xi === 0)); - ni = temp + cv.length; - } - pt["xs" + pt.l] += bv.substr(ni); - } - } - } - //if there are relative values ("+=" or "-=" prefix), we need to adjust the ending value to eliminate the prefixes and combine the values properly. - if (e.indexOf("=") !== -1) if (pt.data) { - str = pt.xs0 + pt.data.s; - for (i = 1; i < pt.l; i++) { - str += pt["xs" + i] + pt.data["xn" + i]; - } - pt.e = str + pt["xs" + i]; - } - if (!pt.l) { - pt.type = -1; - pt.xs0 = pt.e; - } - return pt.xfirst || pt; - }, - i = 9; - - - p = CSSPropTween.prototype; - p.l = p.pr = 0; //length (number of extra properties like xn1, xn2, xn3, etc. - while (--i > 0) { - p["xn" + i] = 0; - p["xs" + i] = ""; - } - p.xs0 = ""; - p._next = p._prev = p.xfirst = p.data = p.plugin = p.setRatio = p.rxp = null; - - - /** + _parseComplex = CSSPlugin.parseComplex = function (t, p, b, e, clrs, dflt, pt, pr, plugin, setRatio) { + // DEBUG: _log("parseComplex: "+p+", b: "+b+", e: "+e); + b = b || dflt || '' + if (typeof (e) === 'function') { + e = e(_index, _target) + } + pt = new CSSPropTween(t, p, 0, 0, pt, (setRatio ? 2 : 1), null, false, pr, b, e) + e += '' // ensures it's a string + if (clrs && _colorExp.test(e + b)) { // if colors are found, normalize the formatting to rgba() or hsla(). + e = [b, e] + CSSPlugin.colorStringFilter(e) + b = e[0] + e = e[1] + } + var ba = b.split(', ').join(',').split(' '), // beginning array + ea = e.split(', ').join(',').split(' '), // ending array + l = ba.length, + autoRound = (_autoRound !== false), + i, xi, ni, bv, ev, bnums, enums, bn, hasAlpha, temp, cv, str, useHSL + if (e.indexOf(',') !== -1 || b.indexOf(',') !== -1) { + ba = ba.join(' ').replace(_commasOutsideParenExp, ', ').split(' ') + ea = ea.join(' ').replace(_commasOutsideParenExp, ', ').split(' ') + l = ba.length + } + if (l !== ea.length) { + // DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); + ba = (dflt || '').split(' ') + l = ba.length + } + pt.plugin = plugin + pt.setRatio = setRatio + _colorExp.lastIndex = 0 + for (i = 0; i < l; i++) { + bv = ba[i] + ev = ea[i] + bn = parseFloat(bv) + // if the value begins with a number (most common). It's fine if it has a suffix like px + if (bn || bn === 0) { + pt.appendXtra('', bn, _parseChange(ev, bn), ev.replace(_relNumExp, ''), (autoRound && ev.indexOf('px') !== -1), true) + + // if the value is a color + } else if (clrs && _colorExp.test(bv)) { + str = ev.indexOf(')') + 1 + str = ')' + (str ? ev.substr(str) : '') // if there's a comma or ) at the end, retain it. + useHSL = (ev.indexOf('hsl') !== -1 && _supportsOpacity) + temp = ev // original string value so we can look for any prefix later. + bv = _parseColor(bv, useHSL) + ev = _parseColor(ev, useHSL) + hasAlpha = (bv.length + ev.length > 6) + if (hasAlpha && !_supportsOpacity && ev[3] === 0) { // older versions of IE don't support rgba(), so if the destination alpha is 0, just use "transparent" for the end color + pt['xs' + pt.l] += pt.l ? ' transparent' : 'transparent' + pt.e = pt.e.split(ea[i]).join('transparent') + } else { + if (!_supportsOpacity) { // old versions of IE don't support rgba(). + hasAlpha = false + } + if (useHSL) { + pt.appendXtra(temp.substr(0, temp.indexOf('hsl')) + (hasAlpha ? 'hsla(' : 'hsl('), bv[0], _parseChange(ev[0], bv[0]), ',', false, true) + .appendXtra('', bv[1], _parseChange(ev[1], bv[1]), '%,', false) + .appendXtra('', bv[2], _parseChange(ev[2], bv[2]), (hasAlpha ? '%,' : '%' + str), false) + } else { + pt.appendXtra(temp.substr(0, temp.indexOf('rgb')) + (hasAlpha ? 'rgba(' : 'rgb('), bv[0], ev[0] - bv[0], ',', true, true) + .appendXtra('', bv[1], ev[1] - bv[1], ',', true) + .appendXtra('', bv[2], ev[2] - bv[2], (hasAlpha ? ',' : str), true) + } + + if (hasAlpha) { + bv = (bv.length < 4) ? 1 : bv[3] + pt.appendXtra('', bv, ((ev.length < 4) ? 1 : ev[3]) - bv, str, false) + } + } + _colorExp.lastIndex = 0 // otherwise the test() on the RegExp could move the lastIndex and taint future results. + } else { + bnums = bv.match(_numExp) // gets each group of numbers in the beginning value string and drops them into an array + + // if no number is found, treat it as a non-tweening value and just append the string to the current xs. + if (!bnums) { + pt['xs' + pt.l] += (pt.l || pt['xs' + pt.l]) ? ' ' + ev : ev + + // loop through all the numbers that are found and construct the extra values on the pt. + } else { + enums = ev.match(_relNumExp) // get each group of numbers in the end value string and drop them into an array. We allow relative values too, like +=50 or -=.5 + if (!enums || enums.length !== bnums.length) { + // DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); + return pt + } + ni = 0 + for (xi = 0; xi < bnums.length; xi++) { + cv = bnums[xi] + temp = bv.indexOf(cv, ni) + pt.appendXtra(bv.substr(ni, temp - ni), Number(cv), _parseChange(enums[xi], cv), '', (autoRound && bv.substr(temp + cv.length, 2) === 'px'), (xi === 0)) + ni = temp + cv.length + } + pt['xs' + pt.l] += bv.substr(ni) + } + } + } + // if there are relative values ("+=" or "-=" prefix), we need to adjust the ending value to eliminate the prefixes and combine the values properly. + if (e.indexOf('=') !== -1) { + if (pt.data) { + str = pt.xs0 + pt.data.s + for (i = 1; i < pt.l; i++) { + str += pt['xs' + i] + pt.data['xn' + i] + } + pt.e = str + pt['xs' + i] + } + } + if (!pt.l) { + pt.type = -1 + pt.xs0 = pt.e + } + return pt.xfirst || pt + }, + i = 9 + + p = CSSPropTween.prototype + p.l = p.pr = 0 // length (number of extra properties like xn1, xn2, xn3, etc. + while (--i > 0) { + p['xn' + i] = 0 + p['xs' + i] = '' + } + p.xs0 = '' + p._next = p._prev = p.xfirst = p.data = p.plugin = p.setRatio = p.rxp = null + + /** * Appends and extra tweening value to a CSSPropTween and automatically manages any prefix and suffix strings. The first extra value is stored in the s and c of the main CSSPropTween instance, but thereafter any extras are stored in the xn1, xn2, xn3, etc. The prefixes and suffixes are stored in the xs0, xs1, xs2, etc. properties. For example, if I walk through a clip value like "rect(10px, 5px, 0px, 20px)", the values would be stored like this: * xs0:"rect(", s:10, xs1:"px, ", xn1:5, xs2:"px, ", xn2:0, xs3:"px, ", xn3:20, xn4:"px)" * And they'd all get joined together when the CSSPlugin renders (in the setRatio() method). @@ -3529,36 +3583,38 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {boolean=} pad If true, this extra value should be separated by the previous one by a space. If there is no previous extra and pad is true, it will automatically drop the space. * @return {CSSPropTween} returns itself so that multiple methods can be chained together. */ - p.appendXtra = function(pfx, s, c, sfx, r, pad) { - var pt = this, - l = pt.l; - pt["xs" + l] += (pad && (l || pt["xs" + l])) ? " " + pfx : pfx || ""; - if (!c) if (l !== 0 && !pt.plugin) { //typically we'll combine non-changing values right into the xs to optimize performance, but we don't combine them when there's a plugin that will be tweening the values because it may depend on the values being split apart, like for a bezier, if a value doesn't change between the first and second iteration but then it does on the 3rd, we'll run into trouble because there's no xn slot for that value! - pt["xs" + l] += s + (sfx || ""); - return pt; - } - pt.l++; - pt.type = pt.setRatio ? 2 : 1; - pt["xs" + pt.l] = sfx || ""; - if (l > 0) { - pt.data["xn" + l] = s + c; - pt.rxp["xn" + l] = r; //round extra property (we need to tap into this in the _parseToProxy() method) - pt["xn" + l] = s; - if (!pt.plugin) { - pt.xfirst = new CSSPropTween(pt, "xn" + l, s, c, pt.xfirst || pt, 0, pt.n, r, pt.pr); - pt.xfirst.xs0 = 0; //just to ensure that the property stays numeric which helps modern browsers speed up processing. Remember, in the setRatio() method, we do pt.t[pt.p] = val + pt.xs0 so if pt.xs0 is "" (the default), it'll cast the end value as a string. When a property is a number sometimes and a string sometimes, it prevents the compiler from locking in the data type, slowing things down slightly. - } - return pt; - } - pt.data = {s:s + c}; - pt.rxp = {}; - pt.s = s; - pt.c = c; - pt.r = r; - return pt; - }; - - /** + p.appendXtra = function (pfx, s, c, sfx, r, pad) { + var pt = this, + l = pt.l + pt['xs' + l] += (pad && (l || pt['xs' + l])) ? ' ' + pfx : pfx || '' + if (!c) { + if (l !== 0 && !pt.plugin) { // typically we'll combine non-changing values right into the xs to optimize performance, but we don't combine them when there's a plugin that will be tweening the values because it may depend on the values being split apart, like for a bezier, if a value doesn't change between the first and second iteration but then it does on the 3rd, we'll run into trouble because there's no xn slot for that value! + pt['xs' + l] += s + (sfx || '') + return pt + } + } + pt.l++ + pt.type = pt.setRatio ? 2 : 1 + pt['xs' + pt.l] = sfx || '' + if (l > 0) { + pt.data['xn' + l] = s + c + pt.rxp['xn' + l] = r // round extra property (we need to tap into this in the _parseToProxy() method) + pt['xn' + l] = s + if (!pt.plugin) { + pt.xfirst = new CSSPropTween(pt, 'xn' + l, s, c, pt.xfirst || pt, 0, pt.n, r, pt.pr) + pt.xfirst.xs0 = 0 // just to ensure that the property stays numeric which helps modern browsers speed up processing. Remember, in the setRatio() method, we do pt.t[pt.p] = val + pt.xs0 so if pt.xs0 is "" (the default), it'll cast the end value as a string. When a property is a number sometimes and a string sometimes, it prevents the compiler from locking in the data type, slowing things down slightly. + } + return pt + } + pt.data = {s: s + c} + pt.rxp = {} + pt.s = s + pt.c = c + pt.r = r + return pt + } + + /** * @constructor A SpecialProp is basically a css property that needs to be treated in a non-standard way, like if it may contain a complex value like boxShadow:"5px 10px 15px rgb(255, 102, 51)" or if it is associated with another plugin like ThrowPropsPlugin or BezierPlugin. Every SpecialProp is associated with a particular property name like "boxShadow" or "throwProps" or "bezier" and it will intercept those values in the vars object that's passed to the CSSPlugin and handle them accordingly. * @param {!string} p Property name (like "boxShadow" or "throwProps") * @param {Object=} options An object containing any of the following configuration options: @@ -3572,57 +3628,56 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * - collapsible: if true, the formatter should treat the value like it's a top/right/bottom/left value that could be collapsed, like "5px" would apply to all, "5px, 10px" would use 5px for top/bottom and 10px for right/left, etc. * - keyword: a special keyword that can [optionally] be found inside the value (like "inset" for boxShadow). This allows us to validate beginning/ending values to make sure they match (if the keyword is found in one, it'll be added to the other for consistency by default). */ - var SpecialProp = function(p, options) { - options = options || {}; - this.p = options.prefix ? _checkPropPrefix(p) || p : p; - _specialProps[p] = _specialProps[this.p] = this; - this.format = options.formatter || _getFormatter(options.defaultValue, options.color, options.collapsible, options.multi); - if (options.parser) { - this.parse = options.parser; - } - this.clrs = options.color; - this.multi = options.multi; - this.keyword = options.keyword; - this.dflt = options.defaultValue; - this.pr = options.priority || 0; - }, - - //shortcut for creating a new SpecialProp that can accept multiple properties as a comma-delimited list (helps minification). dflt can be an array for multiple values (we don't do a comma-delimited list because the default value may contain commas, like rect(0px,0px,0px,0px)). We attach this method to the SpecialProp class/object instead of using a private _createSpecialProp() method so that we can tap into it externally if necessary, like from another plugin. - _registerComplexSpecialProp = _internals._registerComplexSpecialProp = function(p, options, defaults) { - if (typeof(options) !== "object") { - options = {parser:defaults}; //to make backwards compatible with older versions of BezierPlugin and ThrowPropsPlugin - } - var a = p.split(","), - d = options.defaultValue, - i, temp; - defaults = defaults || [d]; - for (i = 0; i < a.length; i++) { - options.prefix = (i === 0 && options.prefix); - options.defaultValue = defaults[i] || d; - temp = new SpecialProp(a[i], options); - } - }, - - //creates a placeholder special prop for a plugin so that the property gets caught the first time a tween of it is attempted, and at that time it makes the plugin register itself, thus taking over for all future tweens of that property. This allows us to not mandate that things load in a particular order and it also allows us to log() an error that informs the user when they attempt to tween an external plugin-related property without loading its .js file. - _registerPluginProp = _internals._registerPluginProp = function(p) { - if (!_specialProps[p]) { - var pluginName = p.charAt(0).toUpperCase() + p.substr(1) + "Plugin"; - _registerComplexSpecialProp(p, {parser:function(t, e, p, cssp, pt, plugin, vars) { - var pluginClass = _globals.com.greensock.plugins[pluginName]; - if (!pluginClass) { - _log("Error: " + pluginName + " js file not loaded."); - return pt; - } - pluginClass._cssRegister(); - return _specialProps[p].parse(t, e, p, cssp, pt, plugin, vars); - }}); - } - }; - - - p = SpecialProp.prototype; - - /** + var SpecialProp = function (p, options) { + options = options || {} + this.p = options.prefix ? _checkPropPrefix(p) || p : p + _specialProps[p] = _specialProps[this.p] = this + this.format = options.formatter || _getFormatter(options.defaultValue, options.color, options.collapsible, options.multi) + if (options.parser) { + this.parse = options.parser + } + this.clrs = options.color + this.multi = options.multi + this.keyword = options.keyword + this.dflt = options.defaultValue + this.pr = options.priority || 0 + }, + + // shortcut for creating a new SpecialProp that can accept multiple properties as a comma-delimited list (helps minification). dflt can be an array for multiple values (we don't do a comma-delimited list because the default value may contain commas, like rect(0px,0px,0px,0px)). We attach this method to the SpecialProp class/object instead of using a private _createSpecialProp() method so that we can tap into it externally if necessary, like from another plugin. + _registerComplexSpecialProp = _internals._registerComplexSpecialProp = function (p, options, defaults) { + if (typeof (options) !== 'object') { + options = {parser: defaults} // to make backwards compatible with older versions of BezierPlugin and ThrowPropsPlugin + } + var a = p.split(','), + d = options.defaultValue, + i, temp + defaults = defaults || [d] + for (i = 0; i < a.length; i++) { + options.prefix = (i === 0 && options.prefix) + options.defaultValue = defaults[i] || d + temp = new SpecialProp(a[i], options) + } + }, + + // creates a placeholder special prop for a plugin so that the property gets caught the first time a tween of it is attempted, and at that time it makes the plugin register itself, thus taking over for all future tweens of that property. This allows us to not mandate that things load in a particular order and it also allows us to log() an error that informs the user when they attempt to tween an external plugin-related property without loading its .js file. + _registerPluginProp = _internals._registerPluginProp = function (p) { + if (!_specialProps[p]) { + var pluginName = p.charAt(0).toUpperCase() + p.substr(1) + 'Plugin' + _registerComplexSpecialProp(p, {parser: function (t, e, p, cssp, pt, plugin, vars) { + var pluginClass = _globals.com.greensock.plugins[pluginName] + if (!pluginClass) { + _log('Error: ' + pluginName + ' js file not loaded.') + return pt + } + pluginClass._cssRegister() + return _specialProps[p].parse(t, e, p, cssp, pt, plugin, vars) + }}) + } + } + + p = SpecialProp.prototype + + /** * Alias for _parseComplex() that automatically plugs in certain values for this SpecialProp, like its property name, whether or not colors should be sensed, the default value, and priority. It also looks for any keyword that the SpecialProp defines (like "inset" for boxShadow) and ensures that the beginning and ending values have the same number of values for SpecialProps where multi is true (like boxShadow and textShadow can have a comma-delimited list) * @param {!Object} t target element * @param {(string|number|object)} b beginning value @@ -3632,41 +3687,43 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {function=} setRatio If a custom setRatio() method should be used to handle this complex value, that goes here. * @return {CSSPropTween=} First CSSPropTween in the linked list */ - p.parseComplex = function(t, b, e, pt, plugin, setRatio) { - var kwd = this.keyword, - i, ba, ea, l, bi, ei; - //if this SpecialProp's value can contain a comma-delimited list of values (like boxShadow or textShadow), we must parse them in a special way, and look for a keyword (like "inset" for boxShadow) and ensure that the beginning and ending BOTH have it if the end defines it as such. We also must ensure that there are an equal number of values specified (we can't tween 1 boxShadow to 3 for example) - if (this.multi) if (_commasOutsideParenExp.test(e) || _commasOutsideParenExp.test(b)) { - ba = b.replace(_commasOutsideParenExp, "|").split("|"); - ea = e.replace(_commasOutsideParenExp, "|").split("|"); - } else if (kwd) { - ba = [b]; - ea = [e]; - } - if (ea) { - l = (ea.length > ba.length) ? ea.length : ba.length; - for (i = 0; i < l; i++) { - b = ba[i] = ba[i] || this.dflt; - e = ea[i] = ea[i] || this.dflt; - if (kwd) { - bi = b.indexOf(kwd); - ei = e.indexOf(kwd); - if (bi !== ei) { - if (ei === -1) { //if the keyword isn't in the end value, remove it from the beginning one. - ba[i] = ba[i].split(kwd).join(""); - } else if (bi === -1) { //if the keyword isn't in the beginning, add it. - ba[i] += " " + kwd; - } - } - } - } - b = ba.join(", "); - e = ea.join(", "); - } - return _parseComplex(t, this.p, b, e, this.clrs, this.dflt, pt, this.pr, plugin, setRatio); - }; - - /** + p.parseComplex = function (t, b, e, pt, plugin, setRatio) { + var kwd = this.keyword, + i, ba, ea, l, bi, ei + // if this SpecialProp's value can contain a comma-delimited list of values (like boxShadow or textShadow), we must parse them in a special way, and look for a keyword (like "inset" for boxShadow) and ensure that the beginning and ending BOTH have it if the end defines it as such. We also must ensure that there are an equal number of values specified (we can't tween 1 boxShadow to 3 for example) + if (this.multi) { + if (_commasOutsideParenExp.test(e) || _commasOutsideParenExp.test(b)) { + ba = b.replace(_commasOutsideParenExp, '|').split('|') + ea = e.replace(_commasOutsideParenExp, '|').split('|') + } else if (kwd) { + ba = [b] + ea = [e] + } + } + if (ea) { + l = (ea.length > ba.length) ? ea.length : ba.length + for (i = 0; i < l; i++) { + b = ba[i] = ba[i] || this.dflt + e = ea[i] = ea[i] || this.dflt + if (kwd) { + bi = b.indexOf(kwd) + ei = e.indexOf(kwd) + if (bi !== ei) { + if (ei === -1) { // if the keyword isn't in the end value, remove it from the beginning one. + ba[i] = ba[i].split(kwd).join('') + } else if (bi === -1) { // if the keyword isn't in the beginning, add it. + ba[i] += ' ' + kwd + } + } + } + } + b = ba.join(', ') + e = ea.join(', ') + } + return _parseComplex(t, this.p, b, e, this.clrs, this.dflt, pt, this.pr, plugin, setRatio) + } + + /** * Accepts a target and end value and spits back a CSSPropTween that has been inserted into the CSSPlugin's linked list and conforms with all the conventions we use internally, like type:-1, 0, 1, or 2, setting up any extra property tweens, priority, etc. For example, if we have a boxShadow SpecialProp and call: * this._firstPT = sp.parse(element, "5px 10px 20px rgb(2550,102,51)", "boxShadow", this); * It should figure out the starting value of the element's boxShadow, compare it to the provided end value and create all the necessary CSSPropTweens of the appropriate types to tween the boxShadow. The CSSPropTween that gets spit back should already be inserted into the linked list (the 4th parameter is the current head, so prepend to that). @@ -3679,11 +3736,11 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {Object=} vars Original vars object that contains the data for parsing. * @return {CSSPropTween} The first CSSPropTween in the linked list which includes the new one(s) added by the parse() call. */ - p.parse = function(t, e, p, cssp, pt, plugin, vars) { - return this.parseComplex(t.style, this.format(_getStyle(t, this.p, _cs, false, this.dflt)), this.format(e), pt, plugin); - }; + p.parse = function (t, e, p, cssp, pt, plugin, vars) { + return this.parseComplex(t.style, this.format(_getStyle(t, this.p, _cs, false, this.dflt)), this.format(e), pt, plugin) + } - /** + /** * Registers a special property that should be intercepted from any "css" objects defined in tweens. This allows you to handle them however you want without CSSPlugin doing it for you. The 2nd parameter should be a function that accepts 3 parameters: * 1) Target object whose property should be tweened (typically a DOM element) * 2) The end/destination value (could be a string, number, object, or whatever you want) @@ -3709,218 +3766,214 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {!function(Object, Object, Object, string):function(number)} onInitTween The function that will be called when a tween of this special property is performed. The function will receive 4 parameters: 1) Target object that should be tweened, 2) Value that was passed to the tween, 3) The tween instance itself (rarely used), and 4) The property name that's being tweened. Your function should return a function that should be called on every update of the tween. That function will receive a single parameter that is a "change factor" value (typically between 0 and 1) indicating the amount of change as a ratio. You can use this to determine how to set the values appropriately in your function. * @param {number=} priority Priority that helps the engine determine the order in which to set the properties (default: 0). Higher priority properties will be updated before lower priority ones. */ - CSSPlugin.registerSpecialProp = function(name, onInitTween, priority) { - _registerComplexSpecialProp(name, {parser:function(t, e, p, cssp, pt, plugin, vars) { - var rv = new CSSPropTween(t, p, 0, 0, pt, 2, p, false, priority); - rv.plugin = plugin; - rv.setRatio = onInitTween(t, e, cssp._tween, p); - return rv; - }, priority:priority}); - }; - - - - - - - //transform-related methods and properties - CSSPlugin.useSVGTransformAttr = true; //Safari and Firefox both have some rendering bugs when applying CSS transforms to SVG elements, so default to using the "transform" attribute instead (users can override this). - var _transformProps = ("scaleX,scaleY,scaleZ,x,y,z,skewX,skewY,rotation,rotationX,rotationY,perspective,xPercent,yPercent").split(","), - _transformProp = _checkPropPrefix("transform"), //the Javascript (camelCase) transform property, like msTransform, WebkitTransform, MozTransform, or OTransform. - _transformPropCSS = _prefixCSS + "transform", - _transformOriginProp = _checkPropPrefix("transformOrigin"), - _supports3D = (_checkPropPrefix("perspective") !== null), - Transform = _internals.Transform = function() { - this.perspective = parseFloat(CSSPlugin.defaultTransformPerspective) || 0; - this.force3D = (CSSPlugin.defaultForce3D === false || !_supports3D) ? false : CSSPlugin.defaultForce3D || "auto"; - }, - _SVGElement = _gsScope.SVGElement, - _useSVGTransformAttr, - //Some browsers (like Firefox and IE) don't honor transform-origin properly in SVG elements, so we need to manually adjust the matrix accordingly. We feature detect here rather than always doing the conversion for certain browsers because they may fix the problem at some point in the future. - - _createSVG = function(type, container, attributes) { - var element = _doc.createElementNS("http://www.w3.org/2000/svg", type), - reg = /([a-z])([A-Z])/g, - p; - for (p in attributes) { - element.setAttributeNS(null, p.replace(reg, "$1-$2").toLowerCase(), attributes[p]); - } - container.appendChild(element); - return element; - }, - _docElement = _doc.documentElement || {}, - _forceSVGTransformAttr = (function() { - //IE and Android stock don't support CSS transforms on SVG elements, so we must write them to the "transform" attribute. We populate this variable in the _parseTransform() method, and only if/when we come across an SVG element - var force = _ieVers || (/Android/i.test(_agent) && !_gsScope.chrome), - svg, rect, width; - if (_doc.createElementNS && !force) { //IE8 and earlier doesn't support SVG anyway - svg = _createSVG("svg", _docElement); - rect = _createSVG("rect", svg, {width:100, height:50, x:100}); - width = rect.getBoundingClientRect().width; - rect.style[_transformOriginProp] = "50% 50%"; - rect.style[_transformProp] = "scaleX(0.5)"; - force = (width === rect.getBoundingClientRect().width && !(_isFirefox && _supports3D)); //note: Firefox fails the test even though it does support CSS transforms in 3D. Since we can't push 3D stuff into the transform attribute, we force Firefox to pass the test here (as long as it does truly support 3D). - _docElement.removeChild(svg); - } - return force; - })(), - _parseSVGOrigin = function(e, local, decoratee, absolute, smoothOrigin, skipRecord) { - var tm = e._gsTransform, - m = _getMatrix(e, true), - v, x, y, xOrigin, yOrigin, a, b, c, d, tx, ty, determinant, xOriginOld, yOriginOld; - if (tm) { - xOriginOld = tm.xOrigin; //record the original values before we alter them. - yOriginOld = tm.yOrigin; - } - if (!absolute || (v = absolute.split(" ")).length < 2) { - b = e.getBBox(); - if (b.x === 0 && b.y === 0 && b.width + b.height === 0) { //some browsers (like Firefox) misreport the bounds if the element has zero width and height (it just assumes it's at x:0, y:0), thus we need to manually grab the position in that case. - b = {x: parseFloat(e.hasAttribute("x") ? e.getAttribute("x") : e.hasAttribute("cx") ? e.getAttribute("cx") : 0) || 0, y: parseFloat(e.hasAttribute("y") ? e.getAttribute("y") : e.hasAttribute("cy") ? e.getAttribute("cy") : 0) || 0, width:0, height:0}; - } - local = _parsePosition(local).split(" "); - v = [(local[0].indexOf("%") !== -1 ? parseFloat(local[0]) / 100 * b.width : parseFloat(local[0])) + b.x, - (local[1].indexOf("%") !== -1 ? parseFloat(local[1]) / 100 * b.height : parseFloat(local[1])) + b.y]; - } - decoratee.xOrigin = xOrigin = parseFloat(v[0]); - decoratee.yOrigin = yOrigin = parseFloat(v[1]); - if (absolute && m !== _identity2DMatrix) { //if svgOrigin is being set, we must invert the matrix and determine where the absolute point is, factoring in the current transforms. Otherwise, the svgOrigin would be based on the element's non-transformed position on the canvas. - a = m[0]; - b = m[1]; - c = m[2]; - d = m[3]; - tx = m[4]; - ty = m[5]; - determinant = (a * d - b * c); - if (determinant) { //if it's zero (like if scaleX and scaleY are zero), skip it to avoid errors with dividing by zero. - x = xOrigin * (d / determinant) + yOrigin * (-c / determinant) + ((c * ty - d * tx) / determinant); - y = xOrigin * (-b / determinant) + yOrigin * (a / determinant) - ((a * ty - b * tx) / determinant); - xOrigin = decoratee.xOrigin = v[0] = x; - yOrigin = decoratee.yOrigin = v[1] = y; - } - } - if (tm) { //avoid jump when transformOrigin is changed - adjust the x/y values accordingly - if (skipRecord) { - decoratee.xOffset = tm.xOffset; - decoratee.yOffset = tm.yOffset; - tm = decoratee; - } - if (smoothOrigin || (smoothOrigin !== false && CSSPlugin.defaultSmoothOrigin !== false)) { - x = xOrigin - xOriginOld; - y = yOrigin - yOriginOld; - //originally, we simply adjusted the x and y values, but that would cause problems if, for example, you created a rotational tween part-way through an x/y tween. Managing the offset in a separate variable gives us ultimate flexibility. - //tm.x -= x - (x * m[0] + y * m[2]); - //tm.y -= y - (x * m[1] + y * m[3]); - tm.xOffset += (x * m[0] + y * m[2]) - x; - tm.yOffset += (x * m[1] + y * m[3]) - y; - } else { - tm.xOffset = tm.yOffset = 0; - } - } - if (!skipRecord) { - e.setAttribute("data-svg-origin", v.join(" ")); - } - }, - _getBBoxHack = function(swapIfPossible) { //works around issues in some browsers (like Firefox) that don't correctly report getBBox() on SVG elements inside a element and/or . We try creating an SVG, adding it to the documentElement and toss the element in there so that it's definitely part of the rendering tree, then grab the bbox and if it works, we actually swap out the original getBBox() method for our own that does these extra steps whenever getBBox is needed. This helps ensure that performance is optimal (only do all these extra steps when absolutely necessary...most elements don't need it). - var svg = _createElement("svg", this.ownerSVGElement.getAttribute("xmlns") || "http://www.w3.org/2000/svg"), - oldParent = this.parentNode, - oldSibling = this.nextSibling, - oldCSS = this.style.cssText, - bbox; - _docElement.appendChild(svg); - svg.appendChild(this); - this.style.display = "block"; - if (swapIfPossible) { - try { - bbox = this.getBBox(); - this._originalGetBBox = this.getBBox; - this.getBBox = _getBBoxHack; - } catch (e) { } - } else if (this._originalGetBBox) { - bbox = this._originalGetBBox(); - } - if (oldSibling) { - oldParent.insertBefore(this, oldSibling); - } else { - oldParent.appendChild(this); - } - _docElement.removeChild(svg); - this.style.cssText = oldCSS; - return bbox; - }, - _getBBox = function(e) { - try { - return e.getBBox(); //Firefox throws errors if you try calling getBBox() on an SVG element that's not rendered (like in a or ). https://bugzilla.mozilla.org/show_bug.cgi?id=612118 - } catch (error) { - return _getBBoxHack.call(e, true); - } - }, - _isSVG = function(e) { //reports if the element is an SVG on which getBBox() actually works - return !!(_SVGElement && e.getCTM && _getBBox(e) && (!e.parentNode || e.ownerSVGElement)); - }, - _identity2DMatrix = [1,0,0,1,0,0], - _getMatrix = function(e, force2D) { - var tm = e._gsTransform || new Transform(), - rnd = 100000, - style = e.style, - isDefault, s, m, n, dec, none; - if (_transformProp) { - s = _getStyle(e, _transformPropCSS, null, true); - } else if (e.currentStyle) { - //for older versions of IE, we need to interpret the filter portion that is in the format: progid:DXImageTransform.Microsoft.Matrix(M11=6.123233995736766e-17, M12=-1, M21=1, M22=6.123233995736766e-17, sizingMethod='auto expand') Notice that we need to swap b and c compared to a normal matrix. - s = e.currentStyle.filter.match(_ieGetMatrixExp); - s = (s && s.length === 4) ? [s[0].substr(4), Number(s[2].substr(4)), Number(s[1].substr(4)), s[3].substr(4), (tm.x || 0), (tm.y || 0)].join(",") : ""; - } - isDefault = (!s || s === "none" || s === "matrix(1, 0, 0, 1, 0, 0)"); - if (_transformProp && ((none = (_getComputedStyle(e).display === "none")) || !e.parentNode)) { - if (none) { //browsers don't report transforms accurately unless the element is in the DOM and has a display value that's not "none". Firefox and Microsoft browsers have a partial bug where they'll report transforms even if display:none BUT not any percentage-based values like translate(-50%, 8px) will be reported as if it's translate(0, 8px). - n = style.display; - style.display = "block"; - } - if (!e.parentNode) { - dec = 1; //flag - _docElement.appendChild(e); - } - s = _getStyle(e, _transformPropCSS, null, true); - isDefault = (!s || s === "none" || s === "matrix(1, 0, 0, 1, 0, 0)"); - if (n) { - style.display = n; - } else if (none) { - _removeProp(style, "display"); - } - if (dec) { - _docElement.removeChild(e); - } - } - if (tm.svg || (e.getCTM && _isSVG(e))) { - if (isDefault && (style[_transformProp] + "").indexOf("matrix") !== -1) { //some browsers (like Chrome 40) don't correctly report transforms that are applied inline on an SVG element (they don't get included in the computed style), so we double-check here and accept matrix values - s = style[_transformProp]; - isDefault = 0; - } - m = e.getAttribute("transform"); - if (isDefault && m) { - if (m.indexOf("matrix") !== -1) { //just in case there's a "transform" value specified as an attribute instead of CSS style. Accept either a matrix() or simple translate() value though. - s = m; - isDefault = 0; - } else if (m.indexOf("translate") !== -1) { - s = "matrix(1,0,0,1," + m.match(/(?:\-|\b)[\d\-\.e]+\b/gi).join(",") + ")"; - isDefault = 0; - } - } - } - if (isDefault) { - return _identity2DMatrix; - } - //split the matrix values out into an array (m for matrix) - m = (s || "").match(_numExp) || []; - i = m.length; - while (--i > -1) { - n = Number(m[i]); - m[i] = (dec = n - (n |= 0)) ? ((dec * rnd + (dec < 0 ? -0.5 : 0.5)) | 0) / rnd + n : n; //convert strings to Numbers and round to 5 decimal places to avoid issues with tiny numbers. Roughly 20x faster than Number.toFixed(). We also must make sure to round before dividing so that values like 0.9999999999 become 1 to avoid glitches in browser rendering and interpretation of flipped/rotated 3D matrices. And don't just multiply the number by rnd, floor it, and then divide by rnd because the bitwise operations max out at a 32-bit signed integer, thus it could get clipped at a relatively low value (like 22,000.00000 for example). - } - return (force2D && m.length > 6) ? [m[0], m[1], m[4], m[5], m[12], m[13]] : m; - }, - - /** + CSSPlugin.registerSpecialProp = function (name, onInitTween, priority) { + _registerComplexSpecialProp(name, {parser: function (t, e, p, cssp, pt, plugin, vars) { + var rv = new CSSPropTween(t, p, 0, 0, pt, 2, p, false, priority) + rv.plugin = plugin + rv.setRatio = onInitTween(t, e, cssp._tween, p) + return rv + }, + priority: priority}) + } + + // transform-related methods and properties + CSSPlugin.useSVGTransformAttr = true // Safari and Firefox both have some rendering bugs when applying CSS transforms to SVG elements, so default to using the "transform" attribute instead (users can override this). + var _transformProps = ('scaleX,scaleY,scaleZ,x,y,z,skewX,skewY,rotation,rotationX,rotationY,perspective,xPercent,yPercent').split(','), + _transformProp = _checkPropPrefix('transform'), // the Javascript (camelCase) transform property, like msTransform, WebkitTransform, MozTransform, or OTransform. + _transformPropCSS = _prefixCSS + 'transform', + _transformOriginProp = _checkPropPrefix('transformOrigin'), + _supports3D = (_checkPropPrefix('perspective') !== null), + Transform = _internals.Transform = function () { + this.perspective = parseFloat(CSSPlugin.defaultTransformPerspective) || 0 + this.force3D = (CSSPlugin.defaultForce3D === false || !_supports3D) ? false : CSSPlugin.defaultForce3D || 'auto' + }, + _SVGElement = _gsScope.SVGElement, + _useSVGTransformAttr, + // Some browsers (like Firefox and IE) don't honor transform-origin properly in SVG elements, so we need to manually adjust the matrix accordingly. We feature detect here rather than always doing the conversion for certain browsers because they may fix the problem at some point in the future. + + _createSVG = function (type, container, attributes) { + var element = _doc.createElementNS('http://www.w3.org/2000/svg', type), + reg = /([a-z])([A-Z])/g, + p + for (p in attributes) { + element.setAttributeNS(null, p.replace(reg, '$1-$2').toLowerCase(), attributes[p]) + } + container.appendChild(element) + return element + }, + _docElement = _doc.documentElement || {}, + _forceSVGTransformAttr = (function () { + // IE and Android stock don't support CSS transforms on SVG elements, so we must write them to the "transform" attribute. We populate this variable in the _parseTransform() method, and only if/when we come across an SVG element + var force = _ieVers || (/Android/i.test(_agent) && !_gsScope.chrome), + svg, rect, width + if (_doc.createElementNS && !force) { // IE8 and earlier doesn't support SVG anyway + svg = _createSVG('svg', _docElement) + rect = _createSVG('rect', svg, {width: 100, height: 50, x: 100}) + width = rect.getBoundingClientRect().width + rect.style[_transformOriginProp] = '50% 50%' + rect.style[_transformProp] = 'scaleX(0.5)' + force = (width === rect.getBoundingClientRect().width && !(_isFirefox && _supports3D)) // note: Firefox fails the test even though it does support CSS transforms in 3D. Since we can't push 3D stuff into the transform attribute, we force Firefox to pass the test here (as long as it does truly support 3D). + _docElement.removeChild(svg) + } + return force + })(), + _parseSVGOrigin = function (e, local, decoratee, absolute, smoothOrigin, skipRecord) { + var tm = e._gsTransform, + m = _getMatrix(e, true), + v, x, y, xOrigin, yOrigin, a, b, c, d, tx, ty, determinant, xOriginOld, yOriginOld + if (tm) { + xOriginOld = tm.xOrigin // record the original values before we alter them. + yOriginOld = tm.yOrigin + } + if (!absolute || (v = absolute.split(' ')).length < 2) { + b = e.getBBox() + if (b.x === 0 && b.y === 0 && b.width + b.height === 0) { // some browsers (like Firefox) misreport the bounds if the element has zero width and height (it just assumes it's at x:0, y:0), thus we need to manually grab the position in that case. + b = {x: parseFloat(e.hasAttribute('x') ? e.getAttribute('x') : e.hasAttribute('cx') ? e.getAttribute('cx') : 0) || 0, y: parseFloat(e.hasAttribute('y') ? e.getAttribute('y') : e.hasAttribute('cy') ? e.getAttribute('cy') : 0) || 0, width: 0, height: 0} + } + local = _parsePosition(local).split(' ') + v = [(local[0].indexOf('%') !== -1 ? parseFloat(local[0]) / 100 * b.width : parseFloat(local[0])) + b.x, + (local[1].indexOf('%') !== -1 ? parseFloat(local[1]) / 100 * b.height : parseFloat(local[1])) + b.y] + } + decoratee.xOrigin = xOrigin = parseFloat(v[0]) + decoratee.yOrigin = yOrigin = parseFloat(v[1]) + if (absolute && m !== _identity2DMatrix) { // if svgOrigin is being set, we must invert the matrix and determine where the absolute point is, factoring in the current transforms. Otherwise, the svgOrigin would be based on the element's non-transformed position on the canvas. + a = m[0] + b = m[1] + c = m[2] + d = m[3] + tx = m[4] + ty = m[5] + determinant = (a * d - b * c) + if (determinant) { // if it's zero (like if scaleX and scaleY are zero), skip it to avoid errors with dividing by zero. + x = xOrigin * (d / determinant) + yOrigin * (-c / determinant) + ((c * ty - d * tx) / determinant) + y = xOrigin * (-b / determinant) + yOrigin * (a / determinant) - ((a * ty - b * tx) / determinant) + xOrigin = decoratee.xOrigin = v[0] = x + yOrigin = decoratee.yOrigin = v[1] = y + } + } + if (tm) { // avoid jump when transformOrigin is changed - adjust the x/y values accordingly + if (skipRecord) { + decoratee.xOffset = tm.xOffset + decoratee.yOffset = tm.yOffset + tm = decoratee + } + if (smoothOrigin || (smoothOrigin !== false && CSSPlugin.defaultSmoothOrigin !== false)) { + x = xOrigin - xOriginOld + y = yOrigin - yOriginOld + // originally, we simply adjusted the x and y values, but that would cause problems if, for example, you created a rotational tween part-way through an x/y tween. Managing the offset in a separate variable gives us ultimate flexibility. + // tm.x -= x - (x * m[0] + y * m[2]); + // tm.y -= y - (x * m[1] + y * m[3]); + tm.xOffset += (x * m[0] + y * m[2]) - x + tm.yOffset += (x * m[1] + y * m[3]) - y + } else { + tm.xOffset = tm.yOffset = 0 + } + } + if (!skipRecord) { + e.setAttribute('data-svg-origin', v.join(' ')) + } + }, + _getBBoxHack = function (swapIfPossible) { // works around issues in some browsers (like Firefox) that don't correctly report getBBox() on SVG elements inside a element and/or . We try creating an SVG, adding it to the documentElement and toss the element in there so that it's definitely part of the rendering tree, then grab the bbox and if it works, we actually swap out the original getBBox() method for our own that does these extra steps whenever getBBox is needed. This helps ensure that performance is optimal (only do all these extra steps when absolutely necessary...most elements don't need it). + var svg = _createElement('svg', this.ownerSVGElement.getAttribute('xmlns') || 'http://www.w3.org/2000/svg'), + oldParent = this.parentNode, + oldSibling = this.nextSibling, + oldCSS = this.style.cssText, + bbox + _docElement.appendChild(svg) + svg.appendChild(this) + this.style.display = 'block' + if (swapIfPossible) { + try { + bbox = this.getBBox() + this._originalGetBBox = this.getBBox + this.getBBox = _getBBoxHack + } catch (e) { } + } else if (this._originalGetBBox) { + bbox = this._originalGetBBox() + } + if (oldSibling) { + oldParent.insertBefore(this, oldSibling) + } else { + oldParent.appendChild(this) + } + _docElement.removeChild(svg) + this.style.cssText = oldCSS + return bbox + }, + _getBBox = function (e) { + try { + return e.getBBox() // Firefox throws errors if you try calling getBBox() on an SVG element that's not rendered (like in a or ). https://bugzilla.mozilla.org/show_bug.cgi?id=612118 + } catch (error) { + return _getBBoxHack.call(e, true) + } + }, + _isSVG = function (e) { // reports if the element is an SVG on which getBBox() actually works + return !!(_SVGElement && e.getCTM && _getBBox(e) && (!e.parentNode || e.ownerSVGElement)) + }, + _identity2DMatrix = [1, 0, 0, 1, 0, 0], + _getMatrix = function (e, force2D) { + var tm = e._gsTransform || new Transform(), + rnd = 100000, + style = e.style, + isDefault, s, m, n, dec, none + if (_transformProp) { + s = _getStyle(e, _transformPropCSS, null, true) + } else if (e.currentStyle) { + // for older versions of IE, we need to interpret the filter portion that is in the format: progid:DXImageTransform.Microsoft.Matrix(M11=6.123233995736766e-17, M12=-1, M21=1, M22=6.123233995736766e-17, sizingMethod='auto expand') Notice that we need to swap b and c compared to a normal matrix. + s = e.currentStyle.filter.match(_ieGetMatrixExp) + s = (s && s.length === 4) ? [s[0].substr(4), Number(s[2].substr(4)), Number(s[1].substr(4)), s[3].substr(4), (tm.x || 0), (tm.y || 0)].join(',') : '' + } + isDefault = (!s || s === 'none' || s === 'matrix(1, 0, 0, 1, 0, 0)') + if (_transformProp && ((none = (_getComputedStyle(e).display === 'none')) || !e.parentNode)) { + if (none) { // browsers don't report transforms accurately unless the element is in the DOM and has a display value that's not "none". Firefox and Microsoft browsers have a partial bug where they'll report transforms even if display:none BUT not any percentage-based values like translate(-50%, 8px) will be reported as if it's translate(0, 8px). + n = style.display + style.display = 'block' + } + if (!e.parentNode) { + dec = 1 // flag + _docElement.appendChild(e) + } + s = _getStyle(e, _transformPropCSS, null, true) + isDefault = (!s || s === 'none' || s === 'matrix(1, 0, 0, 1, 0, 0)') + if (n) { + style.display = n + } else if (none) { + _removeProp(style, 'display') + } + if (dec) { + _docElement.removeChild(e) + } + } + if (tm.svg || (e.getCTM && _isSVG(e))) { + if (isDefault && (style[_transformProp] + '').indexOf('matrix') !== -1) { // some browsers (like Chrome 40) don't correctly report transforms that are applied inline on an SVG element (they don't get included in the computed style), so we double-check here and accept matrix values + s = style[_transformProp] + isDefault = 0 + } + m = e.getAttribute('transform') + if (isDefault && m) { + if (m.indexOf('matrix') !== -1) { // just in case there's a "transform" value specified as an attribute instead of CSS style. Accept either a matrix() or simple translate() value though. + s = m + isDefault = 0 + } else if (m.indexOf('translate') !== -1) { + s = 'matrix(1,0,0,1,' + m.match(/(?:\-|\b)[\d\-\.e]+\b/gi).join(',') + ')' + isDefault = 0 + } + } + } + if (isDefault) { + return _identity2DMatrix + } + // split the matrix values out into an array (m for matrix) + m = (s || '').match(_numExp) || [] + i = m.length + while (--i > -1) { + n = Number(m[i]) + m[i] = (dec = n - (n |= 0)) ? ((dec * rnd + (dec < 0 ? -0.5 : 0.5)) | 0) / rnd + n : n // convert strings to Numbers and round to 5 decimal places to avoid issues with tiny numbers. Roughly 20x faster than Number.toFixed(). We also must make sure to round before dividing so that values like 0.9999999999 become 1 to avoid glitches in browser rendering and interpretation of flipped/rotated 3D matrices. And don't just multiply the number by rnd, floor it, and then divide by rnd because the bitwise operations max out at a 32-bit signed integer, thus it could get clipped at a relatively low value (like 22,000.00000 for example). + } + return (force2D && m.length > 6) ? [m[0], m[1], m[4], m[5], m[12], m[13]] : m + }, + + /** * Parses the transform values for an element, returning an object with x, y, z, scaleX, scaleY, scaleZ, rotation, rotationX, rotationY, skewX, and skewY properties. Note: by default (for performance reasons), all skewing is combined into skewX and rotation but skewY still has a place in the transform object so that we can record how much of the skew is attributed to skewX vs skewY. Remember, a skewY of 10 looks the same as a rotation of 10 and skewX of -10. * @param {!Object} t target element * @param {Object=} cs computed style object (optional) @@ -3928,120 +3981,118 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {boolean=} parse if true, we'll ignore any _gsTransform values that already exist on the element, and force a reparsing of the css (calculated style) * @return {object} object containing all of the transform properties/values like {x:0, y:0, z:0, scaleX:1...} */ - _getTransform = _internals.getTransform = function(t, cs, rec, parse) { - if (t._gsTransform && rec && !parse) { - return t._gsTransform; //if the element already has a _gsTransform, use that. Note: some browsers don't accurately return the calculated style for the transform (particularly for SVG), so it's almost always safest to just use the values we've already applied rather than re-parsing things. - } - var tm = rec ? t._gsTransform || new Transform() : new Transform(), - invX = (tm.scaleX < 0), //in order to interpret things properly, we need to know if the user applied a negative scaleX previously so that we can adjust the rotation and skewX accordingly. Otherwise, if we always interpret a flipped matrix as affecting scaleY and the user only wants to tween the scaleX on multiple sequential tweens, it would keep the negative scaleY without that being the user's intent. - min = 0.00002, - rnd = 100000, - zOrigin = _supports3D ? parseFloat(_getStyle(t, _transformOriginProp, cs, false, "0 0 0").split(" ")[2]) || tm.zOrigin || 0 : 0, - defaultTransformPerspective = parseFloat(CSSPlugin.defaultTransformPerspective) || 0, - m, i, scaleX, scaleY, rotation, skewX; - - tm.svg = !!(t.getCTM && _isSVG(t)); - if (tm.svg) { - _parseSVGOrigin(t, _getStyle(t, _transformOriginProp, cs, false, "50% 50%") + "", tm, t.getAttribute("data-svg-origin")); - _useSVGTransformAttr = CSSPlugin.useSVGTransformAttr || _forceSVGTransformAttr; - } - m = _getMatrix(t); - if (m !== _identity2DMatrix) { - - if (m.length === 16) { - //we'll only look at these position-related 6 variables first because if x/y/z all match, it's relatively safe to assume we don't need to re-parse everything which risks losing important rotational information (like rotationX:180 plus rotationY:180 would look the same as rotation:180 - there's no way to know for sure which direction was taken based solely on the matrix3d() values) - var a11 = m[0], a21 = m[1], a31 = m[2], a41 = m[3], - a12 = m[4], a22 = m[5], a32 = m[6], a42 = m[7], - a13 = m[8], a23 = m[9], a33 = m[10], - a14 = m[12], a24 = m[13], a34 = m[14], - a43 = m[11], - angle = Math.atan2(a32, a33), - t1, t2, t3, t4, cos, sin; - //we manually compensate for non-zero z component of transformOrigin to work around bugs in Safari - if (tm.zOrigin) { - a34 = -tm.zOrigin; - a14 = a13*a34-m[12]; - a24 = a23*a34-m[13]; - a34 = a33*a34+tm.zOrigin-m[14]; - } - //note for possible future consolidation: rotationX: Math.atan2(a32, a33), rotationY: Math.atan2(-a31, Math.sqrt(a33 * a33 + a32 * a32)), rotation: Math.atan2(a21, a11), skew: Math.atan2(a12, a22). However, it doesn't seem to be quite as reliable as the full-on backwards rotation procedure. - tm.rotationX = angle * _RAD2DEG; - //rotationX - if (angle) { - cos = Math.cos(-angle); - sin = Math.sin(-angle); - t1 = a12*cos+a13*sin; - t2 = a22*cos+a23*sin; - t3 = a32*cos+a33*sin; - a13 = a12*-sin+a13*cos; - a23 = a22*-sin+a23*cos; - a33 = a32*-sin+a33*cos; - a43 = a42*-sin+a43*cos; - a12 = t1; - a22 = t2; - a32 = t3; - } - //rotationY - angle = Math.atan2(-a31, a33); - tm.rotationY = angle * _RAD2DEG; - if (angle) { - cos = Math.cos(-angle); - sin = Math.sin(-angle); - t1 = a11*cos-a13*sin; - t2 = a21*cos-a23*sin; - t3 = a31*cos-a33*sin; - a23 = a21*sin+a23*cos; - a33 = a31*sin+a33*cos; - a43 = a41*sin+a43*cos; - a11 = t1; - a21 = t2; - a31 = t3; - } - //rotationZ - angle = Math.atan2(a21, a11); - tm.rotation = angle * _RAD2DEG; - if (angle) { - cos = Math.cos(angle); - sin = Math.sin(angle); - t1 = a11*cos+a21*sin; - t2 = a12*cos+a22*sin; - t3 = a13*cos+a23*sin; - a21 = a21*cos-a11*sin; - a22 = a22*cos-a12*sin; - a23 = a23*cos-a13*sin; - a11 = t1; - a12 = t2; - a13 = t3; - } - - if (tm.rotationX && Math.abs(tm.rotationX) + Math.abs(tm.rotation) > 359.9) { //when rotationY is set, it will often be parsed as 180 degrees different than it should be, and rotationX and rotation both being 180 (it looks the same), so we adjust for that here. - tm.rotationX = tm.rotation = 0; - tm.rotationY = 180 - tm.rotationY; - } - - //skewX - angle = Math.atan2(a12, a22); - - //scales - tm.scaleX = ((Math.sqrt(a11 * a11 + a21 * a21 + a31 * a31) * rnd + 0.5) | 0) / rnd; - tm.scaleY = ((Math.sqrt(a22 * a22 + a32 * a32) * rnd + 0.5) | 0) / rnd; - tm.scaleZ = ((Math.sqrt(a13 * a13 + a23 * a23 + a33 * a33) * rnd + 0.5) | 0) / rnd; - a11 /= tm.scaleX; - a12 /= tm.scaleY; - a21 /= tm.scaleX; - a22 /= tm.scaleY; - if (Math.abs(angle) > min) { - tm.skewX = angle * _RAD2DEG; - a12 = 0; //unskews - if (tm.skewType !== "simple") { - tm.scaleY *= 1 / Math.cos(angle); //by default, we compensate the scale based on the skew so that the element maintains a similar proportion when skewed, so we have to alter the scaleY here accordingly to match the default (non-adjusted) skewing that CSS does (stretching more and more as it skews). - } - - } else { - tm.skewX = 0; - } - - /* //for testing purposes + _getTransform = _internals.getTransform = function (t, cs, rec, parse) { + if (t._gsTransform && rec && !parse) { + return t._gsTransform // if the element already has a _gsTransform, use that. Note: some browsers don't accurately return the calculated style for the transform (particularly for SVG), so it's almost always safest to just use the values we've already applied rather than re-parsing things. + } + var tm = rec ? t._gsTransform || new Transform() : new Transform(), + invX = (tm.scaleX < 0), // in order to interpret things properly, we need to know if the user applied a negative scaleX previously so that we can adjust the rotation and skewX accordingly. Otherwise, if we always interpret a flipped matrix as affecting scaleY and the user only wants to tween the scaleX on multiple sequential tweens, it would keep the negative scaleY without that being the user's intent. + min = 0.00002, + rnd = 100000, + zOrigin = _supports3D ? parseFloat(_getStyle(t, _transformOriginProp, cs, false, '0 0 0').split(' ')[2]) || tm.zOrigin || 0 : 0, + defaultTransformPerspective = parseFloat(CSSPlugin.defaultTransformPerspective) || 0, + m, i, scaleX, scaleY, rotation, skewX + + tm.svg = !!(t.getCTM && _isSVG(t)) + if (tm.svg) { + _parseSVGOrigin(t, _getStyle(t, _transformOriginProp, cs, false, '50% 50%') + '', tm, t.getAttribute('data-svg-origin')) + _useSVGTransformAttr = CSSPlugin.useSVGTransformAttr || _forceSVGTransformAttr + } + m = _getMatrix(t) + if (m !== _identity2DMatrix) { + if (m.length === 16) { + // we'll only look at these position-related 6 variables first because if x/y/z all match, it's relatively safe to assume we don't need to re-parse everything which risks losing important rotational information (like rotationX:180 plus rotationY:180 would look the same as rotation:180 - there's no way to know for sure which direction was taken based solely on the matrix3d() values) + var a11 = m[0], a21 = m[1], a31 = m[2], a41 = m[3], + a12 = m[4], a22 = m[5], a32 = m[6], a42 = m[7], + a13 = m[8], a23 = m[9], a33 = m[10], + a14 = m[12], a24 = m[13], a34 = m[14], + a43 = m[11], + angle = Math.atan2(a32, a33), + t1, t2, t3, t4, cos, sin + // we manually compensate for non-zero z component of transformOrigin to work around bugs in Safari + if (tm.zOrigin) { + a34 = -tm.zOrigin + a14 = a13 * a34 - m[12] + a24 = a23 * a34 - m[13] + a34 = a33 * a34 + tm.zOrigin - m[14] + } + // note for possible future consolidation: rotationX: Math.atan2(a32, a33), rotationY: Math.atan2(-a31, Math.sqrt(a33 * a33 + a32 * a32)), rotation: Math.atan2(a21, a11), skew: Math.atan2(a12, a22). However, it doesn't seem to be quite as reliable as the full-on backwards rotation procedure. + tm.rotationX = angle * _RAD2DEG + // rotationX + if (angle) { + cos = Math.cos(-angle) + sin = Math.sin(-angle) + t1 = a12 * cos + a13 * sin + t2 = a22 * cos + a23 * sin + t3 = a32 * cos + a33 * sin + a13 = a12 * -sin + a13 * cos + a23 = a22 * -sin + a23 * cos + a33 = a32 * -sin + a33 * cos + a43 = a42 * -sin + a43 * cos + a12 = t1 + a22 = t2 + a32 = t3 + } + // rotationY + angle = Math.atan2(-a31, a33) + tm.rotationY = angle * _RAD2DEG + if (angle) { + cos = Math.cos(-angle) + sin = Math.sin(-angle) + t1 = a11 * cos - a13 * sin + t2 = a21 * cos - a23 * sin + t3 = a31 * cos - a33 * sin + a23 = a21 * sin + a23 * cos + a33 = a31 * sin + a33 * cos + a43 = a41 * sin + a43 * cos + a11 = t1 + a21 = t2 + a31 = t3 + } + // rotationZ + angle = Math.atan2(a21, a11) + tm.rotation = angle * _RAD2DEG + if (angle) { + cos = Math.cos(angle) + sin = Math.sin(angle) + t1 = a11 * cos + a21 * sin + t2 = a12 * cos + a22 * sin + t3 = a13 * cos + a23 * sin + a21 = a21 * cos - a11 * sin + a22 = a22 * cos - a12 * sin + a23 = a23 * cos - a13 * sin + a11 = t1 + a12 = t2 + a13 = t3 + } + + if (tm.rotationX && Math.abs(tm.rotationX) + Math.abs(tm.rotation) > 359.9) { // when rotationY is set, it will often be parsed as 180 degrees different than it should be, and rotationX and rotation both being 180 (it looks the same), so we adjust for that here. + tm.rotationX = tm.rotation = 0 + tm.rotationY = 180 - tm.rotationY + } + + // skewX + angle = Math.atan2(a12, a22) + + // scales + tm.scaleX = ((Math.sqrt(a11 * a11 + a21 * a21 + a31 * a31) * rnd + 0.5) | 0) / rnd + tm.scaleY = ((Math.sqrt(a22 * a22 + a32 * a32) * rnd + 0.5) | 0) / rnd + tm.scaleZ = ((Math.sqrt(a13 * a13 + a23 * a23 + a33 * a33) * rnd + 0.5) | 0) / rnd + a11 /= tm.scaleX + a12 /= tm.scaleY + a21 /= tm.scaleX + a22 /= tm.scaleY + if (Math.abs(angle) > min) { + tm.skewX = angle * _RAD2DEG + a12 = 0 // unskews + if (tm.skewType !== 'simple') { + tm.scaleY *= 1 / Math.cos(angle) // by default, we compensate the scale based on the skew so that the element maintains a similar proportion when skewed, so we have to alter the scaleY here accordingly to match the default (non-adjusted) skewing that CSS does (stretching more and more as it skews). + } + } else { + tm.skewX = 0 + } + + /* //for testing purposes var transform = "matrix3d(", comma = ",", zero = "0"; @@ -4059,157 +4110,172 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa document.querySelector(".test").style[_transformProp] = transform; */ - tm.perspective = a43 ? 1 / ((a43 < 0) ? -a43 : a43) : 0; - tm.x = a14; - tm.y = a24; - tm.z = a34; - if (tm.svg) { - tm.x -= tm.xOrigin - (tm.xOrigin * a11 - tm.yOrigin * a12); - tm.y -= tm.yOrigin - (tm.yOrigin * a21 - tm.xOrigin * a22); - } - - } else if ((!_supports3D || parse || !m.length || tm.x !== m[4] || tm.y !== m[5] || (!tm.rotationX && !tm.rotationY))) { //sometimes a 6-element matrix is returned even when we performed 3D transforms, like if rotationX and rotationY are 180. In cases like this, we still need to honor the 3D transforms. If we just rely on the 2D info, it could affect how the data is interpreted, like scaleY might get set to -1 or rotation could get offset by 180 degrees. For example, do a TweenLite.to(element, 1, {css:{rotationX:180, rotationY:180}}) and then later, TweenLite.to(element, 1, {css:{rotationX:0}}) and without this conditional logic in place, it'd jump to a state of being unrotated when the 2nd tween starts. Then again, we need to honor the fact that the user COULD alter the transforms outside of CSSPlugin, like by manually applying new css, so we try to sense that by looking at x and y because if those changed, we know the changes were made outside CSSPlugin and we force a reinterpretation of the matrix values. Also, in Webkit browsers, if the element's "display" is "none", its calculated style value will always return empty, so if we've already recorded the values in the _gsTransform object, we'll just rely on those. - var k = (m.length >= 6), - a = k ? m[0] : 1, - b = m[1] || 0, - c = m[2] || 0, - d = k ? m[3] : 1; - tm.x = m[4] || 0; - tm.y = m[5] || 0; - scaleX = Math.sqrt(a * a + b * b); - scaleY = Math.sqrt(d * d + c * c); - rotation = (a || b) ? Math.atan2(b, a) * _RAD2DEG : tm.rotation || 0; //note: if scaleX is 0, we cannot accurately measure rotation. Same for skewX with a scaleY of 0. Therefore, we default to the previously recorded value (or zero if that doesn't exist). - skewX = (c || d) ? Math.atan2(c, d) * _RAD2DEG + rotation : tm.skewX || 0; - tm.scaleX = scaleX; - tm.scaleY = scaleY; - tm.rotation = rotation; - tm.skewX = skewX; - if (_supports3D) { - tm.rotationX = tm.rotationY = tm.z = 0; - tm.perspective = defaultTransformPerspective; - tm.scaleZ = 1; - } - if (tm.svg) { - tm.x -= tm.xOrigin - (tm.xOrigin * a + tm.yOrigin * c); - tm.y -= tm.yOrigin - (tm.xOrigin * b + tm.yOrigin * d); - } - } - if (Math.abs(tm.skewX) > 90 && Math.abs(tm.skewX) < 270) { - if (invX) { - tm.scaleX *= -1; - tm.skewX += (tm.rotation <= 0) ? 180 : -180; - tm.rotation += (tm.rotation <= 0) ? 180 : -180; - } else { - tm.scaleY *= -1; - tm.skewX += (tm.skewX <= 0) ? 180 : -180; - } - } - tm.zOrigin = zOrigin; - //some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 0 in these cases. The conditional logic here is faster than calling Math.abs(). Also, browsers tend to render a SLIGHTLY rotated object in a fuzzy way, so we need to snap to exactly 0 when appropriate. - for (i in tm) { - if (tm[i] < min) if (tm[i] > -min) { - tm[i] = 0; - } - } - } - //DEBUG: _log("parsed rotation of " + t.getAttribute("id")+": "+(tm.rotationX)+", "+(tm.rotationY)+", "+(tm.rotation)+", scale: "+tm.scaleX+", "+tm.scaleY+", "+tm.scaleZ+", position: "+tm.x+", "+tm.y+", "+tm.z+", perspective: "+tm.perspective+ ", origin: "+ tm.xOrigin+ ","+ tm.yOrigin); - if (rec) { - t._gsTransform = tm; //record to the object's _gsTransform which we use so that tweens can control individual properties independently (we need all the properties to accurately recompose the matrix in the setRatio() method) - if (tm.svg) { //if we're supposed to apply transforms to the SVG element's "transform" attribute, make sure there aren't any CSS transforms applied or they'll override the attribute ones. Also clear the transform attribute if we're using CSS, just to be clean. - if (_useSVGTransformAttr && t.style[_transformProp]) { - TweenLite.delayedCall(0.001, function(){ //if we apply this right away (before anything has rendered), we risk there being no transforms for a brief moment and it also interferes with adjusting the transformOrigin in a tween with immediateRender:true (it'd try reading the matrix and it wouldn't have the appropriate data in place because we just removed it). - _removeProp(t.style, _transformProp); - }); - } else if (!_useSVGTransformAttr && t.getAttribute("transform")) { - TweenLite.delayedCall(0.001, function(){ - t.removeAttribute("transform"); - }); - } - } - } - return tm; - }, - - //for setting 2D transforms in IE6, IE7, and IE8 (must use a "filter" to emulate the behavior of modern day browser transforms) - _setIETransformRatio = function(v) { - var t = this.data, //refers to the element's _gsTransform object - ang = -t.rotation * _DEG2RAD, - skew = ang + t.skewX * _DEG2RAD, - rnd = 100000, - a = ((Math.cos(ang) * t.scaleX * rnd) | 0) / rnd, - b = ((Math.sin(ang) * t.scaleX * rnd) | 0) / rnd, - c = ((Math.sin(skew) * -t.scaleY * rnd) | 0) / rnd, - d = ((Math.cos(skew) * t.scaleY * rnd) | 0) / rnd, - style = this.t.style, - cs = this.t.currentStyle, - filters, val; - if (!cs) { - return; - } - val = b; //just for swapping the variables an inverting them (reused "val" to avoid creating another variable in memory). IE's filter matrix uses a non-standard matrix configuration (angle goes the opposite way, and b and c are reversed and inverted) - b = -c; - c = -val; - filters = cs.filter; - style.filter = ""; //remove filters so that we can accurately measure offsetWidth/offsetHeight - var w = this.t.offsetWidth, - h = this.t.offsetHeight, - clip = (cs.position !== "absolute"), - m = "progid:DXImageTransform.Microsoft.Matrix(M11=" + a + ", M12=" + b + ", M21=" + c + ", M22=" + d, - ox = t.x + (w * t.xPercent / 100), - oy = t.y + (h * t.yPercent / 100), - dx, dy; - - //if transformOrigin is being used, adjust the offset x and y - if (t.ox != null) { - dx = ((t.oxp) ? w * t.ox * 0.01 : t.ox) - w / 2; - dy = ((t.oyp) ? h * t.oy * 0.01 : t.oy) - h / 2; - ox += dx - (dx * a + dy * b); - oy += dy - (dx * c + dy * d); - } - - if (!clip) { - m += ", sizingMethod='auto expand')"; - } else { - dx = (w / 2); - dy = (h / 2); - //translate to ensure that transformations occur around the correct origin (default is center). - m += ", Dx=" + (dx - (dx * a + dy * b) + ox) + ", Dy=" + (dy - (dx * c + dy * d) + oy) + ")"; - } - if (filters.indexOf("DXImageTransform.Microsoft.Matrix(") !== -1) { - style.filter = filters.replace(_ieSetMatrixExp, m); - } else { - style.filter = m + " " + filters; //we must always put the transform/matrix FIRST (before alpha(opacity=xx)) to avoid an IE bug that slices part of the object when rotation is applied with alpha. - } - - //at the end or beginning of the tween, if the matrix is normal (1, 0, 0, 1) and opacity is 100 (or doesn't exist), remove the filter to improve browser performance. - if (v === 0 || v === 1) if (a === 1) if (b === 0) if (c === 0) if (d === 1) if (!clip || m.indexOf("Dx=0, Dy=0") !== -1) if (!_opacityExp.test(filters) || parseFloat(RegExp.$1) === 100) if (filters.indexOf("gradient(" && filters.indexOf("Alpha")) === -1) { - style.removeAttribute("filter"); - } - - //we must set the margins AFTER applying the filter in order to avoid some bugs in IE8 that could (in rare scenarios) cause them to be ignored intermittently (vibration). - if (!clip) { - var mult = (_ieVers < 8) ? 1 : -1, //in Internet Explorer 7 and before, the box model is broken, causing the browser to treat the width/height of the actual rotated filtered image as the width/height of the box itself, but Microsoft corrected that in IE8. We must use a negative offset in IE8 on the right/bottom - marg, prop, dif; - dx = t.ieOffsetX || 0; - dy = t.ieOffsetY || 0; - t.ieOffsetX = Math.round((w - ((a < 0 ? -a : a) * w + (b < 0 ? -b : b) * h)) / 2 + ox); - t.ieOffsetY = Math.round((h - ((d < 0 ? -d : d) * h + (c < 0 ? -c : c) * w)) / 2 + oy); - for (i = 0; i < 4; i++) { - prop = _margins[i]; - marg = cs[prop]; - //we need to get the current margin in case it is being tweened separately (we want to respect that tween's changes) - val = (marg.indexOf("px") !== -1) ? parseFloat(marg) : _convertToPixels(this.t, prop, parseFloat(marg), marg.replace(_suffixExp, "")) || 0; - if (val !== t[prop]) { - dif = (i < 2) ? -t.ieOffsetX : -t.ieOffsetY; //if another tween is controlling a margin, we cannot only apply the difference in the ieOffsets, so we essentially zero-out the dx and dy here in that case. We record the margin(s) later so that we can keep comparing them, making this code very flexible. - } else { - dif = (i < 2) ? dx - t.ieOffsetX : dy - t.ieOffsetY; - } - style[prop] = (t[prop] = Math.round( val - dif * ((i === 0 || i === 2) ? 1 : mult) )) + "px"; - } - } - }, - - /* translates a super small decimal to a string WITHOUT scientific notation + tm.perspective = a43 ? 1 / ((a43 < 0) ? -a43 : a43) : 0 + tm.x = a14 + tm.y = a24 + tm.z = a34 + if (tm.svg) { + tm.x -= tm.xOrigin - (tm.xOrigin * a11 - tm.yOrigin * a12) + tm.y -= tm.yOrigin - (tm.yOrigin * a21 - tm.xOrigin * a22) + } + } else if ((!_supports3D || parse || !m.length || tm.x !== m[4] || tm.y !== m[5] || (!tm.rotationX && !tm.rotationY))) { // sometimes a 6-element matrix is returned even when we performed 3D transforms, like if rotationX and rotationY are 180. In cases like this, we still need to honor the 3D transforms. If we just rely on the 2D info, it could affect how the data is interpreted, like scaleY might get set to -1 or rotation could get offset by 180 degrees. For example, do a TweenLite.to(element, 1, {css:{rotationX:180, rotationY:180}}) and then later, TweenLite.to(element, 1, {css:{rotationX:0}}) and without this conditional logic in place, it'd jump to a state of being unrotated when the 2nd tween starts. Then again, we need to honor the fact that the user COULD alter the transforms outside of CSSPlugin, like by manually applying new css, so we try to sense that by looking at x and y because if those changed, we know the changes were made outside CSSPlugin and we force a reinterpretation of the matrix values. Also, in Webkit browsers, if the element's "display" is "none", its calculated style value will always return empty, so if we've already recorded the values in the _gsTransform object, we'll just rely on those. + var k = (m.length >= 6), + a = k ? m[0] : 1, + b = m[1] || 0, + c = m[2] || 0, + d = k ? m[3] : 1 + tm.x = m[4] || 0 + tm.y = m[5] || 0 + scaleX = Math.sqrt(a * a + b * b) + scaleY = Math.sqrt(d * d + c * c) + rotation = (a || b) ? Math.atan2(b, a) * _RAD2DEG : tm.rotation || 0 // note: if scaleX is 0, we cannot accurately measure rotation. Same for skewX with a scaleY of 0. Therefore, we default to the previously recorded value (or zero if that doesn't exist). + skewX = (c || d) ? Math.atan2(c, d) * _RAD2DEG + rotation : tm.skewX || 0 + tm.scaleX = scaleX + tm.scaleY = scaleY + tm.rotation = rotation + tm.skewX = skewX + if (_supports3D) { + tm.rotationX = tm.rotationY = tm.z = 0 + tm.perspective = defaultTransformPerspective + tm.scaleZ = 1 + } + if (tm.svg) { + tm.x -= tm.xOrigin - (tm.xOrigin * a + tm.yOrigin * c) + tm.y -= tm.yOrigin - (tm.xOrigin * b + tm.yOrigin * d) + } + } + if (Math.abs(tm.skewX) > 90 && Math.abs(tm.skewX) < 270) { + if (invX) { + tm.scaleX *= -1 + tm.skewX += (tm.rotation <= 0) ? 180 : -180 + tm.rotation += (tm.rotation <= 0) ? 180 : -180 + } else { + tm.scaleY *= -1 + tm.skewX += (tm.skewX <= 0) ? 180 : -180 + } + } + tm.zOrigin = zOrigin + // some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 0 in these cases. The conditional logic here is faster than calling Math.abs(). Also, browsers tend to render a SLIGHTLY rotated object in a fuzzy way, so we need to snap to exactly 0 when appropriate. + for (i in tm) { + if (tm[i] < min) { + if (tm[i] > -min) { + tm[i] = 0 + } + } + } + } + // DEBUG: _log("parsed rotation of " + t.getAttribute("id")+": "+(tm.rotationX)+", "+(tm.rotationY)+", "+(tm.rotation)+", scale: "+tm.scaleX+", "+tm.scaleY+", "+tm.scaleZ+", position: "+tm.x+", "+tm.y+", "+tm.z+", perspective: "+tm.perspective+ ", origin: "+ tm.xOrigin+ ","+ tm.yOrigin); + if (rec) { + t._gsTransform = tm // record to the object's _gsTransform which we use so that tweens can control individual properties independently (we need all the properties to accurately recompose the matrix in the setRatio() method) + if (tm.svg) { // if we're supposed to apply transforms to the SVG element's "transform" attribute, make sure there aren't any CSS transforms applied or they'll override the attribute ones. Also clear the transform attribute if we're using CSS, just to be clean. + if (_useSVGTransformAttr && t.style[_transformProp]) { + TweenLite.delayedCall(0.001, function () { // if we apply this right away (before anything has rendered), we risk there being no transforms for a brief moment and it also interferes with adjusting the transformOrigin in a tween with immediateRender:true (it'd try reading the matrix and it wouldn't have the appropriate data in place because we just removed it). + _removeProp(t.style, _transformProp) + }) + } else if (!_useSVGTransformAttr && t.getAttribute('transform')) { + TweenLite.delayedCall(0.001, function () { + t.removeAttribute('transform') + }) + } + } + } + return tm + }, + + // for setting 2D transforms in IE6, IE7, and IE8 (must use a "filter" to emulate the behavior of modern day browser transforms) + _setIETransformRatio = function (v) { + var t = this.data, // refers to the element's _gsTransform object + ang = -t.rotation * _DEG2RAD, + skew = ang + t.skewX * _DEG2RAD, + rnd = 100000, + a = ((Math.cos(ang) * t.scaleX * rnd) | 0) / rnd, + b = ((Math.sin(ang) * t.scaleX * rnd) | 0) / rnd, + c = ((Math.sin(skew) * -t.scaleY * rnd) | 0) / rnd, + d = ((Math.cos(skew) * t.scaleY * rnd) | 0) / rnd, + style = this.t.style, + cs = this.t.currentStyle, + filters, val + if (!cs) { + return + } + val = b // just for swapping the variables an inverting them (reused "val" to avoid creating another variable in memory). IE's filter matrix uses a non-standard matrix configuration (angle goes the opposite way, and b and c are reversed and inverted) + b = -c + c = -val + filters = cs.filter + style.filter = '' // remove filters so that we can accurately measure offsetWidth/offsetHeight + var w = this.t.offsetWidth, + h = this.t.offsetHeight, + clip = (cs.position !== 'absolute'), + m = 'progid:DXImageTransform.Microsoft.Matrix(M11=' + a + ', M12=' + b + ', M21=' + c + ', M22=' + d, + ox = t.x + (w * t.xPercent / 100), + oy = t.y + (h * t.yPercent / 100), + dx, dy + + // if transformOrigin is being used, adjust the offset x and y + if (t.ox != null) { + dx = ((t.oxp) ? w * t.ox * 0.01 : t.ox) - w / 2 + dy = ((t.oyp) ? h * t.oy * 0.01 : t.oy) - h / 2 + ox += dx - (dx * a + dy * b) + oy += dy - (dx * c + dy * d) + } + + if (!clip) { + m += ", sizingMethod='auto expand')" + } else { + dx = (w / 2) + dy = (h / 2) + // translate to ensure that transformations occur around the correct origin (default is center). + m += ', Dx=' + (dx - (dx * a + dy * b) + ox) + ', Dy=' + (dy - (dx * c + dy * d) + oy) + ')' + } + if (filters.indexOf('DXImageTransform.Microsoft.Matrix(') !== -1) { + style.filter = filters.replace(_ieSetMatrixExp, m) + } else { + style.filter = m + ' ' + filters // we must always put the transform/matrix FIRST (before alpha(opacity=xx)) to avoid an IE bug that slices part of the object when rotation is applied with alpha. + } + + // at the end or beginning of the tween, if the matrix is normal (1, 0, 0, 1) and opacity is 100 (or doesn't exist), remove the filter to improve browser performance. + if (v === 0 || v === 1) { + if (a === 1) { + if (b === 0) { + if (c === 0) { + if (d === 1) { + if (!clip || m.indexOf('Dx=0, Dy=0') !== -1) { + if (!_opacityExp.test(filters) || parseFloat(RegExp.$1) === 100) { + if (filters.indexOf('gradient(' && filters.indexOf('Alpha')) === -1) { + style.removeAttribute('filter') + } + } + } + } + } + } + } + } + + // we must set the margins AFTER applying the filter in order to avoid some bugs in IE8 that could (in rare scenarios) cause them to be ignored intermittently (vibration). + if (!clip) { + var mult = (_ieVers < 8) ? 1 : -1, // in Internet Explorer 7 and before, the box model is broken, causing the browser to treat the width/height of the actual rotated filtered image as the width/height of the box itself, but Microsoft corrected that in IE8. We must use a negative offset in IE8 on the right/bottom + marg, prop, dif + dx = t.ieOffsetX || 0 + dy = t.ieOffsetY || 0 + t.ieOffsetX = Math.round((w - ((a < 0 ? -a : a) * w + (b < 0 ? -b : b) * h)) / 2 + ox) + t.ieOffsetY = Math.round((h - ((d < 0 ? -d : d) * h + (c < 0 ? -c : c) * w)) / 2 + oy) + for (i = 0; i < 4; i++) { + prop = _margins[i] + marg = cs[prop] + // we need to get the current margin in case it is being tweened separately (we want to respect that tween's changes) + val = (marg.indexOf('px') !== -1) ? parseFloat(marg) : _convertToPixels(this.t, prop, parseFloat(marg), marg.replace(_suffixExp, '')) || 0 + if (val !== t[prop]) { + dif = (i < 2) ? -t.ieOffsetX : -t.ieOffsetY // if another tween is controlling a margin, we cannot only apply the difference in the ieOffsets, so we essentially zero-out the dx and dy here in that case. We record the margin(s) later so that we can keep comparing them, making this code very flexible. + } else { + dif = (i < 2) ? dx - t.ieOffsetX : dy - t.ieOffsetY + } + style[prop] = (t[prop] = Math.round(val - dif * ((i === 0 || i === 2) ? 1 : mult))) + 'px' + } + } + }, + + /* translates a super small decimal to a string WITHOUT scientific notation _safeDecimal = function(n) { var s = (n < 0 ? -n : n) + "", a = s.split("e-"); @@ -4217,1029 +4283,1043 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa }, */ - _setTransformRatio = _internals.set3DTransformRatio = _internals.setTransformRatio = function(v) { - var t = this.data, //refers to the element's _gsTransform object - style = this.t.style, - angle = t.rotation, - rotationX = t.rotationX, - rotationY = t.rotationY, - sx = t.scaleX, - sy = t.scaleY, - sz = t.scaleZ, - x = t.x, - y = t.y, - z = t.z, - isSVG = t.svg, - perspective = t.perspective, - force3D = t.force3D, - skewY = t.skewY, - skewX = t.skewX, - t1, a11, a12, a13, a21, a22, a23, a31, a32, a33, a41, a42, a43, - zOrigin, min, cos, sin, t2, transform, comma, zero, skew, rnd; - if (skewY) { //for performance reasons, we combine all skewing into the skewX and rotation values. Remember, a skewY of 10 degrees looks the same as a rotation of 10 degrees plus a skewX of 10 degrees. - skewX += skewY; - angle += skewY; - } - - //check to see if we should render as 2D (and SVGs must use 2D when _useSVGTransformAttr is true) - if (((((v === 1 || v === 0) && force3D === "auto" && (this.tween._totalTime === this.tween._totalDuration || !this.tween._totalTime)) || !force3D) && !z && !perspective && !rotationY && !rotationX && sz === 1) || (_useSVGTransformAttr && isSVG) || !_supports3D) { //on the final render (which could be 0 for a from tween), if there are no 3D aspects, render in 2D to free up memory and improve performance especially on mobile devices. Check the tween's totalTime/totalDuration too in order to make sure it doesn't happen between repeats if it's a repeating tween. - - //2D - if (angle || skewX || isSVG) { - angle *= _DEG2RAD; - skew = skewX * _DEG2RAD; - rnd = 100000; - a11 = Math.cos(angle) * sx; - a21 = Math.sin(angle) * sx; - a12 = Math.sin(angle - skew) * -sy; - a22 = Math.cos(angle - skew) * sy; - if (skew && t.skewType === "simple") { //by default, we compensate skewing on the other axis to make it look more natural, but you can set the skewType to "simple" to use the uncompensated skewing that CSS does - t1 = Math.tan(skew - skewY * _DEG2RAD); - t1 = Math.sqrt(1 + t1 * t1); - a12 *= t1; - a22 *= t1; - if (skewY) { - t1 = Math.tan(skewY * _DEG2RAD); - t1 = Math.sqrt(1 + t1 * t1); - a11 *= t1; - a21 *= t1; - } - } - if (isSVG) { - x += t.xOrigin - (t.xOrigin * a11 + t.yOrigin * a12) + t.xOffset; - y += t.yOrigin - (t.xOrigin * a21 + t.yOrigin * a22) + t.yOffset; - if (_useSVGTransformAttr && (t.xPercent || t.yPercent)) { //The SVG spec doesn't support percentage-based translation in the "transform" attribute, so we merge it into the matrix to simulate it. - min = this.t.getBBox(); - x += t.xPercent * 0.01 * min.width; - y += t.yPercent * 0.01 * min.height; - } - min = 0.000001; - if (x < min) if (x > -min) { - x = 0; - } - if (y < min) if (y > -min) { - y = 0; - } - } - transform = (((a11 * rnd) | 0) / rnd) + "," + (((a21 * rnd) | 0) / rnd) + "," + (((a12 * rnd) | 0) / rnd) + "," + (((a22 * rnd) | 0) / rnd) + "," + x + "," + y + ")"; - if (isSVG && _useSVGTransformAttr) { - this.t.setAttribute("transform", "matrix(" + transform); - } else { - //some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 5 decimal places. - style[_transformProp] = ((t.xPercent || t.yPercent) ? "translate(" + t.xPercent + "%," + t.yPercent + "%) matrix(" : "matrix(") + transform; - } - } else { - style[_transformProp] = ((t.xPercent || t.yPercent) ? "translate(" + t.xPercent + "%," + t.yPercent + "%) matrix(" : "matrix(") + sx + ",0,0," + sy + "," + x + "," + y + ")"; - } - return; - - } - if (_isFirefox) { //Firefox has a bug (at least in v25) that causes it to render the transparent part of 32-bit PNG images as black when displayed inside an iframe and the 3D scale is very small and doesn't change sufficiently enough between renders (like if you use a Power4.easeInOut to scale from 0 to 1 where the beginning values only change a tiny amount to begin the tween before accelerating). In this case, we force the scale to be 0.00002 instead which is visually the same but works around the Firefox issue. - min = 0.0001; - if (sx < min && sx > -min) { - sx = sz = 0.00002; - } - if (sy < min && sy > -min) { - sy = sz = 0.00002; - } - if (perspective && !t.z && !t.rotationX && !t.rotationY) { //Firefox has a bug that causes elements to have an odd super-thin, broken/dotted black border on elements that have a perspective set but aren't utilizing 3D space (no rotationX, rotationY, or z). - perspective = 0; - } - } - if (angle || skewX) { - angle *= _DEG2RAD; - cos = a11 = Math.cos(angle); - sin = a21 = Math.sin(angle); - if (skewX) { - angle -= skewX * _DEG2RAD; - cos = Math.cos(angle); - sin = Math.sin(angle); - if (t.skewType === "simple") { //by default, we compensate skewing on the other axis to make it look more natural, but you can set the skewType to "simple" to use the uncompensated skewing that CSS does - t1 = Math.tan((skewX - skewY) * _DEG2RAD); - t1 = Math.sqrt(1 + t1 * t1); - cos *= t1; - sin *= t1; - if (t.skewY) { - t1 = Math.tan(skewY * _DEG2RAD); - t1 = Math.sqrt(1 + t1 * t1); - a11 *= t1; - a21 *= t1; - } - } - } - a12 = -sin; - a22 = cos; - - } else if (!rotationY && !rotationX && sz === 1 && !perspective && !isSVG) { //if we're only translating and/or 2D scaling, this is faster... - style[_transformProp] = ((t.xPercent || t.yPercent) ? "translate(" + t.xPercent + "%," + t.yPercent + "%) translate3d(" : "translate3d(") + x + "px," + y + "px," + z +"px)" + ((sx !== 1 || sy !== 1) ? " scale(" + sx + "," + sy + ")" : ""); - return; - } else { - a11 = a22 = 1; - a12 = a21 = 0; - } - // KEY INDEX AFFECTS a[row][column] - // a11 0 rotation, rotationY, scaleX - // a21 1 rotation, rotationY, scaleX - // a31 2 rotationY, scaleX - // a41 3 rotationY, scaleX - // a12 4 rotation, skewX, rotationX, scaleY - // a22 5 rotation, skewX, rotationX, scaleY - // a32 6 rotationX, scaleY - // a42 7 rotationX, scaleY - // a13 8 rotationY, rotationX, scaleZ - // a23 9 rotationY, rotationX, scaleZ - // a33 10 rotationY, rotationX, scaleZ - // a43 11 rotationY, rotationX, perspective, scaleZ - // a14 12 x, zOrigin, svgOrigin - // a24 13 y, zOrigin, svgOrigin - // a34 14 z, zOrigin - // a44 15 - // rotation: Math.atan2(a21, a11) - // rotationY: Math.atan2(a13, a33) (or Math.atan2(a13, a11)) - // rotationX: Math.atan2(a32, a33) - a33 = 1; - a13 = a23 = a31 = a32 = a41 = a42 = 0; - a43 = (perspective) ? -1 / perspective : 0; - zOrigin = t.zOrigin; - min = 0.000001; //threshold below which browsers use scientific notation which won't work. - comma = ","; - zero = "0"; - angle = rotationY * _DEG2RAD; - if (angle) { - cos = Math.cos(angle); - sin = Math.sin(angle); - a31 = -sin; - a41 = a43*-sin; - a13 = a11*sin; - a23 = a21*sin; - a33 = cos; - a43 *= cos; - a11 *= cos; - a21 *= cos; - } - angle = rotationX * _DEG2RAD; - if (angle) { - cos = Math.cos(angle); - sin = Math.sin(angle); - t1 = a12*cos+a13*sin; - t2 = a22*cos+a23*sin; - a32 = a33*sin; - a42 = a43*sin; - a13 = a12*-sin+a13*cos; - a23 = a22*-sin+a23*cos; - a33 = a33*cos; - a43 = a43*cos; - a12 = t1; - a22 = t2; - } - if (sz !== 1) { - a13*=sz; - a23*=sz; - a33*=sz; - a43*=sz; - } - if (sy !== 1) { - a12*=sy; - a22*=sy; - a32*=sy; - a42*=sy; - } - if (sx !== 1) { - a11*=sx; - a21*=sx; - a31*=sx; - a41*=sx; - } - - if (zOrigin || isSVG) { - if (zOrigin) { - x += a13*-zOrigin; - y += a23*-zOrigin; - z += a33*-zOrigin+zOrigin; - } - if (isSVG) { //due to bugs in some browsers, we need to manage the transform-origin of SVG manually - x += t.xOrigin - (t.xOrigin * a11 + t.yOrigin * a12) + t.xOffset; - y += t.yOrigin - (t.xOrigin * a21 + t.yOrigin * a22) + t.yOffset; - } - if (x < min && x > -min) { - x = zero; - } - if (y < min && y > -min) { - y = zero; - } - if (z < min && z > -min) { - z = 0; //don't use string because we calculate perspective later and need the number. - } - } - - //optimized way of concatenating all the values into a string. If we do it all in one shot, it's slower because of the way browsers have to create temp strings and the way it affects memory. If we do it piece-by-piece with +=, it's a bit slower too. We found that doing it in these sized chunks works best overall: - transform = ((t.xPercent || t.yPercent) ? "translate(" + t.xPercent + "%," + t.yPercent + "%) matrix3d(" : "matrix3d("); - transform += ((a11 < min && a11 > -min) ? zero : a11) + comma + ((a21 < min && a21 > -min) ? zero : a21) + comma + ((a31 < min && a31 > -min) ? zero : a31); - transform += comma + ((a41 < min && a41 > -min) ? zero : a41) + comma + ((a12 < min && a12 > -min) ? zero : a12) + comma + ((a22 < min && a22 > -min) ? zero : a22); - if (rotationX || rotationY || sz !== 1) { //performance optimization (often there's no rotationX or rotationY, so we can skip these calculations) - transform += comma + ((a32 < min && a32 > -min) ? zero : a32) + comma + ((a42 < min && a42 > -min) ? zero : a42) + comma + ((a13 < min && a13 > -min) ? zero : a13); - transform += comma + ((a23 < min && a23 > -min) ? zero : a23) + comma + ((a33 < min && a33 > -min) ? zero : a33) + comma + ((a43 < min && a43 > -min) ? zero : a43) + comma; - } else { - transform += ",0,0,0,0,1,0,"; - } - transform += x + comma + y + comma + z + comma + (perspective ? (1 + (-z / perspective)) : 1) + ")"; - - style[_transformProp] = transform; - }; - - p = Transform.prototype; - p.x = p.y = p.z = p.skewX = p.skewY = p.rotation = p.rotationX = p.rotationY = p.zOrigin = p.xPercent = p.yPercent = p.xOffset = p.yOffset = 0; - p.scaleX = p.scaleY = p.scaleZ = 1; - - _registerComplexSpecialProp("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,svgOrigin,transformPerspective,directionalRotation,parseTransform,force3D,skewType,xPercent,yPercent,smoothOrigin", {parser:function(t, e, parsingProp, cssp, pt, plugin, vars) { - if (cssp._lastParsedTransform === vars) { return pt; } //only need to parse the transform once, and only if the browser supports it. - cssp._lastParsedTransform = vars; - var scaleFunc = (vars.scale && typeof(vars.scale) === "function") ? vars.scale : 0, //if there's a function-based "scale" value, swap in the resulting numeric value temporarily. Otherwise, if it's called for both scaleX and scaleY independently, they may not match (like if the function uses Math.random()). - swapFunc; - if (typeof(vars[parsingProp]) === "function") { //whatever property triggers the initial parsing might be a function-based value in which case it already got called in parse(), thus we don't want to call it again in here. The most efficient way to avoid this is to temporarily swap the value directly into the vars object, and then after we do all our parsing in this function, we'll swap it back again. - swapFunc = vars[parsingProp]; - vars[parsingProp] = e; - } - if (scaleFunc) { - vars.scale = scaleFunc(_index, t); - } - var originalGSTransform = t._gsTransform, - style = t.style, - min = 0.000001, - i = _transformProps.length, - v = vars, - endRotations = {}, - transformOriginString = "transformOrigin", - m1 = _getTransform(t, _cs, true, v.parseTransform), - orig = v.transform && ((typeof(v.transform) === "function") ? v.transform(_index, _target) : v.transform), - m2, copy, has3D, hasChange, dr, x, y, matrix, p; - m1.skewType = v.skewType || m1.skewType || CSSPlugin.defaultSkewType; - cssp._transform = m1; - if (orig && typeof(orig) === "string" && _transformProp) { //for values like transform:"rotate(60deg) scale(0.5, 0.8)" - copy = _tempDiv.style; //don't use the original target because it might be SVG in which case some browsers don't report computed style correctly. - copy[_transformProp] = orig; - copy.display = "block"; //if display is "none", the browser often refuses to report the transform properties correctly. - copy.position = "absolute"; - _doc.body.appendChild(_tempDiv); - m2 = _getTransform(_tempDiv, null, false); - if (m1.skewType === "simple") { //the default _getTransform() reports the skewX/scaleY as if skewType is "compensated", thus we need to adjust that here if skewType is "simple". - m2.scaleY *= Math.cos(m2.skewX * _DEG2RAD); - } - if (m1.svg) { //if it's an SVG element, x/y part of the matrix will be affected by whatever we use as the origin and the offsets, so compensate here... - x = m1.xOrigin; - y = m1.yOrigin; - m2.x -= m1.xOffset; - m2.y -= m1.yOffset; - if (v.transformOrigin || v.svgOrigin) { //if this tween is altering the origin, we must factor that in here. The actual work of recording the transformOrigin values and setting up the PropTween is done later (still inside this function) so we cannot leave the changes intact here - we only want to update the x/y accordingly. - orig = {}; - _parseSVGOrigin(t, _parsePosition(v.transformOrigin), orig, v.svgOrigin, v.smoothOrigin, true); - x = orig.xOrigin; - y = orig.yOrigin; - m2.x -= orig.xOffset - m1.xOffset; - m2.y -= orig.yOffset - m1.yOffset; - } - if (x || y) { - matrix = _getMatrix(_tempDiv, true); - m2.x -= x - (x * matrix[0] + y * matrix[2]); - m2.y -= y - (x * matrix[1] + y * matrix[3]); - } - } - _doc.body.removeChild(_tempDiv); - if (!m2.perspective) { - m2.perspective = m1.perspective; //tweening to no perspective gives very unintuitive results - just keep the same perspective in that case. - } - if (v.xPercent != null) { - m2.xPercent = _parseVal(v.xPercent, m1.xPercent); - } - if (v.yPercent != null) { - m2.yPercent = _parseVal(v.yPercent, m1.yPercent); - } - } else if (typeof(v) === "object") { //for values like scaleX, scaleY, rotation, x, y, skewX, and skewY or transform:{...} (object) - m2 = {scaleX:_parseVal((v.scaleX != null) ? v.scaleX : v.scale, m1.scaleX), - scaleY:_parseVal((v.scaleY != null) ? v.scaleY : v.scale, m1.scaleY), - scaleZ:_parseVal(v.scaleZ, m1.scaleZ), - x:_parseVal(v.x, m1.x), - y:_parseVal(v.y, m1.y), - z:_parseVal(v.z, m1.z), - xPercent:_parseVal(v.xPercent, m1.xPercent), - yPercent:_parseVal(v.yPercent, m1.yPercent), - perspective:_parseVal(v.transformPerspective, m1.perspective)}; - dr = v.directionalRotation; - if (dr != null) { - if (typeof(dr) === "object") { - for (copy in dr) { - v[copy] = dr[copy]; - } - } else { - v.rotation = dr; - } - } - if (typeof(v.x) === "string" && v.x.indexOf("%") !== -1) { - m2.x = 0; - m2.xPercent = _parseVal(v.x, m1.xPercent); - } - if (typeof(v.y) === "string" && v.y.indexOf("%") !== -1) { - m2.y = 0; - m2.yPercent = _parseVal(v.y, m1.yPercent); - } - - m2.rotation = _parseAngle(("rotation" in v) ? v.rotation : ("shortRotation" in v) ? v.shortRotation + "_short" : ("rotationZ" in v) ? v.rotationZ : m1.rotation, m1.rotation, "rotation", endRotations); - if (_supports3D) { - m2.rotationX = _parseAngle(("rotationX" in v) ? v.rotationX : ("shortRotationX" in v) ? v.shortRotationX + "_short" : m1.rotationX || 0, m1.rotationX, "rotationX", endRotations); - m2.rotationY = _parseAngle(("rotationY" in v) ? v.rotationY : ("shortRotationY" in v) ? v.shortRotationY + "_short" : m1.rotationY || 0, m1.rotationY, "rotationY", endRotations); - } - m2.skewX = _parseAngle(v.skewX, m1.skewX); - m2.skewY = _parseAngle(v.skewY, m1.skewY); - } - if (_supports3D && v.force3D != null) { - m1.force3D = v.force3D; - hasChange = true; - } - - has3D = (m1.force3D || m1.z || m1.rotationX || m1.rotationY || m2.z || m2.rotationX || m2.rotationY || m2.perspective); - if (!has3D && v.scale != null) { - m2.scaleZ = 1; //no need to tween scaleZ. - } - - while (--i > -1) { - p = _transformProps[i]; - orig = m2[p] - m1[p]; - if (orig > min || orig < -min || v[p] != null || _forcePT[p] != null) { - hasChange = true; - pt = new CSSPropTween(m1, p, m1[p], orig, pt); - if (p in endRotations) { - pt.e = endRotations[p]; //directional rotations typically have compensated values during the tween, but we need to make sure they end at exactly what the user requested - } - pt.xs0 = 0; //ensures the value stays numeric in setRatio() - pt.plugin = plugin; - cssp._overwriteProps.push(pt.n); - } - } - - orig = v.transformOrigin; - if (m1.svg && (orig || v.svgOrigin)) { - x = m1.xOffset; //when we change the origin, in order to prevent things from jumping we adjust the x/y so we must record those here so that we can create PropTweens for them and flip them at the same time as the origin - y = m1.yOffset; - _parseSVGOrigin(t, _parsePosition(orig), m2, v.svgOrigin, v.smoothOrigin); - pt = _addNonTweeningNumericPT(m1, "xOrigin", (originalGSTransform ? m1 : m2).xOrigin, m2.xOrigin, pt, transformOriginString); //note: if there wasn't a transformOrigin defined yet, just start with the destination one; it's wasteful otherwise, and it causes problems with fromTo() tweens. For example, TweenLite.to("#wheel", 3, {rotation:180, transformOrigin:"50% 50%", delay:1}); TweenLite.fromTo("#wheel", 3, {scale:0.5, transformOrigin:"50% 50%"}, {scale:1, delay:2}); would cause a jump when the from values revert at the beginning of the 2nd tween. - pt = _addNonTweeningNumericPT(m1, "yOrigin", (originalGSTransform ? m1 : m2).yOrigin, m2.yOrigin, pt, transformOriginString); - if (x !== m1.xOffset || y !== m1.yOffset) { - pt = _addNonTweeningNumericPT(m1, "xOffset", (originalGSTransform ? x : m1.xOffset), m1.xOffset, pt, transformOriginString); - pt = _addNonTweeningNumericPT(m1, "yOffset", (originalGSTransform ? y : m1.yOffset), m1.yOffset, pt, transformOriginString); - } - orig = "0px 0px"; //certain browsers (like firefox) completely botch transform-origin, so we must remove it to prevent it from contaminating transforms. We manage it ourselves with xOrigin and yOrigin - } - if (orig || (_supports3D && has3D && m1.zOrigin)) { //if anything 3D is happening and there's a transformOrigin with a z component that's non-zero, we must ensure that the transformOrigin's z-component is set to 0 so that we can manually do those calculations to get around Safari bugs. Even if the user didn't specifically define a "transformOrigin" in this particular tween (maybe they did it via css directly). - if (_transformProp) { - hasChange = true; - p = _transformOriginProp; - orig = (orig || _getStyle(t, p, _cs, false, "50% 50%")) + ""; //cast as string to avoid errors - pt = new CSSPropTween(style, p, 0, 0, pt, -1, transformOriginString); - pt.b = style[p]; - pt.plugin = plugin; - if (_supports3D) { - copy = m1.zOrigin; - orig = orig.split(" "); - m1.zOrigin = ((orig.length > 2 && !(copy !== 0 && orig[2] === "0px")) ? parseFloat(orig[2]) : copy) || 0; //Safari doesn't handle the z part of transformOrigin correctly, so we'll manually handle it in the _set3DTransformRatio() method. - pt.xs0 = pt.e = orig[0] + " " + (orig[1] || "50%") + " 0px"; //we must define a z value of 0px specifically otherwise iOS 5 Safari will stick with the old one (if one was defined)! - pt = new CSSPropTween(m1, "zOrigin", 0, 0, pt, -1, pt.n); //we must create a CSSPropTween for the _gsTransform.zOrigin so that it gets reset properly at the beginning if the tween runs backward (as opposed to just setting m1.zOrigin here) - pt.b = copy; - pt.xs0 = pt.e = m1.zOrigin; - } else { - pt.xs0 = pt.e = orig; - } - - //for older versions of IE (6-8), we need to manually calculate things inside the setRatio() function. We record origin x and y (ox and oy) and whether or not the values are percentages (oxp and oyp). - } else { - _parsePosition(orig + "", m1); - } - } - if (hasChange) { - cssp._transformType = (!(m1.svg && _useSVGTransformAttr) && (has3D || this._transformType === 3)) ? 3 : 2; //quicker than calling cssp._enableTransforms(); - } - if (swapFunc) { - vars[parsingProp] = swapFunc; - } - if (scaleFunc) { - vars.scale = scaleFunc; - } - return pt; - }, prefix:true}); - - _registerComplexSpecialProp("boxShadow", {defaultValue:"0px 0px 0px 0px #999", prefix:true, color:true, multi:true, keyword:"inset"}); - - _registerComplexSpecialProp("borderRadius", {defaultValue:"0px", parser:function(t, e, p, cssp, pt, plugin) { - e = this.format(e); - var props = ["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"], - style = t.style, - ea1, i, es2, bs2, bs, es, bn, en, w, h, esfx, bsfx, rel, hn, vn, em; - w = parseFloat(t.offsetWidth); - h = parseFloat(t.offsetHeight); - ea1 = e.split(" "); - for (i = 0; i < props.length; i++) { //if we're dealing with percentages, we must convert things separately for the horizontal and vertical axis! - if (this.p.indexOf("border")) { //older browsers used a prefix - props[i] = _checkPropPrefix(props[i]); - } - bs = bs2 = _getStyle(t, props[i], _cs, false, "0px"); - if (bs.indexOf(" ") !== -1) { - bs2 = bs.split(" "); - bs = bs2[0]; - bs2 = bs2[1]; - } - es = es2 = ea1[i]; - bn = parseFloat(bs); - bsfx = bs.substr((bn + "").length); - rel = (es.charAt(1) === "="); - if (rel) { - en = parseInt(es.charAt(0)+"1", 10); - es = es.substr(2); - en *= parseFloat(es); - esfx = es.substr((en + "").length - (en < 0 ? 1 : 0)) || ""; - } else { - en = parseFloat(es); - esfx = es.substr((en + "").length); - } - if (esfx === "") { - esfx = _suffixMap[p] || bsfx; - } - if (esfx !== bsfx) { - hn = _convertToPixels(t, "borderLeft", bn, bsfx); //horizontal number (we use a bogus "borderLeft" property just because the _convertToPixels() method searches for the keywords "Left", "Right", "Top", and "Bottom" to determine of it's a horizontal or vertical property, and we need "border" in the name so that it knows it should measure relative to the element itself, not its parent. - vn = _convertToPixels(t, "borderTop", bn, bsfx); //vertical number - if (esfx === "%") { - bs = (hn / w * 100) + "%"; - bs2 = (vn / h * 100) + "%"; - } else if (esfx === "em") { - em = _convertToPixels(t, "borderLeft", 1, "em"); - bs = (hn / em) + "em"; - bs2 = (vn / em) + "em"; - } else { - bs = hn + "px"; - bs2 = vn + "px"; - } - if (rel) { - es = (parseFloat(bs) + en) + esfx; - es2 = (parseFloat(bs2) + en) + esfx; - } - } - pt = _parseComplex(style, props[i], bs + " " + bs2, es + " " + es2, false, "0px", pt); - } - return pt; - }, prefix:true, formatter:_getFormatter("0px 0px 0px 0px", false, true)}); - _registerComplexSpecialProp("borderBottomLeftRadius,borderBottomRightRadius,borderTopLeftRadius,borderTopRightRadius", {defaultValue:"0px", parser:function(t, e, p, cssp, pt, plugin) { - return _parseComplex(t.style, p, this.format(_getStyle(t, p, _cs, false, "0px 0px")), this.format(e), false, "0px", pt); - }, prefix:true, formatter:_getFormatter("0px 0px", false, true)}); - _registerComplexSpecialProp("backgroundPosition", {defaultValue:"0 0", parser:function(t, e, p, cssp, pt, plugin) { - var bp = "background-position", - cs = (_cs || _getComputedStyle(t, null)), - bs = this.format( ((cs) ? _ieVers ? cs.getPropertyValue(bp + "-x") + " " + cs.getPropertyValue(bp + "-y") : cs.getPropertyValue(bp) : t.currentStyle.backgroundPositionX + " " + t.currentStyle.backgroundPositionY) || "0 0"), //Internet Explorer doesn't report background-position correctly - we must query background-position-x and background-position-y and combine them (even in IE10). Before IE9, we must do the same with the currentStyle object and use camelCase - es = this.format(e), - ba, ea, i, pct, overlap, src; - if ((bs.indexOf("%") !== -1) !== (es.indexOf("%") !== -1) && es.split(",").length < 2) { - src = _getStyle(t, "backgroundImage").replace(_urlExp, ""); - if (src && src !== "none") { - ba = bs.split(" "); - ea = es.split(" "); - _tempImg.setAttribute("src", src); //set the temp IMG's src to the background-image so that we can measure its width/height - i = 2; - while (--i > -1) { - bs = ba[i]; - pct = (bs.indexOf("%") !== -1); - if (pct !== (ea[i].indexOf("%") !== -1)) { - overlap = (i === 0) ? t.offsetWidth - _tempImg.width : t.offsetHeight - _tempImg.height; - ba[i] = pct ? (parseFloat(bs) / 100 * overlap) + "px" : (parseFloat(bs) / overlap * 100) + "%"; - } - } - bs = ba.join(" "); - } - } - return this.parseComplex(t.style, bs, es, pt, plugin); - }, formatter:_parsePosition}); - _registerComplexSpecialProp("backgroundSize", {defaultValue:"0 0", formatter:function(v) { - v += ""; //ensure it's a string - return _parsePosition(v.indexOf(" ") === -1 ? v + " " + v : v); //if set to something like "100% 100%", Safari typically reports the computed style as just "100%" (no 2nd value), but we should ensure that there are two values, so copy the first one. Otherwise, it'd be interpreted as "100% 0" (wrong). - }}); - _registerComplexSpecialProp("perspective", {defaultValue:"0px", prefix:true}); - _registerComplexSpecialProp("perspectiveOrigin", {defaultValue:"50% 50%", prefix:true}); - _registerComplexSpecialProp("transformStyle", {prefix:true}); - _registerComplexSpecialProp("backfaceVisibility", {prefix:true}); - _registerComplexSpecialProp("userSelect", {prefix:true}); - _registerComplexSpecialProp("margin", {parser:_getEdgeParser("marginTop,marginRight,marginBottom,marginLeft")}); - _registerComplexSpecialProp("padding", {parser:_getEdgeParser("paddingTop,paddingRight,paddingBottom,paddingLeft")}); - _registerComplexSpecialProp("clip", {defaultValue:"rect(0px,0px,0px,0px)", parser:function(t, e, p, cssp, pt, plugin){ - var b, cs, delim; - if (_ieVers < 9) { //IE8 and earlier don't report a "clip" value in the currentStyle - instead, the values are split apart into clipTop, clipRight, clipBottom, and clipLeft. Also, in IE7 and earlier, the values inside rect() are space-delimited, not comma-delimited. - cs = t.currentStyle; - delim = _ieVers < 8 ? " " : ","; - b = "rect(" + cs.clipTop + delim + cs.clipRight + delim + cs.clipBottom + delim + cs.clipLeft + ")"; - e = this.format(e).split(",").join(delim); - } else { - b = this.format(_getStyle(t, this.p, _cs, false, this.dflt)); - e = this.format(e); - } - return this.parseComplex(t.style, b, e, pt, plugin); - }}); - _registerComplexSpecialProp("textShadow", {defaultValue:"0px 0px 0px #999", color:true, multi:true}); - _registerComplexSpecialProp("autoRound,strictUnits", {parser:function(t, e, p, cssp, pt) {return pt;}}); //just so that we can ignore these properties (not tween them) - _registerComplexSpecialProp("border", {defaultValue:"0px solid #000", parser:function(t, e, p, cssp, pt, plugin) { - var bw = _getStyle(t, "borderTopWidth", _cs, false, "0px"), - end = this.format(e).split(" "), - esfx = end[0].replace(_suffixExp, ""); - if (esfx !== "px") { //if we're animating to a non-px value, we need to convert the beginning width to that unit. - bw = (parseFloat(bw) / _convertToPixels(t, "borderTopWidth", 1, esfx)) + esfx; - } - return this.parseComplex(t.style, this.format(bw + " " + _getStyle(t, "borderTopStyle", _cs, false, "solid") + " " + _getStyle(t, "borderTopColor", _cs, false, "#000")), end.join(" "), pt, plugin); - }, color:true, formatter:function(v) { - var a = v.split(" "); - return a[0] + " " + (a[1] || "solid") + " " + (v.match(_colorExp) || ["#000"])[0]; - }}); - _registerComplexSpecialProp("borderWidth", {parser:_getEdgeParser("borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth")}); //Firefox doesn't pick up on borderWidth set in style sheets (only inline). - _registerComplexSpecialProp("float,cssFloat,styleFloat", {parser:function(t, e, p, cssp, pt, plugin) { - var s = t.style, - prop = ("cssFloat" in s) ? "cssFloat" : "styleFloat"; - return new CSSPropTween(s, prop, 0, 0, pt, -1, p, false, 0, s[prop], e); - }}); - - //opacity-related - var _setIEOpacityRatio = function(v) { - var t = this.t, //refers to the element's style property - filters = t.filter || _getStyle(this.data, "filter") || "", - val = (this.s + this.c * v) | 0, - skip; - if (val === 100) { //for older versions of IE that need to use a filter to apply opacity, we should remove the filter if opacity hits 1 in order to improve performance, but make sure there isn't a transform (matrix) or gradient in the filters. - if (filters.indexOf("atrix(") === -1 && filters.indexOf("radient(") === -1 && filters.indexOf("oader(") === -1) { - t.removeAttribute("filter"); - skip = (!_getStyle(this.data, "filter")); //if a class is applied that has an alpha filter, it will take effect (we don't want that), so re-apply our alpha filter in that case. We must first remove it and then check. - } else { - t.filter = filters.replace(_alphaFilterExp, ""); - skip = true; - } - } - if (!skip) { - if (this.xn1) { - t.filter = filters = filters || ("alpha(opacity=" + val + ")"); //works around bug in IE7/8 that prevents changes to "visibility" from being applied properly if the filter is changed to a different alpha on the same frame. - } - if (filters.indexOf("pacity") === -1) { //only used if browser doesn't support the standard opacity style property (IE 7 and 8). We omit the "O" to avoid case-sensitivity issues - if (val !== 0 || !this.xn1) { //bugs in IE7/8 won't render the filter properly if opacity is ADDED on the same frame/render as "visibility" changes (this.xn1 is 1 if this tween is an "autoAlpha" tween) - t.filter = filters + " alpha(opacity=" + val + ")"; //we round the value because otherwise, bugs in IE7/8 can prevent "visibility" changes from being applied properly. - } - } else { - t.filter = filters.replace(_opacityExp, "opacity=" + val); - } - } - }; - _registerComplexSpecialProp("opacity,alpha,autoAlpha", {defaultValue:"1", parser:function(t, e, p, cssp, pt, plugin) { - var b = parseFloat(_getStyle(t, "opacity", _cs, false, "1")), - style = t.style, - isAutoAlpha = (p === "autoAlpha"); - if (typeof(e) === "string" && e.charAt(1) === "=") { - e = ((e.charAt(0) === "-") ? -1 : 1) * parseFloat(e.substr(2)) + b; - } - if (isAutoAlpha && b === 1 && _getStyle(t, "visibility", _cs) === "hidden" && e !== 0) { //if visibility is initially set to "hidden", we should interpret that as intent to make opacity 0 (a convenience) - b = 0; - } - if (_supportsOpacity) { - pt = new CSSPropTween(style, "opacity", b, e - b, pt); - } else { - pt = new CSSPropTween(style, "opacity", b * 100, (e - b) * 100, pt); - pt.xn1 = isAutoAlpha ? 1 : 0; //we need to record whether or not this is an autoAlpha so that in the setRatio(), we know to duplicate the setting of the alpha in order to work around a bug in IE7 and IE8 that prevents changes to "visibility" from taking effect if the filter is changed to a different alpha(opacity) at the same time. Setting it to the SAME value first, then the new value works around the IE7/8 bug. - style.zoom = 1; //helps correct an IE issue. - pt.type = 2; - pt.b = "alpha(opacity=" + pt.s + ")"; - pt.e = "alpha(opacity=" + (pt.s + pt.c) + ")"; - pt.data = t; - pt.plugin = plugin; - pt.setRatio = _setIEOpacityRatio; - } - if (isAutoAlpha) { //we have to create the "visibility" PropTween after the opacity one in the linked list so that they run in the order that works properly in IE8 and earlier - pt = new CSSPropTween(style, "visibility", 0, 0, pt, -1, null, false, 0, ((b !== 0) ? "inherit" : "hidden"), ((e === 0) ? "hidden" : "inherit")); - pt.xs0 = "inherit"; - cssp._overwriteProps.push(pt.n); - cssp._overwriteProps.push(p); - } - return pt; - }}); - - - var _removeProp = function(s, p) { - if (p) { - if (s.removeProperty) { - if (p.substr(0,2) === "ms" || p.substr(0,6) === "webkit") { //Microsoft and some Webkit browsers don't conform to the standard of capitalizing the first prefix character, so we adjust so that when we prefix the caps with a dash, it's correct (otherwise it'd be "ms-transform" instead of "-ms-transform" for IE9, for example) - p = "-" + p; - } - s.removeProperty(p.replace(_capsExp, "-$1").toLowerCase()); - } else { //note: old versions of IE use "removeAttribute()" instead of "removeProperty()" - s.removeAttribute(p); - } - } - }, - _setClassNameRatio = function(v) { - this.t._gsClassPT = this; - if (v === 1 || v === 0) { - this.t.setAttribute("class", (v === 0) ? this.b : this.e); - var mpt = this.data, //first MiniPropTween - s = this.t.style; - while (mpt) { - if (!mpt.v) { - _removeProp(s, mpt.p); - } else { - s[mpt.p] = mpt.v; - } - mpt = mpt._next; - } - if (v === 1 && this.t._gsClassPT === this) { - this.t._gsClassPT = null; - } - } else if (this.t.getAttribute("class") !== this.e) { - this.t.setAttribute("class", this.e); - } - }; - _registerComplexSpecialProp("className", {parser:function(t, e, p, cssp, pt, plugin, vars) { - var b = t.getAttribute("class") || "", //don't use t.className because it doesn't work consistently on SVG elements; getAttribute("class") and setAttribute("class", value") is more reliable. - cssText = t.style.cssText, - difData, bs, cnpt, cnptLookup, mpt; - pt = cssp._classNamePT = new CSSPropTween(t, p, 0, 0, pt, 2); - pt.setRatio = _setClassNameRatio; - pt.pr = -11; - _hasPriority = true; - pt.b = b; - bs = _getAllStyles(t, _cs); - //if there's a className tween already operating on the target, force it to its end so that the necessary inline styles are removed and the class name is applied before we determine the end state (we don't want inline styles interfering that were there just for class-specific values) - cnpt = t._gsClassPT; - if (cnpt) { - cnptLookup = {}; - mpt = cnpt.data; //first MiniPropTween which stores the inline styles - we need to force these so that the inline styles don't contaminate things. Otherwise, there's a small chance that a tween could start and the inline values match the destination values and they never get cleaned. - while (mpt) { - cnptLookup[mpt.p] = 1; - mpt = mpt._next; - } - cnpt.setRatio(1); - } - t._gsClassPT = pt; - pt.e = (e.charAt(1) !== "=") ? e : b.replace(new RegExp("(?:\\s|^)" + e.substr(2) + "(?![\\w-])"), "") + ((e.charAt(0) === "+") ? " " + e.substr(2) : ""); - t.setAttribute("class", pt.e); - difData = _cssDif(t, bs, _getAllStyles(t), vars, cnptLookup); - t.setAttribute("class", b); - pt.data = difData.firstMPT; - t.style.cssText = cssText; //we recorded cssText before we swapped classes and ran _getAllStyles() because in cases when a className tween is overwritten, we remove all the related tweening properties from that class change (otherwise class-specific stuff can't override properties we've directly set on the target's style object due to specificity). - pt = pt.xfirst = cssp.parse(t, difData.difs, pt, plugin); //we record the CSSPropTween as the xfirst so that we can handle overwriting propertly (if "className" gets overwritten, we must kill all the properties associated with the className part of the tween, so we can loop through from xfirst to the pt itself) - return pt; - }}); - - - var _setClearPropsRatio = function(v) { - if (v === 1 || v === 0) if (this.data._totalTime === this.data._totalDuration && this.data.data !== "isFromStart") { //this.data refers to the tween. Only clear at the END of the tween (remember, from() tweens make the ratio go from 1 to 0, so we can't just check that and if the tween is the zero-duration one that's created internally to render the starting values in a from() tween, ignore that because otherwise, for example, from(...{height:100, clearProps:"height", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in). - var s = this.t.style, - transformParse = _specialProps.transform.parse, - a, p, i, clearTransform, transform; - if (this.e === "all") { - s.cssText = ""; - clearTransform = true; - } else { - a = this.e.split(" ").join("").split(","); - i = a.length; - while (--i > -1) { - p = a[i]; - if (_specialProps[p]) { - if (_specialProps[p].parse === transformParse) { - clearTransform = true; - } else { - p = (p === "transformOrigin") ? _transformOriginProp : _specialProps[p].p; //ensures that special properties use the proper browser-specific property name, like "scaleX" might be "-webkit-transform" or "boxShadow" might be "-moz-box-shadow" - } - } - _removeProp(s, p); - } - } - if (clearTransform) { - _removeProp(s, _transformProp); - transform = this.t._gsTransform; - if (transform) { - if (transform.svg) { - this.t.removeAttribute("data-svg-origin"); - this.t.removeAttribute("transform"); - } - delete this.t._gsTransform; - } - } - - } - }; - _registerComplexSpecialProp("clearProps", {parser:function(t, e, p, cssp, pt) { - pt = new CSSPropTween(t, p, 0, 0, pt, 2); - pt.setRatio = _setClearPropsRatio; - pt.e = e; - pt.pr = -10; - pt.data = cssp._tween; - _hasPriority = true; - return pt; - }}); - - p = "bezier,throwProps,physicsProps,physics2D".split(","); - i = p.length; - while (i--) { - _registerPluginProp(p[i]); - } - - - - - - - - - p = CSSPlugin.prototype; - p._firstPT = p._lastParsedTransform = p._transform = null; - - //gets called when the tween renders for the first time. This kicks everything off, recording start/end values, etc. - p._onInitTween = function(target, vars, tween, index) { - if (!target.nodeType) { //css is only for dom elements - return false; - } - this._target = _target = target; - this._tween = tween; - this._vars = vars; - _index = index; - _autoRound = vars.autoRound; - _hasPriority = false; - _suffixMap = vars.suffixMap || CSSPlugin.suffixMap; - _cs = _getComputedStyle(target, ""); - _overwriteProps = this._overwriteProps; - var style = target.style, - v, pt, pt2, first, last, next, zIndex, tpt, threeD; - if (_reqSafariFix) if (style.zIndex === "") { - v = _getStyle(target, "zIndex", _cs); - if (v === "auto" || v === "") { - //corrects a bug in [non-Android] Safari that prevents it from repainting elements in their new positions if they don't have a zIndex set. We also can't just apply this inside _parseTransform() because anything that's moved in any way (like using "left" or "top" instead of transforms like "x" and "y") can be affected, so it is best to ensure that anything that's tweening has a z-index. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. Plus zIndex is less memory-intensive. - this._addLazySet(style, "zIndex", 0); - } - } - - if (typeof(vars) === "string") { - first = style.cssText; - v = _getAllStyles(target, _cs); - style.cssText = first + ";" + vars; - v = _cssDif(target, v, _getAllStyles(target)).difs; - if (!_supportsOpacity && _opacityValExp.test(vars)) { - v.opacity = parseFloat( RegExp.$1 ); - } - vars = v; - style.cssText = first; - } - - if (vars.className) { //className tweens will combine any differences they find in the css with the vars that are passed in, so {className:"myClass", scale:0.5, left:20} would work. - this._firstPT = pt = _specialProps.className.parse(target, vars.className, "className", this, null, null, vars); - } else { - this._firstPT = pt = this.parse(target, vars, null); - } - - if (this._transformType) { - threeD = (this._transformType === 3); - if (!_transformProp) { - style.zoom = 1; //helps correct an IE issue. - } else if (_isSafari) { - _reqSafariFix = true; - //if zIndex isn't set, iOS Safari doesn't repaint things correctly sometimes (seemingly at random). - if (style.zIndex === "") { - zIndex = _getStyle(target, "zIndex", _cs); - if (zIndex === "auto" || zIndex === "") { - this._addLazySet(style, "zIndex", 0); - } - } - //Setting WebkitBackfaceVisibility corrects 3 bugs: - // 1) [non-Android] Safari skips rendering changes to "top" and "left" that are made on the same frame/render as a transform update. - // 2) iOS Safari sometimes neglects to repaint elements in their new positions. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. - // 3) Safari sometimes displayed odd artifacts when tweening the transform (or WebkitTransform) property, like ghosts of the edges of the element remained. Definitely a browser bug. - //Note: we allow the user to override the auto-setting by defining WebkitBackfaceVisibility in the vars of the tween. - if (_isSafariLT6) { - this._addLazySet(style, "WebkitBackfaceVisibility", this._vars.WebkitBackfaceVisibility || (threeD ? "visible" : "hidden")); - } - } - pt2 = pt; - while (pt2 && pt2._next) { - pt2 = pt2._next; - } - tpt = new CSSPropTween(target, "transform", 0, 0, null, 2); - this._linkCSSP(tpt, null, pt2); - tpt.setRatio = _transformProp ? _setTransformRatio : _setIETransformRatio; - tpt.data = this._transform || _getTransform(target, _cs, true); - tpt.tween = tween; - tpt.pr = -1; //ensures that the transforms get applied after the components are updated. - _overwriteProps.pop(); //we don't want to force the overwrite of all "transform" tweens of the target - we only care about individual transform properties like scaleX, rotation, etc. The CSSPropTween constructor automatically adds the property to _overwriteProps which is why we need to pop() here. - } - - if (_hasPriority) { - //reorders the linked list in order of pr (priority) - while (pt) { - next = pt._next; - pt2 = first; - while (pt2 && pt2.pr > pt.pr) { - pt2 = pt2._next; - } - if ((pt._prev = pt2 ? pt2._prev : last)) { - pt._prev._next = pt; - } else { - first = pt; - } - if ((pt._next = pt2)) { - pt2._prev = pt; - } else { - last = pt; - } - pt = next; - } - this._firstPT = first; - } - return true; - }; - - - p.parse = function(target, vars, pt, plugin) { - var style = target.style, - p, sp, bn, en, bs, es, bsfx, esfx, isStr, rel; - for (p in vars) { - es = vars[p]; //ending value string - if (typeof(es) === "function") { - es = es(_index, _target); - } - sp = _specialProps[p]; //SpecialProp lookup. - if (sp) { - pt = sp.parse(target, es, p, this, pt, plugin, vars); - } else if (p.substr(0,2) === "--") { //for tweening CSS variables (which always start with "--"). To maximize performance and simplicity, we bypass CSSPlugin altogether and just add a normal property tween to the tween instance itself. - this._tween._propLookup[p] = this._addTween.call(this._tween, target.style, "setProperty", _getComputedStyle(target).getPropertyValue(p) + "", es + "", p, false, p); - continue; - } else { - bs = _getStyle(target, p, _cs) + ""; - isStr = (typeof(es) === "string"); - if (p === "color" || p === "fill" || p === "stroke" || p.indexOf("Color") !== -1 || (isStr && _rgbhslExp.test(es))) { //Opera uses background: to define color sometimes in addition to backgroundColor: - if (!isStr) { - es = _parseColor(es); - es = ((es.length > 3) ? "rgba(" : "rgb(") + es.join(",") + ")"; - } - pt = _parseComplex(style, p, bs, es, true, "transparent", pt, 0, plugin); - - } else if (isStr && _complexExp.test(es)) { - pt = _parseComplex(style, p, bs, es, true, null, pt, 0, plugin); - - } else { - bn = parseFloat(bs); - bsfx = (bn || bn === 0) ? bs.substr((bn + "").length) : ""; //remember, bs could be non-numeric like "normal" for fontWeight, so we should default to a blank suffix in that case. - - if (bs === "" || bs === "auto") { - if (p === "width" || p === "height") { - bn = _getDimension(target, p, _cs); - bsfx = "px"; - } else if (p === "left" || p === "top") { - bn = _calculateOffset(target, p, _cs); - bsfx = "px"; - } else { - bn = (p !== "opacity") ? 0 : 1; - bsfx = ""; - } - } - - rel = (isStr && es.charAt(1) === "="); - if (rel) { - en = parseInt(es.charAt(0) + "1", 10); - es = es.substr(2); - en *= parseFloat(es); - esfx = es.replace(_suffixExp, ""); - } else { - en = parseFloat(es); - esfx = isStr ? es.replace(_suffixExp, "") : ""; - } - - if (esfx === "") { - esfx = (p in _suffixMap) ? _suffixMap[p] : bsfx; //populate the end suffix, prioritizing the map, then if none is found, use the beginning suffix. - } - - es = (en || en === 0) ? (rel ? en + bn : en) + esfx : vars[p]; //ensures that any += or -= prefixes are taken care of. Record the end value before normalizing the suffix because we always want to end the tween on exactly what they intended even if it doesn't match the beginning value's suffix. - //if the beginning/ending suffixes don't match, normalize them... - if (bsfx !== esfx) if (esfx !== "" || p === "lineHeight") if (en || en === 0) if (bn) { //note: if the beginning value (bn) is 0, we don't need to convert units! - bn = _convertToPixels(target, p, bn, bsfx); - if (esfx === "%") { - bn /= _convertToPixels(target, p, 100, "%") / 100; - if (vars.strictUnits !== true) { //some browsers report only "px" values instead of allowing "%" with getComputedStyle(), so we assume that if we're tweening to a %, we should start there too unless strictUnits:true is defined. This approach is particularly useful for responsive designs that use from() tweens. - bs = bn + "%"; - } - - } else if (esfx === "em" || esfx === "rem" || esfx === "vw" || esfx === "vh") { - bn /= _convertToPixels(target, p, 1, esfx); - - //otherwise convert to pixels. - } else if (esfx !== "px") { - en = _convertToPixels(target, p, en, esfx); - esfx = "px"; //we don't use bsfx after this, so we don't need to set it to px too. - } - if (rel) if (en || en === 0) { - es = (en + bn) + esfx; //the changes we made affect relative calculations, so adjust the end value here. - } - } - - if (rel) { - en += bn; - } - - if ((bn || bn === 0) && (en || en === 0)) { //faster than isNaN(). Also, previously we required en !== bn but that doesn't really gain much performance and it prevents _parseToProxy() from working properly if beginning and ending values match but need to get tweened by an external plugin anyway. For example, a bezier tween where the target starts at left:0 and has these points: [{left:50},{left:0}] wouldn't work properly because when parsing the last point, it'd match the first (current) one and a non-tweening CSSPropTween would be recorded when we actually need a normal tween (type:0) so that things get updated during the tween properly. - pt = new CSSPropTween(style, p, bn, en - bn, pt, 0, p, (_autoRound !== false && (esfx === "px" || p === "zIndex")), 0, bs, es); - pt.xs0 = esfx; - //DEBUG: _log("tween "+p+" from "+pt.b+" ("+bn+esfx+") to "+pt.e+" with suffix: "+pt.xs0); - } else if (style[p] === undefined || !es && (es + "" === "NaN" || es == null)) { - _log("invalid " + p + " tween value: " + vars[p]); - } else { - pt = new CSSPropTween(style, p, en || bn || 0, 0, pt, -1, p, false, 0, bs, es); - pt.xs0 = (es === "none" && (p === "display" || p.indexOf("Style") !== -1)) ? bs : es; //intermediate value should typically be set immediately (end value) except for "display" or things like borderTopStyle, borderBottomStyle, etc. which should use the beginning value during the tween. - //DEBUG: _log("non-tweening value "+p+": "+pt.xs0); - } - } - } - if (plugin) if (pt && !pt.plugin) { - pt.plugin = plugin; - } - } - return pt; - }; - - - //gets called every time the tween updates, passing the new ratio (typically a value between 0 and 1, but not always (for example, if an Elastic.easeOut is used, the value can jump above 1 mid-tween). It will always start and 0 and end at 1. - p.setRatio = function(v) { - var pt = this._firstPT, - min = 0.000001, - val, str, i; - //at the end of the tween, we set the values to exactly what we received in order to make sure non-tweening values (like "position" or "float" or whatever) are set and so that if the beginning/ending suffixes (units) didn't match and we normalized to px, the value that the user passed in is used here. We check to see if the tween is at its beginning in case it's a from() tween in which case the ratio will actually go from 1 to 0 over the course of the tween (backwards). - if (v === 1 && (this._tween._time === this._tween._duration || this._tween._time === 0)) { - while (pt) { - if (pt.type !== 2) { - if (pt.r && pt.type !== -1) { - val = Math.round(pt.s + pt.c); - if (!pt.type) { - pt.t[pt.p] = val + pt.xs0; - } else if (pt.type === 1) { //complex value (one that typically has multiple numbers inside a string, like "rect(5px,10px,20px,25px)" - i = pt.l; - str = pt.xs0 + val + pt.xs1; - for (i = 1; i < pt.l; i++) { - str += pt["xn"+i] + pt["xs"+(i+1)]; - } - pt.t[pt.p] = str; - } - } else { - pt.t[pt.p] = pt.e; - } - } else { - pt.setRatio(v); - } - pt = pt._next; - } - - } else if (v || !(this._tween._time === this._tween._duration || this._tween._time === 0) || this._tween._rawPrevTime === -0.000001) { - while (pt) { - val = pt.c * v + pt.s; - if (pt.r) { - val = Math.round(val); - } else if (val < min) if (val > -min) { - val = 0; - } - if (!pt.type) { - pt.t[pt.p] = val + pt.xs0; - } else if (pt.type === 1) { //complex value (one that typically has multiple numbers inside a string, like "rect(5px,10px,20px,25px)" - i = pt.l; - if (i === 2) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2; - } else if (i === 3) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3; - } else if (i === 4) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4; - } else if (i === 5) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4 + pt.xn4 + pt.xs5; - } else { - str = pt.xs0 + val + pt.xs1; - for (i = 1; i < pt.l; i++) { - str += pt["xn"+i] + pt["xs"+(i+1)]; - } - pt.t[pt.p] = str; - } - - } else if (pt.type === -1) { //non-tweening value - pt.t[pt.p] = pt.xs0; - - } else if (pt.setRatio) { //custom setRatio() for things like SpecialProps, external plugins, etc. - pt.setRatio(v); - } - pt = pt._next; - } - - //if the tween is reversed all the way back to the beginning, we need to restore the original values which may have different units (like % instead of px or em or whatever). - } else { - while (pt) { - if (pt.type !== 2) { - pt.t[pt.p] = pt.b; - } else { - pt.setRatio(v); - } - pt = pt._next; - } - } - }; - - /** + _setTransformRatio = _internals.set3DTransformRatio = _internals.setTransformRatio = function (v) { + var t = this.data, // refers to the element's _gsTransform object + style = this.t.style, + angle = t.rotation, + rotationX = t.rotationX, + rotationY = t.rotationY, + sx = t.scaleX, + sy = t.scaleY, + sz = t.scaleZ, + x = t.x, + y = t.y, + z = t.z, + isSVG = t.svg, + perspective = t.perspective, + force3D = t.force3D, + skewY = t.skewY, + skewX = t.skewX, + t1, a11, a12, a13, a21, a22, a23, a31, a32, a33, a41, a42, a43, + zOrigin, min, cos, sin, t2, transform, comma, zero, skew, rnd + if (skewY) { // for performance reasons, we combine all skewing into the skewX and rotation values. Remember, a skewY of 10 degrees looks the same as a rotation of 10 degrees plus a skewX of 10 degrees. + skewX += skewY + angle += skewY + } + + // check to see if we should render as 2D (and SVGs must use 2D when _useSVGTransformAttr is true) + if (((((v === 1 || v === 0) && force3D === 'auto' && (this.tween._totalTime === this.tween._totalDuration || !this.tween._totalTime)) || !force3D) && !z && !perspective && !rotationY && !rotationX && sz === 1) || (_useSVGTransformAttr && isSVG) || !_supports3D) { // on the final render (which could be 0 for a from tween), if there are no 3D aspects, render in 2D to free up memory and improve performance especially on mobile devices. Check the tween's totalTime/totalDuration too in order to make sure it doesn't happen between repeats if it's a repeating tween. + // 2D + if (angle || skewX || isSVG) { + angle *= _DEG2RAD + skew = skewX * _DEG2RAD + rnd = 100000 + a11 = Math.cos(angle) * sx + a21 = Math.sin(angle) * sx + a12 = Math.sin(angle - skew) * -sy + a22 = Math.cos(angle - skew) * sy + if (skew && t.skewType === 'simple') { // by default, we compensate skewing on the other axis to make it look more natural, but you can set the skewType to "simple" to use the uncompensated skewing that CSS does + t1 = Math.tan(skew - skewY * _DEG2RAD) + t1 = Math.sqrt(1 + t1 * t1) + a12 *= t1 + a22 *= t1 + if (skewY) { + t1 = Math.tan(skewY * _DEG2RAD) + t1 = Math.sqrt(1 + t1 * t1) + a11 *= t1 + a21 *= t1 + } + } + if (isSVG) { + x += t.xOrigin - (t.xOrigin * a11 + t.yOrigin * a12) + t.xOffset + y += t.yOrigin - (t.xOrigin * a21 + t.yOrigin * a22) + t.yOffset + if (_useSVGTransformAttr && (t.xPercent || t.yPercent)) { // The SVG spec doesn't support percentage-based translation in the "transform" attribute, so we merge it into the matrix to simulate it. + min = this.t.getBBox() + x += t.xPercent * 0.01 * min.width + y += t.yPercent * 0.01 * min.height + } + min = 0.000001 + if (x < min) { + if (x > -min) { + x = 0 + } + } + if (y < min) { + if (y > -min) { + y = 0 + } + } + } + transform = (((a11 * rnd) | 0) / rnd) + ',' + (((a21 * rnd) | 0) / rnd) + ',' + (((a12 * rnd) | 0) / rnd) + ',' + (((a22 * rnd) | 0) / rnd) + ',' + x + ',' + y + ')' + if (isSVG && _useSVGTransformAttr) { + this.t.setAttribute('transform', 'matrix(' + transform) + } else { + // some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 5 decimal places. + style[_transformProp] = ((t.xPercent || t.yPercent) ? 'translate(' + t.xPercent + '%,' + t.yPercent + '%) matrix(' : 'matrix(') + transform + } + } else { + style[_transformProp] = ((t.xPercent || t.yPercent) ? 'translate(' + t.xPercent + '%,' + t.yPercent + '%) matrix(' : 'matrix(') + sx + ',0,0,' + sy + ',' + x + ',' + y + ')' + } + return + } + if (_isFirefox) { // Firefox has a bug (at least in v25) that causes it to render the transparent part of 32-bit PNG images as black when displayed inside an iframe and the 3D scale is very small and doesn't change sufficiently enough between renders (like if you use a Power4.easeInOut to scale from 0 to 1 where the beginning values only change a tiny amount to begin the tween before accelerating). In this case, we force the scale to be 0.00002 instead which is visually the same but works around the Firefox issue. + min = 0.0001 + if (sx < min && sx > -min) { + sx = sz = 0.00002 + } + if (sy < min && sy > -min) { + sy = sz = 0.00002 + } + if (perspective && !t.z && !t.rotationX && !t.rotationY) { // Firefox has a bug that causes elements to have an odd super-thin, broken/dotted black border on elements that have a perspective set but aren't utilizing 3D space (no rotationX, rotationY, or z). + perspective = 0 + } + } + if (angle || skewX) { + angle *= _DEG2RAD + cos = a11 = Math.cos(angle) + sin = a21 = Math.sin(angle) + if (skewX) { + angle -= skewX * _DEG2RAD + cos = Math.cos(angle) + sin = Math.sin(angle) + if (t.skewType === 'simple') { // by default, we compensate skewing on the other axis to make it look more natural, but you can set the skewType to "simple" to use the uncompensated skewing that CSS does + t1 = Math.tan((skewX - skewY) * _DEG2RAD) + t1 = Math.sqrt(1 + t1 * t1) + cos *= t1 + sin *= t1 + if (t.skewY) { + t1 = Math.tan(skewY * _DEG2RAD) + t1 = Math.sqrt(1 + t1 * t1) + a11 *= t1 + a21 *= t1 + } + } + } + a12 = -sin + a22 = cos + } else if (!rotationY && !rotationX && sz === 1 && !perspective && !isSVG) { // if we're only translating and/or 2D scaling, this is faster... + style[_transformProp] = ((t.xPercent || t.yPercent) ? 'translate(' + t.xPercent + '%,' + t.yPercent + '%) translate3d(' : 'translate3d(') + x + 'px,' + y + 'px,' + z + 'px)' + ((sx !== 1 || sy !== 1) ? ' scale(' + sx + ',' + sy + ')' : '') + return + } else { + a11 = a22 = 1 + a12 = a21 = 0 + } + // KEY INDEX AFFECTS a[row][column] + // a11 0 rotation, rotationY, scaleX + // a21 1 rotation, rotationY, scaleX + // a31 2 rotationY, scaleX + // a41 3 rotationY, scaleX + // a12 4 rotation, skewX, rotationX, scaleY + // a22 5 rotation, skewX, rotationX, scaleY + // a32 6 rotationX, scaleY + // a42 7 rotationX, scaleY + // a13 8 rotationY, rotationX, scaleZ + // a23 9 rotationY, rotationX, scaleZ + // a33 10 rotationY, rotationX, scaleZ + // a43 11 rotationY, rotationX, perspective, scaleZ + // a14 12 x, zOrigin, svgOrigin + // a24 13 y, zOrigin, svgOrigin + // a34 14 z, zOrigin + // a44 15 + // rotation: Math.atan2(a21, a11) + // rotationY: Math.atan2(a13, a33) (or Math.atan2(a13, a11)) + // rotationX: Math.atan2(a32, a33) + a33 = 1 + a13 = a23 = a31 = a32 = a41 = a42 = 0 + a43 = (perspective) ? -1 / perspective : 0 + zOrigin = t.zOrigin + min = 0.000001 // threshold below which browsers use scientific notation which won't work. + comma = ',' + zero = '0' + angle = rotationY * _DEG2RAD + if (angle) { + cos = Math.cos(angle) + sin = Math.sin(angle) + a31 = -sin + a41 = a43 * -sin + a13 = a11 * sin + a23 = a21 * sin + a33 = cos + a43 *= cos + a11 *= cos + a21 *= cos + } + angle = rotationX * _DEG2RAD + if (angle) { + cos = Math.cos(angle) + sin = Math.sin(angle) + t1 = a12 * cos + a13 * sin + t2 = a22 * cos + a23 * sin + a32 = a33 * sin + a42 = a43 * sin + a13 = a12 * -sin + a13 * cos + a23 = a22 * -sin + a23 * cos + a33 = a33 * cos + a43 = a43 * cos + a12 = t1 + a22 = t2 + } + if (sz !== 1) { + a13 *= sz + a23 *= sz + a33 *= sz + a43 *= sz + } + if (sy !== 1) { + a12 *= sy + a22 *= sy + a32 *= sy + a42 *= sy + } + if (sx !== 1) { + a11 *= sx + a21 *= sx + a31 *= sx + a41 *= sx + } + + if (zOrigin || isSVG) { + if (zOrigin) { + x += a13 * -zOrigin + y += a23 * -zOrigin + z += a33 * -zOrigin + zOrigin + } + if (isSVG) { // due to bugs in some browsers, we need to manage the transform-origin of SVG manually + x += t.xOrigin - (t.xOrigin * a11 + t.yOrigin * a12) + t.xOffset + y += t.yOrigin - (t.xOrigin * a21 + t.yOrigin * a22) + t.yOffset + } + if (x < min && x > -min) { + x = zero + } + if (y < min && y > -min) { + y = zero + } + if (z < min && z > -min) { + z = 0 // don't use string because we calculate perspective later and need the number. + } + } + + // optimized way of concatenating all the values into a string. If we do it all in one shot, it's slower because of the way browsers have to create temp strings and the way it affects memory. If we do it piece-by-piece with +=, it's a bit slower too. We found that doing it in these sized chunks works best overall: + transform = ((t.xPercent || t.yPercent) ? 'translate(' + t.xPercent + '%,' + t.yPercent + '%) matrix3d(' : 'matrix3d(') + transform += ((a11 < min && a11 > -min) ? zero : a11) + comma + ((a21 < min && a21 > -min) ? zero : a21) + comma + ((a31 < min && a31 > -min) ? zero : a31) + transform += comma + ((a41 < min && a41 > -min) ? zero : a41) + comma + ((a12 < min && a12 > -min) ? zero : a12) + comma + ((a22 < min && a22 > -min) ? zero : a22) + if (rotationX || rotationY || sz !== 1) { // performance optimization (often there's no rotationX or rotationY, so we can skip these calculations) + transform += comma + ((a32 < min && a32 > -min) ? zero : a32) + comma + ((a42 < min && a42 > -min) ? zero : a42) + comma + ((a13 < min && a13 > -min) ? zero : a13) + transform += comma + ((a23 < min && a23 > -min) ? zero : a23) + comma + ((a33 < min && a33 > -min) ? zero : a33) + comma + ((a43 < min && a43 > -min) ? zero : a43) + comma + } else { + transform += ',0,0,0,0,1,0,' + } + transform += x + comma + y + comma + z + comma + (perspective ? (1 + (-z / perspective)) : 1) + ')' + + style[_transformProp] = transform + } + + p = Transform.prototype + p.x = p.y = p.z = p.skewX = p.skewY = p.rotation = p.rotationX = p.rotationY = p.zOrigin = p.xPercent = p.yPercent = p.xOffset = p.yOffset = 0 + p.scaleX = p.scaleY = p.scaleZ = 1 + + _registerComplexSpecialProp('transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,svgOrigin,transformPerspective,directionalRotation,parseTransform,force3D,skewType,xPercent,yPercent,smoothOrigin', {parser: function (t, e, parsingProp, cssp, pt, plugin, vars) { + if (cssp._lastParsedTransform === vars) { return pt } // only need to parse the transform once, and only if the browser supports it. + cssp._lastParsedTransform = vars + var scaleFunc = (vars.scale && typeof (vars.scale) === 'function') ? vars.scale : 0, // if there's a function-based "scale" value, swap in the resulting numeric value temporarily. Otherwise, if it's called for both scaleX and scaleY independently, they may not match (like if the function uses Math.random()). + swapFunc + if (typeof (vars[parsingProp]) === 'function') { // whatever property triggers the initial parsing might be a function-based value in which case it already got called in parse(), thus we don't want to call it again in here. The most efficient way to avoid this is to temporarily swap the value directly into the vars object, and then after we do all our parsing in this function, we'll swap it back again. + swapFunc = vars[parsingProp] + vars[parsingProp] = e + } + if (scaleFunc) { + vars.scale = scaleFunc(_index, t) + } + var originalGSTransform = t._gsTransform, + style = t.style, + min = 0.000001, + i = _transformProps.length, + v = vars, + endRotations = {}, + transformOriginString = 'transformOrigin', + m1 = _getTransform(t, _cs, true, v.parseTransform), + orig = v.transform && ((typeof (v.transform) === 'function') ? v.transform(_index, _target) : v.transform), + m2, copy, has3D, hasChange, dr, x, y, matrix, p + m1.skewType = v.skewType || m1.skewType || CSSPlugin.defaultSkewType + cssp._transform = m1 + if (orig && typeof (orig) === 'string' && _transformProp) { // for values like transform:"rotate(60deg) scale(0.5, 0.8)" + copy = _tempDiv.style // don't use the original target because it might be SVG in which case some browsers don't report computed style correctly. + copy[_transformProp] = orig + copy.display = 'block' // if display is "none", the browser often refuses to report the transform properties correctly. + copy.position = 'absolute' + _doc.body.appendChild(_tempDiv) + m2 = _getTransform(_tempDiv, null, false) + if (m1.skewType === 'simple') { // the default _getTransform() reports the skewX/scaleY as if skewType is "compensated", thus we need to adjust that here if skewType is "simple". + m2.scaleY *= Math.cos(m2.skewX * _DEG2RAD) + } + if (m1.svg) { // if it's an SVG element, x/y part of the matrix will be affected by whatever we use as the origin and the offsets, so compensate here... + x = m1.xOrigin + y = m1.yOrigin + m2.x -= m1.xOffset + m2.y -= m1.yOffset + if (v.transformOrigin || v.svgOrigin) { // if this tween is altering the origin, we must factor that in here. The actual work of recording the transformOrigin values and setting up the PropTween is done later (still inside this function) so we cannot leave the changes intact here - we only want to update the x/y accordingly. + orig = {} + _parseSVGOrigin(t, _parsePosition(v.transformOrigin), orig, v.svgOrigin, v.smoothOrigin, true) + x = orig.xOrigin + y = orig.yOrigin + m2.x -= orig.xOffset - m1.xOffset + m2.y -= orig.yOffset - m1.yOffset + } + if (x || y) { + matrix = _getMatrix(_tempDiv, true) + m2.x -= x - (x * matrix[0] + y * matrix[2]) + m2.y -= y - (x * matrix[1] + y * matrix[3]) + } + } + _doc.body.removeChild(_tempDiv) + if (!m2.perspective) { + m2.perspective = m1.perspective // tweening to no perspective gives very unintuitive results - just keep the same perspective in that case. + } + if (v.xPercent != null) { + m2.xPercent = _parseVal(v.xPercent, m1.xPercent) + } + if (v.yPercent != null) { + m2.yPercent = _parseVal(v.yPercent, m1.yPercent) + } + } else if (typeof (v) === 'object') { // for values like scaleX, scaleY, rotation, x, y, skewX, and skewY or transform:{...} (object) + m2 = {scaleX: _parseVal((v.scaleX != null) ? v.scaleX : v.scale, m1.scaleX), + scaleY: _parseVal((v.scaleY != null) ? v.scaleY : v.scale, m1.scaleY), + scaleZ: _parseVal(v.scaleZ, m1.scaleZ), + x: _parseVal(v.x, m1.x), + y: _parseVal(v.y, m1.y), + z: _parseVal(v.z, m1.z), + xPercent: _parseVal(v.xPercent, m1.xPercent), + yPercent: _parseVal(v.yPercent, m1.yPercent), + perspective: _parseVal(v.transformPerspective, m1.perspective)} + dr = v.directionalRotation + if (dr != null) { + if (typeof (dr) === 'object') { + for (copy in dr) { + v[copy] = dr[copy] + } + } else { + v.rotation = dr + } + } + if (typeof (v.x) === 'string' && v.x.indexOf('%') !== -1) { + m2.x = 0 + m2.xPercent = _parseVal(v.x, m1.xPercent) + } + if (typeof (v.y) === 'string' && v.y.indexOf('%') !== -1) { + m2.y = 0 + m2.yPercent = _parseVal(v.y, m1.yPercent) + } + + m2.rotation = _parseAngle(('rotation' in v) ? v.rotation : ('shortRotation' in v) ? v.shortRotation + '_short' : ('rotationZ' in v) ? v.rotationZ : m1.rotation, m1.rotation, 'rotation', endRotations) + if (_supports3D) { + m2.rotationX = _parseAngle(('rotationX' in v) ? v.rotationX : ('shortRotationX' in v) ? v.shortRotationX + '_short' : m1.rotationX || 0, m1.rotationX, 'rotationX', endRotations) + m2.rotationY = _parseAngle(('rotationY' in v) ? v.rotationY : ('shortRotationY' in v) ? v.shortRotationY + '_short' : m1.rotationY || 0, m1.rotationY, 'rotationY', endRotations) + } + m2.skewX = _parseAngle(v.skewX, m1.skewX) + m2.skewY = _parseAngle(v.skewY, m1.skewY) + } + if (_supports3D && v.force3D != null) { + m1.force3D = v.force3D + hasChange = true + } + + has3D = (m1.force3D || m1.z || m1.rotationX || m1.rotationY || m2.z || m2.rotationX || m2.rotationY || m2.perspective) + if (!has3D && v.scale != null) { + m2.scaleZ = 1 // no need to tween scaleZ. + } + + while (--i > -1) { + p = _transformProps[i] + orig = m2[p] - m1[p] + if (orig > min || orig < -min || v[p] != null || _forcePT[p] != null) { + hasChange = true + pt = new CSSPropTween(m1, p, m1[p], orig, pt) + if (p in endRotations) { + pt.e = endRotations[p] // directional rotations typically have compensated values during the tween, but we need to make sure they end at exactly what the user requested + } + pt.xs0 = 0 // ensures the value stays numeric in setRatio() + pt.plugin = plugin + cssp._overwriteProps.push(pt.n) + } + } + + orig = v.transformOrigin + if (m1.svg && (orig || v.svgOrigin)) { + x = m1.xOffset // when we change the origin, in order to prevent things from jumping we adjust the x/y so we must record those here so that we can create PropTweens for them and flip them at the same time as the origin + y = m1.yOffset + _parseSVGOrigin(t, _parsePosition(orig), m2, v.svgOrigin, v.smoothOrigin) + pt = _addNonTweeningNumericPT(m1, 'xOrigin', (originalGSTransform ? m1 : m2).xOrigin, m2.xOrigin, pt, transformOriginString) // note: if there wasn't a transformOrigin defined yet, just start with the destination one; it's wasteful otherwise, and it causes problems with fromTo() tweens. For example, TweenLite.to("#wheel", 3, {rotation:180, transformOrigin:"50% 50%", delay:1}); TweenLite.fromTo("#wheel", 3, {scale:0.5, transformOrigin:"50% 50%"}, {scale:1, delay:2}); would cause a jump when the from values revert at the beginning of the 2nd tween. + pt = _addNonTweeningNumericPT(m1, 'yOrigin', (originalGSTransform ? m1 : m2).yOrigin, m2.yOrigin, pt, transformOriginString) + if (x !== m1.xOffset || y !== m1.yOffset) { + pt = _addNonTweeningNumericPT(m1, 'xOffset', (originalGSTransform ? x : m1.xOffset), m1.xOffset, pt, transformOriginString) + pt = _addNonTweeningNumericPT(m1, 'yOffset', (originalGSTransform ? y : m1.yOffset), m1.yOffset, pt, transformOriginString) + } + orig = '0px 0px' // certain browsers (like firefox) completely botch transform-origin, so we must remove it to prevent it from contaminating transforms. We manage it ourselves with xOrigin and yOrigin + } + if (orig || (_supports3D && has3D && m1.zOrigin)) { // if anything 3D is happening and there's a transformOrigin with a z component that's non-zero, we must ensure that the transformOrigin's z-component is set to 0 so that we can manually do those calculations to get around Safari bugs. Even if the user didn't specifically define a "transformOrigin" in this particular tween (maybe they did it via css directly). + if (_transformProp) { + hasChange = true + p = _transformOriginProp + orig = (orig || _getStyle(t, p, _cs, false, '50% 50%')) + '' // cast as string to avoid errors + pt = new CSSPropTween(style, p, 0, 0, pt, -1, transformOriginString) + pt.b = style[p] + pt.plugin = plugin + if (_supports3D) { + copy = m1.zOrigin + orig = orig.split(' ') + m1.zOrigin = ((orig.length > 2 && !(copy !== 0 && orig[2] === '0px')) ? parseFloat(orig[2]) : copy) || 0 // Safari doesn't handle the z part of transformOrigin correctly, so we'll manually handle it in the _set3DTransformRatio() method. + pt.xs0 = pt.e = orig[0] + ' ' + (orig[1] || '50%') + ' 0px' // we must define a z value of 0px specifically otherwise iOS 5 Safari will stick with the old one (if one was defined)! + pt = new CSSPropTween(m1, 'zOrigin', 0, 0, pt, -1, pt.n) // we must create a CSSPropTween for the _gsTransform.zOrigin so that it gets reset properly at the beginning if the tween runs backward (as opposed to just setting m1.zOrigin here) + pt.b = copy + pt.xs0 = pt.e = m1.zOrigin + } else { + pt.xs0 = pt.e = orig + } + + // for older versions of IE (6-8), we need to manually calculate things inside the setRatio() function. We record origin x and y (ox and oy) and whether or not the values are percentages (oxp and oyp). + } else { + _parsePosition(orig + '', m1) + } + } + if (hasChange) { + cssp._transformType = (!(m1.svg && _useSVGTransformAttr) && (has3D || this._transformType === 3)) ? 3 : 2 // quicker than calling cssp._enableTransforms(); + } + if (swapFunc) { + vars[parsingProp] = swapFunc + } + if (scaleFunc) { + vars.scale = scaleFunc + } + return pt + }, + prefix: true}) + + _registerComplexSpecialProp('boxShadow', {defaultValue: '0px 0px 0px 0px #999', prefix: true, color: true, multi: true, keyword: 'inset'}) + + _registerComplexSpecialProp('borderRadius', {defaultValue: '0px', + parser: function (t, e, p, cssp, pt, plugin) { + e = this.format(e) + var props = ['borderTopLeftRadius', 'borderTopRightRadius', 'borderBottomRightRadius', 'borderBottomLeftRadius'], + style = t.style, + ea1, i, es2, bs2, bs, es, bn, en, w, h, esfx, bsfx, rel, hn, vn, em + w = parseFloat(t.offsetWidth) + h = parseFloat(t.offsetHeight) + ea1 = e.split(' ') + for (i = 0; i < props.length; i++) { // if we're dealing with percentages, we must convert things separately for the horizontal and vertical axis! + if (this.p.indexOf('border')) { // older browsers used a prefix + props[i] = _checkPropPrefix(props[i]) + } + bs = bs2 = _getStyle(t, props[i], _cs, false, '0px') + if (bs.indexOf(' ') !== -1) { + bs2 = bs.split(' ') + bs = bs2[0] + bs2 = bs2[1] + } + es = es2 = ea1[i] + bn = parseFloat(bs) + bsfx = bs.substr((bn + '').length) + rel = (es.charAt(1) === '=') + if (rel) { + en = parseInt(es.charAt(0) + '1', 10) + es = es.substr(2) + en *= parseFloat(es) + esfx = es.substr((en + '').length - (en < 0 ? 1 : 0)) || '' + } else { + en = parseFloat(es) + esfx = es.substr((en + '').length) + } + if (esfx === '') { + esfx = _suffixMap[p] || bsfx + } + if (esfx !== bsfx) { + hn = _convertToPixels(t, 'borderLeft', bn, bsfx) // horizontal number (we use a bogus "borderLeft" property just because the _convertToPixels() method searches for the keywords "Left", "Right", "Top", and "Bottom" to determine of it's a horizontal or vertical property, and we need "border" in the name so that it knows it should measure relative to the element itself, not its parent. + vn = _convertToPixels(t, 'borderTop', bn, bsfx) // vertical number + if (esfx === '%') { + bs = (hn / w * 100) + '%' + bs2 = (vn / h * 100) + '%' + } else if (esfx === 'em') { + em = _convertToPixels(t, 'borderLeft', 1, 'em') + bs = (hn / em) + 'em' + bs2 = (vn / em) + 'em' + } else { + bs = hn + 'px' + bs2 = vn + 'px' + } + if (rel) { + es = (parseFloat(bs) + en) + esfx + es2 = (parseFloat(bs2) + en) + esfx + } + } + pt = _parseComplex(style, props[i], bs + ' ' + bs2, es + ' ' + es2, false, '0px', pt) + } + return pt + }, + prefix: true, + formatter: _getFormatter('0px 0px 0px 0px', false, true)}) + _registerComplexSpecialProp('borderBottomLeftRadius,borderBottomRightRadius,borderTopLeftRadius,borderTopRightRadius', {defaultValue: '0px', + parser: function (t, e, p, cssp, pt, plugin) { + return _parseComplex(t.style, p, this.format(_getStyle(t, p, _cs, false, '0px 0px')), this.format(e), false, '0px', pt) + }, + prefix: true, + formatter: _getFormatter('0px 0px', false, true)}) + _registerComplexSpecialProp('backgroundPosition', {defaultValue: '0 0', + parser: function (t, e, p, cssp, pt, plugin) { + var bp = 'background-position', + cs = (_cs || _getComputedStyle(t, null)), + bs = this.format(((cs) ? _ieVers ? cs.getPropertyValue(bp + '-x') + ' ' + cs.getPropertyValue(bp + '-y') : cs.getPropertyValue(bp) : t.currentStyle.backgroundPositionX + ' ' + t.currentStyle.backgroundPositionY) || '0 0'), // Internet Explorer doesn't report background-position correctly - we must query background-position-x and background-position-y and combine them (even in IE10). Before IE9, we must do the same with the currentStyle object and use camelCase + es = this.format(e), + ba, ea, i, pct, overlap, src + if ((bs.indexOf('%') !== -1) !== (es.indexOf('%') !== -1) && es.split(',').length < 2) { + src = _getStyle(t, 'backgroundImage').replace(_urlExp, '') + if (src && src !== 'none') { + ba = bs.split(' ') + ea = es.split(' ') + _tempImg.setAttribute('src', src) // set the temp IMG's src to the background-image so that we can measure its width/height + i = 2 + while (--i > -1) { + bs = ba[i] + pct = (bs.indexOf('%') !== -1) + if (pct !== (ea[i].indexOf('%') !== -1)) { + overlap = (i === 0) ? t.offsetWidth - _tempImg.width : t.offsetHeight - _tempImg.height + ba[i] = pct ? (parseFloat(bs) / 100 * overlap) + 'px' : (parseFloat(bs) / overlap * 100) + '%' + } + } + bs = ba.join(' ') + } + } + return this.parseComplex(t.style, bs, es, pt, plugin) + }, + formatter: _parsePosition}) + _registerComplexSpecialProp('backgroundSize', {defaultValue: '0 0', + formatter: function (v) { + v += '' // ensure it's a string + return _parsePosition(v.indexOf(' ') === -1 ? v + ' ' + v : v) // if set to something like "100% 100%", Safari typically reports the computed style as just "100%" (no 2nd value), but we should ensure that there are two values, so copy the first one. Otherwise, it'd be interpreted as "100% 0" (wrong). + }}) + _registerComplexSpecialProp('perspective', {defaultValue: '0px', prefix: true}) + _registerComplexSpecialProp('perspectiveOrigin', {defaultValue: '50% 50%', prefix: true}) + _registerComplexSpecialProp('transformStyle', {prefix: true}) + _registerComplexSpecialProp('backfaceVisibility', {prefix: true}) + _registerComplexSpecialProp('userSelect', {prefix: true}) + _registerComplexSpecialProp('margin', {parser: _getEdgeParser('marginTop,marginRight,marginBottom,marginLeft')}) + _registerComplexSpecialProp('padding', {parser: _getEdgeParser('paddingTop,paddingRight,paddingBottom,paddingLeft')}) + _registerComplexSpecialProp('clip', {defaultValue: 'rect(0px,0px,0px,0px)', + parser: function (t, e, p, cssp, pt, plugin) { + var b, cs, delim + if (_ieVers < 9) { // IE8 and earlier don't report a "clip" value in the currentStyle - instead, the values are split apart into clipTop, clipRight, clipBottom, and clipLeft. Also, in IE7 and earlier, the values inside rect() are space-delimited, not comma-delimited. + cs = t.currentStyle + delim = _ieVers < 8 ? ' ' : ',' + b = 'rect(' + cs.clipTop + delim + cs.clipRight + delim + cs.clipBottom + delim + cs.clipLeft + ')' + e = this.format(e).split(',').join(delim) + } else { + b = this.format(_getStyle(t, this.p, _cs, false, this.dflt)) + e = this.format(e) + } + return this.parseComplex(t.style, b, e, pt, plugin) + }}) + _registerComplexSpecialProp('textShadow', {defaultValue: '0px 0px 0px #999', color: true, multi: true}) + _registerComplexSpecialProp('autoRound,strictUnits', {parser: function (t, e, p, cssp, pt) { return pt }}) // just so that we can ignore these properties (not tween them) + _registerComplexSpecialProp('border', {defaultValue: '0px solid #000', + parser: function (t, e, p, cssp, pt, plugin) { + var bw = _getStyle(t, 'borderTopWidth', _cs, false, '0px'), + end = this.format(e).split(' '), + esfx = end[0].replace(_suffixExp, '') + if (esfx !== 'px') { // if we're animating to a non-px value, we need to convert the beginning width to that unit. + bw = (parseFloat(bw) / _convertToPixels(t, 'borderTopWidth', 1, esfx)) + esfx + } + return this.parseComplex(t.style, this.format(bw + ' ' + _getStyle(t, 'borderTopStyle', _cs, false, 'solid') + ' ' + _getStyle(t, 'borderTopColor', _cs, false, '#000')), end.join(' '), pt, plugin) + }, + color: true, + formatter: function (v) { + var a = v.split(' ') + return a[0] + ' ' + (a[1] || 'solid') + ' ' + (v.match(_colorExp) || ['#000'])[0] + }}) + _registerComplexSpecialProp('borderWidth', {parser: _getEdgeParser('borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth')}) // Firefox doesn't pick up on borderWidth set in style sheets (only inline). + _registerComplexSpecialProp('float,cssFloat,styleFloat', {parser: function (t, e, p, cssp, pt, plugin) { + var s = t.style, + prop = ('cssFloat' in s) ? 'cssFloat' : 'styleFloat' + return new CSSPropTween(s, prop, 0, 0, pt, -1, p, false, 0, s[prop], e) + }}) + + // opacity-related + var _setIEOpacityRatio = function (v) { + var t = this.t, // refers to the element's style property + filters = t.filter || _getStyle(this.data, 'filter') || '', + val = (this.s + this.c * v) | 0, + skip + if (val === 100) { // for older versions of IE that need to use a filter to apply opacity, we should remove the filter if opacity hits 1 in order to improve performance, but make sure there isn't a transform (matrix) or gradient in the filters. + if (filters.indexOf('atrix(') === -1 && filters.indexOf('radient(') === -1 && filters.indexOf('oader(') === -1) { + t.removeAttribute('filter') + skip = (!_getStyle(this.data, 'filter')) // if a class is applied that has an alpha filter, it will take effect (we don't want that), so re-apply our alpha filter in that case. We must first remove it and then check. + } else { + t.filter = filters.replace(_alphaFilterExp, '') + skip = true + } + } + if (!skip) { + if (this.xn1) { + t.filter = filters = filters || ('alpha(opacity=' + val + ')') // works around bug in IE7/8 that prevents changes to "visibility" from being applied properly if the filter is changed to a different alpha on the same frame. + } + if (filters.indexOf('pacity') === -1) { // only used if browser doesn't support the standard opacity style property (IE 7 and 8). We omit the "O" to avoid case-sensitivity issues + if (val !== 0 || !this.xn1) { // bugs in IE7/8 won't render the filter properly if opacity is ADDED on the same frame/render as "visibility" changes (this.xn1 is 1 if this tween is an "autoAlpha" tween) + t.filter = filters + ' alpha(opacity=' + val + ')' // we round the value because otherwise, bugs in IE7/8 can prevent "visibility" changes from being applied properly. + } + } else { + t.filter = filters.replace(_opacityExp, 'opacity=' + val) + } + } + } + _registerComplexSpecialProp('opacity,alpha,autoAlpha', {defaultValue: '1', + parser: function (t, e, p, cssp, pt, plugin) { + var b = parseFloat(_getStyle(t, 'opacity', _cs, false, '1')), + style = t.style, + isAutoAlpha = (p === 'autoAlpha') + if (typeof (e) === 'string' && e.charAt(1) === '=') { + e = ((e.charAt(0) === '-') ? -1 : 1) * parseFloat(e.substr(2)) + b + } + if (isAutoAlpha && b === 1 && _getStyle(t, 'visibility', _cs) === 'hidden' && e !== 0) { // if visibility is initially set to "hidden", we should interpret that as intent to make opacity 0 (a convenience) + b = 0 + } + if (_supportsOpacity) { + pt = new CSSPropTween(style, 'opacity', b, e - b, pt) + } else { + pt = new CSSPropTween(style, 'opacity', b * 100, (e - b) * 100, pt) + pt.xn1 = isAutoAlpha ? 1 : 0 // we need to record whether or not this is an autoAlpha so that in the setRatio(), we know to duplicate the setting of the alpha in order to work around a bug in IE7 and IE8 that prevents changes to "visibility" from taking effect if the filter is changed to a different alpha(opacity) at the same time. Setting it to the SAME value first, then the new value works around the IE7/8 bug. + style.zoom = 1 // helps correct an IE issue. + pt.type = 2 + pt.b = 'alpha(opacity=' + pt.s + ')' + pt.e = 'alpha(opacity=' + (pt.s + pt.c) + ')' + pt.data = t + pt.plugin = plugin + pt.setRatio = _setIEOpacityRatio + } + if (isAutoAlpha) { // we have to create the "visibility" PropTween after the opacity one in the linked list so that they run in the order that works properly in IE8 and earlier + pt = new CSSPropTween(style, 'visibility', 0, 0, pt, -1, null, false, 0, ((b !== 0) ? 'inherit' : 'hidden'), ((e === 0) ? 'hidden' : 'inherit')) + pt.xs0 = 'inherit' + cssp._overwriteProps.push(pt.n) + cssp._overwriteProps.push(p) + } + return pt + }}) + + var _removeProp = function (s, p) { + if (p) { + if (s.removeProperty) { + if (p.substr(0, 2) === 'ms' || p.substr(0, 6) === 'webkit') { // Microsoft and some Webkit browsers don't conform to the standard of capitalizing the first prefix character, so we adjust so that when we prefix the caps with a dash, it's correct (otherwise it'd be "ms-transform" instead of "-ms-transform" for IE9, for example) + p = '-' + p + } + s.removeProperty(p.replace(_capsExp, '-$1').toLowerCase()) + } else { // note: old versions of IE use "removeAttribute()" instead of "removeProperty()" + s.removeAttribute(p) + } + } + }, + _setClassNameRatio = function (v) { + this.t._gsClassPT = this + if (v === 1 || v === 0) { + this.t.setAttribute('class', (v === 0) ? this.b : this.e) + var mpt = this.data, // first MiniPropTween + s = this.t.style + while (mpt) { + if (!mpt.v) { + _removeProp(s, mpt.p) + } else { + s[mpt.p] = mpt.v + } + mpt = mpt._next + } + if (v === 1 && this.t._gsClassPT === this) { + this.t._gsClassPT = null + } + } else if (this.t.getAttribute('class') !== this.e) { + this.t.setAttribute('class', this.e) + } + } + _registerComplexSpecialProp('className', {parser: function (t, e, p, cssp, pt, plugin, vars) { + var b = t.getAttribute('class') || '', // don't use t.className because it doesn't work consistently on SVG elements; getAttribute("class") and setAttribute("class", value") is more reliable. + cssText = t.style.cssText, + difData, bs, cnpt, cnptLookup, mpt + pt = cssp._classNamePT = new CSSPropTween(t, p, 0, 0, pt, 2) + pt.setRatio = _setClassNameRatio + pt.pr = -11 + _hasPriority = true + pt.b = b + bs = _getAllStyles(t, _cs) + // if there's a className tween already operating on the target, force it to its end so that the necessary inline styles are removed and the class name is applied before we determine the end state (we don't want inline styles interfering that were there just for class-specific values) + cnpt = t._gsClassPT + if (cnpt) { + cnptLookup = {} + mpt = cnpt.data // first MiniPropTween which stores the inline styles - we need to force these so that the inline styles don't contaminate things. Otherwise, there's a small chance that a tween could start and the inline values match the destination values and they never get cleaned. + while (mpt) { + cnptLookup[mpt.p] = 1 + mpt = mpt._next + } + cnpt.setRatio(1) + } + t._gsClassPT = pt + pt.e = (e.charAt(1) !== '=') ? e : b.replace(new RegExp('(?:\\s|^)' + e.substr(2) + '(?![\\w-])'), '') + ((e.charAt(0) === '+') ? ' ' + e.substr(2) : '') + t.setAttribute('class', pt.e) + difData = _cssDif(t, bs, _getAllStyles(t), vars, cnptLookup) + t.setAttribute('class', b) + pt.data = difData.firstMPT + t.style.cssText = cssText // we recorded cssText before we swapped classes and ran _getAllStyles() because in cases when a className tween is overwritten, we remove all the related tweening properties from that class change (otherwise class-specific stuff can't override properties we've directly set on the target's style object due to specificity). + pt = pt.xfirst = cssp.parse(t, difData.difs, pt, plugin) // we record the CSSPropTween as the xfirst so that we can handle overwriting propertly (if "className" gets overwritten, we must kill all the properties associated with the className part of the tween, so we can loop through from xfirst to the pt itself) + return pt + }}) + + var _setClearPropsRatio = function (v) { + if (v === 1 || v === 0) { + if (this.data._totalTime === this.data._totalDuration && this.data.data !== 'isFromStart') { // this.data refers to the tween. Only clear at the END of the tween (remember, from() tweens make the ratio go from 1 to 0, so we can't just check that and if the tween is the zero-duration one that's created internally to render the starting values in a from() tween, ignore that because otherwise, for example, from(...{height:100, clearProps:"height", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in). + var s = this.t.style, + transformParse = _specialProps.transform.parse, + a, p, i, clearTransform, transform + if (this.e === 'all') { + s.cssText = '' + clearTransform = true + } else { + a = this.e.split(' ').join('').split(',') + i = a.length + while (--i > -1) { + p = a[i] + if (_specialProps[p]) { + if (_specialProps[p].parse === transformParse) { + clearTransform = true + } else { + p = (p === 'transformOrigin') ? _transformOriginProp : _specialProps[p].p // ensures that special properties use the proper browser-specific property name, like "scaleX" might be "-webkit-transform" or "boxShadow" might be "-moz-box-shadow" + } + } + _removeProp(s, p) + } + } + if (clearTransform) { + _removeProp(s, _transformProp) + transform = this.t._gsTransform + if (transform) { + if (transform.svg) { + this.t.removeAttribute('data-svg-origin') + this.t.removeAttribute('transform') + } + delete this.t._gsTransform + } + } + } + } + } + _registerComplexSpecialProp('clearProps', {parser: function (t, e, p, cssp, pt) { + pt = new CSSPropTween(t, p, 0, 0, pt, 2) + pt.setRatio = _setClearPropsRatio + pt.e = e + pt.pr = -10 + pt.data = cssp._tween + _hasPriority = true + return pt + }}) + + p = 'bezier,throwProps,physicsProps,physics2D'.split(',') + i = p.length + while (i--) { + _registerPluginProp(p[i]) + } + + p = CSSPlugin.prototype + p._firstPT = p._lastParsedTransform = p._transform = null + + // gets called when the tween renders for the first time. This kicks everything off, recording start/end values, etc. + p._onInitTween = function (target, vars, tween, index) { + if (!target.nodeType) { // css is only for dom elements + return false + } + this._target = _target = target + this._tween = tween + this._vars = vars + _index = index + _autoRound = vars.autoRound + _hasPriority = false + _suffixMap = vars.suffixMap || CSSPlugin.suffixMap + _cs = _getComputedStyle(target, '') + _overwriteProps = this._overwriteProps + var style = target.style, + v, pt, pt2, first, last, next, zIndex, tpt, threeD + if (_reqSafariFix) { + if (style.zIndex === '') { + v = _getStyle(target, 'zIndex', _cs) + if (v === 'auto' || v === '') { + // corrects a bug in [non-Android] Safari that prevents it from repainting elements in their new positions if they don't have a zIndex set. We also can't just apply this inside _parseTransform() because anything that's moved in any way (like using "left" or "top" instead of transforms like "x" and "y") can be affected, so it is best to ensure that anything that's tweening has a z-index. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. Plus zIndex is less memory-intensive. + this._addLazySet(style, 'zIndex', 0) + } + } + } + + if (typeof (vars) === 'string') { + first = style.cssText + v = _getAllStyles(target, _cs) + style.cssText = first + ';' + vars + v = _cssDif(target, v, _getAllStyles(target)).difs + if (!_supportsOpacity && _opacityValExp.test(vars)) { + v.opacity = parseFloat(RegExp.$1) + } + vars = v + style.cssText = first + } + + if (vars.className) { // className tweens will combine any differences they find in the css with the vars that are passed in, so {className:"myClass", scale:0.5, left:20} would work. + this._firstPT = pt = _specialProps.className.parse(target, vars.className, 'className', this, null, null, vars) + } else { + this._firstPT = pt = this.parse(target, vars, null) + } + + if (this._transformType) { + threeD = (this._transformType === 3) + if (!_transformProp) { + style.zoom = 1 // helps correct an IE issue. + } else if (_isSafari) { + _reqSafariFix = true + // if zIndex isn't set, iOS Safari doesn't repaint things correctly sometimes (seemingly at random). + if (style.zIndex === '') { + zIndex = _getStyle(target, 'zIndex', _cs) + if (zIndex === 'auto' || zIndex === '') { + this._addLazySet(style, 'zIndex', 0) + } + } + // Setting WebkitBackfaceVisibility corrects 3 bugs: + // 1) [non-Android] Safari skips rendering changes to "top" and "left" that are made on the same frame/render as a transform update. + // 2) iOS Safari sometimes neglects to repaint elements in their new positions. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. + // 3) Safari sometimes displayed odd artifacts when tweening the transform (or WebkitTransform) property, like ghosts of the edges of the element remained. Definitely a browser bug. + // Note: we allow the user to override the auto-setting by defining WebkitBackfaceVisibility in the vars of the tween. + if (_isSafariLT6) { + this._addLazySet(style, 'WebkitBackfaceVisibility', this._vars.WebkitBackfaceVisibility || (threeD ? 'visible' : 'hidden')) + } + } + pt2 = pt + while (pt2 && pt2._next) { + pt2 = pt2._next + } + tpt = new CSSPropTween(target, 'transform', 0, 0, null, 2) + this._linkCSSP(tpt, null, pt2) + tpt.setRatio = _transformProp ? _setTransformRatio : _setIETransformRatio + tpt.data = this._transform || _getTransform(target, _cs, true) + tpt.tween = tween + tpt.pr = -1 // ensures that the transforms get applied after the components are updated. + _overwriteProps.pop() // we don't want to force the overwrite of all "transform" tweens of the target - we only care about individual transform properties like scaleX, rotation, etc. The CSSPropTween constructor automatically adds the property to _overwriteProps which is why we need to pop() here. + } + + if (_hasPriority) { + // reorders the linked list in order of pr (priority) + while (pt) { + next = pt._next + pt2 = first + while (pt2 && pt2.pr > pt.pr) { + pt2 = pt2._next + } + if ((pt._prev = pt2 ? pt2._prev : last)) { + pt._prev._next = pt + } else { + first = pt + } + if ((pt._next = pt2)) { + pt2._prev = pt + } else { + last = pt + } + pt = next + } + this._firstPT = first + } + return true + } + + p.parse = function (target, vars, pt, plugin) { + var style = target.style, + p, sp, bn, en, bs, es, bsfx, esfx, isStr, rel + for (p in vars) { + es = vars[p] // ending value string + if (typeof (es) === 'function') { + es = es(_index, _target) + } + sp = _specialProps[p] // SpecialProp lookup. + if (sp) { + pt = sp.parse(target, es, p, this, pt, plugin, vars) + } else if (p.substr(0, 2) === '--') { // for tweening CSS variables (which always start with "--"). To maximize performance and simplicity, we bypass CSSPlugin altogether and just add a normal property tween to the tween instance itself. + this._tween._propLookup[p] = this._addTween.call(this._tween, target.style, 'setProperty', _getComputedStyle(target).getPropertyValue(p) + '', es + '', p, false, p) + continue + } else { + bs = _getStyle(target, p, _cs) + '' + isStr = (typeof (es) === 'string') + if (p === 'color' || p === 'fill' || p === 'stroke' || p.indexOf('Color') !== -1 || (isStr && _rgbhslExp.test(es))) { // Opera uses background: to define color sometimes in addition to backgroundColor: + if (!isStr) { + es = _parseColor(es) + es = ((es.length > 3) ? 'rgba(' : 'rgb(') + es.join(',') + ')' + } + pt = _parseComplex(style, p, bs, es, true, 'transparent', pt, 0, plugin) + } else if (isStr && _complexExp.test(es)) { + pt = _parseComplex(style, p, bs, es, true, null, pt, 0, plugin) + } else { + bn = parseFloat(bs) + bsfx = (bn || bn === 0) ? bs.substr((bn + '').length) : '' // remember, bs could be non-numeric like "normal" for fontWeight, so we should default to a blank suffix in that case. + + if (bs === '' || bs === 'auto') { + if (p === 'width' || p === 'height') { + bn = _getDimension(target, p, _cs) + bsfx = 'px' + } else if (p === 'left' || p === 'top') { + bn = _calculateOffset(target, p, _cs) + bsfx = 'px' + } else { + bn = (p !== 'opacity') ? 0 : 1 + bsfx = '' + } + } + + rel = (isStr && es.charAt(1) === '=') + if (rel) { + en = parseInt(es.charAt(0) + '1', 10) + es = es.substr(2) + en *= parseFloat(es) + esfx = es.replace(_suffixExp, '') + } else { + en = parseFloat(es) + esfx = isStr ? es.replace(_suffixExp, '') : '' + } + + if (esfx === '') { + esfx = (p in _suffixMap) ? _suffixMap[p] : bsfx // populate the end suffix, prioritizing the map, then if none is found, use the beginning suffix. + } + + es = (en || en === 0) ? (rel ? en + bn : en) + esfx : vars[p] // ensures that any += or -= prefixes are taken care of. Record the end value before normalizing the suffix because we always want to end the tween on exactly what they intended even if it doesn't match the beginning value's suffix. + // if the beginning/ending suffixes don't match, normalize them... + if (bsfx !== esfx) { + if (esfx !== '' || p === 'lineHeight') { + if (en || en === 0) { + if (bn) { // note: if the beginning value (bn) is 0, we don't need to convert units! + bn = _convertToPixels(target, p, bn, bsfx) + if (esfx === '%') { + bn /= _convertToPixels(target, p, 100, '%') / 100 + if (vars.strictUnits !== true) { // some browsers report only "px" values instead of allowing "%" with getComputedStyle(), so we assume that if we're tweening to a %, we should start there too unless strictUnits:true is defined. This approach is particularly useful for responsive designs that use from() tweens. + bs = bn + '%' + } + } else if (esfx === 'em' || esfx === 'rem' || esfx === 'vw' || esfx === 'vh') { + bn /= _convertToPixels(target, p, 1, esfx) + + // otherwise convert to pixels. + } else if (esfx !== 'px') { + en = _convertToPixels(target, p, en, esfx) + esfx = 'px' // we don't use bsfx after this, so we don't need to set it to px too. + } + if (rel) { + if (en || en === 0) { + es = (en + bn) + esfx // the changes we made affect relative calculations, so adjust the end value here. + } + } + } + } + } + } + + if (rel) { + en += bn + } + + if ((bn || bn === 0) && (en || en === 0)) { // faster than isNaN(). Also, previously we required en !== bn but that doesn't really gain much performance and it prevents _parseToProxy() from working properly if beginning and ending values match but need to get tweened by an external plugin anyway. For example, a bezier tween where the target starts at left:0 and has these points: [{left:50},{left:0}] wouldn't work properly because when parsing the last point, it'd match the first (current) one and a non-tweening CSSPropTween would be recorded when we actually need a normal tween (type:0) so that things get updated during the tween properly. + pt = new CSSPropTween(style, p, bn, en - bn, pt, 0, p, (_autoRound !== false && (esfx === 'px' || p === 'zIndex')), 0, bs, es) + pt.xs0 = esfx + // DEBUG: _log("tween "+p+" from "+pt.b+" ("+bn+esfx+") to "+pt.e+" with suffix: "+pt.xs0); + } else if (style[p] === undefined || !es && (es + '' === 'NaN' || es == null)) { + _log('invalid ' + p + ' tween value: ' + vars[p]) + } else { + pt = new CSSPropTween(style, p, en || bn || 0, 0, pt, -1, p, false, 0, bs, es) + pt.xs0 = (es === 'none' && (p === 'display' || p.indexOf('Style') !== -1)) ? bs : es // intermediate value should typically be set immediately (end value) except for "display" or things like borderTopStyle, borderBottomStyle, etc. which should use the beginning value during the tween. + // DEBUG: _log("non-tweening value "+p+": "+pt.xs0); + } + } + } + if (plugin) { + if (pt && !pt.plugin) { + pt.plugin = plugin + } + } + } + return pt + } + + // gets called every time the tween updates, passing the new ratio (typically a value between 0 and 1, but not always (for example, if an Elastic.easeOut is used, the value can jump above 1 mid-tween). It will always start and 0 and end at 1. + p.setRatio = function (v) { + var pt = this._firstPT, + min = 0.000001, + val, str, i + // at the end of the tween, we set the values to exactly what we received in order to make sure non-tweening values (like "position" or "float" or whatever) are set and so that if the beginning/ending suffixes (units) didn't match and we normalized to px, the value that the user passed in is used here. We check to see if the tween is at its beginning in case it's a from() tween in which case the ratio will actually go from 1 to 0 over the course of the tween (backwards). + if (v === 1 && (this._tween._time === this._tween._duration || this._tween._time === 0)) { + while (pt) { + if (pt.type !== 2) { + if (pt.r && pt.type !== -1) { + val = Math.round(pt.s + pt.c) + if (!pt.type) { + pt.t[pt.p] = val + pt.xs0 + } else if (pt.type === 1) { // complex value (one that typically has multiple numbers inside a string, like "rect(5px,10px,20px,25px)" + i = pt.l + str = pt.xs0 + val + pt.xs1 + for (i = 1; i < pt.l; i++) { + str += pt['xn' + i] + pt['xs' + (i + 1)] + } + pt.t[pt.p] = str + } + } else { + pt.t[pt.p] = pt.e + } + } else { + pt.setRatio(v) + } + pt = pt._next + } + } else if (v || !(this._tween._time === this._tween._duration || this._tween._time === 0) || this._tween._rawPrevTime === -0.000001) { + while (pt) { + val = pt.c * v + pt.s + if (pt.r) { + val = Math.round(val) + } else if (val < min) { + if (val > -min) { + val = 0 + } + } + if (!pt.type) { + pt.t[pt.p] = val + pt.xs0 + } else if (pt.type === 1) { // complex value (one that typically has multiple numbers inside a string, like "rect(5px,10px,20px,25px)" + i = pt.l + if (i === 2) { + pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + } else if (i === 3) { + pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + } else if (i === 4) { + pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4 + } else if (i === 5) { + pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4 + pt.xn4 + pt.xs5 + } else { + str = pt.xs0 + val + pt.xs1 + for (i = 1; i < pt.l; i++) { + str += pt['xn' + i] + pt['xs' + (i + 1)] + } + pt.t[pt.p] = str + } + } else if (pt.type === -1) { // non-tweening value + pt.t[pt.p] = pt.xs0 + } else if (pt.setRatio) { // custom setRatio() for things like SpecialProps, external plugins, etc. + pt.setRatio(v) + } + pt = pt._next + } + + // if the tween is reversed all the way back to the beginning, we need to restore the original values which may have different units (like % instead of px or em or whatever). + } else { + while (pt) { + if (pt.type !== 2) { + pt.t[pt.p] = pt.b + } else { + pt.setRatio(v) + } + pt = pt._next + } + } + } + + /** * @private * Forces rendering of the target's transforms (rotation, scale, etc.) whenever the CSSPlugin's setRatio() is called. * Basically, this tells the CSSPlugin to create a CSSPropTween (type 2) after instantiation that runs last in the linked @@ -5250,126 +5330,124 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * * @param {boolean} threeD if true, it should apply 3D tweens (otherwise, just 2D ones are fine and typically faster) */ - p._enableTransforms = function(threeD) { - this._transform = this._transform || _getTransform(this._target, _cs, true); //ensures that the element has a _gsTransform property with the appropriate values. - this._transformType = (!(this._transform.svg && _useSVGTransformAttr) && (threeD || this._transformType === 3)) ? 3 : 2; - }; - - var lazySet = function(v) { - this.t[this.p] = this.e; - this.data._linkCSSP(this, this._next, null, true); //we purposefully keep this._next even though it'd make sense to null it, but this is a performance optimization, as this happens during the while (pt) {} loop in setRatio() at the bottom of which it sets pt = pt._next, so if we null it, the linked list will be broken in that loop. - }; - /** @private Gives us a way to set a value on the first render (and only the first render). **/ - p._addLazySet = function(t, p, v) { - var pt = this._firstPT = new CSSPropTween(t, p, 0, 0, this._firstPT, 2); - pt.e = v; - pt.setRatio = lazySet; - pt.data = this; - }; - - /** @private **/ - p._linkCSSP = function(pt, next, prev, remove) { - if (pt) { - if (next) { - next._prev = pt; - } - if (pt._next) { - pt._next._prev = pt._prev; - } - if (pt._prev) { - pt._prev._next = pt._next; - } else if (this._firstPT === pt) { - this._firstPT = pt._next; - remove = true; //just to prevent resetting this._firstPT 5 lines down in case pt._next is null. (optimized for speed) - } - if (prev) { - prev._next = pt; - } else if (!remove && this._firstPT === null) { - this._firstPT = pt; - } - pt._next = next; - pt._prev = prev; - } - return pt; - }; - - p._mod = function(lookup) { - var pt = this._firstPT; - while (pt) { - if (typeof(lookup[pt.p]) === "function" && lookup[pt.p] === Math.round) { //only gets called by RoundPropsPlugin (ModifyPlugin manages all the rendering internally for CSSPlugin properties that need modification). Remember, we handle rounding a bit differently in this plugin for performance reasons, leveraging "r" as an indicator that the value should be rounded internally.. - pt.r = 1; - } - pt = pt._next; - } - }; - - //we need to make sure that if alpha or autoAlpha is killed, opacity is too. And autoAlpha affects the "visibility" property. - p._kill = function(lookup) { - var copy = lookup, - pt, p, xfirst; - if (lookup.autoAlpha || lookup.alpha) { - copy = {}; - for (p in lookup) { //copy the lookup so that we're not changing the original which may be passed elsewhere. - copy[p] = lookup[p]; - } - copy.opacity = 1; - if (copy.autoAlpha) { - copy.visibility = 1; - } - } - if (lookup.className && (pt = this._classNamePT)) { //for className tweens, we need to kill any associated CSSPropTweens too; a linked list starts at the className's "xfirst". - xfirst = pt.xfirst; - if (xfirst && xfirst._prev) { - this._linkCSSP(xfirst._prev, pt._next, xfirst._prev._prev); //break off the prev - } else if (xfirst === this._firstPT) { - this._firstPT = pt._next; - } - if (pt._next) { - this._linkCSSP(pt._next, pt._next._next, xfirst._prev); - } - this._classNamePT = null; - } - pt = this._firstPT; - while (pt) { - if (pt.plugin && pt.plugin !== p && pt.plugin._kill) { //for plugins that are registered with CSSPlugin, we should notify them of the kill. - pt.plugin._kill(lookup); - p = pt.plugin; - } - pt = pt._next; - } - return TweenPlugin.prototype._kill.call(this, copy); - }; - - - - //used by cascadeTo() for gathering all the style properties of each child element into an array for comparison. - var _getChildStyles = function(e, props, targets) { - var children, i, child, type; - if (e.slice) { - i = e.length; - while (--i > -1) { - _getChildStyles(e[i], props, targets); - } - return; - } - children = e.childNodes; - i = children.length; - while (--i > -1) { - child = children[i]; - type = child.type; - if (child.style) { - props.push(_getAllStyles(child)); - if (targets) { - targets.push(child); - } - } - if ((type === 1 || type === 9 || type === 11) && child.childNodes.length) { - _getChildStyles(child, props, targets); - } - } - }; - - /** + p._enableTransforms = function (threeD) { + this._transform = this._transform || _getTransform(this._target, _cs, true) // ensures that the element has a _gsTransform property with the appropriate values. + this._transformType = (!(this._transform.svg && _useSVGTransformAttr) && (threeD || this._transformType === 3)) ? 3 : 2 + } + + var lazySet = function (v) { + this.t[this.p] = this.e + this.data._linkCSSP(this, this._next, null, true) // we purposefully keep this._next even though it'd make sense to null it, but this is a performance optimization, as this happens during the while (pt) {} loop in setRatio() at the bottom of which it sets pt = pt._next, so if we null it, the linked list will be broken in that loop. + } + /** @private Gives us a way to set a value on the first render (and only the first render). **/ + p._addLazySet = function (t, p, v) { + var pt = this._firstPT = new CSSPropTween(t, p, 0, 0, this._firstPT, 2) + pt.e = v + pt.setRatio = lazySet + pt.data = this + } + + /** @private **/ + p._linkCSSP = function (pt, next, prev, remove) { + if (pt) { + if (next) { + next._prev = pt + } + if (pt._next) { + pt._next._prev = pt._prev + } + if (pt._prev) { + pt._prev._next = pt._next + } else if (this._firstPT === pt) { + this._firstPT = pt._next + remove = true // just to prevent resetting this._firstPT 5 lines down in case pt._next is null. (optimized for speed) + } + if (prev) { + prev._next = pt + } else if (!remove && this._firstPT === null) { + this._firstPT = pt + } + pt._next = next + pt._prev = prev + } + return pt + } + + p._mod = function (lookup) { + var pt = this._firstPT + while (pt) { + if (typeof (lookup[pt.p]) === 'function' && lookup[pt.p] === Math.round) { // only gets called by RoundPropsPlugin (ModifyPlugin manages all the rendering internally for CSSPlugin properties that need modification). Remember, we handle rounding a bit differently in this plugin for performance reasons, leveraging "r" as an indicator that the value should be rounded internally.. + pt.r = 1 + } + pt = pt._next + } + } + + // we need to make sure that if alpha or autoAlpha is killed, opacity is too. And autoAlpha affects the "visibility" property. + p._kill = function (lookup) { + var copy = lookup, + pt, p, xfirst + if (lookup.autoAlpha || lookup.alpha) { + copy = {} + for (p in lookup) { // copy the lookup so that we're not changing the original which may be passed elsewhere. + copy[p] = lookup[p] + } + copy.opacity = 1 + if (copy.autoAlpha) { + copy.visibility = 1 + } + } + if (lookup.className && (pt = this._classNamePT)) { // for className tweens, we need to kill any associated CSSPropTweens too; a linked list starts at the className's "xfirst". + xfirst = pt.xfirst + if (xfirst && xfirst._prev) { + this._linkCSSP(xfirst._prev, pt._next, xfirst._prev._prev) // break off the prev + } else if (xfirst === this._firstPT) { + this._firstPT = pt._next + } + if (pt._next) { + this._linkCSSP(pt._next, pt._next._next, xfirst._prev) + } + this._classNamePT = null + } + pt = this._firstPT + while (pt) { + if (pt.plugin && pt.plugin !== p && pt.plugin._kill) { // for plugins that are registered with CSSPlugin, we should notify them of the kill. + pt.plugin._kill(lookup) + p = pt.plugin + } + pt = pt._next + } + return TweenPlugin.prototype._kill.call(this, copy) + } + + // used by cascadeTo() for gathering all the style properties of each child element into an array for comparison. + var _getChildStyles = function (e, props, targets) { + var children, i, child, type + if (e.slice) { + i = e.length + while (--i > -1) { + _getChildStyles(e[i], props, targets) + } + return + } + children = e.childNodes + i = children.length + while (--i > -1) { + child = children[i] + type = child.type + if (child.style) { + props.push(_getAllStyles(child)) + if (targets) { + targets.push(child) + } + } + if ((type === 1 || type === 9 || type === 11) && child.childNodes.length) { + _getChildStyles(child, props, targets) + } + } + } + + /** * Typically only useful for className tweens that may affect child elements, this method creates a TweenLite * and then compares the style properties of all the target's child elements at the tween's start and end, and * if any are different, it also creates tweens for those and returns an array containing ALL of the resulting @@ -5387,661 +5465,595 @@ var _gsScope = (typeof(module) !== "undefined" && module.exports && typeof(globa * @param {Object} Object containing the end values, like {className:"newClass", ease:Linear.easeNone} * @return {Array} An array of TweenLite instances */ - CSSPlugin.cascadeTo = function(target, duration, vars) { - var tween = TweenLite.to(target, duration, vars), - results = [tween], - b = [], - e = [], - targets = [], - _reservedProps = TweenLite._internals.reservedProps, - i, difs, p, from; - target = tween._targets || tween.target; - _getChildStyles(target, b, targets); - tween.render(duration, true, true); - _getChildStyles(target, e); - tween.render(0, true, true); - tween._enabled(true); - i = targets.length; - while (--i > -1) { - difs = _cssDif(targets[i], b[i], e[i]); - if (difs.firstMPT) { - difs = difs.difs; - for (p in vars) { - if (_reservedProps[p]) { - difs[p] = vars[p]; - } - } - from = {}; - for (p in difs) { - from[p] = b[i][p]; - } - results.push(TweenLite.fromTo(targets[i], duration, from, difs)); - } - } - return results; - }; - - TweenPlugin.activate([CSSPlugin]); - return CSSPlugin; - - }, true); - - - - - - - - - - - -/* + CSSPlugin.cascadeTo = function (target, duration, vars) { + var tween = TweenLite.to(target, duration, vars), + results = [tween], + b = [], + e = [], + targets = [], + _reservedProps = TweenLite._internals.reservedProps, + i, difs, p, from + target = tween._targets || tween.target + _getChildStyles(target, b, targets) + tween.render(duration, true, true) + _getChildStyles(target, e) + tween.render(0, true, true) + tween._enabled(true) + i = targets.length + while (--i > -1) { + difs = _cssDif(targets[i], b[i], e[i]) + if (difs.firstMPT) { + difs = difs.difs + for (p in vars) { + if (_reservedProps[p]) { + difs[p] = vars[p] + } + } + from = {} + for (p in difs) { + from[p] = b[i][p] + } + results.push(TweenLite.fromTo(targets[i], duration, from, difs)) + } + } + return results + } + + TweenPlugin.activate([CSSPlugin]) + return CSSPlugin + }, true); + + /* * ---------------------------------------------------------------- * RoundPropsPlugin * ---------------------------------------------------------------- */ - (function() { - - var RoundPropsPlugin = _gsScope._gsDefine.plugin({ - propName: "roundProps", - version: "1.6.0", - priority: -1, - API: 2, - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween) { - this._tween = tween; - return true; - } - - }), - _roundLinkedList = function(node) { - while (node) { - if (!node.f && !node.blob) { - node.m = Math.round; - } - node = node._next; - } - }, - p = RoundPropsPlugin.prototype; - - p._onInitAllProps = function() { - var tween = this._tween, - rp = (tween.vars.roundProps.join) ? tween.vars.roundProps : tween.vars.roundProps.split(","), - i = rp.length, - lookup = {}, - rpt = tween._propLookup.roundProps, - prop, pt, next; - while (--i > -1) { - lookup[rp[i]] = Math.round; - } - i = rp.length; - while (--i > -1) { - prop = rp[i]; - pt = tween._firstPT; - while (pt) { - next = pt._next; //record here, because it may get removed - if (pt.pg) { - pt.t._mod(lookup); - } else if (pt.n === prop) { - if (pt.f === 2 && pt.t) { //a blob (text containing multiple numeric values) - _roundLinkedList(pt.t._firstPT); - } else { - this._add(pt.t, prop, pt.s, pt.c); - //remove from linked list - if (next) { - next._prev = pt._prev; - } - if (pt._prev) { - pt._prev._next = next; - } else if (tween._firstPT === pt) { - tween._firstPT = next; - } - pt._next = pt._prev = null; - tween._propLookup[prop] = rpt; - } - } - pt = next; - } - } - return false; - }; - - p._add = function(target, p, s, c) { - this._addTween(target, p, s, s + c, p, Math.round); - this._overwriteProps.push(p); - }; - - }()); - - - - - - - - - - -/* + (function () { + var RoundPropsPlugin = _gsScope._gsDefine.plugin({ + propName: 'roundProps', + version: '1.6.0', + priority: -1, + API: 2, + + // called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. + init: function (target, value, tween) { + this._tween = tween + return true + } + + }), + _roundLinkedList = function (node) { + while (node) { + if (!node.f && !node.blob) { + node.m = Math.round + } + node = node._next + } + }, + p = RoundPropsPlugin.prototype + + p._onInitAllProps = function () { + var tween = this._tween, + rp = (tween.vars.roundProps.join) ? tween.vars.roundProps : tween.vars.roundProps.split(','), + i = rp.length, + lookup = {}, + rpt = tween._propLookup.roundProps, + prop, pt, next + while (--i > -1) { + lookup[rp[i]] = Math.round + } + i = rp.length + while (--i > -1) { + prop = rp[i] + pt = tween._firstPT + while (pt) { + next = pt._next // record here, because it may get removed + if (pt.pg) { + pt.t._mod(lookup) + } else if (pt.n === prop) { + if (pt.f === 2 && pt.t) { // a blob (text containing multiple numeric values) + _roundLinkedList(pt.t._firstPT) + } else { + this._add(pt.t, prop, pt.s, pt.c) + // remove from linked list + if (next) { + next._prev = pt._prev + } + if (pt._prev) { + pt._prev._next = next + } else if (tween._firstPT === pt) { + tween._firstPT = next + } + pt._next = pt._prev = null + tween._propLookup[prop] = rpt + } + } + pt = next + } + } + return false + } + + p._add = function (target, p, s, c) { + this._addTween(target, p, s, s + c, p, Math.round) + this._overwriteProps.push(p) + } + }()); + + /* * ---------------------------------------------------------------- * AttrPlugin * ---------------------------------------------------------------- */ - (function() { - - _gsScope._gsDefine.plugin({ - propName: "attr", - API: 2, - version: "0.6.1", - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween, index) { - var p, end; - if (typeof(target.setAttribute) !== "function") { - return false; - } - for (p in value) { - end = value[p]; - if (typeof(end) === "function") { - end = end(index, target); - } - this._addTween(target, "setAttribute", target.getAttribute(p) + "", end + "", p, false, p); - this._overwriteProps.push(p); - } - return true; - } - - }); - - }()); - - - - - - - - - - -/* + (function () { + _gsScope._gsDefine.plugin({ + propName: 'attr', + API: 2, + version: '0.6.1', + + // called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. + init: function (target, value, tween, index) { + var p, end + if (typeof (target.setAttribute) !== 'function') { + return false + } + for (p in value) { + end = value[p] + if (typeof (end) === 'function') { + end = end(index, target) + } + this._addTween(target, 'setAttribute', target.getAttribute(p) + '', end + '', p, false, p) + this._overwriteProps.push(p) + } + return true + } + + }) + }()) + + /* * ---------------------------------------------------------------- * DirectionalRotationPlugin * ---------------------------------------------------------------- */ - _gsScope._gsDefine.plugin({ - propName: "directionalRotation", - version: "0.3.1", - API: 2, - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween, index) { - if (typeof(value) !== "object") { - value = {rotation:value}; - } - this.finals = {}; - var cap = (value.useRadians === true) ? Math.PI * 2 : 360, - min = 0.000001, - p, v, start, end, dif, split; - for (p in value) { - if (p !== "useRadians") { - end = value[p]; - if (typeof(end) === "function") { - end = end(index, target); - } - split = (end + "").split("_"); - v = split[0]; - start = parseFloat( (typeof(target[p]) !== "function") ? target[p] : target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ]() ); - end = this.finals[p] = (typeof(v) === "string" && v.charAt(1) === "=") ? start + parseInt(v.charAt(0) + "1", 10) * Number(v.substr(2)) : Number(v) || 0; - dif = end - start; - if (split.length) { - v = split.join("_"); - if (v.indexOf("short") !== -1) { - dif = dif % cap; - if (dif !== dif % (cap / 2)) { - dif = (dif < 0) ? dif + cap : dif - cap; - } - } - if (v.indexOf("_cw") !== -1 && dif < 0) { - dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } else if (v.indexOf("ccw") !== -1 && dif > 0) { - dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } - } - if (dif > min || dif < -min) { - this._addTween(target, p, start, start + dif, p); - this._overwriteProps.push(p); - } - } - } - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(ratio) { - var pt; - if (ratio !== 1) { - this._super.setRatio.call(this, ratio); - } else { - pt = this._firstPT; - while (pt) { - if (pt.f) { - pt.t[pt.p](this.finals[pt.p]); - } else { - pt.t[pt.p] = this.finals[pt.p]; - } - pt = pt._next; - } - } - } - - })._autoCSS = true; - - - - - - - - - - - -/* + _gsScope._gsDefine.plugin({ + propName: 'directionalRotation', + version: '0.3.1', + API: 2, + + // called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. + init: function (target, value, tween, index) { + if (typeof (value) !== 'object') { + value = {rotation: value} + } + this.finals = {} + var cap = (value.useRadians === true) ? Math.PI * 2 : 360, + min = 0.000001, + p, v, start, end, dif, split + for (p in value) { + if (p !== 'useRadians') { + end = value[p] + if (typeof (end) === 'function') { + end = end(index, target) + } + split = (end + '').split('_') + v = split[0] + start = parseFloat((typeof (target[p]) !== 'function') ? target[p] : target[ ((p.indexOf('set') || typeof (target['get' + p.substr(3)]) !== 'function') ? p : 'get' + p.substr(3)) ]()) + end = this.finals[p] = (typeof (v) === 'string' && v.charAt(1) === '=') ? start + parseInt(v.charAt(0) + '1', 10) * Number(v.substr(2)) : Number(v) || 0 + dif = end - start + if (split.length) { + v = split.join('_') + if (v.indexOf('short') !== -1) { + dif = dif % cap + if (dif !== dif % (cap / 2)) { + dif = (dif < 0) ? dif + cap : dif - cap + } + } + if (v.indexOf('_cw') !== -1 && dif < 0) { + dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap + } else if (v.indexOf('ccw') !== -1 && dif > 0) { + dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap + } + } + if (dif > min || dif < -min) { + this._addTween(target, p, start, start + dif, p) + this._overwriteProps.push(p) + } + } + } + return true + }, + + // called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) + set: function (ratio) { + var pt + if (ratio !== 1) { + this._super.setRatio.call(this, ratio) + } else { + pt = this._firstPT + while (pt) { + if (pt.f) { + pt.t[pt.p](this.finals[pt.p]) + } else { + pt.t[pt.p] = this.finals[pt.p] + } + pt = pt._next + } + } + } + + })._autoCSS = true + + /* * ---------------------------------------------------------------- * EasePack * ---------------------------------------------------------------- */ - _gsScope._gsDefine("easing.Back", ["easing.Ease"], function(Ease) { - - var w = (_gsScope.GreenSockGlobals || _gsScope), - gs = w.com.greensock, - _2PI = Math.PI * 2, - _HALF_PI = Math.PI / 2, - _class = gs._class, - _create = function(n, f) { - var C = _class("easing." + n, function(){}, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - return C; - }, - _easeReg = Ease.register || function(){}, //put an empty function in place just as a safety measure in case someone loads an OLD version of TweenLite.js where Ease.register doesn't exist. - _wrap = function(name, EaseOut, EaseIn, EaseInOut, aliases) { - var C = _class("easing."+name, { - easeOut:new EaseOut(), - easeIn:new EaseIn(), - easeInOut:new EaseInOut() - }, true); - _easeReg(C, name); - return C; - }, - EasePoint = function(time, value, next) { - this.t = time; - this.v = value; - if (next) { - this.next = next; - next.prev = this; - this.c = next.v - value; - this.gap = next.t - time; - } - }, - - //Back - _createBack = function(n, f) { - var C = _class("easing." + n, function(overshoot) { - this._p1 = (overshoot || overshoot === 0) ? overshoot : 1.70158; - this._p2 = this._p1 * 1.525; - }, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - p.config = function(overshoot) { - return new C(overshoot); - }; - return C; - }, - - Back = _wrap("Back", - _createBack("BackOut", function(p) { - return ((p = p - 1) * p * ((this._p1 + 1) * p + this._p1) + 1); - }), - _createBack("BackIn", function(p) { - return p * p * ((this._p1 + 1) * p - this._p1); - }), - _createBack("BackInOut", function(p) { - return ((p *= 2) < 1) ? 0.5 * p * p * ((this._p2 + 1) * p - this._p2) : 0.5 * ((p -= 2) * p * ((this._p2 + 1) * p + this._p2) + 2); - }) - ), - - - //SlowMo - SlowMo = _class("easing.SlowMo", function(linearRatio, power, yoyoMode) { - power = (power || power === 0) ? power : 0.7; - if (linearRatio == null) { - linearRatio = 0.7; - } else if (linearRatio > 1) { - linearRatio = 1; - } - this._p = (linearRatio !== 1) ? power : 0; - this._p1 = (1 - linearRatio) / 2; - this._p2 = linearRatio; - this._p3 = this._p1 + this._p2; - this._calcEnd = (yoyoMode === true); - }, true), - p = SlowMo.prototype = new Ease(), - SteppedEase, RoughEase, _createElastic; - - p.constructor = SlowMo; - p.getRatio = function(p) { - var r = p + (0.5 - p) * this._p; - if (p < this._p1) { - return this._calcEnd ? 1 - ((p = 1 - (p / this._p1)) * p) : r - ((p = 1 - (p / this._p1)) * p * p * p * r); - } else if (p > this._p3) { - return this._calcEnd ? 1 - (p = (p - this._p3) / this._p1) * p : r + ((p - r) * (p = (p - this._p3) / this._p1) * p * p * p); - } - return this._calcEnd ? 1 : r; - }; - SlowMo.ease = new SlowMo(0.7, 0.7); - - p.config = SlowMo.config = function(linearRatio, power, yoyoMode) { - return new SlowMo(linearRatio, power, yoyoMode); - }; - - - //SteppedEase - SteppedEase = _class("easing.SteppedEase", function(steps, immediateStart) { - steps = steps || 1; - this._p1 = 1 / steps; - this._p2 = steps + (immediateStart ? 0 : 1); - this._p3 = immediateStart ? 1 : 0; - }, true); - p = SteppedEase.prototype = new Ease(); - p.constructor = SteppedEase; - p.getRatio = function(p) { - if (p < 0) { - p = 0; - } else if (p >= 1) { - p = 0.999999999; - } - return (((this._p2 * p) | 0) + this._p3) * this._p1; - }; - p.config = SteppedEase.config = function(steps, immediateStart) { - return new SteppedEase(steps, immediateStart); - }; - - - //RoughEase - RoughEase = _class("easing.RoughEase", function(vars) { - vars = vars || {}; - var taper = vars.taper || "none", - a = [], - cnt = 0, - points = (vars.points || 20) | 0, - i = points, - randomize = (vars.randomize !== false), - clamp = (vars.clamp === true), - template = (vars.template instanceof Ease) ? vars.template : null, - strength = (typeof(vars.strength) === "number") ? vars.strength * 0.4 : 0.4, - x, y, bump, invX, obj, pnt; - while (--i > -1) { - x = randomize ? Math.random() : (1 / points) * i; - y = template ? template.getRatio(x) : x; - if (taper === "none") { - bump = strength; - } else if (taper === "out") { - invX = 1 - x; - bump = invX * invX * strength; - } else if (taper === "in") { - bump = x * x * strength; - } else if (x < 0.5) { //"both" (start) - invX = x * 2; - bump = invX * invX * 0.5 * strength; - } else { //"both" (end) - invX = (1 - x) * 2; - bump = invX * invX * 0.5 * strength; - } - if (randomize) { - y += (Math.random() * bump) - (bump * 0.5); - } else if (i % 2) { - y += bump * 0.5; - } else { - y -= bump * 0.5; - } - if (clamp) { - if (y > 1) { - y = 1; - } else if (y < 0) { - y = 0; - } - } - a[cnt++] = {x:x, y:y}; - } - a.sort(function(a, b) { - return a.x - b.x; - }); - - pnt = new EasePoint(1, 1, null); - i = points; - while (--i > -1) { - obj = a[i]; - pnt = new EasePoint(obj.x, obj.y, pnt); - } - - this._prev = new EasePoint(0, 0, (pnt.t !== 0) ? pnt : pnt.next); - }, true); - p = RoughEase.prototype = new Ease(); - p.constructor = RoughEase; - p.getRatio = function(p) { - var pnt = this._prev; - if (p > pnt.t) { - while (pnt.next && p >= pnt.t) { - pnt = pnt.next; - } - pnt = pnt.prev; - } else { - while (pnt.prev && p <= pnt.t) { - pnt = pnt.prev; - } - } - this._prev = pnt; - return (pnt.v + ((p - pnt.t) / pnt.gap) * pnt.c); - }; - p.config = function(vars) { - return new RoughEase(vars); - }; - RoughEase.ease = new RoughEase(); - - - //Bounce - _wrap("Bounce", - _create("BounceOut", function(p) { - if (p < 1 / 2.75) { - return 7.5625 * p * p; - } else if (p < 2 / 2.75) { - return 7.5625 * (p -= 1.5 / 2.75) * p + 0.75; - } else if (p < 2.5 / 2.75) { - return 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375; - } - return 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375; - }), - _create("BounceIn", function(p) { - if ((p = 1 - p) < 1 / 2.75) { - return 1 - (7.5625 * p * p); - } else if (p < 2 / 2.75) { - return 1 - (7.5625 * (p -= 1.5 / 2.75) * p + 0.75); - } else if (p < 2.5 / 2.75) { - return 1 - (7.5625 * (p -= 2.25 / 2.75) * p + 0.9375); - } - return 1 - (7.5625 * (p -= 2.625 / 2.75) * p + 0.984375); - }), - _create("BounceInOut", function(p) { - var invert = (p < 0.5); - if (invert) { - p = 1 - (p * 2); - } else { - p = (p * 2) - 1; - } - if (p < 1 / 2.75) { - p = 7.5625 * p * p; - } else if (p < 2 / 2.75) { - p = 7.5625 * (p -= 1.5 / 2.75) * p + 0.75; - } else if (p < 2.5 / 2.75) { - p = 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375; - } else { - p = 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375; - } - return invert ? (1 - p) * 0.5 : p * 0.5 + 0.5; - }) - ); - - - //CIRC - _wrap("Circ", - _create("CircOut", function(p) { - return Math.sqrt(1 - (p = p - 1) * p); - }), - _create("CircIn", function(p) { - return -(Math.sqrt(1 - (p * p)) - 1); - }), - _create("CircInOut", function(p) { - return ((p*=2) < 1) ? -0.5 * (Math.sqrt(1 - p * p) - 1) : 0.5 * (Math.sqrt(1 - (p -= 2) * p) + 1); - }) - ); - - - //Elastic - _createElastic = function(n, f, def) { - var C = _class("easing." + n, function(amplitude, period) { - this._p1 = (amplitude >= 1) ? amplitude : 1; //note: if amplitude is < 1, we simply adjust the period for a more natural feel. Otherwise the math doesn't work right and the curve starts at 1. - this._p2 = (period || def) / (amplitude < 1 ? amplitude : 1); - this._p3 = this._p2 / _2PI * (Math.asin(1 / this._p1) || 0); - this._p2 = _2PI / this._p2; //precalculate to optimize - }, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - p.config = function(amplitude, period) { - return new C(amplitude, period); - }; - return C; - }; - _wrap("Elastic", - _createElastic("ElasticOut", function(p) { - return this._p1 * Math.pow(2, -10 * p) * Math.sin( (p - this._p3) * this._p2 ) + 1; - }, 0.3), - _createElastic("ElasticIn", function(p) { - return -(this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin( (p - this._p3) * this._p2 )); - }, 0.3), - _createElastic("ElasticInOut", function(p) { - return ((p *= 2) < 1) ? -0.5 * (this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin( (p - this._p3) * this._p2)) : this._p1 * Math.pow(2, -10 *(p -= 1)) * Math.sin( (p - this._p3) * this._p2 ) * 0.5 + 1; - }, 0.45) - ); - - - //Expo - _wrap("Expo", - _create("ExpoOut", function(p) { - return 1 - Math.pow(2, -10 * p); - }), - _create("ExpoIn", function(p) { - return Math.pow(2, 10 * (p - 1)) - 0.001; - }), - _create("ExpoInOut", function(p) { - return ((p *= 2) < 1) ? 0.5 * Math.pow(2, 10 * (p - 1)) : 0.5 * (2 - Math.pow(2, -10 * (p - 1))); - }) - ); - - - //Sine - _wrap("Sine", - _create("SineOut", function(p) { - return Math.sin(p * _HALF_PI); - }), - _create("SineIn", function(p) { - return -Math.cos(p * _HALF_PI) + 1; - }), - _create("SineInOut", function(p) { - return -0.5 * (Math.cos(Math.PI * p) - 1); - }) - ); - - _class("easing.EaseLookup", { - find:function(s) { - return Ease.map[s]; - } - }, true); - - //register the non-standard eases - _easeReg(w.SlowMo, "SlowMo", "ease,"); - _easeReg(RoughEase, "RoughEase", "ease,"); - _easeReg(SteppedEase, "SteppedEase", "ease,"); - - return Back; - - }, true); - - -}); - -if (_gsScope._gsDefine) { _gsScope._gsQueue.pop()(); } //necessary in case TweenLite was already loaded separately. - - - - - - - - - - + _gsScope._gsDefine('easing.Back', ['easing.Ease'], function (Ease) { + var w = (_gsScope.GreenSockGlobals || _gsScope), + gs = w.com.greensock, + _2PI = Math.PI * 2, + _HALF_PI = Math.PI / 2, + _class = gs._class, + _create = function (n, f) { + var C = _class('easing.' + n, function () {}, true), + p = C.prototype = new Ease() + p.constructor = C + p.getRatio = f + return C + }, + _easeReg = Ease.register || function () {}, // put an empty function in place just as a safety measure in case someone loads an OLD version of TweenLite.js where Ease.register doesn't exist. + _wrap = function (name, EaseOut, EaseIn, EaseInOut, aliases) { + var C = _class('easing.' + name, { + easeOut: new EaseOut(), + easeIn: new EaseIn(), + easeInOut: new EaseInOut() + }, true) + _easeReg(C, name) + return C + }, + EasePoint = function (time, value, next) { + this.t = time + this.v = value + if (next) { + this.next = next + next.prev = this + this.c = next.v - value + this.gap = next.t - time + } + }, + + // Back + _createBack = function (n, f) { + var C = _class('easing.' + n, function (overshoot) { + this._p1 = (overshoot || overshoot === 0) ? overshoot : 1.70158 + this._p2 = this._p1 * 1.525 + }, true), + p = C.prototype = new Ease() + p.constructor = C + p.getRatio = f + p.config = function (overshoot) { + return new C(overshoot) + } + return C + }, + + Back = _wrap('Back', + _createBack('BackOut', function (p) { + return ((p = p - 1) * p * ((this._p1 + 1) * p + this._p1) + 1) + }), + _createBack('BackIn', function (p) { + return p * p * ((this._p1 + 1) * p - this._p1) + }), + _createBack('BackInOut', function (p) { + return ((p *= 2) < 1) ? 0.5 * p * p * ((this._p2 + 1) * p - this._p2) : 0.5 * ((p -= 2) * p * ((this._p2 + 1) * p + this._p2) + 2) + }) + ), + + // SlowMo + SlowMo = _class('easing.SlowMo', function (linearRatio, power, yoyoMode) { + power = (power || power === 0) ? power : 0.7 + if (linearRatio == null) { + linearRatio = 0.7 + } else if (linearRatio > 1) { + linearRatio = 1 + } + this._p = (linearRatio !== 1) ? power : 0 + this._p1 = (1 - linearRatio) / 2 + this._p2 = linearRatio + this._p3 = this._p1 + this._p2 + this._calcEnd = (yoyoMode === true) + }, true), + p = SlowMo.prototype = new Ease(), + SteppedEase, RoughEase, _createElastic + + p.constructor = SlowMo + p.getRatio = function (p) { + var r = p + (0.5 - p) * this._p + if (p < this._p1) { + return this._calcEnd ? 1 - ((p = 1 - (p / this._p1)) * p) : r - ((p = 1 - (p / this._p1)) * p * p * p * r) + } else if (p > this._p3) { + return this._calcEnd ? 1 - (p = (p - this._p3) / this._p1) * p : r + ((p - r) * (p = (p - this._p3) / this._p1) * p * p * p) + } + return this._calcEnd ? 1 : r + } + SlowMo.ease = new SlowMo(0.7, 0.7) + + p.config = SlowMo.config = function (linearRatio, power, yoyoMode) { + return new SlowMo(linearRatio, power, yoyoMode) + } + + // SteppedEase + SteppedEase = _class('easing.SteppedEase', function (steps, immediateStart) { + steps = steps || 1 + this._p1 = 1 / steps + this._p2 = steps + (immediateStart ? 0 : 1) + this._p3 = immediateStart ? 1 : 0 + }, true) + p = SteppedEase.prototype = new Ease() + p.constructor = SteppedEase + p.getRatio = function (p) { + if (p < 0) { + p = 0 + } else if (p >= 1) { + p = 0.999999999 + } + return (((this._p2 * p) | 0) + this._p3) * this._p1 + } + p.config = SteppedEase.config = function (steps, immediateStart) { + return new SteppedEase(steps, immediateStart) + } + + // RoughEase + RoughEase = _class('easing.RoughEase', function (vars) { + vars = vars || {} + var taper = vars.taper || 'none', + a = [], + cnt = 0, + points = (vars.points || 20) | 0, + i = points, + randomize = (vars.randomize !== false), + clamp = (vars.clamp === true), + template = (vars.template instanceof Ease) ? vars.template : null, + strength = (typeof (vars.strength) === 'number') ? vars.strength * 0.4 : 0.4, + x, y, bump, invX, obj, pnt + while (--i > -1) { + x = randomize ? Math.random() : (1 / points) * i + y = template ? template.getRatio(x) : x + if (taper === 'none') { + bump = strength + } else if (taper === 'out') { + invX = 1 - x + bump = invX * invX * strength + } else if (taper === 'in') { + bump = x * x * strength + } else if (x < 0.5) { // "both" (start) + invX = x * 2 + bump = invX * invX * 0.5 * strength + } else { // "both" (end) + invX = (1 - x) * 2 + bump = invX * invX * 0.5 * strength + } + if (randomize) { + y += (Math.random() * bump) - (bump * 0.5) + } else if (i % 2) { + y += bump * 0.5 + } else { + y -= bump * 0.5 + } + if (clamp) { + if (y > 1) { + y = 1 + } else if (y < 0) { + y = 0 + } + } + a[cnt++] = {x: x, y: y} + } + a.sort(function (a, b) { + return a.x - b.x + }) + + pnt = new EasePoint(1, 1, null) + i = points + while (--i > -1) { + obj = a[i] + pnt = new EasePoint(obj.x, obj.y, pnt) + } + + this._prev = new EasePoint(0, 0, (pnt.t !== 0) ? pnt : pnt.next) + }, true) + p = RoughEase.prototype = new Ease() + p.constructor = RoughEase + p.getRatio = function (p) { + var pnt = this._prev + if (p > pnt.t) { + while (pnt.next && p >= pnt.t) { + pnt = pnt.next + } + pnt = pnt.prev + } else { + while (pnt.prev && p <= pnt.t) { + pnt = pnt.prev + } + } + this._prev = pnt + return (pnt.v + ((p - pnt.t) / pnt.gap) * pnt.c) + } + p.config = function (vars) { + return new RoughEase(vars) + } + RoughEase.ease = new RoughEase() + + // Bounce + _wrap('Bounce', + _create('BounceOut', function (p) { + if (p < 1 / 2.75) { + return 7.5625 * p * p + } else if (p < 2 / 2.75) { + return 7.5625 * (p -= 1.5 / 2.75) * p + 0.75 + } else if (p < 2.5 / 2.75) { + return 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375 + } + return 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375 + }), + _create('BounceIn', function (p) { + if ((p = 1 - p) < 1 / 2.75) { + return 1 - (7.5625 * p * p) + } else if (p < 2 / 2.75) { + return 1 - (7.5625 * (p -= 1.5 / 2.75) * p + 0.75) + } else if (p < 2.5 / 2.75) { + return 1 - (7.5625 * (p -= 2.25 / 2.75) * p + 0.9375) + } + return 1 - (7.5625 * (p -= 2.625 / 2.75) * p + 0.984375) + }), + _create('BounceInOut', function (p) { + var invert = (p < 0.5) + if (invert) { + p = 1 - (p * 2) + } else { + p = (p * 2) - 1 + } + if (p < 1 / 2.75) { + p = 7.5625 * p * p + } else if (p < 2 / 2.75) { + p = 7.5625 * (p -= 1.5 / 2.75) * p + 0.75 + } else if (p < 2.5 / 2.75) { + p = 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375 + } else { + p = 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375 + } + return invert ? (1 - p) * 0.5 : p * 0.5 + 0.5 + }) + ) + + // CIRC + _wrap('Circ', + _create('CircOut', function (p) { + return Math.sqrt(1 - (p = p - 1) * p) + }), + _create('CircIn', function (p) { + return -(Math.sqrt(1 - (p * p)) - 1) + }), + _create('CircInOut', function (p) { + return ((p *= 2) < 1) ? -0.5 * (Math.sqrt(1 - p * p) - 1) : 0.5 * (Math.sqrt(1 - (p -= 2) * p) + 1) + }) + ) + + // Elastic + _createElastic = function (n, f, def) { + var C = _class('easing.' + n, function (amplitude, period) { + this._p1 = (amplitude >= 1) ? amplitude : 1 // note: if amplitude is < 1, we simply adjust the period for a more natural feel. Otherwise the math doesn't work right and the curve starts at 1. + this._p2 = (period || def) / (amplitude < 1 ? amplitude : 1) + this._p3 = this._p2 / _2PI * (Math.asin(1 / this._p1) || 0) + this._p2 = _2PI / this._p2 // precalculate to optimize + }, true), + p = C.prototype = new Ease() + p.constructor = C + p.getRatio = f + p.config = function (amplitude, period) { + return new C(amplitude, period) + } + return C + } + _wrap('Elastic', + _createElastic('ElasticOut', function (p) { + return this._p1 * Math.pow(2, -10 * p) * Math.sin((p - this._p3) * this._p2) + 1 + }, 0.3), + _createElastic('ElasticIn', function (p) { + return -(this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin((p - this._p3) * this._p2)) + }, 0.3), + _createElastic('ElasticInOut', function (p) { + return ((p *= 2) < 1) ? -0.5 * (this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin((p - this._p3) * this._p2)) : this._p1 * Math.pow(2, -10 * (p -= 1)) * Math.sin((p - this._p3) * this._p2) * 0.5 + 1 + }, 0.45) + ) + + // Expo + _wrap('Expo', + _create('ExpoOut', function (p) { + return 1 - Math.pow(2, -10 * p) + }), + _create('ExpoIn', function (p) { + return Math.pow(2, 10 * (p - 1)) - 0.001 + }), + _create('ExpoInOut', function (p) { + return ((p *= 2) < 1) ? 0.5 * Math.pow(2, 10 * (p - 1)) : 0.5 * (2 - Math.pow(2, -10 * (p - 1))) + }) + ) + + // Sine + _wrap('Sine', + _create('SineOut', function (p) { + return Math.sin(p * _HALF_PI) + }), + _create('SineIn', function (p) { + return -Math.cos(p * _HALF_PI) + 1 + }), + _create('SineInOut', function (p) { + return -0.5 * (Math.cos(Math.PI * p) - 1) + }) + ) + + _class('easing.EaseLookup', { + find: function (s) { + return Ease.map[s] + } + }, true) + + // register the non-standard eases + _easeReg(w.SlowMo, 'SlowMo', 'ease,') + _easeReg(RoughEase, 'RoughEase', 'ease,') + _easeReg(SteppedEase, 'SteppedEase', 'ease,') + + return Back + }, true) +}) + +if (_gsScope._gsDefine) { _gsScope._gsQueue.pop()() } // necessary in case TweenLite was already loaded separately. /* * ---------------------------------------------------------------- * Base classes like TweenLite, SimpleTimeline, Ease, Ticker, etc. * ---------------------------------------------------------------- */ -(function(window, moduleName) { - - "use strict"; - var _exports = {}, - _doc = window.document, - _globals = window.GreenSockGlobals = window.GreenSockGlobals || window; - if (_globals.TweenLite) { - return; //in case the core set of classes is already loaded, don't instantiate twice. - } - var _namespace = function(ns) { - var a = ns.split("."), - p = _globals, i; - for (i = 0; i < a.length; i++) { - p[a[i]] = p = p[a[i]] || {}; - } - return p; - }, - gs = _namespace("com.greensock"), - _tinyNum = 0.0000000001, - _slice = function(a) { //don't use Array.prototype.slice.call(target, 0) because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() - var b = [], - l = a.length, - i; - for (i = 0; i !== l; b.push(a[i++])) {} - return b; - }, - _emptyFunc = function() {}, - _isArray = (function() { //works around issues in iframe environments where the Array global isn't shared, thus if the object originates in a different window/iframe, "(obj instanceof Array)" will evaluate false. We added some speed optimizations to avoid Object.prototype.toString.call() unless it's absolutely necessary because it's VERY slow (like 20x slower) - var toString = Object.prototype.toString, - array = toString.call([]); - return function(obj) { - return obj != null && (obj instanceof Array || (typeof(obj) === "object" && !!obj.push && toString.call(obj) === array)); - }; - }()), - a, i, p, _ticker, _tickerActive, - _defLookup = {}, - - /** +(function (window, moduleName) { + 'use strict' + var _exports = {}, + _doc = window.document, + _globals = window.GreenSockGlobals = window.GreenSockGlobals || window + if (_globals.TweenLite) { + return // in case the core set of classes is already loaded, don't instantiate twice. + } + var _namespace = function (ns) { + var a = ns.split('.'), + p = _globals, i + for (i = 0; i < a.length; i++) { + p[a[i]] = p = p[a[i]] || {} + } + return p + }, + gs = _namespace('com.greensock'), + _tinyNum = 0.0000000001, + _slice = function (a) { // don't use Array.prototype.slice.call(target, 0) because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() + var b = [], + l = a.length, + i + for (i = 0; i !== l; b.push(a[i++])) {} + return b + }, + _emptyFunc = function () {}, + _isArray = (function () { // works around issues in iframe environments where the Array global isn't shared, thus if the object originates in a different window/iframe, "(obj instanceof Array)" will evaluate false. We added some speed optimizations to avoid Object.prototype.toString.call() unless it's absolutely necessary because it's VERY slow (like 20x slower) + var toString = Object.prototype.toString, + array = toString.call([]) + return function (obj) { + return obj != null && (obj instanceof Array || (typeof (obj) === 'object' && !!obj.push && toString.call(obj) === array)) + } + }()), + a, i, p, _ticker, _tickerActive, + _defLookup = {}, + + /** * @constructor * Defines a GreenSock class, optionally with an array of dependencies that must be instantiated first and passed into the definition. * This allows users to load GreenSock JS files in any order even if they have interdependencies (like CSSPlugin extends TweenPlugin which is @@ -6074,1852 +6086,1909 @@ if (_gsScope._gsDefine) { _gsScope._gsQueue.pop()(); } //necessary in case Tween * @param {!function():Object} func The function that should be called and passed the resolved dependencies which will return the actual class for this definition. * @param {boolean=} global If true, the class will be added to the global scope (typically window unless you define a window.GreenSockGlobals object) */ - Definition = function(ns, dependencies, func, global) { - this.sc = (_defLookup[ns]) ? _defLookup[ns].sc : []; //subclasses - _defLookup[ns] = this; - this.gsClass = null; - this.func = func; - var _classes = []; - this.check = function(init) { - var i = dependencies.length, - missing = i, - cur, a, n, cl; - while (--i > -1) { - if ((cur = _defLookup[dependencies[i]] || new Definition(dependencies[i], [])).gsClass) { - _classes[i] = cur.gsClass; - missing--; - } else if (init) { - cur.sc.push(this); - } - } - if (missing === 0 && func) { - a = ("com.greensock." + ns).split("."); - n = a.pop(); - cl = _namespace(a.join("."))[n] = this.gsClass = func.apply(func, _classes); - - //exports to multiple environments - if (global) { - _globals[n] = _exports[n] = cl; //provides a way to avoid global namespace pollution. By default, the main classes like TweenLite, Power1, Strong, etc. are added to window unless a GreenSockGlobals is defined. So if you want to have things added to a custom object instead, just do something like window.GreenSockGlobals = {} before loading any GreenSock files. You can even set up an alias like window.GreenSockGlobals = windows.gs = {} so that you can access everything like gs.TweenLite. Also remember that ALL classes are added to the window.com.greensock object (in their respective packages, like com.greensock.easing.Power1, com.greensock.TweenLite, etc.) - if (typeof(module) !== "undefined" && module.exports) { //node - if (ns === moduleName) { - module.exports = _exports[moduleName] = cl; - for (i in _exports) { - cl[i] = _exports[i]; - } - } else if (_exports[moduleName]) { - _exports[moduleName][n] = cl; - } - } else if (typeof(define) === "function" && define.amd){ //AMD - define((window.GreenSockAMDPath ? window.GreenSockAMDPath + "/" : "") + ns.split(".").pop(), [], function() { return cl; }); - } - } - for (i = 0; i < this.sc.length; i++) { - this.sc[i].check(); - } - } - }; - this.check(true); - }, - - //used to create Definition instances (which basically registers a class that has dependencies). - _gsDefine = window._gsDefine = function(ns, dependencies, func, global) { - return new Definition(ns, dependencies, func, global); - }, - - //a quick way to create a class that doesn't have any dependencies. Returns the class, but first registers it in the GreenSock namespace so that other classes can grab it (other classes might be dependent on the class). - _class = gs._class = function(ns, func, global) { - func = func || function() {}; - _gsDefine(ns, [], function(){ return func; }, global); - return func; - }; - - _gsDefine.globals = _globals; - - - -/* + Definition = function (ns, dependencies, func, global) { + this.sc = (_defLookup[ns]) ? _defLookup[ns].sc : [] // subclasses + _defLookup[ns] = this + this.gsClass = null + this.func = func + var _classes = [] + this.check = function (init) { + var i = dependencies.length, + missing = i, + cur, a, n, cl + while (--i > -1) { + if ((cur = _defLookup[dependencies[i]] || new Definition(dependencies[i], [])).gsClass) { + _classes[i] = cur.gsClass + missing-- + } else if (init) { + cur.sc.push(this) + } + } + if (missing === 0 && func) { + a = ('com.greensock.' + ns).split('.') + n = a.pop() + cl = _namespace(a.join('.'))[n] = this.gsClass = func.apply(func, _classes) + + // exports to multiple environments + if (global) { + _globals[n] = _exports[n] = cl // provides a way to avoid global namespace pollution. By default, the main classes like TweenLite, Power1, Strong, etc. are added to window unless a GreenSockGlobals is defined. So if you want to have things added to a custom object instead, just do something like window.GreenSockGlobals = {} before loading any GreenSock files. You can even set up an alias like window.GreenSockGlobals = windows.gs = {} so that you can access everything like gs.TweenLite. Also remember that ALL classes are added to the window.com.greensock object (in their respective packages, like com.greensock.easing.Power1, com.greensock.TweenLite, etc.) + if (typeof (module) !== 'undefined' && module.exports) { // node + if (ns === moduleName) { + module.exports = _exports[moduleName] = cl + for (i in _exports) { + cl[i] = _exports[i] + } + } else if (_exports[moduleName]) { + _exports[moduleName][n] = cl + } + } else if (typeof (define) === 'function' && define.amd) { // AMD + define((window.GreenSockAMDPath ? window.GreenSockAMDPath + '/' : '') + ns.split('.').pop(), [], function () { return cl }) + } + } + for (i = 0; i < this.sc.length; i++) { + this.sc[i].check() + } + } + } + this.check(true) + }, + + // used to create Definition instances (which basically registers a class that has dependencies). + _gsDefine = window._gsDefine = function (ns, dependencies, func, global) { + return new Definition(ns, dependencies, func, global) + }, + + // a quick way to create a class that doesn't have any dependencies. Returns the class, but first registers it in the GreenSock namespace so that other classes can grab it (other classes might be dependent on the class). + _class = gs._class = function (ns, func, global) { + func = func || function () {} + _gsDefine(ns, [], function () { return func }, global) + return func + } + + _gsDefine.globals = _globals + + /* * ---------------------------------------------------------------- * Ease * ---------------------------------------------------------------- */ - var _baseParams = [0, 0, 1, 1], - Ease = _class("easing.Ease", function(func, extraParams, type, power) { - this._func = func; - this._type = type || 0; - this._power = power || 0; - this._params = extraParams ? _baseParams.concat(extraParams) : _baseParams; - }, true), - _easeMap = Ease.map = {}, - _easeReg = Ease.register = function(ease, names, types, create) { - var na = names.split(","), - i = na.length, - ta = (types || "easeIn,easeOut,easeInOut").split(","), - e, name, j, type; - while (--i > -1) { - name = na[i]; - e = create ? _class("easing."+name, null, true) : gs.easing[name] || {}; - j = ta.length; - while (--j > -1) { - type = ta[j]; - _easeMap[name + "." + type] = _easeMap[type + name] = e[type] = ease.getRatio ? ease : ease[type] || new ease(); - } - } - }; - - p = Ease.prototype; - p._calcEnd = false; - p.getRatio = function(p) { - if (this._func) { - this._params[0] = p; - return this._func.apply(null, this._params); - } - var t = this._type, - pw = this._power, - r = (t === 1) ? 1 - p : (t === 2) ? p : (p < 0.5) ? p * 2 : (1 - p) * 2; - if (pw === 1) { - r *= r; - } else if (pw === 2) { - r *= r * r; - } else if (pw === 3) { - r *= r * r * r; - } else if (pw === 4) { - r *= r * r * r * r; - } - return (t === 1) ? 1 - r : (t === 2) ? r : (p < 0.5) ? r / 2 : 1 - (r / 2); - }; - - //create all the standard eases like Linear, Quad, Cubic, Quart, Quint, Strong, Power0, Power1, Power2, Power3, and Power4 (each with easeIn, easeOut, and easeInOut) - a = ["Linear","Quad","Cubic","Quart","Quint,Strong"]; - i = a.length; - while (--i > -1) { - p = a[i]+",Power"+i; - _easeReg(new Ease(null,null,1,i), p, "easeOut", true); - _easeReg(new Ease(null,null,2,i), p, "easeIn" + ((i === 0) ? ",easeNone" : "")); - _easeReg(new Ease(null,null,3,i), p, "easeInOut"); - } - _easeMap.linear = gs.easing.Linear.easeIn; - _easeMap.swing = gs.easing.Quad.easeInOut; //for jQuery folks - - -/* + var _baseParams = [0, 0, 1, 1], + Ease = _class('easing.Ease', function (func, extraParams, type, power) { + this._func = func + this._type = type || 0 + this._power = power || 0 + this._params = extraParams ? _baseParams.concat(extraParams) : _baseParams + }, true), + _easeMap = Ease.map = {}, + _easeReg = Ease.register = function (ease, names, types, create) { + var na = names.split(','), + i = na.length, + ta = (types || 'easeIn,easeOut,easeInOut').split(','), + e, name, j, type + while (--i > -1) { + name = na[i] + e = create ? _class('easing.' + name, null, true) : gs.easing[name] || {} + j = ta.length + while (--j > -1) { + type = ta[j] + _easeMap[name + '.' + type] = _easeMap[type + name] = e[type] = ease.getRatio ? ease : ease[type] || new ease() + } + } + } + + p = Ease.prototype + p._calcEnd = false + p.getRatio = function (p) { + if (this._func) { + this._params[0] = p + return this._func.apply(null, this._params) + } + var t = this._type, + pw = this._power, + r = (t === 1) ? 1 - p : (t === 2) ? p : (p < 0.5) ? p * 2 : (1 - p) * 2 + if (pw === 1) { + r *= r + } else if (pw === 2) { + r *= r * r + } else if (pw === 3) { + r *= r * r * r + } else if (pw === 4) { + r *= r * r * r * r + } + return (t === 1) ? 1 - r : (t === 2) ? r : (p < 0.5) ? r / 2 : 1 - (r / 2) + } + + // create all the standard eases like Linear, Quad, Cubic, Quart, Quint, Strong, Power0, Power1, Power2, Power3, and Power4 (each with easeIn, easeOut, and easeInOut) + a = ['Linear', 'Quad', 'Cubic', 'Quart', 'Quint,Strong'] + i = a.length + while (--i > -1) { + p = a[i] + ',Power' + i + _easeReg(new Ease(null, null, 1, i), p, 'easeOut', true) + _easeReg(new Ease(null, null, 2, i), p, 'easeIn' + ((i === 0) ? ',easeNone' : '')) + _easeReg(new Ease(null, null, 3, i), p, 'easeInOut') + } + _easeMap.linear = gs.easing.Linear.easeIn + _easeMap.swing = gs.easing.Quad.easeInOut // for jQuery folks + + /* * ---------------------------------------------------------------- * EventDispatcher * ---------------------------------------------------------------- */ - var EventDispatcher = _class("events.EventDispatcher", function(target) { - this._listeners = {}; - this._eventTarget = target || this; - }); - p = EventDispatcher.prototype; - - p.addEventListener = function(type, callback, scope, useParam, priority) { - priority = priority || 0; - var list = this._listeners[type], - index = 0, - listener, i; - if (this === _ticker && !_tickerActive) { - _ticker.wake(); - } - if (list == null) { - this._listeners[type] = list = []; - } - i = list.length; - while (--i > -1) { - listener = list[i]; - if (listener.c === callback && listener.s === scope) { - list.splice(i, 1); - } else if (index === 0 && listener.pr < priority) { - index = i + 1; - } - } - list.splice(index, 0, {c:callback, s:scope, up:useParam, pr:priority}); - }; - - p.removeEventListener = function(type, callback) { - var list = this._listeners[type], i; - if (list) { - i = list.length; - while (--i > -1) { - if (list[i].c === callback) { - list.splice(i, 1); - return; - } - } - } - }; - - p.dispatchEvent = function(type) { - var list = this._listeners[type], - i, t, listener; - if (list) { - i = list.length; - if (i > 1) { - list = list.slice(0); //in case addEventListener() is called from within a listener/callback (otherwise the index could change, resulting in a skip) - } - t = this._eventTarget; - while (--i > -1) { - listener = list[i]; - if (listener) { - if (listener.up) { - listener.c.call(listener.s || t, {type:type, target:t}); - } else { - listener.c.call(listener.s || t); - } - } - } - } - }; - - -/* + var EventDispatcher = _class('events.EventDispatcher', function (target) { + this._listeners = {} + this._eventTarget = target || this + }) + p = EventDispatcher.prototype + + p.addEventListener = function (type, callback, scope, useParam, priority) { + priority = priority || 0 + var list = this._listeners[type], + index = 0, + listener, i + if (this === _ticker && !_tickerActive) { + _ticker.wake() + } + if (list == null) { + this._listeners[type] = list = [] + } + i = list.length + while (--i > -1) { + listener = list[i] + if (listener.c === callback && listener.s === scope) { + list.splice(i, 1) + } else if (index === 0 && listener.pr < priority) { + index = i + 1 + } + } + list.splice(index, 0, {c: callback, s: scope, up: useParam, pr: priority}) + } + + p.removeEventListener = function (type, callback) { + var list = this._listeners[type], i + if (list) { + i = list.length + while (--i > -1) { + if (list[i].c === callback) { + list.splice(i, 1) + return + } + } + } + } + + p.dispatchEvent = function (type) { + var list = this._listeners[type], + i, t, listener + if (list) { + i = list.length + if (i > 1) { + list = list.slice(0) // in case addEventListener() is called from within a listener/callback (otherwise the index could change, resulting in a skip) + } + t = this._eventTarget + while (--i > -1) { + listener = list[i] + if (listener) { + if (listener.up) { + listener.c.call(listener.s || t, {type: type, target: t}) + } else { + listener.c.call(listener.s || t) + } + } + } + } + } + + /* * ---------------------------------------------------------------- * Ticker * ---------------------------------------------------------------- */ var _reqAnimFrame = window.requestAnimationFrame, - _cancelAnimFrame = window.cancelAnimationFrame, - _getTime = Date.now || function() {return new Date().getTime();}, - _lastUpdate = _getTime(); - - //now try to determine the requestAnimationFrame and cancelAnimationFrame functions and if none are found, we'll use a setTimeout()/clearTimeout() polyfill. - a = ["ms","moz","webkit","o"]; - i = a.length; - while (--i > -1 && !_reqAnimFrame) { - _reqAnimFrame = window[a[i] + "RequestAnimationFrame"]; - _cancelAnimFrame = window[a[i] + "CancelAnimationFrame"] || window[a[i] + "CancelRequestAnimationFrame"]; - } - - _class("Ticker", function(fps, useRAF) { - var _self = this, - _startTime = _getTime(), - _useRAF = (useRAF !== false && _reqAnimFrame) ? "auto" : false, - _lagThreshold = 500, - _adjustedLag = 33, - _tickWord = "tick", //helps reduce gc burden - _fps, _req, _id, _gap, _nextTime, - _tick = function(manual) { - var elapsed = _getTime() - _lastUpdate, - overlap, dispatch; - if (elapsed > _lagThreshold) { - _startTime += elapsed - _adjustedLag; - } - _lastUpdate += elapsed; - _self.time = (_lastUpdate - _startTime) / 1000; - overlap = _self.time - _nextTime; - if (!_fps || overlap > 0 || manual === true) { - _self.frame++; - _nextTime += overlap + (overlap >= _gap ? 0.004 : _gap - overlap); - dispatch = true; - } - if (manual !== true) { //make sure the request is made before we dispatch the "tick" event so that timing is maintained. Otherwise, if processing the "tick" requires a bunch of time (like 15ms) and we're using a setTimeout() that's based on 16.7ms, it'd technically take 31.7ms between frames otherwise. - _id = _req(_tick); - } - if (dispatch) { - _self.dispatchEvent(_tickWord); - } - }; - - EventDispatcher.call(_self); - _self.time = _self.frame = 0; - _self.tick = function() { - _tick(true); - }; - - _self.lagSmoothing = function(threshold, adjustedLag) { - _lagThreshold = threshold || (1 / _tinyNum); //zero should be interpreted as basically unlimited - _adjustedLag = Math.min(adjustedLag, _lagThreshold, 0); - }; - - _self.sleep = function() { - if (_id == null) { - return; - } - if (!_useRAF || !_cancelAnimFrame) { - clearTimeout(_id); - } else { - _cancelAnimFrame(_id); - } - _req = _emptyFunc; - _id = null; - if (_self === _ticker) { - _tickerActive = false; - } - }; - - _self.wake = function(seamless) { - if (_id !== null) { - _self.sleep(); - } else if (seamless) { - _startTime += -_lastUpdate + (_lastUpdate = _getTime()); - } else if (_self.frame > 10) { //don't trigger lagSmoothing if we're just waking up, and make sure that at least 10 frames have elapsed because of the iOS bug that we work around below with the 1.5-second setTimout(). - _lastUpdate = _getTime() - _lagThreshold + 5; - } - _req = (_fps === 0) ? _emptyFunc : (!_useRAF || !_reqAnimFrame) ? function(f) { return setTimeout(f, ((_nextTime - _self.time) * 1000 + 1) | 0); } : _reqAnimFrame; - if (_self === _ticker) { - _tickerActive = true; - } - _tick(2); - }; - - _self.fps = function(value) { - if (!arguments.length) { - return _fps; - } - _fps = value; - _gap = 1 / (_fps || 60); - _nextTime = this.time + _gap; - _self.wake(); - }; - - _self.useRAF = function(value) { - if (!arguments.length) { - return _useRAF; - } - _self.sleep(); - _useRAF = value; - _self.fps(_fps); - }; - _self.fps(fps); - - //a bug in iOS 6 Safari occasionally prevents the requestAnimationFrame from working initially, so we use a 1.5-second timeout that automatically falls back to setTimeout() if it senses this condition. - setTimeout(function() { - if (_useRAF === "auto" && _self.frame < 5 && _doc.visibilityState !== "hidden") { - _self.useRAF(false); - } - }, 1500); - }); - - p = gs.Ticker.prototype = new gs.events.EventDispatcher(); - p.constructor = gs.Ticker; - - -/* + _cancelAnimFrame = window.cancelAnimationFrame, + _getTime = Date.now || function () { return new Date().getTime() }, + _lastUpdate = _getTime() + + // now try to determine the requestAnimationFrame and cancelAnimationFrame functions and if none are found, we'll use a setTimeout()/clearTimeout() polyfill. + a = ['ms', 'moz', 'webkit', 'o'] + i = a.length + while (--i > -1 && !_reqAnimFrame) { + _reqAnimFrame = window[a[i] + 'RequestAnimationFrame'] + _cancelAnimFrame = window[a[i] + 'CancelAnimationFrame'] || window[a[i] + 'CancelRequestAnimationFrame'] + } + + _class('Ticker', function (fps, useRAF) { + var _self = this, + _startTime = _getTime(), + _useRAF = (useRAF !== false && _reqAnimFrame) ? 'auto' : false, + _lagThreshold = 500, + _adjustedLag = 33, + _tickWord = 'tick', // helps reduce gc burden + _fps, _req, _id, _gap, _nextTime, + _tick = function (manual) { + var elapsed = _getTime() - _lastUpdate, + overlap, dispatch + if (elapsed > _lagThreshold) { + _startTime += elapsed - _adjustedLag + } + _lastUpdate += elapsed + _self.time = (_lastUpdate - _startTime) / 1000 + overlap = _self.time - _nextTime + if (!_fps || overlap > 0 || manual === true) { + _self.frame++ + _nextTime += overlap + (overlap >= _gap ? 0.004 : _gap - overlap) + dispatch = true + } + if (manual !== true) { // make sure the request is made before we dispatch the "tick" event so that timing is maintained. Otherwise, if processing the "tick" requires a bunch of time (like 15ms) and we're using a setTimeout() that's based on 16.7ms, it'd technically take 31.7ms between frames otherwise. + _id = _req(_tick) + } + if (dispatch) { + _self.dispatchEvent(_tickWord) + } + } + + EventDispatcher.call(_self) + _self.time = _self.frame = 0 + _self.tick = function () { + _tick(true) + } + + _self.lagSmoothing = function (threshold, adjustedLag) { + _lagThreshold = threshold || (1 / _tinyNum) // zero should be interpreted as basically unlimited + _adjustedLag = Math.min(adjustedLag, _lagThreshold, 0) + } + + _self.sleep = function () { + if (_id == null) { + return + } + if (!_useRAF || !_cancelAnimFrame) { + clearTimeout(_id) + } else { + _cancelAnimFrame(_id) + } + _req = _emptyFunc + _id = null + if (_self === _ticker) { + _tickerActive = false + } + } + + _self.wake = function (seamless) { + if (_id !== null) { + _self.sleep() + } else if (seamless) { + _startTime += -_lastUpdate + (_lastUpdate = _getTime()) + } else if (_self.frame > 10) { // don't trigger lagSmoothing if we're just waking up, and make sure that at least 10 frames have elapsed because of the iOS bug that we work around below with the 1.5-second setTimout(). + _lastUpdate = _getTime() - _lagThreshold + 5 + } + _req = (_fps === 0) ? _emptyFunc : (!_useRAF || !_reqAnimFrame) ? function (f) { return setTimeout(f, ((_nextTime - _self.time) * 1000 + 1) | 0) } : _reqAnimFrame + if (_self === _ticker) { + _tickerActive = true + } + _tick(2) + } + + _self.fps = function (value) { + if (!arguments.length) { + return _fps + } + _fps = value + _gap = 1 / (_fps || 60) + _nextTime = this.time + _gap + _self.wake() + } + + _self.useRAF = function (value) { + if (!arguments.length) { + return _useRAF + } + _self.sleep() + _useRAF = value + _self.fps(_fps) + } + _self.fps(fps) + + // a bug in iOS 6 Safari occasionally prevents the requestAnimationFrame from working initially, so we use a 1.5-second timeout that automatically falls back to setTimeout() if it senses this condition. + setTimeout(function () { + if (_useRAF === 'auto' && _self.frame < 5 && _doc.visibilityState !== 'hidden') { + _self.useRAF(false) + } + }, 1500) + }) + + p = gs.Ticker.prototype = new gs.events.EventDispatcher() + p.constructor = gs.Ticker + + /* * ---------------------------------------------------------------- * Animation * ---------------------------------------------------------------- */ - var Animation = _class("core.Animation", function(duration, vars) { - this.vars = vars = vars || {}; - this._duration = this._totalDuration = duration || 0; - this._delay = Number(vars.delay) || 0; - this._timeScale = 1; - this._active = (vars.immediateRender === true); - this.data = vars.data; - this._reversed = (vars.reversed === true); - - if (!_rootTimeline) { - return; - } - if (!_tickerActive) { //some browsers (like iOS 6 Safari) shut down JavaScript execution when the tab is disabled and they [occasionally] neglect to start up requestAnimationFrame again when returning - this code ensures that the engine starts up again properly. - _ticker.wake(); - } - - var tl = this.vars.useFrames ? _rootFramesTimeline : _rootTimeline; - tl.add(this, tl._time); - - if (this.vars.paused) { - this.paused(true); - } - }); - - _ticker = Animation.ticker = new gs.Ticker(); - p = Animation.prototype; - p._dirty = p._gc = p._initted = p._paused = false; - p._totalTime = p._time = 0; - p._rawPrevTime = -1; - p._next = p._last = p._onUpdate = p._timeline = p.timeline = null; - p._paused = false; - - - //some browsers (like iOS) occasionally drop the requestAnimationFrame event when the user switches to a different tab and then comes back again, so we use a 2-second setTimeout() to sense if/when that condition occurs and then wake() the ticker. - var _checkTimeout = function() { - if (_tickerActive && _getTime() - _lastUpdate > 2000 && _doc.visibilityState !== "hidden") { - _ticker.wake(); - } - var t = setTimeout(_checkTimeout, 2000); - if (t.unref) { - // allows a node process to exit even if the timeout’s callback hasn't been invoked. Without it, the node process could hang as this function is called every two seconds. - t.unref(); - } - }; - _checkTimeout(); - - - p.play = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.reversed(false).paused(false); - }; - - p.pause = function(atTime, suppressEvents) { - if (atTime != null) { - this.seek(atTime, suppressEvents); - } - return this.paused(true); - }; - - p.resume = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.paused(false); - }; - - p.seek = function(time, suppressEvents) { - return this.totalTime(Number(time), suppressEvents !== false); - }; - - p.restart = function(includeDelay, suppressEvents) { - return this.reversed(false).paused(false).totalTime(includeDelay ? -this._delay : 0, (suppressEvents !== false), true); - }; - - p.reverse = function(from, suppressEvents) { - if (from != null) { - this.seek((from || this.totalDuration()), suppressEvents); - } - return this.reversed(true).paused(false); - }; - - p.render = function(time, suppressEvents, force) { - //stub - we override this method in subclasses. - }; - - p.invalidate = function() { - this._time = this._totalTime = 0; - this._initted = this._gc = false; - this._rawPrevTime = -1; - if (this._gc || !this.timeline) { - this._enabled(true); - } - return this; - }; - - p.isActive = function() { - var tl = this._timeline, //the 2 root timelines won't have a _timeline; they're always active. - startTime = this._startTime, - rawTime; - return (!tl || (!this._gc && !this._paused && tl.isActive() && (rawTime = tl.rawTime(true)) >= startTime && rawTime < startTime + this.totalDuration() / this._timeScale - 0.0000001)); - }; - - p._enabled = function (enabled, ignoreTimeline) { - if (!_tickerActive) { - _ticker.wake(); - } - this._gc = !enabled; - this._active = this.isActive(); - if (ignoreTimeline !== true) { - if (enabled && !this.timeline) { - this._timeline.add(this, this._startTime - this._delay); - } else if (!enabled && this.timeline) { - this._timeline._remove(this, true); - } - } - return false; - }; - - - p._kill = function(vars, target) { - return this._enabled(false, false); - }; - - p.kill = function(vars, target) { - this._kill(vars, target); - return this; - }; - - p._uncache = function(includeSelf) { - var tween = includeSelf ? this : this.timeline; - while (tween) { - tween._dirty = true; - tween = tween.timeline; - } - return this; - }; - - p._swapSelfInParams = function(params) { - var i = params.length, - copy = params.concat(); - while (--i > -1) { - if (params[i] === "{self}") { - copy[i] = this; - } - } - return copy; - }; - - p._callback = function(type) { - var v = this.vars, - callback = v[type], - params = v[type + "Params"], - scope = v[type + "Scope"] || v.callbackScope || this, - l = params ? params.length : 0; - switch (l) { //speed optimization; call() is faster than apply() so use it when there are only a few parameters (which is by far most common). Previously we simply did var v = this.vars; v[type].apply(v[type + "Scope"] || v.callbackScope || this, v[type + "Params"] || _blankArray); - case 0: callback.call(scope); break; - case 1: callback.call(scope, params[0]); break; - case 2: callback.call(scope, params[0], params[1]); break; - default: callback.apply(scope, params); - } - }; - -//----Animation getters/setters -------------------------------------------------------- - - p.eventCallback = function(type, callback, params, scope) { - if ((type || "").substr(0,2) === "on") { - var v = this.vars; - if (arguments.length === 1) { - return v[type]; - } - if (callback == null) { - delete v[type]; - } else { - v[type] = callback; - v[type + "Params"] = (_isArray(params) && params.join("").indexOf("{self}") !== -1) ? this._swapSelfInParams(params) : params; - v[type + "Scope"] = scope; - } - if (type === "onUpdate") { - this._onUpdate = callback; - } - } - return this; - }; - - p.delay = function(value) { - if (!arguments.length) { - return this._delay; - } - if (this._timeline.smoothChildTiming) { - this.startTime( this._startTime + value - this._delay ); - } - this._delay = value; - return this; - }; - - p.duration = function(value) { - if (!arguments.length) { - this._dirty = false; - return this._duration; - } - this._duration = this._totalDuration = value; - this._uncache(true); //true in case it's a TweenMax or TimelineMax that has a repeat - we'll need to refresh the totalDuration. - if (this._timeline.smoothChildTiming) if (this._time > 0) if (this._time < this._duration) if (value !== 0) { - this.totalTime(this._totalTime * (value / this._duration), true); - } - return this; - }; - - p.totalDuration = function(value) { - this._dirty = false; - return (!arguments.length) ? this._totalDuration : this.duration(value); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - return this.totalTime((value > this._duration) ? this._duration : value, suppressEvents); - }; - - p.totalTime = function(time, suppressEvents, uncapped) { - if (!_tickerActive) { - _ticker.wake(); - } - if (!arguments.length) { - return this._totalTime; - } - if (this._timeline) { - if (time < 0 && !uncapped) { - time += this.totalDuration(); - } - if (this._timeline.smoothChildTiming) { - if (this._dirty) { - this.totalDuration(); - } - var totalDuration = this._totalDuration, - tl = this._timeline; - if (time > totalDuration && !uncapped) { - time = totalDuration; - } - this._startTime = (this._paused ? this._pauseTime : tl._time) - ((!this._reversed ? time : totalDuration - time) / this._timeScale); - if (!tl._dirty) { //for performance improvement. If the parent's cache is already dirty, it already took care of marking the ancestors as dirty too, so skip the function call here. - this._uncache(false); - } - //in case any of the ancestor timelines had completed but should now be enabled, we should reset their totalTime() which will also ensure that they're lined up properly and enabled. Skip for animations that are on the root (wasteful). Example: a TimelineLite.exportRoot() is performed when there's a paused tween on the root, the export will not complete until that tween is unpaused, but imagine a child gets restarted later, after all [unpaused] tweens have completed. The startTime of that child would get pushed out, but one of the ancestors may have completed. - if (tl._timeline) { - while (tl._timeline) { - if (tl._timeline._time !== (tl._startTime + tl._totalTime) / tl._timeScale) { - tl.totalTime(tl._totalTime, true); - } - tl = tl._timeline; - } - } - } - if (this._gc) { - this._enabled(true, false); - } - if (this._totalTime !== time || this._duration === 0) { - if (_lazyTweens.length) { - _lazyRender(); - } - this.render(time, suppressEvents, false); - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when someone calls seek() or time() or progress(), they expect an immediate render. - _lazyRender(); - } - } - } - return this; - }; - - p.progress = p.totalProgress = function(value, suppressEvents) { - var duration = this.duration(); - return (!arguments.length) ? (duration ? this._time / duration : this.ratio) : this.totalTime(duration * value, suppressEvents); - }; - - p.startTime = function(value) { - if (!arguments.length) { - return this._startTime; - } - if (value !== this._startTime) { - this._startTime = value; - if (this.timeline) if (this.timeline._sortChildren) { - this.timeline.add(this, value - this._delay); //ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. - } - } - return this; - }; - - p.endTime = function(includeRepeats) { - return this._startTime + ((includeRepeats != false) ? this.totalDuration() : this.duration()) / this._timeScale; - }; - - p.timeScale = function(value) { - if (!arguments.length) { - return this._timeScale; - } - value = value || _tinyNum; //can't allow zero because it'll throw the math off - if (this._timeline && this._timeline.smoothChildTiming) { - var pauseTime = this._pauseTime, - t = (pauseTime || pauseTime === 0) ? pauseTime : this._timeline.totalTime(); - this._startTime = t - ((t - this._startTime) * this._timeScale / value); - } - this._timeScale = value; - return this._uncache(false); - }; - - p.reversed = function(value) { - if (!arguments.length) { - return this._reversed; - } - if (value != this._reversed) { - this._reversed = value; - this.totalTime(((this._timeline && !this._timeline.smoothChildTiming) ? this.totalDuration() - this._totalTime : this._totalTime), true); - } - return this; - }; - - p.paused = function(value) { - if (!arguments.length) { - return this._paused; - } - var tl = this._timeline, - raw, elapsed; - if (value != this._paused) if (tl) { - if (!_tickerActive && !value) { - _ticker.wake(); - } - raw = tl.rawTime(); - elapsed = raw - this._pauseTime; - if (!value && tl.smoothChildTiming) { - this._startTime += elapsed; - this._uncache(false); - } - this._pauseTime = value ? raw : null; - this._paused = value; - this._active = this.isActive(); - if (!value && elapsed !== 0 && this._initted && this.duration()) { - raw = tl.smoothChildTiming ? this._totalTime : (raw - this._startTime) / this._timeScale; - this.render(raw, (raw === this._totalTime), true); //in case the target's properties changed via some other tween or manual update by the user, we should force a render. - } - } - if (this._gc && !value) { - this._enabled(true, false); - } - return this; - }; - - -/* + var Animation = _class('core.Animation', function (duration, vars) { + this.vars = vars = vars || {} + this._duration = this._totalDuration = duration || 0 + this._delay = Number(vars.delay) || 0 + this._timeScale = 1 + this._active = (vars.immediateRender === true) + this.data = vars.data + this._reversed = (vars.reversed === true) + + if (!_rootTimeline) { + return + } + if (!_tickerActive) { // some browsers (like iOS 6 Safari) shut down JavaScript execution when the tab is disabled and they [occasionally] neglect to start up requestAnimationFrame again when returning - this code ensures that the engine starts up again properly. + _ticker.wake() + } + + var tl = this.vars.useFrames ? _rootFramesTimeline : _rootTimeline + tl.add(this, tl._time) + + if (this.vars.paused) { + this.paused(true) + } + }) + + _ticker = Animation.ticker = new gs.Ticker() + p = Animation.prototype + p._dirty = p._gc = p._initted = p._paused = false + p._totalTime = p._time = 0 + p._rawPrevTime = -1 + p._next = p._last = p._onUpdate = p._timeline = p.timeline = null + p._paused = false + + // some browsers (like iOS) occasionally drop the requestAnimationFrame event when the user switches to a different tab and then comes back again, so we use a 2-second setTimeout() to sense if/when that condition occurs and then wake() the ticker. + var _checkTimeout = function () { + if (_tickerActive && _getTime() - _lastUpdate > 2000 && _doc.visibilityState !== 'hidden') { + _ticker.wake() + } + var t = setTimeout(_checkTimeout, 2000) + if (t.unref) { + // allows a node process to exit even if the timeout’s callback hasn't been invoked. Without it, the node process could hang as this function is called every two seconds. + t.unref() + } + } + _checkTimeout() + + p.play = function (from, suppressEvents) { + if (from != null) { + this.seek(from, suppressEvents) + } + return this.reversed(false).paused(false) + } + + p.pause = function (atTime, suppressEvents) { + if (atTime != null) { + this.seek(atTime, suppressEvents) + } + return this.paused(true) + } + + p.resume = function (from, suppressEvents) { + if (from != null) { + this.seek(from, suppressEvents) + } + return this.paused(false) + } + + p.seek = function (time, suppressEvents) { + return this.totalTime(Number(time), suppressEvents !== false) + } + + p.restart = function (includeDelay, suppressEvents) { + return this.reversed(false).paused(false).totalTime(includeDelay ? -this._delay : 0, (suppressEvents !== false), true) + } + + p.reverse = function (from, suppressEvents) { + if (from != null) { + this.seek((from || this.totalDuration()), suppressEvents) + } + return this.reversed(true).paused(false) + } + + p.render = function (time, suppressEvents, force) { + // stub - we override this method in subclasses. + } + + p.invalidate = function () { + this._time = this._totalTime = 0 + this._initted = this._gc = false + this._rawPrevTime = -1 + if (this._gc || !this.timeline) { + this._enabled(true) + } + return this + } + + p.isActive = function () { + var tl = this._timeline, // the 2 root timelines won't have a _timeline; they're always active. + startTime = this._startTime, + rawTime + return (!tl || (!this._gc && !this._paused && tl.isActive() && (rawTime = tl.rawTime(true)) >= startTime && rawTime < startTime + this.totalDuration() / this._timeScale - 0.0000001)) + } + + p._enabled = function (enabled, ignoreTimeline) { + if (!_tickerActive) { + _ticker.wake() + } + this._gc = !enabled + this._active = this.isActive() + if (ignoreTimeline !== true) { + if (enabled && !this.timeline) { + this._timeline.add(this, this._startTime - this._delay) + } else if (!enabled && this.timeline) { + this._timeline._remove(this, true) + } + } + return false + } + + p._kill = function (vars, target) { + return this._enabled(false, false) + } + + p.kill = function (vars, target) { + this._kill(vars, target) + return this + } + + p._uncache = function (includeSelf) { + var tween = includeSelf ? this : this.timeline + while (tween) { + tween._dirty = true + tween = tween.timeline + } + return this + } + + p._swapSelfInParams = function (params) { + var i = params.length, + copy = params.concat() + while (--i > -1) { + if (params[i] === '{self}') { + copy[i] = this + } + } + return copy + } + + p._callback = function (type) { + var v = this.vars, + callback = v[type], + params = v[type + 'Params'], + scope = v[type + 'Scope'] || v.callbackScope || this, + l = params ? params.length : 0 + switch (l) { // speed optimization; call() is faster than apply() so use it when there are only a few parameters (which is by far most common). Previously we simply did var v = this.vars; v[type].apply(v[type + "Scope"] || v.callbackScope || this, v[type + "Params"] || _blankArray); + case 0: callback.call(scope); break + case 1: callback.call(scope, params[0]); break + case 2: callback.call(scope, params[0], params[1]); break + default: callback.apply(scope, params) + } + } + + // ----Animation getters/setters -------------------------------------------------------- + + p.eventCallback = function (type, callback, params, scope) { + if ((type || '').substr(0, 2) === 'on') { + var v = this.vars + if (arguments.length === 1) { + return v[type] + } + if (callback == null) { + delete v[type] + } else { + v[type] = callback + v[type + 'Params'] = (_isArray(params) && params.join('').indexOf('{self}') !== -1) ? this._swapSelfInParams(params) : params + v[type + 'Scope'] = scope + } + if (type === 'onUpdate') { + this._onUpdate = callback + } + } + return this + } + + p.delay = function (value) { + if (!arguments.length) { + return this._delay + } + if (this._timeline.smoothChildTiming) { + this.startTime(this._startTime + value - this._delay) + } + this._delay = value + return this + } + + p.duration = function (value) { + if (!arguments.length) { + this._dirty = false + return this._duration + } + this._duration = this._totalDuration = value + this._uncache(true) // true in case it's a TweenMax or TimelineMax that has a repeat - we'll need to refresh the totalDuration. + if (this._timeline.smoothChildTiming) { + if (this._time > 0) { + if (this._time < this._duration) { + if (value !== 0) { + this.totalTime(this._totalTime * (value / this._duration), true) + } + } + } + } + return this + } + + p.totalDuration = function (value) { + this._dirty = false + return (!arguments.length) ? this._totalDuration : this.duration(value) + } + + p.time = function (value, suppressEvents) { + if (!arguments.length) { + return this._time + } + if (this._dirty) { + this.totalDuration() + } + return this.totalTime((value > this._duration) ? this._duration : value, suppressEvents) + } + + p.totalTime = function (time, suppressEvents, uncapped) { + if (!_tickerActive) { + _ticker.wake() + } + if (!arguments.length) { + return this._totalTime + } + if (this._timeline) { + if (time < 0 && !uncapped) { + time += this.totalDuration() + } + if (this._timeline.smoothChildTiming) { + if (this._dirty) { + this.totalDuration() + } + var totalDuration = this._totalDuration, + tl = this._timeline + if (time > totalDuration && !uncapped) { + time = totalDuration + } + this._startTime = (this._paused ? this._pauseTime : tl._time) - ((!this._reversed ? time : totalDuration - time) / this._timeScale) + if (!tl._dirty) { // for performance improvement. If the parent's cache is already dirty, it already took care of marking the ancestors as dirty too, so skip the function call here. + this._uncache(false) + } + // in case any of the ancestor timelines had completed but should now be enabled, we should reset their totalTime() which will also ensure that they're lined up properly and enabled. Skip for animations that are on the root (wasteful). Example: a TimelineLite.exportRoot() is performed when there's a paused tween on the root, the export will not complete until that tween is unpaused, but imagine a child gets restarted later, after all [unpaused] tweens have completed. The startTime of that child would get pushed out, but one of the ancestors may have completed. + if (tl._timeline) { + while (tl._timeline) { + if (tl._timeline._time !== (tl._startTime + tl._totalTime) / tl._timeScale) { + tl.totalTime(tl._totalTime, true) + } + tl = tl._timeline + } + } + } + if (this._gc) { + this._enabled(true, false) + } + if (this._totalTime !== time || this._duration === 0) { + if (_lazyTweens.length) { + _lazyRender() + } + this.render(time, suppressEvents, false) + if (_lazyTweens.length) { // in case rendering caused any tweens to lazy-init, we should render them because typically when someone calls seek() or time() or progress(), they expect an immediate render. + _lazyRender() + } + } + } + return this + } + + p.progress = p.totalProgress = function (value, suppressEvents) { + var duration = this.duration() + return (!arguments.length) ? (duration ? this._time / duration : this.ratio) : this.totalTime(duration * value, suppressEvents) + } + + p.startTime = function (value) { + if (!arguments.length) { + return this._startTime + } + if (value !== this._startTime) { + this._startTime = value + if (this.timeline) { + if (this.timeline._sortChildren) { + this.timeline.add(this, value - this._delay) // ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. + } + } + } + return this + } + + p.endTime = function (includeRepeats) { + return this._startTime + ((includeRepeats != false) ? this.totalDuration() : this.duration()) / this._timeScale + } + + p.timeScale = function (value) { + if (!arguments.length) { + return this._timeScale + } + value = value || _tinyNum // can't allow zero because it'll throw the math off + if (this._timeline && this._timeline.smoothChildTiming) { + var pauseTime = this._pauseTime, + t = (pauseTime || pauseTime === 0) ? pauseTime : this._timeline.totalTime() + this._startTime = t - ((t - this._startTime) * this._timeScale / value) + } + this._timeScale = value + return this._uncache(false) + } + + p.reversed = function (value) { + if (!arguments.length) { + return this._reversed + } + if (value != this._reversed) { + this._reversed = value + this.totalTime(((this._timeline && !this._timeline.smoothChildTiming) ? this.totalDuration() - this._totalTime : this._totalTime), true) + } + return this + } + + p.paused = function (value) { + if (!arguments.length) { + return this._paused + } + var tl = this._timeline, + raw, elapsed + if (value != this._paused) { + if (tl) { + if (!_tickerActive && !value) { + _ticker.wake() + } + raw = tl.rawTime() + elapsed = raw - this._pauseTime + if (!value && tl.smoothChildTiming) { + this._startTime += elapsed + this._uncache(false) + } + this._pauseTime = value ? raw : null + this._paused = value + this._active = this.isActive() + if (!value && elapsed !== 0 && this._initted && this.duration()) { + raw = tl.smoothChildTiming ? this._totalTime : (raw - this._startTime) / this._timeScale + this.render(raw, (raw === this._totalTime), true) // in case the target's properties changed via some other tween or manual update by the user, we should force a render. + } + } + } + if (this._gc && !value) { + this._enabled(true, false) + } + return this + } + + /* * ---------------------------------------------------------------- * SimpleTimeline * ---------------------------------------------------------------- */ - var SimpleTimeline = _class("core.SimpleTimeline", function(vars) { - Animation.call(this, 0, vars); - this.autoRemoveChildren = this.smoothChildTiming = true; - }); - - p = SimpleTimeline.prototype = new Animation(); - p.constructor = SimpleTimeline; - p.kill()._gc = false; - p._first = p._last = p._recent = null; - p._sortChildren = false; - - p.add = p.insert = function(child, position, align, stagger) { - var prevTween, st; - child._startTime = Number(position || 0) + child._delay; - if (child._paused) if (this !== child._timeline) { //we only adjust the _pauseTime if it wasn't in this timeline already. Remember, sometimes a tween will be inserted again into the same timeline when its startTime is changed so that the tweens in the TimelineLite/Max are re-ordered properly in the linked list (so everything renders in the proper order). - child._pauseTime = child._startTime + ((this.rawTime() - child._startTime) / child._timeScale); - } - if (child.timeline) { - child.timeline._remove(child, true); //removes from existing timeline so that it can be properly added to this one. - } - child.timeline = child._timeline = this; - if (child._gc) { - child._enabled(true, true); - } - prevTween = this._last; - if (this._sortChildren) { - st = child._startTime; - while (prevTween && prevTween._startTime > st) { - prevTween = prevTween._prev; - } - } - if (prevTween) { - child._next = prevTween._next; - prevTween._next = child; - } else { - child._next = this._first; - this._first = child; - } - if (child._next) { - child._next._prev = child; - } else { - this._last = child; - } - child._prev = prevTween; - this._recent = child; - if (this._timeline) { - this._uncache(true); - } - return this; - }; - - p._remove = function(tween, skipDisable) { - if (tween.timeline === this) { - if (!skipDisable) { - tween._enabled(false, true); - } - - if (tween._prev) { - tween._prev._next = tween._next; - } else if (this._first === tween) { - this._first = tween._next; - } - if (tween._next) { - tween._next._prev = tween._prev; - } else if (this._last === tween) { - this._last = tween._prev; - } - tween._next = tween._prev = tween.timeline = null; - if (tween === this._recent) { - this._recent = this._last; - } - - if (this._timeline) { - this._uncache(true); - } - } - return this; - }; - - p.render = function(time, suppressEvents, force) { - var tween = this._first, - next; - this._totalTime = this._time = this._rawPrevTime = time; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (tween._active || (time >= tween._startTime && !tween._paused && !tween._gc)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - }; - - p.rawTime = function() { - if (!_tickerActive) { - _ticker.wake(); - } - return this._totalTime; - }; - -/* + var SimpleTimeline = _class('core.SimpleTimeline', function (vars) { + Animation.call(this, 0, vars) + this.autoRemoveChildren = this.smoothChildTiming = true + }) + + p = SimpleTimeline.prototype = new Animation() + p.constructor = SimpleTimeline + p.kill()._gc = false + p._first = p._last = p._recent = null + p._sortChildren = false + + p.add = p.insert = function (child, position, align, stagger) { + var prevTween, st + child._startTime = Number(position || 0) + child._delay + if (child._paused) { + if (this !== child._timeline) { // we only adjust the _pauseTime if it wasn't in this timeline already. Remember, sometimes a tween will be inserted again into the same timeline when its startTime is changed so that the tweens in the TimelineLite/Max are re-ordered properly in the linked list (so everything renders in the proper order). + child._pauseTime = child._startTime + ((this.rawTime() - child._startTime) / child._timeScale) + } + } + if (child.timeline) { + child.timeline._remove(child, true) // removes from existing timeline so that it can be properly added to this one. + } + child.timeline = child._timeline = this + if (child._gc) { + child._enabled(true, true) + } + prevTween = this._last + if (this._sortChildren) { + st = child._startTime + while (prevTween && prevTween._startTime > st) { + prevTween = prevTween._prev + } + } + if (prevTween) { + child._next = prevTween._next + prevTween._next = child + } else { + child._next = this._first + this._first = child + } + if (child._next) { + child._next._prev = child + } else { + this._last = child + } + child._prev = prevTween + this._recent = child + if (this._timeline) { + this._uncache(true) + } + return this + } + + p._remove = function (tween, skipDisable) { + if (tween.timeline === this) { + if (!skipDisable) { + tween._enabled(false, true) + } + + if (tween._prev) { + tween._prev._next = tween._next + } else if (this._first === tween) { + this._first = tween._next + } + if (tween._next) { + tween._next._prev = tween._prev + } else if (this._last === tween) { + this._last = tween._prev + } + tween._next = tween._prev = tween.timeline = null + if (tween === this._recent) { + this._recent = this._last + } + + if (this._timeline) { + this._uncache(true) + } + } + return this + } + + p.render = function (time, suppressEvents, force) { + var tween = this._first, + next + this._totalTime = this._time = this._rawPrevTime = time + while (tween) { + next = tween._next // record it here because the value could change after rendering... + if (tween._active || (time >= tween._startTime && !tween._paused && !tween._gc)) { + if (!tween._reversed) { + tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force) + } else { + tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force) + } + } + tween = next + } + } + + p.rawTime = function () { + if (!_tickerActive) { + _ticker.wake() + } + return this._totalTime + } + + /* * ---------------------------------------------------------------- * TweenLite * ---------------------------------------------------------------- */ - var TweenLite = _class("TweenLite", function(target, duration, vars) { - Animation.call(this, duration, vars); - this.render = TweenLite.prototype.render; //speed optimization (avoid prototype lookup on this "hot" method) - - if (target == null) { - throw "Cannot tween a null target."; - } - - this.target = target = (typeof(target) !== "string") ? target : TweenLite.selector(target) || target; - - var isSelector = (target.jquery || (target.length && target !== window && target[0] && (target[0] === window || (target[0].nodeType && target[0].style && !target.nodeType)))), - overwrite = this.vars.overwrite, - i, targ, targets; - - this._overwrite = overwrite = (overwrite == null) ? _overwriteLookup[TweenLite.defaultOverwrite] : (typeof(overwrite) === "number") ? overwrite >> 0 : _overwriteLookup[overwrite]; - - if ((isSelector || target instanceof Array || (target.push && _isArray(target))) && typeof(target[0]) !== "number") { - this._targets = targets = _slice(target); //don't use Array.prototype.slice.call(target, 0) because that doesn't work in IE8 with a NodeList that's returned by querySelectorAll() - this._propLookup = []; - this._siblings = []; - for (i = 0; i < targets.length; i++) { - targ = targets[i]; - if (!targ) { - targets.splice(i--, 1); - continue; - } else if (typeof(targ) === "string") { - targ = targets[i--] = TweenLite.selector(targ); //in case it's an array of strings - if (typeof(targ) === "string") { - targets.splice(i+1, 1); //to avoid an endless loop (can't imagine why the selector would return a string, but just in case) - } - continue; - } else if (targ.length && targ !== window && targ[0] && (targ[0] === window || (targ[0].nodeType && targ[0].style && !targ.nodeType))) { //in case the user is passing in an array of selector objects (like jQuery objects), we need to check one more level and pull things out if necessary. Also note that elements pass all the criteria regarding length and the first child having style, so we must also check to ensure the target isn't an HTML node itself. + targets.splice(i--, 1) + this._targets = targets = targets.concat(_slice(targ)) + continue + } + this._siblings[i] = _register(targ, this, false) + if (overwrite === 1) { + if (this._siblings[i].length > 1) { + _applyOverwrite(targ, this, null, 1, this._siblings[i]) + } + } + } + } else { + this._propLookup = {} + this._siblings = _register(target, this, false) + if (overwrite === 1) { + if (this._siblings.length > 1) { + _applyOverwrite(target, this, null, 1, this._siblings) + } + } + } + if (this.vars.immediateRender || (duration === 0 && this._delay === 0 && this.vars.immediateRender !== false)) { + this._time = -_tinyNum // forces a render without having to set the render() "force" parameter to true because we want to allow lazying by default (using the "force" parameter always forces an immediate full render) + this.render(Math.min(0, -this._delay)) // in case delay is negative + } + }, true), + _isSelector = function (v) { + return (v && v.length && v !== window && v[0] && (v[0] === window || (v[0].nodeType && v[0].style && !v.nodeType))) // we cannot check "nodeType" if the target is window from within an iframe, otherwise it will trigger a security error in some browsers like Firefox. + }, + _autoCSS = function (vars, target) { + var css = {}, + p + for (p in vars) { + if (!_reservedProps[p] && (!(p in target) || p === 'transform' || p === 'x' || p === 'y' || p === 'width' || p === 'height' || p === 'className' || p === 'border') && (!_plugins[p] || (_plugins[p] && _plugins[p]._autoCSS))) { // note: elements contain read-only "x" and "y" properties. We should also prioritize editing css width/height rather than the element's properties. + css[p] = vars[p] + delete vars[p] + } + } + vars.css = css + } + + p = TweenLite.prototype = new Animation() + p.constructor = TweenLite + p.kill()._gc = false + + // ----TweenLite defaults, overwrite management, and root updates ---------------------------------------------------- + + p.ratio = 0 + p._firstPT = p._targets = p._overwrittenProps = p._startAt = null + p._notifyPluginsOfEnabled = p._lazy = false + + TweenLite.version = '1.20.2' + TweenLite.defaultEase = p._ease = new Ease(null, null, 1, 1) + TweenLite.defaultOverwrite = 'auto' + TweenLite.ticker = _ticker + TweenLite.autoSleep = 120 + TweenLite.lagSmoothing = function (threshold, adjustedLag) { + _ticker.lagSmoothing(threshold, adjustedLag) + } + + TweenLite.selector = window.$ || window.jQuery || function (e) { + var selector = window.$ || window.jQuery + if (selector) { + TweenLite.selector = selector + return selector(e) + } + return (typeof (_doc) === 'undefined') ? e : (_doc.querySelectorAll ? _doc.querySelectorAll(e) : _doc.getElementById((e.charAt(0) === '#') ? e.substr(1) : e)) + } + + var _lazyTweens = [], + _lazyLookup = {}, + _numbersExp = /(?:(-|-=|\+=)?\d*\.?\d*(?:e[\-+]?\d+)?)[0-9]/ig, + _relExp = /[\+-]=-?[\.\d]/, + // _nonNumbersExp = /(?:([\-+](?!(\d|=)))|[^\d\-+=e]|(e(?![\-+][\d])))+/ig, + _setRatio = function (v) { + var pt = this._firstPT, + min = 0.000001, + val + while (pt) { + val = !pt.blob ? pt.c * v + pt.s : (v === 1 && this.end) ? this.end : v ? this.join('') : this.start + if (pt.m) { + val = pt.m(val, this._target || pt.t) + } else if (val < min) { + if (val > -min && !pt.blob) { // prevents issues with converting very small numbers to strings in the browser + val = 0 + } + } + if (!pt.f) { + pt.t[pt.p] = val + } else if (pt.fp) { + pt.t[pt.p](pt.fp, val) + } else { + pt.t[pt.p](val) + } + pt = pt._next + } + }, + // compares two strings (start/end), finds the numbers that are different and spits back an array representing the whole value but with the changing values isolated as elements. For example, "rgb(0,0,0)" and "rgb(100,50,0)" would become ["rgb(", 0, ",", 50, ",0)"]. Notice it merges the parts that are identical (performance optimization). The array also has a linked list of PropTweens attached starting with _firstPT that contain the tweening data (t, p, s, c, f, etc.). It also stores the starting value as a "start" property so that we can revert to it if/when necessary, like when a tween rewinds fully. If the quantity of numbers differs between the start and end, it will always prioritize the end value(s). The pt parameter is optional - it's for a PropTween that will be appended to the end of the linked list and is typically for actually setting the value after all of the elements have been updated (with array.join("")). + _blobDif = function (start, end, filter, pt) { + var a = [], + charIndex = 0, + s = '', + color = 0, + startNums, endNums, num, i, l, nonNumbers, currentNum + a.start = start + a.end = end + start = a[0] = start + '' // ensure values are strings + end = a[1] = end + '' + if (filter) { + filter(a) // pass an array with the starting and ending values and let the filter do whatever it needs to the values. + start = a[0] + end = a[1] + } + a.length = 0 + startNums = start.match(_numbersExp) || [] + endNums = end.match(_numbersExp) || [] + if (pt) { + pt._next = null + pt.blob = 1 + a._firstPT = a._applyPT = pt // apply last in the linked list (which means inserting it first) + } + l = endNums.length + for (i = 0; i < l; i++) { + currentNum = endNums[i] + nonNumbers = end.substr(charIndex, end.indexOf(currentNum, charIndex) - charIndex) + s += (nonNumbers || !i) ? nonNumbers : ',' // note: SVG spec allows omission of comma/space when a negative sign is wedged between two numbers, like 2.5-5.3 instead of 2.5,-5.3 but when tweening, the negative value may switch to positive, so we insert the comma just in case. + charIndex += nonNumbers.length + if (color) { // sense rgba() values and round them. + color = (color + 1) % 5 + } else if (nonNumbers.substr(-5) === 'rgba(') { + color = 1 + } + if (currentNum === startNums[i] || startNums.length <= i) { + s += currentNum + } else { + if (s) { + a.push(s) + s = '' + } + num = parseFloat(startNums[i]) + a.push(num) + a._firstPT = {_next: a._firstPT, t: a, p: a.length - 1, s: num, c: ((currentNum.charAt(1) === '=') ? parseInt(currentNum.charAt(0) + '1', 10) * parseFloat(currentNum.substr(2)) : (parseFloat(currentNum) - num)) || 0, f: 0, m: (color && color < 4) ? Math.round : 0} + // note: we don't set _prev because we'll never need to remove individual PropTweens from this list. + } + charIndex += currentNum.length + } + s += end.substr(charIndex) + if (s) { + a.push(s) + } + a.setRatio = _setRatio + if (_relExp.test(end)) { // if the end string contains relative values, delete it so that on the final render (in _setRatio()), we don't actually set it to the string with += or -= characters (forces it to use the calculated value). + a.end = 0 + } + return a + }, + // note: "funcParam" is only necessary for function-based getters/setters that require an extra parameter like getAttribute("width") and setAttribute("width", value). In this example, funcParam would be "width". Used by AttrPlugin for example. + _addPropTween = function (target, prop, start, end, overwriteProp, mod, funcParam, stringFilter, index) { + if (typeof (end) === 'function') { + end = end(index || 0, target) + } + var type = typeof (target[prop]), + getterName = (type !== 'function') ? '' : ((prop.indexOf('set') || typeof (target['get' + prop.substr(3)]) !== 'function') ? prop : 'get' + prop.substr(3)), + s = (start !== 'get') ? start : !getterName ? target[prop] : funcParam ? target[getterName](funcParam) : target[getterName](), + isRelative = (typeof (end) === 'string' && end.charAt(1) === '='), + pt = {t: target, p: prop, s: s, f: (type === 'function'), pg: 0, n: overwriteProp || prop, m: (!mod ? 0 : (typeof (mod) === 'function') ? mod : Math.round), pr: 0, c: isRelative ? parseInt(end.charAt(0) + '1', 10) * parseFloat(end.substr(2)) : (parseFloat(end) - s) || 0}, + blob + + if (typeof (s) !== 'number' || (typeof (end) !== 'number' && !isRelative)) { + if (funcParam || isNaN(s) || (!isRelative && isNaN(end)) || typeof (s) === 'boolean' || typeof (end) === 'boolean') { + // a blob (string that has multiple numbers in it) + pt.fp = funcParam + blob = _blobDif(s, (isRelative ? parseFloat(pt.s) + pt.c : end), stringFilter || TweenLite.defaultStringFilter, pt) + pt = {t: blob, p: 'setRatio', s: 0, c: 1, f: 2, pg: 0, n: overwriteProp || prop, pr: 0, m: 0} // "2" indicates it's a Blob property tween. Needed for RoundPropsPlugin for example. + } else { + pt.s = parseFloat(s) + if (!isRelative) { + pt.c = (parseFloat(end) - pt.s) || 0 + } + } + } + if (pt.c) { // only add it to the linked list if there's a change. + if ((pt._next = this._firstPT)) { + pt._next._prev = pt + } + this._firstPT = pt + return pt + } + }, + _internals = TweenLite._internals = {isArray: _isArray, isSelector: _isSelector, lazyTweens: _lazyTweens, blobDif: _blobDif}, // gives us a way to expose certain private values to other GreenSock classes without contaminating tha main TweenLite object. + _plugins = TweenLite._plugins = {}, + _tweenLookup = _internals.tweenLookup = {}, + _tweenLookupNum = 0, + _reservedProps = _internals.reservedProps = {ease: 1, delay: 1, overwrite: 1, onComplete: 1, onCompleteParams: 1, onCompleteScope: 1, useFrames: 1, runBackwards: 1, startAt: 1, onUpdate: 1, onUpdateParams: 1, onUpdateScope: 1, onStart: 1, onStartParams: 1, onStartScope: 1, onReverseComplete: 1, onReverseCompleteParams: 1, onReverseCompleteScope: 1, onRepeat: 1, onRepeatParams: 1, onRepeatScope: 1, easeParams: 1, yoyo: 1, immediateRender: 1, repeat: 1, repeatDelay: 1, data: 1, paused: 1, reversed: 1, autoCSS: 1, lazy: 1, onOverwrite: 1, callbackScope: 1, stringFilter: 1, id: 1, yoyoEase: 1}, + _overwriteLookup = {none: 0, all: 1, auto: 2, concurrent: 3, allOnStart: 4, preexisting: 5, 'true': 1, 'false': 0}, + _rootFramesTimeline = Animation._rootFramesTimeline = new SimpleTimeline(), + _rootTimeline = Animation._rootTimeline = new SimpleTimeline(), + _nextGCFrame = 30, + _lazyRender = _internals.lazyRender = function () { + var i = _lazyTweens.length, + tween + _lazyLookup = {} + while (--i > -1) { + tween = _lazyTweens[i] + if (tween && tween._lazy !== false) { + tween.render(tween._lazy[0], tween._lazy[1], true) + tween._lazy = false + } + } + _lazyTweens.length = 0 + } + + _rootTimeline._startTime = _ticker.time + _rootFramesTimeline._startTime = _ticker.frame + _rootTimeline._active = _rootFramesTimeline._active = true + setTimeout(_lazyRender, 1) // on some mobile devices, there isn't a "tick" before code runs which means any lazy renders wouldn't run before the next official "tick". + + Animation._updateRoot = TweenLite.render = function () { + var i, a, p + if (_lazyTweens.length) { // if code is run outside of the requestAnimationFrame loop, there may be tweens queued AFTER the engine refreshed, so we need to ensure any pending renders occur before we refresh again. + _lazyRender() + } + _rootTimeline.render((_ticker.time - _rootTimeline._startTime) * _rootTimeline._timeScale, false, false) + _rootFramesTimeline.render((_ticker.frame - _rootFramesTimeline._startTime) * _rootFramesTimeline._timeScale, false, false) + if (_lazyTweens.length) { + _lazyRender() + } + if (_ticker.frame >= _nextGCFrame) { // dump garbage every 120 frames or whatever the user sets TweenLite.autoSleep to + _nextGCFrame = _ticker.frame + (parseInt(TweenLite.autoSleep, 10) || 120) + for (p in _tweenLookup) { + a = _tweenLookup[p].tweens + i = a.length + while (--i > -1) { + if (a[i]._gc) { + a.splice(i, 1) + } + } + if (a.length === 0) { + delete _tweenLookup[p] + } + } + // if there are no more tweens in the root timelines, or if they're all paused, make the _timer sleep to reduce load on the CPU slightly + p = _rootTimeline._first + if (!p || p._paused) { + if (TweenLite.autoSleep && !_rootFramesTimeline._first && _ticker._listeners.tick.length === 1) { + while (p && p._paused) { + p = p._next + } + if (!p) { + _ticker.sleep() + } + } + } + } + } + + _ticker.addEventListener('tick', Animation._updateRoot) + + var _register = function (target, tween, scrub) { + var id = target._gsTweenID, a, i + if (!_tweenLookup[id || (target._gsTweenID = id = 't' + (_tweenLookupNum++))]) { + _tweenLookup[id] = {target: target, tweens: []} + } + if (tween) { + a = _tweenLookup[id].tweens + a[(i = a.length)] = tween + if (scrub) { + while (--i > -1) { + if (a[i] === tween) { + a.splice(i, 1) + } + } + } + } + return _tweenLookup[id].tweens + }, + _onOverwrite = function (overwrittenTween, overwritingTween, target, killedProps) { + var func = overwrittenTween.vars.onOverwrite, r1, r2 + if (func) { + r1 = func(overwrittenTween, overwritingTween, target, killedProps) + } + func = TweenLite.onOverwrite + if (func) { + r2 = func(overwrittenTween, overwritingTween, target, killedProps) + } + return (r1 !== false && r2 !== false) + }, + _applyOverwrite = function (target, tween, props, mode, siblings) { + var i, changed, curTween, l + if (mode === 1 || mode >= 4) { + l = siblings.length + for (i = 0; i < l; i++) { + if ((curTween = siblings[i]) !== tween) { + if (!curTween._gc) { + if (curTween._kill(null, target, tween)) { + changed = true + } + } + } else if (mode === 5) { + break + } + } + return changed + } + // NOTE: Add 0.0000000001 to overcome floating point errors that can cause the startTime to be VERY slightly off (when a tween's time() is set for example) + var startTime = tween._startTime + _tinyNum, + overlaps = [], + oCount = 0, + zeroDur = (tween._duration === 0), + globalStart + i = siblings.length + while (--i > -1) { + if ((curTween = siblings[i]) === tween || curTween._gc || curTween._paused) { + // ignore + } else if (curTween._timeline !== tween._timeline) { + globalStart = globalStart || _checkOverlap(tween, 0, zeroDur) + if (_checkOverlap(curTween, globalStart, zeroDur) === 0) { + overlaps[oCount++] = curTween + } + } else if (curTween._startTime <= startTime) { + if (curTween._startTime + curTween.totalDuration() / curTween._timeScale > startTime) { + if (!((zeroDur || !curTween._initted) && startTime - curTween._startTime <= 0.0000000002)) { + overlaps[oCount++] = curTween + } + } + } + } + + i = oCount + while (--i > -1) { + curTween = overlaps[i] + if (mode === 2) { + if (curTween._kill(props, target, tween)) { + changed = true + } + } + if (mode !== 2 || (!curTween._firstPT && curTween._initted)) { + if (mode !== 2 && !_onOverwrite(curTween, tween)) { + continue + } + if (curTween._enabled(false, false)) { // if all property tweens have been overwritten, kill the tween. + changed = true + } + } + } + return changed + }, + _checkOverlap = function (tween, reference, zeroDur) { + var tl = tween._timeline, + ts = tl._timeScale, + t = tween._startTime + while (tl._timeline) { + t += tl._startTime + ts *= tl._timeScale + if (tl._paused) { + return -100 + } + tl = tl._timeline + } + t /= ts + return (t > reference) ? t - reference : ((zeroDur && t === reference) || (!tween._initted && t - reference < 2 * _tinyNum)) ? _tinyNum : ((t += tween.totalDuration() / tween._timeScale / ts) > reference + _tinyNum) ? 0 : t - reference - _tinyNum + } + + // ---- TweenLite instance methods ----------------------------------------------------------------------------- + + p._init = function () { + var v = this.vars, + op = this._overwrittenProps, + dur = this._duration, + immediate = !!v.immediateRender, + ease = v.ease, + i, initPlugins, pt, p, startVars, l + if (v.startAt) { + if (this._startAt) { + this._startAt.render(-1, true) // if we've run a startAt previously (when the tween instantiated), we should revert it so that the values re-instantiate correctly particularly for relative tweens. Without this, a TweenLite.fromTo(obj, 1, {x:"+=100"}, {x:"-=100"}), for example, would actually jump to +=200 because the startAt would run twice, doubling the relative change. + this._startAt.kill() + } + startVars = {} + for (p in v.startAt) { // copy the properties/values into a new object to avoid collisions, like var to = {x:0}, from = {x:500}; timeline.fromTo(e, 1, from, to).fromTo(e, 1, to, from); + startVars[p] = v.startAt[p] + } + startVars.overwrite = false + startVars.immediateRender = true + startVars.lazy = (immediate && v.lazy !== false) + startVars.startAt = startVars.delay = null // no nesting of startAt objects allowed (otherwise it could cause an infinite loop). + startVars.onUpdate = v.onUpdate + startVars.onUpdateScope = v.onUpdateScope || v.callbackScope || this + this._startAt = TweenLite.to(this.target, 0, startVars) + if (immediate) { + if (this._time > 0) { + this._startAt = null // tweens that render immediately (like most from() and fromTo() tweens) shouldn't revert when their parent timeline's playhead goes backward past the startTime because the initial render could have happened anytime and it shouldn't be directly correlated to this tween's startTime. Imagine setting up a complex animation where the beginning states of various objects are rendered immediately but the tween doesn't happen for quite some time - if we revert to the starting values as soon as the playhead goes backward past the tween's startTime, it will throw things off visually. Reversion should only happen in TimelineLite/Max instances where immediateRender was false (which is the default in the convenience methods like from()). + } else if (dur !== 0) { + return // we skip initialization here so that overwriting doesn't occur until the tween actually begins. Otherwise, if you create several immediateRender:true tweens of the same target/properties to drop into a TimelineLite or TimelineMax, the last one created would overwrite the first ones because they didn't get placed into the timeline yet before the first render occurs and kicks in overwriting. + } + } + } else if (v.runBackwards && dur !== 0) { + // from() tweens must be handled uniquely: their beginning values must be rendered but we don't want overwriting to occur yet (when time is still 0). Wait until the tween actually begins before doing all the routines like overwriting. At that time, we should render at the END of the tween to ensure that things initialize correctly (remember, from() tweens go backwards) + if (this._startAt) { + this._startAt.render(-1, true) + this._startAt.kill() + this._startAt = null + } else { + if (this._time !== 0) { // in rare cases (like if a from() tween runs and then is invalidate()-ed), immediateRender could be true but the initial forced-render gets skipped, so there's no need to force the render in this context when the _time is greater than 0 + immediate = false + } + pt = {} + for (p in v) { // copy props into a new object and skip any reserved props, otherwise onComplete or onUpdate or onStart could fire. We should, however, permit autoCSS to go through. + if (!_reservedProps[p] || p === 'autoCSS') { + pt[p] = v[p] + } + } + pt.overwrite = 0 + pt.data = 'isFromStart' // we tag the tween with as "isFromStart" so that if [inside a plugin] we need to only do something at the very END of a tween, we have a way of identifying this tween as merely the one that's setting the beginning values for a "from()" tween. For example, clearProps in CSSPlugin should only get applied at the very END of a tween and without this tag, from(...{height:100, clearProps:"height", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in. + pt.lazy = (immediate && v.lazy !== false) + pt.immediateRender = immediate // zero-duration tweens render immediately by default, but if we're not specifically instructed to render this tween immediately, we should skip this and merely _init() to record the starting values (rendering them immediately would push them to completion which is wasteful in that case - we'd have to render(-1) immediately after) + this._startAt = TweenLite.to(this.target, 0, pt) + if (!immediate) { + this._startAt._init() // ensures that the initial values are recorded + this._startAt._enabled(false) // no need to have the tween render on the next cycle. Disable it because we'll always manually control the renders of the _startAt tween. + if (this.vars.immediateRender) { + this._startAt = null + } + } else if (this._time === 0) { + return + } + } + } + this._ease = ease = (!ease) ? TweenLite.defaultEase : (ease instanceof Ease) ? ease : (typeof (ease) === 'function') ? new Ease(ease, v.easeParams) : _easeMap[ease] || TweenLite.defaultEase + if (v.easeParams instanceof Array && ease.config) { + this._ease = ease.config.apply(ease, v.easeParams) + } + this._easeType = this._ease._type + this._easePower = this._ease._power + this._firstPT = null + + if (this._targets) { + l = this._targets.length + for (i = 0; i < l; i++) { + if (this._initProps(this._targets[i], (this._propLookup[i] = {}), this._siblings[i], (op ? op[i] : null), i)) { + initPlugins = true + } + } + } else { + initPlugins = this._initProps(this.target, this._propLookup, this._siblings, op, 0) + } + + if (initPlugins) { + TweenLite._onPluginEvent('_onInitAllProps', this) // reorders the array in order of priority. Uses a static TweenPlugin method in order to minimize file size in TweenLite + } + if (op) { + if (!this._firstPT) { + if (typeof (this.target) !== 'function') { // if all tweening properties have been overwritten, kill the tween. If the target is a function, it's probably a delayedCall so let it live. + this._enabled(false, false) + } + } + } + if (v.runBackwards) { + pt = this._firstPT + while (pt) { + pt.s += pt.c + pt.c = -pt.c + pt = pt._next + } + } + this._onUpdate = v.onUpdate + this._initted = true + } + + p._initProps = function (target, propLookup, siblings, overwrittenProps, index) { + var p, i, initPlugins, plugin, pt, v + if (target == null) { + return false + } + + if (_lazyLookup[target._gsTweenID]) { + _lazyRender() // if other tweens of the same target have recently initted but haven't rendered yet, we've got to force the render so that the starting values are correct (imagine populating a timeline with a bunch of sequential tweens and then jumping to the end) + } + + if (!this.vars.css) { + if (target.style) { + if (target !== window && target.nodeType) { + if (_plugins.css) { + if (this.vars.autoCSS !== false) { // it's so common to use TweenLite/Max to animate the css of DOM elements, we assume that if the target is a DOM element, that's what is intended (a convenience so that users don't have to wrap things in css:{}, although we still recommend it for a slight performance boost and better specificity). Note: we cannot check "nodeType" on the window inside an iframe. + _autoCSS(this.vars, target) + } + } + } + } + } + for (p in this.vars) { + v = this.vars[p] + if (_reservedProps[p]) { + if (v) { + if ((v instanceof Array) || (v.push && _isArray(v))) { + if (v.join('').indexOf('{self}') !== -1) { + this.vars[p] = v = this._swapSelfInParams(v, this) + } + } + } + } else if (_plugins[p] && (plugin = new _plugins[p]())._onInitTween(target, this.vars[p], this, index)) { + // t - target [object] + // p - property [string] + // s - start [number] + // c - change [number] + // f - isFunction [boolean] + // n - name [string] + // pg - isPlugin [boolean] + // pr - priority [number] + // m - mod [function | 0] + this._firstPT = pt = {_next: this._firstPT, t: plugin, p: 'setRatio', s: 0, c: 1, f: 1, n: p, pg: 1, pr: plugin._priority, m: 0} + i = plugin._overwriteProps.length + while (--i > -1) { + propLookup[plugin._overwriteProps[i]] = this._firstPT + } + if (plugin._priority || plugin._onInitAllProps) { + initPlugins = true + } + if (plugin._onDisable || plugin._onEnable) { + this._notifyPluginsOfEnabled = true + } + if (pt._next) { + pt._next._prev = pt + } + } else { + propLookup[p] = _addPropTween.call(this, target, p, 'get', v, p, 0, null, this.vars.stringFilter, index) + } + } + + if (overwrittenProps) { + if (this._kill(overwrittenProps, target)) { // another tween may have tried to overwrite properties of this tween before init() was called (like if two tweens start at the same time, the one created second will run first) + return this._initProps(target, propLookup, siblings, overwrittenProps, index) + } + } + if (this._overwrite > 1) { + if (this._firstPT) { + if (siblings.length > 1) { + if (_applyOverwrite(target, this, propLookup, this._overwrite, siblings)) { + this._kill(propLookup, target) + return this._initProps(target, propLookup, siblings, overwrittenProps, index) + } + } + } + } + if (this._firstPT) { + if ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration)) { // zero duration tweens don't lazy render by default; everything else does. + _lazyLookup[target._gsTweenID] = true + } + } + return initPlugins + } + + p.render = function (time, suppressEvents, force) { + var prevTime = this._time, + duration = this._duration, + prevRawPrevTime = this._rawPrevTime, + isComplete, callback, pt, rawPrevTime + if (time >= duration - 0.0000001 && time >= 0) { // to work around occasional floating point math artifacts. + this._totalTime = this._time = duration + this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1 + if (!this._reversed) { + isComplete = true + callback = 'onComplete' + force = (force || this._timeline.autoRemoveChildren) // otherwise, if the animation is unpaused/activated after it's already finished, it doesn't get removed from the parent timeline. + } + if (duration === 0) { + if (this._initted || !this.vars.lazy || force) { // zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (this._startTime === this._timeline._duration) { // if a zero-duration tween is at the VERY end of a timeline and that timeline renders at its end, it will typically add a tiny bit of cushion to the render time to prevent rounding errors from getting in the way of tweens rendering their VERY end. If we then reverse() that timeline, the zero-duration tween will trigger its onReverseComplete even though technically the playhead didn't pass over it again. It's a very specific edge case we must accommodate. + time = 0 + } + if (prevRawPrevTime < 0 || (time <= 0 && time >= -0.0000001) || (prevRawPrevTime === _tinyNum && this.data !== 'isPause')) { + if (prevRawPrevTime !== time) { // note: when this.data is "isPause", it's a callback added by addPause() on a timeline that we should not be triggered when LEAVING its exact start time. In other words, tl.addPause(1).play(1) shouldn't pause. + force = true + if (prevRawPrevTime > _tinyNum) { + callback = 'onReverseComplete' + } + } + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + } + } else if (time < 0.0000001) { // to work around occasional floating point math artifacts, round super small values to 0. + this._totalTime = this._time = 0 + this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0 + if (prevTime !== 0 || (duration === 0 && prevRawPrevTime > 0)) { + callback = 'onReverseComplete' + isComplete = this._reversed + } + if (time < 0) { + this._active = false + if (duration === 0) { + if (this._initted || !this.vars.lazy || force) { // zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (prevRawPrevTime >= 0 && !(prevRawPrevTime === _tinyNum && this.data === 'isPause')) { + force = true + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum // when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + } + } + if (!this._initted || (this._startAt && this._startAt.progress())) { // if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately. Also, we check progress() because if startAt has already rendered at its end, we should force a render at its beginning. Otherwise, if you put the playhead directly on top of where a fromTo({immediateRender:false}) starts, and then move it backwards, the from() won't revert its values. + force = true + } + } else { + this._totalTime = this._time = time + + if (this._easeType) { + var r = time / duration, type = this._easeType, pow = this._easePower + if (type === 1 || (type === 3 && r >= 0.5)) { + r = 1 - r + } + if (type === 3) { + r *= 2 + } + if (pow === 1) { + r *= r + } else if (pow === 2) { + r *= r * r + } else if (pow === 3) { + r *= r * r * r + } else if (pow === 4) { + r *= r * r * r * r + } + + if (type === 1) { + this.ratio = 1 - r + } else if (type === 2) { + this.ratio = r + } else if (time / duration < 0.5) { + this.ratio = r / 2 + } else { + this.ratio = 1 - (r / 2) + } + } else { + this.ratio = this._ease.getRatio(time / duration) + } + } + + if (this._time === prevTime && !force) { + return + } else if (!this._initted) { + this._init() + if (!this._initted || this._gc) { // immediateRender tweens typically won't initialize until the playhead advances (_time is greater than 0) in order to ensure that overwriting occurs properly. Also, if all of the tweening properties have been overwritten (which would cause _gc to be true, as set in _init()), we shouldn't continue otherwise an onStart callback could be called for example. + return + } else if (!force && this._firstPT && ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration))) { + this._time = this._totalTime = prevTime + this._rawPrevTime = prevRawPrevTime + _lazyTweens.push(this) + this._lazy = [time, suppressEvents] + return + } + // _ease is initially set to defaultEase, so now that init() has run, _ease is set properly and we need to recalculate the ratio. Overall this is faster than using conditional logic earlier in the method to avoid having to set ratio twice because we only init() once but renderTime() gets called VERY frequently. + if (this._time && !isComplete) { + this.ratio = this._ease.getRatio(this._time / duration) + } else if (isComplete && this._ease._calcEnd) { + this.ratio = this._ease.getRatio((this._time === 0) ? 0 : 1) + } + } + if (this._lazy !== false) { // in case a lazy render is pending, we should flush it because the new render is occurring now (imagine a lazy tween instantiating and then immediately the user calls tween.seek(tween.duration()), skipping to the end - the end render would be forced, and then if we didn't flush the lazy render, it'd fire AFTER the seek(), rendering it at the wrong time. + this._lazy = false + } + if (!this._active) { + if (!this._paused && this._time !== prevTime && time >= 0) { + this._active = true // so that if the user renders a tween (as opposed to the timeline rendering it), the timeline is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the tween already finished but the user manually re-renders it as halfway done. + } + } + if (prevTime === 0) { + if (this._startAt) { + if (time >= 0) { + this._startAt.render(time, suppressEvents, force) + } else if (!callback) { + callback = '_dummyGS' // if no callback is defined, use a dummy value just so that the condition at the end evaluates as true because _startAt should render AFTER the normal render loop when the time is negative. We could handle this in a more intuitive way, of course, but the render loop is the MOST important thing to optimize, so this technique allows us to avoid adding extra conditional logic in a high-frequency area. + } + } + if (this.vars.onStart) { + if (this._time !== 0 || duration === 0) { + if (!suppressEvents) { + this._callback('onStart') + } + } + } + } + pt = this._firstPT + while (pt) { + if (pt.f) { + pt.t[pt.p](pt.c * this.ratio + pt.s) + } else { + pt.t[pt.p] = pt.c * this.ratio + pt.s + } + pt = pt._next + } + + if (this._onUpdate) { + if (time < 0) { + if (this._startAt && time !== -0.0001) { // if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. + this._startAt.render(time, suppressEvents, force) // note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete. + } + } + if (!suppressEvents) { + if (this._time !== prevTime || isComplete || force) { + this._callback('onUpdate') + } + } + } + if (callback) { + if (!this._gc || force) { // check _gc because there's a chance that kill() could be called in an onUpdate + if (time < 0 && this._startAt && !this._onUpdate && time !== -0.0001) { // -0.0001 is a special value that we use when looping back to the beginning of a repeated TimelineMax, in which case we shouldn't render the _startAt values. + this._startAt.render(time, suppressEvents, force) + } + if (isComplete) { + if (this._timeline.autoRemoveChildren) { + this._enabled(false, false) + } + this._active = false + } + if (!suppressEvents && this.vars[callback]) { + this._callback(callback) + } + if (duration === 0 && this._rawPrevTime === _tinyNum && rawPrevTime !== _tinyNum) { // the onComplete or onReverseComplete could trigger movement of the playhead and for zero-duration tweens (which must discern direction) that land directly back on their start time, we don't want to fire again on the next render. Think of several addPause()'s in a timeline that forces the playhead to a certain spot, but what if it's already paused and another tween is tweening the "time" of the timeline? Each time it moves [forward] past that spot, it would move back, and since suppressEvents is true, it'd reset _rawPrevTime to _tinyNum so that when it begins again, the callback would fire (so ultimately it could bounce back and forth during that tween). Again, this is a very uncommon scenario, but possible nonetheless. + this._rawPrevTime = 0 + } + } + } + } + + p._kill = function (vars, target, overwritingTween) { + if (vars === 'all') { + vars = null + } + if (vars == null) { + if (target == null || target === this.target) { + this._lazy = false + return this._enabled(false, false) + } + } + target = (typeof (target) !== 'string') ? (target || this._targets || this.target) : TweenLite.selector(target) || target + var simultaneousOverwrite = (overwritingTween && this._time && overwritingTween._startTime === this._startTime && this._timeline === overwritingTween._timeline), + i, overwrittenProps, p, pt, propLookup, changed, killProps, record, killed + if ((_isArray(target) || _isSelector(target)) && typeof (target[0]) !== 'number') { + i = target.length + while (--i > -1) { + if (this._kill(vars, target[i], overwritingTween)) { + changed = true + } + } + } else { + if (this._targets) { + i = this._targets.length + while (--i > -1) { + if (target === this._targets[i]) { + propLookup = this._propLookup[i] || {} + this._overwrittenProps = this._overwrittenProps || [] + overwrittenProps = this._overwrittenProps[i] = vars ? this._overwrittenProps[i] || {} : 'all' + break + } + } + } else if (target !== this.target) { + return false + } else { + propLookup = this._propLookup + overwrittenProps = this._overwrittenProps = vars ? this._overwrittenProps || {} : 'all' + } + + if (propLookup) { + killProps = vars || propLookup + record = (vars !== overwrittenProps && overwrittenProps !== 'all' && vars !== propLookup && (typeof (vars) !== 'object' || !vars._tempKill)) // _tempKill is a super-secret way to delete a particular tweening property but NOT have it remembered as an official overwritten property (like in BezierPlugin) + if (overwritingTween && (TweenLite.onOverwrite || this.vars.onOverwrite)) { + for (p in killProps) { + if (propLookup[p]) { + if (!killed) { + killed = [] + } + killed.push(p) + } + } + if ((killed || !vars) && !_onOverwrite(this, overwritingTween, target, killed)) { // if the onOverwrite returned false, that means the user wants to override the overwriting (cancel it). + return false + } + } + + for (p in killProps) { + if ((pt = propLookup[p])) { + if (simultaneousOverwrite) { // if another tween overwrites this one and they both start at exactly the same time, yet this tween has already rendered once (for example, at 0.001) because it's first in the queue, we should revert the values to where they were at 0 so that the starting values aren't contaminated on the overwriting tween. + if (pt.f) { + pt.t[pt.p](pt.s) + } else { + pt.t[pt.p] = pt.s + } + changed = true + } + if (pt.pg && pt.t._kill(killProps)) { + changed = true // some plugins need to be notified so they can perform cleanup tasks first + } + if (!pt.pg || pt.t._overwriteProps.length === 0) { + if (pt._prev) { + pt._prev._next = pt._next + } else if (pt === this._firstPT) { + this._firstPT = pt._next + } + if (pt._next) { + pt._next._prev = pt._prev + } + pt._next = pt._prev = null + } + delete propLookup[p] + } + if (record) { + overwrittenProps[p] = 1 + } + } + if (!this._firstPT && this._initted) { // if all tweening properties are killed, kill the tween. Without this line, if there's a tween with multiple targets and then you killTweensOf() each target individually, the tween would technically still remain active and fire its onComplete even though there aren't any more properties tweening. + this._enabled(false, false) + } + } + } + return changed + } + + p.invalidate = function () { + if (this._notifyPluginsOfEnabled) { + TweenLite._onPluginEvent('_onDisable', this) + } + this._firstPT = this._overwrittenProps = this._startAt = this._onUpdate = null + this._notifyPluginsOfEnabled = this._active = this._lazy = false + this._propLookup = (this._targets) ? {} : [] + Animation.prototype.invalidate.call(this) + if (this.vars.immediateRender) { + this._time = -_tinyNum // forces a render without having to set the render() "force" parameter to true because we want to allow lazying by default (using the "force" parameter always forces an immediate full render) + this.render(Math.min(0, -this._delay)) // in case delay is negative. + } + return this + } + + p._enabled = function (enabled, ignoreTimeline) { + if (!_tickerActive) { + _ticker.wake() + } + if (enabled && this._gc) { + var targets = this._targets, + i + if (targets) { + i = targets.length + while (--i > -1) { + this._siblings[i] = _register(targets[i], this, true) + } + } else { + this._siblings = _register(this.target, this, true) + } + } + Animation.prototype._enabled.call(this, enabled, ignoreTimeline) + if (this._notifyPluginsOfEnabled) { + if (this._firstPT) { + return TweenLite._onPluginEvent((enabled ? '_onEnable' : '_onDisable'), this) + } + } + return false + } + + // ----TweenLite static methods ----------------------------------------------------- + + TweenLite.to = function (target, duration, vars) { + return new TweenLite(target, duration, vars) + } + + TweenLite.from = function (target, duration, vars) { + vars.runBackwards = true + vars.immediateRender = (vars.immediateRender != false) + return new TweenLite(target, duration, vars) + } + + TweenLite.fromTo = function (target, duration, fromVars, toVars) { + toVars.startAt = fromVars + toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false) + return new TweenLite(target, duration, toVars) + } + + TweenLite.delayedCall = function (delay, callback, params, scope, useFrames) { + return new TweenLite(callback, 0, {delay: delay, onComplete: callback, onCompleteParams: params, callbackScope: scope, onReverseComplete: callback, onReverseCompleteParams: params, immediateRender: false, lazy: false, useFrames: useFrames, overwrite: 0}) + } + + TweenLite.set = function (target, vars) { + return new TweenLite(target, 0, vars) + } + + TweenLite.getTweensOf = function (target, onlyActive) { + if (target == null) { return [] } + target = (typeof (target) !== 'string') ? target : TweenLite.selector(target) || target + var i, a, j, t + if ((_isArray(target) || _isSelector(target)) && typeof (target[0]) !== 'number') { + i = target.length + a = [] + while (--i > -1) { + a = a.concat(TweenLite.getTweensOf(target[i], onlyActive)) + } + i = a.length + // now get rid of any duplicates (tweens of arrays of objects could cause duplicates) + while (--i > -1) { + t = a[i] + j = i + while (--j > -1) { + if (t === a[j]) { + a.splice(i, 1) + } + } + } + } else if (target._gsTweenID) { + a = _register(target).concat() + i = a.length + while (--i > -1) { + if (a[i]._gc || (onlyActive && !a[i].isActive())) { + a.splice(i, 1) + } + } + } + return a || [] + } + + TweenLite.killTweensOf = TweenLite.killDelayedCallsTo = function (target, onlyActive, vars) { + if (typeof (onlyActive) === 'object') { + vars = onlyActive // for backwards compatibility (before "onlyActive" parameter was inserted) + onlyActive = false + } + var a = TweenLite.getTweensOf(target, onlyActive), + i = a.length + while (--i > -1) { + a[i]._kill(vars, target) + } + } + + /* * ---------------------------------------------------------------- * TweenPlugin (could easily be split out as a separate file/class, but included for ease of use (so that people don't need to include another script call before loading plugins which is easy to forget) * ---------------------------------------------------------------- */ - var TweenPlugin = _class("plugins.TweenPlugin", function(props, priority) { - this._overwriteProps = (props || "").split(","); - this._propName = this._overwriteProps[0]; - this._priority = priority || 0; - this._super = TweenPlugin.prototype; - }, true); - - p = TweenPlugin.prototype; - TweenPlugin.version = "1.19.0"; - TweenPlugin.API = 2; - p._firstPT = null; - p._addTween = _addPropTween; - p.setRatio = _setRatio; - - p._kill = function(lookup) { - var a = this._overwriteProps, - pt = this._firstPT, - i; - if (lookup[this._propName] != null) { - this._overwriteProps = []; - } else { - i = a.length; - while (--i > -1) { - if (lookup[a[i]] != null) { - a.splice(i, 1); - } - } - } - while (pt) { - if (lookup[pt.n] != null) { - if (pt._next) { - pt._next._prev = pt._prev; - } - if (pt._prev) { - pt._prev._next = pt._next; - pt._prev = null; - } else if (this._firstPT === pt) { - this._firstPT = pt._next; - } - } - pt = pt._next; - } - return false; - }; - - p._mod = p._roundProps = function(lookup) { - var pt = this._firstPT, - val; - while (pt) { - val = lookup[this._propName] || (pt.n != null && lookup[ pt.n.split(this._propName + "_").join("") ]); - if (val && typeof(val) === "function") { //some properties that are very plugin-specific add a prefix named after the _propName plus an underscore, so we need to ignore that extra stuff here. - if (pt.f === 2) { - pt.t._applyPT.m = val; - } else { - pt.m = val; - } - } - pt = pt._next; - } - }; - - TweenLite._onPluginEvent = function(type, tween) { - var pt = tween._firstPT, - changed, pt2, first, last, next; - if (type === "_onInitAllProps") { - //sorts the PropTween linked list in order of priority because some plugins need to render earlier/later than others, like MotionBlurPlugin applies its effects after all x/y/alpha tweens have rendered on each frame. - while (pt) { - next = pt._next; - pt2 = first; - while (pt2 && pt2.pr > pt.pr) { - pt2 = pt2._next; - } - if ((pt._prev = pt2 ? pt2._prev : last)) { - pt._prev._next = pt; - } else { - first = pt; - } - if ((pt._next = pt2)) { - pt2._prev = pt; - } else { - last = pt; - } - pt = next; - } - pt = tween._firstPT = first; - } - while (pt) { - if (pt.pg) if (typeof(pt.t[type]) === "function") if (pt.t[type]()) { - changed = true; - } - pt = pt._next; - } - return changed; - }; - - TweenPlugin.activate = function(plugins) { - var i = plugins.length; - while (--i > -1) { - if (plugins[i].API === TweenPlugin.API) { - _plugins[(new plugins[i]())._propName] = plugins[i]; - } - } - return true; - }; - - //provides a more concise way to define plugins that have no dependencies besides TweenPlugin and TweenLite, wrapping common boilerplate stuff into one function (added in 1.9.0). You don't NEED to use this to define a plugin - the old way still works and can be useful in certain (rare) situations. - _gsDefine.plugin = function(config) { - if (!config || !config.propName || !config.init || !config.API) { throw "illegal plugin definition."; } - var propName = config.propName, - priority = config.priority || 0, - overwriteProps = config.overwriteProps, - map = {init:"_onInitTween", set:"setRatio", kill:"_kill", round:"_mod", mod:"_mod", initAll:"_onInitAllProps"}, - Plugin = _class("plugins." + propName.charAt(0).toUpperCase() + propName.substr(1) + "Plugin", - function() { - TweenPlugin.call(this, propName, priority); - this._overwriteProps = overwriteProps || []; - }, (config.global === true)), - p = Plugin.prototype = new TweenPlugin(propName), - prop; - p.constructor = Plugin; - Plugin.API = config.API; - for (prop in map) { - if (typeof(config[prop]) === "function") { - p[map[prop]] = config[prop]; - } - } - Plugin.version = config.version; - TweenPlugin.activate([Plugin]); - return Plugin; - }; - - - //now run through all the dependencies discovered and if any are missing, log that to the console as a warning. This is why it's best to have TweenLite load last - it can check all the dependencies for you. - a = window._gsQueue; - if (a) { - for (i = 0; i < a.length; i++) { - a[i](); - } - for (p in _defLookup) { - if (!_defLookup[p].func) { - window.console.log("GSAP encountered missing dependency: " + p); - } - } - } - - _tickerActive = false; //ensures that the first official animation forces a ticker.tick() to update the time when it is instantiated - -})((typeof(module) !== "undefined" && module.exports && typeof(global) !== "undefined") ? global : this || window, "TweenMax"); \ No newline at end of file + var TweenPlugin = _class('plugins.TweenPlugin', function (props, priority) { + this._overwriteProps = (props || '').split(',') + this._propName = this._overwriteProps[0] + this._priority = priority || 0 + this._super = TweenPlugin.prototype + }, true) + + p = TweenPlugin.prototype + TweenPlugin.version = '1.19.0' + TweenPlugin.API = 2 + p._firstPT = null + p._addTween = _addPropTween + p.setRatio = _setRatio + + p._kill = function (lookup) { + var a = this._overwriteProps, + pt = this._firstPT, + i + if (lookup[this._propName] != null) { + this._overwriteProps = [] + } else { + i = a.length + while (--i > -1) { + if (lookup[a[i]] != null) { + a.splice(i, 1) + } + } + } + while (pt) { + if (lookup[pt.n] != null) { + if (pt._next) { + pt._next._prev = pt._prev + } + if (pt._prev) { + pt._prev._next = pt._next + pt._prev = null + } else if (this._firstPT === pt) { + this._firstPT = pt._next + } + } + pt = pt._next + } + return false + } + + p._mod = p._roundProps = function (lookup) { + var pt = this._firstPT, + val + while (pt) { + val = lookup[this._propName] || (pt.n != null && lookup[ pt.n.split(this._propName + '_').join('') ]) + if (val && typeof (val) === 'function') { // some properties that are very plugin-specific add a prefix named after the _propName plus an underscore, so we need to ignore that extra stuff here. + if (pt.f === 2) { + pt.t._applyPT.m = val + } else { + pt.m = val + } + } + pt = pt._next + } + } + + TweenLite._onPluginEvent = function (type, tween) { + var pt = tween._firstPT, + changed, pt2, first, last, next + if (type === '_onInitAllProps') { + // sorts the PropTween linked list in order of priority because some plugins need to render earlier/later than others, like MotionBlurPlugin applies its effects after all x/y/alpha tweens have rendered on each frame. + while (pt) { + next = pt._next + pt2 = first + while (pt2 && pt2.pr > pt.pr) { + pt2 = pt2._next + } + if ((pt._prev = pt2 ? pt2._prev : last)) { + pt._prev._next = pt + } else { + first = pt + } + if ((pt._next = pt2)) { + pt2._prev = pt + } else { + last = pt + } + pt = next + } + pt = tween._firstPT = first + } + while (pt) { + if (pt.pg) { + if (typeof (pt.t[type]) === 'function') { + if (pt.t[type]()) { + changed = true + } + } + } + pt = pt._next + } + return changed + } + + TweenPlugin.activate = function (plugins) { + var i = plugins.length + while (--i > -1) { + if (plugins[i].API === TweenPlugin.API) { + _plugins[(new plugins[i]())._propName] = plugins[i] + } + } + return true + } + + // provides a more concise way to define plugins that have no dependencies besides TweenPlugin and TweenLite, wrapping common boilerplate stuff into one function (added in 1.9.0). You don't NEED to use this to define a plugin - the old way still works and can be useful in certain (rare) situations. + _gsDefine.plugin = function (config) { + if (!config || !config.propName || !config.init || !config.API) { throw 'illegal plugin definition.' } + var propName = config.propName, + priority = config.priority || 0, + overwriteProps = config.overwriteProps, + map = {init: '_onInitTween', set: 'setRatio', kill: '_kill', round: '_mod', mod: '_mod', initAll: '_onInitAllProps'}, + Plugin = _class('plugins.' + propName.charAt(0).toUpperCase() + propName.substr(1) + 'Plugin', + function () { + TweenPlugin.call(this, propName, priority) + this._overwriteProps = overwriteProps || [] + }, (config.global === true)), + p = Plugin.prototype = new TweenPlugin(propName), + prop + p.constructor = Plugin + Plugin.API = config.API + for (prop in map) { + if (typeof (config[prop]) === 'function') { + p[map[prop]] = config[prop] + } + } + Plugin.version = config.version + TweenPlugin.activate([Plugin]) + return Plugin + } + + // now run through all the dependencies discovered and if any are missing, log that to the console as a warning. This is why it's best to have TweenLite load last - it can check all the dependencies for you. + a = window._gsQueue + if (a) { + for (i = 0; i < a.length; i++) { + a[i]() + } + for (p in _defLookup) { + if (!_defLookup[p].func) { + window.console.log('GSAP encountered missing dependency: ' + p) + } + } + } + + _tickerActive = false // ensures that the first official animation forces a ticker.tick() to update the time when it is instantiated +})((typeof (module) !== 'undefined' && module.exports && typeof (global) !== 'undefined') ? global : this || window, 'TweenMax') diff --git a/performance/kute.js b/performance/kute.js index a381b4a..1be25d9 100644 --- a/performance/kute.js +++ b/performance/kute.js @@ -2,16 +2,16 @@ * by dnp_theme * Licensed under MIT-License */ -(function (root,factory) { +(function (root, factory) { if (typeof define === 'function' && define.amd) { - define([], factory); // AMD. Register as an anonymous module. - } else if (typeof exports == 'object') { - module.exports = factory(); // Node, not strict CommonJS + define([], factory) // AMD. Register as an anonymous module. + } else if (typeof exports === 'object') { + module.exports = factory() // Node, not strict CommonJS } else { - root.KUTE = factory(); + root.KUTE = factory() } }(this, function () { - "use strict"; + 'use strict' // set a custom scope for KUTE.js var g = typeof global !== 'undefined' ? global : window, time = g.performance, @@ -48,33 +48,32 @@ dataTweening = 'data-tweening', getElementsByTagName = 'getElementsByTagName', addEventListener = 'addEventListener', - removeEventListener = 'removeEventListener'; + removeEventListener = 'removeEventListener' - - //supported properties + // supported properties var colorProps = ['color', 'backgroundColor'], // 'hex', 'rgb', 'rgba' '#fff' 'rgb(0,0,0)' / 'rgba(0,0,0,0)' 'red' (IE9+) - boxModelProps = ['top', 'left', 'width', 'height'], - transformFunctions = ['translate3d', 'translateX', 'translateY', 'translateZ', 'rotate', 'translate', 'rotateX', 'rotateY', 'rotateZ', 'skewX', 'skewY', 'scale'], - scrollProp = ['scroll'], // has no default value, it's calculated on tween start - opacityProp = ['opacity'], // opacity - coreProps = colorProps.concat( opacityProp, boxModelProps, transformFunctions), - defaultPropsValues = {}; - - //populate default values object - for ( var propertyIndex=0, allCorePropLength = coreProps[length], coreProp; propertyIndex < allCorePropLength; propertyIndex++ ){ - coreProp = coreProps[propertyIndex]; - if (colorProps[indexOf](coreProp) !== -1){ - defaultPropsValues[coreProp] = 'rgba(0,0,0,0)'; // defaultPropsValues[coreProp] = {r:0,g:0,b:0,a:1}; - } else if ( boxModelProps[indexOf](coreProp) !== -1 ) { - defaultPropsValues[coreProp] = 0; - } else if ( coreProp === 'translate3d' ){ // px - defaultPropsValues[coreProp] = [0,0,0]; - } else if ( coreProp === 'translate' ){ // px - defaultPropsValues[coreProp] = [0,0]; - } else if ( coreProp === 'rotate' || /X|Y|Z/.test(coreProp) ){ // deg - defaultPropsValues[coreProp] = 0; - } else if ( coreProp === 'scale' || coreProp === 'opacity' ){ // unitless - defaultPropsValues[coreProp] = 1; + boxModelProps = ['top', 'left', 'width', 'height'], + transformFunctions = ['translate3d', 'translateX', 'translateY', 'translateZ', 'rotate', 'translate', 'rotateX', 'rotateY', 'rotateZ', 'skewX', 'skewY', 'scale'], + scrollProp = ['scroll'], // has no default value, it's calculated on tween start + opacityProp = ['opacity'], // opacity + coreProps = colorProps.concat(opacityProp, boxModelProps, transformFunctions), + defaultPropsValues = {} + + // populate default values object + for (var propertyIndex = 0, allCorePropLength = coreProps[length], coreProp; propertyIndex < allCorePropLength; propertyIndex++) { + coreProp = coreProps[propertyIndex] + if (colorProps[indexOf](coreProp) !== -1) { + defaultPropsValues[coreProp] = 'rgba(0,0,0,0)' // defaultPropsValues[coreProp] = {r:0,g:0,b:0,a:1}; + } else if (boxModelProps[indexOf](coreProp) !== -1) { + defaultPropsValues[coreProp] = 0 + } else if (coreProp === 'translate3d') { // px + defaultPropsValues[coreProp] = [0, 0, 0] + } else if (coreProp === 'translate') { // px + defaultPropsValues[coreProp] = [0, 0] + } else if (coreProp === 'rotate' || /X|Y|Z/.test(coreProp)) { // deg + defaultPropsValues[coreProp] = 0 + } else if (coreProp === 'scale' || coreProp === 'opacity') { // unitless + defaultPropsValues[coreProp] = 1 } } @@ -87,119 +86,119 @@ repeatDelay: 0, yoyo: false, easing: 'linear', - keepHex: false, + keepHex: false }, // tools / utils - getPrefix = function() { //returns browser prefix - var prefixes = ['Moz', 'moz', 'Webkit', 'webkit', 'O', 'o', 'Ms', 'ms'], thePrefix; - for (var pIndex = 0, pfl = prefixes[length]; pIndex < pfl; pIndex++) { - if (prefixes[pIndex]+'Transform' in body[style]) { thePrefix = prefixes[pIndex]; break; } + getPrefix = function () { // returns browser prefix + var prefixes = ['Moz', 'moz', 'Webkit', 'webkit', 'O', 'o', 'Ms', 'ms'], thePrefix + for (var pIndex = 0, pfl = prefixes[length]; pIndex < pfl; pIndex++) { + if (prefixes[pIndex] + 'Transform' in body[style]) { thePrefix = prefixes[pIndex]; break } } - return thePrefix; + return thePrefix }, - property = function(propertyToPrefix){ // returns prefixed property | property - var prefixRequired = (!(propertyToPrefix in body[style])) ? true : false, prefix = getPrefix(); // is prefix required for property | prefix - return prefixRequired ? prefix + (propertyToPrefix.charAt(0).toUpperCase() + propertyToPrefix.slice(1)) : propertyToPrefix; + property = function (propertyToPrefix) { // returns prefixed property | property + var prefixRequired = (!(propertyToPrefix in body[style])), prefix = getPrefix() // is prefix required for property | prefix + return prefixRequired ? prefix + (propertyToPrefix.charAt(0).toUpperCase() + propertyToPrefix.slice(1)) : propertyToPrefix }, - selector = function(el,multi){ // a public selector utility - var requestedElem; - if (multi){ - requestedElem = el instanceof Object || typeof el === 'object' ? el : document.querySelectorAll(el); + selector = function (el, multi) { // a public selector utility + var requestedElem + if (multi) { + requestedElem = el instanceof Object || typeof el === 'object' ? el : document.querySelectorAll(el) } else { - requestedElem = typeof el === 'object' ? el : document.querySelector(el); + requestedElem = typeof el === 'object' ? el : document.querySelector(el) } - if (requestedElem === null && el !== 'window') throw new TypeError('Element not found or incorrect selector: '+el); - return requestedElem; - }, - radToDeg = function(a) { return a*180/Math.PI; }, - trueDimension = function (dimValue,isAngle) { //true dimension returns { v = value, u = unit } - var intValue = parseInt(dimValue) || 0, mUnits = ['px','%','deg','rad','em','rem','vh','vw'], theUnit; - for (var mIndex=0; mIndex>0 || 0) : (a[c] && b[c]) ? (number(a[c],b[c],v) * 100 >> 0 )/100 : null; } - return toHex ? rgbToHex( _c.r, _c.g, _c.b ) : !_c.a ? rgb + _c.r + cm + _c.g + cm + _c.b + ep : rgba + _c.r + cm + _c.g + cm + _c.b + cm + _c.a + ep; + color = interpolate.color = function (a, b, v, toHex) { // rgba1, rgba2, progress, convertToHex(true/false) + var _c = {}, c, ep = ')', cm = ',', rgb = 'rgb(', rgba = 'rgba(' + for (c in b) { _c[c] = c !== 'a' ? (number(a[c], b[c], v) >> 0 || 0) : (a[c] && b[c]) ? (number(a[c], b[c], v) * 100 >> 0) / 100 : null } + return toHex ? rgbToHex(_c.r, _c.g, _c.b) : !_c.a ? rgb + _c.r + cm + _c.g + cm + _c.b + ep : rgba + _c.r + cm + _c.g + cm + _c.b + cm + _c.a + ep }, - translate = interpolate.translate = isMobile ? function (a,b,u,v){ - var translation = {}; - for (var ax in b){ - translation[ax] = ( a[ax]===b[ax] ? b[ax] : (a[ax] + ( b[ax] - a[ax] ) * v ) >> 0 ) + u; + translate = interpolate.translate = isMobile ? function (a, b, u, v) { + var translation = {} + for (var ax in b) { + translation[ax] = (a[ax] === b[ax] ? b[ax] : (a[ax] + (b[ax] - a[ax]) * v) >> 0) + u } - return translation.x||translation.y ? 'translate(' + translation.x + ',' + translation.y + ')' : - 'translate3d(' + translation.translateX + ',' + translation.translateY + ',' + translation.translateZ + ')'; - } : function (a,b,u,v){ - var translation = {}; - for (var ax in b){ - translation[ax] = ( a[ax]===b[ax] ? b[ax] : ( (a[ax] + ( b[ax] - a[ax] ) * v ) * 100 >> 0 ) / 100 ) + u; + return translation.x || translation.y ? 'translate(' + translation.x + ',' + translation.y + ')' + : 'translate3d(' + translation.translateX + ',' + translation.translateY + ',' + translation.translateZ + ')' + } : function (a, b, u, v) { + var translation = {} + for (var ax in b) { + translation[ax] = (a[ax] === b[ax] ? b[ax] : ((a[ax] + (b[ax] - a[ax]) * v) * 100 >> 0) / 100) + u } - return translation.x||translation.y ? 'translate(' + translation.x + ',' + translation.y + ')' : - 'translate3d(' + translation.translateX + ',' + translation.translateY + ',' + translation.translateZ + ')'; - }, - rotate = interpolate.rotate = function (a,b,u,v){ - var rotation = {}; - for ( var rx in b ){ - rotation[rx] = rx === 'z' ? ('rotate('+ (((a[rx] + (b[rx] - a[rx]) * v) * 100 >> 0 ) / 100) + u + ')') - : (rx + '(' + (((a[rx] + (b[rx] - a[rx]) * v) * 100 >> 0 ) / 100) + u + ')'); + return translation.x || translation.y ? 'translate(' + translation.x + ',' + translation.y + ')' + : 'translate3d(' + translation.translateX + ',' + translation.translateY + ',' + translation.translateZ + ')' + }, + rotate = interpolate.rotate = function (a, b, u, v) { + var rotation = {} + for (var rx in b) { + rotation[rx] = rx === 'z' ? ('rotate(' + (((a[rx] + (b[rx] - a[rx]) * v) * 100 >> 0) / 100) + u + ')') + : (rx + '(' + (((a[rx] + (b[rx] - a[rx]) * v) * 100 >> 0) / 100) + u + ')') } - return rotation.z ? rotation.z : (rotation.rotateX||'') + (rotation.rotateY||'') + (rotation.rotateZ||''); + return rotation.z ? rotation.z : (rotation.rotateX || '') + (rotation.rotateY || '') + (rotation.rotateZ || '') }, - skew = interpolate.skew = function (a,b,u,v){ - var skewProp = {}; - for ( var sx in b ){ - skewProp[sx] = sx + '(' + (((a[sx] + (b[sx] - a[sx]) * v) * 10 >> 0) / 10) + u + ')'; + skew = interpolate.skew = function (a, b, u, v) { + var skewProp = {} + for (var sx in b) { + skewProp[sx] = sx + '(' + (((a[sx] + (b[sx] - a[sx]) * v) * 10 >> 0) / 10) + u + ')' } - return (skewProp.skewX||'') + (skewProp.skewY||''); + return (skewProp.skewX || '') + (skewProp.skewY || '') }, - scale = interpolate.scale = function(a,b,v){ - return 'scale(' + (((a + (b - a) * v) * 1000 >> 0 ) / 1000) + ')'; + scale = interpolate.scale = function (a, b, v) { + return 'scale(' + (((a + (b - a) * v) * 1000 >> 0) / 1000) + ')' }, // KUTE.js DOM update functions DOM = {}, - ticker = function(t) { - var i = 0; - while ( i < tweens[length] ) { - if ( update.call(tweens[i],t) ) { - i++; + ticker = function (t) { + var i = 0 + while (i < tweens[length]) { + if (update.call(tweens[i], t)) { + i++ } else { - tweens.splice(i, 1); + tweens.splice(i, 1) } } - tick = _requestAnimationFrame(ticker); + tick = _requestAnimationFrame(ticker) }, - update = function(t) { - t = t || time.now(); - if ( t < this._startTime && this[playing] ) { return true; } + update = function (t) { + t = t || time.now() + if (t < this._startTime && this[playing]) { return true } - var elapsed = Math.min(( t - this._startTime ) / this[options][duration], 1), progress = this[options][easing](elapsed); // calculate progress + var elapsed = Math.min((t - this._startTime) / this[options][duration], 1), progress = this[options][easing](elapsed) // calculate progress - for (var tweenProp in this[valuesEnd]){ // render the DOM update - DOM[tweenProp](this[element],tweenProp,this[valuesStart][tweenProp],this[valuesEnd][tweenProp],progress,this[options]); + for (var tweenProp in this[valuesEnd]) { // render the DOM update + DOM[tweenProp](this[element], tweenProp, this[valuesStart][tweenProp], this[valuesEnd][tweenProp], progress, this[options]) } - if (this[options].update) { this[options].update.call(); } // fire the updateCallback + if (this[options].update) { this[options].update.call() } // fire the updateCallback if (elapsed === 1) { if (this[options][repeat] > 0) { - if ( isFinite(this[options][repeat] ) ) { this[options][repeat]--; } + if (isFinite(this[options][repeat])) { this[options][repeat]-- } if (this[options][yoyo]) { // handle yoyo - this.reversed = !this.reversed; - reverse.call(this); + this.reversed = !this.reversed + reverse.call(this) } - this._startTime = (this[options][yoyo] && !this.reversed) ? t + this[options][repeatDelay] : t; //set the right time for delay - return true; + this._startTime = (this[options][yoyo] && !this.reversed) ? t + this[options][repeatDelay] : t // set the right time for delay + return true } else { + if (this[options].complete) { this[options].complete.call() } - if (this[options].complete) { this[options].complete.call(); } - - scrollOut.call(this); // unbind preventing scroll when scroll tween finished + scrollOut.call(this) // unbind preventing scroll when scroll tween finished for (var i = 0, ctl = this[options][chain][length]; i < ctl; i++) { // start animating chained tweens - this[options][chain][i].start(); + this[options][chain][i].start() } - //stop ticking when finished - close.call(this); + // stop ticking when finished + close.call(this) } - return false; + return false } - return true; + return true }, // applies the transform origin and perspective perspective = function () { - var el = this[element], ops = this[options]; - if ( ops.perspective !== undefined && transformProperty in this[valuesEnd] ) { // element perspective - this[valuesStart][transformProperty]['perspective'] = this[valuesEnd][transformProperty]['perspective']; + var el = this[element], ops = this[options] + if (ops.perspective !== undefined && transformProperty in this[valuesEnd]) { // element perspective + this[valuesStart][transformProperty]['perspective'] = this[valuesEnd][transformProperty]['perspective'] } // element transform origin / we filter it out for svgTransform to fix the Firefox transformOrigin bug https://bugzilla.mozilla.org/show_bug.cgi?id=923193 - if ( ops.transformOrigin !== undefined && (!('svgTransform' in this[valuesEnd])) ) { el[style][property('transformOrigin')] = ops.transformOrigin; } // set transformOrigin for CSS3 transforms only - if ( ops.perspectiveOrigin !== undefined ) { el[style][property('perspectiveOrigin')] = ops.perspectiveOrigin; } // element perspective origin - if ( ops.parentPerspective !== undefined ) { el.parentNode[style][property('perspective')] = ops.parentPerspective + 'px'; } // parent perspective - if ( ops.parentPerspectiveOrigin !== undefined ) { el.parentNode[style][property('perspectiveOrigin')] = ops.parentPerspectiveOrigin; } // parent perspective origin + if (ops.transformOrigin !== undefined && (!('svgTransform' in this[valuesEnd]))) { el[style][property('transformOrigin')] = ops.transformOrigin } // set transformOrigin for CSS3 transforms only + if (ops.perspectiveOrigin !== undefined) { el[style][property('perspectiveOrigin')] = ops.perspectiveOrigin } // element perspective origin + if (ops.parentPerspective !== undefined) { el.parentNode[style][property('perspective')] = ops.parentPerspective + 'px' } // parent perspective + if (ops.parentPerspectiveOrigin !== undefined) { el.parentNode[style][property('perspectiveOrigin')] = ops.parentPerspectiveOrigin } // parent perspective origin }, // plugin connector objects @@ -335,139 +332,138 @@ // parse properties object // string parsing and property specific value processing parseProperty = { // we already start working on core supported properties - boxModel : function(tweenProp,inputValue){ - if (!(tweenProp in DOM)){ - DOM[tweenProp] = function(elem,tweenProp,a,b,v){ - elem[style][tweenProp] = ( v > 0.99 || v < 0.01 ? ((number(a,b,v)*10)>>0)/10 : (number(a,b,v) ) >> 0 ) + 'px'; + boxModel: function (tweenProp, inputValue) { + if (!(tweenProp in DOM)) { + DOM[tweenProp] = function (elem, tweenProp, a, b, v) { + elem[style][tweenProp] = (v > 0.99 || v < 0.01 ? ((number(a, b, v) * 10) >> 0) / 10 : (number(a, b, v)) >> 0) + 'px' } } - var boxValue = trueDimension(inputValue), offsetProp = tweenProp === 'height' ? offsetHeight : offsetWidth; - return boxValue.u === '%' ? boxValue.v * this[element][offsetProp] / 100 : boxValue.v; + var boxValue = trueDimension(inputValue), offsetProp = tweenProp === 'height' ? offsetHeight : offsetWidth + return boxValue.u === '%' ? boxValue.v * this[element][offsetProp] / 100 : boxValue.v }, - transform : function(tweenProp,inputValue) { + transform: function (tweenProp, inputValue) { if (!(transformProperty in DOM)) { - DOM[transformProperty] = function(elem,tweenProp,a,b,v,o){ - elem[style][tweenProp] = (a.perspective||'') - + ('translate' in a ? translate(a.translate,b.translate,'px',v):'') - + ('rotate' in a ? rotate(a.rotate,b.rotate,'deg',v):'') - + ('skew' in a ? skew(a.skew,b.skew,'deg',v):'') - + ('scale' in a ? scale(a.scale,b.scale,v):''); + DOM[transformProperty] = function (elem, tweenProp, a, b, v, o) { + elem[style][tweenProp] = (a.perspective || '') + + ('translate' in a ? translate(a.translate, b.translate, 'px', v) : '') + + ('rotate' in a ? rotate(a.rotate, b.rotate, 'deg', v) : '') + + ('skew' in a ? skew(a.skew, b.skew, 'deg', v) : '') + + ('scale' in a ? scale(a.scale, b.scale, v) : '') } } // process each transform property if (/translate/.test(tweenProp)) { if (tweenProp === 'translate3d') { - var t3d = inputValue[split](','), t3d0 = trueDimension(t3d[0]), t3d1 = trueDimension(t3d[1], t3d2 = trueDimension(t3d[2])); + var t3d = inputValue[split](','), t3d0 = trueDimension(t3d[0]), t3d1 = trueDimension(t3d[1], t3d2 = trueDimension(t3d[2])) return { - translateX : t3d0.u === '%' ? (t3d0.v * this[element][offsetWidth] / 100) : t3d0.v, - translateY : t3d1.u === '%' ? (t3d1.v * this[element][offsetHeight] / 100) : t3d1.v, - translateZ : t3d2.u === '%' ? (t3d2.v * (this[element][offsetHeight] + this[element][offsetWidth]) / 200) : t3d2.v // to be changed with something like element and/or parent perspective - }; + translateX: t3d0.u === '%' ? (t3d0.v * this[element][offsetWidth] / 100) : t3d0.v, + translateY: t3d1.u === '%' ? (t3d1.v * this[element][offsetHeight] / 100) : t3d1.v, + translateZ: t3d2.u === '%' ? (t3d2.v * (this[element][offsetHeight] + this[element][offsetWidth]) / 200) : t3d2.v // to be changed with something like element and/or parent perspective + } } else if (/^translate(?:[XYZ])$/.test(tweenProp)) { - var t1d = trueDimension(inputValue), percentOffset = /X/.test(tweenProp) ? this[element][offsetWidth] / 100 : /Y/.test(tweenProp) ? this[element][offsetHeight] / 100 : (this[element][offsetWidth]+this[element][offsetHeight]) / 200; + var t1d = trueDimension(inputValue), percentOffset = /X/.test(tweenProp) ? this[element][offsetWidth] / 100 : /Y/.test(tweenProp) ? this[element][offsetHeight] / 100 : (this[element][offsetWidth] + this[element][offsetHeight]) / 200 - return t1d.u === '%' ? (t1d.v * percentOffset) : t1d.v; + return t1d.u === '%' ? (t1d.v * percentOffset) : t1d.v } else if (tweenProp === 'translate') { var tv = typeof inputValue === 'string' ? inputValue[split](',') : inputValue, t2d = {}, t2dv, - t2d0 = trueDimension(tv[0]), t2d1 = tv[length] ? trueDimension(tv[1]) : {v: 0, u: 'px'}; + t2d0 = trueDimension(tv[0]), t2d1 = tv[length] ? trueDimension(tv[1]) : {v: 0, u: 'px'} if (tv instanceof Array) { t2d.x = t2d0.u === '%' ? (t2d0.v * this[element][offsetWidth] / 100) : t2d0.v, t2d.y = t2d1.u === '%' ? (t2d1.v * this[element][offsetHeight] / 100) : t2d1.v } else { - t2dv = trueDimension(tv); + t2dv = trueDimension(tv) t2d.x = t2dv.u === '%' ? (t2dv.v * this[element][offsetWidth] / 100) : t2dv.v, t2d.y = 0 } - return t2d; + return t2d } } else if (/rotate|skew/.test(tweenProp)) { if (/^rotate(?:[XYZ])$|skew(?:[XY])$/.test(tweenProp)) { - var r3d = trueDimension(inputValue,true); - return r3d.u === 'rad' ? radToDeg(r3d.v) : r3d.v; + var r3d = trueDimension(inputValue, true) + return r3d.u === 'rad' ? radToDeg(r3d.v) : r3d.v } else if (tweenProp === 'rotate') { - var r2d = {}, r2dv = trueDimension(inputValue,true); - r2d.z = r2dv.u === 'rad' ? radToDeg(r2dv.v) : r2dv.v; - return r2d; + var r2d = {}, r2dv = trueDimension(inputValue, true) + r2d.z = r2dv.u === 'rad' ? radToDeg(r2dv.v) : r2dv.v + return r2d } } else if (tweenProp === 'scale') { - return parseFloat(inputValue); // this must be parseFloat(v) + return parseFloat(inputValue) // this must be parseFloat(v) } }, - unitless : function(tweenProp,inputValue){ // scroll | opacity - if (/scroll/.test(tweenProp) && !(tweenProp in DOM) ){ - DOM[tweenProp] = function(elem,tweenProp,a,b,v) { - elem.scrollTop = (number(a,b,v))>>0; - }; + unitless: function (tweenProp, inputValue) { // scroll | opacity + if (/scroll/.test(tweenProp) && !(tweenProp in DOM)) { + DOM[tweenProp] = function (elem, tweenProp, a, b, v) { + elem.scrollTop = (number(a, b, v)) >> 0 + } } else if (tweenProp === 'opacity') { if (!(tweenProp in DOM)) { if (isIE8) { - DOM[tweenProp] = function(elem,tweenProp,a,b,v) { - var st = "alpha(opacity=", ep = ')'; - elem[style].filter = st + ((number(a,b,v) * 100)>>0) + ep; - }; + DOM[tweenProp] = function (elem, tweenProp, a, b, v) { + var st = 'alpha(opacity=', ep = ')' + elem[style].filter = st + ((number(a, b, v) * 100) >> 0) + ep + } } else { - DOM[tweenProp] = function(elem,tweenProp,a,b,v) { - elem[style].opacity = ((number(a,b,v) * 100)>>0)/100; - }; + DOM[tweenProp] = function (elem, tweenProp, a, b, v) { + elem[style].opacity = ((number(a, b, v) * 100) >> 0) / 100 + } } } } - return parseFloat(inputValue); + return parseFloat(inputValue) }, - colors : function(tweenProp,inputValue){ // colors + colors: function (tweenProp, inputValue) { // colors if (!(tweenProp in DOM)) { - DOM[tweenProp] = function(elem,tweenProp,a,b,v,o) { - elem[style][tweenProp] = color(a,b,v,o[keepHex]); - }; + DOM[tweenProp] = function (elem, tweenProp, a, b, v, o) { + elem[style][tweenProp] = color(a, b, v, o[keepHex]) + } } - return trueColor(inputValue); + return trueColor(inputValue) } }, // process properties for endValues and startValues or one of them - preparePropertiesObject = function(obj, fn) { // this, props object, type: start/end + preparePropertiesObject = function (obj, fn) { // this, props object, type: start/end var propertiesObject = fn === 'start' ? this[valuesStart] : this[valuesEnd], - skewObject = {}, rotateObject = {}, translateObject = {}, transformObject = {}; + skewObject = {}, rotateObject = {}, translateObject = {}, transformObject = {} for (var x in obj) { if (transformFunctions[indexOf](x) !== -1) { // transform object gets built here - var prepAxis = ['X', 'Y', 'Z']; //coordinates // translate[x] = pp(x, obj[x]); - if ( /^translate(?:[XYZ]|3d)$/.test(x) ) { //process translate3d - + var prepAxis = ['X', 'Y', 'Z'] // coordinates // translate[x] = pp(x, obj[x]); + if (/^translate(?:[XYZ]|3d)$/.test(x)) { // process translate3d for (var fnIndex = 0; fnIndex < 3; fnIndex++) { - var translateAxis = prepAxis[fnIndex]; - if ( /3d/.test(x) ) { - translateObject['translate' + translateAxis] = parseProperty.transform.call(this,'translate' + translateAxis, obj[x][fnIndex]); + var translateAxis = prepAxis[fnIndex] + if (/3d/.test(x)) { + translateObject['translate' + translateAxis] = parseProperty.transform.call(this, 'translate' + translateAxis, obj[x][fnIndex]) } else { - translateObject['translate' + translateAxis] = ('translate' + translateAxis in obj) ? parseProperty.transform.call(this,'translate' + translateAxis, obj['translate' + translateAxis]) : 0; + translateObject['translate' + translateAxis] = ('translate' + translateAxis in obj) ? parseProperty.transform.call(this, 'translate' + translateAxis, obj['translate' + translateAxis]) : 0 } } - transformObject['translate'] = translateObject; - } else if ( /^rotate(?:[XYZ])$|^skew(?:[XY])$/.test(x) ) { //process rotation/skew + transformObject['translate'] = translateObject + } else if (/^rotate(?:[XYZ])$|^skew(?:[XY])$/.test(x)) { // process rotation/skew var objectName = /rotate/.test(x) ? 'rotate' : 'skew', - rotationOrSkew = objectName === 'rotate' ? rotateObject : skewObject; + rotationOrSkew = objectName === 'rotate' ? rotateObject : skewObject for (var rIndex = 0; rIndex < 3; rIndex++) { - var oneAxis = prepAxis[rIndex]; - if ( obj[objectName+oneAxis] !== undefined && x !== 'skewZ' ) { - rotationOrSkew[objectName+oneAxis] = parseProperty.transform.call(this,objectName+oneAxis, obj[objectName+oneAxis]); + var oneAxis = prepAxis[rIndex] + if (obj[objectName + oneAxis] !== undefined && x !== 'skewZ') { + rotationOrSkew[objectName + oneAxis] = parseProperty.transform.call(this, objectName + oneAxis, obj[objectName + oneAxis]) } } - transformObject[objectName] = rotationOrSkew; - } else if ( /(rotate|translate|scale)$/.test(x) ) { //process 2d translation / rotation - transformObject[x] = parseProperty.transform.call(this, x, obj[x]); + transformObject[objectName] = rotationOrSkew + } else if (/(rotate|translate|scale)$/.test(x)) { // process 2d translation / rotation + transformObject[x] = parseProperty.transform.call(this, x, obj[x]) } - propertiesObject[transformProperty] = transformObject; + propertiesObject[transformProperty] = transformObject } else { - if ( boxModelProps[indexOf](x) !== -1 ) { - propertiesObject[x] = parseProperty.boxModel.call(this,x,obj[x]); + if (boxModelProps[indexOf](x) !== -1) { + propertiesObject[x] = parseProperty.boxModel.call(this, x, obj[x]) } else if (opacityProp[indexOf](x) !== -1 || x === 'scroll') { - propertiesObject[x] = parseProperty.unitless.call(this,x,obj[x]); + propertiesObject[x] = parseProperty.unitless.call(this, x, obj[x]) } else if (colorProps[indexOf](x) !== -1) { - propertiesObject[x] = parseProperty.colors.call(this,x,obj[x]); - } else if (x in parseProperty) { // or any other property from css/ attr / svg / third party plugins - propertiesObject[x] = parseProperty[x].call(this,x,obj[x]); + propertiesObject[x] = parseProperty.colors.call(this, x, obj[x]) + } else if (x in parseProperty) { // or any other property from css/ attr / svg / third party plugins + propertiesObject[x] = parseProperty[x].call(this, x, obj[x]) } } } @@ -475,332 +471,346 @@ reverse = function () { if (this[options][yoyo]) { for (var reverseProp in this[valuesEnd]) { - var tmp = this[valuesRepeat][reverseProp]; - this[valuesRepeat][reverseProp] = this[valuesEnd][reverseProp]; - this[valuesEnd][reverseProp] = tmp; - this[valuesStart][reverseProp] = this[valuesRepeat][reverseProp]; + var tmp = this[valuesRepeat][reverseProp] + this[valuesRepeat][reverseProp] = this[valuesEnd][reverseProp] + this[valuesEnd][reverseProp] = tmp + this[valuesStart][reverseProp] = this[valuesRepeat][reverseProp] } } }, close = function () { // when animation is finished reset repeat, yoyo&reversed tweens - if (this[repeat] > 0) { this[options][repeat] = this[repeat]; } - if (this[options][yoyo] && this.reversed===true) { reverse.call(this); this.reversed = false; } - this[playing] = false; + if (this[repeat] > 0) { this[options][repeat] = this[repeat] } + if (this[options][yoyo] && this.reversed === true) { reverse.call(this); this.reversed = false } + this[playing] = false - setTimeout(function(){ if (!tweens[length]) { stop(); } }, 48); // when all animations are finished, stop ticking after ~3 frames + setTimeout(function () { if (!tweens[length]) { stop() } }, 48) // when all animations are finished, stop ticking after ~3 frames }, preventScroll = function (eventObj) { // prevent mousewheel or touch events while tweening scroll - var data = body.getAttribute(dataTweening); - if (data && data === 'scroll') { eventObj.preventDefault(); } - }, - scrollOut = function(){ //prevent scroll when tweening scroll - if ( 'scroll' in this[valuesEnd] && body.getAttribute(dataTweening)) { - document[removeEventListener](touchOrWheel, preventScroll, false); - document[removeEventListener](mouseEnter, preventScroll, false); - body.removeAttribute(dataTweening); + var data = body.getAttribute(dataTweening) + if (data && data === 'scroll') { eventObj.preventDefault() } + }, + scrollOut = function () { // prevent scroll when tweening scroll + if ('scroll' in this[valuesEnd] && body.getAttribute(dataTweening)) { + document[removeEventListener](touchOrWheel, preventScroll, false) + document[removeEventListener](mouseEnter, preventScroll, false) + body.removeAttribute(dataTweening) } }, - scrollIn = function(){ - if ( 'scroll' in this[valuesEnd] && !body.getAttribute(dataTweening)) { - document[addEventListener](touchOrWheel, preventScroll, false); - document[addEventListener](mouseEnter, preventScroll, false); - body.setAttribute(dataTweening, 'scroll'); + scrollIn = function () { + if ('scroll' in this[valuesEnd] && !body.getAttribute(dataTweening)) { + document[addEventListener](touchOrWheel, preventScroll, false) + document[addEventListener](mouseEnter, preventScroll, false) + body.setAttribute(dataTweening, 'scroll') } }, processEasing = function (fn) { - if ( typeof fn === 'function') { - return fn; - } else if ( typeof fn === 'string' ) { - return easingFn[fn]; // regular Robert Penner Easing Functions + if (typeof fn === 'function') { + return fn + } else if (typeof fn === 'string') { + return easingFn[fn] // regular Robert Penner Easing Functions } }, getStartValues = function () { // stack transform props for .to() chains var startValues = {}, currentStyle = getInlineStyle(this[element]), - degreeProps = ['rotate','skew'], startAxis = ['X','Y','Z']; - - for (var tweenProperty in this[valuesStart]){ - if ( transformFunctions[indexOf](tweenProperty) !== -1 ) { - var r2d = (/(rotate|translate|scale)$/.test(tweenProperty)); - if ( /translate/.test(tweenProperty) && tweenProperty !== 'translate' ) { - startValues['translate3d'] = currentStyle['translate3d'] || defaultPropsValues[tweenProperty]; - } else if ( r2d ) { // 2d transforms - startValues[tweenProperty] = currentStyle[tweenProperty] || defaultPropsValues[tweenProperty]; - } else if ( !r2d && /rotate|skew/.test(tweenProperty) ) { // all angles - for (var degIndex=0; degIndex<2; degIndex++) { - for (var axisIndex = 0; axisIndex<3; axisIndex++) { - var s = degreeProps[degIndex]+startAxis[axisIndex]; - if (transformFunctions[indexOf](s) !== -1 && (s in this[valuesStart]) ) { startValues[s] = currentStyle[s] || defaultPropsValues[s]; } + degreeProps = ['rotate', 'skew'], startAxis = ['X', 'Y', 'Z'] + + for (var tweenProperty in this[valuesStart]) { + if (transformFunctions[indexOf](tweenProperty) !== -1) { + var r2d = (/(rotate|translate|scale)$/.test(tweenProperty)) + if (/translate/.test(tweenProperty) && tweenProperty !== 'translate') { + startValues['translate3d'] = currentStyle['translate3d'] || defaultPropsValues[tweenProperty] + } else if (r2d) { // 2d transforms + startValues[tweenProperty] = currentStyle[tweenProperty] || defaultPropsValues[tweenProperty] + } else if (!r2d && /rotate|skew/.test(tweenProperty)) { // all angles + for (var degIndex = 0; degIndex < 2; degIndex++) { + for (var axisIndex = 0; axisIndex < 3; axisIndex++) { + var s = degreeProps[degIndex] + startAxis[axisIndex] + if (transformFunctions[indexOf](s) !== -1 && (s in this[valuesStart])) { startValues[s] = currentStyle[s] || defaultPropsValues[s] } } } } } else { - if ( tweenProperty !== 'scroll' ) { - if (tweenProperty === 'opacity' && isIE8 ) { // handle IE8 opacity - var currentOpacity = getCurrentStyle(this[element],'filter'); - startValues['opacity'] = typeof currentOpacity === 'number' ? currentOpacity : defaultPropsValues['opacity']; + if (tweenProperty !== 'scroll') { + if (tweenProperty === 'opacity' && isIE8) { // handle IE8 opacity + var currentOpacity = getCurrentStyle(this[element], 'filter') + startValues['opacity'] = typeof currentOpacity === 'number' ? currentOpacity : defaultPropsValues['opacity'] } else { - if ( coreProps[indexOf](tweenProperty) !== -1 ) { - startValues[tweenProperty] = getCurrentStyle(this[element],tweenProperty) || d[tweenProperty]; + if (coreProps[indexOf](tweenProperty) !== -1) { + startValues[tweenProperty] = getCurrentStyle(this[element], tweenProperty) || d[tweenProperty] } else { // plugins register here - startValues[tweenProperty] = tweenProperty in prepareStart ? prepareStart[tweenProperty].call(this,tweenProperty,this[valuesStart][tweenProperty]) : 0; + startValues[tweenProperty] = tweenProperty in prepareStart ? prepareStart[tweenProperty].call(this, tweenProperty, this[valuesStart][tweenProperty]) : 0 } } } else { - startValues[tweenProperty] = this[element] === scrollContainer ? (g.pageYOffset || scrollContainer.scrollTop) : this[element].scrollTop; + startValues[tweenProperty] = this[element] === scrollContainer ? (g.pageYOffset || scrollContainer.scrollTop) : this[element].scrollTop } } } - for ( var currentProperty in currentStyle ){ // also add to startValues values from previous tweens - if ( transformFunctions[indexOf](currentProperty) !== -1 && (!( currentProperty in this[valuesStart] )) ) { - startValues[currentProperty] = currentStyle[currentProperty] || defaultPropsValues[currentProperty]; + for (var currentProperty in currentStyle) { // also add to startValues values from previous tweens + if (transformFunctions[indexOf](currentProperty) !== -1 && (!(currentProperty in this[valuesStart]))) { + startValues[currentProperty] = currentStyle[currentProperty] || defaultPropsValues[currentProperty] } } - this[valuesStart] = {}; - preparePropertiesObject.call(this,startValues,'start'); - - if ( transformProperty in this[valuesEnd] ) { // let's stack transform - for ( var sp in this[valuesStart][transformProperty]) { // sp is the object corresponding to the transform function objects translate / rotate / skew / scale - if ( sp !== 'perspective') { - if ( typeof this[valuesStart][transformProperty][sp] === 'object' ) { - for ( var spp in this[valuesStart][transformProperty][sp] ) { // 3rd level - if ( typeof this[valuesEnd][transformProperty][sp] === 'undefined' ) { this[valuesEnd][transformProperty][sp] = {}; } - if ( typeof this[valuesStart][transformProperty][sp][spp] === 'number' && typeof this[valuesEnd][transformProperty][sp][spp] === 'undefined' ) { - this[valuesEnd][transformProperty][sp][spp] = this[valuesStart][transformProperty][sp][spp]; + this[valuesStart] = {} + preparePropertiesObject.call(this, startValues, 'start') + + if (transformProperty in this[valuesEnd]) { // let's stack transform + for (var sp in this[valuesStart][transformProperty]) { // sp is the object corresponding to the transform function objects translate / rotate / skew / scale + if (sp !== 'perspective') { + if (typeof this[valuesStart][transformProperty][sp] === 'object') { + for (var spp in this[valuesStart][transformProperty][sp]) { // 3rd level + if (typeof this[valuesEnd][transformProperty][sp] === 'undefined') { this[valuesEnd][transformProperty][sp] = {} } + if (typeof this[valuesStart][transformProperty][sp][spp] === 'number' && typeof this[valuesEnd][transformProperty][sp][spp] === 'undefined') { + this[valuesEnd][transformProperty][sp][spp] = this[valuesStart][transformProperty][sp][spp] } } - } else if ( typeof this[valuesStart][transformProperty][sp] === 'number' ) { - if ( typeof this[valuesEnd][transformProperty][sp] === 'undefined' ) { // scale - this[valuesEnd][transformProperty][sp] = this[valuesStart][transformProperty][sp]; + } else if (typeof this[valuesStart][transformProperty][sp] === 'number') { + if (typeof this[valuesEnd][transformProperty][sp] === 'undefined') { // scale + this[valuesEnd][transformProperty][sp] = this[valuesStart][transformProperty][sp] } } } } } - }; + } // core easing functions - var easingFn = g.Easing = {}; - easingFn.linear = function (t) { return t; }; - easingFn.easingSinusoidalIn = function(t) { return -Math.cos(t * Math.PI / 2) + 1; }; - easingFn.easingSinusoidalOut = function(t) { return Math.sin(t * Math.PI / 2); }; - easingFn.easingSinusoidalInOut = function(t) { return -0.5 * (Math.cos(Math.PI * t) - 1); }; - easingFn.easingQuadraticIn = function (t) { return t*t; }; - easingFn.easingQuadraticOut = function (t) { return t*(2-t); }; - easingFn.easingQuadraticInOut = function (t) { return t<.5 ? 2*t*t : -1+(4-2*t)*t; }; - easingFn.easingCubicIn = function (t) { return t*t*t; }; - easingFn.easingCubicOut = function (t) { return (--t)*t*t+1; }; - easingFn.easingCubicInOut = function (t) { return t<.5 ? 4*t*t*t : (t-1)*(2*t-2)*(2*t-2)+1; }; - easingFn.easingQuarticIn = function (t) { return t*t*t*t; }; - easingFn.easingQuarticOut = function (t) { return 1-(--t)*t*t*t; }; - easingFn.easingQuarticInOut = function (t) { return t<.5 ? 8*t*t*t*t : 1-8*(--t)*t*t*t; }; - easingFn.easingQuinticIn = function (t) { return t*t*t*t*t; }; - easingFn.easingQuinticOut = function (t) { return 1+(--t)*t*t*t*t; }; - easingFn.easingQuinticInOut = function (t) { return t<.5 ? 16*t*t*t*t*t : 1+16*(--t)*t*t*t*t; }; - easingFn.easingCircularIn = function(t) { return -(Math.sqrt(1 - (t * t)) - 1); }; - easingFn.easingCircularOut = function(t) { return Math.sqrt(1 - (t = t - 1) * t); }; - easingFn.easingCircularInOut = function(t) { return ((t*=2) < 1) ? -0.5 * (Math.sqrt(1 - t * t) - 1) : 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1); }; - easingFn.easingExponentialIn = function(t) { return Math.pow(2, 10 * (t - 1)) - 0.001; }; - easingFn.easingExponentialOut = function(t) { return 1 - Math.pow(2, -10 * t); }; - easingFn.easingExponentialInOut = function(t) { return (t *= 2) < 1 ? 0.5 * Math.pow(2, 10 * (t - 1)) : 0.5 * (2 - Math.pow(2, -10 * (t - 1))); }; - easingFn.easingBackIn = function(t) { var s = 1.70158; return t * t * ((s + 1) * t - s); }; - easingFn.easingBackOut = function(t) { var s = 1.70158; return --t * t * ((s + 1) * t + s) + 1; }; - easingFn.easingBackInOut = function(t) { var s = 1.70158 * 1.525; if ((t *= 2) < 1) return 0.5 * (t * t * ((s + 1) * t - s)); return 0.5 * ((t -= 2) * t * ((s + 1) * t + s) + 2); }; - easingFn.easingElasticIn = function(t) { - var s, _kea = 0.1, _kep = 0.4; - if ( t === 0 ) return 0; if ( t === 1 ) return 1; - if ( !_kea || _kea < 1 ) { _kea = 1; s = _kep / 4; } else s = _kep * Math.asin( 1 / _kea ) / Math.PI * 2; - return - ( _kea * Math.pow( 2, 10 * ( t -= 1 ) ) * Math.sin( ( t - s ) * Math.PI * 2 / _kep ) ); - }; - easingFn.easingElasticOut = function(t) { - var s, _kea = 0.1, _kep = 0.4; - if ( t === 0 ) return 0; if ( t === 1 ) return 1; - if ( !_kea || _kea < 1 ) { _kea = 1; s = _kep / 4; } else s = _kep * Math.asin( 1 / _kea ) / Math.PI * 2 ; - return ( _kea * Math.pow( 2, - 10 * t) * Math.sin( ( t - s ) * Math.PI * 2 / _kep ) + 1 ); - }; - easingFn.easingElasticInOut = function(t) { - var s, _kea = 0.1, _kep = 0.4; - if ( t === 0 ) return 0; if ( t === 1 ) return 1; - if ( !_kea || _kea < 1 ) { _kea = 1; s = _kep / 4; } else s = _kep * Math.asin( 1 / _kea ) / Math.PI * 2 ; - if ( ( t *= 2 ) < 1 ) return - 0.5 * ( _kea * Math.pow( 2, 10 * ( t -= 1 ) ) * Math.sin( ( t - s ) * Math.PI * 2 / _kep ) ); - return _kea * Math.pow( 2, -10 * ( t -= 1 ) ) * Math.sin( ( t - s ) * Math.PI * 2 / _kep ) * 0.5 + 1; - }; - easingFn.easingBounceIn = function(t) { return 1 - easingFn.easingBounceOut( 1 - t ); }; - easingFn.easingBounceOut = function(t) { - if ( t < ( 1 / 2.75 ) ) { return 7.5625 * t * t; } - else if ( t < ( 2 / 2.75 ) ) { return 7.5625 * ( t -= ( 1.5 / 2.75 ) ) * t + 0.75; } - else if ( t < ( 2.5 / 2.75 ) ) { return 7.5625 * ( t -= ( 2.25 / 2.75 ) ) * t + 0.9375; } - else {return 7.5625 * ( t -= ( 2.625 / 2.75 ) ) * t + 0.984375; } - }; - easingFn.easingBounceInOut = function(t) { if ( t < 0.5 ) return easingFn.easingBounceIn( t * 2 ) * 0.5; return easingFn.easingBounceOut( t * 2 - 1 ) * 0.5 + 0.5;}; + var easingFn = g.Easing = {} + easingFn.linear = function (t) { return t } + easingFn.easingSinusoidalIn = function (t) { return -Math.cos(t * Math.PI / 2) + 1 } + easingFn.easingSinusoidalOut = function (t) { return Math.sin(t * Math.PI / 2) } + easingFn.easingSinusoidalInOut = function (t) { return -0.5 * (Math.cos(Math.PI * t) - 1) } + easingFn.easingQuadraticIn = function (t) { return t * t } + easingFn.easingQuadraticOut = function (t) { return t * (2 - t) } + easingFn.easingQuadraticInOut = function (t) { return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t } + easingFn.easingCubicIn = function (t) { return t * t * t } + easingFn.easingCubicOut = function (t) { return (--t) * t * t + 1 } + easingFn.easingCubicInOut = function (t) { return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1 } + easingFn.easingQuarticIn = function (t) { return t * t * t * t } + easingFn.easingQuarticOut = function (t) { return 1 - (--t) * t * t * t } + easingFn.easingQuarticInOut = function (t) { return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * (--t) * t * t * t } + easingFn.easingQuinticIn = function (t) { return t * t * t * t * t } + easingFn.easingQuinticOut = function (t) { return 1 + (--t) * t * t * t * t } + easingFn.easingQuinticInOut = function (t) { return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * (--t) * t * t * t * t } + easingFn.easingCircularIn = function (t) { return -(Math.sqrt(1 - (t * t)) - 1) } + easingFn.easingCircularOut = function (t) { return Math.sqrt(1 - (t = t - 1) * t) } + easingFn.easingCircularInOut = function (t) { return ((t *= 2) < 1) ? -0.5 * (Math.sqrt(1 - t * t) - 1) : 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1) } + easingFn.easingExponentialIn = function (t) { return Math.pow(2, 10 * (t - 1)) - 0.001 } + easingFn.easingExponentialOut = function (t) { return 1 - Math.pow(2, -10 * t) } + easingFn.easingExponentialInOut = function (t) { return (t *= 2) < 1 ? 0.5 * Math.pow(2, 10 * (t - 1)) : 0.5 * (2 - Math.pow(2, -10 * (t - 1))) } + easingFn.easingBackIn = function (t) { var s = 1.70158; return t * t * ((s + 1) * t - s) } + easingFn.easingBackOut = function (t) { var s = 1.70158; return --t * t * ((s + 1) * t + s) + 1 } + easingFn.easingBackInOut = function (t) { var s = 1.70158 * 1.525; if ((t *= 2) < 1) return 0.5 * (t * t * ((s + 1) * t - s)); return 0.5 * ((t -= 2) * t * ((s + 1) * t + s) + 2) } + easingFn.easingElasticIn = function (t) { + var s, _kea = 0.1, _kep = 0.4 + if (t === 0) return 0; if (t === 1) return 1 + if (!_kea || _kea < 1) { _kea = 1; s = _kep / 4 } else s = _kep * Math.asin(1 / _kea) / Math.PI * 2 + return -(_kea * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - s) * Math.PI * 2 / _kep)) + } + easingFn.easingElasticOut = function (t) { + var s, _kea = 0.1, _kep = 0.4 + if (t === 0) return 0; if (t === 1) return 1 + if (!_kea || _kea < 1) { _kea = 1; s = _kep / 4 } else s = _kep * Math.asin(1 / _kea) / Math.PI * 2 + return (_kea * Math.pow(2, -10 * t) * Math.sin((t - s) * Math.PI * 2 / _kep) + 1) + } + easingFn.easingElasticInOut = function (t) { + var s, _kea = 0.1, _kep = 0.4 + if (t === 0) return 0; if (t === 1) return 1 + if (!_kea || _kea < 1) { _kea = 1; s = _kep / 4 } else s = _kep * Math.asin(1 / _kea) / Math.PI * 2 + if ((t *= 2) < 1) return -0.5 * (_kea * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - s) * Math.PI * 2 / _kep)) + return _kea * Math.pow(2, -10 * (t -= 1)) * Math.sin((t - s) * Math.PI * 2 / _kep) * 0.5 + 1 + } + easingFn.easingBounceIn = function (t) { return 1 - easingFn.easingBounceOut(1 - t) } + easingFn.easingBounceOut = function (t) { + if (t < (1 / 2.75)) { return 7.5625 * t * t } else if (t < (2 / 2.75)) { return 7.5625 * (t -= (1.5 / 2.75)) * t + 0.75 } else if (t < (2.5 / 2.75)) { return 7.5625 * (t -= (2.25 / 2.75)) * t + 0.9375 } else { return 7.5625 * (t -= (2.625 / 2.75)) * t + 0.984375 } + } + easingFn.easingBounceInOut = function (t) { if (t < 0.5) return easingFn.easingBounceIn(t * 2) * 0.5; return easingFn.easingBounceOut(t * 2 - 1) * 0.5 + 0.5 } // single Tween object construct var Tween = function (targetElement, startObject, endObject, optionsObj) { - this[element] = 'scroll' in endObject && (targetElement === undefined || targetElement === null) ? scrollContainer : targetElement; // element animation is applied to + this[element] = 'scroll' in endObject && (targetElement === undefined || targetElement === null) ? scrollContainer : targetElement // element animation is applied to - this[playing] = false; - this.reversed = false; - this.paused = false; + this[playing] = false + this.reversed = false + this.paused = false - this._startTime = null; - this._pauseTime = null; + this._startTime = null + this._pauseTime = null - this._startFired = false; - this[options] = {}; for (var o in optionsObj) { this[options][o] = optionsObj[o]; } - this[options].rpr = optionsObj.rpr || false; // internal option to process inline/computed style at start instead of init true/false + this._startFired = false + this[options] = {}; for (var o in optionsObj) { this[options][o] = optionsObj[o] } + this[options].rpr = optionsObj.rpr || false // internal option to process inline/computed style at start instead of init true/false - this[valuesRepeat] = {}; // internal valuesRepeat - this[valuesEnd] = {}; // valuesEnd - this[valuesStart] = {}; // valuesStart + this[valuesRepeat] = {} // internal valuesRepeat + this[valuesEnd] = {} // valuesEnd + this[valuesStart] = {} // valuesStart - preparePropertiesObject.call(this,endObject,'end'); // valuesEnd - if ( this[options].rpr ) { this[valuesStart] = startObject; } else { preparePropertiesObject.call(this,startObject,'start'); } // valuesStart + preparePropertiesObject.call(this, endObject, 'end') // valuesEnd + if (this[options].rpr) { this[valuesStart] = startObject } else { preparePropertiesObject.call(this, startObject, 'start') } // valuesStart - if ( this[options].perspective !== undefined && transformProperty in this[valuesEnd] ) { // element transform perspective - var perspectiveString = 'perspective('+parseInt(this[options].perspective)+'px)'; - this[valuesEnd][transformProperty].perspective = perspectiveString; + if (this[options].perspective !== undefined && transformProperty in this[valuesEnd]) { // element transform perspective + var perspectiveString = 'perspective(' + parseInt(this[options].perspective) + 'px)' + this[valuesEnd][transformProperty].perspective = perspectiveString } - for ( var repeatProp in this[valuesEnd] ) { - if (repeatProp in crossCheck && !this[options].rpr) crossCheck[repeatProp].call(this); // this is where we do the valuesStart and valuesEnd check for fromTo() method + for (var repeatProp in this[valuesEnd]) { + if (repeatProp in crossCheck && !this[options].rpr) crossCheck[repeatProp].call(this) // this is where we do the valuesStart and valuesEnd check for fromTo() method } - this[options][chain] = []; // chained Tweens - this[options][easing] = processEasing(optionsObj[easing]) || easingFn[defaultOptions[easing]] || easingFn['linear']; // you can only set a core easing function as default - this[options][repeat] = optionsObj[repeat] || defaultOptions[repeat]; - this[options][repeatDelay] = optionsObj[repeatDelay] || defaultOptions[repeatDelay]; - this[options][yoyo] = optionsObj[yoyo] || defaultOptions[yoyo]; - this[options][duration] = optionsObj[duration] || defaultOptions[duration]; // duration option | default - this[options][delay] = optionsObj[delay] || defaultOptions[delay]; // delay option | default + this[options][chain] = [] // chained Tweens + this[options][easing] = processEasing(optionsObj[easing]) || easingFn[defaultOptions[easing]] || easingFn['linear'] // you can only set a core easing function as default + this[options][repeat] = optionsObj[repeat] || defaultOptions[repeat] + this[options][repeatDelay] = optionsObj[repeatDelay] || defaultOptions[repeatDelay] + this[options][yoyo] = optionsObj[yoyo] || defaultOptions[yoyo] + this[options][duration] = optionsObj[duration] || defaultOptions[duration] // duration option | default + this[options][delay] = optionsObj[delay] || defaultOptions[delay] // delay option | default - this[repeat] = this[options][repeat]; // we cache the number of repeats to be able to put it back after all cycles finish + this[repeat] = this[options][repeat] // we cache the number of repeats to be able to put it back after all cycles finish }, // tween control and chain TweenProto = Tween.prototype = { // queue tween object to main frame update - start : function (t) { // move functions that use the ticker outside the prototype to be in the same scope with it - scrollIn.call(this); + start: function (t) { // move functions that use the ticker outside the prototype to be in the same scope with it + scrollIn.call(this) - if ( this[options].rpr ) { getStartValues.apply(this); } // on start we reprocess the valuesStart for TO() method - perspective.apply(this); // apply the perspective and transform origin + if (this[options].rpr) { getStartValues.apply(this) } // on start we reprocess the valuesStart for TO() method + perspective.apply(this) // apply the perspective and transform origin - for ( var endProp in this[valuesEnd] ) { - if (endProp in crossCheck && this[options].rpr) crossCheck[endProp].call(this); // this is where we do the valuesStart and valuesEnd check for to() method - this[valuesRepeat][endProp] = this[valuesStart][endProp]; + for (var endProp in this[valuesEnd]) { + if (endProp in crossCheck && this[options].rpr) crossCheck[endProp].call(this) // this is where we do the valuesStart and valuesEnd check for to() method + this[valuesRepeat][endProp] = this[valuesStart][endProp] } // now it's a good time to start - tweens.push(this); - this[playing] = true; - this.paused = false; - this._startFired = false; - this._startTime = t || time.now(); - this._startTime += this[options][delay]; + tweens.push(this) + this[playing] = true + this.paused = false + this._startFired = false + this._startTime = t || time.now() + this._startTime += this[options][delay] if (!this._startFired) { - if (this[options].start) { this[options].start.call(); } - this._startFired = true; + if (this[options].start) { this[options].start.call() } + this._startFired = true } - !tick && ticker(); - return this; + !tick && ticker() + return this }, - play : function () { + play: function () { if (this.paused && this[playing]) { - this.paused = false; - if (this[options].resume) { this[options].resume.call(); } - this._startTime += time.now() - this._pauseTime; - add(this); - !tick && ticker(); // restart ticking if stopped + this.paused = false + if (this[options].resume) { this[options].resume.call() } + this._startTime += time.now() - this._pauseTime + add(this) + !tick && ticker() // restart ticking if stopped } - return this; + return this }, - resume : function () { return this.play(); }, - pause : function() { + resume: function () { return this.play() }, + pause: function () { if (!this.paused && this[playing]) { - remove(this); - this.paused = true; - this._pauseTime = time.now(); - if (this[options].pause) { this[options].pause.call(); } + remove(this) + this.paused = true + this._pauseTime = time.now() + if (this[options].pause) { this[options].pause.call() } } - return this; + return this }, - stop : function () { + stop: function () { if (!this.paused && this[playing]) { - remove(this); - this[playing] = false; - this.paused = false; - scrollOut.call(this); - - if (this[options].stop) { this[options].stop.call(); } - this.stopChainedTweens(); - close.call(this); + remove(this) + this[playing] = false + this.paused = false + scrollOut.call(this) + + if (this[options].stop) { this[options].stop.call() } + this.stopChainedTweens() + close.call(this) } - return this; + return this }, - chain : function() { this[options][chain] = arguments; return this; }, - stopChainedTweens : function () { + chain: function () { this[options][chain] = arguments; return this }, + stopChainedTweens: function () { for (var i = 0, ctl = this[options][chain][length]; i < ctl; i++) { - this[options][chain][i].stop(); + this[options][chain][i].stop() } } }, // the multi elements Tween constructs TweensTO = function (els, vE, o) { // .to - this.tweens = []; var optionsObj = []; - for ( var i = 0, tl = els[length]; i < tl; i++ ) { - optionsObj[i] = o || {}; o[delay] = o[delay] || defaultOptions[delay]; - optionsObj[i][delay] = i>0 ? o[delay] + (o[offset]||defaultOptions[offset]) : o[delay]; - this.tweens.push( to(els[i], vE, optionsObj[i]) ); + this.tweens = []; var optionsObj = [] + for (var i = 0, tl = els[length]; i < tl; i++) { + optionsObj[i] = o || {}; o[delay] = o[delay] || defaultOptions[delay] + optionsObj[i][delay] = i > 0 ? o[delay] + (o[offset] || defaultOptions[offset]) : o[delay] + this.tweens.push(to(els[i], vE, optionsObj[i])) } }, TweensFT = function (els, vS, vE, o) { // .fromTo - this.tweens = []; var optionsObj = []; - for ( var i = 0, l = els[length]; i < l; i++ ) { - optionsObj[i] = o || {}; o[delay] = o[delay] || defaultOptions[delay]; - optionsObj[i][delay] = i>0 ? o[delay] + (o[offset]||defaultOptions[offset]) : o[delay]; - this.tweens.push( fromTo(els[i], vS, vE, optionsObj[i]) ); + this.tweens = []; var optionsObj = [] + for (var i = 0, l = els[length]; i < l; i++) { + optionsObj[i] = o || {}; o[delay] = o[delay] || defaultOptions[delay] + optionsObj[i][delay] = i > 0 ? o[delay] + (o[offset] || defaultOptions[offset]) : o[delay] + this.tweens.push(fromTo(els[i], vS, vE, optionsObj[i])) } }, ws = TweensTO.prototype = TweensFT.prototype = { - start : function(t){ - t = t || time.now(); - for ( var i = 0, tl = this.tweens[length]; i < tl; i++ ) { - this.tweens[i].start(t); + start: function (t) { + t = t || time.now() + for (var i = 0, tl = this.tweens[length]; i < tl; i++) { + this.tweens[i].start(t) } - return this; + return this }, - stop : function(){ for ( var i = 0, tl = this.tweens[length]; i < tl; i++ ) { this.tweens[i].stop(); } return this; }, - pause : function(){ for ( var i = 0, tl = this.tweens[length]; i < tl; i++ ) { this.tweens[i].pause(); } return this; }, - chain : function(){ this.tweens[this.tweens[length]-1][options][chain] = arguments; return this; }, - play : function(){ for ( var i = 0, tl = this.tweens[length]; i < tl; i++ ) { this.tweens[i].play(); } return this; }, - resume : function() {return this.play()} + stop: function () { for (var i = 0, tl = this.tweens[length]; i < tl; i++) { this.tweens[i].stop() } return this }, + pause: function () { for (var i = 0, tl = this.tweens[length]; i < tl; i++) { this.tweens[i].pause() } return this }, + chain: function () { this.tweens[this.tweens[length] - 1][options][chain] = arguments; return this }, + play: function () { for (var i = 0, tl = this.tweens[length]; i < tl; i++) { this.tweens[i].play() } return this }, + resume: function () { return this.play() } }, // main methods to = function (element, endObject, optionsObj) { - optionsObj = optionsObj || {}; optionsObj.rpr = true; - return new Tween(selector(element), endObject, endObject, optionsObj); + optionsObj = optionsObj || {}; optionsObj.rpr = true + return new Tween(selector(element), endObject, endObject, optionsObj) }, fromTo = function (element, startObject, endObject, optionsObj) { - optionsObj = optionsObj || {}; - return new Tween(selector(element), startObject, endObject, optionsObj); + optionsObj = optionsObj || {} + return new Tween(selector(element), startObject, endObject, optionsObj) }, // multiple elements tweening allTo = function (elements, endObject, optionsObj) { - return new TweensTO(selector(elements,true), endObject, optionsObj); + return new TweensTO(selector(elements, true), endObject, optionsObj) }, allFromTo = function (elements, startObject, endObject, optionsObj) { - return new TweensFT(selector(elements,true), startObject, endObject, optionsObj); - }; + return new TweensFT(selector(elements, true), startObject, endObject, optionsObj) + } return { // export core methods to public for plugins - property: property, getPrefix: getPrefix, selector: selector, processEasing : processEasing, // utils - defaultOptions : defaultOptions, // default tween options since 1.6.1 - to: to, fromTo: fromTo, allTo: allTo, allFromTo: allFromTo, // main methods - ticker : ticker, tick : tick, tweens : tweens, update: update, dom : DOM, // update - parseProperty: parseProperty, prepareStart: prepareStart, crossCheck : crossCheck, Tween : Tween, // property parsing & preparation | Tween | crossCheck - truD: trueDimension, truC: trueColor, rth: rgbToHex, htr: hexToRGB, getCurrentStyle: getCurrentStyle, // property parsing - }; -})); \ No newline at end of file + property: property, + getPrefix: getPrefix, + selector: selector, + processEasing: processEasing, // utils + defaultOptions: defaultOptions, // default tween options since 1.6.1 + to: to, + fromTo: fromTo, + allTo: allTo, + allFromTo: allFromTo, // main methods + ticker: ticker, + tick: tick, + tweens: tweens, + update: update, + dom: DOM, // update + parseProperty: parseProperty, + prepareStart: prepareStart, + crossCheck: crossCheck, + Tween: Tween, // property parsing & preparation | Tween | crossCheck + truD: trueDimension, + truC: trueColor, + rth: rgbToHex, + htr: hexToRGB, + getCurrentStyle: getCurrentStyle // property parsing + } +})) diff --git a/rollup.config.js b/rollup.config.js index e2b0d84..f064674 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,12 +1,30 @@ -var rollup = require('rollup') +import babel from 'rollup-plugin-babel' export default { input: 'src/index.js', output: { - format: 'umd', - file: 'bundled/Tween.js' + format: 'umd', + file: 'bundled/Tween.js', + name: 'TWEEN', + sourcemap: true }, - sourcemap: true, context: 'this', - name: 'TWEEN' -} \ No newline at end of file + plugins: [ + babel({ + babelrc: false, + exclude: ['node_modules/**', 'bundles/**'], + presets: [ + [ + '@babel/preset-env', + { + modules: false, + shippedProposals: true + } + ] + ], + plugins: [ + '@babel/plugin-proposal-class-properties' + ] + }) + ] +} diff --git a/test.js b/test.js index 5868d91..77574ef 100644 --- a/test.js +++ b/test.js @@ -2,169 +2,160 @@ import test from 'ava' const { Easing, Tween, update, getAll, removeAll } = require('./bundled/Tween') test('Events', t => { - - let tween = new Tween({ x: 0 }) - .to({ x: 100 }, 100) - .repeat(2) - .yoyo(true) - .start(0) - - t.plan(9) - - tween.on('start', () => { - t.log('Event [Start]: Was called successfully') - t.pass() - }) - - tween.on('update', () => { - t.log('Event [Update]: Was called successfully') - t.pass() - }) - - tween.on('repeat', () => { - t.log('Event [Repeat]: Was called successfully') - t.pass() - }) - - tween.on('reverse', () => { - t.log('Event [Reverse]: Was called successfully') - t.pass() - }) - - tween.on('complete', () => { - t.log('Event [Complete]: Was called successfully') - t.pass() - }) - - update(0) - update(50) - update(100) - update(200) - update(300) - + let tween = new Tween({ x: 0 }) + .to({ x: 100 }, 100) + .repeat(2) + .yoyo(true) + .start(0) + + t.plan(9) + + tween.on('start', () => { + t.log('Event [Start]: Was called successfully') + t.pass() + }) + + tween.on('update', () => { + t.log('Event [Update]: Was called successfully') + t.pass() + }) + + tween.on('repeat', () => { + t.log('Event [Repeat]: Was called successfully') + t.pass() + }) + + tween.on('reverse', () => { + t.log('Event [Reverse]: Was called successfully') + t.pass() + }) + + tween.on('complete', () => { + t.log('Event [Complete]: Was called successfully') + t.pass() + }) + + update(0) + update(50) + update(100) + update(200) + update(300) }) test('Value Interpolation', t => { + let obj = { a: 0, b: 'B value 1', c: { x: 2 }, d: [3], _e: 4, g: 5 } - let obj = { a: 0, b: 'B value 1', c: { x: 2 }, d: [3], _e: 4, g: 5 } - - Object.defineProperty(obj, 'e', { - get: () => obj._e, - set: x => obj._e = x - }) + Object.defineProperty(obj, 'e', { + get () { return obj._e }, + set (x) { + obj._e = x + } + }) - let tween = new Tween(obj) - .to({ a: 1, b: 'B value 2', c: { x: 3 }, d: [4], _e: 5, g: '+=1' }, 100) - .start(0) + new Tween(obj) + .to({ a: 1, b: 'B value 2', c: { x: 3 }, d: [4], _e: 5, g: '+=1' }, 100) + .start(0) - update(0) + update(0) - t.is(obj.a, 0) - t.is(obj.b, 'B value 1') - t.is(obj.c.x, 2) - t.is(obj.d[0], 3) - t.is(obj.e, 4) - t.is(obj.g, 5) + t.is(obj.a, 0) + t.is(obj.b, 'B value 1') + t.is(obj.c.x, 2) + t.is(obj.d[0], 3) + t.is(obj.e, 4) + t.is(obj.g, 5) - update(50) + update(50) - t.is(obj.a, 0.5, 'Number interpolation not worked as excepted') - t.log('Number interpolation worked as excepted') + t.is(obj.a, 0.5, 'Number interpolation not worked as excepted') + t.log('Number interpolation worked as excepted') - t.is(obj.b, 'B value 1.5', 'String interpolation not worked as excepted') - t.log('String interpolation worked as excepted') + t.is(obj.b, 'B value 1.5', 'String interpolation not worked as excepted') + t.log('String interpolation worked as excepted') - t.is(obj.c.x, 2.5, 'Object interpolation not worked as excepted') - t.log('Object interpolation worked as excepted') + t.is(obj.c.x, 2.5, 'Object interpolation not worked as excepted') + t.log('Object interpolation worked as excepted') - t.is(obj.d[0], 3.5, 'Array interpolation not worked as excepted') - t.log('Array interpolation worked as excepted') + t.is(obj.d[0], 3.5, 'Array interpolation not worked as excepted') + t.log('Array interpolation worked as excepted') - t.is(obj.e, 4.5, 'Getter/Setter interpolation not worked as excepted') - t.log('Getter/Setter interpolation worked as excepted') + t.is(obj.e, 4.5, 'Getter/Setter interpolation not worked as excepted') + t.log('Getter/Setter interpolation worked as excepted') - t.is(obj.g, 5.5, 'Relative number interpolation not worked as excepted') - t.log('Relative number interpolation worked as excepted') + t.is(obj.g, 5.5, 'Relative number interpolation not worked as excepted') + t.log('Relative number interpolation worked as excepted') + update(100) - update(100) - - t.is(obj.a, 1) - t.is(obj.b, 'B value 2') - t.is(obj.c.x, 3) - t.is(obj.d[0], 4) - t.is(obj.e, 5) - t.is(obj.g, 6) - + t.is(obj.a, 1) + t.is(obj.b, 'B value 2') + t.is(obj.c.x, 3) + t.is(obj.d[0], 4) + t.is(obj.e, 5) + t.is(obj.g, 6) }) test('Value Array-based Interpolation', t => { + let obj = { x: 0 } + new Tween(obj) + .to({ x: [1, 3, 5] }, 100) + .start(0) - let obj = { x: 0 } - let tween = new Tween(obj) - .to({ x: [1, 3, 5] }, 100) - .start(0) - - t.is(obj.x, 0) + t.is(obj.x, 0) - update(50) + update(50) - t.is(obj.x, 2, 'Interpolation failed') - t.log('End-value interpolation was done') + t.is(obj.x, 2, 'Interpolation failed') + t.log('End-value interpolation was done') - t.log('Start-value interpolation was done') - - update(100) + t.log('Start-value interpolation was done') + update(100) }) test('Tweens List Controlling', t => { + let tween = new Tween({ x: 0 }) + .to({ x: 100 }, 100) + .repeat(2) + .yoyo(true) + .start(0) - let tween = new Tween({ x: 0 }) - .to({ x: 100 }, 100) - .repeat(2) - .yoyo(true) - .start(0) - - t.is(getAll() - .length, 1, 'Tween added in tweens list') - t.log('Tweens adding was done') - - tween.stop() + t.is(getAll() + .length, 1, 'Tween added in tweens list') + t.log('Tweens adding was done') - t.is(getAll() - .length, 0, 'Tween removed from tweens list') - t.log('Tween removing was done') + tween.stop() - tween.restart() + t.is(getAll() + .length, 0, 'Tween removed from tweens list') + t.log('Tween removing was done') - t.is(getAll() - .length, 1, 'Tween added in tweens list') - t.log('Tweens restart and re-add to tweens list was done') + tween.restart() - removeAll() + t.is(getAll() + .length, 1, 'Tween added in tweens list') + t.log('Tweens restart and re-add to tweens list was done') - t.is(getAll() - .length, 0, 'All Tweens was removed from tweens list') - t.log('Tween removeAll was worked fine') + removeAll() + t.is(getAll() + .length, 0, 'All Tweens was removed from tweens list') + t.log('Tween removeAll was worked fine') }) test('Easing', t => { + const { Quadratic, Elastic, Linear } = Easing - const { Quadratic, Elastic, Linear } = Easing + const { InOut: QuadraticInOut } = Quadratic + const { InOut: ElasticInOut } = Elastic + const { None } = Linear - const { InOut: QuadraticInOut } = Quadratic - const { InOut: ElasticInOut } = Elastic - const { None } = Linear + t.is(None(0.67), 0.67, 'Linear.None was not eased as excepted') + t.log('Linear.None was eased as excepted') - t.is(None(0.67), 0.67, 'Linear.None was not eased as excepted') - t.log('Linear.None was eased as excepted') + t.not(QuadraticInOut(0.77), 0.77, 'Quadratic.InOut was not eased as excepted') + t.log('Quadratic.InOut was eased as excepted') - t.not(QuadraticInOut(0.77), 0.77, 'Quadratic.InOut was not eased as excepted') - t.log('Quadratic.InOut was eased as excepted') - - t.not(ElasticInOut(0.6), 0.6, 'Elastic.InOut was not eased as excepted') - t.log('Elastic.InOut was eased as excepted') - -}) \ No newline at end of file + t.not(ElasticInOut(0.6), 0.6, 'Elastic.InOut was not eased as excepted') + t.log('Elastic.InOut was eased as excepted') +}) diff --git a/ts/Easing.ts b/ts/Easing.ts deleted file mode 100644 index 79154db..0000000 --- a/ts/Easing.ts +++ /dev/null @@ -1,249 +0,0 @@ -/** - * List of full easings - * @namespace TWEEN.Easing - * @example - * import {Tween, Easing} from 'es6-tween' - * - * // then set via new Tween({x:0}).to({x:100}, 1000).easing(Easing.Quadratic.InOut).start() - */ -const Easing = { - Linear: { - None(k) { - return k; - }, - }, - - Quadratic: { - In(k) { - return k * k; - }, - - Out(k) { - return k * (2 - k); - }, - - InOut(k) { - if ((k *= 2) < 1) { - return 0.5 * k * k; - } - - return -0.5 * (--k * (k - 2) - 1); - }, - }, - - Cubic: { - In(k) { - return k * k * k; - }, - - Out(k) { - return --k * k * k + 1; - }, - - InOut(k) { - if ((k *= 2) < 1) { - return 0.5 * k * k * k; - } - - return 0.5 * ((k -= 2) * k * k + 2); - }, - }, - - Quartic: { - In(k) { - return k * k * k * k; - }, - - Out(k) { - return 1 - --k * k * k * k; - }, - - InOut(k) { - if ((k *= 2) < 1) { - return 0.5 * k * k * k * k; - } - - return -0.5 * ((k -= 2) * k * k * k - 2); - }, - }, - - Quintic: { - In(k) { - return k * k * k * k * k; - }, - - Out(k) { - return --k * k * k * k * k + 1; - }, - - InOut(k) { - if ((k *= 2) < 1) { - return 0.5 * k * k * k * k * k; - } - - return 0.5 * ((k -= 2) * k * k * k * k + 2); - }, - }, - - Sinusoidal: { - In(k) { - return 1 - Math.cos(k * Math.PI / 2); - }, - - Out(k) { - return Math.sin(k * Math.PI / 2); - }, - - InOut(k) { - return 0.5 * (1 - Math.cos(Math.PI * k)); - }, - }, - - Exponential: { - In(k) { - return k === 0 ? 0 : Math.pow(1024, k - 1); - }, - - Out(k) { - return k === 1 ? 1 : 1 - Math.pow(2, -10 * k); - }, - - InOut(k) { - if (k === 0) { - return 0; - } - - if (k === 1) { - return 1; - } - - if ((k *= 2) < 1) { - return 0.5 * Math.pow(1024, k - 1); - } - - return 0.5 * (-Math.pow(2, -10 * (k - 1)) + 2); - }, - }, - - Circular: { - In(k) { - return 1 - Math.sqrt(1 - k * k); - }, - - Out(k) { - return Math.sqrt(1 - --k * k); - }, - - InOut(k) { - if ((k *= 2) < 1) { - return -0.5 * (Math.sqrt(1 - k * k) - 1); - } - - return 0.5 * (Math.sqrt(1 - (k -= 2) * k) + 1); - }, - }, - - Elastic: { - In(k) { - if (k === 0) { - return 0; - } - - if (k === 1) { - return 1; - } - - return -Math.pow(2, 10 * (k - 1)) * Math.sin((k - 1.1) * 5 * Math.PI); - }, - - Out(k) { - if (k === 0) { - return 0; - } - - if (k === 1) { - return 1; - } - - return Math.pow(2, -10 * k) * Math.sin((k - 0.1) * 5 * Math.PI) + 1; - }, - - InOut(k) { - if (k === 0) { - return 0; - } - - if (k === 1) { - return 1; - } - - k *= 2; - - if (k < 1) { - return ( - -0.5 * Math.pow(2, 10 * (k - 1)) * Math.sin((k - 1.1) * 5 * Math.PI) - ); - } - - return ( - 0.5 * Math.pow(2, -10 * (k - 1)) * Math.sin((k - 1.1) * 5 * Math.PI) + 1 - ); - }, - }, - - Back: { - In(k) { - const s = 1.70158; - - return k * k * ((s + 1) * k - s); - }, - - Out(k) { - const s = 1.70158; - - return --k * k * ((s + 1) * k + s) + 1; - }, - - InOut(k) { - const s = 1.70158 * 1.525; - - if ((k *= 2) < 1) { - return 0.5 * (k * k * ((s + 1) * k - s)); - } - - return 0.5 * ((k -= 2) * k * ((s + 1) * k + s) + 2); - }, - }, - - Bounce: { - In(k) { - return 1 - Easing.Bounce.Out(1 - k); - }, - - Out(k) { - if (k < 1 / 2.75) { - return 7.5625 * k * k; - } else if (k < 2 / 2.75) { - return 7.5625 * (k -= 1.5 / 2.75) * k + 0.75; - } else if (k < 2.5 / 2.75) { - return 7.5625 * (k -= 2.25 / 2.75) * k + 0.9375; - } else { - return 7.5625 * (k -= 2.625 / 2.75) * k + 0.984375; - } - }, - - InOut(k) { - if (k < 0.5) { - return Easing.Bounce.In(k * 2) * 0.5; - } - - return Easing.Bounce.Out(k * 2 - 1) * 0.5 + 0.5; - } - }, - - Stepped: { - steps: steps => k => ((k * steps) | 0) / steps, - }, -}; - -export default Easing; diff --git a/ts/Interpolation.ts b/ts/Interpolation.ts deleted file mode 100644 index 52fb1ee..0000000 --- a/ts/Interpolation.ts +++ /dev/null @@ -1,250 +0,0 @@ -import { isRGBColor, RGBA, recompose, STRING_PROP } from './constants'; - -/** - * List of full Interpolation - * @namespace TWEEN.Interpolation - * @example - * import {Interpolation, Tween} from 'es6-tween' - * - * let bezier = Interpolation.Bezier - * new Tween({x:0}).to({x:[0, 4, 8, 12, 15, 20, 30, 40, 20, 40, 10, 50]}, 1000).interpolation(bezier).start() - * @memberof TWEEN - */ -const Interpolation = { - Linear(v, k, value) { - const m = v.length - 1; - const f = m * k; - const i = Math.floor(f); - const fn = Interpolation.Utils.Linear; - if (k < 0) { - return fn(v[0], v[1], f, value); - } - if (k > 1) { - return fn(v[m], v[m - 1], m - f, value); - } - return fn(v[i], v[i + 1 > m ? m : i + 1], f - i, value); - }, - - Bezier(v, k, value) { - let b = Interpolation.Utils.Reset(value); - let n = v.length - 1; - let pw = Math.pow; - let fn = Interpolation.Utils.Bernstein; - - let isBArray = Array.isArray(b); - - for (let i = 0; i <= n; i++) { - if (typeof b === 'number') { - b += pw(1 - k, n - i) * pw(k, i) * v[i] * fn(n, i); - } else if (isBArray) { - for (let p = 0, len = b.length; p < len; p++) { - if (typeof b[p] === 'number') { - b[p] += pw(1 - k, n - i) * pw(k, i) * v[i][p] * fn(n, i); - } else { - b[p] = v[i][p]; - } - } - } else if (typeof b === 'object') { - for (let p in b) { - if (typeof b[p] === 'number') { - b[p] += pw(1 - k, n - i) * pw(k, i) * v[i][p] * fn(n, i); - } else { - b[p] = v[i][p]; - } - } - } else if (typeof b === 'string') { - let STRING_BUFFER = '', - idx = Math.round(n * k), - pidx = idx - 1 < 0 ? 0 : idx - 1, - nidx = idx + 1 > n ? n : idx + 1, - vCurr = v[idx], - vPrev = v[pidx]; - for (let ks = 1, len = vCurr.length; ks < len; ks++) { - STRING_BUFFER += vCurr[ks]; - } - return STRING_BUFFER; - } - } - - return b; - }, - - CatmullRom(v, k, value) { - const m = v.length - 1; - let f = m * k; - let i = Math.floor(f); - const fn = Interpolation.Utils.CatmullRom; - - if (v[0] === v[m]) { - if (k < 0) { - i = Math.floor((f = m * (1 + k))); - } - - return fn( - v[(i - 1 + m) % m], - v[i], - v[(i + 1) % m], - v[(i + 2) % m], - f - i, - value - ); - } else { - if (k < 0) { - return fn(v[1], v[1], v[0], v[0], -k, value); - } - - if (k > 1) { - return fn(v[m - 1], v[m - 1], v[m], v[m], (k | 0) - k, value); - } - - return fn( - v[i ? i - 1 : 0], - v[i], - v[m < i + 1 ? m : i + 1], - v[m < i + 2 ? m : i + 2], - f - i, - value - ); - } - }, - - Utils: { - Linear(p0, p1, t, v) { - if (typeof p0 === 'string') { - return p1; - } else if (typeof p0 === 'number') { - return typeof p0 === 'function' ? p0(t) : p0 + (p1 - p0) * t; - } else if (typeof p0 === 'object') { - if (p0.length !== undefined) { - if (p0[0] === STRING_PROP) { - let STRING_BUFFER = ''; - for (let i = 1, len = p0.length; i < len; i++) { - let currentValue = - typeof p0[i] === 'number' ? p0[i] + (p1[i] - p0[i]) * t : p1[i]; - if (isRGBColor(p0, i) || isRGBColor(p0, i, RGBA)) { - currentValue |= 0; - } - STRING_BUFFER += currentValue; - } - return STRING_BUFFER; - } - for (let p = 0, len = v.length; p < len; p++) { - v[p] = Interpolation.Utils.Linear(p0[p], p1[p], t, v[p]); - } - } else { - for (const p in v) { - v[p] = Interpolation.Utils.Linear(p0[p], p1[p], t, v[p]); - } - } - return v; - } - }, - - Reset(value) { - if (Array.isArray(value)) { - for (let i = 0, len = value.length; i < len; i++) { - value[i] = Interpolation.Utils.Reset(value[i]); - } - return value; - } else if (typeof value === 'object') { - for (let i in value) { - value[i] = Interpolation.Utils.Reset(value[i]); - } - return value; - } else if (typeof value === 'number') { - return 0; - } - return value; - }, - - Bernstein(n, i) { - const fc = Interpolation.Utils.Factorial; - - return fc(n) / fc(i) / fc(n - i); - }, - - Factorial: (function() { - const a = [1]; - - return n => { - let s = 1; - - if (a[n]) { - return a[n]; - } - - for (let i = n; i > 1; i--) { - s *= i; - } - - a[n] = s; - return s; - }; - })(), - - CatmullRom(p0, p1, p2, p3, t, v?) { - if (typeof p0 === 'string') { - return p1; - } else if (typeof p0 === 'number') { - const v0 = (p2 - p0) * 0.5; - const v1 = (p3 - p1) * 0.5; - const t2 = t * t; - const t3 = t * t2; - - return ( - (2 * p1 - 2 * p2 + v0 + v1) * t3 + - (-3 * p1 + 3 * p2 - 2 * v0 - v1) * t2 + - v0 * t + - p1 - ); - } else if (typeof p0 === 'object') { - if (p0.length !== undefined) { - if (p0[0] === STRING_PROP) { - let STRING_BUFFER = ''; - for (let i = 1, len = p0.length; i < len; i++) { - let currentValue = - typeof p0[i] === 'number' - ? Interpolation.Utils.CatmullRom( - p0[i], - p1[i], - p2[i], - p3[i], - t - ) - : p3[i]; - if (isRGBColor(p0, i) || isRGBColor(p0, i, RGBA)) { - currentValue |= 0; - } - STRING_BUFFER += currentValue; - } - return STRING_BUFFER; - } - for (let p = 0, len = v.length; p < len; p++) { - v[p] = Interpolation.Utils.CatmullRom( - p0[p], - p1[p], - p2[p], - p3[p], - t, - v[p] - ); - } - } else { - for (const p in v) { - v[p] = Interpolation.Utils.CatmullRom( - p0[p], - p1[p], - p2[p], - p3[p], - t, - v[p] - ); - } - } - return v; - } - }, - }, -}; - -export default Interpolation; diff --git a/ts/Interpolator.ts b/ts/Interpolator.ts deleted file mode 100644 index 703b84a..0000000 --- a/ts/Interpolator.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { decompose, recompose, decomposeString, STRING_PROP } from './constants' - -/** - * Tween helper for plugins - * @namespace TWEEN.Interpolator - * @memberof TWEEN - * @param {any} a - Initial position - * @param {any} b - End position - * @return {Function} Returns function that accepts number between `0-1` - */ -const Interpolator = (a: any, b: any): Function => { - let isArray: boolean = Array.isArray(a); - let origin: any = typeof a === 'string' ? a : isArray ? a.slice() : {...a}; - if (isArray) { - for (let i = 0, len = a.length; i < len; i++) { - decompose(i, origin, a, b) - } - } else if (typeof a === 'object') { - for (let i in a) { - decompose(i, origin, a, b) - } - } else if (typeof a === 'string') { - a = decomposeString(a) - b = decomposeString(b) - - let i = 1; - while (i < a.length) { - if (a[i] === b[i] && typeof a[i - 1] === 'string') { - a.splice(i - 1, 2, a[i - 1] + a[i]) - b.splice(i - 1, 2, b[i - 1] + b[i]) - } else { - i++ - } - } - - let c = {isString:true,length:a.length} - let d = {isString:true,length:b.length} - - while (i < c.length) { - c[i] = a[i] - d[i] = b[i] - i++ - } - } - return function (t: number) { - if (isArray) { - for (let i = 0, len = a.length; i < len; i++) { - recompose(i, origin, a, b, t) - } - } else if (typeof origin === 'object') { - for (let i in a) { - recompose(i, origin, a, b, t) - } - } else if (typeof origin === 'string') { - origin = recompose(0, 0, a, b, t, t, true) - } - return origin; - } -} - -export default Interpolator \ No newline at end of file diff --git a/ts/NodeCache.ts b/ts/NodeCache.ts deleted file mode 100644 index 97a2312..0000000 --- a/ts/NodeCache.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { remove } from './core'; - -export const Store: Object = {}; -export default function(node, object, tween) { - if (!node || !node.nodeType) { - return object; - } - const ID: string = node.queueID || 'q_' + Date.now(); - if (!node.queueID) { - node.queueID = ID; - } - const storeID = Store[ID]; - if (storeID) { - if ( - storeID.object === object && - node === storeID.tween.node && - tween._startTime === storeID.tween._startTime - ) { - remove(storeID.tween); - } else if (typeof object === 'object' && !!object && !!storeID.object) { - for (let prop in object) { - if (prop in storeID.object) { - if (tween._startTime === storeID.tween._startTime) { - delete storeID.object[prop]; - } else { - storeID.propNormaliseRequired = true; - } - } - } - storeID.object = {...storeID.object, ...object} - } - return storeID.object; - } - - if (typeof object === 'object' && !!object) { - Store[ID] = { tween, object, propNormaliseRequired: false }; - return Store[ID].object; - } - - return object; -} diff --git a/ts/PlaybackPosition.ts b/ts/PlaybackPosition.ts deleted file mode 100644 index 3f8ea91..0000000 --- a/ts/PlaybackPosition.ts +++ /dev/null @@ -1,68 +0,0 @@ -export default class PlaybackPosition { - private totalTime: number; - private labels: string[]; - private offsets: number[]; - constructor() { - this.totalTime = 0; - this.labels = []; - this.offsets = []; - } - public parseLabel(name, offset) { - const { offsets, labels } = this; - let i = labels.indexOf(name); - if ( - typeof name === 'string' && - name.indexOf('=') !== -1 && - !offset && - i === -1 - ) { - const rty = name.substr(name.indexOf('=') - 1, 2); - const rt = name.split(rty); - offset = rt.length === 2 ? rty + rt[1] : null; - name = rt[0]; - i = labels.indexOf(name); - } - if (i !== -1 && name) { - let currOffset = offsets[i] || 0; - if (typeof offset === 'number') { - currOffset = offset; - } else if (typeof offset === 'string') { - if (offset.indexOf('=') !== -1) { - const type = offset.charAt(0); - offset = Number(offset.substr(2)); - if (type === '+' || type === '-') { - currOffset += parseFloat(type + offset); - } else if (type === '*') { - currOffset *= offset; - } else if (type === '/') { - currOffset /= offset; - } else if (type === '%') { - currOffset *= offset / 100; - } - } - } - return currOffset; - } - return typeof offset === 'number' ? offset : 0; - } - public addLabel(name, offset) { - this.labels.push(name); - this.offsets.push(this.parseLabel(name, offset)); - return this; - } - public setLabel(name, offset) { - const i = this.labels.indexOf(name); - if (i !== -1) { - this.offsets.splice(i, 1, this.parseLabel(name, offset)); - } - return this; - } - public eraseLabel(name) { - const i = this.labels.indexOf(name); - if (i !== -1) { - this.labels.splice(i, 1); - this.offsets.splice(i, 1); - } - return this; - } -} diff --git a/ts/Tween.ts b/ts/Tween.ts deleted file mode 100644 index 4873862..0000000 --- a/ts/Tween.ts +++ /dev/null @@ -1,895 +0,0 @@ -import { add, now, Plugins, remove } from './core'; -import Easing from './Easing'; -import Interpolation from './Interpolation'; -import NodeCache, { Store } from './NodeCache'; -import Selector from './selector'; -import { - decompose, - decomposeString, - recompose, - deepCopy, - SET_NESTED, - STRING_PROP, - EVENT_CALLBACK, - CHAINED_TWEENS, - EVENT_UPDATE, - EVENT_COMPLETE, - EVENT_START, - EVENT_REPEAT, - EVENT_REVERSE, - EVENT_PAUSE, - EVENT_PLAY, - EVENT_RESTART, - EVENT_STOP, - EVENT_SEEK, - FRAME_MS, - TOO_LONG_FRAME_MS, - DECIMAL, -} from './constants'; - -let _id = 0; // Unique ID -const defaultEasing = Easing.Linear.None; - -export interface Params { - quickRender?: boolean; -} - -/** - * Tween main constructor - * @constructor - * @class - * @namespace TWEEN.Tween - * @param {Object|Element} node Node Element or Tween initial object - * @param {Object=} object If Node Element is using, second argument is used for Tween initial object - * @example let tween = new Tween(myNode, {width:'100px'}).to({width:'300px'}, 2000).start() - */ -class Tween { - public id: number; - public object: Object; - public _valuesStart: Object; - public _valuesEnd: Object; - public _duration: number; - public _easingFunction: Function; - public _easingReverse: Function; - public _interpolationFunction: Function; - public _startTime: number; - public _initTime: number; - public _delayTime: number; - public _reverseDelayTime: number; - public _repeat: number; - public _yoyo: boolean; - public _pausedTime: number; - public node: any; - public _r: number; - public _reversed: boolean; - public _isFinite: boolean; - public _isPlaying: boolean; - public elapsed: number; - public _prevTime: number; - private _onStartCallbackFired: boolean; - private _rendered: boolean; - private __render: boolean; - public static Renderer: any; - private InitialValues: any; - private _maxListener: number; - private _chainedTweensCount: number = 0; - /** - * Easier way to call the Tween - * @param {Element} node DOM Element - * @param {object} object - Initial value - * @param {object} to - Target value - * @param {object} params - Options of tweens - * @example Tween.fromTo(node, {x:0}, {x:200}, {duration:1000}) - * @memberof TWEEN.Tween - * @static - */ - public static fromTo(node, object, to, params: Params = {}) { - params.quickRender = params.quickRender ? params.quickRender : !to; - const tween = new Tween(node, object).to(to, params); - if (params.quickRender) { - tween.render().update(tween._startTime); - tween._rendered = false; - tween._onStartCallbackFired = false; - } - return tween; - } - /** - * Easier way calling constructor only applies the `to` value, useful for CSS Animation - * @param {Element} node DOM Element - * @param {object} to - Target value - * @param {object} params - Options of tweens - * @example Tween.to(node, {x:200}, {duration:1000}) - * @memberof TWEEN.Tween - * @static - */ - public static to(node, to, params) { - return Tween.fromTo(node, null, to, params); - } - /** - * Easier way calling constructor only applies the `from` value, useful for CSS Animation - * @param {Element} node DOM Element - * @param {object} from - Initial value - * @param {object} params - Options of tweens - * @example Tween.from(node, {x:200}, {duration:1000}) - * @memberof TWEEN.Tween - * @static - */ - public static from(node, from, params) { - return Tween.fromTo(node, from, null, params); - } - constructor(node?: any, object?: Object) { - this.id = _id++; - if (!!node && typeof node === 'object' && !object && !node.nodeType) { - object = this.object = node; - node = null; - } else if ( - !!node && - (node.nodeType || node.length || typeof node === 'string') - ) { - node = this.node = Selector(node); - object = this.object = NodeCache(node, object, this); - } - this._valuesEnd = null; - this._valuesStart = {}; - - this._duration = 1000; - this._easingFunction = defaultEasing; - this._easingReverse = defaultEasing; - this._interpolationFunction = Interpolation.Linear; - - this._startTime = 0; - this._initTime = 0; - this._delayTime = 0; - this._repeat = 0; - this._r = 0; - this._isPlaying = false; - this._yoyo = false; - this._reversed = false; - - this._onStartCallbackFired = false; - this._pausedTime = null; - this._isFinite = true; - this._maxListener = 15; - this._prevTime = null; - - return this; - } - - /** - * Sets max `event` listener's count to Events system - * @param {number} count - Event listener's count - * @memberof TWEEN.Tween - */ - setMaxListener(count: number = 15) { - this._maxListener = count; - return this; - } - - /** - * Adds `event` to Events system - * @param {string} event - Event listener name - * @param {Function} callback - Event listener callback - * @memberof TWEEN.Tween - */ - public on(event: string, callback: Function) { - const { _maxListener } = this; - const callbackName = event + EVENT_CALLBACK; - for (let i = 0; i < _maxListener; i++) { - const callbackId = callbackName + i; - if (!this[callbackId]) { - this[callbackId] = callback; - break; - } - } - return this; - } - - /** - * Adds `event` to Events system. - * Removes itself after fired once - * @param {string} event - Event listener name - * @param {Function} callback - Event listener callback - * @memberof TWEEN.Tween - */ - public once(event: string, callback: Function) { - const { _maxListener } = this; - const callbackName = event + EVENT_CALLBACK; - for (let i = 0; i < _maxListener; i++) { - const callbackId = callbackName + i; - if (!this[callbackId]) { - this[callbackId] = (...args) => { - callback.apply(this, args); - this[callbackId] = null; - }; - break; - } - } - return this; - } - - /** - * Removes `event` from Events system - * @param {string} event - Event listener name - * @param {Function} callback - Event listener callback - * @memberof TWEEN.Tween - */ - public off(event: string, callback: Function) { - const { _maxListener } = this; - const callbackName = event + EVENT_CALLBACK; - for (let i = 0; i < _maxListener; i++) { - const callbackId = callbackName + i; - if (this[callbackId] === callback) { - this[callbackId] = null; - } - } - return this; - } - - /** - * Emits/Fired/Trigger `event` from Events system listeners - * @param {string} event - Event listener name - * @memberof TWEEN.Tween - */ - public emit(event: string, arg1?: any, arg2?: any, arg3?: any, arg4?: any) { - const { _maxListener } = this; - const callbackName = event + EVENT_CALLBACK; - - if (!this[callbackName + 0]) { - return this; - } - for (let i = 0; i < _maxListener; i++) { - const callbackId = callbackName + i; - if (this[callbackId]) { - this[callbackId](arg1, arg2, arg3, arg4); - } - } - return this; - } - - /** - * @return {boolean} State of playing of tween - * @example tween.isPlaying() // returns `true` if tween in progress - * @memberof TWEEN.Tween - */ - public isPlaying(): boolean { - return this._isPlaying; - } - - /** - * @return {boolean} State of started of tween - * @example tween.isStarted() // returns `true` if tween in started - * @memberof TWEEN.Tween - */ - public isStarted(): boolean { - return this._onStartCallbackFired; - } - - /** - * Reverses the tween state/direction - * @example tween.reverse() - * @param {boolean=} state Set state of current reverse - * @memberof TWEEN.Tween - */ - public reverse(state?: boolean) { - const { _reversed } = this; - - this._reversed = state !== undefined ? state : !_reversed; - - return this; - } - - /** - * @return {boolean} State of reversed - * @example tween.reversed() // returns `true` if tween in reversed state - * @memberof TWEEN.Tween - */ - public reversed(): boolean { - return this._reversed; - } - - /** - * Pauses tween - * @example tween.pause() - * @memberof TWEEN.Tween - */ - public pause() { - if (!this._isPlaying) { - return this; - } - - this._isPlaying = false; - - remove(this); - this._pausedTime = now(); - - return this.emit(EVENT_PAUSE, this.object); - } - - /** - * Play/Resume the tween - * @example tween.play() - * @memberof TWEEN.Tween - */ - public play() { - if (this._isPlaying) { - return this; - } - - this._isPlaying = true; - - this._startTime += now() - this._pausedTime; - this._initTime = this._startTime; - add(this); - this._pausedTime = now(); - - return this.emit(EVENT_PLAY, this.object); - } - - /** - * Restarts tween from initial value - * @param {boolean=} noDelay If this param is set to `true`, restarts tween without `delay` - * @example tween.restart() - * @memberof TWEEN.Tween - */ - public restart(noDelay?: boolean) { - this._repeat = this._r; - this.reassignValues(); - - add(this); - - return this.emit(EVENT_RESTART, this.object); - } - - /** - * Seek tween value by `time`. Note: Not works as excepted. PR are welcome - * @param {Time} time Tween update time - * @param {boolean=} keepPlaying When this param is set to `false`, tween pausing after seek - * @example tween.seek(500) - * @memberof TWEEN.Tween - * @deprecated Not works as excepted, so we deprecated this method - */ - public seek(time: number, keepPlaying?: boolean) { - const { - _duration, - _repeat, - _initTime, - _startTime, - _delayTime, - _reversed, - } = this; - - let updateTime: number = _initTime + time; - this._isPlaying = true; - - if (updateTime < _startTime && _startTime >= _initTime) { - this._startTime -= _duration; - this._reversed = !_reversed; - } - - this.update(time, false); - - this.emit(EVENT_SEEK, time, this.object); - - return keepPlaying ? this : this.pause(); - } - - /** - * Sets tween duration - * @param {number} amount Duration is milliseconds - * @example tween.duration(2000) - * @memberof TWEEN.Tween - */ - public duration(amount: number) { - this._duration = - typeof amount === 'function' ? amount(this._duration) : amount; - - return this; - } - - /** - * Sets target value and duration - * @param {object} properties Target value (to value) - * @param {number|Object=} [duration=1000] Duration of tween - * @example let tween = new Tween({x:0}).to({x:100}, 2000) - * @memberof TWEEN.Tween - */ - public to(properties: Object, duration: any = 1000, maybeUsed?: any) { - this._valuesEnd = properties; - - if (typeof duration === 'number' || typeof duration === 'function') { - this._duration = - typeof duration === 'function' ? duration(this._duration) : duration; - } else if (typeof duration === 'object') { - for (const prop in duration) { - if (typeof this[prop] === 'function') { - const [ - arg1 = null, - arg2 = null, - arg3 = null, - arg4 = null, - ] = Array.isArray(duration[prop]) ? duration[prop] : [duration[prop]]; - this[prop](arg1, arg2, arg3, arg4); - } - } - } - - return this; - } - - /** - * Renders and computes value at first render - * @private - * @memberof TWEEN.Tween - */ - public render() { - if (this._rendered) { - return this; - } - let { - _valuesStart, - _valuesEnd, - object, - node, - InitialValues, - _easingFunction, - } = this; - - SET_NESTED(object); - SET_NESTED(_valuesEnd); - - if (node && node.queueID && Store[node.queueID]) { - const prevTweenByNode = Store[node.queueID]; - if ( - prevTweenByNode.propNormaliseRequired && - prevTweenByNode.tween !== this - ) { - for (const property in _valuesEnd) { - if (prevTweenByNode.tween._valuesEnd[property] !== undefined) { - //delete prevTweenByNode.tween._valuesEnd[property]; - } - } - prevTweenByNode.normalisedProp = true; - prevTweenByNode.propNormaliseRequired = false; - } - } - - if (node && InitialValues) { - if (!object || Object.keys(object).length === 0) { - object = this.object = NodeCache( - node, - InitialValues(node, _valuesEnd), - this - ); - } else if (!_valuesEnd || Object.keys(_valuesEnd).length === 0) { - _valuesEnd = this._valuesEnd = InitialValues(node, object); - } - } - for (const property in _valuesEnd) { - let start = object && object[property] && deepCopy(object[property]); - let end = _valuesEnd[property]; - if (Plugins[property] && Plugins[property].init) { - Plugins[property].init.call(this, start, end, property, object); - if (start === undefined && _valuesStart[property]) { - start = _valuesStart[property]; - } - if (Plugins[property].skipProcess) { - continue; - } - } - if ( - (typeof start === 'number' && isNaN(start)) || - start === null || - end === null || - start === false || - end === false || - start === undefined || - end === undefined || - start === end - ) { - continue; - } - if (Array.isArray(end) && !Array.isArray(start)) { - end.unshift(start); - for (let i = 0, len = end.length; i < len; i++) { - if (typeof end[i] === 'string') { - let arrayOfStrings = decomposeString(end[i]); - let stringObject = {length: arrayOfStrings.length, isString: true} - for (let ii = 0, len2 = arrayOfStrings.length; ii < len2; ii++) { - stringObject[ii] = arrayOfStrings[ii] - } - end[i] = stringObject - } - } - } - _valuesStart[property] = start; - if (typeof start === 'number' && typeof end === 'string' && end[1] === '=') { - continue - } - decompose(property, object, _valuesStart, _valuesEnd); - } - - if (Tween.Renderer && this.node && Tween.Renderer.init) { - Tween.Renderer.init.call(this, object, _valuesStart, _valuesEnd); - this.__render = true; - } - - return this; - } - - /** - * Start the tweening - * @param {number|string} time setting manual time instead of Current browser timestamp or like `+1000` relative to current timestamp - * @example tween.start() - * @memberof TWEEN.Tween - */ - public start(time?: number | string) { - this._startTime = - time !== undefined - ? typeof time === 'string' ? now() + parseFloat(time) : time - : now(); - this._startTime += this._delayTime; - this._initTime = this._prevTime = this._startTime; - - this._onStartCallbackFired = false; - this._rendered = false; - this._isPlaying = true; - - add(this); - - return this; - } - - /** - * Stops the tween - * @example tween.stop() - * @memberof TWEEN.Tween - */ - public stop() { - let { - _isPlaying, - _isFinite, - object, - _startTime, - _delayTime, - _duration, - _r, - _yoyo, - _reversed, - } = this; - - if (!_isPlaying) { - return this; - } - - let atStart = _isFinite ? (_r + 1) % 2 === 1 : !_reversed; - - this._reversed = false; - - if (_yoyo && atStart) { - this.update(_startTime); - } else { - this.update(_startTime + _duration); - } - remove(this); - - return this.emit(EVENT_STOP, object); - } - - /** - * Set delay of tween - * @param {number} amount Sets tween delay / wait duration - * @example tween.delay(500) - * @memberof TWEEN.Tween - */ - public delay(amount: number) { - this._delayTime = - typeof amount === 'function' ? amount(this._delayTime) : amount; - - return this; - } - - /** - * Chained tweens - * @param {any} arguments Arguments list - * @example tween.chainedTweens(tween1, tween2) - * @memberof TWEEN.Tween - */ - public chainedTweens() { - this._chainedTweensCount = arguments.length; - if (!this._chainedTweensCount) { - return this; - } - for (let i = 0, len = this._chainedTweensCount; i < len; i++) { - this[CHAINED_TWEENS + i] = arguments[i]; - } - - return this; - } - - /** - * Sets how times tween is repeating - * @param {amount} amount the times of repeat - * @example tween.repeat(5) - * @memberof TWEEN.Tween - */ - public repeat(amount: number) { - this._repeat = !this._duration - ? 0 - : typeof amount === 'function' ? amount(this._repeat) : amount; - this._r = this._repeat; - this._isFinite = isFinite(amount); - - return this; - } - - /** - * Set delay of each repeat alternate of tween - * @param {number} amount Sets tween repeat alternate delay / repeat alternate wait duration - * @example tween.reverseDelay(500) - * @memberof TWEEN.Tween - */ - public reverseDelay(amount: number) { - this._reverseDelayTime = - typeof amount === 'function' ? amount(this._reverseDelayTime) : amount; - - return this; - } - - /** - * Set `yoyo` state (enables reverse in repeat) - * @param {boolean} state Enables alternate direction for repeat - * @param {Function=} _easingReverse Easing function in reverse direction - * @example tween.yoyo(true) - * @memberof TWEEN.Tween - */ - public yoyo(state: boolean, _easingReverse?: Function) { - this._yoyo = - typeof state === 'function' - ? state(this._yoyo) - : state === null ? this._yoyo : state; - if (!state) { - this._reversed = false; - } - this._easingReverse = _easingReverse || null; - - return this; - } - - /** - * Set easing - * @param {Function} _easingFunction Easing function, applies in non-reverse direction if Tween#yoyo second argument is applied - * @example tween.easing(Easing.Elastic.InOut) - * @memberof TWEEN.Tween - */ - public easing(_easingFunction: Function) { - this._easingFunction = _easingFunction; - - return this; - } - - /** - * Set interpolation - * @param {Function} _interpolationFunction Interpolation function - * @example tween.interpolation(Interpolation.Bezier) - * @memberof TWEEN.Tween - */ - public interpolation(_interpolationFunction: Function) { - if (typeof _interpolationFunction === 'function') { - this._interpolationFunction = _interpolationFunction; - } - - return this; - } - - /** - * Reassigns value for rare-case like Tween#restart or for Timeline - * @private - * @memberof TWEEN.Tween - */ - public reassignValues(time?: number) { - const { _valuesStart, object, _delayTime } = this; - - this._isPlaying = true; - this._startTime = time !== undefined ? time : now(); - this._startTime += _delayTime; - this._reversed = false; - add(this); - - for (const property in _valuesStart) { - const start = _valuesStart[property]; - - object[property] = start; - } - - return this; - } - - /** - * Updates initial object to target value by given `time` - * @param {Time} time Current time - * @param {boolean=} preserve Prevents from removing tween from store - * @param {boolean=} forceTime Forces to be frame rendered, even mismatching time - * @example tween.update(100) - * @memberof TWEEN.Tween - */ - public update(time?: number, preserve?: boolean, forceTime?: boolean) { - let { - _onStartCallbackFired, - _easingFunction, - _interpolationFunction, - _easingReverse, - _repeat, - _delayTime, - _reverseDelayTime, - _yoyo, - _reversed, - _startTime, - _prevTime, - _duration, - _valuesStart, - _valuesEnd, - object, - _isFinite, - _isPlaying, - __render, - _chainedTweensCount, - } = this; - - let elapsed: number; - let currentEasing: Function; - let property: string; - let propCount: number = 0; - - if (!_duration) { - elapsed = 1; - _repeat = 0; - } else { - time = time !== undefined ? time : now(); - - let delta: number = time - _prevTime; - this._prevTime = time; - if (delta > TOO_LONG_FRAME_MS) { - time -= delta - FRAME_MS; - } - - if (!_isPlaying || (time < _startTime && !forceTime)) { - return true; - } - - elapsed = (time - _startTime) / _duration; - elapsed = elapsed > 1 ? 1 : elapsed; - elapsed = _reversed ? 1 - elapsed : elapsed; - } - - if (!_onStartCallbackFired) { - if (!this._rendered) { - this.render(); - this._rendered = true; - } - - this.emit(EVENT_START, object); - - this._onStartCallbackFired = true; - } - - currentEasing = _reversed - ? _easingReverse || _easingFunction - : _easingFunction; - - if (!object) { - return true; - } - - for (property in _valuesEnd) { - const start = _valuesStart[property]; - if ( - (start === undefined || start === null) && - !(Plugins[property] && Plugins[property].update) - ) { - continue; - } - const end = _valuesEnd[property]; - const value = currentEasing[property] - ? currentEasing[property](elapsed) - : typeof currentEasing === 'function' - ? currentEasing(elapsed) - : defaultEasing(elapsed); - const _interpolationFunctionCall = _interpolationFunction[property] - ? _interpolationFunction[property] - : typeof _interpolationFunction === 'function' - ? _interpolationFunction - : Interpolation.Linear; - - if (typeof end === 'number') { - object[property] = - (((start + (end - start) * value) * DECIMAL) | 0) / DECIMAL; - } else if (Array.isArray(end) && !Array.isArray(start)) { - object[property] = _interpolationFunctionCall( - end, - value, - object[property] - ); - } else if (end && end.update) { - end.update(value); - } else if (typeof end === 'function') { - object[property] = end(value); - } else if (typeof end === 'string' && typeof start === 'number') { - object[property] = start + parseFloat(end[0] + end.substr(2)) * value - } else { - recompose(property, object, _valuesStart, _valuesEnd, value, elapsed); - } - if (Plugins[property] && Plugins[property].update) { - Plugins[property].update.call( - this, - object[property], - start, - end, - value, - elapsed, - property - ); - } - propCount++; - } - - if (!propCount) { - remove(this); - return false; - } - - if (__render && Tween.Renderer && Tween.Renderer.update) { - Tween.Renderer.update.call(this, object, elapsed); - } - - this.emit(EVENT_UPDATE, object, elapsed, time); - - if (elapsed === 1 || (_reversed && elapsed === 0)) { - if (_repeat > 0 && _duration > 0) { - if (_isFinite) { - this._repeat--; - } - - if (_yoyo) { - this._reversed = !_reversed; - } else { - for (property in _valuesEnd) { - let end = _valuesEnd[property] - if (typeof end === 'string' && typeof _valuesStart[property] === 'number') { - _valuesStart[property] += parseFloat(end[0] + end.substr(2)) - } - } - } - - this.emit(_yoyo && !_reversed ? EVENT_REVERSE : EVENT_REPEAT, object); - - if (_reversed && _reverseDelayTime) { - this._startTime = time - _reverseDelayTime; - } else { - this._startTime = time + _delayTime; - } - - return true; - } else { - if (!preserve) { - this._isPlaying = false; - remove(this); - _id--; - } - this.emit(EVENT_COMPLETE, object); - this._repeat = this._r; - - if (_chainedTweensCount) { - for (let i = 0; i < _chainedTweensCount; i++) { - this[CHAINED_TWEENS + i].start(time + _duration); - } - } - - return false; - } - } - - return true; - } -} - -export default Tween; diff --git a/ts/constants.ts b/ts/constants.ts deleted file mode 100644 index dfbdfbc..0000000 --- a/ts/constants.ts +++ /dev/null @@ -1,284 +0,0 @@ -// Frame lag-fix constants -export const FRAME_MS = 50 / 3; -export const TOO_LONG_FRAME_MS = 250; - -export const CHAINED_TWEENS = '_chainedTweens'; - -// Event System -export const EVENT_CALLBACK = 'Callback'; -export const EVENT_UPDATE = 'update'; -export const EVENT_COMPLETE = 'complete'; -export const EVENT_START = 'start'; -export const EVENT_REPEAT = 'repeat'; -export const EVENT_REVERSE = 'reverse'; -export const EVENT_PAUSE = 'pause'; -export const EVENT_PLAY = 'play'; -export const EVENT_RESTART = 'restart'; -export const EVENT_STOP = 'stop'; -export const EVENT_SEEK = 'seek'; - -// For String tweening stuffs -export const STRING_PROP = 'STRING_PROP'; -// Also RegExp's for string tweening -export const NUM_REGEX = /\s+|([A-Za-z?().,{}:""[\]#\%]+)|([-+]=+)?([-+]+)?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]=?\d+)?/g; -export const HEXC_REGEX = /^#([0-9a-f]{6}|[0-9a-f]{3})$/i; - -// Copies everything, duplicates, no shallow-copy -export function deepCopy(source) { - if ((source && source.nodeType) || source === undefined || typeof source !== 'object') { - return source; - } else if (Array.isArray(source)) { - return [].concat(source); - } else if (typeof source === 'object') { - let target = {}; - for (let prop in source) { - target[prop] = deepCopy(source[prop]); - } - return target; - } - return source; -} - -const isNaNForST = v => - isNaN(+v) || ((v[0] === '+' || v[0] === '-') && v[1] === '=') || v === '' || v === ' '; - -const hexColor = /^#([0-9a-f]{6}|[0-9a-f]{3})$/i; -const hex2rgb = (all, hex) => { - let r; - let g; - let b; - if (hex.length === 3) { - r = hex[0]; - g = hex[1]; - b = hex[2]; - hex = r + r + g + g + b + b; - } - let color = parseInt(hex, 16); - r = color >> 16 & 255; - g = color >> 8 & 255; - b = color & 255; - return "rgb(" + r + "," + g + "," + b + ")"; -}; - -export function decomposeString(fromValue: string): any[] { - return typeof fromValue !== 'string' ? fromValue : fromValue.replace(hexColor, hex2rgb).match(NUM_REGEX).map(v => (isNaNForST(v) ? v : +v)); -} - -// Decompose value, now for only `string` that required -export function decompose(prop, obj, from, to, stringBuffer?) { - const fromValue = from[prop]; - const toValue = to[prop]; - - if (typeof fromValue === 'string' || typeof toValue === 'string') { - let fromValue1 = Array.isArray(fromValue) && fromValue[0] === STRING_PROP ? fromValue : decomposeString(fromValue); - let toValue1 = Array.isArray(toValue) && toValue[0] === STRING_PROP ? toValue : decomposeString(toValue); - - let i = 1; - while (i < fromValue1.length) { - if (fromValue1[i] === toValue1[i] && typeof fromValue1[i - 1] === 'string') { - fromValue1.splice(i - 1, 2, fromValue1[i - 1] + fromValue1[i]) - toValue1.splice(i - 1, 2, toValue1[i - 1] + toValue1[i]) - } else { - i++ - } - } - - i = 0; - - if (fromValue1[0] === STRING_PROP) { - fromValue1.shift() - } - if (toValue1[0] === STRING_PROP) { - toValue1.shift() - } - - let fromValue2 = {isString:true,length:fromValue1.length} - let toValue2 = {isString:true,length:toValue1.length} - - while (i < fromValue2.length) { - fromValue2[i] = fromValue1[i] - toValue2[i] = toValue1[i] - i++ - } - - from[prop] = fromValue2; - to[prop] = toValue2; - return true; - } else if (typeof fromValue === 'object' && typeof toValue === 'object') { - if (Array.isArray(fromValue)) { - return fromValue.map((v, i) => - decompose(i, obj[prop], fromValue, toValue) - ); - } else { - for (let prop2 in toValue) { - decompose(prop2, obj[prop], fromValue, toValue); - } - } - return true; - } - return false; -} - -// Recompose value -export const DECIMAL = Math.pow(10, 4); -export const RGB = 'rgb('; -export const RGBA = 'rgba('; - -export const isRGBColor = (v, i, r = RGB) => - typeof v[i] === 'number' && - (v[i - 1] === r || v[i - 3] === r || v[i - 5] === r); -export function recompose(prop, obj, from, to, t, originalT?, stringBuffer?) { - const fromValue = stringBuffer ? from : from[prop]; - const toValue = stringBuffer ? to : to[prop]; - if (toValue === undefined) { - return fromValue; - } - if ( - fromValue === undefined || - typeof fromValue === 'string' || - fromValue === toValue - ) { - return toValue; - } else if (typeof fromValue === 'object' && typeof toValue === 'object') { - if (!fromValue || !toValue) { - return obj[prop]; - } - if (typeof fromValue === 'object' && !!fromValue && fromValue.isString) { - let STRING_BUFFER = ''; - for (let i = 0, len = fromValue.length; i < len; i++) { - const isRelative = typeof fromValue[i] === 'number' && typeof toValue[i] === 'string' && toValue[i][1] === '='; - let currentValue = - typeof fromValue[i] !== 'number' - ? fromValue[i] - : (((isRelative - ? fromValue[i] + - parseFloat(toValue[i][0] + toValue[i].substr(2)) * t - : fromValue[i] + (toValue[i] - fromValue[i]) * t) * - DECIMAL) | - 0) / - DECIMAL; - if (isRGBColor(fromValue, i) || isRGBColor(fromValue, i, RGBA)) { - currentValue |= 0; - } - STRING_BUFFER += currentValue; - if (isRelative && originalT === 1) { - fromValue[i] = - fromValue[i] + - parseFloat(toValue[i][0] + toValue[i].substr(2)); - } - } - if (!stringBuffer) { - obj[prop] = STRING_BUFFER; - } - return STRING_BUFFER; - } else if (Array.isArray(fromValue) && fromValue[0] !== STRING_PROP) { - for (let i = 0, len = fromValue.length; i < len; i++) { - if (fromValue[i] === toValue[i]) { - continue; - } - recompose(i, obj[prop], fromValue, toValue, t, originalT); - } - } else if (typeof fromValue === 'object' && !!fromValue && !fromValue.isString) { - for (let i in fromValue) { - if (fromValue[i] === toValue[i]) { - continue; - } - recompose(i, obj[prop], fromValue, toValue, t, originalT); - } - } - } else if (typeof fromValue === 'number') { - const isRelative = typeof toValue === 'string'; - obj[prop] = - (((isRelative - ? fromValue + parseFloat(toValue[0] + toValue.substr(2)) * t - : fromValue + (toValue - fromValue) * t) * - DECIMAL) | - 0) / - DECIMAL; - if (isRelative && originalT === 1) { - from[prop] = obj[prop]; - } - } else if (typeof toValue === 'function') { - obj[prop] = toValue(t); - } - return obj[prop]; -} - -// Dot notation => Object structure converter -// example -// {'scale.x.y.z':'VALUE'} => {scale:{x:{y:{z:'VALUE'}}}} -// Only works for 3-level parsing, after 3-level, parsing dot-notation not works as it's not affects -const propRegExp = /([.\[])/g; -const replaceBrace = /\]/g; -const propExtract = function(obj, property) { - const value = obj[property]; - const props = property.replace(replaceBrace, '').split(propRegExp); - const propsLastIndex = props.length - 1; - let lastArr = Array.isArray(obj); - let lastObj = typeof obj === 'object' && !lastArr; - if (lastObj) { - obj[property] = null; - delete obj[property]; - } else if (lastArr) { - obj.splice(property, 1); - } - return props.reduce((nested, prop, index) => { - if (lastArr) { - if (prop !== '.' && prop !== '[') { - prop *= 1; - } - } - let nextProp = props[index + 1]; - let nextIsArray = nextProp === '['; - if (prop === '.' || prop === '[') { - if (prop === '.') { - lastObj = true; - lastArr = false; - } else if (prop === '[') { - lastObj = false; - lastArr = true; - } - return nested; - } else if (nested[prop] === undefined) { - if (lastArr || lastObj) { - nested[prop] = - index === propsLastIndex - ? value - : lastArr || nextIsArray ? [] : lastObj ? {} : null; - lastObj = lastArr = false; - return nested[prop]; - } - } else if (nested[prop] !== undefined) { - if (index === propsLastIndex) { - nested[prop] = value; - } - return nested[prop]; - } - return nested; - }, obj); -}; - -export const SET_NESTED = function(nested) { - if (typeof nested === 'object' && !!nested) { - for (let prop in nested) { - if (prop.indexOf('.') !== -1 || prop.indexOf('[') !== -1) { - propExtract(nested, prop); - } else if (typeof nested[prop] === 'object' && !!nested[prop]) { - let nested2 = nested[prop]; - for (let prop2 in nested2) { - if (prop2.indexOf('.') !== -1 || prop2.indexOf('[') !== -1) { - propExtract(nested2, prop2); - } else if (typeof nested2[prop2] === 'object' && !!nested2[prop2]) { - let nested3 = nested2[prop2]; - for (let prop3 in nested3) { - if (prop3.indexOf('.') !== -1 || prop3.indexOf('[') !== -1) { - propExtract(nested3, prop3); - } - } - } - } - } - } - } - return nested; -}; diff --git a/ts/core.ts b/ts/core.ts deleted file mode 100644 index 158f04c..0000000 --- a/ts/core.ts +++ /dev/null @@ -1,243 +0,0 @@ -/* global process */ -import { cancelAnimationFrame, requestAnimationFrame, root } from './shim'; - -declare let process: any; - -/** - * Get browser/Node.js current time-stamp - * @return Normalised current time-stamp in milliseconds - * @memberof TWEEN - * @example - * TWEEN.now - */ -const now: any = (function() { - if (typeof process !== 'undefined' && process.hrtime !== undefined && (!process.versions || process.versions.electron === undefined)) { - return function() { - const time: number = process.hrtime(); - - // Convert [seconds, nanoseconds] to milliseconds. - return time[0] * 1000 + time[1] / 1000000; - }; - // In a browser, use window.performance.now if it is available. - } else if ( - root.performance !== undefined && - root.performance.now !== undefined - ) { - // This must be bound, because directly assigning this function - // leads to an invocation exception in Chrome. - return root.performance.now.bind(root.performance); - // Use Date.now if it is available. - } else { - const offset: number = - root.performance && - root.performance.timing && - root.performance.timing.navigationStart - ? root.performance.timing.navigationStart - : Date.now(); - return function() { - return Date.now() - offset; - }; - } -})(); - -/** - * Lightweight, effecient and modular ES6 version of tween.js - * @copyright 2017 @dalisoft and es6-tween contributors - * @license MIT - * @namespace TWEEN - * @example - * // ES6 - * const {add, remove, isRunning, autoPlay} = TWEEN - */ -const _tweens: any[] = []; -let isStarted: boolean = false; -let _autoPlay: boolean = false; -let _tick: Function; -const _ticker: Function = requestAnimationFrame; -const _stopTicker: Function = cancelAnimationFrame; -let emptyFrame: number = 0; -let powerModeThrottle: number = 120; - -/** - * Adds tween to list - * @param {Tween} tween Tween instance - * @memberof TWEEN - * @example - * let tween = new Tween({x:0}) - * tween.to({x:200}, 1000) - * TWEEN.add(tween) - */ -const add = (tween: any): void => { - let i: number = _tweens.indexOf(tween); - - if (i > -1) { - _tweens.splice(i, 1); - } - - _tweens.push(tween); - - emptyFrame = 0; - - if (_autoPlay && !isStarted) { - _tick = _ticker(update); - isStarted = true; - } -}; - -/** - * Adds ticker like event - * @param {Function} fn callback - * @memberof TWEEN - * @example - * TWEEN.onTick(time => console.log(time)) - */ -const onTick = (fn: Function) => _tweens.push({ update: fn }); - -/** - * Sets after how much frames empty updating should stop - * @param {number} [frameCount=120] count of frames that should stop after all tweens removed - * @memberof TWEEN - * @example - * TWEEN.FrameThrottle(60) - */ -const FrameThrottle = (frameCount: number = 120) => { - powerModeThrottle = frameCount; -}; - -/** - * @returns {Array} List of tweens in Array - * @memberof TWEEN - * TWEEN.getAll() // list of tweens - */ -const getAll = (): any[] => _tweens; - -/** - * Runs update loop automaticlly - * @param {Boolean} state State of auto-run of update loop - * @example TWEEN.autoPlay(true) - * @memberof TWEEN - */ -const autoPlay = (state: boolean): void => { - _autoPlay = state; -}; - -/** - * Removes all tweens from list - * @example TWEEN.removeAll() // removes all tweens, stored in global tweens list - * @memberof TWEEN - */ -const removeAll = (): void => { - _tweens.length = 0; -}; - -/** - * @param {Tween} tween Tween Instance to be matched - * @return {Tween} Matched tween - * @memberof TWEEN - * @example - * TWEEN.get(tween) - */ -const get = (tween: any): Function | null => { - for (let i: number = 0; i < _tweens.length; i++) { - if (tween === _tweens[i]) { - return _tweens[i]; - } - } - - return null; -}; - -/** - * @param {Tween} tween Tween Instance to be matched - * @return {Boolean} Status of Exists tween or not - * @memberof TWEEN - * @example - * TWEEN.has(tween) - */ -const has = (tween: any): boolean => { - return get(tween) !== null; -}; -/** - * Removes tween from list - * @param {Tween} tween Tween instance - * @memberof TWEEN - * @example - * TWEEN.remove(tween) - */ -const remove = (tween: any): void => { - const i = _tweens.indexOf(tween); - if (i !== -1) { - _tweens.splice(i, 1); - } -}; - -/** - * Updates global tweens by given time - * @param {number=} time Timestamp - * @param {Boolean=} preserve Prevents tween to be removed after finish - * @memberof TWEEN - * @example - * TWEEN.update(500) - */ - -const update = (time?: number, preserve?: boolean): boolean => { - time = time !== undefined ? time : now(); - if (_autoPlay && isStarted) { - _tick = _ticker(update); - } - - if (!_tweens.length) { - emptyFrame++; - } - - if (emptyFrame > powerModeThrottle) { - _stopTicker(_tick); - isStarted = false; - emptyFrame = 0; - return false; - } - - let i: number = 0; - let tween: any; - while (i < _tweens.length) { - _tweens[i++].update(time, preserve); - } - - return true; -}; - -/** - * The state of ticker running - * @return {Boolean} Status of running updates on all tweens - * @memberof TWEEN - * @example TWEEN.isRunning() - */ -const isRunning = (): boolean => isStarted; - -/** - * The plugins store object - * @namespace TWEEN.Plugins - * @memberof TWEEN - * @example - * let num = Plugins.num = function (node, start, end) { - * return t => start + (end - start) * t - * } - * - * @static - */ -const Plugins: Object = {}; - -export { - Plugins, - get, - has, - getAll, - removeAll, - remove, - add, - now, - update, - autoPlay, - onTick, - isRunning, -}; diff --git a/ts/index.ts b/ts/index.ts deleted file mode 100644 index 6e11e19..0000000 --- a/ts/index.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { - add, - onTick, - autoPlay, - get, - getAll, - has, - isRunning, - now, - Plugins, - remove, - removeAll, - update, -} from './core'; -import Easing from './Easing'; -import Interpolation from './Interpolation'; -import Tween from './Tween'; -import Selector from './selector'; -import Interpolator from './Interpolator'; -import './shim'; -export { - Plugins, - Selector, - Interpolator, - onTick, - has, - get, - getAll, - removeAll, - remove, - add, - now, - update, - autoPlay, - isRunning, - Tween, - Easing, - Interpolation -}; diff --git a/ts/selector.ts b/ts/selector.ts deleted file mode 100644 index 34adb67..0000000 --- a/ts/selector.ts +++ /dev/null @@ -1,22 +0,0 @@ -export default function(selector: any, collection?: boolean): any { - if (collection) { - return !selector - ? null - : selector === window || selector === document - ? [selector] - : typeof selector === 'string' - ? !!document.querySelectorAll && document.querySelectorAll(selector) - : Array.isArray(selector) - ? selector - : selector.nodeType ? [selector] : []; - } - return !selector - ? null - : selector === window || selector === document - ? selector - : typeof selector === 'string' - ? !!document.querySelector && document.querySelector(selector) - : Array.isArray(selector) - ? selector[0] - : selector.nodeType ? selector : null; -} diff --git a/ts/shim.ts b/ts/shim.ts deleted file mode 100644 index 8ec204d..0000000 --- a/ts/shim.ts +++ /dev/null @@ -1,23 +0,0 @@ -declare let global: any; -/* global global */ -export let assign = ((source: object, ...args): Object => { - for (let i = 0, len = args.length; i < len; i++) { - const arg = args[i]; - for (const p in arg) { - source[p] = arg[p]; - } - } - return source; - }); -export let create = - Object.create || ((source: object = {}): Object => ({ ...source })); -export let root: any = - typeof window !== 'undefined' - ? window - : typeof global !== 'undefined' ? global : this; -export let requestAnimationFrame: Function = - root.requestAnimationFrame || - ((fn: Function): number => root.setTimeout(fn, 16)); -export let cancelAnimationFrame: Function = - root.cancelAnimationFrame || - ((id: Function): boolean => root.clearTimeout(id)); diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index cff7a7b..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compileOnSave": false, - "compilerOptions": { - "outDir": "./src", - "baseUrl": "ts", - "paths": { - "ts/*": ["./ts/*"] - }, - "sourceMap": false, - "declaration": true, - "removeComments": false, - "moduleResolution": "node", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "noImplicitReturns": true, - "noUnusedLocals": false, - "noUnusedParameters": false, - "allowSyntheticDefaultImports": true, - "target": "es3", - "module": "es6", - "typeRoots": ["node_modules/@types"], - "lib": ["es2015", "es2016", "dom", "es2017.object"] - } -} \ No newline at end of file diff --git a/tslint.json b/tslint.json deleted file mode 100644 index 077404a..0000000 --- a/tslint.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - -} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 69186c1..dc4365f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -38,6 +38,516 @@ imurmurhash "^0.1.4" slide "^1.1.5" +"@babel/code-frame@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9" + dependencies: + "@babel/highlight" "7.0.0-beta.44" + +"@babel/core@^7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.0.0-beta.44.tgz#90bb9e897427e7ebec2a1b857f458ff74ca28057" + dependencies: + "@babel/code-frame" "7.0.0-beta.44" + "@babel/generator" "7.0.0-beta.44" + "@babel/helpers" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + babylon "7.0.0-beta.44" + convert-source-map "^1.1.0" + debug "^3.1.0" + json5 "^0.5.0" + lodash "^4.2.0" + micromatch "^2.3.11" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42" + dependencies: + "@babel/types" "7.0.0-beta.44" + jsesc "^2.5.1" + lodash "^4.2.0" + source-map "^0.5.0" + trim-right "^1.0.1" + +"@babel/helper-annotate-as-pure@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.44.tgz#8ecf33cc5235295afcc7f160a63cab17ce7776f4" + dependencies: + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.0.0-beta.44.tgz#0e86d393c192bc846f871f3fcf4920b08a9cbb27" + dependencies: + "@babel/helper-explode-assignable-expression" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-call-delegate@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.0.0-beta.44.tgz#e644536f8b3d2eabeecca000037cdced8e453d26" + dependencies: + "@babel/helper-hoist-variables" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-define-map@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.0.0-beta.44.tgz#d63578a67c9654ff9f32e55bbf269c2d5f094c97" + dependencies: + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/helper-explode-assignable-expression@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.0.0-beta.44.tgz#1f06b9f76017deac2767ee09f3021d5b209bf5cd" + dependencies: + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-function-name@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd" + dependencies: + "@babel/helper-get-function-arity" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-get-function-arity@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15" + dependencies: + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-hoist-variables@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0-beta.44.tgz#a1bbb2c25f9b4058e041ecc1556f096eacdbd142" + dependencies: + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-module-imports@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.44.tgz#60edc68cdf17e13eaca5be813c96127303085133" + dependencies: + "@babel/types" "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/helper-module-transforms@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.0.0-beta.44.tgz#185dc17b37c4b9cc3daee0f0f44e74f000e21bb7" + dependencies: + "@babel/helper-module-imports" "7.0.0-beta.44" + "@babel/helper-simple-access" "7.0.0-beta.44" + "@babel/helper-split-export-declaration" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/helper-optimise-call-expression@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0-beta.44.tgz#84ceabfb99afc1c185d15668114a697cdad7a5d0" + dependencies: + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-plugin-utils@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0-beta.44.tgz#9f590bc3ae6daa8a10b853233baa3e25d263751d" + +"@babel/helper-regex@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0-beta.44.tgz#f5b6828c1e40f0b74ab6ed90abdd52be0c38a74e" + dependencies: + lodash "^4.2.0" + +"@babel/helper-remap-async-to-generator@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.0.0-beta.44.tgz#8ad8c12a57444042ca281bdb16734841425938ad" + dependencies: + "@babel/helper-annotate-as-pure" "7.0.0-beta.44" + "@babel/helper-wrap-function" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-replace-supers@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.0.0-beta.44.tgz#cf18697951431f533f9d8c201390b158d4a3ee04" + dependencies: + "@babel/helper-optimise-call-expression" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-simple-access@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.0.0-beta.44.tgz#03fb6bfc91eb0a95f6c11499153f8c663654dce5" + dependencies: + "@babel/template" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/helper-split-export-declaration@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc" + dependencies: + "@babel/types" "7.0.0-beta.44" + +"@babel/helper-wrap-function@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.0.0-beta.44.tgz#d128718a543f313264dff7cb386957e3e465c95d" + dependencies: + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/template" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/helpers@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.0.0-beta.44.tgz#b1cc87fdc3b77351c0a4860bcd9d4ef457919bfd" + dependencies: + "@babel/template" "7.0.0-beta.44" + "@babel/traverse" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + +"@babel/highlight@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5" + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +"@babel/plugin-proposal-async-generator-functions@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.0.0-beta.44.tgz#b08d90cd0f6a82e11cb5ae64eee4fba7d0d7999e" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-remap-async-to-generator" "7.0.0-beta.44" + "@babel/plugin-syntax-async-generators" "7.0.0-beta.44" + +"@babel/plugin-proposal-class-properties@^7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.0.0-beta.44.tgz#aff9192a883b41fdf1c73026b9105c92e931c55e" + dependencies: + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/plugin-syntax-class-properties" "7.0.0-beta.44" + +"@babel/plugin-proposal-object-rest-spread@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0-beta.44.tgz#b7817770cb9cf72f2e73ca6fcb83d61a87305259" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.44" + +"@babel/plugin-proposal-optional-catch-binding@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0-beta.44.tgz#87928d30c9fab4803cdba29f9c1260c16bc5d30f" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/plugin-syntax-optional-catch-binding" "7.0.0-beta.44" + +"@babel/plugin-proposal-unicode-property-regex@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0-beta.44.tgz#5efb0ddbe6635b4cb6674e961a16c28cef3cdb7f" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-regex" "7.0.0-beta.44" + regexpu-core "^4.1.3" + +"@babel/plugin-syntax-async-generators@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0-beta.44.tgz#5cf7ec4256ddd7df62654171059188bee2b3addc" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-syntax-class-properties@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.0.0-beta.44.tgz#1e4e67ef6d7101a3a7d2ae5f60e580cbf4b7750f" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-syntax-object-rest-spread@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0-beta.44.tgz#c37d271e4edf8a1b5d4623fb2917ba0f5a9da3b3" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-syntax-optional-catch-binding@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0-beta.44.tgz#c79ee93c371831b104bb0a1cc9c85ac5373af4f3" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-arrow-functions@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0-beta.44.tgz#718dae35046eca6938c731d1eae10c5471c17398" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-async-to-generator@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.0.0-beta.44.tgz#b91881aa6e1a6bd330be31df43a936feeb145c29" + dependencies: + "@babel/helper-module-imports" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-remap-async-to-generator" "7.0.0-beta.44" + +"@babel/plugin-transform-block-scoped-functions@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0-beta.44.tgz#d31bb2231ae861fa4ea6f9974b8b8f5641a3460a" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-block-scoping@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0-beta.44.tgz#a7b640e112743634b9226996e58ab92cdebb4ff0" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/plugin-transform-classes@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.0.0-beta.44.tgz#5410fcf6a9eeba3cc8e25bf0f72b43358336b534" + dependencies: + "@babel/helper-annotate-as-pure" "7.0.0-beta.44" + "@babel/helper-define-map" "7.0.0-beta.44" + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/helper-optimise-call-expression" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-replace-supers" "7.0.0-beta.44" + "@babel/helper-split-export-declaration" "7.0.0-beta.44" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0-beta.44.tgz#1421b4e1a18dc3bd276d8648a12a4f8ea088c6a1" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-destructuring@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0-beta.44.tgz#57c8b40d56db45eaa39b44696818b24004306752" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-dotall-regex@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0-beta.44.tgz#414bd71f39199e45a8ddaa8053cb5bd9690707f4" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-regex" "7.0.0-beta.44" + regexpu-core "^4.1.3" + +"@babel/plugin-transform-duplicate-keys@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0-beta.44.tgz#e945a7990d9adca4f9b58a7af46cdb1515b925b1" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-exponentiation-operator@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.0.0-beta.44.tgz#e6a9699b5036a7a75274e1546c23414ba945a135" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-for-of@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0-beta.44.tgz#b157e38e74c07beacbac01c1946b8ad11dbea32c" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-function-name@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0-beta.44.tgz#8cd5986dac8a0fd0df21b79e9a20de9b2c37b4c4" + dependencies: + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-literals@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0-beta.44.tgz#8c85631ea6fd8a6eecefdb81177ed6ae3d34b195" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-modules-amd@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.0.0-beta.44.tgz#4d2df3f507f00bbbea3bc3ee07505ed97df1f22e" + dependencies: + "@babel/helper-module-transforms" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-modules-commonjs@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.0.0-beta.44.tgz#864a1fef64091bd5241b0aa7d4b235fb29f60580" + dependencies: + "@babel/helper-module-transforms" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-simple-access" "7.0.0-beta.44" + +"@babel/plugin-transform-modules-systemjs@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.0.0-beta.44.tgz#f27e97e592dd9739c8c5df478f1729bb4b63b386" + dependencies: + "@babel/helper-hoist-variables" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-modules-umd@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.0.0-beta.44.tgz#66ca82476b72bfd1ce2d410ceaf2e85c1639a616" + dependencies: + "@babel/helper-module-transforms" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-new-target@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0-beta.44.tgz#7f3a2c46e01b5433093430892fbce287583cb1b8" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-object-super@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.0.0-beta.44.tgz#3c1688a7b38c4de8af269ff5c618cfd602864a39" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-replace-supers" "7.0.0-beta.44" + +"@babel/plugin-transform-parameters@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.0.0-beta.44.tgz#19eaf0b852d58168097435e33e754a00c3507fb9" + dependencies: + "@babel/helper-call-delegate" "7.0.0-beta.44" + "@babel/helper-get-function-arity" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-regenerator@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0-beta.44.tgz#e9a21db8fbedfd99b9e5d04ac405f7440d36b290" + dependencies: + regenerator-transform "^0.12.3" + +"@babel/plugin-transform-shorthand-properties@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0-beta.44.tgz#42e2a31aaa5edf479adaf4c2b677cd3457c99991" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-spread@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0-beta.44.tgz#94cacc3317cb8e2227b543c25b8046d7635d4114" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-sticky-regex@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0-beta.44.tgz#512597cd7535f313aa29f31d0b60572a0374db00" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-regex" "7.0.0-beta.44" + +"@babel/plugin-transform-template-literals@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0-beta.44.tgz#88d4605e63a21a4354837af06371e8c51cd76d08" + dependencies: + "@babel/helper-annotate-as-pure" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-typeof-symbol@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0-beta.44.tgz#ba0ded29aea2a51700e0730a054faa64a22ff38a" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + +"@babel/plugin-transform-unicode-regex@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0-beta.44.tgz#d7cf607948da5e997e277eba1caed30e80beaf76" + dependencies: + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/helper-regex" "7.0.0-beta.44" + regexpu-core "^4.1.3" + +"@babel/preset-env@^7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.0.0-beta.44.tgz#9d3df27d81b134cae8a52a36279402aadad6d5d2" + dependencies: + "@babel/helper-module-imports" "7.0.0-beta.44" + "@babel/helper-plugin-utils" "7.0.0-beta.44" + "@babel/plugin-proposal-async-generator-functions" "7.0.0-beta.44" + "@babel/plugin-proposal-object-rest-spread" "7.0.0-beta.44" + "@babel/plugin-proposal-optional-catch-binding" "7.0.0-beta.44" + "@babel/plugin-proposal-unicode-property-regex" "7.0.0-beta.44" + "@babel/plugin-syntax-async-generators" "7.0.0-beta.44" + "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.44" + "@babel/plugin-syntax-optional-catch-binding" "7.0.0-beta.44" + "@babel/plugin-transform-arrow-functions" "7.0.0-beta.44" + "@babel/plugin-transform-async-to-generator" "7.0.0-beta.44" + "@babel/plugin-transform-block-scoped-functions" "7.0.0-beta.44" + "@babel/plugin-transform-block-scoping" "7.0.0-beta.44" + "@babel/plugin-transform-classes" "7.0.0-beta.44" + "@babel/plugin-transform-computed-properties" "7.0.0-beta.44" + "@babel/plugin-transform-destructuring" "7.0.0-beta.44" + "@babel/plugin-transform-dotall-regex" "7.0.0-beta.44" + "@babel/plugin-transform-duplicate-keys" "7.0.0-beta.44" + "@babel/plugin-transform-exponentiation-operator" "7.0.0-beta.44" + "@babel/plugin-transform-for-of" "7.0.0-beta.44" + "@babel/plugin-transform-function-name" "7.0.0-beta.44" + "@babel/plugin-transform-literals" "7.0.0-beta.44" + "@babel/plugin-transform-modules-amd" "7.0.0-beta.44" + "@babel/plugin-transform-modules-commonjs" "7.0.0-beta.44" + "@babel/plugin-transform-modules-systemjs" "7.0.0-beta.44" + "@babel/plugin-transform-modules-umd" "7.0.0-beta.44" + "@babel/plugin-transform-new-target" "7.0.0-beta.44" + "@babel/plugin-transform-object-super" "7.0.0-beta.44" + "@babel/plugin-transform-parameters" "7.0.0-beta.44" + "@babel/plugin-transform-regenerator" "7.0.0-beta.44" + "@babel/plugin-transform-shorthand-properties" "7.0.0-beta.44" + "@babel/plugin-transform-spread" "7.0.0-beta.44" + "@babel/plugin-transform-sticky-regex" "7.0.0-beta.44" + "@babel/plugin-transform-template-literals" "7.0.0-beta.44" + "@babel/plugin-transform-typeof-symbol" "7.0.0-beta.44" + "@babel/plugin-transform-unicode-regex" "7.0.0-beta.44" + browserslist "^3.0.0" + invariant "^2.2.2" + semver "^5.3.0" + +"@babel/template@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f" + dependencies: + "@babel/code-frame" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + babylon "7.0.0-beta.44" + lodash "^4.2.0" + +"@babel/traverse@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966" + dependencies: + "@babel/code-frame" "7.0.0-beta.44" + "@babel/generator" "7.0.0-beta.44" + "@babel/helper-function-name" "7.0.0-beta.44" + "@babel/helper-split-export-declaration" "7.0.0-beta.44" + "@babel/types" "7.0.0-beta.44" + babylon "7.0.0-beta.44" + debug "^3.1.0" + globals "^11.1.0" + invariant "^2.2.0" + lodash "^4.2.0" + +"@babel/types@7.0.0-beta.44": + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757" + dependencies: + esutils "^2.0.2" + lodash "^4.2.0" + to-fast-properties "^2.0.0" + "@concordance/react@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" @@ -45,12 +555,50 @@ arrify "^1.0.1" abbrev@1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" +acorn@^5.5.0: + version "5.5.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" + +ajv-keywords@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" + +ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^5.2.3, ajv@^5.3.0: + version "5.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.3.0" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" amdefine@>=0.0.4: version "1.0.1" @@ -62,12 +610,6 @@ ansi-align@^2.0.0: dependencies: string-width "^2.0.0" -ansi-escape-sequences@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-escape-sequences/-/ansi-escape-sequences-3.0.0.tgz#1c18394b6af9b76ff9a63509fa497669fd2ce53e" - dependencies: - array-back "^1.0.3" - ansi-escape-sequences@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/ansi-escape-sequences/-/ansi-escape-sequences-4.0.0.tgz#e0ecb042958b71e42942d35c1fcf1d9b00a0f67e" @@ -78,6 +620,10 @@ ansi-escapes@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" +ansi-escapes@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" + ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -90,9 +636,9 @@ ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" -ansi-styles@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" +ansi-styles@^3.1.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" dependencies: color-convert "^1.9.0" @@ -101,38 +647,36 @@ ansi-styles@~1.0.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" anymatch@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" dependencies: - arrify "^1.0.0" micromatch "^2.1.5" - -app-usage-stats@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/app-usage-stats/-/app-usage-stats-0.5.1.tgz#6547c5db9bab0aa5f5b2c560eacc8af20d0ab13b" - dependencies: - array-back "^1.0.4" - home-path "^1.0.3" - test-value "^2.1.0" - usage-stats "^0.9.0" + normalize-path "^2.0.0" aproba@^1.0.3: - version "1.1.1" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" are-we-there-yet@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" dependencies: delegates "^1.0.0" - readable-stream "^2.0.0 || ^1.1.13" + readable-stream "^2.0.6" argparse@^1.0.7: - version "1.0.9" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" dependencies: sprintf-js "~1.0.2" +argv-tools@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/argv-tools/-/argv-tools-0.1.1.tgz#588283f3393ada47141440b12981cd41bf6b7032" + dependencies: + array-back "^2.0.0" + find-replace "^2.0.1" + arr-diff@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" @@ -144,8 +688,8 @@ arr-exclude@^1.0.0: resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" arr-flatten@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" array-back@^1.0.2, array-back@^1.0.3, array-back@^1.0.4: version "1.0.4" @@ -167,6 +711,13 @@ array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -185,33 +736,37 @@ arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + asn1@~0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + assert-plus@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" -assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - async-each@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" -async@~0.2.6: - version "0.2.10" - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" +async@^1.4.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" auto-bind@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" + version "1.2.0" + resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.2.0.tgz#8b7e318aad53d43ba8a8ecaf0066d85d5f798cd6" ava-init@^0.2.0: version "0.2.1" @@ -313,10 +868,10 @@ aws-sign2@~0.6.0: resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" aws4@^1.2.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + version "1.7.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" -babel-code-frame@^6.26.0: +babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" dependencies: @@ -349,8 +904,8 @@ babel-core@^6.17.0, babel-core@^6.26.0: source-map "^0.5.6" babel-generator@^6.1.0, babel-generator@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" dependencies: babel-messages "^6.23.0" babel-runtime "^6.26.0" @@ -358,7 +913,7 @@ babel-generator@^6.1.0, babel-generator@^6.26.0: detect-indent "^4.0.0" jsesc "^1.3.0" lodash "^4.17.4" - source-map "^0.5.6" + source-map "^0.5.7" trim-right "^1.0.1" babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: @@ -448,8 +1003,8 @@ babel-plugin-check-es2015-constants@^6.8.0: babel-runtime "^6.22.0" babel-plugin-espower@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" + version "2.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.4.0.tgz#9f92c080e9adfe73f69baed7ab3e24f649009373" dependencies: babel-generator "^6.1.0" babylon "^6.1.0" @@ -562,14 +1117,7 @@ babel-register@^6.26.0: mkdirp "^0.5.1" source-map-support "^0.4.15" -babel-runtime@^6.22.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.10.0" - -babel-runtime@^6.26.0: +babel-runtime@^6.22.0, babel-runtime@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" dependencies: @@ -613,14 +1161,14 @@ babylon@7.0.0-beta.19: version "7.0.0-beta.19" resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.19.tgz#e928c7e807e970e0536b078ab3e0c48f9e052503" +babylon@7.0.0-beta.44: + version "7.0.0-beta.44" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" + babylon@^6.1.0, babylon@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" -balanced-match@^0.4.1: - version "0.4.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" - balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" @@ -632,8 +1180,8 @@ bcrypt-pbkdf@^1.0.0: tweetnacl "^0.14.3" binary-extensions@^1.0.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" + version "1.11.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" block-stream@*: version "0.0.9" @@ -642,8 +1190,8 @@ block-stream@*: inherits "~2.0.0" bluebird@^3.0.0, bluebird@~3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" + version "3.5.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" boom@2.x.x: version "2.10.1" @@ -651,9 +1199,9 @@ boom@2.x.x: dependencies: hoek "2.x.x" -boxen@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.1.tgz#0f11e7fe344edb9397977fc13ede7f64d956481d" +boxen@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" dependencies: ansi-align "^2.0.0" camelcase "^4.0.0" @@ -661,18 +1209,11 @@ boxen@^1.0.0: cli-boxes "^1.0.0" string-width "^2.0.0" term-size "^1.2.0" - widest-line "^1.0.0" - -brace-expansion@^1.0.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" - dependencies: - balanced-match "^0.4.1" - concat-map "0.0.1" + widest-line "^2.0.0" brace-expansion@^1.1.7: - version "1.1.8" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" dependencies: balanced-match "^1.0.0" concat-map "0.0.1" @@ -685,25 +1226,26 @@ braces@^1.8.2: preserve "^0.2.0" repeat-element "^1.1.2" -browser-resolve@^1.11.0: - version "1.11.2" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" +browserslist@^3.0.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.4.tgz#fb9ad70fd09875137ae943a31ab815ed76896031" dependencies: - resolve "1.1.7" + caniuse-lite "^1.0.30000821" + electron-to-chromium "^1.3.41" buf-compare@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" -buffer-shims@^1.0.0: +buffer-from@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" -builtin-modules@^1.0.0, builtin-modules@^1.1.0: +builtin-modules@^1.0.0, builtin-modules@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" -cache-point@^0.4.0, cache-point@^0.4.1: +cache-point@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/cache-point/-/cache-point-0.4.1.tgz#cc8c9cbd99d90d7b0c66910cd33d77a1aab8840e" dependencies: @@ -732,6 +1274,16 @@ call-signature@0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + camelcase-keys@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" @@ -739,6 +1291,10 @@ camelcase-keys@^2.0.0: camelcase "^2.0.0" map-obj "^1.0.0" +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + camelcase@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" @@ -747,13 +1303,17 @@ camelcase@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" +caniuse-lite@^1.0.30000821: + version "1.0.30000827" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000827.tgz#2dad2354e4810c3c9bb1cfc57f655c270c25fa52" + capture-stack-trace@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" -caseless@~0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" catharsis@~0.8.9: version "0.8.9" @@ -761,6 +1321,13 @@ catharsis@~0.8.9: dependencies: underscore-contrib "~0.3.0" +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + chalk@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" @@ -769,7 +1336,7 @@ chalk@^0.4.0: has-color "~0.1.0" strip-ansi "~0.1.0" -chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: +chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: @@ -779,15 +1346,19 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" dependencies: - ansi-styles "^3.1.0" + ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" - supports-color "^4.0.0" + supports-color "^5.3.0" -chokidar@^1.4.2, chokidar@^1.7.0: +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + +chokidar@^1.4.2: version "1.7.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" dependencies: @@ -803,8 +1374,12 @@ chokidar@^1.4.2, chokidar@^1.7.0: fsevents "^1.0.0" ci-info@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" + version "1.1.3" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" clean-stack@^1.1.1: version "1.3.0" @@ -825,8 +1400,8 @@ cli-cursor@^2.1.0: restore-cursor "^2.0.0" cli-spinners@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.1.tgz#2675321c100f195b02877ac499e9911fa34b9783" + version "1.3.1" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a" cli-truncate@^1.0.0: version "1.1.0" @@ -835,15 +1410,31 @@ cli-truncate@^1.0.0: slice-ansi "^1.0.0" string-width "^2.0.0" +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + co-with-promise@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" dependencies: pinkie-promise "^1.0.0" +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + code-excerpt@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" + version "2.1.1" + resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.1.tgz#5fe3057bfbb71a5f300f659ef2cc0a47651ba77c" dependencies: convert-to-spaces "^1.0.1" @@ -859,8 +1450,8 @@ collect-all@^1.0.3: stream-via "^1.0.4" color-convert@^1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" dependencies: color-name "^1.1.1" @@ -869,47 +1460,43 @@ color-name@^1.1.1: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" combined-stream@^1.0.5, combined-stream@~1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + version "1.0.6" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" dependencies: delayed-stream "~1.0.0" -command-line-args@^4.0.1: - version "4.0.7" - resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-4.0.7.tgz#f8d1916ecb90e9e121eda6428e41300bfb64cc46" +command-line-args@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.0.2.tgz#c4e56b016636af1323cf485aa25c3cb203dfbbe4" dependencies: + argv-tools "^0.1.1" array-back "^2.0.0" - find-replace "^1.0.3" + find-replace "^2.0.1" + lodash.camelcase "^4.3.0" typical "^2.6.1" -command-line-tool@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/command-line-tool/-/command-line-tool-0.7.0.tgz#ca80792ae2069cf7caa562c0cbc2cd11811122a0" - dependencies: - ansi-escape-sequences "^3.0.0" - array-back "^1.0.4" - command-line-args "^4.0.1" - command-line-usage "^4.0.0" - typical "^2.6.0" - -command-line-usage@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-4.0.1.tgz#d89cf16c8ae71e8e8a6e6aabae1652af76ff644e" +command-line-tool@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/command-line-tool/-/command-line-tool-0.8.0.tgz#b00290ef1dfc11cc731dd1f43a92cfa5f21e715b" dependencies: ansi-escape-sequences "^4.0.0" array-back "^2.0.0" - table-layout "^0.4.1" + command-line-args "^5.0.0" + command-line-usage "^4.1.0" typical "^2.6.1" -commander@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" +command-line-usage@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-4.1.0.tgz#a6b3b2e2703b4dcf8bd46ae19e118a9a52972882" dependencies: - graceful-readlink ">= 1.0.0" + ansi-escape-sequences "^4.0.0" + array-back "^2.0.0" + table-layout "^0.4.2" + typical "^2.6.1" -commander@~2.11.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" +commander@~2.15.0: + version "2.15.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" common-path-prefix@^1.0.0: version "1.0.0" @@ -927,6 +1514,15 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" +concat-stream@^1.5.0, concat-stream@^1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + concordance@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" @@ -950,8 +1546,8 @@ config-master@^3.1.0: walk-back "^2.0.1" configstore@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" + version "3.1.2" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" dependencies: dot-prop "^4.1.0" graceful-fs "^4.1.2" @@ -964,9 +1560,13 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" -convert-source-map@^1.2.0, convert-source-map@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + +convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" convert-to-spaces@^1.0.1: version "1.0.2" @@ -979,15 +1579,15 @@ core-assert@^0.2.0: buf-compare "^1.0.0" is-error "^2.2.0" -core-js@^2.0.0, core-js@^2.5.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" -core-js@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" +core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: + version "2.5.5" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.5.tgz#b14dde936c640c0579a6b50cabcc132dd6127e3b" -core-util-is@~1.0.0: +core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -997,7 +1597,7 @@ create-error-class@^3.0.0: dependencies: capture-stack-trace "^1.0.0" -cross-spawn@^5.0.1: +cross-spawn@^5.0.1, cross-spawn@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" dependencies: @@ -1037,25 +1637,23 @@ date-time@^2.1.0: dependencies: time-zone "^1.0.0" -debug@^2.2.0: - version "2.6.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" - dependencies: - ms "0.7.2" +debug-log@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" -debug@^2.6.8: +debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: ms "2.0.0" -debug@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" +debug@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" dependencies: - ms "0.7.1" + ms "2.0.0" -decamelize@^1.1.2: +decamelize@^1.0.0, decamelize@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -1064,16 +1662,46 @@ deep-equal@^1.0.0: resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" deep-extend@~0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" deep-extend@~0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.0.tgz#6ef4a09b05f98b0e358d6d93d4ca3caec6672803" -defer-promise@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/defer-promise/-/defer-promise-1.0.1.tgz#1ca6ffeddbcef1715dd7aae25c7616f9ae22932f" +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +define-properties@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" + dependencies: + foreach "^2.0.5" + object-keys "^1.0.8" + +deglob@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" + dependencies: + find-root "^1.0.0" + glob "^7.0.5" + ignore "^3.0.9" + pkg-config "^1.1.0" + run-parallel "^1.1.2" + uniq "^1.0.1" + +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" delayed-stream@~1.0.0: version "1.0.0" @@ -1093,27 +1721,44 @@ detect-indent@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" -dmd@^3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/dmd/-/dmd-3.0.6.tgz#94c0e0fb88d1cb6b82837595053de7919c753c25" - dependencies: - array-back "^1.0.4" - cache-point "^0.4.0" +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + +dmd@^3.0.9: + version "3.0.12" + resolved "https://registry.yarnpkg.com/dmd/-/dmd-3.0.12.tgz#2aad884cd582287f7dc748435017c7dbd510fe0c" + dependencies: + array-back "^2.0.0" + cache-point "^0.4.1" common-sequence "^1.0.2" - file-set "^1.1.1" - handlebars "3.0.3" - marked "^0.3.6" + file-set "^2.0.0" + handlebars "^4.0.11" + marked "^0.3.16" object-get "^2.1.0" reduce-flatten "^1.0.1" reduce-unique "^1.0.0" reduce-without "^1.0.1" - test-value "^2.1.0" + test-value "^3.0.0" walk-back "^3.0.0" docdash@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/docdash/-/docdash-0.4.0.tgz#05c3a50d83189981699ee0c076d3a3950db7ec00" +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.0.2, doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + dependencies: + esutils "^2.0.2" + dot-prop@^4.1.0: version "4.2.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" @@ -1130,6 +1775,10 @@ ecc-jsbn@~0.1.1: dependencies: jsbn "~0.1.0" +electron-to-chromium@^1.3.41: + version "1.3.42" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.42.tgz#95c33bf01d0cc405556aec899fe61fd4d76ea0f9" + empower-core@^0.6.1: version "0.6.2" resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" @@ -1137,24 +1786,164 @@ empower-core@^0.6.1: call-signature "0.0.2" core-js "^2.0.0" +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + equal-length@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" -error-ex@^1.2.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" dependencies: is-arrayish "^0.2.1" +es-abstract@^1.7.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + +es-to-primitive@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" + dependencies: + is-callable "^1.1.1" + is-date-object "^1.0.1" + is-symbol "^1.0.1" + es6-error@^4.0.1, es6-error@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5, escape-string-regexp@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" +eslint-config-standard-jsx@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-5.0.0.tgz#4abfac554f38668e0078c664569e7b2384e5d2aa" + +eslint-config-standard@11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz#87ee0d3c9d95382dc761958cbb23da9eea31e0ba" + +eslint-import-resolver-node@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + dependencies: + debug "^2.6.9" + resolve "^1.5.0" + +eslint-module-utils@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" + dependencies: + debug "^2.6.8" + pkg-dir "^1.0.0" + +eslint-plugin-import@~2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169" + dependencies: + builtin-modules "^1.1.1" + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.1.1" + has "^1.0.1" + lodash "^4.17.4" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + +eslint-plugin-node@~6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz#bf19642298064379315d7a4b2a75937376fa05e4" + dependencies: + ignore "^3.3.6" + minimatch "^3.0.4" + resolve "^1.3.3" + semver "^5.4.1" + +eslint-plugin-promise@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" + +eslint-plugin-react@~7.7.0: + version "7.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz#f606c719dbd8a1a2b3d25c16299813878cca0160" + dependencies: + doctrine "^2.0.2" + has "^1.0.1" + jsx-ast-utils "^2.0.1" + prop-types "^15.6.0" + +eslint-plugin-standard@~3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" + +eslint-scope@^3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-visitor-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + +eslint@~4.18.0: + version "4.18.2" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" + dependencies: + ajv "^5.3.0" + babel-code-frame "^6.22.0" + chalk "^2.1.0" + concat-stream "^1.6.0" + cross-spawn "^5.1.0" + debug "^3.1.0" + doctrine "^2.1.0" + eslint-scope "^3.7.1" + eslint-visitor-keys "^1.0.0" + espree "^3.5.2" + esquery "^1.0.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.0.1" + ignore "^3.3.3" + imurmurhash "^0.1.4" + inquirer "^3.0.6" + is-resolvable "^1.0.0" + js-yaml "^3.9.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.4" + minimatch "^3.0.2" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^7.0.0" + progress "^2.0.0" + require-uncached "^1.0.3" + semver "^5.3.0" + strip-ansi "^4.0.0" + strip-json-comments "~2.0.1" + table "4.0.2" + text-table "~0.2.0" + espower-location-detector@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" @@ -1164,6 +1953,13 @@ espower-location-detector@^1.0.0: source-map "^0.5.0" xtend "^4.0.0" +espree@^3.5.2: + version "3.5.4" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" + dependencies: + acorn "^5.5.0" + acorn-jsx "^3.0.0" + esprima@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" @@ -1174,7 +1970,19 @@ espurify@^1.6.0: dependencies: core-js "^2.0.0" -estraverse@^4.0.0, estraverse@^4.1.1: +esquery@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + dependencies: + estraverse "^4.1.0" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" @@ -1182,10 +1990,6 @@ estree-walker@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa" -estree-walker@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.0.tgz#aae3b57c42deb8010e349c892462f0e71c5dd1aa" - esutils@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" @@ -1215,8 +2019,16 @@ expand-range@^1.8.1: fill-range "^2.1.0" extend@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +external-editor@^2.0.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" extglob@^0.3.1: version "0.3.2" @@ -1224,30 +2036,65 @@ extglob@^0.3.1: dependencies: is-extglob "^1.0.0" -extsprintf@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + +fast-deep-equal@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" fast-diff@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fbjs@^0.8.16: + version "0.8.16" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.9" + figures@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" dependencies: escape-string-regexp "^1.0.5" -file-set@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/file-set/-/file-set-1.1.1.tgz#d3ec70c080ec8f18f204ba1de106780c9056926b" +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" dependencies: - array-back "^1.0.3" - glob "^7.1.0" + flat-cache "^1.2.1" + object-assign "^4.0.1" -filename-regex@^2.0.0: +file-set@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" + resolved "https://registry.yarnpkg.com/file-set/-/file-set-2.0.0.tgz#11831a388ec378aba881311a94f69814118849c3" + dependencies: + array-back "^2.0.0" + glob "^7.1.2" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" fill-range@^2.1.0: version "2.2.3" @@ -1267,12 +2114,16 @@ find-cache-dir@^1.0.0: make-dir "^1.0.0" pkg-dir "^2.0.0" -find-replace@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-1.0.3.tgz#b88e7364d2d9c959559f388c66670d6130441fa0" +find-replace@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-2.0.1.tgz#6d9683a7ca20f8f9aabeabad07e4e2580f528550" dependencies: - array-back "^1.0.4" - test-value "^2.1.0" + array-back "^2.0.0" + test-value "^3.0.0" + +find-root@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" find-up@^1.0.0: version "1.1.2" @@ -1287,13 +2138,22 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" +flat-cache@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + fn-name@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" for-in@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.1.tgz#d6c3e3798ceaaa301047b109dedf1b1ae37a0efa" + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" for-own@^0.1.4: version "0.1.5" @@ -1301,13 +2161,17 @@ for-own@^0.1.4: dependencies: for-in "^1.0.1" +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" form-data@~2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" dependencies: asynckit "^0.4.0" combined-stream "^1.0.5" @@ -1322,13 +2186,13 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" fsevents@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" + version "1.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" dependencies: nan "^2.3.0" - node-pre-gyp "^0.6.29" + node-pre-gyp "^0.6.39" -fstream-ignore@~1.0.5: +fstream-ignore@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" dependencies: @@ -1336,22 +2200,30 @@ fstream-ignore@~1.0.5: inherits "2" minimatch "^3.0.0" -fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" dependencies: graceful-fs "^4.1.2" inherits "~2.0.0" mkdirp ">=0.5 0" rimraf "2" +function-bind@^1.0.2, function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + function-name-support@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" -gauge@~2.7.1: - version "2.7.3" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" dependencies: aproba "^1.0.3" console-control-strings "^1.0.0" @@ -1362,16 +2234,6 @@ gauge@~2.7.1: strip-ansi "^3.0.1" wide-align "^1.1.0" -generate-function@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" - -generate-object-property@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" - dependencies: - is-property "^1.0.0" - get-port@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" @@ -1380,13 +2242,17 @@ get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" getpass@^0.1.1: - version "0.1.6" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" dependencies: assert-plus "^1.0.0" @@ -1403,18 +2269,7 @@ glob-parent@^2.0.0: dependencies: is-glob "^2.0.0" -glob@^7.0.3, glob@^7.0.5: - version "7.1.1" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.1.0: +glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" dependencies: @@ -1425,10 +2280,31 @@ glob@^7.1.0: once "^1.3.0" path-is-absolute "^1.0.0" +global-dirs@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + dependencies: + ini "^1.3.4" + +globals@^11.0.1, globals@^11.1.0: + version "11.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.4.0.tgz#b85c793349561c16076a3c13549238a27945f1bc" + globals@^9.18.0: version "9.18.0" resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + globby@^6.0.0: version "6.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" @@ -1459,27 +2335,26 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.9: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" -"graceful-readlink@>= 1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" - -handlebars@3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-3.0.3.tgz#0e09651a2f0fb3c949160583710d551f92e6d2ad" +handlebars@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" dependencies: + async "^1.4.0" optimist "^0.6.1" - source-map "^0.1.40" + source-map "^0.4.4" optionalDependencies: - uglify-js "~2.3" + uglify-js "^2.6" -har-validator@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" dependencies: - chalk "^1.1.1" - commander "^2.9.0" - is-my-json-valid "^2.12.4" - pinkie-promise "^2.0.0" + ajv "^4.9.1" + har-schema "^1.0.5" has-ansi@^2.0.0: version "2.0.0" @@ -1495,6 +2370,10 @@ has-flag@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" @@ -1503,7 +2382,13 @@ has-yarn@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" -hawk@~3.1.3: +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hawk@3.1.3, hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" dependencies: @@ -1523,13 +2408,9 @@ home-or-tmp@^2.0.0: os-homedir "^1.0.0" os-tmpdir "^1.0.1" -home-path@^1.0.3, home-path@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.5.tgz#788b29815b12d53bacf575648476e6f9041d133f" - hosted-git-info@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" + version "2.6.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" http-signature@~1.1.0: version "1.1.1" @@ -1558,10 +2439,20 @@ hullabaloo-config-manager@^1.1.0: resolve-from "^3.0.0" safe-buffer "^5.0.1" +iconv-lite@^0.4.17, iconv-lite@~0.4.13: + version "0.4.21" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" + dependencies: + safer-buffer "^2.1.0" + ignore-by-default@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" +ignore@^3.0.9, ignore@^3.3.3, ignore@^3.3.6: + version "3.3.7" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" + import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" @@ -1594,27 +2485,42 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" -ini@~1.3.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" +ini@^1.3.4, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" -intertween@0.0.25: - version "0.0.25" - resolved "https://registry.yarnpkg.com/intertween/-/intertween-0.0.25.tgz#87bcbbe5118e2275e011640d94768c79f75c8895" +inquirer@^3.0.6: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" -invariant@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" +invariant@^2.2.0, invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" dependencies: loose-envify "^1.0.0" irregular-plurals@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.3.0.tgz#7af06931bdf74be33dcf585a13e06fccc16caecf" + version "1.4.0" + resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" is-arrayish@^0.2.1: version "0.2.1" @@ -1626,9 +2532,9 @@ is-binary-path@^1.0.0: dependencies: binary-extensions "^1.0.0" -is-buffer@^1.0.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" is-builtin-module@^1.0.0: version "1.0.0" @@ -1636,15 +2542,23 @@ is-builtin-module@^1.0.0: dependencies: builtin-modules "^1.0.0" -is-ci@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" +is-callable@^1.1.1, is-callable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" + +is-ci@^1.0.10, is-ci@^1.0.7: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" dependencies: ci-info "^1.0.0" +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + is-dotfile@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" is-equal-shallow@^0.1.3: version "0.1.3" @@ -1690,29 +2604,29 @@ is-glob@^2.0.0, is-glob@^2.0.1: dependencies: is-extglob "^1.0.0" -is-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" - -is-my-json-valid@^2.12.4: - version "2.16.0" - resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" +is-installed-globally@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" dependencies: - generate-function "^2.0.0" - generate-object-property "^1.1.0" - jsonpointer "^4.0.0" - xtend "^4.0.0" + global-dirs "^0.1.0" + is-path-inside "^1.0.0" is-npm@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" -is-number@^2.0.2, is-number@^2.1.0: +is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" dependencies: kind-of "^3.0.2" +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + is-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" @@ -1723,6 +2637,22 @@ is-observable@^0.2.0: dependencies: symbol-observable "^0.2.2" +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + dependencies: + path-is-inside "^1.0.1" + is-plain-obj@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" @@ -1739,41 +2669,51 @@ is-promise@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" -is-property@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" - is-redirect@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + is-retry-allowed@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" -is-stream@^1.0.0, is-stream@^1.1.0: +is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" +is-symbol@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" + is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" is-url@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" + version "1.2.4" + resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" is-utf8@^0.2.0, is-utf8@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" -isarray@1.0.0, isarray@~1.0.0: +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" -isexe@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" isobject@^2.0.0: version "2.1.0" @@ -1781,31 +2721,28 @@ isobject@^2.0.0: dependencies: isarray "1.0.0" +isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" -jodid25519@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" - dependencies: - jsbn "~0.1.0" - js-string-escape@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" -js-tokens@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" - -js-tokens@^3.0.2: +js-tokens@^3.0.0, js-tokens@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" -js-yaml@^3.8.2: - version "3.10.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" +js-yaml@^3.8.2, js-yaml@^3.9.1: + version "3.11.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -1820,51 +2757,44 @@ jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" -jsdoc-api@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsdoc-api/-/jsdoc-api-4.0.0.tgz#eaa881654f5af2401b68c36130329166c0e55eba" +jsdoc-api@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/jsdoc-api/-/jsdoc-api-4.0.3.tgz#f87357856349a0be40a03e64711c34c74754ba20" dependencies: array-back "^2.0.0" cache-point "^0.4.1" collect-all "^1.0.3" - file-set "^1.1.1" + file-set "^2.0.0" fs-then-native "^2.0.0" - jsdoc "^3.5.3" + jsdoc "~3.5.5" object-to-spawn-args "^1.1.1" temp-path "^1.0.0" walk-back "^3.0.0" -jsdoc-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/jsdoc-parse/-/jsdoc-parse-3.0.0.tgz#271531d88f19df2520b1632a7f6c989441a87fde" +jsdoc-parse@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/jsdoc-parse/-/jsdoc-parse-3.0.1.tgz#1194d6a16a2dfbe5fb8cccfeb5058ea808759893" dependencies: - array-back "^1.0.4" + array-back "^2.0.0" lodash.omit "^4.5.0" lodash.pick "^4.4.0" reduce-extract "^1.0.0" - sort-array "^1.1.1" - test-value "^2.1.0" + sort-array "^2.0.0" + test-value "^3.0.0" -jsdoc-to-markdown@next: - version "3.1.0-0" - resolved "https://registry.yarnpkg.com/jsdoc-to-markdown/-/jsdoc-to-markdown-3.1.0-0.tgz#36139cdd45cce9e53a591c96f070f6b1a6f34c8f" +jsdoc-to-markdown@^3.1.0-1: + version "3.1.0-1" + resolved "https://registry.yarnpkg.com/jsdoc-to-markdown/-/jsdoc-to-markdown-3.1.0-1.tgz#d8165cfb636ea2f101ebe9027c04c9561814e82b" dependencies: array-back "^2.0.0" - command-line-tool "^0.7.0" + command-line-tool "^0.8.0" config-master "^3.1.0" - dmd "^3.0.6" - jsdoc-api "^4.0.0" - jsdoc-parse "^3.0.0" - jsdoc2md-stats "^2.0.1" + dmd "^3.0.9" + jsdoc-api "^4.0.1" + jsdoc-parse "^3.0.1" walk-back "^3.0.0" -jsdoc2md-stats@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/jsdoc2md-stats/-/jsdoc2md-stats-2.0.1.tgz#bd8343734cfe69ea8050a17931251293f0d9047b" - dependencies: - app-usage-stats "^0.5.0" - -jsdoc@^3.5.3, jsdoc@^3.5.5: +jsdoc@^3.5.5, jsdoc@~3.5.5: version "3.5.5" resolved "https://registry.yarnpkg.com/jsdoc/-/jsdoc-3.5.5.tgz#484521b126e81904d632ff83ec9aaa096708fa4d" dependencies: @@ -1885,39 +2815,74 @@ jsesc@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" +jsesc@^2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe" + jsesc@~0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + json-schema@0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" -json5@^0.5.1: +json5@^0.5.0, json5@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" -jsonpointer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" jsprim@^1.2.2: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" dependencies: - extsprintf "1.0.2" + assert-plus "1.0.0" + extsprintf "1.3.0" json-schema "0.2.3" - verror "1.3.6" + verror "1.10.0" + +jsx-ast-utils@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" + dependencies: + array-includes "^3.0.3" kind-of@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" dependencies: - is-buffer "^1.0.2" + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" klaw@~2.0.0: version "2.0.0" @@ -1937,6 +2902,17 @@ latest-version@^3.0.0: dependencies: package-json "^4.0.0" +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -1956,6 +2932,15 @@ load-json-file@^2.0.0: pify "^2.0.0" strip-bom "^3.0.0" +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -1963,6 +2948,10 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + lodash.clonedeep@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" @@ -1992,8 +2981,8 @@ lodash.isequal@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" lodash.merge@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" lodash.omit@^4.5.0: version "4.5.0" @@ -2007,11 +2996,15 @@ lodash.pick@^4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" -lodash@^4.17.4: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" +lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: + version "4.17.5" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" -loose-envify@^1.0.0: +loose-envify@^1.0.0, loose-envify@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" dependencies: @@ -2025,39 +3018,33 @@ loud-rejection@^1.0.0, loud-rejection@^1.2.0: signal-exit "^3.0.0" lowercase-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" lru-cache@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" + version "4.1.2" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" dependencies: - pseudomap "^1.0.1" - yallist "^2.0.0" - -magic-string@^0.22.4: - version "0.22.4" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.4.tgz#31039b4e40366395618c1d6cf8193c53917475ff" - dependencies: - vlq "^0.2.1" + pseudomap "^1.0.2" + yallist "^2.1.2" make-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" + version "1.2.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" dependencies: - pify "^2.3.0" + pify "^3.0.0" map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" -marked@^0.3.6, marked@~0.3.6: - version "0.3.6" - resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" +marked@^0.3.16, marked@~0.3.6: + version "0.3.19" + resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" matcher@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19" + version "1.1.0" + resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.1.0.tgz#4ad3a9cb6585186dc95cb8a08c7de936caed17ee" dependencies: escape-string-regexp "^1.0.4" @@ -2110,40 +3097,38 @@ micromatch@^2.1.5, micromatch@^2.3.11: parse-glob "^3.0.4" regex-cache "^0.4.2" -mime-db@~1.26.0: - version "1.26.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" +mime-db@~1.33.0: + version "1.33.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" mime-types@^2.1.12, mime-types@~2.1.7: - version "2.1.14" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" + version "2.1.18" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" dependencies: - mime-db "~1.26.0" + mime-db "~1.33.0" mimic-fn@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" - -minimatch@^3.0.0, minimatch@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" - dependencies: - brace-expansion "^1.0.0" + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" -minimatch@^3.0.4: +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: brace-expansion "^1.1.7" -minimist@0.0.8, minimist@~0.0.1: +minimist@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" -minimist@^1.1.3, minimist@^1.2.0: +minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + mkdirp2@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/mkdirp2/-/mkdirp2-1.0.3.tgz#cc8dd8265f1f06e2d8f5b10b6e52f4e050bed21b" @@ -2154,18 +3139,14 @@ mkdirp2@^1.0.3: dependencies: minimist "0.0.8" -ms@0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" - -ms@0.7.2: - version "0.7.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" - -ms@2.0.0, ms@^2.0.0: +ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" +ms@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + multimatch@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" @@ -2175,42 +3156,62 @@ multimatch@^2.1.0: arrify "^1.0.0" minimatch "^3.0.0" +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + nan@^2.3.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" + version "2.10.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" -node-pre-gyp@^0.6.29: - version "0.6.33" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +node-fetch@^1.0.1: + version "1.7.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" dependencies: - mkdirp "~0.5.1" - nopt "~3.0.6" - npmlog "^4.0.1" - rc "~1.1.6" - request "^2.79.0" - rimraf "~2.5.4" - semver "~5.3.0" - tar "~2.2.1" - tar-pack "~3.3.0" - -nopt@~3.0.6: - version "3.0.6" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + encoding "^0.1.11" + is-stream "^1.0.1" + +node-pre-gyp@^0.6.39: + version "0.6.39" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" + dependencies: + detect-libc "^1.0.2" + hawk "3.1.3" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" dependencies: abbrev "1" + osenv "^0.1.4" normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: - version "2.3.5" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" dependencies: hosted-git-info "^2.1.4" is-builtin-module "^1.0.0" semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-path@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" npm-run-path@^2.0.0: version "2.0.2" @@ -2218,13 +3219,13 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npmlog@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" dependencies: are-we-there-yet "~1.1.2" console-control-strings "~1.1.0" - gauge "~2.7.1" + gauge "~2.7.3" set-blocking "~2.0.0" number-is-nan@^1.0.0: @@ -2235,7 +3236,7 @@ oauth-sign@~0.8.1: version "0.8.2" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" -object-assign@^4.0.1, object-assign@^4.1.0: +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -2243,6 +3244,10 @@ object-get@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/object-get/-/object-get-2.1.0.tgz#722bbdb60039efa47cad3c6dc2ce51a85c02c5ae" +object-keys@^1.0.8: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + object-to-spawn-args@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-to-spawn-args/-/object-to-spawn-args-1.1.1.tgz#77da8827f073d011c9e1b173f895781470246785" @@ -2261,15 +3266,9 @@ observable-to-promise@^0.5.0: is-observable "^0.2.0" symbol-observable "^1.0.4" -once@^1.3.0: +once@^1.3.0, once@^1.3.3: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - dependencies: - wrappy "1" - -once@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: wrappy "1" @@ -2286,31 +3285,45 @@ optimist@^0.6.1: minimist "~0.0.1" wordwrap "~0.0.2" -optimist@~0.3.5: - version "0.3.7" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" - dependencies: - wordwrap "~0.0.2" - option-chain@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + os-homedir@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.1.tgz#0d62bdf44b916fd3bbdcf2cab191948fb094f007" + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" -os-tmpdir@^1.0.1: +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" p-limit@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" + dependencies: + p-try "^1.0.0" p-locate@^2.0.0: version "2.0.0" @@ -2318,6 +3331,10 @@ p-locate@^2.0.0: dependencies: p-limit "^1.1.0" +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + package-hash@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" @@ -2357,6 +3374,13 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + parse-ms@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" @@ -2379,6 +3403,10 @@ path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + path-key@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" @@ -2401,10 +3429,18 @@ path-type@^2.0.0: dependencies: pify "^2.0.0" -pify@^2.0.0, pify@^2.3.0: +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + pinkie-promise@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" @@ -2426,11 +3462,25 @@ pinkie@^2.0.0: resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" pkg-conf@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" + version "2.1.0" + resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" dependencies: find-up "^2.0.0" - load-json-file "^2.0.0" + load-json-file "^4.0.0" + +pkg-config@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" + dependencies: + debug-log "^1.0.0" + find-root "^1.0.0" + xtend "^4.0.1" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + dependencies: + find-up "^1.0.0" pkg-dir@^2.0.0: version "2.0.0" @@ -2448,6 +3498,14 @@ plur@^2.0.0: dependencies: irregular-plurals "^1.0.0" +pluralize@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" @@ -2470,15 +3528,33 @@ pretty-ms@^2.0.0: parse-ms "^1.0.0" plur "^1.0.0" -private@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" +private@^0.1.6, private@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + +progress@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + dependencies: + asap "~2.0.3" -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" +prop-types@^15.6.0: + version "15.6.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" + dependencies: + fbjs "^0.8.16" + loose-envify "^1.3.1" + object-assign "^4.1.1" -pseudomap@^1.0.1: +pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" @@ -2486,29 +3562,20 @@ punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" -qs@~6.3.0: - version "6.3.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.1.tgz#918c0b3bcd36679772baf135b1acb4c1651ed79d" +qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" randomatic@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" - dependencies: - is-number "^2.0.2" - kind-of "^3.0.2" - -rc@^1.0.1, rc@^1.1.6: - version "1.2.1" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" dependencies: - deep-extend "~0.4.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" + is-number "^3.0.0" + kind-of "^4.0.0" -rc@~1.1.6: - version "1.1.7" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" +rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: + version "1.2.6" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" dependencies: deep-extend "~0.4.0" ini "~1.3.0" @@ -2545,28 +3612,16 @@ read-pkg@^2.0.0: normalize-package-data "^2.3.2" path-type "^2.0.0" -"readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.5: - version "2.2.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729" - dependencies: - buffer-shims "^1.0.0" - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" - util-deprecate "~1.0.1" - -readable-stream@~2.1.4: - version "2.1.5" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" +readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" dependencies: - buffer-shims "^1.0.0" core-util-is "~1.0.0" - inherits "~2.0.1" + inherits "~2.0.3" isarray "~1.0.0" - process-nextick-args "~1.0.6" - string_decoder "~0.10.x" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" util-deprecate "~1.0.1" readdirp@^2.0.0: @@ -2605,24 +3660,31 @@ reduce-without@^1.0.1: dependencies: test-value "^2.0.0" -regenerate@^1.2.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" +regenerate-unicode-properties@^5.1.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-5.1.3.tgz#54f5891543468f36f2274b67c6bc4c033c27b308" + dependencies: + regenerate "^1.3.3" -regenerator-runtime@^0.10.0: - version "0.10.3" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" +regenerate@^1.2.1, regenerate@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" regenerator-runtime@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + +regenerator-transform@^0.12.3: + version "0.12.3" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.12.3.tgz#459adfb64f6a27164ab991b7873f45ab969eca8b" + dependencies: + private "^0.1.6" regex-cache@^0.4.2: - version "0.4.3" - resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" dependencies: is-equal-shallow "^0.1.3" - is-primitive "^2.0.0" regexpu-core@^2.0.0: version "2.0.0" @@ -2632,9 +3694,20 @@ regexpu-core@^2.0.0: regjsgen "^0.2.0" regjsparser "^0.1.4" +regexpu-core@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.1.3.tgz#fb81616dbbc2a917a7419b33f8379144f51eb8d0" + dependencies: + regenerate "^1.3.3" + regenerate-unicode-properties "^5.1.1" + regjsgen "^0.3.0" + regjsparser "^0.2.1" + unicode-match-property-ecmascript "^1.0.3" + unicode-match-property-value-ecmascript "^1.0.1" + registry-auth-token@^3.0.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" + version "3.3.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" dependencies: rc "^1.1.6" safe-buffer "^5.0.1" @@ -2649,18 +3722,32 @@ regjsgen@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" +regjsgen@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.3.0.tgz#0ee4a3e9276430cda25f1e789ea6c15b87b0cb43" + regjsparser@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" dependencies: jsesc "~0.5.0" +regjsparser@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.2.1.tgz#c3787553faf04e775c302102ef346d995000ec1c" + dependencies: + jsesc "~0.5.0" + release-zalgo@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" dependencies: es6-error "^4.0.1" +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + repeat-element@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" @@ -2675,28 +3762,18 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -req-then@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/req-then/-/req-then-0.6.4.tgz#9f9c04626afd311ae01d727846a0a1075c0e1965" - dependencies: - array-back "^2.0.0" - defer-promise "^1.0.1" - lodash.pick "^4.4.0" - stream-read-all "^0.1.0" - typical "^2.6.1" - -request@^2.79.0: - version "2.79.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" +request@2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" dependencies: aws-sign2 "~0.6.0" aws4 "^1.2.1" - caseless "~0.11.0" + caseless "~0.12.0" combined-stream "~1.0.5" extend "~3.0.0" forever-agent "~0.6.1" form-data "~2.1.1" - har-validator "~2.0.6" + har-validator "~4.2.1" hawk "~3.1.3" http-signature "~1.1.0" is-typedarray "~1.0.0" @@ -2704,19 +3781,24 @@ request@^2.79.0: json-stringify-safe "~5.0.1" mime-types "~2.1.7" oauth-sign "~0.8.1" - qs "~6.3.0" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" stringstream "~0.0.4" tough-cookie "~2.3.0" - tunnel-agent "~0.4.1" + tunnel-agent "^0.6.0" uuid "^3.0.0" require-precompiled@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" -require-relative@0.8.7: - version "0.8.7" - resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" +require-uncached@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" requizzle@~0.2.1: version "0.2.1" @@ -2730,23 +3812,17 @@ resolve-cwd@^2.0.0: dependencies: resolve-from "^3.0.0" +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + resolve-from@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - -resolve@^1.1.6: - version "1.3.2" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" - dependencies: - path-parse "^1.0.5" - -resolve@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" +resolve@^1.3.2, resolve@^1.3.3, resolve@^1.5.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.0.tgz#2bdf5374811207285df0df652b78f118ab8f3c5e" dependencies: path-parse "^1.0.5" @@ -2757,37 +3833,25 @@ restore-cursor@^2.0.0: onetime "^2.0.0" signal-exit "^3.0.2" -rimraf@2: - version "2.6.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" dependencies: - glob "^7.0.5" + align-text "^0.1.1" -rimraf@~2.5.1, rimraf@~2.5.4: - version "2.5.4" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" dependencies: glob "^7.0.5" -rollup-plugin-commonjs@^8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.2.1.tgz#5e40c78375eb163c14c76bce69da1750e5905a2e" +rollup-plugin-babel@^4.0.0-beta.4: + version "4.0.0-beta.4" + resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.0.0-beta.4.tgz#d869646885d6ad73dd10791a261fb92674a80410" dependencies: - acorn "^5.1.1" - estree-walker "^0.5.0" - magic-string "^0.22.4" - resolve "^1.4.0" + "@babel/helper-module-imports" "7.0.0-beta.44" rollup-pluginutils "^2.0.1" -rollup-plugin-node-resolve@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.0.tgz#8b897c4c3030d5001277b0514b25d2ca09683ee0" - dependencies: - browser-resolve "^1.11.0" - builtin-modules "^1.1.0" - is-module "^1.0.0" - resolve "^1.1.6" - rollup-pluginutils@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0" @@ -2795,31 +3859,47 @@ rollup-pluginutils@^2.0.1: estree-walker "^0.3.0" micromatch "^2.3.11" -rollup-watch@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-4.3.1.tgz#5aa1eaeab787addf368905d102b39d6fc5ce4a8b" +rollup@^0.50.1: + version "0.50.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.50.1.tgz#e4dafcbf8d2bb0d9f5589d0cc6f64d76b8815730" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" dependencies: - chokidar "^1.7.0" - require-relative "0.8.7" - rollup-pluginutils "^2.0.1" + is-promise "^2.1.0" -rollup@^0.50.0: - version "0.50.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.50.0.tgz#4c158f4e780e6cb33ff0dbfc184a52cc58cd5f3b" +run-parallel@^1.1.2: + version "1.1.8" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.8.tgz#70e4e788f13a1ad9603254f6a2277f3843a5845c" + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + dependencies: + rx-lite "*" -safe-buffer@^5.0.1, safe-buffer@^5.1.1: +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + +safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" +safer-buffer@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + semver-diff@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" dependencies: semver "^5.0.3" -"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" set-blocking@~2.0.0: version "2.0.0" @@ -2829,6 +3909,10 @@ set-immediate-shim@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -2847,7 +3931,7 @@ slash@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" -slice-ansi@^1.0.0: +slice-ansi@1.0.0, slice-ansi@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" dependencies: @@ -2857,26 +3941,32 @@ slide@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" +snazzy@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/snazzy/-/snazzy-7.1.1.tgz#26639b19a72c4d542c762049f829d14a1ad16879" + dependencies: + chalk "^2.3.0" + inherits "^2.0.1" + minimist "^1.1.1" + readable-stream "^2.0.6" + standard-json "^1.0.0" + strip-ansi "^4.0.0" + text-table "^0.2.0" + sntp@1.x.x: version "1.0.9" resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" dependencies: hoek "2.x.x" -sort-array@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sort-array/-/sort-array-1.1.2.tgz#b88986053c0170a7f9de63f18a49ec79c24c3e64" +sort-array@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sort-array/-/sort-array-2.0.0.tgz#38a9c6da27fd7d147b42e60554f281187b4df472" dependencies: array-back "^1.0.4" object-get "^2.1.0" typical "^2.6.0" -sort-keys@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - dependencies: - is-plain-obj "^1.0.0" - sort-keys@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" @@ -2889,41 +3979,49 @@ source-map-support@^0.4.0, source-map-support@^0.4.15: dependencies: source-map "^0.5.6" -source-map@^0.1.40, source-map@~0.1.7: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" +source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@~0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" - -source-map@^0.5.6: +source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" -spdx-correct@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" +source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + +spdx-correct@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" dependencies: - spdx-license-ids "^1.0.2" + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" -spdx-expression-parse@~1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" +spdx-exceptions@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" -spdx-license-ids@^1.0.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" +spdx-license-ids@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" sshpk@^1.7.0: - version "1.10.2" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" + version "1.14.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" dependencies: asn1 "~0.2.3" assert-plus "^1.0.0" @@ -2932,7 +4030,6 @@ sshpk@^1.7.0: optionalDependencies: bcrypt-pbkdf "^1.0.0" ecc-jsbn "~0.1.1" - jodid25519 "^1.0.0" jsbn "~0.1.0" tweetnacl "~0.14.0" @@ -2940,21 +4037,46 @@ stack-utils@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" +standard-engine@~8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-8.0.1.tgz#0b77be8d7ab963675717dbeac1ef1d6675fb62f0" + dependencies: + deglob "^2.1.0" + get-stdin "^6.0.0" + minimist "^1.1.0" + pkg-conf "^2.0.0" + +standard-json@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/standard-json/-/standard-json-1.0.2.tgz#82dea4a14c78cd9e35d38cde4b88ac6b62596a23" + dependencies: + concat-stream "^1.5.0" + +standard@^11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/standard/-/standard-11.0.1.tgz#49be40c76f1d564964b22bbf7309929ad0335e29" + dependencies: + eslint "~4.18.0" + eslint-config-standard "11.0.0" + eslint-config-standard-jsx "5.0.0" + eslint-plugin-import "~2.9.0" + eslint-plugin-node "~6.0.0" + eslint-plugin-promise "~3.7.0" + eslint-plugin-react "~7.7.0" + eslint-plugin-standard "~3.0.1" + standard-engine "~8.0.0" + stream-connect@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/stream-connect/-/stream-connect-1.0.2.tgz#18bc81f2edb35b8b5d9a8009200a985314428a97" dependencies: array-back "^1.0.2" -stream-read-all@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/stream-read-all/-/stream-read-all-0.1.2.tgz#748718e89281fff6b0742918233415a6900387e1" - stream-via@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/stream-via/-/stream-via-1.0.4.tgz#8dccbb0ac909328eb8bc8e2a4bd3934afdaf606c" -string-width@^1.0.1: +string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" dependencies: @@ -2962,16 +4084,18 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -string-width@^2.0.0: +string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" dependencies: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + dependencies: + safe-buffer "~5.1.0" stringstream@~0.0.4: version "0.0.5" @@ -3028,22 +4152,28 @@ supports-color@^2.0.0: resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" supports-color@^4.0.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" + version "4.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" dependencies: has-flag "^2.0.0" +supports-color@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" + dependencies: + has-flag "^3.0.0" + symbol-observable@^0.2.2: version "0.2.4" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" symbol-observable@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" -table-layout@^0.4.1: - version "0.4.2" - resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-0.4.2.tgz#10e9043c142a1e2d155da7257e478f0ef4981786" +table-layout@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-0.4.3.tgz#07509e1d72599f2c128a58ac67682ec4ba002af0" dependencies: array-back "^2.0.0" deep-extend "~0.5.0" @@ -3051,24 +4181,35 @@ table-layout@^0.4.1: typical "^2.6.1" wordwrapjs "^3.0.0" +table@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" + dependencies: + ajv "^5.2.3" + ajv-keywords "^2.1.0" + chalk "^2.1.0" + lodash "^4.17.4" + slice-ansi "1.0.0" + string-width "^2.1.1" + taffydb@2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.6.2.tgz#7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268" -tar-pack@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" - dependencies: - debug "~2.2.0" - fstream "~1.0.10" - fstream-ignore "~1.0.5" - once "~1.3.3" - readable-stream "~2.1.4" - rimraf "~2.5.1" - tar "~2.2.1" - uid-number "~0.0.6" - -tar@~2.2.1: +tar-pack@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" dependencies: @@ -3093,14 +4234,21 @@ test-value@^1.0.1: array-back "^1.0.2" typical "^2.4.2" -test-value@^2.0.0, test-value@^2.1.0: +test-value@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/test-value/-/test-value-2.1.0.tgz#11da6ff670f3471a73b625ca4f3fdcf7bb748291" dependencies: array-back "^1.0.3" typical "^2.6.0" -text-table@^0.2.0: +test-value@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/test-value/-/test-value-3.0.0.tgz#9168c062fab11a86b8d444dd968bb4b73851ce92" + dependencies: + array-back "^2.0.0" + typical "^2.6.1" + +text-table@^0.2.0, text-table@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -3111,6 +4259,10 @@ through2@^2.0.0: readable-stream "^2.1.5" xtend "~4.0.1" +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + time-require@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" @@ -3128,13 +4280,23 @@ timed-out@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + dependencies: + os-tmpdir "~1.0.2" + to-fast-properties@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + tough-cookie@~2.3.0: - version "2.3.2" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" + version "2.3.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" dependencies: punycode "^1.4.1" @@ -3150,38 +4312,55 @@ trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" -tunnel-agent@~0.4.1: - version "0.4.3" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" -typescript@^2.5.2: - version "2.5.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.2.tgz#038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34" +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" typical@^2.4.2, typical@^2.6.0, typical@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" -uglify-js@^3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.2.tgz#b50bcf15a5fd9e9ed40afbcdef3b59d6891b291f" +ua-parser-js@^0.7.9: + version "0.7.17" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" + +uglify-js@^2.6: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" dependencies: - commander "~2.11.0" source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" -uglify-js@~2.3: - version "2.3.6" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.3.6.tgz#fa0984770b428b7a9b2a8058f46355d14fef211a" +uglify-js@^3.3.5: + version "3.3.20" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.20.tgz#dc8bdee7d454c7d31dddc36f922d170bfcee3a0a" dependencies: - async "~0.2.6" - optimist "~0.3.5" - source-map "~0.1.7" + commander "~2.15.0" + source-map "~0.6.1" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" -uid-number@~0.0.6: +uid-number@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" @@ -3203,6 +4382,29 @@ underscore@~1.8.3: version "1.8.3" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" +unicode-canonical-property-names-ecmascript@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.3.tgz#f6119f417467593c0086357c85546b6ad5abc583" + +unicode-match-property-ecmascript@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.3.tgz#db9b1cb4ffc67e0c5583780b1b59370e4cbe97b9" + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.2" + unicode-property-aliases-ecmascript "^1.0.3" + +unicode-match-property-value-ecmascript@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.1.tgz#fea059120a016f403afd3bf586162b4db03e0604" + +unicode-property-aliases-ecmascript@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.3.tgz#ac3522583b9e630580f916635333e00c5ead690d" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + unique-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" @@ -3222,13 +4424,15 @@ unzip-response@^2.0.1: resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" update-notifier@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f" + version "2.4.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.4.0.tgz#f9b4c700fbfd4ec12c811587258777d563d8c866" dependencies: - boxen "^1.0.0" - chalk "^1.0.0" + boxen "^1.2.1" + chalk "^2.0.1" configstore "^3.0.0" import-lazy "^2.1.0" + is-ci "^1.0.10" + is-installed-globally "^0.1.0" is-npm "^1.0.0" latest-version "^3.0.0" semver-diff "^2.0.0" @@ -3240,45 +4444,28 @@ url-parse-lax@^1.0.0: dependencies: prepend-http "^1.0.1" -usage-stats@^0.9.0: - version "0.9.4" - resolved "https://registry.yarnpkg.com/usage-stats/-/usage-stats-0.9.4.tgz#ff06ba51d824faa1982f48a055dea8495a249077" - dependencies: - array-back "^2.0.0" - home-path "^1.0.5" - mkdirp2 "^1.0.3" - req-then "^0.6.4" - typical "^2.6.1" - uuid "^3.1.0" - util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" uuid@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" - -uuid@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" + version "3.2.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" validate-npm-package-license@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + version "3.0.3" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" dependencies: - spdx-correct "~1.0.0" - spdx-expression-parse "~1.0.0" + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" -verror@1.3.6: - version "1.3.6" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" dependencies: - extsprintf "1.0.2" - -vlq@^0.2.1: - version "0.2.2" - resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" walk-back@^2.0.1: version "2.0.1" @@ -3292,28 +4479,44 @@ well-known-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" +whatwg-fetch@>=0.10.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" + which@^1.2.9: - version "1.2.12" - resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" dependencies: - isexe "^1.1.1" + isexe "^2.0.0" wide-align@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" dependencies: - string-width "^1.0.1" + string-width "^1.0.2" -widest-line@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" +widest-line@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" dependencies: - string-width "^1.0.1" + string-width "^2.1.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" wordwrap@~0.0.2: version "0.0.3" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + wordwrapjs@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-3.0.0.tgz#c94c372894cadc6feb1a66bff64e1d9af92c5d1e" @@ -3326,8 +4529,8 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" write-file-atomic@^1.1.4: - version "1.3.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" dependencies: graceful-fs "^4.1.11" imurmurhash "^0.1.4" @@ -3342,14 +4545,14 @@ write-file-atomic@^2.0.0: signal-exit "^3.0.2" write-json-file@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.2.0.tgz#51862506bbb3b619eefab7859f1fd6c6d0530876" + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" dependencies: detect-indent "^5.0.0" graceful-fs "^4.1.2" make-dir "^1.0.0" - pify "^2.0.0" - sort-keys "^1.1.1" + pify "^3.0.0" + sort-keys "^2.0.0" write-file-atomic "^2.0.0" write-pkg@^3.1.0: @@ -3359,6 +4562,12 @@ write-pkg@^3.1.0: sort-keys "^2.0.0" write-json-file "^2.2.0" +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + xdg-basedir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" @@ -3367,10 +4576,19 @@ xmlcreate@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/xmlcreate/-/xmlcreate-1.0.2.tgz#fa6bf762a60a413fb3dd8f4b03c5b269238d308f" -xtend@^4.0.0, xtend@~4.0.1: +xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" -yallist@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0"