@zimyo/engage 0.0.15 → 0.0.17
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/one-to-one/schedule-modal/form.schema.d.ts +3 -3
- package/dist/components/ui/multi-select/async/multi-select.d.ts +1 -1
- package/dist/main.cjs +264 -290
- package/dist/main.d.ts +1 -1
- package/dist/main.js +31969 -35615
- package/dist/shared/providers/engage-provider.d.ts +2 -2
- package/package.json +2 -1
|
@@ -10,17 +10,17 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
|
|
|
10
10
|
MEDIUM_ALIAS: z.ZodOptional<z.ZodString>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
DATE: string;
|
|
13
|
-
START_TIME: string;
|
|
14
|
-
DURATION: string;
|
|
15
13
|
MEETING_TITLE: string;
|
|
16
14
|
SCHEDULE_WITH: number;
|
|
15
|
+
START_TIME: string;
|
|
16
|
+
DURATION: string;
|
|
17
17
|
MEDIUM: number;
|
|
18
18
|
DESCRIPTION?: string | undefined;
|
|
19
19
|
MEDIUM_ALIAS?: string | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
DURATION: string;
|
|
22
21
|
MEETING_TITLE: string;
|
|
23
22
|
SCHEDULE_WITH: number;
|
|
23
|
+
DURATION: string;
|
|
24
24
|
MEDIUM: number;
|
|
25
25
|
DESCRIPTION?: string | undefined;
|
|
26
26
|
DATE?: string | undefined;
|
|
@@ -15,7 +15,7 @@ type props = {
|
|
|
15
15
|
selectProps?: Props;
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
* @description Async multi select component on top of react-select
|
|
18
|
+
* @description Async multi select component on top of react-select.
|
|
19
19
|
* @author Saurabh Jadhao & Pawan Gupta
|
|
20
20
|
*/
|
|
21
21
|
export declare const MultiSelectAsync: (props: props) => import("react/jsx-runtime").JSX.Element;
|