feat(SW-375): new tokens

new asset generation logic

BREAKING CHANGE: New tokens.
This commit is contained in:
Michael Zetterberg
2025-01-20 14:46:25 +01:00
parent 7ce2ee2922
commit 56973888c9
189 changed files with 34368 additions and 10344 deletions

View File

@@ -0,0 +1,61 @@
import type { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import { Chips } from './Chips.tsx'
import { ChipLink } from '../ChipLink/ChipLink.tsx'
import { ChipButton } from '../ChipButton/ChipButton.tsx'
import { Default as ChipLinkDefault } from '../ChipLink/ChipLink.stories.tsx'
import { Default as ChipButtonDefault } from '../ChipButton/ChipButton.stories.tsx'
type StoryProps = React.ComponentPropsWithoutRef<typeof Chips> & {
onPress: () => void
}
const meta: Meta<StoryProps> = {
title: 'Compositions/Chips',
component: Chips,
argTypes: {
onPress: {
table: {
disable: true,
},
},
},
}
export default meta
type Story = StoryObj<StoryProps>
export const Default: Story = {
args: {
onPress: fn(),
},
render: (args) => {
return (
<Chips>
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipLink {...ChipLinkDefault.args} {...args} />
<ChipButton {...ChipButtonDefault.args} {...args} />
</Chips>
)
},
}

View File

@@ -0,0 +1,7 @@
import styles from './chips.module.css'
import type { PropsWithChildren } from 'react'
export function Chips({ children }: PropsWithChildren) {
return <div className={styles.chips}>{children}</div>
}

View File

@@ -0,0 +1,6 @@
.chips {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: var(--Space-x1);
}

View File

@@ -0,0 +1 @@
export { Chips } from './Chips'