wcz-test 3.4.5 → 3.4.7

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 (68) hide show
  1. package/dist/index.d.ts +2 -426
  2. package/dist/src/components/core/AppTitle.d.ts +3 -0
  3. package/dist/src/components/core/Layout.d.ts +10 -0
  4. package/dist/src/components/core/Markdown.d.ts +6 -0
  5. package/dist/src/components/core/PageHeader.d.ts +9 -0
  6. package/dist/src/components/core/TableContainer.d.ts +3 -0
  7. package/dist/src/components/core/ToolbarAccount.d.ts +2 -0
  8. package/dist/src/components/core/TypographyWithIcon.d.ts +7 -0
  9. package/dist/src/components/core/navigation/NavigationList.d.ts +21 -0
  10. package/dist/src/components/core/navigation/NavigationListItem.d.ts +15 -0
  11. package/dist/src/components/core/navigation/NavigationRail.d.ts +12 -0
  12. package/dist/src/components/data-grid/ChipInputCell.d.ts +9 -0
  13. package/dist/src/components/data-grid/EditableColumnHeader.d.ts +2 -0
  14. package/dist/src/components/file/Dropzone.d.ts +8 -0
  15. package/dist/src/components/file/FileViewer.d.ts +21 -0
  16. package/dist/src/components/file/fileViewer/FileViewerGrid.d.ts +17 -0
  17. package/dist/src/components/file/fileViewer/FileViewerList.d.ts +12 -0
  18. package/dist/src/components/file/fileViewer/ImageViewer.d.ts +6 -0
  19. package/dist/src/components/file/fileViewer/common/ActionsMenu.d.ts +15 -0
  20. package/dist/src/components/form/FormAutocomplete.d.ts +7 -0
  21. package/dist/src/components/form/FormCheckbox.d.ts +7 -0
  22. package/dist/src/components/form/FormDatePicker.d.ts +8 -0
  23. package/dist/src/components/form/FormDateTimePicker.d.ts +8 -0
  24. package/dist/src/components/form/FormNumberField.d.ts +9 -0
  25. package/dist/src/components/form/FormRadioGroup.d.ts +13 -0
  26. package/dist/src/components/form/FormSlider.d.ts +7 -0
  27. package/dist/src/components/form/FormSubmitButton.d.ts +4 -0
  28. package/dist/src/components/form/FormSwitch.d.ts +7 -0
  29. package/dist/src/components/form/FormTextField.d.ts +7 -0
  30. package/dist/src/components/router/RouterButton.d.ts +6 -0
  31. package/dist/src/components/router/RouterError.d.ts +7 -0
  32. package/dist/src/components/router/RouterGridActionsCellItem.d.ts +6 -0
  33. package/dist/src/components/router/RouterIconButton.d.ts +6 -0
  34. package/dist/src/components/router/RouterLink.d.ts +6 -0
  35. package/dist/src/components/router/RouterListItemButton.d.ts +6 -0
  36. package/dist/src/components/router/RouterNotFound.d.ts +1 -0
  37. package/dist/src/components/router/RouterTab.d.ts +6 -0
  38. package/dist/src/contexts/DialogsContext.d.ts +6 -0
  39. package/dist/src/contexts/FileContext.d.ts +13 -0
  40. package/dist/src/contexts/LayoutContext.d.ts +11 -0
  41. package/dist/src/hooks/DialogsHooks.d.ts +42 -0
  42. package/dist/src/hooks/FileHooks.d.ts +27 -0
  43. package/dist/src/hooks/FormHooks.d.ts +40 -0
  44. package/dist/src/hooks/PeopleSoftHooks.d.ts +23 -0
  45. package/dist/src/hooks/ThemeHook.d.ts +2 -0
  46. package/dist/src/index.d.ts +35 -0
  47. package/dist/src/models/KeycloakSettings.d.ts +8 -0
  48. package/dist/src/models/Navigation.d.ts +18 -0
  49. package/dist/src/models/NavigationParams.d.ts +6 -0
  50. package/dist/src/models/User.d.ts +8 -0
  51. package/dist/src/models/email/Email.d.ts +9 -0
  52. package/dist/src/models/email/EmailAttachment.d.ts +4 -0
  53. package/dist/src/models/file/FileActions.d.ts +4 -0
  54. package/dist/src/models/file/FileMeta.d.ts +11 -0
  55. package/dist/src/models/peoplesoft/Department.d.ts +14 -0
  56. package/dist/src/models/peoplesoft/Employee.d.ts +38 -0
  57. package/dist/src/models/peoplesoft/EmployeeCategoryGroup.d.ts +5 -0
  58. package/dist/src/models/peoplesoft/EmployeeStatus.d.ts +5 -0
  59. package/dist/src/providers/DialogsProvider.d.ts +6 -0
  60. package/dist/src/providers/LayoutProvider.d.ts +11 -0
  61. package/dist/src/routes/__root.d.ts +6 -0
  62. package/dist/src/utils/ClientUtils.d.ts +46 -0
  63. package/dist/src/utils/FormUtils.d.ts +7 -0
  64. package/dist/src/utils/i18n.d.ts +1 -0
  65. package/dist/vite.config.d.ts +2 -0
  66. package/package.json +14 -12
  67. package/dist/index.js +0 -3602
  68. package/dist/index.js.map +0 -1
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "wcz-test",
3
3
  "displayName": "WCZ Layout",
4
- "version": "3.4.5",
4
+ "version": "3.4.7",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "type": "module",
8
- "main": "dist/index.js",
9
- "module": "dist/index.js",
10
- "types": "dist/index.d.ts",
8
+ "types": "./dist/index.d.ts",
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
11
11
  "exports": {
12
12
  ".": {
13
- "types": "./dist/index.d.ts",
14
- "import": "./dist/index.js"
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
15
  }
16
16
  },
17
17
  "files": [
@@ -19,10 +19,10 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "dev": "vite dev",
22
- "prepublishOnly": "tsup",
23
22
  "npm-install": "npm install",
24
23
  "npm-update": "npm update",
25
- "lint-fix": "eslint --fix \"src/**/*.{ts,tsx}\""
24
+ "lint-fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
25
+ "prepublishOnly": "if exist dist rmdir /s /q dist && tsc && vite build"
26
26
  },
27
27
  "dependencies": {
28
28
  "@tanstack/react-router-ssr-query": "^1.131.14",
@@ -31,8 +31,6 @@
31
31
  "i18next": "^25.0.0",
32
32
  "i18next-browser-languagedetector": "^8.0.4",
33
33
  "i18next-http-backend": "^3.0.2",
34
- "jwt-decode": "^4.0.0",
35
- "keycloak-js": "^26.2.0",
36
34
  "next-auth": "5.0.0-beta.29",
37
35
  "react-dropzone": "^14.3.8",
38
36
  "react-i18next": "^15.4.1",
@@ -50,18 +48,22 @@
50
48
  "@types/react": "^19.0.8",
51
49
  "@types/react-dom": "^19.0.3",
52
50
  "@vitejs/plugin-react": "^4.6.0",
51
+ "babel-plugin-react-compiler": "^19.1.0-rc.3",
53
52
  "eslint": "^9.28.0",
54
53
  "eslint-plugin-import": "^2.31.0",
55
54
  "eslint-plugin-react": "^7.37.5",
56
55
  "eslint-plugin-react-hooks": "^5.2.0",
57
56
  "eslint-plugin-unicorn": "^59.0.1",
57
+ "husky": "^9.1.7",
58
58
  "react-markdown": "^10.1.0",
59
- "tsup": "^8.4.0",
60
59
  "typescript": "^5.7.2",
61
60
  "typescript-eslint": "^8.33.1",
62
61
  "vite-plugin-checker": "^0.9.3",
63
62
  "vite-plugin-pwa": "^1.0.2",
64
- "vite-tsconfig-paths": "^5.1.4"
63
+ "vite-tsconfig-paths": "^5.1.4",
64
+ "vite-plugin-dts": "^4.5.4",
65
+ "@rollup/rollup-win32-x64-msvc": "^4.50.2",
66
+ "@esbuild/win32-x64": "^0.25.10"
65
67
  },
66
68
  "peerDependencies": {
67
69
  "@emotion/react": "11.x",