diff --git a/docs/haring-react/components/action-bar.mdx b/docs/haring-react/components/action-bar.mdx index 0737dd0..d6ee367 100644 --- a/docs/haring-react/components/action-bar.mdx +++ b/docs/haring-react/components/action-bar.mdx @@ -6,7 +6,7 @@ import { GitHubLogo } from '../../../src/icons/GitHubLogo'; extendsInfo={[ { label: 'ActionList', - link: './action-row-overflow', + link: './action-list', logo: , }, ]} @@ -31,9 +31,9 @@ import { GitHubLogo } from '../../../src/icons/GitHubLogo'; ## Props -ActionBar takes a `` generic type that extends `Record`, to be used by [ActionList](./action-row-overflow). +ActionBar takes a `` generic type that extends `Record`, to be used by [ActionList](./action-list). | Name | Type | Default | Description | | --------------------------------- | -------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | selectedElementsLabel | `(selectedElements: number) => string` | ``(selectedElements: number) => `${selectedElements} file(s) selected`` | Function used to generate the string that displays how many elements are currently selected, it gives the current number of elements in the `selectedElements` array as a parameter | -| ... | - | - | extends [`ActionList props`](./action-row-overflow#props) | +| ... | - | - | extends [`ActionList props`](./action-list#props) | diff --git a/docs/haring-react/components/filter-list.mdx b/docs/haring-react/components/filter-list.mdx index 4a99c51..6f71798 100644 --- a/docs/haring-react/components/filter-list.mdx +++ b/docs/haring-react/components/filter-list.mdx @@ -30,8 +30,7 @@ storybookInfo="3-custom-components-filterlist--docs" > Renders a list of filters with text inputs and a manage filters button which - displays the component - [SearchableList](../components/searchable-checkbox-list) + displays the component [SearchableList](../components/searchable-list) ## Storybook Docs diff --git a/docs/haring-react/components/language-menu.mdx b/docs/haring-react/components/language-menu.mdx index 5de3212..ac05b10 100644 --- a/docs/haring-react/components/language-menu.mdx +++ b/docs/haring-react/components/language-menu.mdx @@ -6,7 +6,7 @@ import { GitHubLogo } from '../../../src/icons/GitHubLogo'; extendsInfo={[ { label: 'ButtonList', - link: './button-list-or-dropdown', + link: './button-list', logo: , }, ]} @@ -20,11 +20,11 @@ import { GitHubLogo } from '../../../src/icons/GitHubLogo'; }} storybookInfo="3-custom-components-languagemenu--docs" > - It inherits from the [ButtonList](./button-list-or-dropdown) component. It - displays a list of language buttons with or without flags in a 4x3 or 1x1 - format. When the number of buttons exceeds a specified threshold (controlled - by the maxButtonItems property), the component dynamically transforms into a - dropdown menu. + It inherits from the [ButtonList](./button-list) component. It displays a list + of language buttons with or without flags in a 4x3 or 1x1 format. When the + number of buttons exceeds a specified threshold (controlled by the + maxButtonItems property), the component dynamically transforms into a dropdown + menu. ## Storybook Docs @@ -33,13 +33,13 @@ import { GitHubLogo } from '../../../src/icons/GitHubLogo'; ## Props -LanguageMenu takes a `` generic type that extends `Record`, to be used by [ActionList](./action-row-overflow). +LanguageMenu takes a `` generic type that extends `Record`, to be used by [ActionList](./action-list). | Name | Type | Default | Description | | --------------------- | --------- | ------- | -------------------------------------------------------------------------------------------- | | languages | `ILang[]` | - | Is the array of langs of type `ILang` displayed into the component | | squareFormat | `boolean` | `false` | Displays the default 4x3 format, If this prop is set to true, it shows flags in a 1x1 format | -| ... | | - | Extend props from [ButtonList](./button-list-or-dropdown) component | +| ... | | - | Extend props from [ButtonList](./button-list) component | ## `ILang`