Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Fix `Popup` logic of handling `content` value provided as React element @kuzhelov ([#592](https://github.com/stardust-ui/react/pull/592))
- Do not handle `FocusZone`'s keyDownCapture in `chatBehavior` @sophieH29 ([#563](https://github.com/stardust-ui/react/pull/563))
- Fix `getKeyDownHandler` to pass props for client's onKeyDown handler @sophieH29 ([#595](https://github.com/stardust-ui/react/pull/595))
- fix multiple React's warnings about keys in docs @layershifter ([#602](https://github.com/stardust-ui/react/pull/602))

### Features
- `Ref` components uses `forwardRef` API by default @layershifter ([#491](https://github.com/stardust-ui/react/pull/491))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ const ComponentDocAccessibility = ({ info }) => {
<p>
Available behaviors:{' '}
{info.behaviors.map(behavior => (
<>
<React.Fragment key={`${behavior.category}-${behavior.name}`}>
<a href={`behaviors/${behavior.category}#${_.kebabCase(behavior.name)}`}>
{behavior.displayName}
</a>{' '}
</>
</React.Fragment>
))}
</p>
)}
Expand Down
1 change: 1 addition & 0 deletions docs/src/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const Router = () => (
/>,
<DocsLayout
exact
key="/prototype-popups"
path="/prototype-popups"
component={require('./prototypes/popups/index').default}
/>,
Expand Down