wcz-test 7.1.1 → 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.
- package/dist/components/core/AppTitle.d.ts +2 -0
- package/dist/components/core/Fullscreen.d.ts +3 -0
- package/dist/components/core/Layout.d.ts +8 -0
- package/dist/components/core/ToolbarAccount.d.ts +2 -0
- package/dist/components/core/TypographyWithIcon.d.ts +7 -0
- package/dist/components/core/navigation/NavigationList.d.ts +22 -0
- package/dist/components/core/navigation/NavigationListItem.d.ts +16 -0
- package/dist/components/core/navigation/NavigationRail.d.ts +12 -0
- package/dist/components/data-grid/ChipInputCell.d.ts +9 -0
- package/dist/components/data-grid/EditableColumnHeader.d.ts +2 -0
- package/dist/components/file/Dropzone.d.ts +8 -0
- package/dist/components/file/FileViewer.d.ts +20 -0
- package/dist/components/file/fileViewer/FileViewerGrid.d.ts +17 -0
- package/dist/components/file/fileViewer/FileViewerList.d.ts +12 -0
- package/dist/components/file/fileViewer/ImageViewer.d.ts +6 -0
- package/dist/components/file/fileViewer/common/ActionsMenu.d.ts +15 -0
- package/dist/components/form/FormAutocomplete.d.ts +7 -0
- package/dist/components/form/FormCheckbox.d.ts +7 -0
- package/dist/components/form/FormDatePicker.d.ts +8 -0
- package/dist/components/form/FormDateRangePicker.d.ts +8 -0
- package/dist/components/form/FormDateTimePicker.d.ts +8 -0
- package/dist/components/form/FormDateTimeRangePicker.d.ts +8 -0
- package/dist/components/form/FormNumberField.d.ts +9 -0
- package/dist/components/form/FormRadioGroup.d.ts +13 -0
- package/dist/components/form/FormSlider.d.ts +7 -0
- package/dist/components/form/FormSubmitButton.d.ts +4 -0
- package/dist/components/form/FormSwitch.d.ts +7 -0
- package/dist/components/form/FormTextField.d.ts +7 -0
- package/dist/components/form/FormTimePicker.d.ts +8 -0
- package/dist/components/form/FormTimeRangePicker.d.ts +8 -0
- package/dist/components/router/RouterButton.d.ts +6 -0
- package/dist/components/router/RouterError.d.ts +7 -0
- package/dist/components/router/RouterGridActionsCellItem.d.ts +6 -0
- package/dist/components/router/RouterIconButton.d.ts +6 -0
- package/dist/components/router/RouterLink.d.ts +6 -0
- package/dist/components/router/RouterListItemButton.d.ts +6 -0
- package/dist/components/router/RouterNotFound.d.ts +1 -0
- package/dist/components/router/RouterTab.d.ts +6 -0
- package/dist/contexts/DialogsContext.d.ts +6 -0
- package/dist/contexts/FileContext.d.ts +13 -0
- package/dist/hooks/DialogsHooks.d.ts +42 -0
- package/dist/hooks/FormHooks.d.ts +52 -0
- package/dist/hooks/User.d.ts +8 -0
- package/dist/lib/auth/permissions.d.ts +3 -0
- package/dist/lib/auth/scopes.d.ts +3 -0
- package/dist/lib/queryClient.d.ts +2 -0
- package/dist/lib/utils.d.ts +61 -0
- package/dist/lib/vite-plugin.d.ts +2 -0
- package/dist/models/Navigation.d.ts +18 -0
- package/dist/models/User.d.ts +13 -0
- package/dist/models/approval/Approval.d.ts +177 -0
- package/dist/models/approval/ApprovalEmployee.d.ts +7 -0
- package/dist/models/approval/ApprovalFlow.d.ts +49 -0
- package/dist/models/approval/ApprovalFlowStep.d.ts +29 -0
- package/dist/models/approval/ApprovalRequestType.d.ts +5 -0
- package/dist/models/approval/ApprovalStatus.d.ts +9 -0
- package/dist/models/approval/ApprovalStepResult.d.ts +11 -0
- package/dist/models/approval/StepApprovalOrder.d.ts +6 -0
- package/dist/models/email/Email.d.ts +13 -0
- package/dist/models/email/EmailAttachment.d.ts +6 -0
- package/dist/models/file/FileActions.d.ts +6 -0
- package/dist/models/file/FileMeta.d.ts +15 -0
- package/dist/models/peoplesoft/Department.d.ts +58 -0
- package/dist/models/peoplesoft/Employee.d.ts +46 -0
- package/dist/models/peoplesoft/EmployeeCategoryGroup.d.ts +6 -0
- package/dist/models/peoplesoft/EmployeeStatus.d.ts +6 -0
- package/dist/providers/AuthProvider.d.ts +8 -0
- package/dist/providers/DialogsProvider.d.ts +5 -0
- package/dist/providers/LayoutProvider.d.ts +10 -0
- package/dist/queries/ApprovalHooks.d.ts +661 -0
- package/dist/queries/FileHooks.d.ts +205 -0
- package/dist/queries/GraphQueries.d.ts +31 -0
- package/dist/queries/PeopleSoftHooks.d.ts +2173 -0
- package/dist/queries/index.d.ts +2958 -0
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wcz-test",
|
|
3
|
-
"version": "7.1.
|
|
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
|
},
|