@hybr1d-tech/charizard 0.6.31 → 0.6.32

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.
@@ -18,8 +18,9 @@ interface BadgeProps {
18
18
  selected?: boolean;
19
19
  children: React.ReactNode;
20
20
  icon?: string;
21
+ customSvgStyles?: React.CSSProperties;
21
22
  }
22
- export declare function Badge({ highlight, status, selected, children, icon, }: BadgeProps): import("react/jsx-runtime").JSX.Element;
23
+ export declare function Badge({ highlight, status, selected, children, icon, customSvgStyles, }: BadgeProps): import("react/jsx-runtime").JSX.Element;
23
24
  export declare const statusMap: {
24
25
  neutral: {
25
26
  bg: string;
@@ -1,8 +1,11 @@
1
1
  import { ITask } from './types';
2
2
 
3
- interface TaskCardProps {
3
+ interface TaskCardsProps {
4
4
  headers: string[];
5
5
  data: ITask[];
6
+ isLoading?: boolean;
7
+ isError?: boolean;
8
+ emptyText?: string;
6
9
  }
7
- export declare function TaskCard({ headers, data }: TaskCardProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function TaskCards({ headers, data, isLoading, isError, emptyText, }: TaskCardsProps): import("react/jsx-runtime").JSX.Element;
8
11
  export {};