@szum-tech/design-system 1.1.8 → 1.2.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/README.md +2 -2
- package/package.json +3 -1
- package/tailwindcss/main-preset.js +5 -1
package/README.md
CHANGED
|
@@ -23,14 +23,14 @@ Szum-Tech Design System is available as an [npm package](https://www.npmjs.com/p
|
|
|
23
23
|
|
|
24
24
|
```sh
|
|
25
25
|
npm install @szum-tech/design-system
|
|
26
|
-
npm install -D tailwindcss tailwind-scrollbar
|
|
26
|
+
npm install -D tailwindcss tailwind-scrollbar @tailwindcss/container-queries
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
**yarn:**
|
|
30
30
|
|
|
31
31
|
```sh
|
|
32
32
|
yarn add @szum-tech/design-system
|
|
33
|
-
yarn add -D tailwindcss tailwind-scrollbar
|
|
33
|
+
yarn add -D tailwindcss tailwind-scrollbar @tailwindcss/container-queries
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Configuration
|
package/package.json
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"@storybook/react": "^6.5.13",
|
|
25
25
|
"@storybook/testing-library": "^0.0.13",
|
|
26
26
|
"@storybook/theming": "^6.5.13",
|
|
27
|
+
"@tailwindcss/container-queries": "^0.1.0",
|
|
27
28
|
"@testing-library/react": "^13.4.0",
|
|
28
29
|
"@testing-library/user-event": "^14.4.3",
|
|
29
30
|
"@types/prettier": "^2.7.1",
|
|
@@ -91,8 +92,9 @@
|
|
|
91
92
|
},
|
|
92
93
|
"sideEffects": false,
|
|
93
94
|
"types": "./dist/index.d.ts",
|
|
94
|
-
"version": "1.
|
|
95
|
+
"version": "1.2.0",
|
|
95
96
|
"peerDependencies": {
|
|
97
|
+
"@tailwindcss/container-queries": "^0.1.0",
|
|
96
98
|
"react": "^18.2.0",
|
|
97
99
|
"tailwind-scrollbar": "^2.0.1",
|
|
98
100
|
"tailwindcss": "^3.2.1"
|