pelatform-ui 1.2.5 → 1.2.8
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/components.d.ts +18 -4
- package/dist/components.js +178 -2130
- package/dist/index.d.ts +1 -5
- package/dist/index.js +1 -14
- package/dist/utils.d.ts +6 -0
- package/dist/utils.js +14 -0
- package/package.json +16 -15
- /package/dist/{chunk-7EOSDFS3.js → chunk-QEWGMDVY.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { ComponentType, SVGProps } from 'react';
|
|
3
|
-
import { ClassValue } from 'clsx';
|
|
4
|
-
export { D as DEFAULT_THEME_MODE, M as META_THEME_COLORS, T as THEME_MODES, a as ThemeMode } from './colors-CUDWvz1g.js';
|
|
5
3
|
export { B as BaseComponentProps, I as ImageComponentProps, L as LinkComponentProps } from './components-B1rw2xzN.js';
|
|
6
4
|
|
|
7
5
|
/**
|
|
@@ -83,8 +81,6 @@ declare const Icons: {
|
|
|
83
81
|
Zoom: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
84
82
|
};
|
|
85
83
|
|
|
86
|
-
declare function cn(...inputs: ClassValue[]): string;
|
|
87
|
-
|
|
88
84
|
/**
|
|
89
85
|
* Menu item interface
|
|
90
86
|
*/
|
|
@@ -127,4 +123,4 @@ interface MenuItem {
|
|
|
127
123
|
*/
|
|
128
124
|
type MenuConfig = MenuItem[];
|
|
129
125
|
|
|
130
|
-
export { Icons, type MenuConfig, type MenuItem
|
|
126
|
+
export { Icons, type MenuConfig, type MenuItem };
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
cn
|
|
3
|
-
} from "./chunk-7EOSDFS3.js";
|
|
4
|
-
import {
|
|
5
|
-
DEFAULT_THEME_MODE,
|
|
6
|
-
META_THEME_COLORS,
|
|
7
|
-
THEME_MODES
|
|
8
|
-
} from "./chunk-HW52LCWN.js";
|
|
9
|
-
|
|
10
1
|
// src/components/icons.tsx
|
|
11
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
12
3
|
var Icons = {
|
|
@@ -628,9 +619,5 @@ var Icons = {
|
|
|
628
619
|
) })
|
|
629
620
|
};
|
|
630
621
|
export {
|
|
631
|
-
|
|
632
|
-
Icons,
|
|
633
|
-
META_THEME_COLORS,
|
|
634
|
-
THEME_MODES,
|
|
635
|
-
cn
|
|
622
|
+
Icons
|
|
636
623
|
};
|
package/dist/utils.d.ts
ADDED
package/dist/utils.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pelatform-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "A Modern and Minimal React UI Library built with TailwindCSS.",
|
|
5
5
|
"author": "Pelatform",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,17 +24,21 @@
|
|
|
24
24
|
"types": "./dist/base.d.ts",
|
|
25
25
|
"default": "./dist/base.js"
|
|
26
26
|
},
|
|
27
|
-
"./
|
|
28
|
-
"types": "./dist/
|
|
29
|
-
"default": "./dist/
|
|
27
|
+
"./components": {
|
|
28
|
+
"types": "./dist/components.d.ts",
|
|
29
|
+
"default": "./dist/components.js"
|
|
30
30
|
},
|
|
31
31
|
"./hooks": {
|
|
32
32
|
"types": "./dist/hooks.d.ts",
|
|
33
33
|
"default": "./dist/hooks.js"
|
|
34
34
|
},
|
|
35
|
-
"./
|
|
36
|
-
"types": "./dist/
|
|
37
|
-
"default": "./dist/
|
|
35
|
+
"./radix": {
|
|
36
|
+
"types": "./dist/radix.d.ts",
|
|
37
|
+
"default": "./dist/radix.js"
|
|
38
|
+
},
|
|
39
|
+
"./utils": {
|
|
40
|
+
"types": "./dist/utils.d.ts",
|
|
41
|
+
"default": "./dist/utils.js"
|
|
38
42
|
}
|
|
39
43
|
},
|
|
40
44
|
"scripts": {
|
|
@@ -73,12 +77,10 @@
|
|
|
73
77
|
"tw-animate-css": "^1.4.0"
|
|
74
78
|
},
|
|
75
79
|
"devDependencies": {
|
|
76
|
-
"@base-ui/react": "^1.2.0",
|
|
77
80
|
"@pelatform/tsconfig": "^0.1.4",
|
|
78
|
-
"@pelatform/ui.components": "0.1.
|
|
79
|
-
"@pelatform/ui.hook": "0.2.
|
|
81
|
+
"@pelatform/ui.components": "0.1.1",
|
|
82
|
+
"@pelatform/ui.hook": "0.2.1",
|
|
80
83
|
"@tanstack/react-query": "^5.90.21",
|
|
81
|
-
"@types/node": "^25.3.3",
|
|
82
84
|
"@types/react": "^19.2.14",
|
|
83
85
|
"lucide-react": "^0.577.0",
|
|
84
86
|
"motion": "^12.35.0",
|
|
@@ -98,6 +100,7 @@
|
|
|
98
100
|
"@headless-tree/core": ">=1.6.0",
|
|
99
101
|
"@pelatform/ui.components": ">=0.1.0",
|
|
100
102
|
"@pelatform/ui.hook": ">=0.2.0",
|
|
103
|
+
"@tanstack/react-query": ">=5.90.0",
|
|
101
104
|
"@tanstack/react-table": ">=8.21.0",
|
|
102
105
|
"class-variance-authority": ">=0.7.0",
|
|
103
106
|
"clsx": ">=2.1.0",
|
|
@@ -110,15 +113,13 @@
|
|
|
110
113
|
"next-themes": ">=0.4.6",
|
|
111
114
|
"radix-ui": ">=1.4.0",
|
|
112
115
|
"react": ">=18.0.0 || >=19.0.0-rc.0",
|
|
116
|
+
"react-day-picker": ">=9.10.0",
|
|
113
117
|
"react-dom": ">=18.0.0 || >=19.0.0-rc.0",
|
|
114
|
-
"react-day-picker": ">=9.13.0",
|
|
115
118
|
"react-phone-number-input": ">=3.4.0",
|
|
116
|
-
"react-resizable-panels": ">=4.
|
|
119
|
+
"react-resizable-panels": ">=4.7.0",
|
|
117
120
|
"recharts": "2.15.1",
|
|
118
121
|
"sonner": ">=2.0.0",
|
|
119
122
|
"tailwind-merge": ">=3.5.0",
|
|
120
|
-
"tsup": ">=8.5.0",
|
|
121
|
-
"typescript": ">=5.9.0",
|
|
122
123
|
"vaul": ">=1.1.0"
|
|
123
124
|
},
|
|
124
125
|
"publishConfig": {
|
|
File without changes
|