@x-plat/design-system 0.2.0 → 0.2.1
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/components/Chart/index.cjs +14230 -37
- package/dist/components/Chart/index.js +14217 -33
- package/dist/components/DatePicker/index.cjs +10771 -57
- package/dist/components/DatePicker/index.css +748 -0
- package/dist/components/DatePicker/index.js +11003 -281
- package/dist/components/Swiper/index.cjs +5874 -18
- package/dist/components/Swiper/index.css +229 -0
- package/dist/components/Swiper/index.js +5863 -17
- package/dist/components/index.cjs +25752 -847
- package/dist/components/index.css +746 -0
- package/dist/components/index.js +25751 -849
- package/dist/index.cjs +25787 -883
- package/dist/index.css +1120 -0
- package/dist/index.js +25787 -888
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@x-plat/design-system",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "XPLAT UI Design System",
|
|
5
5
|
"author": "XPLAT WOONG",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
],
|
|
51
51
|
"scripts": {
|
|
52
52
|
"generate-grid": "tsx generate_grid.ts",
|
|
53
|
-
"
|
|
53
|
+
"inject-tokens": "tsx scripts/inject-tokens.ts",
|
|
54
|
+
"build": "npm run clean && npm run inject-tokens && npm run generate-grid && tsc --noEmit && NODE_OPTIONS='--max-old-space-size=8192' tsup",
|
|
54
55
|
"dev": "tsup --watch",
|
|
55
56
|
"clean": "rm -rf dist",
|
|
56
57
|
"lint": "eslint src",
|
|
@@ -61,16 +62,16 @@
|
|
|
61
62
|
"react-dom": ">=18"
|
|
62
63
|
},
|
|
63
64
|
"dependencies": {
|
|
64
|
-
"@x-plat/tokens-default": "*"
|
|
65
|
+
"@x-plat/tokens-default": "*"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@eslint/js": "^9.15.0",
|
|
65
69
|
"chart.js": "^4.5.1",
|
|
66
70
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
67
71
|
"framer-motion": "^12.23.19",
|
|
68
72
|
"react-chartjs-2": "^5.3.1",
|
|
69
73
|
"react-datepicker": "^9.1.0",
|
|
70
|
-
"swiper": "^12.0.2"
|
|
71
|
-
},
|
|
72
|
-
"devDependencies": {
|
|
73
|
-
"@eslint/js": "^9.15.0",
|
|
74
|
+
"swiper": "^12.0.2",
|
|
74
75
|
"@types/node": "^24.10.1",
|
|
75
76
|
"@types/react": "^19.1.13",
|
|
76
77
|
"@types/react-dom": "^19.1.9",
|