@zimyo/engage 0.0.53-pms → 0.0.54-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.
@@ -10,12 +10,6 @@ export declare const APIS: {
10
10
  FETCH: string;
11
11
  UPDATE: string;
12
12
  };
13
- DASHBOARD: {
14
- FEEDBACK: {
15
- ANALYTICS: string;
16
- MEETING: string;
17
- };
18
- };
19
13
  BADGE: {
20
14
  FETCH: string;
21
15
  CREATE: string;
@@ -26,14 +20,11 @@ export declare const APIS: {
26
20
  FETCH: string;
27
21
  CREATE: string;
28
22
  };
29
- CONTINUOUS_FEEDBACK: {
23
+ FEEDBACK: {
30
24
  FETCH: string;
31
25
  CREATE: string;
32
- RATING_SKILL: {
26
+ RATING_SKILLS: {
33
27
  FETCH: string;
34
- CREATE: string;
35
- UPDATE: string;
36
- DELETE: string;
37
28
  };
38
29
  FORM_FIELDS: {
39
30
  GET: string;
@@ -46,10 +37,6 @@ export declare const APIS: {
46
37
  CREATE: string;
47
38
  UPDATE: string;
48
39
  RESCHEDULE: string;
49
- VIRTUAL: {
50
- CREATE: string;
51
- CANCEL: string;
52
- };
53
40
  REMARK: {
54
41
  CREATE: string;
55
42
  };
@@ -1,9 +1,8 @@
1
1
  import { ReactNode } from 'react';
2
- declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL, GOOGLE_OAUTH_CLIENT_ID }: {
2
+ declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL }: {
3
3
  token: string;
4
4
  API_BASE_URL: string;
5
5
  ASSETS_BASE_URL: string;
6
- GOOGLE_OAUTH_CLIENT_ID: string;
7
6
  children: ReactNode;
8
7
  }) => import("react/jsx-runtime").JSX.Element;
9
8
  export default AuthProvider;
@@ -5,8 +5,7 @@ interface AuthProviderProps {
5
5
  token: string;
6
6
  API_BASE_URL: string;
7
7
  ASSETS_BASE_URL: string;
8
- GOOGLE_OAUTH_CLIENT_ID: string;
9
8
  children: ReactNode;
10
9
  }
11
- declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, GOOGLE_OAUTH_CLIENT_ID, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
10
+ declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
12
11
  export default EngageProvider;
@@ -17,12 +17,4 @@ export declare class util {
17
17
  static convertToMinutes: (timeString: string) => number;
18
18
  static getDarkenColor: (color: string, factor?: number) => string;
19
19
  static convertArrayToObjectWithKey(array: Array<any>, key: string | number): any;
20
- static removeDuplicatesByProperty(array: Array<any>, property: string): any;
21
- static updateFilterObj: (value: any, key: string, filter: any) => any;
22
- static getOAuthToken: () => string | undefined;
23
- static setOAuthToken: (creds: {
24
- access_token: string;
25
- expires_in: number;
26
- generated_on: Date;
27
- }) => void;
28
20
  }
@@ -4,7 +4,6 @@ export type State = {
4
4
  token?: string;
5
5
  API_BASE_URL?: string;
6
6
  ASSETS_BASE_URL?: string;
7
- GOOGLE_OAUTH_CLIENT_ID?: string;
8
7
  };
9
8
  };
10
9
  type Actions = {
@@ -13,7 +12,6 @@ type Actions = {
13
12
  token: string;
14
13
  API_BASE_URL: string;
15
14
  ASSETS_BASE_URL: string;
16
- GOOGLE_OAUTH_CLIENT_ID: string;
17
15
  }) => void;
18
16
  clearSession: () => void;
19
17
  };
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .overview__container__bg{width:100%!important;overflow:scroll;font-style:normal;padding:10px!important;background-color:#fafbfc;display:flex;flex-direction:column;gap:1rem}.avatar_container{display:flex;align-items:center;padding:4px 8px;background:#fff;border:1px solid #E8E8EA;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px;gap:.5rem}.images__structure{display:flex;flex-flow:wrap;column-gap:20px;margin-top:15px}.images__structure img{width:100px;height:100px;object-fit:cover;border:1px solid #eee;background-color:#f2f2f2;margin-bottom:20px}.all__upload__images{margin:1rem 0rem;position:relative;box-shadow:#0000000d 0 1px 2px;width:100px;height:100px;border:1px solid #333}.all__upload__images>img{width:100%;height:100%}.all__upload__images button{cursor:pointer;padding:0;background:#0000004d;box-shadow:#00000014 0 4px 12px;color:#fff;border:none;position:absolute;width:24px;height:24px;border-radius:50px;right:-10px;top:-10px}.pdfView__preview{margin:20px 0;position:relative;padding:8px;width:243px;height:auto;background:#fff;border:1px solid #E8E8EA;border-radius:4px;display:flex}.pdfView__preview p{font-weight:400;font-size:14px;line-height:25px;display:flex;align-items:center;padding:0;margin:0;color:#262626}.pdfView__preview button{cursor:pointer;padding:0;background:#0000004d;box-shadow:#00000014 0 4px 12px;color:#fff;border:none;position:absolute;width:24px;height:24px;border-radius:50px;right:-10px;top:-10px}.main__upload__box{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;gap:1rem;width:100%}.input-date{height:40px;padding:10px;font-size:14px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box}.form_error{display:flex;align-items:center;gap:.5rem;font-size:13px;color:red;margin-top:10px;margin-left:5px}.form_error p{margin:0!important;color:red}.one__icons__bottom{display:flex;align-items:center;margin-left:30px}.one__icons__bottom>p{margin-right:20px;display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}.one__icons__bottom>p>span{display:flex;align-items:center;justify-content:center}.one__icons__bottom>p>span>svg{width:14px;height:14px;color:#615e69;margin-right:10px}.overlay{position:fixed;display:flex;width:100%;height:100%;inset:0;cursor:pointer;align-items:center;justify-content:center;background-color:#fff;z-index:999}.overlay-component{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);transform:-webkit-translate(-50%,-50%);transform:-moz-translate(-50%,-50%);transform:-ms-translate(-50%,-50%);background-color:#fff0;z-index:999}.toggle-button-group{background:#f3f3f3;border-radius:4px;padding:0}.toggle-button-group>button{padding:7px 20px!important;font-weight:400;font-size:14px;line-height:18px;text-align:center;color:#615e69;border-radius:4px!important;margin:2px;border:none!important}._container_146t7_1{overflow:auto;display:flex;flex-direction:column;gap:1rem}._badges_container_146t7_8{gap:.5rem;display:flex;flex-direction:column}._badges_container_title_146t7_15{font-size:14px;font-weight:600}._active_badge_146t7_20{border:1px solid rgba(10,122,255,.2);border-radius:8px}._badge_card_146t7_25{display:flex;flex-direction:row;align-items:center;padding:8px;gap:10px;width:100%;background:#fff;border-radius:8px}._badge_card_146t7_25 h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;margin:0 0 4px;padding:0;color:#172b4d}._badge_card_146t7_25 p{font-style:normal;font-weight:400;font-size:12px;line-height:15px;margin:0;padding:0;display:flex;align-items:center;color:#a5a3a9}._badge_card_146t7_25:hover{cursor:pointer}._feedback__appreciation_eow5e_1{text-align:center}._feedback__appreciation_eow5e_1>h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;color:#172b4d}._feedback__appreciation_eow5e_1>p{word-break:break-all}._feedback__rating_eow5e_18{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_eow5e_18 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_eow5e_18>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._icon__appriciate_eow5e_47{margin-right:17px;align-items:center;display:flex;justify-content:center}._box__appriciate_eow5e_54{display:flex}._box__top_appriciate_eow5e_58{display:flex;width:100%;align-items:center;justify-content:"center"}._box__top_appriciate_eow5e_58 h3{padding:0;margin:0;font-size:18px;line-height:20px;font-weight:600;cursor:pointer}._box__top_appriciate_eow5e_58 p{padding:0;margin:7px 0 0;font-size:15px;color:#615e83;font:600}._summury__box_outline_eow5e_82{background:#fff;border:1px solid #e8e8ea;border-radius:4px;margin-bottom:20px;padding:25px 20px}._dashboard_container_ub43h_1{padding:1rem;overflow:auto;display:flex;flex-direction:column;gap:1rem;width:100%}._dashboard_heading_ub43h_11{font-style:normal;font-weight:700;font-size:18px;line-height:34px;color:#172b4d}._meeting_analytics_container_ub43h_19{box-sizing:border-box;padding:5px 20px 20px;width:100%;background:#fff;box-shadow:0 4px 12px #00000014;border-radius:8px;flex:none;order:0;flex-grow:0}._meeting_analytics_card_ub43h_32{box-sizing:border-box;position:relative;width:100%;height:100%;min-height:97px;background:linear-gradient(255.86deg,#4c8bff33 -89.77%,#fff0 -89.75%),#fff;border:1px solid #f5f5f5;box-shadow:0 4px 12px #00000014;border-radius:4px;padding:24px;flex:none;order:0;flex-grow:0;z-index:0}._meeting_analytics_card_ub43h_32>._stick_ub43h_52{position:absolute;width:34px;height:2px;left:-16px;top:34px;border-radius:0 0 4px 4px;transform:rotate(-90deg);flex:none;order:1;flex-grow:0;z-index:1}._meeting_analytics_card_icon_ub43h_66{display:inline-flex;flex-direction:row;justify-content:center;align-items:center;padding:4px;width:35px;height:35px;border-radius:200px;margin-right:8px;margin-bottom:10px}._meeting_analytics_card_label_ub43h_79{font-style:normal;font-weight:600;font-size:12px;line-height:18px;margin-top:12px;color:#615e83}._chart_card_ub43h_88{background:#fff;box-shadow:0 0 8px #00000014;border-radius:8px;height:400px;padding:24px 32px}._feedback__rating_1ihre_3{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_1ihre_3 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_1ihre_3>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._previeww__color_1ihre_33{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._skill__btns_1ihre_44{display:inline-block;padding:2px 6px;width:auto;height:24px;background:#e6ecff;border-radius:4px;font-weight:400;font-size:14px;line-height:20px;color:#4c70ff}._item__centerdirector_1ihre_57{display:flex;align-items:center}._custom-descriptions-title_17b5o_10{font-weight:600;font-size:16px;line-height:24px}._custom-descriptions-item-label_17b5o_25{font-weight:400;font-size:14px;line-height:19px;letter-spacing:.02em;color:#4f4f4f}._custom-descriptions-item-content_17b5o_34{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d}._schedule__employee_9whs1_2{display:flex;align-items:center;padding:4px 8px;background:#fff;border:1px solid #E8E8EA;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px}._skill__btns_9whs1_15{display:inline-block;padding:2px 6px;width:auto;height:24px;background:#e6ecff;border-radius:4px;font-weight:400;font-size:14px;line-height:20px;word-break:break-all;color:#4c70ff}._item__centerdirector_9whs1_30{display:flex;align-items:center}._closeRatingicon_9whs1_35{color:#757575;margin-left:10px;margin-top:5px;cursor:pointer}._footer__upload_assets_9whs1_42{opacity:.5!important;padding-right:15px}._meeting__details_75256_1{padding:30px}._meeting__details__topbox_75256_5{clear:both}._meeting__details__topbox_75256_5 h3{font-style:normal;font-weight:600;font-size:20px;line-height:27px;color:#172b4d;padding:0;margin:0;display:flex;align-items:center}._meeting__details__topbox_75256_5 ._meeting-desc_75256_21{word-wrap:break-word}._meeting__details__topbox_75256_5 h3 span{font-style:normal;font-weight:400;font-size:14px;line-height:22px;margin-left:10px}._meeting__details__topbox_75256_5 p{font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#a5a3a9}._bottom_create_loaction_75256_42{display:flex}._bottom_create_loaction_75256_42>p{font-size:12px;line-height:22px;display:flex;align-items:center;color:#b3b3b3;padding-right:10px;margin-right:10px}._bottom_create_loaction_75256_42>p:not(:last-child){border-right:1px solid #B3B3B3}._bottom_create_loaction_75256_42>p>span{font-weight:400;font-size:14px;line-height:22px;display:flex;align-items:center;color:#615e69;margin-left:10px}._date__time__box_75256_71{clear:auto;display:flex}._date__time__box_75256_71>p{display:flex;justify-content:center;align-items:center;padding:6px 12px;height:28px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#615e69;margin-right:24px}._date__time__box_75256_71>p>span>svg{color:#615e69;width:14px;height:14px;margin-right:10px;float:left}._connected__meeting_75256_100{display:flex;align-items:center;font-weight:400;font-size:14px;line-height:19px;color:#615e69}._connected__meeting_75256_100>span{display:flex;align-items:center;justify-content:center}._connected__meeting_75256_100>span>svg{color:#615e69;width:20px;height:20px}._connected__meeting_75256_100 span{color:#172b4d;margin-left:10px}._remarks__meeting_75256_126{clear:both;padding:12px;isolation:isolate;background:#fff;border:1px solid #EBECF0;border-radius:8px;margin-top:30px}._remarks__meeting_75256_126 h4{justify-content:space-between;font-weight:600;font-size:14px;line-height:20px;display:flex;align-items:center;color:#172b4d;margin:0 0 15px}._remarks__meeting_75256_126 h4 span{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:4px 8px;height:20px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#172b4d}._remarks__meeting_75256_126 p{font-weight:400;font-size:14px;line-height:19px;color:#172b4d;margin:0;padding:0;word-break:break-all}._previeww__color_75256_176{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._comment__users__meeting_75256_187{display:flex;align-items:center;justify-content:flex-start;font-weight:600;font-size:16px;line-height:21px;color:#172b4d;margin-top:15px}._comment__users__meeting_75256_187>span{font-style:normal;font-weight:400;font-size:14px;line-height:19px;margin-left:6px;color:#afafaf}._editor__remarks_75256_207{height:auto;background:#fff;border:1px solid #A5A3A9;border-radius:8px;margin-top:30px;padding:4px}._editor__bottom_75256_216{display:flex;justify-content:space-between;padding:15px}._editor__bottom_75256_216 span{float:left;cursor:pointer}._editor__bottom_75256_216 span>svg{opacity:.5}._one__to__one__card_ec5u0_1{display:block;padding:12px;width:100%;height:78px;background:#fff;border:1px solid #EBECF0;border-radius:4px}._one__to__one__card__top_ec5u0_11{display:flex;justify-content:space-between;align-items:center}._one__to__one__icon_ec5u0_17{display:flex;flex-direction:row;align-items:flex-start;padding:4px;width:20px;height:20px;background:#f6faff;border-radius:20px;margin-right:12px}._one__to__one__icon_ec5u0_17>svg{color:#4c8bff;width:12px;height:12px}._one__to__one__card__top_ec5u0_11 h3{font-weight:600;font-size:16px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0;word-break:break-all}._one__to__one__card__top_ec5u0_11 h3 span{font-weight:400;font-size:14px;line-height:22px;margin-left:12px;display:flex;align-items:center;color:#fac800}._face__to__face_ec5u0_58{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:4px 8px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#172b4d}._one__to__one__reschedule_ec5u0_73{font-weight:400;font-size:14px;line-height:18px;height:20px!important;cursor:pointer;align-items:center;text-align:center;letter-spacing:.1px;color:#335aff!important}._one__to__one__cancel_ec5u0_85{font-weight:400;font-size:14px;line-height:18px;height:20px!important;cursor:pointer;align-items:center;text-align:center;letter-spacing:.1px;color:red!important}
1
+ .overview__container__bg{width:100%!important;overflow:scroll;font-style:normal;padding:10px!important;background-color:#fafbfc;display:flex;flex-direction:column;gap:1rem}.avatar_container{display:flex;align-items:center;padding:4px 8px;background:#fff;border:1px solid #E8E8EA;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px;gap:.5rem}.images__structure{display:flex;flex-flow:wrap;column-gap:20px;margin-top:15px}.images__structure img{width:100px;height:100px;object-fit:cover;border:1px solid #eee;background-color:#f2f2f2;margin-bottom:20px}.all__upload__images{margin:1rem 0rem;position:relative;box-shadow:#0000000d 0 1px 2px;width:100px;height:100px;border:1px solid #333}.all__upload__images>img{width:100%;height:100%}.all__upload__images button{cursor:pointer;padding:0;background:#0000004d;box-shadow:#00000014 0 4px 12px;color:#fff;border:none;position:absolute;width:24px;height:24px;border-radius:50px;right:-10px;top:-10px}.pdfView__preview{margin:20px 0;position:relative;padding:8px;width:243px;height:auto;background:#fff;border:1px solid #E8E8EA;border-radius:4px;display:flex}.pdfView__preview p{font-weight:400;font-size:14px;line-height:25px;display:flex;align-items:center;padding:0;margin:0;color:#262626}.pdfView__preview button{cursor:pointer;padding:0;background:#0000004d;box-shadow:#00000014 0 4px 12px;color:#fff;border:none;position:absolute;width:24px;height:24px;border-radius:50px;right:-10px;top:-10px}.main__upload__box{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;gap:1rem;width:100%}.input-date{height:40px;padding:10px;font-size:14px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box}.form_error{display:flex;align-items:center;gap:.5rem;font-size:13px;color:red;margin-top:10px;margin-left:5px}.form_error p{margin:0!important;color:red}.one__icons__bottom{display:flex;align-items:center;margin-left:30px}.one__icons__bottom>p{margin-right:20px;display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}.one__icons__bottom>p>span{display:flex;align-items:center;justify-content:center}.one__icons__bottom>p>span>svg{width:14px;height:14px;color:#615e69;margin-right:10px}.overlay{position:fixed;display:flex;width:100%;height:100%;inset:0;cursor:pointer;align-items:center;justify-content:center;background-color:#fff;z-index:999}.overlay-component{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);transform:-webkit-translate(-50%,-50%);transform:-moz-translate(-50%,-50%);transform:-ms-translate(-50%,-50%);background-color:#fff0;z-index:999}.toggle-button-group{background:#f3f3f3;border-radius:4px;padding:0}.toggle-button-group>button{padding:7px 20px!important;font-weight:400;font-size:14px;line-height:18px;text-align:center;color:#615e69;border-radius:4px!important;margin:2px;border:none!important}._container_146t7_1{overflow:auto;display:flex;flex-direction:column;gap:1rem}._badges_container_146t7_8{gap:.5rem;display:flex;flex-direction:column}._badges_container_title_146t7_15{font-size:14px;font-weight:600}._active_badge_146t7_20{border:1px solid rgba(10,122,255,.2);border-radius:8px}._badge_card_146t7_25{display:flex;flex-direction:row;align-items:center;padding:8px;gap:10px;width:100%;background:#fff;border-radius:8px}._badge_card_146t7_25 h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;margin:0 0 4px;padding:0;color:#172b4d}._badge_card_146t7_25 p{font-style:normal;font-weight:400;font-size:12px;line-height:15px;margin:0;padding:0;display:flex;align-items:center;color:#a5a3a9}._badge_card_146t7_25:hover{cursor:pointer}._feedback__appreciation_eow5e_1{text-align:center}._feedback__appreciation_eow5e_1>h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;color:#172b4d}._feedback__appreciation_eow5e_1>p{word-break:break-all}._feedback__rating_eow5e_18{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_eow5e_18 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_eow5e_18>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._icon__appriciate_eow5e_47{margin-right:17px;align-items:center;display:flex;justify-content:center}._box__appriciate_eow5e_54{display:flex}._box__top_appriciate_eow5e_58{display:flex;width:100%;align-items:center;justify-content:"center"}._box__top_appriciate_eow5e_58 h3{padding:0;margin:0;font-size:18px;line-height:20px;font-weight:600;cursor:pointer}._box__top_appriciate_eow5e_58 p{padding:0;margin:7px 0 0;font-size:15px;color:#615e83;font:600}._summury__box_outline_eow5e_82{background:#fff;border:1px solid #e8e8ea;border-radius:4px;margin-bottom:20px;padding:25px 20px}._feedback__rating_1ihre_3{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_1ihre_3 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_1ihre_3>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._previeww__color_1ihre_33{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._skill__btns_1ihre_44{display:inline-block;padding:2px 6px;width:auto;height:24px;background:#e6ecff;border-radius:4px;font-weight:400;font-size:14px;line-height:20px;color:#4c70ff}._item__centerdirector_1ihre_57{display:flex;align-items:center}._custom-descriptions-title_17b5o_10{font-weight:600;font-size:16px;line-height:24px}._custom-descriptions-item-label_17b5o_25{font-weight:400;font-size:14px;line-height:19px;letter-spacing:.02em;color:#4f4f4f}._custom-descriptions-item-content_17b5o_34{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d}._schedule__employee_9whs1_2{display:flex;align-items:center;padding:4px 8px;background:#fff;border:1px solid #E8E8EA;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px}._skill__btns_9whs1_15{display:inline-block;padding:2px 6px;width:auto;height:24px;background:#e6ecff;border-radius:4px;font-weight:400;font-size:14px;line-height:20px;word-break:break-all;color:#4c70ff}._item__centerdirector_9whs1_30{display:flex;align-items:center}._closeRatingicon_9whs1_35{color:#757575;margin-left:10px;margin-top:5px;cursor:pointer}._footer__upload_assets_9whs1_42{opacity:.5!important;padding-right:15px}._meeting__details_75256_1{padding:30px}._meeting__details__topbox_75256_5{clear:both}._meeting__details__topbox_75256_5 h3{font-style:normal;font-weight:600;font-size:20px;line-height:27px;color:#172b4d;padding:0;margin:0;display:flex;align-items:center}._meeting__details__topbox_75256_5 ._meeting-desc_75256_21{word-wrap:break-word}._meeting__details__topbox_75256_5 h3 span{font-style:normal;font-weight:400;font-size:14px;line-height:22px;margin-left:10px}._meeting__details__topbox_75256_5 p{font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#a5a3a9}._bottom_create_loaction_75256_42{display:flex}._bottom_create_loaction_75256_42>p{font-size:12px;line-height:22px;display:flex;align-items:center;color:#b3b3b3;padding-right:10px;margin-right:10px}._bottom_create_loaction_75256_42>p:not(:last-child){border-right:1px solid #B3B3B3}._bottom_create_loaction_75256_42>p>span{font-weight:400;font-size:14px;line-height:22px;display:flex;align-items:center;color:#615e69;margin-left:10px}._date__time__box_75256_71{clear:auto;display:flex}._date__time__box_75256_71>p{display:flex;justify-content:center;align-items:center;padding:6px 12px;height:28px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#615e69;margin-right:24px}._date__time__box_75256_71>p>span>svg{color:#615e69;width:14px;height:14px;margin-right:10px;float:left}._connected__meeting_75256_100{display:flex;align-items:center;font-weight:400;font-size:14px;line-height:19px;color:#615e69}._connected__meeting_75256_100>span{display:flex;align-items:center;justify-content:center}._connected__meeting_75256_100>span>svg{color:#615e69;width:20px;height:20px}._connected__meeting_75256_100 span{color:#172b4d;margin-left:10px}._remarks__meeting_75256_126{clear:both;padding:12px;isolation:isolate;background:#fff;border:1px solid #EBECF0;border-radius:8px;margin-top:30px}._remarks__meeting_75256_126 h4{justify-content:space-between;font-weight:600;font-size:14px;line-height:20px;display:flex;align-items:center;color:#172b4d;margin:0 0 15px}._remarks__meeting_75256_126 h4 span{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:4px 8px;height:20px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#172b4d}._remarks__meeting_75256_126 p{font-weight:400;font-size:14px;line-height:19px;color:#172b4d;margin:0;padding:0;word-break:break-all}._previeww__color_75256_176{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._comment__users__meeting_75256_187{display:flex;align-items:center;justify-content:flex-start;font-weight:600;font-size:16px;line-height:21px;color:#172b4d;margin-top:15px}._comment__users__meeting_75256_187>span{font-style:normal;font-weight:400;font-size:14px;line-height:19px;margin-left:6px;color:#afafaf}._editor__remarks_75256_207{height:auto;background:#fff;border:1px solid #A5A3A9;border-radius:8px;margin-top:30px;padding:4px}._editor__bottom_75256_216{display:flex;justify-content:space-between;padding:15px}._editor__bottom_75256_216 span{float:left;cursor:pointer}._editor__bottom_75256_216 span>svg{opacity:.5}._one__to__one__card_ec5u0_1{display:block;padding:12px;width:100%;height:78px;background:#fff;border:1px solid #EBECF0;border-radius:4px}._one__to__one__card__top_ec5u0_11{display:flex;justify-content:space-between;align-items:center}._one__to__one__icon_ec5u0_17{display:flex;flex-direction:row;align-items:flex-start;padding:4px;width:20px;height:20px;background:#f6faff;border-radius:20px;margin-right:12px}._one__to__one__icon_ec5u0_17>svg{color:#4c8bff;width:12px;height:12px}._one__to__one__card__top_ec5u0_11 h3{font-weight:600;font-size:16px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0;word-break:break-all}._one__to__one__card__top_ec5u0_11 h3 span{font-weight:400;font-size:14px;line-height:22px;margin-left:12px;display:flex;align-items:center;color:#fac800}._face__to__face_ec5u0_58{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:4px 8px;background:#fff;border:1px solid #EBECF0;border-radius:4px;font-weight:400;font-size:12px;line-height:16px;color:#172b4d}._one__to__one__reschedule_ec5u0_73{font-weight:400;font-size:14px;line-height:18px;height:20px!important;cursor:pointer;align-items:center;text-align:center;letter-spacing:.1px;color:#335aff!important}._one__to__one__cancel_ec5u0_85{font-weight:400;font-size:14px;line-height:18px;height:20px!important;cursor:pointer;align-items:center;text-align:center;letter-spacing:.1px;color:red!important}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.0.53-pms",
4
+ "version": "0.0.54-hrms",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -33,12 +33,9 @@
33
33
  "dependencies": {
34
34
  "@emotion/react": "^11.11.4",
35
35
  "@emotion/styled": "^11.11.5",
36
- "@google-apps/meet": "^0.3.0",
37
- "@google-cloud/local-auth": "^2.1.0",
38
36
  "@hookform/resolvers": "^3.4.0",
39
37
  "@mui/icons-material": "^5.15.17",
40
38
  "@mui/material": "^5.15.17",
41
- "@react-oauth/google": "^0.12.1",
42
39
  "@react-pdf-viewer/core": "^3.12.0",
43
40
  "@react-pdf-viewer/default-layout": "^3.12.0",
44
41
  "@rollup/plugin-babel": "^6.0.4",
@@ -48,16 +45,24 @@
48
45
  "@zimyo/design-system": "^4.0.0",
49
46
  "axios": "^1.6.8",
50
47
  "debounce-promise": "^3.1.2",
51
- "googleapis": "^140.0.1",
52
48
  "lodash": "^4.17.21",
53
49
  "moment": "^2.30.1",
54
- "react": "^18.0.2",
55
- "react-dom": "^18.0.2",
50
+ "npm": "^10.8.1",
51
+ "pdfjs-dist": "^3.4.120",
52
+ "react": "^17.0.1",
53
+ "react-dom": "^17.0.1",
56
54
  "react-hook-form": "^7.51.4",
57
55
  "react-icons": "^5.2.1",
56
+ "react-intl": "^6.6.6",
57
+ "react-pdf": "^9.0.0",
58
58
  "react-query": "^3.39.3",
59
59
  "react-select": "^5.8.0",
60
+ "rollup-plugin-typescript-paths": "^1.5.0",
60
61
  "tinycolor2": "^1.6.0",
62
+ "vite-plugin-alias": "^0.1.1",
63
+ "vite-plugin-css-injected-by-js": "^3.5.1",
64
+ "vite-plugin-dedupe": "^0.1.1",
65
+ "vite-plugin-dts": "^3.9.1",
61
66
  "zod": "^3.23.8",
62
67
  "zustand": "^4.5.2"
63
68
  },
@@ -72,12 +77,7 @@
72
77
  "eslint": "^8.57.0",
73
78
  "eslint-plugin-react-hooks": "^4.6.0",
74
79
  "eslint-plugin-react-refresh": "^0.4.6",
75
- "rollup-plugin-typescript-paths": "^1.5.0",
76
80
  "typescript": "^5.2.2",
77
- "vite": "^5.2.0",
78
- "vite-plugin-alias": "^0.1.1",
79
- "vite-plugin-css-injected-by-js": "^3.5.1",
80
- "vite-plugin-dedupe": "^0.1.1",
81
- "vite-plugin-dts": "^3.9.1"
81
+ "vite": "^5.2.0"
82
82
  }
83
83
  }
@@ -1,15 +0,0 @@
1
- import { z } from "zod";
2
- export declare const FeedbackSkillFormSchema: z.ZodObject<{
3
- ID: z.ZodOptional<z.ZodNumber>;
4
- SKILL_NAME: z.ZodString;
5
- SKILL_DESCRIPTION: z.ZodString;
6
- }, "strip", z.ZodTypeAny, {
7
- SKILL_NAME: string;
8
- SKILL_DESCRIPTION: string;
9
- ID?: number | undefined;
10
- }, {
11
- SKILL_NAME: string;
12
- SKILL_DESCRIPTION: string;
13
- ID?: number | undefined;
14
- }>;
15
- export type FeedbackSkillFormSchemaType = z.infer<typeof FeedbackSkillFormSchema>;
@@ -1 +0,0 @@
1
- export declare const SkillsMaster: () => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- type Props = {
2
- className?: string;
3
- filters: any;
4
- };
5
- export declare const FeedbackDashBoard: ({ className, filters }: Props) => import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- type Props = {
3
- meetingType?: number;
4
- feedbackFilters: any;
5
- setMeetingType: (value: React.SetStateAction<number | undefined>) => void;
6
- };
7
- export declare const MeetingListModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
8
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const Search: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<unknown>>;
@@ -1,21 +0,0 @@
1
- export declare const CHART_TYPES: {
2
- LINE: string;
3
- MULTI_LINE: string;
4
- COLUMN: string;
5
- STACKED_COLUMN: string;
6
- GROUPED_COLUMN: string;
7
- BAR: string;
8
- STACKED_BAR: string;
9
- GROUPED_BAR: string;
10
- DOUGHNUT: string;
11
- PIE: string;
12
- AREA: string;
13
- STACKED_AREA: string;
14
- FUNNEL: string;
15
- HEAT_MAP: string;
16
- CARD: string;
17
- SUB_CARD: string;
18
- MULTI_CARD: string;
19
- LIST: string;
20
- TABLE: string;
21
- };
File without changes