Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/ui/.storybook/public/defaultTheme.json
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@
"itemRow": {
"alignItems": "center",
"justifyContent": "space-between",
"flexWrap": "noWrap"
"flexWrap": "nowrap"
},
"itemColumn": {
"minWidth": 0,
Expand Down Expand Up @@ -1182,7 +1182,7 @@
"loader": {
"attrs": {
"withWrapper": false,
"size": "md"
"size": "sm"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Pre-built indexes for quick discovery:
> Run `yarn build:ui` to regenerate. Do not edit the block between the markers manually.

<!-- AUTO-GENERATED:COMPONENTS:START -->
66 components total — generated from libs/ui/src/ai/schemas/ on 2026-07-22.
66 components total — generated from libs/ui/src/ai/schemas/ on 2026-07-23.

## Other

Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/ai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ yarn test:ai:watch

<!-- AUTO-GENERATED:COMPONENTS:START -->

_66 components total — generated from `libs/ui/src/ai/schemas/` on 2026-07-22._
_66 components total — generated from `libs/ui/src/ai/schemas/` on 2026-07-23._

### Other

Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/components/atoms/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>((props, forward
{iconEnd}
</EndIconStyled>
) : null}
{isLoading ? <Loader {...get(theme, 'button.loader.attrs', { withWrapper: false, size: 'md' })} /> : null}
{isLoading ? <Loader {...get(theme, 'button.loader.attrs', { withWrapper: false, size: 'sm' })} /> : null}
</>
</ButtonStyled>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ exports[`AttachmentFile > isLoading > SHOULD match snapshot when isLoading 1`] =
type="button"
>
<span
class="css-hf7z1t"
class="css-7rcsk"
data-testid="Loader"
/>
</button>
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/src/tokens/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const button = {
loader: {
attrs: {
withWrapper: false,
size: 'md',
size: 'sm',
},
Comment thread
Zlodej43sm marked this conversation as resolved.
},
};