@zimyo/engage 0.1.1-hrms → 0.1.2-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.
@@ -0,0 +1,9 @@
1
+ export declare const MODAL_TYPES: {
2
+ CREATE: string;
3
+ EDIT: string;
4
+ };
5
+ export declare const PIP_TABS: {
6
+ SELF: string;
7
+ TEAM: string;
8
+ ORGANIZATION: string;
9
+ };
@@ -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 {};
@@ -0,0 +1,8 @@
1
+ type props = {
2
+ openInitiatePIPModal: boolean;
3
+ setOpenInitiatePIPModal: (value: boolean) => void;
4
+ modalTitle: string;
5
+ CONCERN?: string | undefined;
6
+ };
7
+ export declare const InitiatePipModalWithWapper: (props: props) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -2,11 +2,11 @@ import './styles.css';
2
2
  type props = {
3
3
  openInitiatePIPModal: boolean;
4
4
  setOpenInitiatePIPModal: (value: boolean) => void;
5
- refetchMainDetails: () => void;
6
5
  modalTitle: string;
7
6
  initialPipDetails: any;
8
7
  HRAdminMailOptions: any;
9
- employeeId: string | number | undefined;
8
+ modalType?: string | undefined;
9
+ CONCERN?: string | undefined;
10
10
  };
11
11
  declare const InitiatePIPModal: (props: props) => import("react/jsx-runtime").JSX.Element;
12
12
  export default InitiatePIPModal;
@@ -1,13 +1,4 @@
1
1
  import React from "react";
2
2
  import "./stylesModal.css";
3
- type Props = {
4
- setOpenViewPIPDetailsModal: (value: boolean) => void;
5
- PerformanceDetalsAllData: any;
6
- employeeId: number | string;
7
- refetchPIPDetails: () => void;
8
- refetchGetDetails: () => void;
9
- isDataFetching: boolean;
10
- pipId: any;
11
- };
12
- declare const _default: React.MemoExoticComponent<(props: Props) => import("react/jsx-runtime").JSX.Element>;
3
+ declare const _default: React.MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
13
4
  export default _default;
@@ -9,6 +9,7 @@ type Props = {
9
9
  optionValue?: string;
10
10
  inputPlaceHolder?: string;
11
11
  optionTitleFn?: (item: any) => string;
12
+ isNativeEndPoint?: boolean;
12
13
  } & AsyncProps<CustomSelectOption, boolean, any>;
13
14
  /**
14
15
  * @description Async multi select component on top of react-select.