@zimyo/engage 0.3.19-pms → 0.3.20-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.
@@ -2,4 +2,7 @@ export declare const MODAL_ACTION: {
2
2
  CREATE: string;
3
3
  EDIT: string;
4
4
  };
5
- export declare const BadgeMaster: () => import("react/jsx-runtime").JSX.Element;
5
+ export type Props = {
6
+ classes?: any;
7
+ };
8
+ export declare const BadgeMaster: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -3,5 +3,6 @@ export type Props = {
3
3
  CONCERN?: string;
4
4
  fromFeed?: boolean;
5
5
  badgeId?: number;
6
+ classes?: any;
6
7
  };
7
8
  export declare const AppreciationList: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -1 +1,4 @@
1
- export declare const FeedbackConfigration: () => import("react/jsx-runtime").JSX.Element;
1
+ export type Props = {
2
+ classes?: any;
3
+ };
4
+ export declare const FeedbackConfigration: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export type Props = {
2
2
  employee_id?: number;
3
3
  CONCERN?: string;
4
+ classes?: any;
4
5
  };
5
6
  export declare const ContinuousFeedbackList: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -1 +1,4 @@
1
- export declare const SkillsMaster: () => import("react/jsx-runtime").JSX.Element;
1
+ export type Props = {
2
+ classes: any;
3
+ };
4
+ export declare const SkillsMaster: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export type Props = {
2
2
  employee_id?: number;
3
3
  CONCERN?: string;
4
+ classes?: any;
4
5
  };
5
6
  export declare const OneToOneList: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  export type Props = {
2
2
  employee_id?: number;
3
3
  CONCERN?: string;
4
+ classes?: any;
4
5
  };
5
6
  export declare const MAX_FILE_SIZE_IN_BYTES: number;
6
7
  export declare const UPLOADED_EXCEL_SIZE: number;
@@ -1,4 +1,7 @@
1
- export declare const Empty: ({ message, svgProps }: {
1
+ export declare const Empty: ({ message, height, width, svgProps, url }: {
2
2
  message: string;
3
+ url?: string | any;
4
+ height?: string | number;
5
+ width?: string | number;
3
6
  svgProps?: React.SVGProps<SVGSVGElement>;
4
7
  }) => import("react/jsx-runtime").JSX.Element;
@@ -5,8 +5,9 @@ type ToggleButtonType = {
5
5
  value: any;
6
6
  }[];
7
7
  value?: any;
8
- onClickTab?: ((event: React.MouseEvent<HTMLElement, MouseEvent>, value: any) => void);
9
- onChangeTab?: ((event: React.MouseEvent<HTMLElement, MouseEvent>, value: any) => void);
8
+ variant?: 'bordered' | 'default' | 'pills' | 'outline' | 'underline' | 'ghost';
9
+ size?: 'sm' | 'md' | 'lg' | 'xl';
10
+ onChangeTab?: ((event: React.MouseEvent<HTMLElement, MouseEvent> | undefined, value: any) => void);
10
11
  };
11
12
  export declare const CustomToggleButton: (props: ToggleButtonType) => import("react/jsx-runtime").JSX.Element;
12
13
  export {};