@zimyo/engage 0.0.27 → 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.
- package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +2 -2
- package/dist/components/feedback/one-to-one/constants.d.ts +0 -3
- package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +4 -4
- package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +1 -1
- package/dist/components/ui/button/button.d.ts +4 -4
- package/dist/components/ui/multi-select/async/multi-select.d.ts +8 -10
- package/dist/components/ui/toggle-button/toggle-button.d.ts +1 -0
- package/dist/main.cjs +263 -263
- package/dist/main.d.ts +1 -0
- package/dist/main.js +31987 -33169
- package/dist/shared/constants/endpoints.d.ts +0 -12
- package/dist/shared/constants/time.d.ts +2 -2
- package/dist/shared/providers/auth-provider.d.ts +5 -5
- package/dist/shared/providers/engage-provider.d.ts +2 -2
- package/dist/shared/types/form-fields.types.d.ts +0 -0
- package/dist/shared/utils/utils.d.ts +1 -0
- package/dist/shared/zustand/session.store.d.ts +4 -4
- package/dist/style.css +1 -1
- package/package.json +6 -8
- package/dist/shared/hooks/useDarkColor.d.ts +0 -2
|
@@ -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,8 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const AuthProvider: ({ children, token,
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
declare const AuthProvider: ({ children, token, API_BASE_URL, ASSETS_BASE_URL }: {
|
|
3
3
|
token: string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
children:
|
|
4
|
+
API_BASE_URL: string;
|
|
5
|
+
ASSETS_BASE_URL: string;
|
|
6
|
+
children: ReactNode;
|
|
7
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default AuthProvider;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { QueryClient } from 'react-query';
|
|
3
|
-
interface
|
|
3
|
+
interface AuthProviderProps {
|
|
4
4
|
queryClient: QueryClient;
|
|
5
5
|
token: string;
|
|
6
6
|
API_BASE_URL: string;
|
|
7
7
|
ASSETS_BASE_URL: string;
|
|
8
8
|
children: ReactNode;
|
|
9
9
|
}
|
|
10
|
-
declare const EngageProvider: ({
|
|
10
|
+
declare const EngageProvider: ({ queryClient, token, API_BASE_URL, ASSETS_BASE_URL, children }: AuthProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default EngageProvider;
|
|
File without changes
|
|
@@ -2,16 +2,16 @@ export type State = {
|
|
|
2
2
|
session: {
|
|
3
3
|
user: any;
|
|
4
4
|
token?: string;
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
14
|
-
|
|
13
|
+
API_BASE_URL: string;
|
|
14
|
+
ASSETS_BASE_URL: string;
|
|
15
15
|
}) => void;
|
|
16
16
|
clearSession: () => void;
|
|
17
17
|
};
|
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
|
+
.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.
|
|
4
|
+
"version": "0.0.29",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -38,13 +38,13 @@
|
|
|
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",
|
|
44
45
|
"@zimyo/design-system": "^4.0.0",
|
|
45
46
|
"axios": "^1.6.8",
|
|
46
47
|
"debounce-promise": "^3.1.2",
|
|
47
|
-
"i": "^0.3.7",
|
|
48
48
|
"lodash": "^4.17.21",
|
|
49
49
|
"moment": "^2.30.1",
|
|
50
50
|
"npm": "^10.8.1",
|
|
@@ -59,24 +59,22 @@
|
|
|
59
59
|
"react-select": "^5.8.0",
|
|
60
60
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
61
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",
|
|
66
62
|
"zod": "^3.23.8",
|
|
67
63
|
"zustand": "^4.5.2"
|
|
68
64
|
},
|
|
69
65
|
"devDependencies": {
|
|
66
|
+
"@babel/preset-env": "^7.24.7",
|
|
70
67
|
"@types/react": "^18.2.66",
|
|
71
68
|
"@types/react-dom": "^18.2.22",
|
|
72
69
|
"@types/tinycolor2": "^1.4.6",
|
|
73
70
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
74
71
|
"@typescript-eslint/parser": "^7.2.0",
|
|
75
|
-
"@vitejs/plugin-react": "^4.
|
|
72
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
76
73
|
"eslint": "^8.57.0",
|
|
77
74
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
78
75
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
79
76
|
"typescript": "^5.2.2",
|
|
80
|
-
"vite": "^5.2.0"
|
|
77
|
+
"vite": "^5.2.0",
|
|
78
|
+
"vite-plugin-dts": "^3.9.1"
|
|
81
79
|
}
|
|
82
80
|
}
|