@zimyo/engage 0.1.19-pms → 0.1.20-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.
Files changed (29) hide show
  1. package/README.md +30 -30
  2. package/dist/components/feedback/appreciation/badge-master/modal/form.schema.d.ts +2 -2
  3. package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +0 -1
  4. package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +0 -1
  5. package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +5 -2
  6. package/dist/components/feedback/dashboard/meeting-modal.d.ts +0 -1
  7. package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +0 -1
  8. package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +5 -5
  9. package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +0 -1
  10. package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +1 -1
  11. package/dist/components/pip/pip-action/pip-action.d.ts +0 -1
  12. package/dist/components/pip/pip-context.d.ts +0 -1
  13. package/dist/components/pip/pip-initiation/pip-initiation.d.ts +1 -1
  14. package/dist/components/pip/pip-list.d.ts +3 -0
  15. package/dist/components/ui/button/button.d.ts +0 -1
  16. package/dist/components/ui/header-title/header-title.d.ts +0 -1
  17. package/dist/components/ui/image-viewer/image-viewer.d.ts +0 -1
  18. package/dist/components/ui/pdf-viewer/pdf.viewer.d.ts +0 -1
  19. package/dist/components/ui/search/search.d.ts +0 -1
  20. package/dist/components/ui/toggle-button/toggle-button.d.ts +0 -1
  21. package/dist/main.cjs +154081 -2960
  22. package/dist/main.js +123650 -101786
  23. package/dist/shared/constants/endpoints.d.ts +4 -0
  24. package/dist/shared/constants/time.d.ts +13 -3
  25. package/dist/shared/hooks/useFetch.d.ts +1 -1
  26. package/dist/shared/utils/utils.d.ts +1 -0
  27. package/dist/style.css +1642 -1
  28. package/package.json +91 -89
  29. package/dist/.vite/manifest.json +0 -12
@@ -1,6 +1,7 @@
1
1
  export declare const APIS: {
2
2
  COMMON: {
3
3
  FETCH_HRADMIN_EMAIL_LIST: string;
4
+ UPLOAD_FILE_TO_S3: string;
4
5
  };
5
6
  AUTH: {
6
7
  LOGIN: string;
@@ -50,12 +51,15 @@ export declare const APIS: {
50
51
  SUBMIT_ACTION_ON_PIP: string;
51
52
  GET_EMPLOYEE_PIP_DETAIL: string;
52
53
  INITIATE_PIP: string;
54
+ EDIT_EMPLOYEE_PIP: string;
53
55
  SEARCH_EMP: string;
54
56
  AKNOWLEDGE: string;
55
57
  NOTIFICATIONS: string;
56
58
  GET_MAIL_TEMPLATE: string;
57
59
  SAVE_MAIL_TEMPLATE: string;
58
60
  UPDATE_NOTIFICATIONS: string;
61
+ SAPMLE_PIP_DOWNLOAD: string;
62
+ UPLOAD_PIP_EMPLOYEES: string;
59
63
  };
60
64
  ONE_TO_ONE: {
61
65
  FETCH: string;
@@ -39,15 +39,25 @@ export declare const MONTHS_FULL: {
39
39
  };
40
40
  export declare const DATE_FORMATS: {
41
41
  "Y-m-d": string;
42
+ "d-M-Y": string;
42
43
  "m-d-Y": string;
43
- "d M y": string;
44
+ "Y-d-m ": string;
45
+ "d M y ": string;
46
+ "M Y": string;
44
47
  "F dS Y": string;
45
48
  "F d Y": string;
49
+ "d F Y": string;
46
50
  "M d Y": string;
47
51
  "d/m/y": string;
52
+ "Y-m": string;
48
53
  "d M Y h:i:s": string;
49
- "d-M-Y": string;
50
- "d-M-y": string;
54
+ "d M Y h:i": string;
55
+ "d-M-Y ": string;
56
+ "d-M-y ": string;
57
+ "d M Y": string;
51
58
  "Y-d-m": string;
59
+ "H:m A": string;
60
+ "h:i": string;
52
61
  "h:i A": string;
62
+ "H:m": string;
53
63
  };
@@ -1,7 +1,7 @@
1
1
  import { AxiosResponse } from "axios";
2
2
  import { UseQueryOptions } from "react-query";
3
3
  import { HttpServiceType } from "@services/http";
4
- export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: AbortSignal | undefined) => Promise<AxiosResponse<any, any>>, apiPromiseArgs: HttpServiceType, key: any, queryOptions?: Omit<UseQueryOptions<any, any, any, any>, 'queryKey' | 'queryFn'>) => {
4
+ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: AbortSignal | undefined) => Promise<AxiosResponse<any, any>>, apiPromiseArgs: HttpServiceType, key: any, queryOptions?: Omit<UseQueryOptions<any, any, any, any>, "queryKey" | "queryFn">) => {
5
5
  data: undefined;
6
6
  error: null;
7
7
  isError: false;
@@ -23,6 +23,7 @@ export declare class util {
23
23
  static removeDuplicatesByProperty(array: Array<any>, property: string): any;
24
24
  static updateFilterObj: (value: any, key: string, filter: any) => any;
25
25
  static getOAuthToken: () => string | undefined;
26
+ static getLightenColor: (color: string, factor?: number) => string;
26
27
  static setOAuthToken: (creds: {
27
28
  access_token: string;
28
29
  expires_in: number;