wcz-test 7.1.0 → 7.1.2

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 (91) hide show
  1. package/dist/components/core/AppTitle.d.ts +2 -0
  2. package/dist/components/core/Fullscreen.d.ts +3 -0
  3. package/dist/components/core/Layout.d.ts +8 -0
  4. package/dist/components/core/ToolbarAccount.d.ts +2 -0
  5. package/dist/components/core/TypographyWithIcon.d.ts +7 -0
  6. package/dist/components/core/navigation/NavigationList.d.ts +22 -0
  7. package/dist/components/core/navigation/NavigationListItem.d.ts +16 -0
  8. package/dist/components/core/navigation/NavigationRail.d.ts +12 -0
  9. package/dist/components/data-grid/ChipInputCell.d.ts +9 -0
  10. package/dist/components/data-grid/EditableColumnHeader.d.ts +2 -0
  11. package/dist/components/file/Dropzone.d.ts +8 -0
  12. package/dist/components/file/FileViewer.d.ts +20 -0
  13. package/dist/components/file/fileViewer/FileViewerGrid.d.ts +17 -0
  14. package/dist/components/file/fileViewer/FileViewerList.d.ts +12 -0
  15. package/dist/components/file/fileViewer/ImageViewer.d.ts +6 -0
  16. package/dist/components/file/fileViewer/common/ActionsMenu.d.ts +15 -0
  17. package/dist/components/form/FormAutocomplete.d.ts +7 -0
  18. package/dist/components/form/FormCheckbox.d.ts +7 -0
  19. package/dist/components/form/FormDatePicker.d.ts +8 -0
  20. package/dist/components/form/FormDateRangePicker.d.ts +8 -0
  21. package/dist/components/form/FormDateTimePicker.d.ts +8 -0
  22. package/dist/components/form/FormDateTimeRangePicker.d.ts +8 -0
  23. package/dist/components/form/FormNumberField.d.ts +9 -0
  24. package/dist/components/form/FormRadioGroup.d.ts +13 -0
  25. package/dist/components/form/FormSlider.d.ts +7 -0
  26. package/dist/components/form/FormSubmitButton.d.ts +4 -0
  27. package/dist/components/form/FormSwitch.d.ts +7 -0
  28. package/dist/components/form/FormTextField.d.ts +7 -0
  29. package/dist/components/form/FormTimePicker.d.ts +8 -0
  30. package/dist/components/form/FormTimeRangePicker.d.ts +8 -0
  31. package/dist/components/router/RouterButton.d.ts +6 -0
  32. package/dist/components/router/RouterError.d.ts +7 -0
  33. package/dist/components/router/RouterGridActionsCellItem.d.ts +6 -0
  34. package/dist/components/router/RouterIconButton.d.ts +6 -0
  35. package/dist/components/router/RouterLink.d.ts +6 -0
  36. package/dist/components/router/RouterListItemButton.d.ts +6 -0
  37. package/dist/components/router/RouterNotFound.d.ts +1 -0
  38. package/dist/components/router/RouterTab.d.ts +6 -0
  39. package/dist/contexts/DialogsContext.d.ts +6 -0
  40. package/dist/contexts/FileContext.d.ts +13 -0
  41. package/dist/exports/components.d.ts +14 -0
  42. package/dist/exports/hooks.d.ts +6 -0
  43. package/dist/exports/index.d.ts +4 -0
  44. package/dist/exports/models.d.ts +24 -0
  45. package/dist/exports/query.d.ts +2 -0
  46. package/dist/exports/utils.d.ts +5 -0
  47. package/dist/exports/vite.d.ts +1 -0
  48. package/dist/hooks/DialogsHooks.d.ts +42 -0
  49. package/dist/hooks/FormHooks.d.ts +52 -0
  50. package/dist/hooks/User.d.ts +8 -0
  51. package/dist/index.js +263 -272
  52. package/dist/index.js.map +1 -1
  53. package/dist/lib/auth/permissions.d.ts +3 -0
  54. package/dist/lib/auth/scopes.d.ts +3 -0
  55. package/dist/lib/queryClient.d.ts +2 -0
  56. package/dist/lib/utils.d.ts +61 -0
  57. package/dist/lib/vite-plugin.d.ts +2 -0
  58. package/dist/models/Navigation.d.ts +18 -0
  59. package/dist/models/User.d.ts +13 -0
  60. package/dist/models/approval/Approval.d.ts +177 -0
  61. package/dist/models/approval/ApprovalEmployee.d.ts +7 -0
  62. package/dist/models/approval/ApprovalFlow.d.ts +49 -0
  63. package/dist/models/approval/ApprovalFlowStep.d.ts +29 -0
  64. package/dist/models/approval/ApprovalRequestType.d.ts +5 -0
  65. package/dist/models/approval/ApprovalStatus.d.ts +9 -0
  66. package/dist/models/approval/ApprovalStepResult.d.ts +11 -0
  67. package/dist/models/approval/StepApprovalOrder.d.ts +6 -0
  68. package/dist/models/email/Email.d.ts +13 -0
  69. package/dist/models/email/EmailAttachment.d.ts +6 -0
  70. package/dist/models/file/FileActions.d.ts +6 -0
  71. package/dist/models/file/FileMeta.d.ts +15 -0
  72. package/dist/models/peoplesoft/Department.d.ts +58 -0
  73. package/dist/models/peoplesoft/Employee.d.ts +46 -0
  74. package/dist/models/peoplesoft/EmployeeCategoryGroup.d.ts +6 -0
  75. package/dist/models/peoplesoft/EmployeeStatus.d.ts +6 -0
  76. package/dist/providers/AuthProvider.d.ts +8 -0
  77. package/dist/providers/DialogsProvider.d.ts +5 -0
  78. package/dist/providers/LayoutProvider.d.ts +10 -0
  79. package/dist/queries/ApprovalHooks.d.ts +661 -0
  80. package/dist/queries/FileHooks.d.ts +205 -0
  81. package/dist/queries/GraphQueries.d.ts +31 -0
  82. package/dist/queries/PeopleSoftHooks.d.ts +2173 -0
  83. package/dist/queries/index.d.ts +2958 -0
  84. package/package.json +8 -8
  85. package/dist/components.d.ts +0 -44
  86. package/dist/hooks.d.ts +0 -29
  87. package/dist/index.d.ts +0 -20
  88. package/dist/models.d.ts +0 -104
  89. package/dist/query.d.ts +0 -8
  90. package/dist/utils.d.ts +0 -17
  91. package/dist/vite.d.ts +0 -5
package/package.json CHANGED
@@ -1,36 +1,36 @@
1
1
  {
2
2
  "name": "wcz-test",
3
- "version": "7.1.0",
3
+ "version": "7.1.2",
4
4
  "private": false,
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": {
9
- "types": "./dist/index.d.ts",
9
+ "types": "./dist/exports/index.d.ts",
10
10
  "import": "./dist/index.js"
11
11
  },
12
12
  "./components": {
13
- "types": "./dist/components.d.ts",
13
+ "types": "./dist/exports/components.d.ts",
14
14
  "import": "./dist/components.js"
15
15
  },
16
16
  "./hooks": {
17
- "types": "./dist/hooks.d.ts",
17
+ "types": "./dist/exports/hooks.d.ts",
18
18
  "import": "./dist/hooks.js"
19
19
  },
20
20
  "./models": {
21
- "types": "./dist/models.d.ts",
21
+ "types": "./dist/exports/models.d.ts",
22
22
  "import": "./dist/models.js"
23
23
  },
24
24
  "./query": {
25
- "types": "./dist/query.d.ts",
25
+ "types": "./dist/exports/query.d.ts",
26
26
  "import": "./dist/query.js"
27
27
  },
28
28
  "./utils": {
29
- "types": "./dist/utils.d.ts",
29
+ "types": "./dist/exports/utils.d.ts",
30
30
  "import": "./dist/utils.js"
31
31
  },
32
32
  "./vite": {
33
- "types": "./dist/vite.d.ts",
33
+ "types": "./dist/exports/vite.d.ts",
34
34
  "import": "./dist/vite.js"
35
35
  }
36
36
  },
@@ -1,44 +0,0 @@
1
- import { ChipInputCell } from '../components/data-grid/ChipInputCell';
2
- import { Dropzone } from '../components/file/Dropzone';
3
- import { EditableColumnHeader } from '../components/data-grid/EditableColumnHeader';
4
- import { FileViewer } from '../components/file/FileViewer';
5
- import { Fullscreen } from '../components/core/Fullscreen';
6
- import { RouterButton } from '../components/router/RouterButton';
7
- import { RouterError } from '../components/router/RouterError';
8
- import { RouterGridActionsCellItem } from '../components/router/RouterGridActionsCellItem';
9
- import { RouterIconButton } from '../components/router/RouterIconButton';
10
- import { RouterLink } from '../components/router/RouterLink';
11
- import { RouterListItemButton } from '../components/router/RouterListItemButton';
12
- import { RouterNotFound } from '../components/router/RouterNotFound';
13
- import { RouterTab } from '../components/router/RouterTab';
14
- import { TypographyWithIcon } from '../components/core/TypographyWithIcon';
15
-
16
- export { ChipInputCell }
17
-
18
- export { Dropzone }
19
-
20
- export { EditableColumnHeader }
21
-
22
- export { FileViewer }
23
-
24
- export { Fullscreen }
25
-
26
- export { RouterButton }
27
-
28
- export { RouterError }
29
-
30
- export { RouterGridActionsCellItem }
31
-
32
- export { RouterIconButton }
33
-
34
- export { RouterLink }
35
-
36
- export { RouterListItemButton }
37
-
38
- export { RouterNotFound }
39
-
40
- export { RouterTab }
41
-
42
- export { TypographyWithIcon }
43
-
44
- export { }
package/dist/hooks.d.ts DELETED
@@ -1,29 +0,0 @@
1
- import { DialogProps } from '../hooks/DialogsHooks';
2
- import { useDialogs } from '../hooks/DialogsHooks';
3
- import { useFieldContext } from '../hooks/FormHooks';
4
- import { useFormContext } from '../hooks/FormHooks';
5
- import { useInView } from 'react-intersection-observer';
6
- import { useLayoutForm } from '../hooks/FormHooks';
7
- import { useTranslation } from 'react-i18next';
8
- import { useUser } from '../hooks/User';
9
- import { withLayoutForm } from '../hooks/FormHooks';
10
-
11
- export { DialogProps }
12
-
13
- export { useDialogs }
14
-
15
- export { useFieldContext }
16
-
17
- export { useFormContext }
18
-
19
- export { useInView }
20
-
21
- export { useLayoutForm }
22
-
23
- export { useTranslation }
24
-
25
- export { useUser }
26
-
27
- export { withLayoutForm }
28
-
29
- export { }
package/dist/index.d.ts DELETED
@@ -1,20 +0,0 @@
1
- import { LayoutProvider } from '../providers/LayoutProvider';
2
- import { Navigation } from '../models/Navigation';
3
- import { rootRouteHead } from '../lib/utils';
4
- import { setSSRLanguage } from '../providers/LayoutProvider';
5
- import { WISTRON_PRIMARY_COLOR } from '../lib/utils';
6
- import { WISTRON_SECONDARY_COLOR } from '../lib/utils';
7
-
8
- export { LayoutProvider }
9
-
10
- export { Navigation }
11
-
12
- export { rootRouteHead }
13
-
14
- export { setSSRLanguage }
15
-
16
- export { WISTRON_PRIMARY_COLOR }
17
-
18
- export { WISTRON_SECONDARY_COLOR }
19
-
20
- export { }
package/dist/models.d.ts DELETED
@@ -1,104 +0,0 @@
1
- import { Approval } from '../models/approval/Approval';
2
- import { ApprovalEmployee } from '../models/approval/ApprovalEmployee';
3
- import { ApprovalEmployeeSchema } from '../models/approval/ApprovalEmployee';
4
- import { ApprovalFlow } from '../models/approval/ApprovalFlow';
5
- import { ApprovalFlowSchema } from '../models/approval/ApprovalFlow';
6
- import { ApprovalFlowStep } from '../models/approval/ApprovalFlowStep';
7
- import { ApprovalFlowStepSchema } from '../models/approval/ApprovalFlowStep';
8
- import { ApprovalRequestType } from '../models/approval/ApprovalRequestType';
9
- import { ApprovalSchema } from '../models/approval/Approval';
10
- import { ApprovalStatus } from '../models/approval/ApprovalStatus';
11
- import { ApprovalStepResult } from '../models/approval/ApprovalStepResult';
12
- import { ApproveApproval } from '../models/approval/Approval';
13
- import { ApproveApprovalSchema } from '../models/approval/Approval';
14
- import { CancelApproval } from '../models/approval/Approval';
15
- import { CancelApprovalSchema } from '../models/approval/Approval';
16
- import { CreateApproval } from '../models/approval/Approval';
17
- import { CreateApprovalSchema } from '../models/approval/Approval';
18
- import { Department } from '../models/peoplesoft/Department';
19
- import { DepartmentSchema } from '../models/peoplesoft/Department';
20
- import { Email } from '../models/email/Email';
21
- import { EmailAttachment } from '../models/email/EmailAttachment';
22
- import { EmailAttachmentSchema } from '../models/email/EmailAttachment';
23
- import { EmailSchema } from '../models/email/Email';
24
- import { Employee } from '../models/peoplesoft/Employee';
25
- import { EmployeeCategoryGroup } from '../models/peoplesoft/EmployeeCategoryGroup';
26
- import { EmployeeSchema } from '../models/peoplesoft/Employee';
27
- import { EmployeeStatus } from '../models/peoplesoft/EmployeeStatus';
28
- import { FileMeta } from '../models/file/FileMeta';
29
- import { FileMetaSchema } from '../models/file/FileMeta';
30
- import { ResubmitApproval } from '../models/approval/Approval';
31
- import { ResubmitApprovalSchema } from '../models/approval/Approval';
32
- import { StepApprovalOrder } from '../models/approval/StepApprovalOrder';
33
- import { WithdrawApproval } from '../models/approval/Approval';
34
- import { WithdrawApprovalSchema } from '../models/approval/Approval';
35
-
36
- export { Approval }
37
-
38
- export { ApprovalEmployee }
39
-
40
- export { ApprovalEmployeeSchema }
41
-
42
- export { ApprovalFlow }
43
-
44
- export { ApprovalFlowSchema }
45
-
46
- export { ApprovalFlowStep }
47
-
48
- export { ApprovalFlowStepSchema }
49
-
50
- export { ApprovalRequestType }
51
-
52
- export { ApprovalSchema }
53
-
54
- export { ApprovalStatus }
55
-
56
- export { ApprovalStepResult }
57
-
58
- export { ApproveApproval }
59
-
60
- export { ApproveApprovalSchema }
61
-
62
- export { CancelApproval }
63
-
64
- export { CancelApprovalSchema }
65
-
66
- export { CreateApproval }
67
-
68
- export { CreateApprovalSchema }
69
-
70
- export { Department }
71
-
72
- export { DepartmentSchema }
73
-
74
- export { Email }
75
-
76
- export { EmailAttachment }
77
-
78
- export { EmailAttachmentSchema }
79
-
80
- export { EmailSchema }
81
-
82
- export { Employee }
83
-
84
- export { EmployeeCategoryGroup }
85
-
86
- export { EmployeeSchema }
87
-
88
- export { EmployeeStatus }
89
-
90
- export { FileMeta }
91
-
92
- export { FileMetaSchema }
93
-
94
- export { ResubmitApproval }
95
-
96
- export { ResubmitApprovalSchema }
97
-
98
- export { StepApprovalOrder }
99
-
100
- export { WithdrawApproval }
101
-
102
- export { WithdrawApprovalSchema }
103
-
104
- export { }
package/dist/query.d.ts DELETED
@@ -1,8 +0,0 @@
1
- import { query } from '../queries/index';
2
- import { queryClient } from '../lib/queryClient';
3
-
4
- export { query }
5
-
6
- export { queryClient }
7
-
8
- export { }
package/dist/utils.d.ts DELETED
@@ -1,17 +0,0 @@
1
- import { createEnv } from '@t3-oss/env-core';
2
- import { getAccessToken } from '../lib/utils';
3
- import { Platform } from '../lib/utils';
4
- import { t } from 'i18next';
5
- import { uuidv7 } from 'uuidv7';
6
-
7
- export { createEnv }
8
-
9
- export { getAccessToken }
10
-
11
- export { Platform }
12
-
13
- export { t }
14
-
15
- export { uuidv7 }
16
-
17
- export { }
package/dist/vite.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import { viteWczLayout } from '../lib/vite-plugin';
2
-
3
- export { viteWczLayout }
4
-
5
- export { }