@zimyo/engage 0.1.1-pms → 0.1.2-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.
- package/dist/components/pip/constant.d.ts +4 -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/ui/multi-select/multi-select.d.ts +1 -0
- package/dist/main.cjs +249 -249
- package/dist/main.d.ts +2 -1
- package/dist/main.js +27631 -27606
- package/dist/shared/constants/endpoints.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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.
|