Skip to content

Commit f5364ca

Browse files
committed
Impelement enum type
1 parent ec24e79 commit f5364ca

18 files changed

+683
-217
lines changed

Cargo.lock

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

bindings/devup-ui-wasm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"]
1515
default = ["console_error_panic_hook"]
1616

1717
[dependencies]
18-
wasm-bindgen = "0.2.103"
18+
wasm-bindgen = "0.2.104"
1919
extractor = { path = "../../libs/extractor" }
2020
sheet = { path = "../../libs/sheet" }
2121
css = { path = "../../libs/css" }
@@ -26,13 +26,13 @@ css = { path = "../../libs/css" }
2626
# code size when deploying.
2727
console_error_panic_hook = { version = "0.1.7", optional = true }
2828
once_cell = "1.21.3"
29-
js-sys = "0.3.80"
29+
js-sys = "0.3.81"
3030
serde_json = "1.0.145"
3131
serde-wasm-bindgen = "0.6.5"
3232
bimap = { version = "0.6.3", features = ["serde"] }
3333

3434
[dev-dependencies]
35-
wasm-bindgen-test = "0.3.53"
35+
wasm-bindgen-test = "0.3.54"
3636
serial_test = "3.2.0"
3737
insta = "1.43.2"
3838
rstest = "0.26.1"

libs/css/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2024"
77
once_cell = "1.21.3"
88
phf = { version = "0.13", features = ["macros"] }
99
serial_test = "3.2.0"
10-
serde = { version = "1.0.225", features = ["derive"] }
11-
regex = "1.11.2"
10+
serde = { version = "1.0.228", features = ["derive"] }
11+
regex = "1.11.3"
1212
bimap = { version = "0.6.3" }
1313

1414
[dev-dependencies]

libs/css/src/constant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub(super) static GLOBAL_STYLE_PROPERTY: phf::Map<&str, &[&str]> = phf_map! {
7575
};
7676

7777
pub(super) static GLOBAL_ENUM_STYLE_PROPERTY: phf::Map<&str, phf::Map<&str, phf::Map<&str, &str>>> = phf_map! {
78-
"positioning " => phf_map! {
78+
"positioning" => phf_map! {
7979
"top" => phf_map! {
8080
"top" => "0",
8181
},

0 commit comments

Comments
 (0)