@almadar/ui 4.33.0 → 4.35.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "4.33.0",
3
+ "version": "4.35.0",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -121,6 +121,13 @@
121
121
  "registry": "https://registry.npmjs.org",
122
122
  "access": "public"
123
123
  },
124
+ "scripts": {
125
+ "build": "tsup && tsc -p tsconfig.build.json",
126
+ "build:watch": "tsup --watch",
127
+ "storybook": "storybook dev -p 6006",
128
+ "build-storybook": "storybook build -o storybook-static",
129
+ "typecheck": "tsc --noEmit"
130
+ },
124
131
  "dependencies": {
125
132
  "@almadar/core": ">=7.12.0",
126
133
  "@almadar/evaluator": ">=2.9.2",
@@ -212,11 +219,10 @@
212
219
  "hooks"
213
220
  ],
214
221
  "homepage": "https://github.com/almadar-io/almadar#readme",
215
- "scripts": {
216
- "build": "tsup && tsc -p tsconfig.build.json",
217
- "build:watch": "tsup --watch",
218
- "storybook": "storybook dev -p 6006",
219
- "build-storybook": "storybook build -o storybook-static",
220
- "typecheck": "tsc --noEmit"
222
+ "pnpm": {
223
+ "overrides": {
224
+ "@types/react": "^19.0.0",
225
+ "@types/react-dom": "^19.0.0"
226
+ }
221
227
  }
222
- }
228
+ }