Skip to content

Commit 2fea4d0

Browse files
committed
chore: add supported props
1 parent 6c2a121 commit 2fea4d0

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

src/removeUnsupported.js

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,10 @@ const supportedProperties = {
215215
"animation-iteration-count": true,
216216
"animation-name": true,
217217
"animation-timing-function": true,
218+
"aspect-ratio": true,
218219
background: true,
219220
"background-color": true,
221+
"background-clip": true,
220222
"background-image": true,
221223
"background-position": true,
222224
"background-repeat": ["repeat", "repeat-x", "repeat-y", "no-repeat"],
@@ -236,30 +238,45 @@ const supportedProperties = {
236238
"border-top-right-radius": true,
237239
"border-top-width": true,
238240
"border-width": true,
241+
bottom: true,
239242
"box-shadow": true,
243+
"box-sizing": true,
240244
"clip-path": true,
245+
clear: true,
241246
color: true,
242-
"display": true,
247+
display: true,
243248
gap: true,
244249
"grid-area": true,
245250
"grid-template-areas": true,
246251
"grid-template-rows": true,
247252
"grid-template-columns": true,
253+
"grid-row": true,
254+
"grid-row-gap": true,
248255
"grid-row-start": true,
249256
"grid-row-end": true,
257+
"grid-column": true,
258+
"grid-column-gap": true,
250259
"grid-column-start": true,
251260
"grid-column-end": true,
252261
"grid-gap": true,
253262
"row-gap": true,
254263
"column-gap": true,
264+
"corner-shape-top-left": true,
265+
"corner-shape-top-right": true,
266+
"corner-shape-bottom-left": true,
267+
"corner-shape-bottom-right": true,
268+
"corner-shape": true,
255269
"grid-auto-rows": true,
256270
"grid-auto-columns": true,
257271
"grid-auto-flow": ["row", "column", "row dense", "column dense"],
272+
filter: true,
258273
flex: true,
274+
"flex-basis": true,
259275
"flex-grow": true,
260276
"flex-direction": true,
261277
"flex-shrink": true,
262278
"flex-wrap": true,
279+
float: true,
263280
font: true,
264281
"font-family": true,
265282
"font-size": true,
@@ -272,6 +289,7 @@ const supportedProperties = {
272289
"justify-content": true,
273290
"justify-items": true,
274291
"justify-self": true,
292+
left: true,
275293
"letter-spacing": true,
276294
"line-height": true,
277295
margin: true,
@@ -306,15 +324,22 @@ const supportedProperties = {
306324
"placeholder-color": true,
307325
"place-items": true,
308326
"place-self": true,
327+
position: true,
328+
right: true,
309329
"selected-tab-text-color": true,
330+
"scrollbar-width": true,
310331
"tab-background-color": true,
311332
"tab-text-color": true,
312333
"tab-text-font-size": true,
313334
"text-transform": true,
314335
"text-align": ["left", "center", "right"],
336+
"text-alignment": true,
315337
"text-decoration": ["none", "line-through", "underline"],
338+
"text-overflow": true,
316339
"text-shadow": true,
317340
"text-transform": ["none", "capitalize", "uppercase", "lowercase"],
341+
"text-wrap": true,
342+
top: true,
318343
transform: true,
319344
rotate: true,
320345
"vertical-align": ["top", "center", "bottom", "stretch"],

0 commit comments

Comments
 (0)