Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@akashic-extension/akashic-timeline

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@akashic-extension/akashic-timeline - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

4

CHANGELOG.md
# 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 経過時間

24

lib/Easing.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc