@bigtablet/design-system 3.1.0 → 3.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 +10 -10
- package/dist/index.css +3904 -1104
- package/dist/index.d.ts +275 -65
- package/dist/index.js +505 -137
- package/dist/styles/a11y/_index.scss +3 -3
- package/dist/styles/colors/_index.scss +168 -61
- package/dist/styles/elevation/_index.scss +4 -4
- package/dist/styles/motion/_index.scss +2 -2
- package/dist/styles/skeleton/_index.scss +2 -2
- package/dist/styles/typography/_index.scss +3 -3
- package/dist/vanilla/bigtablet.min.css +1 -1
- package/package.json +9 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigtablet/design-system",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Bigtablet Design System UI Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"test:watch": "vitest --project unit",
|
|
49
49
|
"test:coverage": "vitest run --project unit --coverage",
|
|
50
50
|
"test:storybook": "vitest run --project storybook",
|
|
51
|
-
"
|
|
51
|
+
"lint:css": "stylelint 'src/ui/**/*.scss' 'src/styles/**/*.scss'",
|
|
52
52
|
"size": "size-limit",
|
|
53
53
|
"prepare": "husky"
|
|
54
54
|
},
|
|
@@ -80,10 +80,6 @@
|
|
|
80
80
|
"@biomejs/biome": "^2.4.15",
|
|
81
81
|
"@commitlint/cli": "^21.0.1",
|
|
82
82
|
"@commitlint/core": "^21.0.1",
|
|
83
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
84
|
-
"@semantic-release/git": "^10.0.1",
|
|
85
|
-
"@semantic-release/github": "^12.0.8",
|
|
86
|
-
"@semantic-release/npm": "^13.1.5",
|
|
87
83
|
"@size-limit/preset-small-lib": "^12.1.0",
|
|
88
84
|
"@storybook/addon-a11y": "^10.4.0",
|
|
89
85
|
"@storybook/addon-docs": "^10.4.0",
|
|
@@ -98,24 +94,23 @@
|
|
|
98
94
|
"@types/react-dom": "^19.2.3",
|
|
99
95
|
"@vitest/browser-playwright": "^4.1.6",
|
|
100
96
|
"@vitest/coverage-v8": "^4.1.6",
|
|
101
|
-
"chromatic": "^17.0.0",
|
|
102
|
-
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
103
97
|
"esbuild-sass-plugin": "^3.7.0",
|
|
104
98
|
"husky": "^9.1.7",
|
|
105
99
|
"jsdom": "^29.1.1",
|
|
106
100
|
"lucide-react": "^1.16.0",
|
|
107
101
|
"next": "^16.2.6",
|
|
108
102
|
"playwright": "^1.60.0",
|
|
103
|
+
"postcss-scss": "^4.0.9",
|
|
109
104
|
"react": "^19.2.6",
|
|
110
105
|
"react-dom": "^19.2.6",
|
|
111
106
|
"sass-embedded": "^1.99.0",
|
|
112
|
-
"semantic-release": "^25.0.3",
|
|
113
107
|
"size-limit": "^12.1.0",
|
|
114
108
|
"storybook": "^10.4.0",
|
|
109
|
+
"stylelint": "^17.13.0",
|
|
115
110
|
"tsup": "^8.5.1",
|
|
116
111
|
"tsx": "^4.22.3",
|
|
117
112
|
"typescript": "^6.0.3",
|
|
118
|
-
"vite": "^8.0.
|
|
113
|
+
"vite": "^8.0.16",
|
|
119
114
|
"vitest": "^4.1.6"
|
|
120
115
|
},
|
|
121
116
|
"publishConfig": {
|
|
@@ -140,7 +135,10 @@
|
|
|
140
135
|
"immutable": "^5.1.5",
|
|
141
136
|
"minimatch": "^10.2.4",
|
|
142
137
|
"handlebars": "^4.7.9",
|
|
143
|
-
"postcss": "^8.5.10"
|
|
138
|
+
"postcss": "^8.5.10",
|
|
139
|
+
"esbuild": "^0.28.1",
|
|
140
|
+
"js-yaml": "^4.2.0",
|
|
141
|
+
"@vitest/browser": "^4.1.8"
|
|
144
142
|
}
|
|
145
143
|
},
|
|
146
144
|
"dependencies": {
|