Socket
Socket
Sign inDemoInstall

react-smooth

Package Overview
Dependencies
Maintainers
3
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-smooth - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

node_modules/history/CHANGES.md

11

CHANGELOG.md

@@ -0,1 +1,6 @@

0.1.12 / 2016-10-27
==================
* chore: fix script
0.1.10 / 2016-07-07

@@ -8,11 +13,11 @@ ==================

===
- feat: add onAniamtionStart prop
- feat: add onAniamtionStart prop
### 0.1.7 / 2016-04-21
===
- fix: fix Animate trigger animate when isActive is false
- fix: fix Animate trigger animate when isActive is false
### 0.1.6 / 2016-04-15
===
- fix: fix Animate not pipe props when Animate not active
- fix: fix Animate not pipe props when Animate not active

@@ -19,0 +24,0 @@ ### 0.1.5 / 2016-04-13

@@ -141,2 +141,4 @@ 'use strict';

cafId = (0, _raf2.default)(update);
} else {
update(beginTime + duration);
}

@@ -143,0 +145,0 @@ };

@@ -58,3 +58,3 @@ 'use strict';

if (isTransition) {
styleVal = value.replace(/(transform|transform-origin)/gim, '-webkit-$1');
styleVal = value.replace(/(transform|transform-origin)/gim, IN_LINE_PREFIX_LIST[i] + '$1');
}

@@ -66,4 +66,8 @@

var log = exports.log = console.log.bind(console);
var log = exports.log = function log() {
var _console;
(_console = console).log.apply(_console, arguments);
};
/*

@@ -70,0 +74,0 @@ * @description: log the value of a varible

@@ -141,2 +141,4 @@ 'use strict';

cafId = (0, _raf2.default)(update);
} else {
update(beginTime + duration);
}

@@ -143,0 +145,0 @@ };

@@ -58,3 +58,3 @@ 'use strict';

if (isTransition) {
styleVal = value.replace(/(transform|transform-origin)/gim, '-webkit-$1');
styleVal = value.replace(/(transform|transform-origin)/gim, IN_LINE_PREFIX_LIST[i] + '$1');
}

@@ -66,4 +66,8 @@

var log = exports.log = console.log.bind(console);
var log = exports.log = function log() {
var _console;
(_console = console).log.apply(_console, arguments);
};
/*

@@ -70,0 +74,0 @@ * @description: log the value of a varible

{
"name": "react-smooth",
"version": "0.1.11",
"version": "0.1.12",
"description": "react animation library",

@@ -5,0 +5,0 @@ "main": "lib/index",

@@ -112,2 +112,4 @@ import raf, { cancel as caf } from 'raf';

cafId = raf(update);
} else {
update(beginTime + duration);
}

@@ -114,0 +116,0 @@ };

@@ -34,3 +34,3 @@ import { intersection } from 'lodash';

if (isTransition) {
styleVal = value.replace(/(transform|transform-origin)/gim, '-webkit-$1');
styleVal = value.replace(/(transform|transform-origin)/gim, `${IN_LINE_PREFIX_LIST[i]}$1`);
}

@@ -45,3 +45,5 @@

export const log = console.log.bind(console);
export const log = (...args) => {
console.log(...args);
};

@@ -48,0 +50,0 @@ /*

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