Skip to content

Commit

Permalink
docs: add changelog about tailwind css variables v1
Browse files Browse the repository at this point in the history
  • Loading branch information
yue4u committed Dec 19, 2024
1 parent 518be75 commit 3591e32
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .storybook/src/v4.0.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,29 @@ import { ThemeProvider } from 'styled-components'
</CharcoalProvider>
```


tailwind単体で利用可能にするためにデフォルトでcss変数v1を提供するようになりました。
TokenInjectorと併用する場合falseに指定してください。

```diff
module.exports = {
...
presets: [
createTailwindConfig({
version: 'v3',
theme: {
':root': light,
'[data-dark="true"]': dark,
},
+ cssVariablesV1: false,
unstableTokenV2: true,
}),
],
...
}

```

## Button

- `ComponentAbstraction``to`を用いたカスタム要素の設定を、`component``React.ElementType`を指定することによって行えるように変更しました。
Expand Down

0 comments on commit 3591e32

Please sign in to comment.