Skip to content

Commit b25c769

Browse files
committed
Fix many issue
1 parent 8cf991d commit b25c769

File tree

83 files changed

+1311
-564
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1311
-564
lines changed

.changeset/six-lions-float.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@devup-ui/webpack-plugin": patch
3+
---
4+
5+
Fix css pile up issue

.changeset/strong-owls-rescue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@devup-ui/react": patch
3+
---
4+
5+
Add placehoder to selector

.changeset/ten-walls-cheer.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+
Fix ternary operator issue, css order issue, basic style issue

Cargo.lock

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/devup-ui-wasm/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ impl Output {
5151
st.level(),
5252
st.value(),
5353
st.selector(),
54+
st.basic(),
5455
) {
5556
collected = true;
5657
}
@@ -62,6 +63,7 @@ impl Output {
6263
dy.level(),
6364
&format!("var({})", variable.unwrap()),
6465
dy.selector(),
66+
false,
6567
) {
6668
collected = true;
6769
}

libs/extractor/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
oxc_parser = "0.46.0"
8-
oxc_syntax = "0.46.0"
9-
oxc_span = "0.46.0"
10-
oxc_allocator = "0.46.0"
11-
oxc_ast = "0.46.0"
12-
oxc_codegen = "0.46.0"
7+
oxc_parser = "0.47.1"
8+
oxc_syntax = "0.47.1"
9+
oxc_span = "0.47.1"
10+
oxc_allocator = "0.47.1"
11+
oxc_ast = "0.47.1"
12+
oxc_codegen = "0.47.1"
1313
css = { path = "../css" }
1414
once_cell = "1.20.2"
1515

0 commit comments

Comments
 (0)