@hybr1d-tech/charizard 2.3.24 → 2.3.25
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/hybr1d-ui.css +1 -1
- package/dist/hybr1d-ui.js +1214 -1202
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3003,7 +3003,7 @@ declare interface TagProps {
|
|
|
3003
3003
|
customStyles?: React.CSSProperties;
|
|
3004
3004
|
}
|
|
3005
3005
|
|
|
3006
|
-
export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, onClicks, }: TaskCardsProps): JSX.Element;
|
|
3006
|
+
export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, onClicks, moduleAccess, }: TaskCardsProps): JSX.Element;
|
|
3007
3007
|
|
|
3008
3008
|
export declare interface TaskCardsProps {
|
|
3009
3009
|
headers: string[];
|
|
@@ -3023,6 +3023,10 @@ export declare interface TaskCardsProps {
|
|
|
3023
3023
|
setLimit: (limit: number) => void;
|
|
3024
3024
|
};
|
|
3025
3025
|
onClicks?: ((data: ITask) => void)[][];
|
|
3026
|
+
moduleAccess?: {
|
|
3027
|
+
hasDeviceAccess?: boolean;
|
|
3028
|
+
hasLeaveAccess?: boolean;
|
|
3029
|
+
};
|
|
3026
3030
|
}
|
|
3027
3031
|
|
|
3028
3032
|
export declare type TBaseQuery = {
|