@algenium/blocks 1.14.1 → 1.16.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/dist/index.cjs +516 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +140 -1
- package/dist/index.d.ts +140 -1
- package/dist/index.js +504 -5
- package/dist/index.js.map +1 -1
- package/package.json +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algenium/blocks",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Shared UI components for Algenium applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"dist",
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
|
-
"sideEffects":
|
|
25
|
+
"sideEffects": [
|
|
26
|
+
"**/*.css",
|
|
27
|
+
"react-phone-number-input/style.css"
|
|
28
|
+
],
|
|
26
29
|
"scripts": {
|
|
27
30
|
"build": "tsup && node scripts/prepend-use-client.mjs",
|
|
28
31
|
"emoji:generate": "node scripts/generate-emoji-data.mjs",
|
|
@@ -66,7 +69,8 @@
|
|
|
66
69
|
"next-themes": ">=0.4.0",
|
|
67
70
|
"react": ">=18.0.0",
|
|
68
71
|
"react-day-picker": ">=9.0.0",
|
|
69
|
-
"react-dom": ">=18.0.0"
|
|
72
|
+
"react-dom": ">=18.0.0",
|
|
73
|
+
"react-phone-number-input": ">=3.4.0"
|
|
70
74
|
},
|
|
71
75
|
"peerDependenciesMeta": {
|
|
72
76
|
"hls.js": {
|
|
@@ -104,6 +108,7 @@
|
|
|
104
108
|
"react": "^19.1.0",
|
|
105
109
|
"react-day-picker": "^9.14.0",
|
|
106
110
|
"react-dom": "^19.1.0",
|
|
111
|
+
"react-phone-number-input": "^3.4.16",
|
|
107
112
|
"semantic-release": "^25.0.2",
|
|
108
113
|
"tailwind-merge": "^3.3.0",
|
|
109
114
|
"tsup": "^8.5.0",
|
|
@@ -122,6 +127,7 @@
|
|
|
122
127
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
123
128
|
"@radix-ui/react-tooltip": "^1.1.6",
|
|
124
129
|
"card-validator": "^10.0.3",
|
|
130
|
+
"cmdk": "^1.1.1",
|
|
125
131
|
"vaul": "^1.1.2"
|
|
126
132
|
}
|
|
127
133
|
}
|