Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(web-components): cleanup drawer storybook #31991

Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
davatron5000 marked this conversation as resolved.
Show resolved Hide resolved
"type": "prerelease",
"comment": "chore: cleanup drawer storybook",
"packageName": "@fluentui/web-components",
"email": "[email protected]",
"dependentChangeType": "patch"
}
17 changes: 17 additions & 0 deletions packages/web-components/src/drawer-body/drawer-body.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
import { FASTElement } from '@microsoft/fast-element';

/**
* A DrawerBody component to layout drawer content
* @extends FASTElement
*
* @slot title - The title slot
* @slot close - The close button slot
* @slot - The default content slot
* @slot footer - The footer slot
*
* @csspart header - The header part of the drawer
* @csspart content - The content part of the drawer
* @csspart footer - The footer part of the drawer
*
* @summary A component that provides a drawer body for displaying content in a side panel.
*
* @tag fluent-drawer-body
*/
export class DrawerBody extends FASTElement {}
Loading
Loading