Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 0025017

Browse files
committed
feat(wip): include known css properties in styled system config
1 parent 88d16d2 commit 0025017

File tree

5 files changed

+699
-125
lines changed

5 files changed

+699
-125
lines changed

packages/chakra-ui-core/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"color": "^3.1.2",
4444
"focus-trap": "^5.1.0",
4545
"focus-trap-vue": "^0.0.4",
46+
"known-css-properties": "^0.20.0",
4647
"lodash-es": "^4.17.15",
4748
"portal-vue": "^2.1.6",
4849
"styled-system": "^5.1.2",

packages/chakra-ui-core/src/config/props/props.config.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,14 @@ export const config = {
120120
overflowY: true,
121121
textTransform: true,
122122
animation: true,
123+
animationDelay: true,
124+
animationDirection: true,
125+
animationDuration: true,
126+
animationFillMode: true,
127+
animationIterationCount: true,
128+
animationName: true,
129+
animationPlayState: true,
130+
animationTimingFunction: true,
123131
appearance: true,
124132
transform: true,
125133
transformOrigin: true,
@@ -153,7 +161,9 @@ export const config = {
153161
},
154162
outline: true,
155163
float: true,
156-
willChange: true
164+
willChange: true,
165+
accelerator: true,
166+
alignmentBaseline: true
157167
}
158168

159169
config.bgAttachment = config.backgroundAttachment

0 commit comments

Comments
 (0)