@hybr1d-tech/charizard 0.6.54 → 0.6.55

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.
@@ -33,8 +33,12 @@ interface InputLabelProps {
33
33
  * info text tooltip styles
34
34
  */
35
35
  infoTextTooltipStyles?: React.CSSProperties;
36
+ /**
37
+ * Disabled state when component inactive
38
+ */
39
+ isDisabled?: boolean;
36
40
  }
37
- export declare function InputLabel({ children, customClasses, customStyles, required, htmlFor, restprops, infoText, infoTextTooltipStyles, }: InputLabelProps): import("react/jsx-runtime").JSX.Element;
41
+ export declare function InputLabel({ children, customClasses, customStyles, required, htmlFor, restprops, infoText, infoTextTooltipStyles, isDisabled, }: InputLabelProps): import("react/jsx-runtime").JSX.Element;
38
42
  export declare namespace InputLabel {
39
43
  var displayName: Inputs;
40
44
  var id: Inputs;
@@ -1,4 +1,5 @@
1
1
  import { ITask } from './types';
2
+ import { MenuItemV2 } from '../button-v2';
2
3
 
3
4
  interface TaskCardsProps {
4
5
  headers: string[];
@@ -6,6 +7,7 @@ interface TaskCardsProps {
6
7
  isLoading?: boolean;
7
8
  isError?: boolean;
8
9
  emptyText?: string;
10
+ menuItems: MenuItemV2[];
9
11
  }
10
- export declare function TaskCards({ headers, data, isLoading, isError, emptyText, }: TaskCardsProps): import("react/jsx-runtime").JSX.Element;
12
+ export declare function TaskCards({ headers, data, isLoading, isError, emptyText, menuItems, }: TaskCardsProps): import("react/jsx-runtime").JSX.Element;
11
13
  export {};
@@ -1,5 +1,7 @@
1
+ import { MenuItemV2 } from '../../../button-v2';
1
2
  import { ITask } from '../../types';
2
3
 
3
- export default function TaskCard({ data }: {
4
+ export default function TaskCard({ data, menuItems }: {
4
5
  data: ITask;
6
+ menuItems: MenuItemV2[];
5
7
  }): import("react/jsx-runtime").JSX.Element;
@@ -20,5 +20,5 @@ export interface ITaskObjectValue {
20
20
  }
21
21
  export interface ITaskDetails {
22
22
  key: string;
23
- value: string | ITaskObjectValue | null;
23
+ value: string | ITaskObjectValue | File[] | null;
24
24
  }