@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.
Files changed (29) hide show
  1. package/README.md +30 -30
  2. package/dist/components/feedback/appreciation/badge-master/modal/form.schema.d.ts +2 -2
  3. package/dist/components/feedback/appreciation/modal/appreciation-modal.d.ts +0 -1
  4. package/dist/components/feedback/continuous-feedback/modal/continuous-feedback-modal.d.ts +0 -1
  5. package/dist/components/feedback/continuous-feedback/modal/form.schema.d.ts +5 -2
  6. package/dist/components/feedback/dashboard/meeting-modal.d.ts +0 -1
  7. package/dist/components/feedback/one-to-one/reschedule-modal/reschedule-modal.d.ts +0 -1
  8. package/dist/components/feedback/one-to-one/schedule-modal/form.schema.d.ts +5 -5
  9. package/dist/components/feedback/one-to-one/schedule-modal/schedule-modal.d.ts +0 -1
  10. package/dist/components/feedback/one-to-one/view-details-modal/form.schema.d.ts +1 -1
  11. package/dist/components/pip/pip-action/pip-action.d.ts +0 -1
  12. package/dist/components/pip/pip-context.d.ts +0 -1
  13. package/dist/components/pip/pip-initiation/pip-initiation.d.ts +1 -1
  14. package/dist/components/pip/pip-list.d.ts +3 -0
  15. package/dist/components/ui/button/button.d.ts +0 -1
  16. package/dist/components/ui/header-title/header-title.d.ts +0 -1
  17. package/dist/components/ui/image-viewer/image-viewer.d.ts +0 -1
  18. package/dist/components/ui/pdf-viewer/pdf.viewer.d.ts +0 -1
  19. package/dist/components/ui/search/search.d.ts +0 -1
  20. package/dist/components/ui/toggle-button/toggle-button.d.ts +0 -1
  21. package/dist/main.cjs +154081 -2960
  22. package/dist/main.js +123650 -101786
  23. package/dist/shared/constants/endpoints.d.ts +4 -0
  24. package/dist/shared/constants/time.d.ts +13 -3
  25. package/dist/shared/hooks/useFetch.d.ts +1 -1
  26. package/dist/shared/utils/utils.d.ts +1 -0
  27. package/dist/style.css +1642 -1
  28. package/package.json +91 -89
  29. 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.19-pms",
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": "tsc && vite 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": "^18.2.0",
58
- "react-dom": "^18.2.0",
59
- "react-hook-form": "^7.51.4",
60
- "react-html-parser": "^2.0.2",
61
- "react-icons": "^5.2.1",
62
- "react-query": "^3.39.3",
63
- "react-select": "^5.8.0",
64
- "tinycolor2": "^1.6.0",
65
- "yup": "^1.4.0",
66
- "zod": "^3.23.8",
67
- "zustand": "^4.5.2"
68
- },
69
- "devDependencies": {
70
- "@babel/preset-env": "^7.24.7",
71
- "@types/react": "^18.2.66",
72
- "@types/react-dom": "^18.2.22",
73
- "@types/react-html-parser": "^2.0.6",
74
- "@types/tinycolor2": "^1.4.6",
75
- "@typescript-eslint/eslint-plugin": "^7.2.0",
76
- "@typescript-eslint/parser": "^7.2.0",
77
- "@vitejs/plugin-react": "^4.3.1",
78
- "eslint": "^8.57.0",
79
- "eslint-plugin-react-hooks": "^4.6.0",
80
- "eslint-plugin-react-refresh": "^0.4.6",
81
- "rollup-plugin-typescript-paths": "^1.5.0",
82
- "typescript": "^5.2.2",
83
- "vite": "^5.2.0",
84
- "vite-plugin-alias": "^0.1.1",
85
- "vite-plugin-css-injected-by-js": "^3.5.1",
86
- "vite-plugin-dedupe": "^0.1.1",
87
- "vite-plugin-dts": "^3.9.1"
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
+ }
@@ -1,12 +0,0 @@
1
- {
2
- "src/main.ts": {
3
- "file": "main.cjs",
4
- "name": "main",
5
- "src": "src/main.ts",
6
- "isEntry": true
7
- },
8
- "style.css": {
9
- "file": "style.css",
10
- "src": "style.css"
11
- }
12
- }