pelatform-ui 1.2.9 → 1.3.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.d.ts CHANGED
@@ -1,126 +1,2 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import React__default, { ComponentType, SVGProps } from 'react';
3
- export { B as BaseComponentProps, I as ImageComponentProps, L as LinkComponentProps } from './components-B1rw2xzN.js';
4
1
 
5
- /**
6
- * Props interface for icon components
7
- * Extends standard HTML SVG element attributes for full customization
8
- */
9
- type IconProps = React__default.HTMLAttributes<SVGElement>;
10
- /**
11
- * Collection of brand and service icons
12
- *
13
- * This object contains SVG icons for popular brands, services, and technologies.
14
- * All icons are designed to be scalable and themeable using CSS currentColor.
15
- * Icon keys use PascalCase (capitalized first letter) for consistency.
16
- *
17
- * @example
18
- * ```tsx
19
- * // Basic usage
20
- * <Icons.Google className="w-6 h-6" />
21
- *
22
- * // With custom styling
23
- * <Icons.Github
24
- * className="w-8 h-8 text-gray-600 hover:text-gray-900"
25
- * onClick={handleGitHubClick}
26
- * />
27
- *
28
- * // Colorful variants
29
- * <Icons.GoogleColorful className="w-10 h-10" />
30
- * <Icons.FacebookColorful className="w-10 h-10" />
31
- * ```
32
- */
33
- declare const Icons: {
34
- Anthropic: (props: IconProps) => react_jsx_runtime.JSX.Element;
35
- Apple: (props: IconProps) => react_jsx_runtime.JSX.Element;
36
- Aria: (props: IconProps) => react_jsx_runtime.JSX.Element;
37
- Discord: (props: IconProps) => react_jsx_runtime.JSX.Element;
38
- Dropbox: (props: IconProps) => react_jsx_runtime.JSX.Element;
39
- Facebook: (props: IconProps) => react_jsx_runtime.JSX.Element;
40
- FacebookColorful: (props: IconProps) => react_jsx_runtime.JSX.Element;
41
- Github: (props: IconProps) => react_jsx_runtime.JSX.Element;
42
- Gitlab: (props: IconProps) => react_jsx_runtime.JSX.Element;
43
- Google: (props: IconProps) => react_jsx_runtime.JSX.Element;
44
- GoogleColorful: (props: IconProps) => react_jsx_runtime.JSX.Element;
45
- Huggingface: (props: IconProps) => react_jsx_runtime.JSX.Element;
46
- Instagram: (props: IconProps) => react_jsx_runtime.JSX.Element;
47
- Kick: (props: IconProps) => react_jsx_runtime.JSX.Element;
48
- Linear: (props: IconProps) => react_jsx_runtime.JSX.Element;
49
- Linkedin: (props: IconProps) => react_jsx_runtime.JSX.Element;
50
- LinkedinColorful: (props: IconProps) => react_jsx_runtime.JSX.Element;
51
- Microsoft: (props: IconProps) => react_jsx_runtime.JSX.Element;
52
- Nextjs: (props: IconProps) => react_jsx_runtime.JSX.Element;
53
- Notion: (props: IconProps) => react_jsx_runtime.JSX.Element;
54
- Npm: (props: IconProps) => react_jsx_runtime.JSX.Element;
55
- Openai: (props: IconProps) => react_jsx_runtime.JSX.Element;
56
- Paypal: (props: IconProps) => react_jsx_runtime.JSX.Element;
57
- Pelatform: (props: IconProps) => react_jsx_runtime.JSX.Element;
58
- Pnpm: (props: IconProps) => react_jsx_runtime.JSX.Element;
59
- Postgresql: (props: IconProps) => react_jsx_runtime.JSX.Element;
60
- Prisma: (props: IconProps) => react_jsx_runtime.JSX.Element;
61
- Radix: (props: IconProps) => react_jsx_runtime.JSX.Element;
62
- Radixui: (props: IconProps) => react_jsx_runtime.JSX.Element;
63
- React: (props: IconProps) => react_jsx_runtime.JSX.Element;
64
- Reddit: (props: IconProps) => react_jsx_runtime.JSX.Element;
65
- Roblox: (props: IconProps) => react_jsx_runtime.JSX.Element;
66
- Scira: (props: IconProps) => react_jsx_runtime.JSX.Element;
67
- Scribble: (props: IconProps) => react_jsx_runtime.JSX.Element;
68
- Slack: (props: IconProps) => react_jsx_runtime.JSX.Element;
69
- Spotify: (props: IconProps) => react_jsx_runtime.JSX.Element;
70
- Supabase: (props: IconProps) => react_jsx_runtime.JSX.Element;
71
- Tailwind: (props: IconProps) => react_jsx_runtime.JSX.Element;
72
- Telegram: (props: IconProps) => react_jsx_runtime.JSX.Element;
73
- Tiktok: (props: IconProps) => react_jsx_runtime.JSX.Element;
74
- Twitch: (props: IconProps) => react_jsx_runtime.JSX.Element;
75
- Twitter: (props: IconProps) => react_jsx_runtime.JSX.Element;
76
- Vk: (props: IconProps) => react_jsx_runtime.JSX.Element;
77
- WhatsApp: (props: IconProps) => react_jsx_runtime.JSX.Element;
78
- X: (props: IconProps) => react_jsx_runtime.JSX.Element;
79
- Yarn: (props: IconProps) => react_jsx_runtime.JSX.Element;
80
- Youtube: (props: IconProps) => react_jsx_runtime.JSX.Element;
81
- Zoom: (props: IconProps) => react_jsx_runtime.JSX.Element;
82
- };
83
-
84
- /**
85
- * Menu item interface
86
- */
87
- interface MenuItem {
88
- /** Heading text */
89
- heading?: string;
90
- /** Menu item title */
91
- title?: string;
92
- /** Navigation path */
93
- path?: string;
94
- /** Menu item icon component */
95
- icon?: ComponentType<SVGProps<SVGSVGElement>>;
96
- /** Whether to show separator */
97
- separator?: boolean;
98
- /** Root path for active state matching */
99
- rootPath?: string;
100
- /** Child menu items */
101
- children?: MenuConfig;
102
- /** Children index for nested items */
103
- childrenIndex?: number;
104
- /** Whether the item is external */
105
- external?: boolean;
106
- /** Whether the item is disabled */
107
- disabled?: boolean;
108
- /** Disable text */
109
- disabledText?: string;
110
- /** Badge text */
111
- badge?: string;
112
- /** Badge variant */
113
- badgeVariant?: "primary" | "destructive" | "success" | "info" | "warning" | "secondary" | "outline";
114
- /** Collapse configuration */
115
- collapse?: boolean;
116
- /** Title when collapsed */
117
- collapseTitle?: string;
118
- /** Title when expanded */
119
- expandTitle?: string;
120
- }
121
- /**
122
- * Type aliases for backward compatibility
123
- */
124
- type MenuConfig = MenuItem[];
125
-
126
- export { Icons, type MenuConfig, type MenuItem };
2
+ export { }