pelatform-ui 1.1.2 → 1.1.4
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/animation.d.ts +1 -0
- package/dist/components.js +7 -7
- package/dist/server.d.ts +1 -0
- package/dist/server.js +2 -0
- package/package.json +16 -12
package/dist/animation.d.ts
CHANGED
package/dist/components.js
CHANGED
|
@@ -300,7 +300,7 @@ function ComingSoon({ className, title, description }) {
|
|
|
300
300
|
|
|
301
301
|
// src/components/layout/error.tsx
|
|
302
302
|
import { Badge } from "@pelatform/ui.default";
|
|
303
|
-
import { cn as cn7
|
|
303
|
+
import { assetsUrl, cn as cn7 } from "@pelatform/ui.general";
|
|
304
304
|
import { jsx as jsx9, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
305
305
|
function ErrorComponents({
|
|
306
306
|
className,
|
|
@@ -315,7 +315,7 @@ function ErrorComponents({
|
|
|
315
315
|
/* @__PURE__ */ jsx9(
|
|
316
316
|
"img",
|
|
317
317
|
{
|
|
318
|
-
src:
|
|
318
|
+
src: assetsUrl("media/illustrations/19.svg"),
|
|
319
319
|
className: "max-h-40 dark:hidden",
|
|
320
320
|
alt: "illustrations"
|
|
321
321
|
}
|
|
@@ -323,7 +323,7 @@ function ErrorComponents({
|
|
|
323
323
|
/* @__PURE__ */ jsx9(
|
|
324
324
|
"img",
|
|
325
325
|
{
|
|
326
|
-
src:
|
|
326
|
+
src: assetsUrl("media/illustrations/19-dark.svg"),
|
|
327
327
|
className: "hidden max-h-40 dark:block",
|
|
328
328
|
alt: "illustrations"
|
|
329
329
|
}
|
|
@@ -340,7 +340,7 @@ function ErrorComponents({
|
|
|
340
340
|
/* @__PURE__ */ jsx9(
|
|
341
341
|
"img",
|
|
342
342
|
{
|
|
343
|
-
src:
|
|
343
|
+
src: assetsUrl("media/illustrations/20.svg"),
|
|
344
344
|
className: "max-h-40 dark:hidden",
|
|
345
345
|
alt: "illustrations"
|
|
346
346
|
}
|
|
@@ -348,7 +348,7 @@ function ErrorComponents({
|
|
|
348
348
|
/* @__PURE__ */ jsx9(
|
|
349
349
|
"img",
|
|
350
350
|
{
|
|
351
|
-
src:
|
|
351
|
+
src: assetsUrl("media/illustrations/20-dark.svg"),
|
|
352
352
|
className: "hidden max-h-40 dark:block",
|
|
353
353
|
alt: "illustrations"
|
|
354
354
|
}
|
|
@@ -365,7 +365,7 @@ function ErrorComponents({
|
|
|
365
365
|
/* @__PURE__ */ jsx9(
|
|
366
366
|
"img",
|
|
367
367
|
{
|
|
368
|
-
src:
|
|
368
|
+
src: assetsUrl("media/illustrations/29.svg"),
|
|
369
369
|
className: "max-h-40 dark:hidden",
|
|
370
370
|
alt: "illustrations"
|
|
371
371
|
}
|
|
@@ -373,7 +373,7 @@ function ErrorComponents({
|
|
|
373
373
|
/* @__PURE__ */ jsx9(
|
|
374
374
|
"img",
|
|
375
375
|
{
|
|
376
|
-
src:
|
|
376
|
+
src: assetsUrl("media/illustrations/29-dark.svg"),
|
|
377
377
|
className: "hidden max-h-40 dark:block",
|
|
378
378
|
alt: "illustrations"
|
|
379
379
|
}
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@pelatform/ui.general/server';
|
package/dist/server.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pelatform-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A Modern and Minimal React UI Library built with TailwindCSS.",
|
|
5
5
|
"author": "Pelatform",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
"./components": {
|
|
39
39
|
"types": "./dist/components.d.ts",
|
|
40
40
|
"default": "./dist/components.js"
|
|
41
|
+
},
|
|
42
|
+
"./server": {
|
|
43
|
+
"types": "./dist/server.d.ts",
|
|
44
|
+
"default": "./dist/server.js"
|
|
41
45
|
}
|
|
42
46
|
},
|
|
43
47
|
"scripts": {
|
|
@@ -67,25 +71,25 @@
|
|
|
67
71
|
"animation"
|
|
68
72
|
],
|
|
69
73
|
"dependencies": {
|
|
70
|
-
"@pelatform/ui.animation": "0.1.
|
|
71
|
-
"@pelatform/ui.aria": "0.1.
|
|
72
|
-
"@pelatform/ui.base": "0.1.
|
|
73
|
-
"@pelatform/ui.default": "0.1.
|
|
74
|
-
"@pelatform/ui.general": "0.1.
|
|
74
|
+
"@pelatform/ui.animation": "0.1.3",
|
|
75
|
+
"@pelatform/ui.aria": "0.1.3",
|
|
76
|
+
"@pelatform/ui.base": "0.1.4",
|
|
77
|
+
"@pelatform/ui.default": "0.1.3",
|
|
78
|
+
"@pelatform/ui.general": "0.1.4",
|
|
75
79
|
"@pelatform/ui.hook": "0.1.2",
|
|
76
80
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
77
81
|
"radix-ui": "^1.4.3",
|
|
78
82
|
"tw-animate-css": "^1.4.0"
|
|
79
83
|
},
|
|
80
84
|
"devDependencies": {
|
|
81
|
-
"@pelatform/tsconfig": "^0.1.
|
|
82
|
-
"@tanstack/react-query": "^5.90.
|
|
83
|
-
"@types/node": "^
|
|
85
|
+
"@pelatform/tsconfig": "^0.1.3",
|
|
86
|
+
"@tanstack/react-query": "^5.90.12",
|
|
87
|
+
"@types/node": "^25.0.1",
|
|
84
88
|
"@types/react": "^19.2.7",
|
|
85
|
-
"lucide-react": "^0.
|
|
86
|
-
"motion": "^12.23.
|
|
89
|
+
"lucide-react": "^0.561.0",
|
|
90
|
+
"motion": "^12.23.26",
|
|
87
91
|
"next-themes": "^0.4.6",
|
|
88
|
-
"react": "^19.2.
|
|
92
|
+
"react": "^19.2.3",
|
|
89
93
|
"sonner": "^2.0.7",
|
|
90
94
|
"tsup": "^8.5.1",
|
|
91
95
|
"typescript": "^5.9.3"
|