@bigtablet/design-system 1.24.0 → 1.24.2
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 +392 -392
- package/dist/index.d.ts +222 -222
- package/dist/index.js +736 -629
- package/dist/next.d.ts +1 -1
- package/dist/next.js +99 -147
- package/dist/vanilla/bigtablet.min.css +1 -1
- package/dist/vanilla/bigtablet.min.js +2 -2
- package/package.json +148 -147
package/package.json
CHANGED
|
@@ -1,149 +1,150 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
2
|
+
"name": "@bigtablet/design-system",
|
|
3
|
+
"version": "1.24.2",
|
|
4
|
+
"description": "Bigtablet Design System UI Components",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"style": "dist/index.css",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Bigtablet/bigtablet-design-system.git"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./next": {
|
|
18
|
+
"types": "./dist/next.d.ts",
|
|
19
|
+
"import": "./dist/next.js"
|
|
20
|
+
},
|
|
21
|
+
"./style.css": "./dist/index.css",
|
|
22
|
+
"./scss/token": "./dist/styles/scss/token.scss",
|
|
23
|
+
"./vanilla": {
|
|
24
|
+
"style": "./dist/vanilla/bigtablet.min.css",
|
|
25
|
+
"default": "./dist/vanilla/bigtablet.min.js"
|
|
26
|
+
},
|
|
27
|
+
"./vanilla/style.min.css": "./dist/vanilla/bigtablet.min.css",
|
|
28
|
+
"./vanilla/bigtablet.min.js": "./dist/vanilla/bigtablet.min.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"!dist/vanilla/bigtablet.css",
|
|
33
|
+
"!dist/vanilla/bigtablet.js",
|
|
34
|
+
"!dist/vanilla/examples",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"sideEffects": [
|
|
39
|
+
"**/*.css",
|
|
40
|
+
"**/*.scss",
|
|
41
|
+
"./dist/next.css"
|
|
42
|
+
],
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsup && pnpm run copy:scss && pnpm run build:vanilla",
|
|
45
|
+
"build:vanilla": "sh scripts/build-vanilla.sh",
|
|
46
|
+
"copy:scss": "sh scripts/copy-scss.sh",
|
|
47
|
+
"dev": "tsup --watch",
|
|
48
|
+
"storybook": "storybook dev -p 6006",
|
|
49
|
+
"build:sb": "storybook build",
|
|
50
|
+
"test": "vitest run --project unit",
|
|
51
|
+
"test:watch": "vitest --project unit",
|
|
52
|
+
"test:coverage": "vitest run --project unit --coverage",
|
|
53
|
+
"chromatic": "npx chromatic --project-token=$CHROMATIC_TOKEN --build-script-name=build:sb",
|
|
54
|
+
"figma:test": "tsx scripts/figma-connect.ts",
|
|
55
|
+
"figma:snapshot": "tsx scripts/figma-snapshot.ts",
|
|
56
|
+
"figma:diff": "tsx scripts/figma-diff.ts",
|
|
57
|
+
"figma:apply": "tsx scripts/figma-apply.ts",
|
|
58
|
+
"size": "size-limit",
|
|
59
|
+
"prepare": "husky"
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"design-system",
|
|
63
|
+
"react",
|
|
64
|
+
"storybook",
|
|
65
|
+
"ui",
|
|
66
|
+
"vanilla",
|
|
67
|
+
"thymeleaf",
|
|
68
|
+
"html",
|
|
69
|
+
"css"
|
|
70
|
+
],
|
|
71
|
+
"author": "sangmin",
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"packageManager": "pnpm@10.20.0",
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"lucide-react": ">=0.552.0",
|
|
76
|
+
"next": ">=16",
|
|
77
|
+
"react": "^19",
|
|
78
|
+
"react-dom": "^19"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"next": {
|
|
82
|
+
"optional": true
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@commitlint/cli": "^20.5.0",
|
|
87
|
+
"@commitlint/core": "^20.5.0",
|
|
88
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
89
|
+
"@semantic-release/git": "^10.0.1",
|
|
90
|
+
"@semantic-release/github": "^12.0.1",
|
|
91
|
+
"@semantic-release/npm": "^13.1.1",
|
|
92
|
+
"@size-limit/preset-small-lib": "^12.0.1",
|
|
93
|
+
"@storybook/addon-docs": "^10.3.3",
|
|
94
|
+
"@storybook/addon-vitest": "^10.3.3",
|
|
95
|
+
"@storybook/react": "^10.3.3",
|
|
96
|
+
"@storybook/react-vite": "^10.3.3",
|
|
97
|
+
"@testing-library/dom": "^10.4.1",
|
|
98
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
99
|
+
"@testing-library/react": "^16.3.2",
|
|
100
|
+
"@types/node": "^24",
|
|
101
|
+
"@types/react": "^19.2.14",
|
|
102
|
+
"@types/react-dom": "^19",
|
|
103
|
+
"@vitest/browser-playwright": "^4.1.2",
|
|
104
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
105
|
+
"chromatic": "^16.0.0",
|
|
106
|
+
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
107
|
+
"esbuild-sass-plugin": "^3.7.0",
|
|
108
|
+
"husky": "^9.1.7",
|
|
109
|
+
"jsdom": "^29.0.1",
|
|
110
|
+
"lucide-react": "^1.7.0",
|
|
111
|
+
"next": "^16.2.2",
|
|
112
|
+
"playwright": "^1.57.0",
|
|
113
|
+
"react": "^19.2.4",
|
|
114
|
+
"react-dom": "^19.2.4",
|
|
115
|
+
"sass-embedded": "^1.93.3",
|
|
116
|
+
"semantic-release": "^25.0.1",
|
|
117
|
+
"size-limit": "^12.0.1",
|
|
118
|
+
"storybook": "^10.3.3",
|
|
119
|
+
"tsup": "^8.5.0",
|
|
120
|
+
"tsx": "^4.21.0",
|
|
121
|
+
"typescript": "^6.0.2",
|
|
122
|
+
"vite": "^6.4.1",
|
|
123
|
+
"vitest": "^4.1.2",
|
|
124
|
+
"@biomejs/biome": "^2.4.10"
|
|
125
|
+
},
|
|
126
|
+
"publishConfig": {
|
|
127
|
+
"access": "public",
|
|
128
|
+
"registry": "https://registry.npmjs.org/"
|
|
129
|
+
},
|
|
130
|
+
"size-limit": [
|
|
131
|
+
{
|
|
132
|
+
"path": "dist/index.js",
|
|
133
|
+
"limit": "12 kB"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"path": "dist/vanilla/bigtablet.min.js",
|
|
137
|
+
"limit": "5 kB"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"pnpm": {
|
|
141
|
+
"overrides": {
|
|
142
|
+
"rollup": "^4.59.0",
|
|
143
|
+
"lodash": "^4.18.1",
|
|
144
|
+
"lodash-es": "^4.18.1",
|
|
145
|
+
"immutable": "^5.1.5",
|
|
146
|
+
"minimatch": "^10.2.4",
|
|
147
|
+
"handlebars": "^4.7.9"
|
|
148
|
+
}
|
|
149
|
+
}
|
|
149
150
|
}
|