Skip to content

Commit

Permalink
Skip empty strings when appending class name
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoevan committed Nov 1, 2024
1 parent 10c4647 commit 3d10b1a
Show file tree
Hide file tree
Showing 24 changed files with 301 additions and 296 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilly-rockets-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/fuselage': patch
---

Fixes a bug that adds an extra whitespace when concatenating class names with `appendClassName`
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exports[`[AutoComplete Rendering] renders CustomItem without crashing 1`] = `
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
value=""
/>
</div>
Expand Down Expand Up @@ -43,7 +43,7 @@ exports[`[AutoComplete Rendering] renders CustomSelected without crashing 1`] =
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
value=""
/>
<div
Expand Down Expand Up @@ -141,7 +141,7 @@ exports[`[AutoComplete Rendering] renders Default without crashing 1`] = `
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
value=""
/>
</div>
Expand Down Expand Up @@ -172,7 +172,7 @@ exports[`[AutoComplete Rendering] renders Multiple without crashing 1`] = `
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
value=""
/>
<button
Expand All @@ -188,7 +188,7 @@ exports[`[AutoComplete Rendering] renders Multiple without crashing 1`] = `
</span>
<i
aria-hidden="true"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
>
</i>
Expand All @@ -206,7 +206,7 @@ exports[`[AutoComplete Rendering] renders Multiple without crashing 1`] = `
</span>
<i
aria-hidden="true"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
>
</i>
Expand Down Expand Up @@ -239,7 +239,7 @@ exports[`[AutoComplete Rendering] renders MultipleCustomSelected without crashin
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
value=""
/>
<button
Expand Down Expand Up @@ -320,7 +320,7 @@ v/L21v8BT/ZVoe1UItsAAAAASUVORK5CYII="
</span>
<i
aria-hidden="true"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
>
</i>
Expand Down Expand Up @@ -403,7 +403,7 @@ v/L21v8BT/ZVoe1UItsAAAAASUVORK5CYII="
</span>
<i
aria-hidden="true"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
class="rcx-box rcx-box--full rcx-icon--name-cross rcx-icon rcx-css-trljwa rcx-css-1wv1vf9"
>
</i>
Expand Down Expand Up @@ -436,7 +436,7 @@ exports[`[AutoComplete Rendering] renders WithPlaceholder without crashing 1`] =
>
<input
aria-label="Decorator Label"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
class="rcx-box rcx-box--full rcx-box--animated rcx-input-box--undecorated rcx-input-box rcx-css-trljwa rcx-css-rcil7k"
placeholder="Search..."
value=""
/>
Expand Down
Loading

0 comments on commit 3d10b1a

Please sign in to comment.