@toptal/davinci-storybook 5.2.2 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @toptal/davinci-storybook
2
2
 
3
+ ## 6.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#2633](https://github.com/toptal/davinci/pull/2633) [`bd08a93`](https://github.com/toptal/davinci/commit/bd08a9352e73fe136145b66c26eb7a1a24814aa4) Thanks [@javier-delgado](https://github.com/javier-delgado)!
8
+ Upgraded Tailwind to V4
9
+ - updated `tailwindcss` peer dependency from `^3.4.10` to `^4.2.1`
10
+ - updated `picasso` peer dependency
11
+
3
12
  ## 5.2.2
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-storybook",
3
- "version": "5.2.2",
3
+ "version": "6.0.0",
4
4
  "keywords": [
5
5
  "essentials",
6
6
  "storybook",
@@ -60,6 +60,7 @@
60
60
  "@storybook/react-webpack5": "^8.6.9",
61
61
  "@storybook/test": "^8.6.9",
62
62
  "@swc/plugin-styled-components": "^9.1.0",
63
+ "@tailwindcss/postcss": "^4.2.1",
63
64
  "autoprefixer": "^10.4.15",
64
65
  "babel-plugin-styled-components": "^2.1.4",
65
66
  "postcss": "^8.4.32",
@@ -69,7 +70,7 @@
69
70
  "react-dom": ">= 16 < 19",
70
71
  "react-refresh": "^0.14.0",
71
72
  "storybook": "^8.6.9",
72
- "tailwindcss": "^3.3.5",
73
+ "tailwindcss": "^4.2.1",
73
74
  "webpack": "^5.94.0"
74
75
  },
75
76
  "peerDependencies": {
@@ -84,11 +85,12 @@
84
85
  "@storybook/react": "8",
85
86
  "@storybook/react-webpack5": "8",
86
87
  "@swc/plugin-styled-components": "^9.1.0",
88
+ "@tailwindcss/postcss": "^4.2.1",
87
89
  "babel-plugin-styled-components": "^2.1.4",
88
90
  "happo-plugin-storybook": "^4.4.3",
89
91
  "react-refresh": "^0.14.0",
90
92
  "storybook": "8",
91
- "tailwindcss": "^3.3.5",
93
+ "tailwindcss": "^4.2.1",
92
94
  "webpack": "^5.94.0"
93
95
  },
94
96
  "publishConfig": {
@@ -56,9 +56,7 @@ const webpackFinal = config => {
56
56
  postcssOptions: {
57
57
  config: false,
58
58
  plugins: {
59
- tailwindcss: {
60
- config: tailwindConfigPath,
61
- },
59
+ '@tailwindcss/postcss': {},
62
60
  autoprefixer: {},
63
61
  },
64
62
  },