Skip to content

Commit

Permalink
Show all input variants under Form section (#2691)
Browse files Browse the repository at this point in the history
Co-authored-by: Connor Bär <[email protected]>
  • Loading branch information
matoous and connor-baer authored Oct 17, 2024
1 parent db7cac5 commit a4f2f9d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/circuit-ui/components/Calendar/Calendar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as Stories from './Calendar.stories';

<Status variant="experimental" />

The Calendar component displays a monthly date grid. This is a low-level component for advanced use cases; you likely want to use the [DateInput](Forms/Input/DateInput/Base) component instead.
The Calendar component displays a monthly date grid. This is a low-level component for advanced use cases; you likely want to use the [DateInput](Forms/DateInput/Base) component instead.

<Story of={Stories.Base} />
<Props />
Expand Down Expand Up @@ -85,7 +85,7 @@ function App() {

## Related components

- [DateInput](Forms/Input/DateInput/Base): The DateInput component allows user to select a specific date.
- [DateInput](Forms/DateInput/Base): The DateInput component allows user to select a specific date.

## Accessibility

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { ColorInput, type ColorInputProps } from './ColorInput.js';

export default {
title: 'Forms/Input/ColorInput',
title: 'Forms/ColorInput',
component: ColorInput,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { Stack } from '../../../../.storybook/components/index.js';
import { CurrencyInput, type CurrencyInputProps } from './CurrencyInput.js';

export default {
title: 'Forms/Input/CurrencyInput',
title: 'Forms/CurrencyInput',
component: CurrencyInput,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { DateInput, type DateInputProps } from './DateInput.js';

export default {
title: 'Forms/Input/DateInput',
title: 'Forms/DateInput',
component: DateInput,
argTypes: {
disabled: { control: 'boolean' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
} from './PercentageInput.js';

export default {
title: 'Forms/Input/PercentageInput',
title: 'Forms/PercentageInput',
component: PercentageInput,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type { InputElement } from '../Input/index.js';
import { SearchInput, type SearchInputProps } from './SearchInput.js';

export default {
title: 'Forms/Input/SearchInput',
title: 'Forms/SearchInput',
component: SearchInput,
argTypes: {
placeholder: { control: 'text' },
Expand Down

0 comments on commit a4f2f9d

Please sign in to comment.