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: 4 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
- Add `Tabs` primitive ([#74652](https://github.com/WordPress/gutenberg/pull/74652)).
- Add `Textarea` primitive ([#74707](https://github.com/WordPress/gutenberg/pull/74707)).

### Bug Fixes

- `Field`: Fix default gap spacing ([#75446](https://github.com/WordPress/gutenberg/pull/75446)).

### Enhancements

- `Button`: Add minimum content width (`6ch` + padding) to prevent overly narrow buttons with short labels ([#75133](https://github.com/WordPress/gutenberg/pull/75133)).
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/badge/stories/choosing-intent.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const meta: Meta< typeof Badge > = {
component: Badge,
decorators: [
( Story ) => (
<Stack direction="row" gap="xs" wrap="wrap">
<Stack direction="row" gap="sm" wrap="wrap">
<Story />
</Stack>
),
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/form/primitives/field/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { FieldRootProps } from './types';
import { Stack } from '../../../stack';

const DEFAULT_RENDER = ( props: React.ComponentProps< typeof Stack > ) => (
<Stack { ...props } direction="column" gap="xs" />
<Stack { ...props } direction="column" gap="sm" />
);

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/stack/stories/index.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Story = StoryObj< typeof Stack >;

export const Default: Story = {
args: {
gap: 'sm',
gap: 'md',
children: (
<>
<DemoBox />
Expand Down Expand Up @@ -90,7 +90,7 @@ export const Nested: Story = {
children: (
<>
<DemoBox variant="lg" />
<Stack gap="md">
<Stack gap="lg">
<DemoBox />
<DemoBox />
</Stack>
Expand Down
Loading