@hybr1d-tech/charizard 0.6.24 → 0.6.26

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.
@@ -0,0 +1,6 @@
1
+ interface AvatarProps {
2
+ user: any;
3
+ imageStyles?: React.CSSProperties;
4
+ }
5
+ export declare function Avatar({ user, imageStyles }: AvatarProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1 @@
1
+ export * from './Avatar';
@@ -22,3 +22,6 @@ export * from './tag';
22
22
  export * from './table-v2';
23
23
  export * from './color-picker';
24
24
  export * from './tooltip-v2';
25
+ export * from './avatar';
26
+ export * from './user-chip';
27
+ export * from './tabs';
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+
3
+ export interface TabProps {
4
+ title: string;
5
+ isActive: boolean;
6
+ customClassName?: string;
7
+ customStyles?: React.CSSProperties;
8
+ children: React.ReactNode;
9
+ }
10
+ export declare const Tab: React.FC<TabProps>;
@@ -0,0 +1,12 @@
1
+ import { default as React, ReactElement } from 'react';
2
+
3
+ interface TabsProps {
4
+ id: string;
5
+ activeKey: string;
6
+ onSelect: (kay: string) => void;
7
+ customClassName?: string;
8
+ customStyles?: React.CSSProperties;
9
+ children: ReactElement[];
10
+ }
11
+ export declare const Tabs: React.FC<TabsProps>;
12
+ export {};
@@ -0,0 +1,2 @@
1
+ export { Tabs } from './Tabs';
2
+ export { Tab } from './Tab';
@@ -0,0 +1,17 @@
1
+ export declare enum USER_CHIP_STATUS {
2
+ DEFAULT = "default",
3
+ NEUTRAL = "neutral",
4
+ POSITIVE = "positive",
5
+ WARNING = "warning",
6
+ ERROR = "error",
7
+ HIGHLIGHT = "highlight",
8
+ WHITE = "white"
9
+ }
10
+ interface UserChipProps {
11
+ status?: USER_CHIP_STATUS;
12
+ selected?: boolean;
13
+ username: string;
14
+ profileImgUrl: string;
15
+ }
16
+ export declare function UserChip({ status, selected, username, profileImgUrl, }: UserChipProps): import("react/jsx-runtime").JSX.Element;
17
+ export {};
@@ -0,0 +1 @@
1
+ export * from './UserChip';