@hybr1d-tech/charizard 0.7.89 → 0.7.91

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
@@ -3028,6 +3028,15 @@ export declare const useBreadcrumbs: (breadcrumbs: Breadcrumb_2[]) => void;
3028
3028
 
3029
3029
  export declare const useBreadcrumbsStore: UseBoundStore<StoreApi<BreadcrumbsStore>>;
3030
3030
 
3031
+ export declare interface User {
3032
+ first_name: string;
3033
+ last_name: string;
3034
+ work_email: string;
3035
+ profile_img_url: string;
3036
+ id: string;
3037
+ middle_name?: string | null;
3038
+ }
3039
+
3031
3040
  export declare enum USER_CHIP_STATUS {
3032
3041
  DEFAULT = "default",
3033
3042
  NEUTRAL = "neutral",
@@ -3038,17 +3047,20 @@ export declare enum USER_CHIP_STATUS {
3038
3047
  WHITE = "white"
3039
3048
  }
3040
3049
 
3041
- export declare function UserChip({ status, selected, username, profileImgUrl, isMulti, users, }: UserChipProps): JSX_2.Element;
3050
+ export declare function UserChip({ status, selected, username, profileImgUrl, }: UserChipProps): JSX_2.Element;
3042
3051
 
3043
3052
  declare interface UserChipProps {
3044
3053
  status?: USER_CHIP_STATUS;
3045
3054
  selected?: boolean;
3046
3055
  username?: string;
3047
3056
  profileImgUrl?: string;
3048
- isMulti?: boolean;
3049
- users?: Array<{
3050
- profile_img_url: string;
3051
- }>;
3057
+ }
3058
+
3059
+ export declare function UsersChip({ status, users }: UsersChipProps): JSX_2.Element;
3060
+
3061
+ declare interface UsersChipProps {
3062
+ status?: USER_CHIP_STATUS;
3063
+ users: Array<User>;
3052
3064
  }
3053
3065
 
3054
3066
  export { }