Skip to content

Commit f61ef0f

Browse files
committedApr 15, 2025
Merge remote-tracking branch 'origin/main' into codemod-refactor
2 parents e23cd3c + 2d8e30f commit f61ef0f

File tree

347 files changed

+11185
-8525
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

347 files changed

+11185
-8525
lines changed
 

‎.storybook-s2/docs/Release Notes.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ export default MDXLayout;
44

55
# Release Notes
66

7+
## v0.8.0
8+
9+
### New Components
10+
11+
* [NotificationBadge](?path=/docs/actionbutton--docs#notification-badges)
12+
* [Toast](?path=/docs/toast--docs) (alpha)
13+
14+
### Updates
15+
16+
* Pass DOM Props to ButtonGroup
17+
* Prevent Dividers from growing or shrinking in a flex container by default
18+
* Export Autocomplete
19+
* Export SortDescriptor type
20+
21+
### Disclosure Design updates
22+
Spectrum has updated the S disclosure design. As a result, all other sizes (M, L, XL) now map to one size smaller than before. See [PR](https://github.com/adobe/react-spectrum/pull/8006) for details.
23+
724
## v0.7.0
825

926
### New Components

‎.storybook-s2/preview.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { addons } from '@storybook/preview-api';
66
import { DocsContainer } from '@storybook/addon-docs';
77
import React, { useEffect, useState } from 'react';
88
import {withProviderSwitcher} from './custom-addons/provider';
9+
import {Controls, Description, Primary, Stories, Subtitle, Title} from '@storybook/blocks';
910
import './global.css';
1011

1112
const channel = addons.getChannel();
@@ -42,7 +43,17 @@ const preview = {
4243
}
4344
return code;
4445
}
45-
}
46+
},
47+
page: () => (
48+
<>
49+
<Title />
50+
<Subtitle />
51+
<Description />
52+
<Primary />
53+
<Controls />
54+
<Stories includePrimary={false} />
55+
</>
56+
)
4657
},
4758
darkMode: {
4859
light: {

0 commit comments

Comments
 (0)