@zimyo/engage 0.1.8-pms → 0.1.9-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.
@@ -7,3 +7,15 @@ export declare const PIP_TABS: {
7
7
  TEAM: string;
8
8
  ORGANIZATION: string;
9
9
  };
10
+ export declare const NOTIFICATION_SLUGS: {
11
+ employee_name: string;
12
+ reviewer_name: string;
13
+ approver_name: string;
14
+ hr_name: string;
15
+ end_date: string;
16
+ start_date: string;
17
+ };
18
+ export declare const EMAIL_TEMPLATE_TYPES: {
19
+ label: string;
20
+ value: string;
21
+ }[];
@@ -0,0 +1,7 @@
1
+ type props = {
2
+ mailTemplateData: any;
3
+ setMailTemplateData: (value: any) => void;
4
+ handleModalClose?: () => void;
5
+ };
6
+ declare const PipNotificationTemplate: (props: props) => import("react/jsx-runtime").JSX.Element;
7
+ export default PipNotificationTemplate;
@@ -0,0 +1 @@
1
+ export declare const PipNotification: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ type props = {
2
+ className?: string;
3
+ value: string;
4
+ height?: number | string;
5
+ width?: string | number;
6
+ placeholder?: string;
7
+ font_size?: string | number;
8
+ setEditorData: (value: string) => void;
9
+ showTable?: boolean;
10
+ };
11
+ declare const Editor: (props: props) => import("react/jsx-runtime").JSX.Element;
12
+ export default Editor;