@hybr1d-tech/charizard 0.7.78 → 0.7.80

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
@@ -2737,7 +2737,7 @@ declare interface TagProps {
2737
2737
  customStyles?: React.CSSProperties;
2738
2738
  }
2739
2739
 
2740
- export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, onClicks, hideMenuItems, }: TaskCardsProps): JSX_2.Element;
2740
+ export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, onClicks, }: TaskCardsProps): JSX_2.Element;
2741
2741
 
2742
2742
  export declare interface TaskCardsProps {
2743
2743
  headers: string[];
@@ -2757,7 +2757,6 @@ export declare interface TaskCardsProps {
2757
2757
  setLimit: (limit: number) => void;
2758
2758
  };
2759
2759
  onClicks?: ((data: ITask) => void)[][];
2760
- hideMenuItems: boolean;
2761
2760
  }
2762
2761
 
2763
2762
  /**
@@ -2975,16 +2974,6 @@ export declare const useBreadcrumbs: (breadcrumbs: Breadcrumb_2[]) => void;
2975
2974
 
2976
2975
  export declare const useBreadcrumbsStore: UseBoundStore<StoreApi<BreadcrumbsStore>>;
2977
2976
 
2978
- declare interface User {
2979
- id: string;
2980
- start_date?: string;
2981
- last_working_date?: string;
2982
- last_name: string;
2983
- first_name: string;
2984
- work_email: string;
2985
- profile_img_url?: string;
2986
- }
2987
-
2988
2977
  export declare enum USER_CHIP_STATUS {
2989
2978
  DEFAULT = "default",
2990
2979
  NEUTRAL = "neutral",
@@ -3003,7 +2992,9 @@ declare interface UserChipProps {
3003
2992
  username?: string;
3004
2993
  profileImgUrl?: string;
3005
2994
  isMulti?: boolean;
3006
- users?: User[];
2995
+ users?: Array<{
2996
+ profile_img_url: string;
2997
+ }>;
3007
2998
  }
3008
2999
 
3009
3000
  export { }