@ship-it-ui/ui 0.0.3 → 0.0.4
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.cjs +1156 -612
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +288 -26
- package/dist/index.d.ts +288 -26
- package/dist/index.js +1039 -502
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ship-it-ui/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "React component library for the Ship-It design system. Tailwind v4 + Radix UI primitives, themed via @ship-it-ui/tokens.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://ship-it-ops.github.io/ship-it-design/",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "^18.0.0 || ^19.0.0",
|
|
51
51
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
52
|
-
"@ship-it-ui/tokens": "0.0.
|
|
52
|
+
"@ship-it-ui/tokens": "0.0.4"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@fontsource-variable/geist": "^5.1.0",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"@radix-ui/react-navigation-menu": "^1.2.2",
|
|
66
66
|
"@radix-ui/react-popover": "^1.1.2",
|
|
67
67
|
"@radix-ui/react-radio-group": "^1.2.1",
|
|
68
|
+
"@radix-ui/react-scroll-area": "^1.2.1",
|
|
68
69
|
"@radix-ui/react-select": "^2.1.2",
|
|
69
70
|
"@radix-ui/react-slider": "^1.2.1",
|
|
70
71
|
"@radix-ui/react-slot": "^1.1.0",
|
|
@@ -93,13 +94,14 @@
|
|
|
93
94
|
"typescript": "^5.6.3",
|
|
94
95
|
"vitest": "^2.1.3",
|
|
95
96
|
"vitest-axe": "^0.1.0",
|
|
96
|
-
"@ship-it-ui/
|
|
97
|
-
"@ship-it-ui/
|
|
97
|
+
"@ship-it-ui/eslint-config": "0.0.1",
|
|
98
|
+
"@ship-it-ui/tsconfig": "0.0.1"
|
|
98
99
|
},
|
|
99
100
|
"scripts": {
|
|
100
101
|
"build": "tsup",
|
|
101
102
|
"dev": "tsup --watch",
|
|
102
103
|
"lint": "eslint src",
|
|
104
|
+
"lint:fix": "eslint src --fix",
|
|
103
105
|
"test": "vitest run --coverage",
|
|
104
106
|
"test:watch": "vitest",
|
|
105
107
|
"typecheck": "tsc --noEmit",
|