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.
- package/dist/index.d.ts +2 -426
- package/dist/src/components/core/AppTitle.d.ts +3 -0
- package/dist/src/components/core/Layout.d.ts +10 -0
- package/dist/src/components/core/Markdown.d.ts +6 -0
- package/dist/src/components/core/PageHeader.d.ts +9 -0
- package/dist/src/components/core/TableContainer.d.ts +3 -0
- package/dist/src/components/core/ToolbarAccount.d.ts +2 -0
- package/dist/src/components/core/TypographyWithIcon.d.ts +7 -0
- package/dist/src/components/core/navigation/NavigationList.d.ts +21 -0
- package/dist/src/components/core/navigation/NavigationListItem.d.ts +15 -0
- package/dist/src/components/core/navigation/NavigationRail.d.ts +12 -0
- package/dist/src/components/data-grid/ChipInputCell.d.ts +9 -0
- package/dist/src/components/data-grid/EditableColumnHeader.d.ts +2 -0
- package/dist/src/components/file/Dropzone.d.ts +8 -0
- package/dist/src/components/file/FileViewer.d.ts +21 -0
- package/dist/src/components/file/fileViewer/FileViewerGrid.d.ts +17 -0
- package/dist/src/components/file/fileViewer/FileViewerList.d.ts +12 -0
- package/dist/src/components/file/fileViewer/ImageViewer.d.ts +6 -0
- package/dist/src/components/file/fileViewer/common/ActionsMenu.d.ts +15 -0
- package/dist/src/components/form/FormAutocomplete.d.ts +7 -0
- package/dist/src/components/form/FormCheckbox.d.ts +7 -0
- package/dist/src/components/form/FormDatePicker.d.ts +8 -0
- package/dist/src/components/form/FormDateTimePicker.d.ts +8 -0
- package/dist/src/components/form/FormNumberField.d.ts +9 -0
- package/dist/src/components/form/FormRadioGroup.d.ts +13 -0
- package/dist/src/components/form/FormSlider.d.ts +7 -0
- package/dist/src/components/form/FormSubmitButton.d.ts +4 -0
- package/dist/src/components/form/FormSwitch.d.ts +7 -0
- package/dist/src/components/form/FormTextField.d.ts +7 -0
- package/dist/src/components/router/RouterButton.d.ts +6 -0
- package/dist/src/components/router/RouterError.d.ts +7 -0
- package/dist/src/components/router/RouterGridActionsCellItem.d.ts +6 -0
- package/dist/src/components/router/RouterIconButton.d.ts +6 -0
- package/dist/src/components/router/RouterLink.d.ts +6 -0
- package/dist/src/components/router/RouterListItemButton.d.ts +6 -0
- package/dist/src/components/router/RouterNotFound.d.ts +1 -0
- package/dist/src/components/router/RouterTab.d.ts +6 -0
- package/dist/src/contexts/DialogsContext.d.ts +6 -0
- package/dist/src/contexts/FileContext.d.ts +13 -0
- package/dist/src/contexts/LayoutContext.d.ts +11 -0
- package/dist/src/hooks/DialogsHooks.d.ts +42 -0
- package/dist/src/hooks/FileHooks.d.ts +27 -0
- package/dist/src/hooks/FormHooks.d.ts +40 -0
- package/dist/src/hooks/PeopleSoftHooks.d.ts +23 -0
- package/dist/src/hooks/ThemeHook.d.ts +2 -0
- package/dist/src/index.d.ts +35 -0
- package/dist/src/models/KeycloakSettings.d.ts +8 -0
- package/dist/src/models/Navigation.d.ts +18 -0
- package/dist/src/models/NavigationParams.d.ts +6 -0
- package/dist/src/models/User.d.ts +8 -0
- package/dist/src/models/email/Email.d.ts +9 -0
- package/dist/src/models/email/EmailAttachment.d.ts +4 -0
- package/dist/src/models/file/FileActions.d.ts +4 -0
- package/dist/src/models/file/FileMeta.d.ts +11 -0
- package/dist/src/models/peoplesoft/Department.d.ts +14 -0
- package/dist/src/models/peoplesoft/Employee.d.ts +38 -0
- package/dist/src/models/peoplesoft/EmployeeCategoryGroup.d.ts +5 -0
- package/dist/src/models/peoplesoft/EmployeeStatus.d.ts +5 -0
- package/dist/src/providers/DialogsProvider.d.ts +6 -0
- package/dist/src/providers/LayoutProvider.d.ts +11 -0
- package/dist/src/routes/__root.d.ts +6 -0
- package/dist/src/utils/ClientUtils.d.ts +46 -0
- package/dist/src/utils/FormUtils.d.ts +7 -0
- package/dist/src/utils/i18n.d.ts +1 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +14 -12
- package/dist/index.js +0 -3602
- 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.
|
|
4
|
+
"version": "3.4.7",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
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",
|