@northslopetech/altitude-ui 3.0.0-alpha.9 → 3.0.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/README.md +11 -11
- package/dist/index.d.mts +487 -1041
- package/dist/index.d.ts +487 -1041
- package/dist/index.js +2583 -4158
- package/dist/index.mjs +2571 -4157
- package/dist/styles.css +1 -0
- package/package.json +12 -16
- package/dist/pdf.worker.min.mjs +0 -28
package/dist/styles.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@northslopetech/altitude-ui",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "React UI components for the Altitude design system",
|
|
6
6
|
"author": "Northslope",
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"import": "./dist/index.mjs",
|
|
27
27
|
"require": "./dist/index.js"
|
|
28
28
|
},
|
|
29
|
-
"./styles.css": "./dist/styles.css"
|
|
30
|
-
"./pdf.worker.min.mjs": "./dist/pdf.worker.min.mjs"
|
|
29
|
+
"./styles.css": "./dist/styles.css"
|
|
31
30
|
},
|
|
32
31
|
"files": [
|
|
33
32
|
"dist"
|
|
@@ -41,8 +40,8 @@
|
|
|
41
40
|
"@types/node": "^22.15.3",
|
|
42
41
|
"@types/prop-types": "^15.7.15",
|
|
43
42
|
"@types/react": "19.1.0",
|
|
43
|
+
"@tanstack/react-table": "^8.21.3",
|
|
44
44
|
"@types/react-dom": "19.1.1",
|
|
45
|
-
"@types/react-pdf": "^7.0.0",
|
|
46
45
|
"@vitest/coverage-v8": "^3.2.4",
|
|
47
46
|
"eslint": "^9.31.0",
|
|
48
47
|
"jsdom": "^26.0.0",
|
|
@@ -58,28 +57,25 @@
|
|
|
58
57
|
"@fontsource-variable/hanken-grotesk": "^5.2.8",
|
|
59
58
|
"@fontsource-variable/jetbrains-mono": "^5.2.8",
|
|
60
59
|
"@phosphor-icons/react": "^2.1.10",
|
|
61
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
62
|
-
"@radix-ui/react-label": "^2.1.7",
|
|
63
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
64
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
65
|
-
"@tanstack/react-table": "^8.21.3",
|
|
66
60
|
"class-variance-authority": "^0.7.1",
|
|
67
61
|
"clsx": "^2.1.1",
|
|
68
62
|
"prop-types": "^15.8.1",
|
|
69
63
|
"react-day-picker": "^9.14.0",
|
|
70
|
-
"react-pdf": "^10.0.1",
|
|
71
|
-
"recharts": "^3.2.1",
|
|
72
64
|
"tailwind-merge": "^2.5.4",
|
|
73
|
-
"
|
|
65
|
+
"tw-animate-css": "^1.4.0",
|
|
66
|
+
"vaul": "^1.1.2",
|
|
67
|
+
"@northslopetech/altitude-tokens": "^3.0.0"
|
|
74
68
|
},
|
|
75
69
|
"peerDependencies": {
|
|
76
|
-
"react": "^
|
|
77
|
-
"react-
|
|
70
|
+
"@phosphor-icons/react": "^2.0.0",
|
|
71
|
+
"@tanstack/react-table": "^8.13.0",
|
|
72
|
+
"react": "^19.0.0",
|
|
73
|
+
"react-dom": "^19.0.0"
|
|
78
74
|
},
|
|
79
75
|
"scripts": {
|
|
80
76
|
"prebuild": "pnpm --filter @northslopetech/altitude-tokens build",
|
|
81
|
-
"build": "tsup src/index.ts --format cjs,esm --dts --external react --external react-dom --external @phosphor-icons/react
|
|
82
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external react --external react-dom --external altitude-tokens --external @phosphor-icons/react",
|
|
77
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --external react --external react-dom --external @phosphor-icons/react --external @tanstack/react-table && node scripts/build-styles.mjs",
|
|
78
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external react --external react-dom --external altitude-tokens --external @phosphor-icons/react --external @tanstack/react-table",
|
|
83
79
|
"clean": "rm -rf dist",
|
|
84
80
|
"lint": "eslint . --max-warnings 0",
|
|
85
81
|
"check-types": "tsc --noEmit",
|