Skip to content

Commit f327278

Browse files
committed
Add maintain value
1 parent 87c620c commit f327278

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.changeset/purple-ways-kiss.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@devup-ui/wasm": patch
3+
---
4+
5+
Add maintain value

libs/extractor/src/extract_style/mod.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ static MAINTAIN_VALUE_PROPERTIES: Lazy<HashSet<String>> = Lazy::new(|| {
3030
set.insert("scale".to_string());
3131
set.insert("aspectRatio".to_string());
3232
set.insert("flexGrow".to_string());
33+
set.insert("flexShrink".to_string());
34+
set.insert("order".to_string());
35+
set.insert("gridColumn".to_string());
36+
set.insert("gridColumnStart".to_string());
37+
set.insert("gridColumnEnd".to_string());
38+
set.insert("gridRow".to_string());
39+
set.insert("gridRowStart".to_string());
40+
set.insert("gridRowEnd".to_string());
41+
set.insert("animationIterationCount".to_string());
3342
set
3443
});
3544

0 commit comments

Comments
 (0)