@zimyo/engage 0.0.10 → 0.0.12

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[];
21
19
  FEEDBACK_FOR: number;
22
20
  FEEDBACK_TITLE: string;
23
21
  FEEDBACK_CONTENT: string;
22
+ FILES: any[];
23
+ IMAGES: any[];
24
24
  SKILL_RATING: {
25
25
  NAME: string;
26
26
  RATING: number;
@@ -9,3 +9,6 @@ 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
+ };
@@ -22,9 +22,9 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
22
22
  MEETING_TITLE: string;
23
23
  SCHEDULE_WITH: number;
24
24
  MEDIUM: number;
25
+ DESCRIPTION?: string | undefined;
25
26
  DATE?: string | undefined;
26
27
  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;
9
8
  FILES: any[];
10
9
  IMAGES: any[];
10
+ TEXT: string;
11
11
  VISIBLE_TO: number;
12
12
  }, {
13
13
  TEXT: string;
@@ -1,20 +1,22 @@
1
+ import type { CSSObjectWithLabel, Props } from "react-select";
1
2
  type props = {
2
3
  searchKey: string;
3
4
  reqParams: {
4
5
  [key: string]: any;
5
6
  };
6
7
  endpoint: string;
7
- optionValue: string;
8
- inputPlaceHolder?: string;
8
+ optionValueKey: string;
9
9
  optionTitleFn: (item: any) => string;
10
- onChange?: (value: {
11
- title: string;
12
- value: any;
13
- }) => void;
10
+ onChange: any;
11
+ inputPlaceHolder?: string;
12
+ controlStyles?: CSSObjectWithLabel;
13
+ multiLabelStyles?: CSSObjectWithLabel;
14
+ multiRemoveStyles?: CSSObjectWithLabel;
15
+ selectProps?: Props;
14
16
  };
15
17
  /**
16
- * @description Async multi select component on top of material ui .
17
- * @author Pawan Gupta
18
+ * @description Async multi select component on top of react-select ui .
19
+ * @author Saurabh Jadhao & Pawan Gupta
18
20
  */
19
21
  export declare const MultiSelectAsync: (props: props) => import("react/jsx-runtime").JSX.Element;
20
22
  export {};
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- import "./toggle-button.css";
3
2
  type ToggleButtonType = {
4
3
  items: {
5
4
  label: string;