@zimyo/engage 0.1.19-pms → 0.2.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.
- package/dist/components/pip/pip-initiation/pip-initiation.d.ts +1 -1
- package/dist/components/pip/pip-list.d.ts +3 -0
- package/dist/main.cjs +325 -322
- package/dist/main.js +37770 -36402
- package/dist/shared/constants/endpoints.d.ts +4 -0
- package/package.json +3 -2
|
@@ -2,4 +2,7 @@ export type Props = {
|
|
|
2
2
|
employee_id?: number;
|
|
3
3
|
CONCERN?: string;
|
|
4
4
|
};
|
|
5
|
+
export declare const MAX_FILE_SIZE_IN_BYTES: number;
|
|
6
|
+
export declare const UPLOADED_EXCEL_SIZE: number;
|
|
7
|
+
export declare const CONTENT_TYPE = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
|
|
5
8
|
export declare const PipList: (props: Props) => import("react/jsx-runtime").JSX.Element;
|