Skip to content

Commit

Permalink
fixing broken links in the the docs (#5572)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktabors authored Dec 14, 2023
1 parent 29510be commit 99e6100
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/dev/docs/pages/releases/2020-09-02.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ As always, a huge thank you to all our contributors for the new features, fixes
- [useCheckboxGroupState](../../react-stately/useCheckboxGroupState.html) hook in `@react-stately/checkbox`
- **SSRProvider** - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/992)
- [SSRProvider](../../react-aria/SSRProvider.html) component in `@react-aria/ssr`
- [useIsSSR](../../react-aria/useIsSSR.html.html) component in `@react-aria/ssr`
- [useIsSSR](../../react-aria/useIsSSR.html) component in `@react-aria/ssr`

## New features

Expand Down
4 changes: 2 additions & 2 deletions packages/dev/docs/pages/releases/2021-12-16.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For our end of year release we worked on improving our accessibility, types and
- Patch intl-messageformat for null or undefined values - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/2544)
- Add `onKeyDown` event handler to `SearchField` - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/2617)
- Update selection `useSingleSelectionState` and `useMultipleSelectionState` to control sending duplicate selection events - [@LFDanLu](https://github.com/LFDanLu) - [PR](https://github.com/adobe/react-spectrum/pull/2618)
- Fix incorrect color rending for `Checkbox` - [@paulgpeterson](https://github.com/paulgpeterson) - [PR](https://github.com/adobe/react-spectrum/pull/2662)
- Fix incorrect color rending for `Checkbox` - [@paulchan14](https://github.com/paulchan14) - [PR](https://github.com/adobe/react-spectrum/pull/2662)
- Pass filtered DOM props to Tabs - [@khoad](https://github.com/khoad) - [PR](https://github.com/adobe/react-spectrum/pull/2655)
- Fix incorrect active state on disabled `Checkbox` in Firefox - [@ktabors](https://github.com/ktabors) - [PR](https://github.com/adobe/react-spectrum/pull/2582)
- Update types for ComboBox to seperate stately props - [@frdclav](https://github.com/frdclav) - [PR](https://github.com/adobe/react-spectrum/pull/2651)
Expand All @@ -36,7 +36,7 @@ For our end of year release we worked on improving our accessibility, types and
- Fix `useMenuTrigger` example to spread correct props on menu - [@frdclav](https://github.com/frdclav) - [PR](https://github.com/adobe/react-spectrum/pull/2642/)
- Update TableView and useAsyncList to use useCollator for sorting - [@wilfredo-malazarte](https://github.com/wilfredo-malazarte) - [PR](https://github.com/adobe/react-spectrum/pull/2656)
- Update Contributing file with new versions - [@sdjustin](https://github.com/sdjustin) - [PR](https://github.com/adobe/react-spectrum/pull/2649)
- Add missing import to `useSwitch` example - [@Dev-CasperTheGhost](https://github.com/Dev-CasperTheGhost) - [PR](https://github.com/adobe/react-spectrum/pull/2634)
- Add missing import to `useSwitch` example - [@casperiv0](https://github.com/casperiv0) - [PR](https://github.com/adobe/react-spectrum/pull/2634)

## Under construction

Expand Down
2 changes: 1 addition & 1 deletion packages/dev/docs/pages/releases/2022-11-15.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Finally, we have plenty of bug fixes and documentation updates. Thanks to all of
- [useModalOverlay](https://react-spectrum.adobe.com/react-aria/useModalOverlay.html)

## Enhancements
- Add SSR support for drag and drop - [@Dev-CasperTheGhost](https://github.com/Dev-CasperTheGhost) - [PR](https://github.com/adobe/react-spectrum/pull/3616)
- Add SSR support for drag and drop - [@casperiv0](https://github.com/casperiv0) - [PR](https://github.com/adobe/react-spectrum/pull/3616)
- Export `TableCollection` and `TreeCollection` - [@reidbarber](https://github.com/reidbarber) - [PR](https://github.com/adobe/react-spectrum/pull/3690)
- Update Spectrum colors to v6 - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/3604)
- `Button` and `ActionButton` design updates - [@devongovett](https://github.com/devongovett) - [PR](https://github.com/adobe/react-spectrum/pull/3650)
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/docs/Group.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ import {TextField, Label, Group, Input, Button} from 'react-aria-components';

## Features

A group can be created with a `<div role="group">` or via the HTML [&lt;fieldset&gt;](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset) element. The `Group` component supports additional UI states, and can be used standalone or as part of a larger pattern such as [NumberField](NumberField.html) or [DatePicker](Datepicker.html).
A group can be created with a `<div role="group">` or via the HTML [&lt;fieldset&gt;](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset) element. The `Group` component supports additional UI states, and can be used standalone or as part of a larger pattern such as [NumberField](NumberField.html) or [DatePicker](DatePicker.html).

* **Styleable** – Hover, keyboard focus, disabled, and invalid states are provided for easy styling. These states only apply when interacting with an appropriate input device, unlike CSS pseudo classes.
* **Accessible** – Implemented using the ARIA "group" role by default, with optional support for the "region" landmark role.
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/docs/ListBox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ function AsyncLoadingExample() {

`ListBox` supports marking items as disabled using the `disabledKeys` prop. Each key in this list
corresponds with the `id` prop passed to the `ListBoxItem` component, or automatically derived from the values passed
to the `items` prop. See [Collections](../react-stately/Collections.html) for more details.
to the `items` prop. See [Collections](../react-stately/collections.html) for more details.

```tsx example
<ListBox
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/docs/Menu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ By default, MenuTrigger opens by pressing the trigger element or activating it v

`Menu` supports marking items as disabled using the `disabledKeys` prop. Each key in this list
corresponds with the `id` prop passed to the `MenuItem` component, or automatically derived from the values passed
to the `items` prop. See [Collections](../react-stately/Collections.html) for more details.
to the `items` prop. See [Collections](../react-stately/collections.html) for more details.

Disabled items are not focusable or keyboard navigable, and do not trigger `onAction` or `onSelectionChange`.

Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/docs/Select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ A Select can be fully disabled using the `isDisabled` prop.

`Select` supports marking items as disabled using the `disabledKeys` prop. Each key in this list
corresponds with the `id` prop passed to the `ListBoxItem` component, or automatically derived from the values passed
to the `items` prop. See [Collections](../react-stately/Collections.html) for more details.
to the `items` prop. See [Collections](../react-stately/collections.html) for more details.

Disabled items are not focusable, selectable, or keyboard navigable. The `isDisabled` property returned by
`useOption` can be used to style the item appropriately.
Expand Down
2 changes: 1 addition & 1 deletion packages/react-aria-components/docs/Tabs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ All tabs can be disabled using the `isDisabled` prop.

Individual tabs can be disabled using the `disabledKeys` prop. Each key in this list
corresponds with the `id` prop passed to the `Tab` component, or automatically derived from the values passed
to the `items` prop. See [Collections](../react-stately/Collections.html) for more details.
to the `items` prop. See [Collections](../react-stately/collections.html) for more details.

```tsx example
<Tabs disabledKeys={['gamepad']}>
Expand Down

0 comments on commit 99e6100

Please sign in to comment.