@zimyo/engage 0.3.3-pms → 0.3.4-hrms

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.
@@ -14,9 +14,6 @@ export declare const NOTIFICATION_SLUGS: {
14
14
  hr_name: string;
15
15
  end_date: string;
16
16
  start_date: string;
17
- rm_of_rm_name: string;
18
- hod_name: string;
19
- custom_employee_name: string;
20
17
  };
21
18
  export declare const EMAIL_TEMPLATE_TYPES: {
22
19
  label: string;
@@ -0,0 +1,15 @@
1
+ import React, { ReactNode } from "react";
2
+ import "./ZimyoCard.css";
3
+ interface ZimyoCardProps {
4
+ name?: string;
5
+ description?: string;
6
+ descriptionWithValue?: ReactNode;
7
+ totalCount?: number | string;
8
+ infoMessage?: string;
9
+ divider_color?: string;
10
+ icon?: ReactNode;
11
+ color?: string;
12
+ backgroundColor?: string;
13
+ }
14
+ declare const ZimyoCard: React.FC<ZimyoCardProps>;
15
+ export default ZimyoCard;
@@ -1,13 +1,12 @@
1
- import { ButtonProps } from '@mui/material';
1
+ import { ButtonProps } from '@zimyo/ui';
2
2
  interface Props extends ButtonProps {
3
3
  label: string;
4
4
  className?: string;
5
5
  loader?: boolean;
6
6
  loaderSize?: number;
7
- loaderColor?: string | any;
8
- type?: any;
9
7
  ref?: React.Ref<HTMLButtonElement>;
10
- color?: string | any;
8
+ loading?: boolean;
9
+ size?: 'small' | 'medium' | 'large';
11
10
  }
12
11
  declare const Button: (props: Props) => import("react/jsx-runtime").JSX.Element;
13
12
  export default Button;