@zimyo/engage 0.0.43-pms → 0.0.44-pms

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.
@@ -1,4 +1,4 @@
1
- export declare const LIBRARY_MODALS: {
1
+ export declare const MODAL_ACTION: {
2
2
  CREATE: string;
3
3
  EDIT: string;
4
4
  };
@@ -0,0 +1,15 @@
1
+ import { z } from "zod";
2
+ export declare const FeedbackSkillFormSchema: z.ZodObject<{
3
+ ID: z.ZodOptional<z.ZodNumber>;
4
+ SKILL_NAME: z.ZodString;
5
+ SKILL_DESCRIPTION: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ SKILL_NAME: string;
8
+ SKILL_DESCRIPTION: string;
9
+ ID?: number | undefined;
10
+ }, {
11
+ SKILL_NAME: string;
12
+ SKILL_DESCRIPTION: string;
13
+ ID?: number | undefined;
14
+ }>;
15
+ export type FeedbackSkillFormSchemaType = z.infer<typeof FeedbackSkillFormSchema>;
@@ -0,0 +1 @@
1
+ export declare const SkillsMaster: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ type Props = {
2
+ className?: string;
3
+ filters: any;
4
+ };
5
+ export declare const FeedbackDashBoard: ({ className, filters }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ meetingType?: number;
4
+ feedbackFilters: any;
5
+ setMeetingType: (value: React.SetStateAction<number | undefined>) => void;
6
+ };
7
+ export declare const MeetingListModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Search: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<unknown>>;