@zimyo/engage 0.0.27 → 0.0.28

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 (34) hide show
  1. package/dist/components/feedback/appreciation/list/appreciation-list.d.ts +4 -1
  2. package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +10 -1
  3. package/dist/components/feedback/continuous-feedback/list/continuous-feedback-list.d.ts +4 -1
  4. package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +10 -1
  5. package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +2 -1
  6. package/dist/components/feedback/one-to-one/list/one-to-one-list.d.ts +4 -1
  7. package/dist/components/feedback/one-to-one/reschedule-modal/form.schema.d.ts +2 -1
  8. package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +5 -1
  9. package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +2 -1
  10. package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +10 -1
  11. package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +2 -1
  12. package/dist/components/feedback/one-to-one/view-details-modal/view-details-modal.d.ts +8 -1
  13. package/dist/components/ui/alert/alert.d.ts +2 -1
  14. package/dist/components/ui/button/button.d.ts +1 -1
  15. package/dist/components/ui/image-viewer/image-viewer.d.ts +1 -1
  16. package/dist/components/ui/multi-select/async/multi-select.d.ts +2 -1
  17. package/dist/components/ui/pdf-viewer/pdf.viewer.d.ts +1 -1
  18. package/dist/components/ui/spinner/spinner.d.ts +1 -1
  19. package/dist/components/ui/toggle-button/toggle-button.d.ts +1 -1
  20. package/dist/main.cjs +250 -250
  21. package/dist/main.d.ts +7 -7
  22. package/dist/main.js +29924 -26832
  23. package/dist/shared/hooks/useDarkColor.d.ts +2 -1
  24. package/dist/shared/hooks/useFetch.d.ts +9 -8
  25. package/dist/shared/hooks/useMutation.d.ts +4 -3
  26. package/dist/shared/providers/auth-provider.d.ts +2 -1
  27. package/dist/shared/providers/engage-provider.d.ts +1 -0
  28. package/dist/shared/services/http.d.ts +4 -4
  29. package/dist/shared/types/backend.types.d.ts +2 -1
  30. package/dist/shared/types/form-fields.types.d.ts +0 -0
  31. package/dist/shared/zustand/alert.store.d.ts +2 -1
  32. package/dist/shared/zustand/session.store.d.ts +1 -1
  33. package/dist/style.css +1 -1
  34. package/package.json +4 -2
@@ -1,2 +1,3 @@
1
- import tinycolor from "tinycolor2";
1
+ import { default as tinycolor } from 'tinycolor2';
2
+
2
3
  export declare const useDarkColor: (color?: tinycolor.ColorInput, factor?: number) => string;
@@ -1,6 +1,7 @@
1
- import { AxiosResponse } from "axios";
2
- import { UseQueryOptions } from "react-query";
3
- import { HttpServiceType } from "@services/http";
1
+ import { AxiosResponse } from 'axios';
2
+ import { UseQueryOptions } from 'react-query';
3
+ import { HttpServiceType } from '../services/http';
4
+
4
5
  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
6
  data: undefined;
6
7
  error: null;
@@ -22,7 +23,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
22
23
  isPreviousData: boolean;
23
24
  isRefetching: boolean;
24
25
  isStale: boolean;
25
- refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
26
+ refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
26
27
  remove: () => void;
27
28
  rq_data: any;
28
29
  } | {
@@ -46,7 +47,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
46
47
  isPreviousData: boolean;
47
48
  isRefetching: boolean;
48
49
  isStale: boolean;
49
- refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
50
+ refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
50
51
  remove: () => void;
51
52
  rq_data: any;
52
53
  } | {
@@ -70,7 +71,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
70
71
  isPreviousData: boolean;
71
72
  isRefetching: boolean;
72
73
  isStale: boolean;
73
- refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
74
+ refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
74
75
  remove: () => void;
75
76
  rq_data: any;
76
77
  } | {
@@ -94,7 +95,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
94
95
  isPreviousData: boolean;
95
96
  isRefetching: boolean;
96
97
  isStale: boolean;
97
- refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
98
+ refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
98
99
  remove: () => void;
99
100
  rq_data: any;
100
101
  } | {
@@ -118,7 +119,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
118
119
  isPreviousData: boolean;
119
120
  isRefetching: boolean;
120
121
  isStale: boolean;
121
- refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
122
+ refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
122
123
  remove: () => void;
123
124
  rq_data: any;
124
125
  };
@@ -1,6 +1,7 @@
1
- import { UseMutationResult } from "react-query";
2
- import { HttpServiceType } from "../services/http";
3
- import { BackendErrorType } from "../types/backend.types";
1
+ import { UseMutationResult } from 'react-query';
2
+ import { HttpServiceType } from '../services/http';
3
+ import { BackendErrorType } from '../types/backend.types';
4
+
4
5
  /**
5
6
  * @author Manish Kumar
6
7
  * @param {*} mutationFunction
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
+
2
3
  declare const AuthProvider: ({ children, token, apiURL, AWS_S3_READ_URL }: {
3
4
  token: string;
4
5
  apiURL: string;
@@ -1,5 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { QueryClient } from 'react-query';
3
+
3
4
  interface EngageProviderProps {
4
5
  queryClient: QueryClient;
5
6
  token: string;
@@ -5,7 +5,7 @@ export type HttpServiceType = {
5
5
  params?: any;
6
6
  isNativeEndpoint?: boolean;
7
7
  };
8
- export declare const getService: ({ url, token, params }: HttpServiceType) => Promise<import("axios").AxiosResponse<any, any>>;
9
- export declare const postService: ({ url, token, data, params }: HttpServiceType) => Promise<import("axios").AxiosResponse<any, any>>;
10
- export declare const patchService: ({ url, token, data, params }: HttpServiceType) => Promise<import("axios").AxiosResponse<any, any>>;
11
- export declare const deleteService: ({ url, token, data, params }: HttpServiceType) => Promise<import("axios").AxiosResponse<any, any>>;
8
+ export declare const getService: ({ url, token, params }: HttpServiceType) => Promise<import('axios').AxiosResponse<any, any>>;
9
+ export declare const postService: ({ url, token, data, params }: HttpServiceType) => Promise<import('axios').AxiosResponse<any, any>>;
10
+ export declare const patchService: ({ url, token, data, params }: HttpServiceType) => Promise<import('axios').AxiosResponse<any, any>>;
11
+ export declare const deleteService: ({ url, token, data, params }: HttpServiceType) => Promise<import('axios').AxiosResponse<any, any>>;
@@ -1,4 +1,5 @@
1
- import { AxiosError, AxiosResponse } from "axios";
1
+ import { AxiosError, AxiosResponse } from 'axios';
2
+
2
3
  export type UserType = any;
3
4
  export type BackendResponseType<T> = AxiosResponse<{
4
5
  error: boolean;
File without changes
@@ -1,4 +1,5 @@
1
1
  import { AlertColor } from '@mui/material';
2
+
2
3
  type State = {
3
4
  alert: {
4
5
  type?: AlertColor;
@@ -12,5 +13,5 @@ type Actions = {
12
13
  }) => void;
13
14
  clearAlert: () => void;
14
15
  };
15
- export declare const useAlertStore: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>;
16
+ export declare const useAlertStore: import('zustand').UseBoundStore<import('zustand').StoreApi<State & Actions>>;
16
17
  export {};
@@ -15,5 +15,5 @@ type Actions = {
15
15
  }) => void;
16
16
  clearSession: () => void;
17
17
  };
18
- export declare const useSessionStore: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>;
18
+ export declare const useSessionStore: import('zustand').UseBoundStore<import('zustand').StoreApi<State & Actions>>;
19
19
  export {};
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .overlay{position:fixed;display:flex;width:100%;height:100%;top:0;left:0;right:0;bottom: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_123gz_1{background:#f3f3f3;border-radius:4px;padding:0}._toggle_button_group_123gz_1>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}._select_search_9kc6n_1 input{font-size:14px!important}._one__icons__bottom_dz8eh_13>p{display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}._feedback__appreciation_dz8eh_34{text-align:center}._feedback__appreciation_dz8eh_34>h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;color:#172b4d}._feedback__appreciation_dz8eh_34>p{word-break:break-all}._icon__appriciate_dz8eh_80{margin-right:17px;align-items:center;display:flex;justify-content:center}._box__appriciate_dz8eh_87{display:flex}._box__top_appriciate_dz8eh_91{display:flex;width:100%;align-items:center;justify-content:"center"}._box__top_appriciate_dz8eh_91 h3{padding:0;margin:0;font-size:18px;line-height:20px;font-weight:600;cursor:pointer}._box__top_appriciate_dz8eh_91 p{padding:0;margin:7px 0 0;font-size:15px;color:#615e83;font:600}._summury__box_outline_dz8eh_115{background:#fff;border:1px solid #e8e8ea;border-radius:4px;margin-bottom:20px;padding:25px 20px}._schedule__employee_search_dz8eh_123{display:flex;align-items:center;padding:4px 8px;background:#fff;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px}._schedule__employee_dz8eh_123{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}._form_error_dz8eh_148{display:flex;align-items:center;gap:.5rem;font-size:14px;color:red;margin-top:10px}._form_error_dz8eh_148 p{margin:0!important;font-weight:500;color:red!important}._skill__btns_dz8eh_163{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}._closeRatingicon_dz8eh_183{color:#757575;margin-left:10px;margin-top:5px;cursor:pointer}._footer__upload_assets_dz8eh_190{opacity:.5!important;padding-right:15px}._container_dz8eh_195{overflow:auto;display:flex;flex-direction:column;gap:1rem}._choose_employee_container_dz8eh_202{display:flex;align-items:center;gap:.5rem}._badges_container_dz8eh_208{gap:.5rem;display:flex;flex-direction:column}._badges_container_title_dz8eh_214{font-size:14px;font-weight:600}._avatar_container_dz8eh_219{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}._active_badge_dz8eh_233{border:1px solid rgb(23,44,79,.4);border-radius:8px}._badge_card_dz8eh_238{display:flex;flex-direction:row;align-items:center;padding:8px;gap:10px;width:100%;background:#fff;border-radius:8px}._badge_card_dz8eh_238 h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;margin:0 0 4px;padding:0;color:#172b4d}._badge_card_dz8eh_238 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_dz8eh_238:hover{cursor:pointer}._overview__container__bg_dz8eh_2{width:100%!important;overflow:scroll;font-style:normal;padding:10px!important;background-color:#fafbfc;display:flex;flex-direction:column;gap:1rem}._feedback__rating_dz8eh_51{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_dz8eh_51 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_dz8eh_51>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._skill__btns_dz8eh_163{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_dz8eh_178{display:flex;align-items:center}._images__structure_dz8eh_346{display:flex;flex-flow:wrap;column-gap:20px;margin-top:15px}._images__structure_dz8eh_346 img{width:100px;height:100px;object-fit:cover;border:1px solid #eee;background-color:#f2f2f2;margin-bottom:20px}._one__to__one__card_dz8eh_367{display:block;padding:12px;width:100%;height:78px;background:#fff;border:1px solid #EBECF0;border-radius:4px}._one__to__one__card__top_dz8eh_377{display:flex;justify-content:space-between;align-items:center}._one__to__one__icon_dz8eh_383{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_dz8eh_383>svg{color:#4c8bff;width:12px;height:12px}._one__to__one__card__top_dz8eh_377 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_dz8eh_377 h3 span{font-weight:400;font-size:14px;line-height:22px;margin-left:12px;display:flex;align-items:center;color:#fac800}._face__to__face_dz8eh_424{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__icons__bottom_dz8eh_13{display:flex;align-items:center;margin-left:30px}._one__icons__bottom_dz8eh_13>p{margin-right:20px;display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}._one__icons__bottom_dz8eh_13>p>span{display:flex;align-items:center;justify-content:center}._one__icons__bottom_dz8eh_13>p>span>svg{width:14px;height:14px;color:#615e69;margin-right:10px}._one__to__one__reschedule_dz8eh_467{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_dz8eh_479{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}._meeting__details_dz8eh_491{padding:30px}._meeting__details__topbox_dz8eh_495{clear:both}._meeting__details__topbox_dz8eh_495 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_dz8eh_495 ._meeting-desc_dz8eh_511{word-wrap:break-word}._meeting__details__topbox_dz8eh_495 h3 span{font-style:normal;font-weight:400;font-size:14px;line-height:22px;margin-left:10px}._meeting__details__topbox_dz8eh_495 p{font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#a5a3a9}._bottom_create_loaction_dz8eh_532{display:flex}._bottom_create_loaction_dz8eh_532>p{font-size:12px;line-height:22px;display:flex;align-items:center;color:#b3b3b3;padding-right:10px;margin-right:10px}._bottom_create_loaction_dz8eh_532>p:not(:last-child){border-right:1px solid #B3B3B3}._bottom_create_loaction_dz8eh_532>p>span{font-weight:400;font-size:14px;line-height:22px;display:flex;align-items:center;color:#615e69;margin-left:10px}._date__time__box_dz8eh_561{clear:auto;display:flex}._date__time__box_dz8eh_561>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_dz8eh_561>p>span>svg{color:#615e69;width:14px;height:14px;margin-right:10px;float:left}._connected__meeting_dz8eh_590{display:flex;align-items:center;font-weight:400;font-size:14px;line-height:19px;color:#615e69}._connected__meeting_dz8eh_590>span{display:flex;align-items:center;justify-content:center}._connected__meeting_dz8eh_590>span>svg{color:#615e69;width:20px;height:20px}._connected__meeting_dz8eh_590 span{color:#172b4d;margin-left:10px}._remark__container_dz8eh_616{max-height:calc(100vh - 300px);overflow:auto;margin-top:30px;display:flex;gap:1rem;flex-direction:column}._remarks__meeting_dz8eh_625{clear:both;padding:12px;isolation:isolate;background:#fff;border:1px solid #EBECF0;border-radius:8px}._remarks__meeting_dz8eh_625 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_dz8eh_625 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_dz8eh_625 p{font-weight:400;font-size:14px;line-height:19px;color:#172b4d;margin:0;padding:0;word-break:break-all}._previeww__color_dz8eh_317{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._comment__users__meeting_dz8eh_683{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_dz8eh_683>span{font-style:normal;font-weight:400;font-size:14px;line-height:19px;margin-left:6px;color:#afafaf}._editor__remarks_dz8eh_703{height:auto;background:#fff;border:1px solid #A5A3A9;border-radius:8px;margin-top:30px;padding:4px}._editor__bottom_dz8eh_712{display:flex;justify-content:space-between;padding:15px}._editor__bottom_dz8eh_712 span{float:left;cursor:pointer}._editor__bottom_dz8eh_712 span>svg{opacity:.5}._all__upload__images_dz8eh_727{margin:1rem 0rem;position:relative;box-shadow:#0000000d 0 1px 2px;width:100px;height:100px;border:1px solid #333}._all__upload__images_dz8eh_727>img{width:100%;height:100%}._all__upload__images_dz8eh_727 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_dz8eh_756{margin:20px 0;position:relative;padding:8px;width:243px;height:auto;background:#fff;border:1px solid #E8E8EA;border-radius:4px;display:flex}._pdfView__preview_dz8eh_756 p{font-weight:400;font-size:14px;line-height:25px;display:flex;align-items:center;padding:0;margin:0;color:#262626}._pdfView__preview_dz8eh_756 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_dz8eh_795{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;gap:1rem;width:100%}._input-date_dz8eh_804{height:40px;padding:10px;font-size:14px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box}._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}
1
+ .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}._select_search_9kc6n_1 input{font-size:14px!important}._one__icons__bottom_dz8eh_13>p{display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}._feedback__appreciation_dz8eh_34{text-align:center}._feedback__appreciation_dz8eh_34>h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;color:#172b4d}._feedback__appreciation_dz8eh_34>p{word-break:break-all}._icon__appriciate_dz8eh_80{margin-right:17px;align-items:center;display:flex;justify-content:center}._box__appriciate_dz8eh_87{display:flex}._box__top_appriciate_dz8eh_91{display:flex;width:100%;align-items:center;justify-content:"center"}._box__top_appriciate_dz8eh_91 h3{padding:0;margin:0;font-size:18px;line-height:20px;font-weight:600;cursor:pointer}._box__top_appriciate_dz8eh_91 p{padding:0;margin:7px 0 0;font-size:15px;color:#615e83;font:600}._summury__box_outline_dz8eh_115{background:#fff;border:1px solid #e8e8ea;border-radius:4px;margin-bottom:20px;padding:25px 20px}._schedule__employee_search_dz8eh_123{display:flex;align-items:center;padding:4px 8px;background:#fff;border-radius:4px;font-weight:600;font-size:12px;color:#172b4d;margin-left:8px}._schedule__employee_dz8eh_123{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}._form_error_dz8eh_148{display:flex;align-items:center;gap:.5rem;font-size:14px;color:red;margin-top:10px}._form_error_dz8eh_148 p{margin:0!important;font-weight:500;color:red!important}._skill__btns_dz8eh_163{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}._closeRatingicon_dz8eh_183{color:#757575;margin-left:10px;margin-top:5px;cursor:pointer}._footer__upload_assets_dz8eh_190{opacity:.5!important;padding-right:15px}._container_dz8eh_195{overflow:auto;display:flex;flex-direction:column;gap:1rem}._choose_employee_container_dz8eh_202{display:flex;align-items:center;gap:.5rem}._badges_container_dz8eh_208{gap:.5rem;display:flex;flex-direction:column}._badges_container_title_dz8eh_214{font-size:14px;font-weight:600}._avatar_container_dz8eh_219{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}._active_badge_dz8eh_233{border:1px solid rgb(23,44,79,.4);border-radius:8px}._badge_card_dz8eh_238{display:flex;flex-direction:row;align-items:center;padding:8px;gap:10px;width:100%;background:#fff;border-radius:8px}._badge_card_dz8eh_238 h3{font-style:normal;font-weight:600;font-size:14px;line-height:17px;margin:0 0 4px;padding:0;color:#172b4d}._badge_card_dz8eh_238 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_dz8eh_238:hover{cursor:pointer}._overview__container__bg_dz8eh_2{width:100%!important;overflow:scroll;font-style:normal;padding:10px!important;background-color:#fafbfc;display:flex;flex-direction:column;gap:1rem}._feedback__rating_dz8eh_51{display:block;padding:12px;background:#fff;border:1px solid #EBECF0;border-radius:4px;margin-bottom:20px}._feedback__rating_dz8eh_51 h4{font-weight:600;font-size:14px;line-height:24px;display:flex;align-items:center;color:#172b4d;margin:0;padding:0}._feedback__rating_dz8eh_51>p{font-style:normal;font-weight:400;font-size:14px;line-height:19px;color:#172b4d;word-break:break-all}._skill__btns_dz8eh_163{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_dz8eh_178{display:flex;align-items:center}._images__structure_dz8eh_346{display:flex;flex-flow:wrap;column-gap:20px;margin-top:15px}._images__structure_dz8eh_346 img{width:100px;height:100px;object-fit:cover;border:1px solid #eee;background-color:#f2f2f2;margin-bottom:20px}._one__to__one__card_dz8eh_367{display:block;padding:12px;width:100%;height:78px;background:#fff;border:1px solid #EBECF0;border-radius:4px}._one__to__one__card__top_dz8eh_377{display:flex;justify-content:space-between;align-items:center}._one__to__one__icon_dz8eh_383{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_dz8eh_383>svg{color:#4c8bff;width:12px;height:12px}._one__to__one__card__top_dz8eh_377 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_dz8eh_377 h3 span{font-weight:400;font-size:14px;line-height:22px;margin-left:12px;display:flex;align-items:center;color:#fac800}._face__to__face_dz8eh_424{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__icons__bottom_dz8eh_13{display:flex;align-items:center;margin-left:30px}._one__icons__bottom_dz8eh_13>p{margin-right:20px;display:flex;align-items:center;font-weight:400;font-size:12px;color:#615e69}._one__icons__bottom_dz8eh_13>p>span{display:flex;align-items:center;justify-content:center}._one__icons__bottom_dz8eh_13>p>span>svg{width:14px;height:14px;color:#615e69;margin-right:10px}._one__to__one__reschedule_dz8eh_467{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_dz8eh_479{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}._meeting__details_dz8eh_491{padding:30px}._meeting__details__topbox_dz8eh_495{clear:both}._meeting__details__topbox_dz8eh_495 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_dz8eh_495 ._meeting-desc_dz8eh_511{word-wrap:break-word}._meeting__details__topbox_dz8eh_495 h3 span{font-style:normal;font-weight:400;font-size:14px;line-height:22px;margin-left:10px}._meeting__details__topbox_dz8eh_495 p{font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:#a5a3a9}._bottom_create_loaction_dz8eh_532{display:flex}._bottom_create_loaction_dz8eh_532>p{font-size:12px;line-height:22px;display:flex;align-items:center;color:#b3b3b3;padding-right:10px;margin-right:10px}._bottom_create_loaction_dz8eh_532>p:not(:last-child){border-right:1px solid #B3B3B3}._bottom_create_loaction_dz8eh_532>p>span{font-weight:400;font-size:14px;line-height:22px;display:flex;align-items:center;color:#615e69;margin-left:10px}._date__time__box_dz8eh_561{clear:auto;display:flex}._date__time__box_dz8eh_561>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_dz8eh_561>p>span>svg{color:#615e69;width:14px;height:14px;margin-right:10px;float:left}._connected__meeting_dz8eh_590{display:flex;align-items:center;font-weight:400;font-size:14px;line-height:19px;color:#615e69}._connected__meeting_dz8eh_590>span{display:flex;align-items:center;justify-content:center}._connected__meeting_dz8eh_590>span>svg{color:#615e69;width:20px;height:20px}._connected__meeting_dz8eh_590 span{color:#172b4d;margin-left:10px}._remark__container_dz8eh_616{max-height:calc(100vh - 300px);overflow:auto;margin-top:30px;display:flex;gap:1rem;flex-direction:column}._remarks__meeting_dz8eh_625{clear:both;padding:12px;isolation:isolate;background:#fff;border:1px solid #EBECF0;border-radius:8px}._remarks__meeting_dz8eh_625 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_dz8eh_625 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_dz8eh_625 p{font-weight:400;font-size:14px;line-height:19px;color:#172b4d;margin:0;padding:0;word-break:break-all}._previeww__color_dz8eh_317{font-weight:400;font-size:14px;line-height:100%;display:flex;align-items:center;color:#4c8bff;margin-top:4px;cursor:pointer}._comment__users__meeting_dz8eh_683{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_dz8eh_683>span{font-style:normal;font-weight:400;font-size:14px;line-height:19px;margin-left:6px;color:#afafaf}._editor__remarks_dz8eh_703{height:auto;background:#fff;border:1px solid #A5A3A9;border-radius:8px;margin-top:30px;padding:4px}._editor__bottom_dz8eh_712{display:flex;justify-content:space-between;padding:15px}._editor__bottom_dz8eh_712 span{float:left;cursor:pointer}._editor__bottom_dz8eh_712 span>svg{opacity:.5}._all__upload__images_dz8eh_727{margin:1rem 0rem;position:relative;box-shadow:#0000000d 0 1px 2px;width:100px;height:100px;border:1px solid #333}._all__upload__images_dz8eh_727>img{width:100%;height:100%}._all__upload__images_dz8eh_727 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_dz8eh_756{margin:20px 0;position:relative;padding:8px;width:243px;height:auto;background:#fff;border:1px solid #E8E8EA;border-radius:4px;display:flex}._pdfView__preview_dz8eh_756 p{font-weight:400;font-size:14px;line-height:25px;display:flex;align-items:center;padding:0;margin:0;color:#262626}._pdfView__preview_dz8eh_756 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_dz8eh_795{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;gap:1rem;width:100%}._input-date_dz8eh_804{height:40px;padding:10px;font-size:14px;border:1px solid #ccc;border-radius:4px;box-sizing:border-box}.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}._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}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.0.27",
4
+ "version": "0.0.28",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -38,6 +38,7 @@
38
38
  "@mui/material": "^5.15.17",
39
39
  "@react-pdf-viewer/core": "^3.12.0",
40
40
  "@react-pdf-viewer/default-layout": "^3.12.0",
41
+ "@rollup/plugin-babel": "^6.0.4",
41
42
  "@rollup/plugin-typescript": "^11.1.6",
42
43
  "@types/lodash": "^4.17.4",
43
44
  "@zimyo/components": "^4.2.4",
@@ -67,12 +68,13 @@
67
68
  "zustand": "^4.5.2"
68
69
  },
69
70
  "devDependencies": {
71
+ "@babel/preset-env": "^7.24.7",
70
72
  "@types/react": "^18.2.66",
71
73
  "@types/react-dom": "^18.2.22",
72
74
  "@types/tinycolor2": "^1.4.6",
73
75
  "@typescript-eslint/eslint-plugin": "^7.2.0",
74
76
  "@typescript-eslint/parser": "^7.2.0",
75
- "@vitejs/plugin-react": "^4.2.1",
77
+ "@vitejs/plugin-react": "^4.3.1",
76
78
  "eslint": "^8.57.0",
77
79
  "eslint-plugin-react-hooks": "^4.6.0",
78
80
  "eslint-plugin-react-refresh": "^0.4.6",