@zimyo/engage 0.1.19-pms → 0.1.20-hrms
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/README.md +30 -30
- package/dist/components/feedback/appreciation/badge-master/modal/form.schema.d.ts +2 -2
- package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +0 -1
- package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +0 -1
- package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +5 -2
- package/dist/components/feedback/dashboard/meeting-modal.d.ts +0 -1
- package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +0 -1
- package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +5 -5
- package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +0 -1
- package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +1 -1
- package/dist/components/pip/pip-action/pip-action.d.ts +0 -1
- package/dist/components/pip/pip-context.d.ts +0 -1
- package/dist/components/pip/pip-initiation/pip-initiation.d.ts +1 -1
- package/dist/components/pip/pip-list.d.ts +3 -0
- package/dist/components/ui/button/button.d.ts +0 -1
- package/dist/components/ui/header-title/header-title.d.ts +0 -1
- package/dist/components/ui/image-viewer/image-viewer.d.ts +0 -1
- package/dist/components/ui/pdf-viewer/pdf.viewer.d.ts +0 -1
- package/dist/components/ui/search/search.d.ts +0 -1
- package/dist/components/ui/toggle-button/toggle-button.d.ts +0 -1
- package/dist/main.cjs +154081 -2960
- package/dist/main.js +123650 -101786
- package/dist/shared/constants/endpoints.d.ts +4 -0
- package/dist/shared/constants/time.d.ts +13 -3
- package/dist/shared/hooks/useFetch.d.ts +1 -1
- package/dist/shared/utils/utils.d.ts +1 -0
- package/dist/style.css +1642 -1
- package/package.json +91 -89
- package/dist/.vite/manifest.json +0 -12
package/README.md
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
# React + TypeScript + Vite
|
|
2
|
-
|
|
3
|
-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
-
|
|
5
|
-
Currently, two official plugins are available:
|
|
6
|
-
|
|
7
|
-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
-
|
|
10
|
-
## Expanding the ESLint configuration
|
|
11
|
-
|
|
12
|
-
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
13
|
-
|
|
14
|
-
- Configure the top-level `parserOptions` property like this:
|
|
15
|
-
|
|
16
|
-
```js
|
|
17
|
-
export default {
|
|
18
|
-
// other rules...
|
|
19
|
-
parserOptions: {
|
|
20
|
-
ecmaVersion: 'latest',
|
|
21
|
-
sourceType: 'module',
|
|
22
|
-
project: ['./tsconfig.json', './tsconfig.node.json'],
|
|
23
|
-
tsconfigRootDir: __dirname,
|
|
24
|
-
},
|
|
25
|
-
}
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
29
|
-
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
30
|
-
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
|
1
|
+
# React + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
+
|
|
5
|
+
Currently, two official plugins are available:
|
|
6
|
+
|
|
7
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
+
|
|
10
|
+
## Expanding the ESLint configuration
|
|
11
|
+
|
|
12
|
+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
13
|
+
|
|
14
|
+
- Configure the top-level `parserOptions` property like this:
|
|
15
|
+
|
|
16
|
+
```js
|
|
17
|
+
export default {
|
|
18
|
+
// other rules...
|
|
19
|
+
parserOptions: {
|
|
20
|
+
ecmaVersion: 'latest',
|
|
21
|
+
sourceType: 'module',
|
|
22
|
+
project: ['./tsconfig.json', './tsconfig.node.json'],
|
|
23
|
+
tsconfigRootDir: __dirname,
|
|
24
|
+
},
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
29
|
+
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
30
|
+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
|
@@ -5,13 +5,13 @@ export declare const BadgeFormSchema: z.ZodObject<{
|
|
|
5
5
|
BADGE_LOGO: z.ZodString;
|
|
6
6
|
APPERICATION_REMARKS: z.ZodString;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
DESCRIPTION: string;
|
|
9
8
|
TITLE: string;
|
|
9
|
+
DESCRIPTION: string;
|
|
10
10
|
APPERICATION_REMARKS: string;
|
|
11
11
|
BADGE_LOGO: string;
|
|
12
12
|
}, {
|
|
13
|
-
DESCRIPTION: string;
|
|
14
13
|
TITLE: string;
|
|
14
|
+
DESCRIPTION: string;
|
|
15
15
|
APPERICATION_REMARKS: string;
|
|
16
16
|
BADGE_LOGO: string;
|
|
17
17
|
}>;
|
|
@@ -15,16 +15,18 @@ export declare const ContinuousFeedbackFormSchema: z.ZodObject<{
|
|
|
15
15
|
NAME: string;
|
|
16
16
|
RATING: number;
|
|
17
17
|
}>, "many">>;
|
|
18
|
+
IS_CONFIDENTIAL: z.ZodDefault<z.ZodBoolean>;
|
|
18
19
|
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
FILES: any[];
|
|
20
|
-
IMAGES: any[];
|
|
21
20
|
FEEDBACK_FOR: number;
|
|
22
21
|
FEEDBACK_TITLE: string;
|
|
23
22
|
FEEDBACK_CONTENT: string;
|
|
23
|
+
FILES: any[];
|
|
24
|
+
IMAGES: any[];
|
|
24
25
|
SKILL_RATING: {
|
|
25
26
|
NAME: string;
|
|
26
27
|
RATING: number;
|
|
27
28
|
}[];
|
|
29
|
+
IS_CONFIDENTIAL: boolean;
|
|
28
30
|
}, {
|
|
29
31
|
FEEDBACK_FOR: number;
|
|
30
32
|
FEEDBACK_TITLE: string;
|
|
@@ -35,5 +37,6 @@ export declare const ContinuousFeedbackFormSchema: z.ZodObject<{
|
|
|
35
37
|
NAME: string;
|
|
36
38
|
RATING: number;
|
|
37
39
|
}[] | undefined;
|
|
40
|
+
IS_CONFIDENTIAL?: boolean | undefined;
|
|
38
41
|
}>;
|
|
39
42
|
export type ContinuousFeedbackFormType = z.infer<typeof ContinuousFeedbackFormSchema>;
|
|
@@ -10,22 +10,22 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
|
|
|
10
10
|
MEDIUM_ALIAS: z.ZodOptional<z.ZodString>;
|
|
11
11
|
EVENT_UID: z.ZodOptional<z.ZodString>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
SCHEDULE_WITH: number;
|
|
14
|
+
MEETING_TITLE: string;
|
|
13
15
|
DATE: string;
|
|
14
16
|
START_TIME: string;
|
|
15
17
|
DURATION: string;
|
|
16
|
-
MEETING_TITLE: string;
|
|
17
|
-
SCHEDULE_WITH: number;
|
|
18
18
|
MEDIUM: number;
|
|
19
19
|
DESCRIPTION?: string | undefined;
|
|
20
20
|
MEDIUM_ALIAS?: string | undefined;
|
|
21
21
|
EVENT_UID?: string | undefined;
|
|
22
22
|
}, {
|
|
23
|
-
DURATION: string;
|
|
24
|
-
MEETING_TITLE: string;
|
|
25
23
|
SCHEDULE_WITH: number;
|
|
24
|
+
MEETING_TITLE: string;
|
|
25
|
+
DURATION: string;
|
|
26
|
+
DESCRIPTION?: string | undefined;
|
|
26
27
|
DATE?: string | undefined;
|
|
27
28
|
START_TIME?: string | undefined;
|
|
28
|
-
DESCRIPTION?: string | undefined;
|
|
29
29
|
MEDIUM?: number | undefined;
|
|
30
30
|
MEDIUM_ALIAS?: string | undefined;
|
|
31
31
|
EVENT_UID?: string | undefined;
|
|
@@ -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;
|
|
@@ -2,4 +2,7 @@ export type Props = {
|
|
|
2
2
|
employee_id?: number;
|
|
3
3
|
CONCERN?: string;
|
|
4
4
|
};
|
|
5
|
+
export declare const MAX_FILE_SIZE_IN_BYTES: number;
|
|
6
|
+
export declare const UPLOADED_EXCEL_SIZE: number;
|
|
7
|
+
export declare const CONTENT_TYPE = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
|
|
5
8
|
export declare const PipList: (props: Props) => import("react/jsx-runtime").JSX.Element;
|