From 5fe88c3003ef14b75bb33a728aa0f240c9c11bf0 Mon Sep 17 00:00:00 2001 From: Eugene Fedorenko Date: Tue, 9 Feb 2021 15:04:59 -0500 Subject: [PATCH] Added grids, transitions, and animations --- index.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 58 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index b781bbb..f2e715b 100644 --- a/index.js +++ b/index.js @@ -112,22 +112,58 @@ module.exports = { // Generated content 'content', + // Grid child + 'grid-row', + 'grid-row-start', + 'grid-row-end', + 'grid-column', + 'grid-column-start', + 'grid-column-end', + 'grid-area', + // Flexbox child 'order', 'flex', 'flex-grow', 'flex-shrink', 'flex-basis', + + // Grid & Flexbox child alignment + 'place-self', 'align-self', + 'justify-self', - // Flexbox parent + // Display 'display', + + // Grid parent + 'grid', + 'grid-template', + 'grid-template-rows', + 'grid-template-columns', + 'grid-template-areas', + 'grid-auto-rows', + 'grid-auto-columns', + 'grid-auto-flow', + 'gap', + 'row-gap', + 'column-gap', + 'grid-gap', // Old version of 'gap' + 'grid-row-gap', + 'grid-column-gap', + + // Flexbox parent 'flex-flow', 'flex-direction', 'flex-wrap', - 'justify-content', + + // Grid & Flexbox alignment + 'place-items', 'align-items', + 'justify-items', + 'place-content', 'align-content', + 'justify-content', // Visual formatting 'position', @@ -240,8 +276,27 @@ module.exports = { 'outline', 'pointer-events', - // Animation + // Transforms + 'transform', + 'transform-origin', + + // Transitions + 'transition', + 'transition-property', + 'transition-duration', + 'transition-timing-function', + 'transition-delay', + + // Animations 'animation', + 'animation-name', + 'animation-duration', + 'animation-timing-function', + 'animation-delay', + 'animation-iteration-count', + 'animation-direction', + 'animation-fill-mode', + 'animation-play-state', ], {'severity': 'warning'} ],