-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: isolate Popover stories (#5618)
Co-authored-by: Daniel Lu <dl1644@gmail.com>
- Loading branch information
Showing
2 changed files
with
50 additions
and
32 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
packages/react-aria-components/stories/Popover.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2022 Adobe. All rights reserved. | ||
* This file is licensed to you under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. You may obtain a copy | ||
* of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under | ||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS | ||
* OF ANY KIND, either express or implied. See the License for the specific language | ||
* governing permissions and limitations under the License. | ||
*/ | ||
|
||
import {Button, Dialog, DialogTrigger, Heading, Popover} from 'react-aria-components'; | ||
import React from 'react'; | ||
|
||
export default { | ||
title: 'React Aria Components' | ||
}; | ||
|
||
export const PopoverExample = () => ( | ||
<DialogTrigger> | ||
<Button>Open popover</Button> | ||
<Popover | ||
placement="bottom start" | ||
style={{ | ||
background: 'Canvas', | ||
color: 'CanvasText', | ||
border: '1px solid gray', | ||
padding: 30, | ||
zIndex: 5 | ||
}}> | ||
<Dialog> | ||
{({close}) => ( | ||
<form style={{display: 'flex', flexDirection: 'column'}}> | ||
<Heading slot="title">Sign up</Heading> | ||
<label> | ||
First Name: <input placeholder="John" /> | ||
</label> | ||
<label> | ||
Last Name: <input placeholder="Smith" /> | ||
</label> | ||
<Button onPress={close} style={{marginTop: 10}}> | ||
Submit | ||
</Button> | ||
</form> | ||
)} | ||
</Dialog> | ||
</Popover> | ||
</DialogTrigger> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2137076
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verdaccio builds:
CRA Test App
NextJS Test App
RAC Tailwind Example
RAC Spectrum + Tailwind Example
CRA Test App Size
NextJS App Size
Publish stats
Size diff since last release
Docs
Storybook
RAC Starter Storybook