@zimyo/engage 0.0.30 → 0.0.32
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/appreciation/badge-master/modal/badge-modal.d.ts +0 -0
- package/dist/components/feedback/appreciation/badge-master/modal/form.schema.d.ts +18 -0
- package/dist/components/feedback/appreciation/list/appreciation-list.d.ts +5 -2
- package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +11 -2
- package/dist/components/feedback/configration/feedback-configration.d.ts +1 -0
- package/dist/components/feedback/continuous-feedback/list/continuous-feedback-list.d.ts +5 -2
- package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +11 -2
- package/dist/components/feedback/one-to-one/list/one-to-one-list.d.ts +5 -2
- package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +6 -2
- package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +11 -2
- package/dist/components/feedback/one-to-one/view-details-modal/view-details-modal.d.ts +8 -2
- package/dist/components/ui/multi-select/multi-select.d.ts +18 -0
- package/dist/index.d.ts +2 -0
- package/dist/main.cjs +256 -256
- package/dist/main.d.ts +9 -8
- package/dist/main.js +30549 -29419
- package/dist/shared/constants/endpoints.d.ts +4 -0
- package/dist/shared/hooks/useConstants.d.ts +8 -8
- package/dist/shared/hooks/useLoading.d.ts +1 -0
- package/dist/shared/types/backend.types.d.ts +4 -0
- package/dist/shared/utils/utils.d.ts +1 -0
- package/dist/shared/zustand/alert.store.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +4 -6
- package/dist/components/ui/multi-select/async/multi-select.d.ts +0 -20
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const BadgeFormSchema: z.ZodObject<{
|
|
3
|
+
TITLE: z.ZodString;
|
|
4
|
+
DESCRIPTION: z.ZodString;
|
|
5
|
+
BADGE_LOGO: z.ZodString;
|
|
6
|
+
APPERICATION_REMARKS: z.ZodString;
|
|
7
|
+
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
DESCRIPTION: string;
|
|
9
|
+
TITLE: string;
|
|
10
|
+
APPERICATION_REMARKS: string;
|
|
11
|
+
BADGE_LOGO: string;
|
|
12
|
+
}, {
|
|
13
|
+
DESCRIPTION: string;
|
|
14
|
+
TITLE: string;
|
|
15
|
+
APPERICATION_REMARKS: string;
|
|
16
|
+
BADGE_LOGO: string;
|
|
17
|
+
}>;
|
|
18
|
+
export type BadgeFormSchemaType = z.infer<typeof BadgeFormSchema>;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export type Props = {
|
|
2
|
+
employee_id?: number;
|
|
3
|
+
CONCERN?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const AppreciationList: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type Props = {
|
|
3
|
+
open: boolean;
|
|
4
|
+
setOpen: (value: React.SetStateAction<boolean>) => void;
|
|
5
|
+
employee?: any;
|
|
6
|
+
empIdKey?: string;
|
|
7
|
+
empNameKey?: string;
|
|
8
|
+
empCodeKey?: string;
|
|
9
|
+
empProfileImageKey?: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const AppreciationModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const FeedbackConfigration: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export type Props = {
|
|
2
|
+
employee_id?: number;
|
|
3
|
+
CONCERN?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const ContinuousFeedbackList: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type Props = {
|
|
3
|
+
open: boolean;
|
|
4
|
+
setOpen: (value: React.SetStateAction<boolean>) => void;
|
|
5
|
+
employee?: any;
|
|
6
|
+
empIdKey?: string;
|
|
7
|
+
empNameKey?: string;
|
|
8
|
+
empCodeKey?: string;
|
|
9
|
+
empProfileImageKey?: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const ContinuousFeedbackModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export type Props = {
|
|
2
|
+
employee_id?: number;
|
|
3
|
+
CONCERN?: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const OneToOneList: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type Props = {
|
|
3
|
+
meetingId: number | undefined;
|
|
4
|
+
setMeetingId: (value: React.SetStateAction<number | undefined>) => void;
|
|
5
|
+
};
|
|
6
|
+
export declare const ReScheduleOneToOneModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type props = {
|
|
3
|
+
open: boolean;
|
|
4
|
+
setOpen: (value: React.SetStateAction<boolean>) => void;
|
|
5
|
+
employee?: any;
|
|
6
|
+
empIdKey?: string;
|
|
7
|
+
empNameKey?: string;
|
|
8
|
+
empCodeKey?: string;
|
|
9
|
+
empProfileImageKey?: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const OneToOneModal: (props: props) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export type Props = {
|
|
3
|
+
meetingId: number | undefined;
|
|
4
|
+
setMeetingId: (value: React.SetStateAction<number | undefined>) => void;
|
|
5
|
+
reScheduleModalMeetingId: number | undefined;
|
|
6
|
+
setReScheduleModalMeetingId: (value: React.SetStateAction<number | undefined>) => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const ViewOneToOneDetailsModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
3
9
|
export default ViewOneToOneDetailsModal;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CustomSelectOption } from '@/shared/types/backend.types';
|
|
2
|
+
import { AsyncProps } from "react-select/async";
|
|
3
|
+
type Props = {
|
|
4
|
+
searchKey?: string;
|
|
5
|
+
reqParams?: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
};
|
|
8
|
+
endpoint?: string;
|
|
9
|
+
optionValue?: string;
|
|
10
|
+
inputPlaceHolder?: string;
|
|
11
|
+
optionTitleFn?: (item: any) => string;
|
|
12
|
+
} & AsyncProps<CustomSelectOption, boolean, any>;
|
|
13
|
+
/**
|
|
14
|
+
* @description Async multi select component on top of react-select.
|
|
15
|
+
* @author Saurabh Jadhao & Pawan Gupta
|
|
16
|
+
*/
|
|
17
|
+
export declare const MultiSelect: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export {};
|
package/dist/index.d.ts
ADDED