Skip to content

Commit 27e6e5d

Browse files
committed
change files
1 parent 2110cee commit 27e6e5d

File tree

7 files changed

+35
-4
lines changed

7 files changed

+35
-4
lines changed

apps/public-docsite-v9/src/Concepts/Accessibility/ComponentLabelling.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,11 @@ Explanation
459459
{' '}
460460
<li>
461461
The text is not focusable anymore, because the "tabindex" attribute does not exist on the text element.
462-
</li> <strong>Example 1:</strong> <li>The text element has a unique id, like "notificationText".</li> <li>
462+
<strong>Example 1:</strong> The text element has a unique id, like "notificationText".
463+
</li>
464+
<li>
463465
The `button` has the aria-describedby="notificationText" attribute.
464-
</li> <strong>Example 2:</strong> <li>
466+
<strong>Example 2:</strong>
465467
`Button` is wrapped with the `div` element. It has role="group" and label.
466468
</li>{' '}
467469
</ul>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "none",
3+
"comment": "chore: upgrade to storybook 9",
4+
"packageName": "@fluentui/chart-web-components",
5+
"email": "[email protected]",
6+
"dependentChangeType": "none"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "minor",
3+
"comment": "feat: upgrade to storybook 9",
4+
"packageName": "@fluentui/react-storybook-addon",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "minor",
3+
"comment": "feat: upgrade to storybook 9",
4+
"packageName": "@fluentui/react-storybook-addon-export-to-sandbox",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "chore: upgrade to storybook 9",
4+
"packageName": "@fluentui/web-components",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}

packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Parameters } from '@storybook/react-webpack5';
2-
import type { StoryContextForEnhancers } from '@storybook/csf';
2+
import type { StoryContextForEnhancers } from 'storybook/internal/csf';
33

44
import { withExportToSandboxButton } from '../decorators/with-export-to-sandbox-button';
55

scripts/tasks/src/storybook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import * as fs from 'fs';
33
import * as path from 'path';
44
import { findGitRoot } from '@fluentui/scripts-monorepo';
55

6-
import { build as storybook } from '@storybook/core-server';
6+
// @ts-expect-error - storybook/internal/core-server is an ECMAScript module
7+
import { build as storybook } from 'storybook/internal/core-server';
78

89
// Option types are documented here but not included in package for some reason
910
// https://github.com/storybookjs/storybook/blob/master/lib/core/docs/standalone.md

0 commit comments

Comments
 (0)