@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
|
@@ -16,11 +16,11 @@ export declare const ContinuousFeedbackFormSchema: z.ZodObject<{
|
|
|
16
16
|
RATING: number;
|
|
17
17
|
}>, "many">>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
FILES: any[];
|
|
20
|
+
IMAGES: any[];
|
|
19
21
|
FEEDBACK_FOR: number;
|
|
20
22
|
FEEDBACK_TITLE: string;
|
|
21
23
|
FEEDBACK_CONTENT: string;
|
|
22
|
-
FILES: any[];
|
|
23
|
-
IMAGES: any[];
|
|
24
24
|
SKILL_RATING: {
|
|
25
25
|
NAME: string;
|
|
26
26
|
RATING: number;
|
|
@@ -10,21 +10,21 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
|
|
|
10
10
|
MEDIUM_ALIAS: z.ZodOptional<z.ZodString>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
DATE: string;
|
|
13
|
-
MEETING_TITLE: string;
|
|
14
|
-
SCHEDULE_WITH: number;
|
|
15
13
|
START_TIME: string;
|
|
16
14
|
DURATION: string;
|
|
15
|
+
MEETING_TITLE: string;
|
|
16
|
+
SCHEDULE_WITH: number;
|
|
17
17
|
MEDIUM: number;
|
|
18
18
|
DESCRIPTION?: string | undefined;
|
|
19
19
|
MEDIUM_ALIAS?: string | undefined;
|
|
20
20
|
}, {
|
|
21
|
+
DURATION: string;
|
|
21
22
|
MEETING_TITLE: string;
|
|
22
23
|
SCHEDULE_WITH: number;
|
|
23
|
-
DURATION: string;
|
|
24
24
|
MEDIUM: number;
|
|
25
|
-
DESCRIPTION?: string | undefined;
|
|
26
25
|
DATE?: string | undefined;
|
|
27
26
|
START_TIME?: string | undefined;
|
|
27
|
+
DESCRIPTION?: string | undefined;
|
|
28
28
|
MEDIUM_ALIAS?: string | undefined;
|
|
29
29
|
}>;
|
|
30
30
|
export type ScheduleOneToOneFormType = z.infer<typeof ScheduleOneToOneFormSchema>;
|
|
@@ -5,9 +5,9 @@ export declare const OneToOneDetailsFormSchema: z.ZodObject<{
|
|
|
5
5
|
IMAGES: z.ZodDefault<z.ZodArray<z.ZodAny, "many">>;
|
|
6
6
|
VISIBLE_TO: z.ZodDefault<z.ZodNumber>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
TEXT: string;
|
|
8
9
|
FILES: any[];
|
|
9
10
|
IMAGES: any[];
|
|
10
|
-
TEXT: string;
|
|
11
11
|
VISIBLE_TO: number;
|
|
12
12
|
}, {
|
|
13
13
|
TEXT: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { ButtonProps
|
|
3
|
-
interface
|
|
2
|
+
import { ButtonProps } from '@mui/material';
|
|
3
|
+
interface Props extends ButtonProps {
|
|
4
4
|
label: string;
|
|
5
5
|
className?: string;
|
|
6
6
|
loader?: boolean;
|
|
@@ -10,5 +10,5 @@ interface ButtonProps extends MuiButtonProps {
|
|
|
10
10
|
ref?: React.Ref<HTMLButtonElement>;
|
|
11
11
|
color?: string | any;
|
|
12
12
|
}
|
|
13
|
-
|
|
14
|
-
export
|
|
13
|
+
declare const Button: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default Button;
|
|
@@ -1,22 +1,20 @@
|
|
|
1
|
-
import type { CSSObjectWithLabel, Props } from "react-select";
|
|
2
1
|
type props = {
|
|
3
2
|
searchKey: string;
|
|
4
3
|
reqParams: {
|
|
5
4
|
[key: string]: any;
|
|
6
5
|
};
|
|
7
6
|
endpoint: string;
|
|
8
|
-
|
|
9
|
-
optionTitleFn: (item: any) => string;
|
|
10
|
-
onChange: any;
|
|
7
|
+
optionValue: string;
|
|
11
8
|
inputPlaceHolder?: string;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
optionTitleFn: (item: any) => string;
|
|
10
|
+
onChange?: (value: {
|
|
11
|
+
title: string;
|
|
12
|
+
value: any;
|
|
13
|
+
}) => void;
|
|
16
14
|
};
|
|
17
15
|
/**
|
|
18
|
-
* @description Async multi select component on top of
|
|
19
|
-
* @author
|
|
16
|
+
* @description Async multi select component on top of material ui .
|
|
17
|
+
* @author Pawan Gupta
|
|
20
18
|
*/
|
|
21
19
|
export declare const MultiSelectAsync: (props: props) => import("react/jsx-runtime").JSX.Element;
|
|
22
20
|
export {};
|