@zimyo/engage 0.1.1-hrms → 0.1.1-pms

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,8 +2,6 @@
2
2
  type props = {
3
3
  isPopoverOpen: boolean;
4
4
  anchorPosition: any;
5
- employeeId: number | string;
6
- pipId: number | string | undefined;
7
5
  pipActionModalClose: () => void;
8
6
  };
9
7
  declare const _default: import("react").MemoExoticComponent<(props: props) => import("react/jsx-runtime").JSX.Element>;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ type initialPipValues = {
3
+ employeeId?: string | number | undefined;
4
+ concern: string | undefined;
5
+ pipId: string;
6
+ };
7
+ declare const initialPipValues: initialPipValues;
8
+ export declare const PipProvider: import("react").Provider<initialPipValues>;
9
+ export declare const usePipContext: () => initialPipValues;
10
+ export {};
@@ -6,7 +6,7 @@ type props = {
6
6
  modalTitle: string;
7
7
  initialPipDetails: any;
8
8
  HRAdminMailOptions: any;
9
- employeeId: string | number | undefined;
9
+ employeeId?: string | number | undefined;
10
10
  };
11
11
  declare const InitiatePIPModal: (props: props) => import("react/jsx-runtime").JSX.Element;
12
12
  export default InitiatePIPModal;
@@ -3,11 +3,9 @@ import "./stylesModal.css";
3
3
  type Props = {
4
4
  setOpenViewPIPDetailsModal: (value: boolean) => void;
5
5
  PerformanceDetalsAllData: any;
6
- employeeId: number | string;
7
6
  refetchPIPDetails: () => void;
8
7
  refetchGetDetails: () => void;
9
8
  isDataFetching: boolean;
10
- pipId: any;
11
9
  };
12
10
  declare const _default: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>;
13
11
  export default _default;