-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(card): adds card component to react #742
base: ods-react
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Add migration from 17 file to documentation
const meta: Meta<OdsCardProp> = { | ||
component: OdsCard, | ||
// @ts-ignore see https://github.com/storybookjs/storybook/issues/27535 | ||
// subcomponents: { OdsCardXxx }, // Uncomment if sub components, otherwise remove |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
}, | ||
}), | ||
args: { | ||
color: 'primary', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not necessary
export const Color: Story = { | ||
tags: ['!dev'], | ||
render: () => ( | ||
<div style={{ display: 'flex', gap: '16px' }}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can use decorators to hide the parent layout (see badge or button)
), | ||
}; | ||
|
||
export const CustomCSS: Story = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we still want to expose those? especially when using style directly due to storybook
|
||
<Heading label="Color" level={ 3 } /> | ||
|
||
<Canvas of={ CardStories.Demo } sourceState="shown" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Color
|
||
<Canvas of={ CardStories.Demo } sourceState="shown" /> | ||
|
||
... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
|
||
<TechnicalSpecification data={ SpecificationsCard } of={ CardStories } /> | ||
|
||
<Heading label="Style customization" level={ 2 } /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove
|
||
export const Default: Story = { | ||
tags: ['!dev'], | ||
render: () => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
render: ({}) => (
afb5e94
to
f7a6b6f
Compare
No description provided.