@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.
- package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +2 -2
- package/dist/components/feedback/one-to-one/constants.d.ts +3 -0
- package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +1 -1
- package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +1 -1
- package/dist/components/ui/multi-select/async/multi-select.d.ts +10 -8
- package/dist/components/ui/toggle-button/toggle-button.d.ts +0 -1
- package/dist/main.cjs +287 -261
- package/dist/main.js +36380 -31674
- package/dist/style.css +1 -1
- package/package.json +2 -1
|
@@ -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;
|
|
@@ -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
|
-
|
|
8
|
-
inputPlaceHolder?: string;
|
|
8
|
+
optionValueKey: string;
|
|
9
9
|
optionTitleFn: (item: any) => string;
|
|
10
|
-
onChange
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
|
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 {};
|