@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/package.json
CHANGED
|
@@ -1,89 +1,91 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@zimyo/engage",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"type": "module",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/main.js",
|
|
12
|
-
"require": "./dist/main.cjs",
|
|
13
|
-
"types": "./dist/index.d.ts"
|
|
14
|
-
},
|
|
15
|
-
"./style.css": {
|
|
16
|
-
"import": "./dist/style.css",
|
|
17
|
-
"require": "./dist/style.css"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"main": "./dist/main.cjs",
|
|
21
|
-
"style": "./dist/style.css",
|
|
22
|
-
"module": "./dist/main.js",
|
|
23
|
-
"typings": "./dist/main.d.ts",
|
|
24
|
-
"files": [
|
|
25
|
-
"dist"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"dev": "vite",
|
|
29
|
-
"build": "
|
|
30
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
31
|
-
"preview": "vite preview"
|
|
32
|
-
},
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@emotion/react": "^11.11.4",
|
|
35
|
-
"@emotion/styled": "^11.11.5",
|
|
36
|
-
"@hookform/resolvers": "^3.4.0",
|
|
37
|
-
"@mui/icons-material": "^5.15.17",
|
|
38
|
-
"@mui/material": "^5.15.17",
|
|
39
|
-
"@mui/styles": "^6.0.1",
|
|
40
|
-
"@mui/x-date-pickers": "^7.14.0",
|
|
41
|
-
"@react-pdf-viewer/core": "^3.12.0",
|
|
42
|
-
"@react-pdf-viewer/default-layout": "^3.12.0",
|
|
43
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
44
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
45
|
-
"@types/lodash": "^4.17.4",
|
|
46
|
-
"@zimyo/components": "^4.2.4",
|
|
47
|
-
"@zimyo/design-system": "^4.0.0",
|
|
48
|
-
"axios": "^1.6.8",
|
|
49
|
-
"dayjs": "^1.11.13",
|
|
50
|
-
"debounce-promise": "^3.1.2",
|
|
51
|
-
"formik": "^2.4.6",
|
|
52
|
-
"jodit-react": "^4.1.2",
|
|
53
|
-
"lodash": "^4.17.21",
|
|
54
|
-
"moment": "^2.30.1",
|
|
55
|
-
"npm": "^10.8.1",
|
|
56
|
-
"pdfjs-dist": "^3.4.120",
|
|
57
|
-
"react": "^
|
|
58
|
-
"react-dom": "^
|
|
59
|
-
"react-
|
|
60
|
-
"react-
|
|
61
|
-
"react-
|
|
62
|
-
"react-
|
|
63
|
-
"react-
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"@
|
|
73
|
-
"@types/react
|
|
74
|
-
"@types/
|
|
75
|
-
"@
|
|
76
|
-
"@
|
|
77
|
-
"@
|
|
78
|
-
"eslint": "^
|
|
79
|
-
"
|
|
80
|
-
"eslint
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"vite
|
|
86
|
-
"vite-plugin-
|
|
87
|
-
"vite-plugin-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@zimyo/engage",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.20-hrms",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/main.js",
|
|
12
|
+
"require": "./dist/main.cjs",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": {
|
|
16
|
+
"import": "./dist/style.css",
|
|
17
|
+
"require": "./dist/style.css"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/main.cjs",
|
|
21
|
+
"style": "./dist/style.css",
|
|
22
|
+
"module": "./dist/main.js",
|
|
23
|
+
"typings": "./dist/main.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"dev": "vite",
|
|
29
|
+
"build": "node --max-old-space-size=5096 node_modules/vite/bin/vite.js build",
|
|
30
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
31
|
+
"preview": "vite preview"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@emotion/react": "^11.11.4",
|
|
35
|
+
"@emotion/styled": "^11.11.5",
|
|
36
|
+
"@hookform/resolvers": "^3.4.0",
|
|
37
|
+
"@mui/icons-material": "^5.15.17",
|
|
38
|
+
"@mui/material": "^5.15.17",
|
|
39
|
+
"@mui/styles": "^6.0.1",
|
|
40
|
+
"@mui/x-date-pickers": "^7.14.0",
|
|
41
|
+
"@react-pdf-viewer/core": "^3.12.0",
|
|
42
|
+
"@react-pdf-viewer/default-layout": "^3.12.0",
|
|
43
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
44
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
45
|
+
"@types/lodash": "^4.17.4",
|
|
46
|
+
"@zimyo/components": "^4.2.4",
|
|
47
|
+
"@zimyo/design-system": "^4.0.0",
|
|
48
|
+
"axios": "^1.6.8",
|
|
49
|
+
"dayjs": "^1.11.13",
|
|
50
|
+
"debounce-promise": "^3.1.2",
|
|
51
|
+
"formik": "^2.4.6",
|
|
52
|
+
"jodit-react": "^4.1.2",
|
|
53
|
+
"lodash": "^4.17.21",
|
|
54
|
+
"moment": "^2.30.1",
|
|
55
|
+
"npm": "^10.8.1",
|
|
56
|
+
"pdfjs-dist": "^3.4.120",
|
|
57
|
+
"react": "^17.0.1",
|
|
58
|
+
"react-dom": "^17.0.1",
|
|
59
|
+
"react-dropzone": "^11.3.4",
|
|
60
|
+
"react-hook-form": "^7.51.4",
|
|
61
|
+
"react-html-parser": "^2.0.2",
|
|
62
|
+
"react-icons": "^5.2.1",
|
|
63
|
+
"react-query": "^3.39.2",
|
|
64
|
+
"react-select": "^5.8.0",
|
|
65
|
+
"tinycolor2": "^1.6.0",
|
|
66
|
+
"tsc": "^2.0.4",
|
|
67
|
+
"yup": "^1.4.0",
|
|
68
|
+
"zod": "^3.23.8",
|
|
69
|
+
"zustand": "^4.5.2"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@babel/preset-env": "^7.24.7",
|
|
73
|
+
"@types/react": "^18.2.66",
|
|
74
|
+
"@types/react-dom": "^18.2.22",
|
|
75
|
+
"@types/react-html-parser": "^2.0.6",
|
|
76
|
+
"@types/tinycolor2": "^1.4.6",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
78
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
79
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
80
|
+
"eslint": "^8.57.0",
|
|
81
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
82
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
83
|
+
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
84
|
+
"typescript": "^5.7.2",
|
|
85
|
+
"vite": "^5.2.0",
|
|
86
|
+
"vite-plugin-alias": "^0.1.1",
|
|
87
|
+
"vite-plugin-css-injected-by-js": "^3.5.1",
|
|
88
|
+
"vite-plugin-dedupe": "^0.1.1",
|
|
89
|
+
"vite-plugin-dts": "^3.9.1"
|
|
90
|
+
}
|
|
91
|
+
}
|