@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.
@@ -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;
@@ -9,6 +9,3 @@ export declare const MEETING_STATUS_TYPES: {
9
9
  COMPLETED: number;
10
10
  CANCELED: number;
11
11
  };
12
- export declare const APPRECIATIONS_CONCERN: {
13
- [key: string]: number;
14
- };
@@ -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 as MuiButtonProps } from '@mui/material';
3
- interface ButtonProps extends MuiButtonProps {
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
- export declare const Button: ({ label, variant, ...rest }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
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
- optionValueKey: string;
9
- optionTitleFn: (item: any) => string;
10
- onChange: any;
7
+ optionValue: string;
11
8
  inputPlaceHolder?: string;
12
- controlStyles?: CSSObjectWithLabel;
13
- multiLabelStyles?: CSSObjectWithLabel;
14
- multiRemoveStyles?: CSSObjectWithLabel;
15
- selectProps?: Props;
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 react-select.
19
- * @author Saurabh Jadhao & Pawan Gupta
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 {};
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ import "./toggle-button.css";
2
3
  type ToggleButtonType = {
3
4
  items: {
4
5
  label: string;