Skip to content

Commit

Permalink
Bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCCWong committed May 31, 2024
1 parent 472842a commit 6fe0165
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/ReactCardFlip.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ var ReactCardFlip = function (props) {
var frontRotateX = "rotateX(".concat(infinite ? rotation : isFlipped ? 180 : 0, "deg)");
var backRotateX = "rotateX(".concat(infinite ? rotation + 180 : isFlipped ? 0 : -180, "deg)");
var styles = {
back: __assign({ WebkitBackfaceVisibility: 'hidden', backfaceVisibility: 'hidden', height: '100%', left: '0', position: isFlipped ? 'relative' : 'absolute', top: '0', transform: flipDirection === 'horizontal' ? backRotateY : backRotateX, transformStyle: 'preserve-3d', transition: "".concat(flipSpeedFrontToBack, "s"), width: '100%' }, back),
back: __assign({ WebkitBackfaceVisibility: 'hidden', backfaceVisibility: 'hidden', height: '100%', left: '0', position: isFlipped ? 'relative' : 'absolute', top: '0', transform: flipDirection === 'horizontal' ? backRotateY : backRotateX, transformStyle: 'preserve-3d', transition: "".concat(flipSpeedFrontToBack, "s"), width: '100%', zIndex: isFlipped ? '2' : '1' }, back),
container: {
perspective: '1000px',
zIndex: "".concat(cardZIndex),
},
flipper: {
height: '100%',
perspective: '1000px',
position: 'relative',
width: '100%',
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-card-flip",
"version": "1.2.2",
"version": "1.2.3",
"description": "ReactCardFlip",
"main": "./lib/ReactCardFlip.js",
"types": "./lib/ReactCardFlip.d.ts",
Expand Down

0 comments on commit 6fe0165

Please sign in to comment.