@tweenjs/tween.js 23.1.1 → 23.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tween.amd.js CHANGED
@@ -9,13 +9,13 @@ define(['exports'], (function (exports) { 'use strict';
9
9
  return amount;
10
10
  },
11
11
  In: function (amount) {
12
- return this.None(amount);
12
+ return amount;
13
13
  },
14
14
  Out: function (amount) {
15
- return this.None(amount);
15
+ return amount;
16
16
  },
17
17
  InOut: function (amount) {
18
- return this.None(amount);
18
+ return amount;
19
19
  },
20
20
  }),
21
21
  Quadratic: Object.freeze({
@@ -832,7 +832,7 @@ define(['exports'], (function (exports) { 'use strict';
832
832
  return Tween;
833
833
  }());
834
834
 
835
- var VERSION = '23.1.1';
835
+ var VERSION = '23.1.3';
836
836
 
837
837
  /**
838
838
  * Tween.js - Licensed under the MIT license
package/dist/tween.cjs CHANGED
@@ -11,13 +11,13 @@ var Easing = Object.freeze({
11
11
  return amount;
12
12
  },
13
13
  In: function (amount) {
14
- return this.None(amount);
14
+ return amount;
15
15
  },
16
16
  Out: function (amount) {
17
- return this.None(amount);
17
+ return amount;
18
18
  },
19
19
  InOut: function (amount) {
20
- return this.None(amount);
20
+ return amount;
21
21
  },
22
22
  }),
23
23
  Quadratic: Object.freeze({
@@ -834,7 +834,7 @@ var Tween = /** @class */ (function () {
834
834
  return Tween;
835
835
  }());
836
836
 
837
- var VERSION = '23.1.1';
837
+ var VERSION = '23.1.3';
838
838
 
839
839
  /**
840
840
  * Tween.js - Licensed under the MIT license
package/dist/tween.d.ts CHANGED
@@ -153,7 +153,7 @@ declare class Sequence {
153
153
  static nextId(): number;
154
154
  }
155
155
 
156
- declare const VERSION = "23.1.1";
156
+ declare const VERSION = "23.1.3";
157
157
 
158
158
  declare const nextId: typeof Sequence.nextId;
159
159
  declare const getAll: () => Tween<UnknownProps>[];
package/dist/tween.esm.js CHANGED
@@ -7,13 +7,13 @@ var Easing = Object.freeze({
7
7
  return amount;
8
8
  },
9
9
  In: function (amount) {
10
- return this.None(amount);
10
+ return amount;
11
11
  },
12
12
  Out: function (amount) {
13
- return this.None(amount);
13
+ return amount;
14
14
  },
15
15
  InOut: function (amount) {
16
- return this.None(amount);
16
+ return amount;
17
17
  },
18
18
  }),
19
19
  Quadratic: Object.freeze({
@@ -830,7 +830,7 @@ var Tween = /** @class */ (function () {
830
830
  return Tween;
831
831
  }());
832
832
 
833
- var VERSION = '23.1.1';
833
+ var VERSION = '23.1.3';
834
834
 
835
835
  /**
836
836
  * Tween.js - Licensed under the MIT license
package/dist/tween.umd.js CHANGED
@@ -13,13 +13,13 @@
13
13
  return amount;
14
14
  },
15
15
  In: function (amount) {
16
- return this.None(amount);
16
+ return amount;
17
17
  },
18
18
  Out: function (amount) {
19
- return this.None(amount);
19
+ return amount;
20
20
  },
21
21
  InOut: function (amount) {
22
- return this.None(amount);
22
+ return amount;
23
23
  },
24
24
  }),
25
25
  Quadratic: Object.freeze({
@@ -836,7 +836,7 @@
836
836
  return Tween;
837
837
  }());
838
838
 
839
- var VERSION = '23.1.1';
839
+ var VERSION = '23.1.3';
840
840
 
841
841
  /**
842
842
  * Tween.js - Licensed under the MIT license
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tweenjs/tween.js",
3
3
  "description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
4
- "version": "23.1.1",
4
+ "version": "23.1.3",
5
5
  "type": "module",
6
6
  "main": "dist/tween.cjs",
7
7
  "types": "dist/tween.d.ts",