primevue-mirror/components/lib/props/style/animation/properties/fillMode.js

20 lines
467 B
JavaScript
Raw Normal View History

2024-02-17 23:42:39 +00:00
import { token } from '../..';
export default {
animationFillMode: token.prop('animationFillMode')
};
2024-02-16 08:48:00 +00:00
/* const { styleClass } = require('../../../utils');
module.exports = (root, opts) => {
const fill = {
'animation-fill-none': 'none',
'animation-fill-forwards': 'forwards',
'animation-fill-backwards': 'backwards',
'animation-fill-both': 'both'
};
styleClass('animation-fill-mode', fill, root, opts, true);
};
*/