@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.
- package/dist/components/pip/constant.d.ts +9 -0
- package/dist/components/pip/pip-action/pip-action.d.ts +0 -2
- package/dist/components/pip/pip-context.d.ts +10 -0
- package/dist/components/pip/pip-initiation/hoc-pip-initiation.d.ts +8 -0
- package/dist/components/pip/pip-initiation/pip-initiation.d.ts +2 -2
- package/dist/components/pip/view-details/view-details.d.ts +1 -10
- package/dist/components/ui/multi-select/multi-select.d.ts +1 -0
- package/dist/main.cjs +319 -293
- package/dist/main.d.ts +2 -1
- package/dist/main.js +59531 -55780
- package/dist/shared/constants/endpoints.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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.
|