You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Restructure old docs in preparation of new docs site (#9154)
* add temp banner to stately
* add banner to all pages
* move react spectrum pages to v3
* move releases under v3
* make sure intro and concept pages appear in sidebar for v3
* move stately hooks to aria and remove uneeded aria hooks
* lint
* test redirect
* add redirect pages for v3 and releases
* fix redirects for intro and concepts pages
* add redirects for react aria
* redirect release index page and rename script for consistency
* add redirects for blog and internationalized
* get rid of chevron
* properly redirect examples and point to new concepts page
* update more redirects
* have both stately and aria hooks in sidenav for react stately too
* rename sidebar headers
* add redirects for the remaining Foundation section pages
* Remove redirect pages. Will handle in CDN instead.
* Remove old docs that we migrated
* Update URL structure
* Update URLs
* Build old docs as part of s2 build
* Add stage docs build
* Remove RedirectLayout
* Fix more URLs
* Fix more URLs
* Remove Dialog from DatePicker examples
* More broken links
* Fix broken links
* More links
* Open search menu on components link at bottom of homepage
Also fix more links
* update migration banner
* make react spectrum links relative and bring back s2 gradient
* create relative links for aria and stately hook banner
* remove banner from releases and fix filetrigger link
* Fix one more url
* Move Support page to v3
* Remove unused useStepList docs
* Fix links
* Fix separator link
* Fix useDialog links
* Fix stately links from migration banner
---------
Co-authored-by: Devon Govett <devongovett@gmail.com>
[Size diff since last release](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/verdaccio/publish-stats/size-diff.txt)
* [View the storybook](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/storybook/index.html?path=/story/accordion--default)
85
84
* [View the S2 storybook](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/storybook-s2/index.html)
86
-
* [View the v3 docs](https://reactspectrum.blob.core.windows.net/reactspectrum/${process.env.CIRCLE_SHA1}/docs/index.html)
87
85
* [View the S2 docs](https://d1pzu54gtk2aed.cloudfront.net/pr/${process.env.CIRCLE_SHA1}/)
88
86
* [View the React Aria docs](https://d5iwopk28bdhl.cloudfront.net/pr/${process.env.CIRCLE_SHA1}/)`
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,4 +47,4 @@ React Spectrum includes several libraries, which you can choose depending on you
47
47
48
48
One of the goals of the React Spectrum project is to make building design systems and component libraries as easy as possible, while maintaining high quality interactions and accessibility support. We aim to raise the bar for web applications. The best way to achieve that goal is **together**. We would love contributions from the community no matter how big or small. 😍
49
49
50
-
Read our [contributing guide](https://react-spectrum.adobe.com/contribute.html) to learn about how to propose bugfixes and improvements, and how the development process works. For detailed information about our architecture, and how all of the pieces fit together, read our [architecture docs](https://react-spectrum.adobe.com/architecture.html).
50
+
Read our [contributing guide](https://github.com/adobe/react-spectrum/blob/main/CONTRIBUTING.md) to learn about how to propose bugfixes and improvements, and how the development process works. For detailed information about our architecture, and how all of the pieces fit together, read our [architecture docs](https://react-spectrum.adobe.com/architecture.html).
Copy file name to clipboardExpand all lines: packages/@react-aria/button/docs/useButton.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ cross browser inconsistencies in interactions and accessibility features to cons
48
48
* Keyboard focus management and cross browser normalization
49
49
* Keyboard event support for <Keyboard>Space</Keyboard> and <Keyboard>Enter</Keyboard> keys
50
50
51
-
Read our [blog post](/blog/building-a-button-part-1.html) about the complexities of building buttons that work well across devices and interaction methods.
51
+
Read our [blog post](../blog/building-a-button-part-1) about the complexities of building buttons that work well across devices and interaction methods.
52
52
53
53
## Anatomy
54
54
@@ -131,7 +131,7 @@ The following examples show how to use the `Button` component created in the abo
131
131
132
132
`useButton` supports user interactions via mouse, keyboard, and touch. You can handle all of these via the `onPress` prop. This is similar to the standard `onClick` event, but normalized to support all interaction methods equally. In addition, the `onPressStart`, `onPressEnd`, and `onPressChange` events are fired as the user interacts with the button.
133
133
134
-
Each of these handlers receives a <TypeLinklinks={typesDocs.links}type={typesDocs.exports.PressEvent} />, which exposes information about the target and the type of event that triggered the interaction. See [usePress](usePress.html) for more details.
134
+
Each of these handlers receives a <TypeLinklinks={typesDocs.links}type={typesDocs.exports.PressEvent} />, which exposes information about the target and the type of event that triggered the interaction. See [usePress](../usePress) for more details.
0 commit comments