@zimyo/engage 0.0.28 → 0.0.29

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 (37) hide show
  1. package/dist/components/feedback/appreciation/list/appreciation-list.d.ts +1 -4
  2. package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +1 -10
  3. package/dist/components/feedback/continuous-feedback/list/continuous-feedback-list.d.ts +1 -4
  4. package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +1 -10
  5. package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +3 -4
  6. package/dist/components/feedback/one-to-one/constants.d.ts +0 -3
  7. package/dist/components/feedback/one-to-one/list/one-to-one-list.d.ts +1 -4
  8. package/dist/components/feedback/one-to-one/reschedule-modal/form.schema.d.ts +1 -2
  9. package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +1 -5
  10. package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +5 -6
  11. package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +1 -10
  12. package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +2 -3
  13. package/dist/components/feedback/one-to-one/view-details-modal/view-details-modal.d.ts +1 -8
  14. package/dist/components/ui/alert/alert.d.ts +1 -2
  15. package/dist/components/ui/button/button.d.ts +5 -5
  16. package/dist/components/ui/image-viewer/image-viewer.d.ts +1 -1
  17. package/dist/components/ui/multi-select/async/multi-select.d.ts +8 -11
  18. package/dist/components/ui/pdf-viewer/pdf.viewer.d.ts +1 -1
  19. package/dist/components/ui/spinner/spinner.d.ts +1 -1
  20. package/dist/components/ui/toggle-button/toggle-button.d.ts +2 -1
  21. package/dist/main.cjs +259 -259
  22. package/dist/main.d.ts +8 -7
  23. package/dist/main.js +31947 -36221
  24. package/dist/shared/constants/endpoints.d.ts +0 -12
  25. package/dist/shared/constants/time.d.ts +2 -2
  26. package/dist/shared/hooks/useFetch.d.ts +8 -9
  27. package/dist/shared/hooks/useMutation.d.ts +3 -4
  28. package/dist/shared/providers/auth-provider.d.ts +5 -6
  29. package/dist/shared/providers/engage-provider.d.ts +2 -3
  30. package/dist/shared/services/http.d.ts +4 -4
  31. package/dist/shared/types/backend.types.d.ts +1 -2
  32. package/dist/shared/utils/utils.d.ts +1 -0
  33. package/dist/shared/zustand/alert.store.d.ts +1 -2
  34. package/dist/shared/zustand/session.store.d.ts +5 -5
  35. package/dist/style.css +1 -1
  36. package/package.json +3 -7
  37. package/dist/shared/hooks/useDarkColor.d.ts +0 -3
@@ -15,15 +15,3 @@ export declare const UPDATE_ONE_TO_ONE = "admin/meeting/update";
15
15
  export declare const CREATE_MEETING_REMARK = "admin/meeting/remark/create";
16
16
  export declare const GET_SEARCH_FIELDS = "common/get-form-master";
17
17
  export declare const GET_FORM_FIELDS = "common/get-form-field";
18
- export declare const APIS: {
19
- EMPLOYEES: {
20
- SEARCH_EMPLOYEES: string;
21
- };
22
- APPRECIATIONS: {
23
- BADGES: {
24
- FETCH: string;
25
- };
26
- FETCH: string;
27
- CREATE: string;
28
- };
29
- };
@@ -38,16 +38,16 @@ export declare const MONTHS_FULL: {
38
38
  12: string;
39
39
  };
40
40
  export declare const DATE_FORMATS: {
41
+ "d-M-Y": string;
41
42
  "Y-m-d": string;
42
43
  "m-d-Y": string;
44
+ "Y-d-m": string;
43
45
  "d M y": string;
44
46
  "F dS Y": string;
45
47
  "F d Y": string;
46
48
  "M d Y": string;
47
49
  "d/m/y": string;
48
50
  "d M Y h:i:s": string;
49
- "d-M-Y": string;
50
51
  "d-M-y": string;
51
- "Y-d-m": string;
52
52
  "h:i A": string;
53
53
  };
@@ -1,7 +1,6 @@
1
- import { AxiosResponse } from 'axios';
2
- import { UseQueryOptions } from 'react-query';
3
- import { HttpServiceType } from '../services/http';
4
-
1
+ import { AxiosResponse } from "axios";
2
+ import { UseQueryOptions } from "react-query";
3
+ import { HttpServiceType } from "@services/http";
5
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'>) => {
6
5
  data: undefined;
7
6
  error: null;
@@ -23,7 +22,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
23
22
  isPreviousData: boolean;
24
23
  isRefetching: boolean;
25
24
  isStale: boolean;
26
- refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
25
+ refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
27
26
  remove: () => void;
28
27
  rq_data: any;
29
28
  } | {
@@ -47,7 +46,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
47
46
  isPreviousData: boolean;
48
47
  isRefetching: boolean;
49
48
  isStale: boolean;
50
- refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
49
+ refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
51
50
  remove: () => void;
52
51
  rq_data: any;
53
52
  } | {
@@ -71,7 +70,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
71
70
  isPreviousData: boolean;
72
71
  isRefetching: boolean;
73
72
  isStale: boolean;
74
- refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
73
+ refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
75
74
  remove: () => void;
76
75
  rq_data: any;
77
76
  } | {
@@ -95,7 +94,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
95
94
  isPreviousData: boolean;
96
95
  isRefetching: boolean;
97
96
  isStale: boolean;
98
- refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
97
+ refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
99
98
  remove: () => void;
100
99
  rq_data: any;
101
100
  } | {
@@ -119,7 +118,7 @@ export declare const useFetch: (apiPromise: (options: HttpServiceType, signal: A
119
118
  isPreviousData: boolean;
120
119
  isRefetching: boolean;
121
120
  isStale: boolean;
122
- refetch: <TPageData>(options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined) => Promise<import('react-query').QueryObserverResult<any, any>>;
121
+ refetch: <TPageData>(options?: (import("react-query").RefetchOptions & import("react-query").RefetchQueryFilters<TPageData>) | undefined) => Promise<import("react-query").QueryObserverResult<any, any>>;
123
122
  remove: () => void;
124
123
  rq_data: any;
125
124
  };
@@ -1,7 +1,6 @@
1
- import { UseMutationResult } from 'react-query';
2
- import { HttpServiceType } from '../services/http';
3
- import { BackendErrorType } from '../types/backend.types';
4
-
1
+ import { UseMutationResult } from "react-query";
2
+ import { HttpServiceType } from "../services/http";
3
+ import { BackendErrorType } from "../types/backend.types";
5
4
  /**
6
5
  * @author Manish Kumar
7
6
  * @param {*} mutationFunction
@@ -1,9 +1,8 @@
1
- import { default as React } from 'react';
2
-
3
- declare const AuthProvider: ({ children, token, apiURL, AWS_S3_READ_URL }: {
1
+ import { ReactNode } from 'react';
2
+ declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL }: {
4
3
  token: string;
5
- apiURL: string;
6
- AWS_S3_READ_URL: string;
7
- children: React.ReactNode;
4
+ API_BASE_URL: string;
5
+ ASSETS_BASE_URL: string;
6
+ children: ReactNode;
8
7
  }) => import("react/jsx-runtime").JSX.Element;
9
8
  export default AuthProvider;
@@ -1,12 +1,11 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { QueryClient } from 'react-query';
3
-
4
- interface EngageProviderProps {
3
+ interface AuthProviderProps {
5
4
  queryClient: QueryClient;
6
5
  token: string;
7
6
  API_BASE_URL: string;
8
7
  ASSETS_BASE_URL: string;
9
8
  children: ReactNode;
10
9
  }
11
- declare const EngageProvider: ({ token, queryClient, API_BASE_URL, ASSETS_BASE_URL, children }: EngageProviderProps) => 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;
@@ -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,5 +1,4 @@
1
- import { AxiosError, AxiosResponse } from 'axios';
2
-
1
+ import { AxiosError, AxiosResponse } from "axios";
3
2
  export type UserType = any;
4
3
  export type BackendResponseType<T> = AxiosResponse<{
5
4
  error: boolean;
@@ -15,4 +15,5 @@ export declare class util {
15
15
  seconds: string;
16
16
  };
17
17
  static convertToMinutes: (timeString: string) => number;
18
+ static getDarkenColor: (color: string, factor?: number) => string;
18
19
  }
@@ -1,5 +1,4 @@
1
1
  import { AlertColor } from '@mui/material';
2
-
3
2
  type State = {
4
3
  alert: {
5
4
  type?: AlertColor;
@@ -13,5 +12,5 @@ type Actions = {
13
12
  }) => void;
14
13
  clearAlert: () => void;
15
14
  };
16
- export declare const useAlertStore: import('zustand').UseBoundStore<import('zustand').StoreApi<State & Actions>>;
15
+ export declare const useAlertStore: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>;
17
16
  export {};
@@ -2,18 +2,18 @@ export type State = {
2
2
  session: {
3
3
  user: any;
4
4
  token?: string;
5
- apiURL?: string;
6
- AWS_S3_READ_URL?: string;
5
+ API_BASE_URL?: string;
6
+ ASSETS_BASE_URL?: string;
7
7
  };
8
8
  };
9
9
  type Actions = {
10
10
  setSession: (payload: {
11
11
  user: any;
12
12
  token: string;
13
- apiURL: string;
14
- AWS_S3_READ_URL: string;
13
+ API_BASE_URL: string;
14
+ ASSETS_BASE_URL: string;
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%;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}
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}.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}.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}.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}._select_search_9kc6n_1 input{font-size:14px!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}._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}._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}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zimyo/engage",
3
3
  "private": false,
4
- "version": "0.0.28",
4
+ "version": "0.0.29",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -45,7 +45,6 @@
45
45
  "@zimyo/design-system": "^4.0.0",
46
46
  "axios": "^1.6.8",
47
47
  "debounce-promise": "^3.1.2",
48
- "i": "^0.3.7",
49
48
  "lodash": "^4.17.21",
50
49
  "moment": "^2.30.1",
51
50
  "npm": "^10.8.1",
@@ -60,10 +59,6 @@
60
59
  "react-select": "^5.8.0",
61
60
  "rollup-plugin-typescript-paths": "^1.5.0",
62
61
  "tinycolor2": "^1.6.0",
63
- "vite-plugin-alias": "^0.1.1",
64
- "vite-plugin-css-injected-by-js": "^3.5.1",
65
- "vite-plugin-dedupe": "^0.1.1",
66
- "vite-plugin-dts": "^3.9.1",
67
62
  "zod": "^3.23.8",
68
63
  "zustand": "^4.5.2"
69
64
  },
@@ -79,6 +74,7 @@
79
74
  "eslint-plugin-react-hooks": "^4.6.0",
80
75
  "eslint-plugin-react-refresh": "^0.4.6",
81
76
  "typescript": "^5.2.2",
82
- "vite": "^5.2.0"
77
+ "vite": "^5.2.0",
78
+ "vite-plugin-dts": "^3.9.1"
83
79
  }
84
80
  }
@@ -1,3 +0,0 @@
1
- import { default as tinycolor } from 'tinycolor2';
2
-
3
- export declare const useDarkColor: (color?: tinycolor.ColorInput, factor?: number) => string;