@etus/ui 0.3.2 → 0.4.0-beta.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/index.d.ts +1029 -69
- package/dist/index.js +7559 -5213
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etus/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-beta.1",
|
|
4
4
|
"description": "Seven Design System - UI components for ETUS applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -40,19 +40,10 @@
|
|
|
40
40
|
"dist",
|
|
41
41
|
"styles.css"
|
|
42
42
|
],
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsup",
|
|
45
|
-
"dev": "tsup --watch",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"test:watch": "vitest",
|
|
48
|
-
"test:coverage": "vitest run --coverage",
|
|
49
|
-
"test:ui": "vitest --ui"
|
|
50
|
-
},
|
|
51
43
|
"dependencies": {
|
|
52
44
|
"@dnd-kit/core": "^6.3.1",
|
|
53
45
|
"@dnd-kit/sortable": "^10.0.0",
|
|
54
46
|
"@dnd-kit/utilities": "^3.2.2",
|
|
55
|
-
"@etus/tokens": "workspace:*",
|
|
56
47
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
57
48
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
58
49
|
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
@@ -119,10 +110,10 @@
|
|
|
119
110
|
"recharts": "^3.6.0",
|
|
120
111
|
"sonner": "^2.0.7",
|
|
121
112
|
"tailwind-merge": "^3.4.0",
|
|
122
|
-
"vaul": "^1.1.2"
|
|
113
|
+
"vaul": "^1.1.2",
|
|
114
|
+
"@etus/tokens": "^0.4.0-beta.1"
|
|
123
115
|
},
|
|
124
116
|
"devDependencies": {
|
|
125
|
-
"@etus/tsconfig": "workspace:*",
|
|
126
117
|
"@storybook/react-vite": "^10.2.15",
|
|
127
118
|
"@testing-library/jest-dom": "^6.9.1",
|
|
128
119
|
"@testing-library/react": "^16.3.1",
|
|
@@ -142,10 +133,19 @@
|
|
|
142
133
|
"tsup": "^8.5.1",
|
|
143
134
|
"typescript": "^5.9.3",
|
|
144
135
|
"vitest": "^4.0.17",
|
|
145
|
-
"xlsx": "^0.18.5"
|
|
136
|
+
"xlsx": "^0.18.5",
|
|
137
|
+
"@etus/tsconfig": "0.0.0"
|
|
146
138
|
},
|
|
147
139
|
"peerDependencies": {
|
|
148
140
|
"react": "^19.0.0",
|
|
149
141
|
"react-dom": "^19.0.0"
|
|
142
|
+
},
|
|
143
|
+
"scripts": {
|
|
144
|
+
"build": "tsup",
|
|
145
|
+
"dev": "tsup --watch",
|
|
146
|
+
"test": "vitest run",
|
|
147
|
+
"test:watch": "vitest",
|
|
148
|
+
"test:coverage": "vitest run --coverage",
|
|
149
|
+
"test:ui": "vitest --ui"
|
|
150
150
|
}
|
|
151
|
-
}
|
|
151
|
+
}
|