@bigtablet/design-system 3.2.1 → 3.3.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/dist/index.css +102 -11
- package/dist/index.d.ts +132 -77
- package/dist/index.js +359 -168
- package/dist/styles/colors/_index.scss +5 -0
- package/package.json +19 -15
|
@@ -32,6 +32,11 @@ $color_base_neutral_800: #333333;
|
|
|
32
32
|
$color_base_neutral_900: #121212;
|
|
33
33
|
$color_base_neutral_925: #141414; // dark panel/card bg (Vercel-style)
|
|
34
34
|
$color_base_neutral_950: #0A0A0A; // darkest page bg (Vercel-style)
|
|
35
|
+
|
|
36
|
+
// Text caption - AA 전용값 (neutral scale 과 분리: neutral_500/600 은 border-hover 등 재사용되므로 caption 만 따로)
|
|
37
|
+
$color_base_text_caption_light: #6F6F6F; // on #fff 5.0:1 / on #F4F4F4 4.57:1 (WCAG AA)
|
|
38
|
+
$color_base_text_caption_dark: #808080; // on #0A0A0A 5.0:1 / on #141414 4.66:1 (WCAG AA)
|
|
39
|
+
|
|
35
40
|
// Status - light mode default (darkened for AA on #fff text, 5+:1)
|
|
36
41
|
// 이전 값 (#EF4444 등) 은 #fff 텍스트 조합 시 AA 미달 (2.0~3.7:1) - Tailwind 700 계열로 교체.
|
|
37
42
|
$color_base_status_error: #B91C1C; // red-700, with #fff = 6.4:1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigtablet/design-system",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Bigtablet Design System UI Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,8 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"sideEffects": [
|
|
35
35
|
"**/*.css",
|
|
36
|
-
"**/*.scss"
|
|
37
|
-
"./dist/next.css"
|
|
36
|
+
"**/*.scss"
|
|
38
37
|
],
|
|
39
38
|
"scripts": {
|
|
40
39
|
"build": "tsup && pnpm run copy:scss && pnpm run build:vanilla",
|
|
@@ -67,7 +66,7 @@
|
|
|
67
66
|
"packageManager": "pnpm@10.20.0",
|
|
68
67
|
"peerDependencies": {
|
|
69
68
|
"lucide-react": ">=0.552.0",
|
|
70
|
-
"next": ">=
|
|
69
|
+
"next": ">=15",
|
|
71
70
|
"react": "^19",
|
|
72
71
|
"react-dom": "^19"
|
|
73
72
|
},
|
|
@@ -81,31 +80,31 @@
|
|
|
81
80
|
"@commitlint/cli": "^21.0.1",
|
|
82
81
|
"@commitlint/core": "^21.0.1",
|
|
83
82
|
"@size-limit/preset-small-lib": "^12.1.0",
|
|
84
|
-
"@storybook/addon-a11y": "^10.4.
|
|
85
|
-
"@storybook/addon-docs": "^10.4.
|
|
86
|
-
"@storybook/addon-vitest": "^10.4.
|
|
87
|
-
"@storybook/react": "^10.4.
|
|
88
|
-
"@storybook/react-vite": "^10.4.
|
|
83
|
+
"@storybook/addon-a11y": "^10.4.6",
|
|
84
|
+
"@storybook/addon-docs": "^10.4.6",
|
|
85
|
+
"@storybook/addon-vitest": "^10.4.6",
|
|
86
|
+
"@storybook/react": "^10.4.6",
|
|
87
|
+
"@storybook/react-vite": "^10.4.6",
|
|
89
88
|
"@testing-library/dom": "^10.4.1",
|
|
90
89
|
"@testing-library/jest-dom": "^6.9.1",
|
|
91
90
|
"@testing-library/react": "^16.3.2",
|
|
92
91
|
"@types/node": "^25.9.1",
|
|
93
|
-
"@types/react": "^19.2.
|
|
92
|
+
"@types/react": "^19.2.17",
|
|
94
93
|
"@types/react-dom": "^19.2.3",
|
|
95
94
|
"@vitest/browser-playwright": "^4.1.6",
|
|
96
95
|
"@vitest/coverage-v8": "^4.1.6",
|
|
97
96
|
"esbuild-sass-plugin": "^3.7.0",
|
|
98
97
|
"husky": "^9.1.7",
|
|
99
98
|
"jsdom": "^29.1.1",
|
|
100
|
-
"lucide-react": "^1.
|
|
99
|
+
"lucide-react": "^1.21.0",
|
|
101
100
|
"next": "^16.2.6",
|
|
102
101
|
"playwright": "^1.60.0",
|
|
103
102
|
"postcss-scss": "^4.0.9",
|
|
104
|
-
"react": "^19.2.
|
|
105
|
-
"react-dom": "^19.2.
|
|
103
|
+
"react": "^19.2.7",
|
|
104
|
+
"react-dom": "^19.2.7",
|
|
106
105
|
"sass-embedded": "^1.99.0",
|
|
107
106
|
"size-limit": "^12.1.0",
|
|
108
|
-
"storybook": "^10.4.
|
|
107
|
+
"storybook": "^10.4.6",
|
|
109
108
|
"stylelint": "^17.13.0",
|
|
110
109
|
"tsup": "^8.5.1",
|
|
111
110
|
"tsx": "^4.22.3",
|
|
@@ -125,6 +124,10 @@
|
|
|
125
124
|
{
|
|
126
125
|
"path": "dist/vanilla/bigtablet.min.js",
|
|
127
126
|
"limit": "5 kB"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"path": "dist/index.css",
|
|
130
|
+
"limit": "130 kB"
|
|
128
131
|
}
|
|
129
132
|
],
|
|
130
133
|
"pnpm": {
|
|
@@ -138,7 +141,8 @@
|
|
|
138
141
|
"postcss": "^8.5.10",
|
|
139
142
|
"esbuild": "^0.28.1",
|
|
140
143
|
"js-yaml": "^4.2.0",
|
|
141
|
-
"@vitest/browser": "^4.1.8"
|
|
144
|
+
"@vitest/browser": "^4.1.8",
|
|
145
|
+
"undici": "^7.28.0"
|
|
142
146
|
}
|
|
143
147
|
},
|
|
144
148
|
"dependencies": {
|