@algenium/blocks 1.12.0 → 1.14.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 +160 -0
- package/dist/index.cjs +1781 -174
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +291 -7
- package/dist/index.d.ts +291 -7
- package/dist/index.js +1629 -32
- package/dist/index.js.map +1 -1
- package/package.json +15 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algenium/blocks",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Shared UI components for Algenium applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"sideEffects": false,
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "tsup && node scripts/prepend-use-client.mjs",
|
|
28
|
+
"emoji:generate": "node scripts/generate-emoji-data.mjs",
|
|
28
29
|
"dev": "tsup --watch",
|
|
29
30
|
"typecheck": "tsc --noEmit",
|
|
30
31
|
"lint": "eslint . --max-warnings=0",
|
|
@@ -60,16 +61,19 @@
|
|
|
60
61
|
"peerDependencies": {
|
|
61
62
|
"date-fns": ">=4.0.0",
|
|
62
63
|
"framer-motion": ">=11.0.0",
|
|
64
|
+
"hls.js": ">=1.5.0",
|
|
63
65
|
"lucide-react": ">=0.400.0",
|
|
64
66
|
"next-themes": ">=0.4.0",
|
|
65
67
|
"react": ">=18.0.0",
|
|
66
68
|
"react-day-picker": ">=9.0.0",
|
|
67
69
|
"react-dom": ">=18.0.0"
|
|
68
70
|
},
|
|
71
|
+
"peerDependenciesMeta": {
|
|
72
|
+
"hls.js": {
|
|
73
|
+
"optional": true
|
|
74
|
+
}
|
|
75
|
+
},
|
|
69
76
|
"devDependencies": {
|
|
70
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
71
|
-
"@testing-library/react": "^16.3.0",
|
|
72
|
-
"@testing-library/user-event": "^14.6.1",
|
|
73
77
|
"@commitlint/cli": "^19.8.1",
|
|
74
78
|
"@commitlint/config-conventional": "^19.8.1",
|
|
75
79
|
"@eslint/js": "^9.26.0",
|
|
@@ -77,15 +81,21 @@
|
|
|
77
81
|
"@semantic-release/git": "^10.0.1",
|
|
78
82
|
"@semantic-release/github": "^11.0.1",
|
|
79
83
|
"@semantic-release/npm": "^13.1.3",
|
|
84
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
85
|
+
"@testing-library/react": "^16.3.0",
|
|
86
|
+
"@testing-library/user-event": "^14.6.1",
|
|
80
87
|
"@types/react": "^19.1.3",
|
|
81
88
|
"@types/react-dom": "^19.1.3",
|
|
82
89
|
"@vitest/coverage-istanbul": "^4.0.0",
|
|
83
90
|
"class-variance-authority": "^0.7.1",
|
|
84
91
|
"clsx": "^2.1.1",
|
|
85
92
|
"date-fns": "^4.1.0",
|
|
93
|
+
"emojibase": "^17.0.0",
|
|
94
|
+
"emojibase-data": "^17.0.0",
|
|
86
95
|
"eslint": "^9.26.0",
|
|
87
96
|
"eslint-config-prettier": "^10.1.3",
|
|
88
97
|
"framer-motion": "^12.26.2",
|
|
98
|
+
"hls.js": "^1.6.16",
|
|
89
99
|
"husky": "^9.1.7",
|
|
90
100
|
"jsdom": "^26.1.0",
|
|
91
101
|
"lucide-react": "^0.511.0",
|
|
@@ -103,7 +113,6 @@
|
|
|
103
113
|
},
|
|
104
114
|
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
|
|
105
115
|
"dependencies": {
|
|
106
|
-
"card-validator": "^10.0.3",
|
|
107
116
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
108
117
|
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
109
118
|
"@radix-ui/react-popover": "^1.1.15",
|
|
@@ -112,6 +121,7 @@
|
|
|
112
121
|
"@radix-ui/react-slot": "^1.1.1",
|
|
113
122
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
114
123
|
"@radix-ui/react-tooltip": "^1.1.6",
|
|
124
|
+
"card-validator": "^10.0.3",
|
|
115
125
|
"vaul": "^1.1.2"
|
|
116
126
|
}
|
|
117
127
|
}
|