Skip to content

Commit ff6ab14

Browse files
committed
fix(search): update icon size to use integer instead of u32
chore(release): fix output matrix echoing in workflow
1 parent d736326 commit ff6ab14

File tree

11 files changed

+14
-13
lines changed

11 files changed

+14
-13
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ jobs:
4545
| sort -u \
4646
| jq -R . \
4747
| jq -s -c .)
48-
49-
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
48+
fi
49+
50+
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
5051
5152
publish:
5253
name: Publish Changed Projects

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustlanges-components"
33
description = "RustLangES components library"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2024"
66
license = "MIT"
77

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustlanges-components-core"
33
description = "RustLangES internal core components library"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2024"
66
license = "MIT"
77

crates/leptos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "leptos-components"
33
description = "RustLangES leptos components"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2024"
66
license = "MIT"
77

crates/leptos/src/button.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub fn Button(
1616
#[prop(into, optional)] class: String,
1717
on_click: impl FnMut(MouseEvent) + 'static,
1818
#[prop(into, optional)] icon: Option<AnyView>,
19-
#[prop(into, optional)] label: Option<String>
19+
#[prop(into, optional)] label: Option<String>,
2020
) -> impl IntoView {
2121
let var = format!(
2222
"{}{}",

crates/leptos/src/input/search.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn InputSearch(
5353
has_filter.then_some(concat!(BASE_CLASS, "-input-search--filter"))
5454
)
5555
>
56-
<SearchIcon size=24u32 />
56+
<SearchIcon size=24 />
5757
<input
5858
type="text"
5959
placeholder="Buscar"
@@ -64,7 +64,7 @@ pub fn InputSearch(
6464
<div class=concat!(BASE_CLASS, "-input-search__filter")>
6565
{has_filter.then(|| view! {
6666
<button on:click=move |_| set_filter_modal.update(|v| *v = !*v) tabindex="0">
67-
<FilterIcon size=24u32 />
67+
<FilterIcon size=24 />
6868
</button>
6969
})}
7070
<div

crates/leptos/src/progress_bar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub fn ProgressBar(#[prop(into)] percentage: ReadSignal<usize>) -> impl IntoView
3737
style:left={progress_in_min_limit.then_some(percentage_str.clone()).unwrap_or_else(|| "auto".into())}
3838
>
3939
{percentage_str.clone()}
40-
<Ferris size=15u32 />
40+
<Ferris size=15 />
4141
</span>
4242
<div
4343
class=max_limit_class

js/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rustlanges/react",
33
"private": false,
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"type": "module",
66
"exports": {
77
".": {

js/showcase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rustlanges/showcase",
33
"private": true,
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"type": "module",
66
"exports": {
77
".": {

js/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rustlanges/vue",
33
"private": false,
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"type": "module",
66
"exports": {
77
".": {

0 commit comments

Comments
 (0)