@@ -12,6 +12,8 @@ const keyframesSlideIn = require('./keyframes/slideIn');
1212const keyframesSlideOut = require ( './keyframes/slideOut' ) ;
1313const keyframesFadeIn = require ( './keyframes/fadeIn' ) ;
1414const keyframesFadeOut = require ( './keyframes/fadeOut' ) ;
15+ const keyframesBackIn = require ( './keyframes/backIn' ) ;
16+ const keyframesBackOut = require ( './keyframes/backOut' ) ;
1517
1618module . exports = function ( { classes = [ ] , settings = { } , variants = [ 'responsive' ] } ) {
1719 return function ( { e, addUtilities, prefix, addVariant, postcss } ) {
@@ -35,7 +37,8 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
3537 '@keyframes flash' : keyframes . keyframeFlash ,
3638 '@keyframes pulse' : keyframes . keyframePulse ,
3739 '@keyframes rubberBand' : keyframes . keyframeRubberBand ,
38- '@keyframes shake' : keyframes . keyframeShake ,
40+ '@keyframes shakeX' : keyframes . keyframeShakeX ,
41+ '@keyframes shakeY' : keyframes . keyframeShakeY ,
3942 '@keyframes headShake' : keyframes . keyframeHeadShake ,
4043 '@keyframes swing' : keyframes . keyframeSwing ,
4144 '@keyframes tada' : keyframes . keyframeTada ,
@@ -44,8 +47,10 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
4447 '@keyframes heartBeat' : keyframes . keyframeHeartBeat ,
4548 '@keyframes hinge' : keyframes . keyframeHinge ,
4649 '@keyframes jackInTheBox' : keyframes . keyframeJackInTheBox ,
47- '@keyframes lightSpeedIn' : keyframesLightSpeed . keyframeLightSpeedIn ,
48- '@keyframes lightSpeedOut' : keyframesLightSpeed . keyframeLightSpeedOut ,
50+ '@keyframes lightSpeedInLeft' : keyframesLightSpeed . keyframeLightSpeedInLeft ,
51+ '@keyframes lightSpeedInRight' : keyframesLightSpeed . keyframeLightSpeedInRight ,
52+ '@keyframes lightSpeedOutLeft' : keyframesLightSpeed . keyframeLightSpeedOutLeft ,
53+ '@keyframes lightSpeedOutRight' : keyframesLightSpeed . keyframeLightSpeedOutRight ,
4954 '@keyframes flip' : keyframesFlip . keyframeFlip ,
5055 '@keyframes flipInX' : keyframesFlip . keyframeFlipInX ,
5156 '@keyframes flipInY' : keyframesFlip . keyframeFlipInY ,
@@ -98,6 +103,10 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
98103 '@keyframes fadeInLeftBig' : keyframesFadeIn . keyframeFadeInLeftBig ,
99104 '@keyframes fadeInRight' : keyframesFadeIn . keyframeFadeInRight ,
100105 '@keyframes fadeInRightBig' : keyframesFadeIn . keyframeFadeInRightBig ,
106+ '@keyframes fadeInTopLeft' : keyframesFadeIn . keyframeFadeInTopLeft ,
107+ '@keyframes fadeInTopRight' : keyframesFadeIn . keyframeFadeInTopRight ,
108+ '@keyframes fadeInBottomLeft' : keyframesFadeIn . keyframeFadeInBottomLeft ,
109+ '@keyframes fadeInBottomRight' : keyframesFadeIn . keyframeFadeInBottomRight ,
101110 '@keyframes fadeInUp' : keyframesFadeIn . keyframeFadeInUp ,
102111 '@keyframes fadeInUpBig' : keyframesFadeIn . keyframeFadeInUpBig ,
103112 '@keyframes fadeOut' : keyframesFadeOut . keyframeFadeOut ,
@@ -108,7 +117,19 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
108117 '@keyframes fadeOutRight' : keyframesFadeOut . keyframeFadeOutRight ,
109118 '@keyframes fadeOutRightBig' : keyframesFadeOut . keyframeFadeOutRightBig ,
110119 '@keyframes fadeOutUp' : keyframesFadeOut . keyframeFadeOutUp ,
111- '@keyframes fadeOutUpBig' : keyframesFadeOut . keyframeFadeOutUpBig
120+ '@keyframes fadeOutUpBig' : keyframesFadeOut . keyframeFadeOutUpBig ,
121+ '@keyframes fadeOutTopLeft' : keyframesFadeOut . keyframeFadeOutTopLeft ,
122+ '@keyframes fadeOutTopRight' : keyframesFadeOut . keyframeFadeOutTopRight ,
123+ '@keyframes fadeOutBottomLeft' : keyframesFadeOut . keyframeFadeOutBottomLeft ,
124+ '@keyframes fadeOutBottomRight' : keyframesFadeOut . keyframeFadeOutBottomRight ,
125+ '@keyframes backInDown' : keyframesBackIn . keyframeBackInDown ,
126+ '@keyframes backInUp' : keyframesBackIn . keyframeBackInUp ,
127+ '@keyframes backInLeft' : keyframesBackIn . keyframeBackInLeft ,
128+ '@keyframes backInRight' : keyframesBackIn . keyframeBackInRight ,
129+ '@keyframes backOutDown' : keyframesBackOut . keyframeBackOutDown ,
130+ '@keyframes backOutUp' : keyframesBackOut . keyframeBackOutUp ,
131+ '@keyframes backOutLeft' : keyframesBackOut . keyframeBackOutLeft ,
132+ '@keyframes backOutRight' : keyframesBackOut . keyframeBackOutRight ,
112133 }
113134
114135 const fallbackUtilities = {
@@ -171,8 +192,11 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
171192 '.animate__rubberBand' : {
172193 animationName : 'rubberBand' ,
173194 } ,
174- '.animate__shake' : {
175- animationName : 'shake' ,
195+ '.animate__shakeX' : {
196+ animationName : 'shakeX' ,
197+ } ,
198+ '.animate__shakeY' : {
199+ animationName : 'shakeY' ,
176200 } ,
177201 '.animate__headShake' : {
178202 animationTimingFunction : 'ease-in-out' ,
@@ -203,11 +227,17 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
203227 '.animate__jackInTheBox' : {
204228 animationName : 'jackInTheBox' ,
205229 } ,
206- '.animate__lightSpeedIn' : {
207- animationName : 'lightSpeedIn' ,
230+ '.animate__lightSpeedInLeft' : {
231+ animationName : 'lightSpeedInLeft' ,
232+ } ,
233+ '.animate__lightSpeedInRight' : {
234+ animationName : 'lightSpeedInRight' ,
208235 } ,
209- '.animate__lightSpeedOut' : {
210- animationName : 'lightSpeedOut' ,
236+ '.animate__lightSpeedOutLeft' : {
237+ animationName : 'lightSpeedOutLeft' ,
238+ } ,
239+ '.animate__lightSpeedOutRight' : {
240+ animationName : 'lightSpeedOutRight' ,
211241 } ,
212242 '.animate__flip' : {
213243 animationName : 'flip' ,
@@ -374,6 +404,18 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
374404 '.animate__fadeInUpBig' : {
375405 animationName : 'fadeInUpBig'
376406 } ,
407+ '.animate__fadeInTopLeft' : {
408+ animationName : 'fadeInTopLeft'
409+ } ,
410+ '.animate__fadeInTopRight' : {
411+ animationName : 'fadeInTopRight'
412+ } ,
413+ '.animate__fadeInBottomLeft' : {
414+ animationName : 'fadeInBottomLeft'
415+ } ,
416+ '.animate__fadeInBottomRight' : {
417+ animationName : 'fadeInBottomRight'
418+ } ,
377419 '.animate__fadeOut' : {
378420 animationName : 'fadeOut'
379421 } ,
@@ -401,6 +443,30 @@ module.exports = function ({ classes = [], settings = {}, variants = ['responsiv
401443 '.animate__fadeOutUpBig' : {
402444 animationName : 'fadeOutUpBig'
403445 } ,
446+ '.animate__backInUp' : {
447+ animationName : 'backInUp'
448+ } ,
449+ '.animate__backInDown' : {
450+ animationName : 'backInDown'
451+ } ,
452+ '.animate__backInLeft' : {
453+ animationName : 'backInLeft'
454+ } ,
455+ '.animate__backInRight' : {
456+ animationName : 'backInRight'
457+ } ,
458+ '.animate__backOutUp' : {
459+ animationName : 'backOutUp'
460+ } ,
461+ '.animate__backOutDown' : {
462+ animationName : 'backOutDown'
463+ } ,
464+ '.animate__backOutLeft' : {
465+ animationName : 'backOutLeft'
466+ } ,
467+ '.animate__backOutRight' : {
468+ animationName : 'backOutRight'
469+ } ,
404470 }
405471
406472 let utilities = { } ;
0 commit comments