@akashic-extension/akashic-timeline
Advanced tools
Comparing version 0.4.3 to 0.4.4
# CHANGELOG | ||
## 0.4.4 | ||
* Easingのタイポを修正 | ||
## 0.4.3 | ||
@@ -4,0 +8,0 @@ |
@@ -45,4 +45,8 @@ /** | ||
*/ | ||
function easeInQubic(t: number, b: number, c: number, d: number): number; | ||
function easeInCubic(t: number, b: number, c: number, d: number): number; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeInCubic` を用いるべきである。 | ||
*/ | ||
const easeInQubic: typeof easeInCubic; | ||
/** | ||
* 入力値をeaseOutQubicした結果の現在位置を返す。 | ||
@@ -54,4 +58,8 @@ * @param t 経過時間 | ||
*/ | ||
function easeOutQubic(t: number, b: number, c: number, d: number): number; | ||
function easeOutCubic(t: number, b: number, c: number, d: number): number; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeOutCubic` を用いるべきである。 | ||
*/ | ||
const easeOutQubic: typeof easeOutCubic; | ||
/** | ||
* 入力値をeaseInOutQubicした結果の現在位置を返す。 | ||
@@ -63,4 +71,8 @@ * @param t 経過時間 | ||
*/ | ||
function easeInOutQubic(t: number, b: number, c: number, d: number): number; | ||
function easeInOutCubic(t: number, b: number, c: number, d: number): number; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeInOutCubic` を用いるべきである。 | ||
*/ | ||
const easeInOutQubic: typeof easeInOutCubic; | ||
/** | ||
* 入力値をeaseInQuartした結果の現在位置を返す。 | ||
@@ -67,0 +79,0 @@ * @param t 経過時間 |
@@ -64,8 +64,12 @@ /** | ||
*/ | ||
function easeInQubic(t, b, c, d) { | ||
function easeInCubic(t, b, c, d) { | ||
t /= d; | ||
return c * t * t * t + b; | ||
} | ||
Easing.easeInQubic = easeInQubic; | ||
Easing.easeInCubic = easeInCubic; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeInCubic` を用いるべきである。 | ||
*/ | ||
Easing.easeInQubic = easeInCubic; | ||
/** | ||
* 入力値をeaseOutQubicした結果の現在位置を返す。 | ||
@@ -77,3 +81,3 @@ * @param t 経過時間 | ||
*/ | ||
function easeOutQubic(t, b, c, d) { | ||
function easeOutCubic(t, b, c, d) { | ||
t /= d; | ||
@@ -83,4 +87,8 @@ --t; | ||
} | ||
Easing.easeOutQubic = easeOutQubic; | ||
Easing.easeOutCubic = easeOutCubic; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeOutCubic` を用いるべきである。 | ||
*/ | ||
Easing.easeOutQubic = easeOutCubic; | ||
/** | ||
* 入力値をeaseInOutQubicした結果の現在位置を返す。 | ||
@@ -92,3 +100,3 @@ * @param t 経過時間 | ||
*/ | ||
function easeInOutQubic(t, b, c, d) { | ||
function easeInOutCubic(t, b, c, d) { | ||
t /= d / 2; | ||
@@ -100,4 +108,8 @@ if (t < 1) | ||
} | ||
Easing.easeInOutQubic = easeInOutQubic; | ||
Easing.easeInOutCubic = easeInOutCubic; | ||
/** | ||
* @deprecated この関数は非推奨機能である。代わりに `easeInOutCubic` を用いるべきである。 | ||
*/ | ||
Easing.easeInOutQubic = easeInOutCubic; | ||
/** | ||
* 入力値をeaseInQuartした結果の現在位置を返す。 | ||
@@ -104,0 +116,0 @@ * @param t 経過時間 |
{ | ||
"name": "@akashic-extension/akashic-timeline", | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"description": "timeline library for akashic", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
52167
1263
0