@almadar/ui 4.25.0 → 4.27.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/avl/index.cjs +1482 -4340
- package/dist/avl/index.css +1 -1
- package/dist/avl/index.js +579 -3437
- package/dist/components/index.cjs +1089 -1133
- package/dist/components/index.css +1 -1
- package/dist/components/index.js +191 -235
- package/dist/components/templates/DashboardLayout.d.ts +26 -1
- package/dist/docs/index.cjs +2 -2
- package/dist/docs/index.js +2 -2
- package/dist/marketing/index.cjs +2 -2
- package/dist/marketing/index.js +2 -2
- package/dist/providers/index.cjs +1020 -3876
- package/dist/providers/index.css +1 -1
- package/dist/providers/index.js +288 -3144
- package/dist/runtime/index.cjs +1066 -3980
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/index.js +302 -3216
- package/package.json +18 -8
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.27.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.css",
|
|
8
|
+
"**/locales/*.json"
|
|
9
|
+
],
|
|
6
10
|
"main": "./dist/components/index.js",
|
|
7
11
|
"module": "./dist/components/index.js",
|
|
8
12
|
"types": "./dist/components/index.d.ts",
|
|
@@ -117,6 +121,13 @@
|
|
|
117
121
|
"registry": "https://registry.npmjs.org",
|
|
118
122
|
"access": "public"
|
|
119
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
|
+
},
|
|
120
131
|
"dependencies": {
|
|
121
132
|
"@almadar/core": ">=7.12.0",
|
|
122
133
|
"@almadar/evaluator": ">=2.9.2",
|
|
@@ -208,11 +219,10 @@
|
|
|
208
219
|
"hooks"
|
|
209
220
|
],
|
|
210
221
|
"homepage": "https://github.com/almadar-io/almadar#readme",
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
"typecheck": "tsc --noEmit"
|
|
222
|
+
"pnpm": {
|
|
223
|
+
"overrides": {
|
|
224
|
+
"@types/react": "^19.0.0",
|
|
225
|
+
"@types/react-dom": "^19.0.0"
|
|
226
|
+
}
|
|
217
227
|
}
|
|
218
|
-
}
|
|
228
|
+
}
|