@zimyo/engage 0.2.9-pms → 0.3.0-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.
@@ -5,7 +5,7 @@ export declare const APIS: {
5
5
  };
6
6
  AUTH: {
7
7
  LOGIN: string;
8
- AUTHENTICATE_TOKEN: string;
8
+ USER: string;
9
9
  };
10
10
  EMPLOYEE: {
11
11
  SEARCH: string;
@@ -1,10 +1,11 @@
1
1
  import { ReactNode } from 'react';
2
- declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL }: {
2
+ declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL, LOGIN_API_BASE_URL }: {
3
3
  token: string;
4
4
  API_BASE_URL: string;
5
5
  ASSETS_BASE_URL: string;
6
6
  children: ReactNode;
7
7
  ADMIN_BASE_URL: string;
8
8
  PMS_API_BASE_URL?: string;
9
+ LOGIN_API_BASE_URL: string;
9
10
  }) => import("react/jsx-runtime").JSX.Element;
10
11
  export default AuthProvider;
@@ -8,6 +8,8 @@ interface AuthProviderProps {
8
8
  children: ReactNode;
9
9
  ADMIN_BASE_URL: string;
10
10
  PMS_API_BASE_URL?: string;
11
+ PRODUCT_THEME_COLOR: string;
12
+ LOGIN_API_BASE_URL: string;
11
13
  }
12
- declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
14
+ declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, ADMIN_BASE_URL, PMS_API_BASE_URL, children, LOGIN_API_BASE_URL, PRODUCT_THEME_COLOR }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
13
15
  export default EngageProvider;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.2.9-pms",
4
+ "version": "0.3.0-hrms",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -45,6 +45,7 @@
45
45
  "@types/lodash": "^4.17.4",
46
46
  "@zimyo/components": "^4.2.4",
47
47
  "@zimyo/design-system": "^4.0.0",
48
+ "@zimyo/ui": "^1.7.1",
48
49
  "axios": "^1.6.8",
49
50
  "dayjs": "^1.11.13",
50
51
  "debounce-promise": "^3.1.2",
@@ -53,8 +54,8 @@
53
54
  "lodash": "^4.17.21",
54
55
  "moment": "^2.30.1",
55
56
  "pdfjs-dist": "^3.4.120",
56
- "react": "^18.2.0",
57
- "react-dom": "^18.2.0",
57
+ "react": "^17.0.1",
58
+ "react-dom": "^17.0.1",
58
59
  "react-dropzone": "^11.3.4",
59
60
  "react-hook-form": "^7.51.4",
60
61
  "react-html-parser": "^2.0.2",