wcz-layout 6.7.2 → 7.6.1
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/DialogsContext-BIhId-r8.js +7 -0
- package/dist/DialogsContext-BIhId-r8.js.map +1 -0
- package/dist/DialogsHooks-CZVdKmPv.js +207 -0
- package/dist/DialogsHooks-CZVdKmPv.js.map +1 -0
- package/dist/FileMeta-YGG9mxo_.js +36 -0
- package/dist/FileMeta-YGG9mxo_.js.map +1 -0
- package/dist/NotificationContext-DovR_auQ.js +7 -0
- package/dist/NotificationContext-DovR_auQ.js.map +1 -0
- package/dist/RouterListItemButton-DeaQB4ym.js +31 -0
- package/dist/RouterListItemButton-DeaQB4ym.js.map +1 -0
- 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 +10 -0
- package/dist/{src/components/layout → components/core}/TypographyWithIcon.d.ts +1 -1
- package/dist/components/core/account/UserAvatar.d.ts +2 -0
- package/dist/components/core/account/UserMenu.d.ts +2 -0
- package/dist/components/core/navigation/NavigationContent.d.ts +11 -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/{src/components/dataGrid → components/data-grid}/ChipInputCell.d.ts +3 -3
- 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/{src/components → components}/form/FormAutocomplete.d.ts +3 -3
- package/dist/{src/components → components}/form/FormCheckbox.d.ts +3 -3
- 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/{src/components → components}/form/FormNumberField.d.ts +4 -7
- package/dist/{src/components → components}/form/FormRadioGroup.d.ts +4 -4
- package/dist/{src/components → components}/form/FormSlider.d.ts +3 -3
- package/dist/components/form/FormSubmitButton.d.ts +4 -0
- package/dist/{src/components → components}/form/FormSwitch.d.ts +3 -3
- package/dist/{src/components → components}/form/FormTextField.d.ts +3 -3
- 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/RouterFab.d.ts +6 -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/components.js +3255 -0
- package/dist/components.js.map +1 -0
- package/dist/contexts/DialogsContext.d.ts +6 -0
- package/dist/contexts/FileContext.d.ts +13 -0
- package/dist/contexts/NotificationContext.d.ts +9 -0
- package/dist/dist-Bxzg1_9c.js +152 -0
- package/dist/dist-Bxzg1_9c.js.map +1 -0
- package/dist/exports/components.d.ts +15 -0
- package/dist/exports/hooks.d.ts +7 -0
- package/dist/exports/index.d.ts +5 -0
- package/dist/exports/middleware.d.ts +2 -0
- package/dist/exports/models.d.ts +24 -0
- package/dist/exports/query.d.ts +3 -0
- package/dist/exports/utils.d.ts +6 -0
- package/dist/exports/vite.d.ts +1 -0
- package/dist/hooks/DialogsHooks.d.ts +42 -0
- package/dist/hooks/FormHooks.d.ts +52 -0
- package/dist/hooks/UseNotification.d.ts +1 -0
- package/dist/hooks/UseScanDetection.d.ts +28 -0
- package/dist/hooks.js +1075 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index.js +1105 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/auth/msalClient.d.ts +19 -0
- package/dist/lib/auth/msalServer.d.ts +11 -0
- package/dist/lib/auth/permissions.d.ts +4 -0
- package/dist/lib/auth/scopes.d.ts +4 -0
- package/dist/lib/db/collections/userCollection.d.ts +18 -0
- package/dist/lib/queryClient.d.ts +2 -0
- package/dist/lib/theme.d.ts +1 -0
- package/dist/lib/utils.d.ts +63 -0
- package/dist/lib/vite-plugin.d.ts +2 -0
- package/dist/middleware/authMiddleware.d.ts +22 -0
- package/dist/middleware/validationMiddleware.d.ts +4 -0
- package/dist/middleware.js +1051 -0
- package/dist/middleware.js.map +1 -0
- package/dist/models/LayoutOptions.d.ts +7 -0
- package/dist/models/Navigation.d.ts +18 -0
- package/dist/models/TokenPayload.d.ts +9 -0
- package/dist/models/User.d.ts +10 -0
- package/dist/models/VaultConfig.d.ts +9 -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/models.js +150 -0
- package/dist/models.js.map +1 -0
- package/dist/providers/DialogsProvider.d.ts +5 -0
- package/dist/providers/LayoutProvider.d.ts +12 -0
- package/dist/providers/MsalAuthProvider.d.ts +6 -0
- package/dist/providers/NotificationProvider.d.ts +7 -0
- package/dist/queries/ApprovalQueries.d.ts +661 -0
- package/dist/queries/FileQueries.d.ts +205 -0
- package/dist/queries/PeopleSoftQueries.d.ts +2173 -0
- package/dist/queries/index.d.ts +2958 -0
- package/dist/queries-D-DV5lCw.js +2941 -0
- package/dist/queries-D-DV5lCw.js.map +1 -0
- package/dist/query.js +3 -0
- package/dist/queryClient-B__OEZ70.js +7 -0
- package/dist/queryClient-B__OEZ70.js.map +1 -0
- package/dist/utils-C4oJ0tr5.js +157 -0
- package/dist/utils-C4oJ0tr5.js.map +1 -0
- package/dist/utils.js +35 -0
- package/dist/utils.js.map +1 -0
- package/dist/vite.js +110 -0
- package/dist/vite.js.map +1 -0
- package/package.json +132 -62
- package/dist/src/components/Layout.d.ts +0 -16
- package/dist/src/components/Layout.js +0 -122
- package/dist/src/components/Layout.js.map +0 -1
- package/dist/src/components/dataGrid/ChipInputCell.js +0 -17
- package/dist/src/components/dataGrid/ChipInputCell.js.map +0 -1
- package/dist/src/components/dataGrid/EditableColumnHeader.d.ts +0 -2
- package/dist/src/components/dataGrid/EditableColumnHeader.js +0 -7
- package/dist/src/components/dataGrid/EditableColumnHeader.js.map +0 -1
- package/dist/src/components/dataGrid/GridToolbar.d.ts +0 -8
- package/dist/src/components/dataGrid/GridToolbar.js +0 -40
- package/dist/src/components/dataGrid/GridToolbar.js.map +0 -1
- package/dist/src/components/dataGrid/TableContainer.d.ts +0 -3
- package/dist/src/components/dataGrid/TableContainer.js +0 -32
- package/dist/src/components/dataGrid/TableContainer.js.map +0 -1
- package/dist/src/components/form/FormAutocomplete.js +0 -10
- package/dist/src/components/form/FormAutocomplete.js.map +0 -1
- package/dist/src/components/form/FormCheckbox.js +0 -11
- package/dist/src/components/form/FormCheckbox.js.map +0 -1
- package/dist/src/components/form/FormDatePicker.d.ts +0 -9
- package/dist/src/components/form/FormDatePicker.js +0 -19
- package/dist/src/components/form/FormDatePicker.js.map +0 -1
- package/dist/src/components/form/FormDateTimePicker.d.ts +0 -9
- package/dist/src/components/form/FormDateTimePicker.js +0 -19
- package/dist/src/components/form/FormDateTimePicker.js.map +0 -1
- package/dist/src/components/form/FormNumberField.js +0 -12
- package/dist/src/components/form/FormNumberField.js.map +0 -1
- package/dist/src/components/form/FormRadioGroup.js +0 -11
- package/dist/src/components/form/FormRadioGroup.js.map +0 -1
- package/dist/src/components/form/FormSlider.js +0 -11
- package/dist/src/components/form/FormSlider.js.map +0 -1
- package/dist/src/components/form/FormSubmitButton.d.ts +0 -5
- package/dist/src/components/form/FormSubmitButton.js +0 -13
- package/dist/src/components/form/FormSubmitButton.js.map +0 -1
- package/dist/src/components/form/FormSwitch.js +0 -11
- package/dist/src/components/form/FormSwitch.js.map +0 -1
- package/dist/src/components/form/FormTextField.js +0 -11
- package/dist/src/components/form/FormTextField.js.map +0 -1
- package/dist/src/components/layout/AccountMenu.d.ts +0 -9
- package/dist/src/components/layout/AccountMenu.js +0 -44
- package/dist/src/components/layout/AccountMenu.js.map +0 -1
- package/dist/src/components/layout/DevelopmentBanner.d.ts +0 -7
- package/dist/src/components/layout/DevelopmentBanner.js +0 -29
- package/dist/src/components/layout/DevelopmentBanner.js.map +0 -1
- package/dist/src/components/layout/ErrorPage.d.ts +0 -2
- package/dist/src/components/layout/ErrorPage.js +0 -25
- package/dist/src/components/layout/ErrorPage.js.map +0 -1
- package/dist/src/components/layout/LayoutDialog.d.ts +0 -12
- package/dist/src/components/layout/LayoutDialog.js +0 -12
- package/dist/src/components/layout/LayoutDialog.js.map +0 -1
- package/dist/src/components/layout/LayoutSnackbar.d.ts +0 -8
- package/dist/src/components/layout/LayoutSnackbar.js +0 -25
- package/dist/src/components/layout/LayoutSnackbar.js.map +0 -1
- package/dist/src/components/layout/NavigationDrawer.d.ts +0 -11
- package/dist/src/components/layout/NavigationDrawer.js +0 -70
- package/dist/src/components/layout/NavigationDrawer.js.map +0 -1
- package/dist/src/components/layout/NotificationMenu.d.ts +0 -8
- package/dist/src/components/layout/NotificationMenu.js +0 -26
- package/dist/src/components/layout/NotificationMenu.js.map +0 -1
- package/dist/src/components/layout/TypographyWithIcon.js +0 -22
- package/dist/src/components/layout/TypographyWithIcon.js.map +0 -1
- package/dist/src/components/layout/Unauthorized.d.ts +0 -2
- package/dist/src/components/layout/Unauthorized.js +0 -26
- package/dist/src/components/layout/Unauthorized.js.map +0 -1
- package/dist/src/contexts/LayoutContext.d.ts +0 -40
- package/dist/src/contexts/LayoutContext.js +0 -60
- package/dist/src/contexts/LayoutContext.js.map +0 -1
- package/dist/src/contexts/UserContext.d.ts +0 -24
- package/dist/src/contexts/UserContext.js +0 -55
- package/dist/src/contexts/UserContext.js.map +0 -1
- package/dist/src/hooks/FormHooks.d.ts +0 -46
- package/dist/src/hooks/FormHooks.js +0 -31
- package/dist/src/hooks/FormHooks.js.map +0 -1
- package/dist/src/hooks/UseSnackbar.d.ts +0 -10
- package/dist/src/hooks/UseSnackbar.js +0 -23
- package/dist/src/hooks/UseSnackbar.js.map +0 -1
- package/dist/src/hooks/UseUser.d.ts +0 -10
- package/dist/src/hooks/UseUser.js +0 -25
- package/dist/src/hooks/UseUser.js.map +0 -1
- package/dist/src/index.d.ts +0 -20
- package/dist/src/index.js +0 -15
- package/dist/src/index.js.map +0 -1
- package/dist/src/models/Error.d.ts +0 -6
- package/dist/src/models/Error.js +0 -2
- package/dist/src/models/Error.js.map +0 -1
- package/dist/src/models/KeycloakSettings.d.ts +0 -8
- package/dist/src/models/KeycloakSettings.js +0 -2
- package/dist/src/models/KeycloakSettings.js.map +0 -1
- package/dist/src/models/LayoutPaletteColorOptions.d.ts +0 -6
- package/dist/src/models/LayoutPaletteColorOptions.js +0 -2
- package/dist/src/models/LayoutPaletteColorOptions.js.map +0 -1
- package/dist/src/models/LayoutRoute.d.ts +0 -14
- package/dist/src/models/LayoutRoute.js +0 -2
- package/dist/src/models/LayoutRoute.js.map +0 -1
- package/dist/src/models/Notification.d.ts +0 -9
- package/dist/src/models/Notification.js +0 -2
- package/dist/src/models/Notification.js.map +0 -1
- package/dist/src/models/PeoplesoftDepartment.d.ts +0 -14
- package/dist/src/models/PeoplesoftDepartment.js +0 -2
- package/dist/src/models/PeoplesoftDepartment.js.map +0 -1
- package/dist/src/models/PeoplesoftEmployee.d.ts +0 -34
- package/dist/src/models/PeoplesoftEmployee.js +0 -2
- package/dist/src/models/PeoplesoftEmployee.js.map +0 -1
- package/dist/src/models/Snackbar.d.ts +0 -15
- package/dist/src/models/Snackbar.js +0 -2
- package/dist/src/models/Snackbar.js.map +0 -1
- package/dist/src/models/User.d.ts +0 -27
- package/dist/src/models/User.js +0 -11
- package/dist/src/models/User.js.map +0 -1
- package/dist/src/models/types/EmployeeCategoryGroup.d.ts +0 -1
- package/dist/src/models/types/EmployeeCategoryGroup.js +0 -2
- package/dist/src/models/types/EmployeeCategoryGroup.js.map +0 -1
- package/dist/src/models/types/EmployeeStatus.d.ts +0 -1
- package/dist/src/models/types/EmployeeStatus.js +0 -2
- package/dist/src/models/types/EmployeeStatus.js.map +0 -1
- package/dist/src/utils/Auth.d.ts +0 -12
- package/dist/src/utils/Auth.js +0 -49
- package/dist/src/utils/Auth.js.map +0 -1
- package/dist/src/utils/Fetches.d.ts +0 -5
- package/dist/src/utils/Fetches.js +0 -66
- package/dist/src/utils/Fetches.js.map +0 -1
- package/dist/src/utils/FormUtils.d.ts +0 -7
- package/dist/src/utils/FormUtils.js +0 -9
- package/dist/src/utils/FormUtils.js.map +0 -1
- package/dist/src/utils/Helpers.d.ts +0 -11
- package/dist/src/utils/Helpers.js +0 -26
- package/dist/src/utils/Helpers.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/src/components/Layout.tsx +0 -183
- package/src/components/dataGrid/ChipInputCell.tsx +0 -31
- package/src/components/dataGrid/EditableColumnHeader.tsx +0 -7
- package/src/components/dataGrid/GridToolbar.tsx +0 -63
- package/src/components/dataGrid/TableContainer.tsx +0 -39
- package/src/components/form/FormAutocomplete.tsx +0 -34
- package/src/components/form/FormCheckbox.tsx +0 -32
- package/src/components/form/FormDatePicker.tsx +0 -34
- package/src/components/form/FormDateTimePicker.tsx +0 -34
- package/src/components/form/FormNumberField.tsx +0 -33
- package/src/components/form/FormRadioGroup.tsx +0 -43
- package/src/components/form/FormSlider.tsx +0 -28
- package/src/components/form/FormSubmitButton.tsx +0 -29
- package/src/components/form/FormSwitch.tsx +0 -32
- package/src/components/form/FormTextField.tsx +0 -26
- package/src/components/layout/AccountMenu.tsx +0 -160
- package/src/components/layout/DevelopmentBanner.tsx +0 -54
- package/src/components/layout/ErrorPage.tsx +0 -34
- package/src/components/layout/LayoutDialog.tsx +0 -50
- package/src/components/layout/LayoutSnackbar.tsx +0 -44
- package/src/components/layout/NavigationDrawer.tsx +0 -131
- package/src/components/layout/NotificationMenu.tsx +0 -76
- package/src/components/layout/TypographyWithIcon.tsx +0 -35
- package/src/components/layout/Unauthorized.tsx +0 -37
- package/src/contexts/LayoutContext.tsx +0 -127
- package/src/contexts/UserContext.tsx +0 -88
- package/src/hooks/FormHooks.ts +0 -33
- package/src/hooks/UseSnackbar.tsx +0 -28
- package/src/hooks/UseUser.tsx +0 -29
- package/src/index.ts +0 -27
- package/src/models/Error.tsx +0 -6
- package/src/models/KeycloakSettings.ts +0 -8
- package/src/models/LayoutPaletteColorOptions.tsx +0 -7
- package/src/models/LayoutRoute.ts +0 -15
- package/src/models/Notification.ts +0 -10
- package/src/models/PeoplesoftDepartment.ts +0 -15
- package/src/models/PeoplesoftEmployee.ts +0 -35
- package/src/models/Snackbar.ts +0 -16
- package/src/models/User.ts +0 -13
- package/src/models/types/EmployeeCategoryGroup.ts +0 -1
- package/src/models/types/EmployeeStatus.ts +0 -1
- package/src/utils/Auth.ts +0 -58
- package/src/utils/Fetches.ts +0 -83
- package/src/utils/FormUtils.ts +0 -22
- package/src/utils/Helpers.ts +0 -27
- package/tsconfig.json +0 -29
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TextFieldProps } from '@mui/material';
|
|
2
|
+
import { DateTimeRangePickerProps } from '@mui/x-date-pickers-pro';
|
|
3
|
+
import { FC } from 'react';
|
|
4
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
5
|
+
export interface FormDateTimeRangePickerProps extends Omit<DateTimeRangePickerProps, FormOmittedProps> {
|
|
6
|
+
textFieldProps?: TextFieldProps;
|
|
7
|
+
}
|
|
8
|
+
export declare const FormDateTimeRangePicker: FC<FormDateTimeRangePickerProps>;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InputAttributes, NumericFormatProps } from 'react-number-format/types/types';
|
|
2
2
|
import { FC } from 'react';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
interface
|
|
6
|
-
}
|
|
7
|
-
export interface FormNumberFieldProps extends FormTextFieldProps {
|
|
3
|
+
import { TextFieldProps } from '@mui/material';
|
|
4
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
5
|
+
export interface FormNumberFieldProps extends Omit<TextFieldProps, FormOmittedProps> {
|
|
8
6
|
defaultValue?: number | null;
|
|
9
7
|
options?: Omit<NumericFormatProps<InputAttributes>, "customInput" | "onValueChange" | keyof InputAttributes>;
|
|
10
8
|
}
|
|
11
9
|
export declare const FormNumberField: FC<FormNumberFieldProps>;
|
|
12
|
-
export {};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { RadioGroupProps } from
|
|
2
|
-
import { FC } from
|
|
3
|
-
import { FormOmittedProps } from
|
|
1
|
+
import { RadioGroupProps } from '@mui/material';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
4
4
|
interface Option {
|
|
5
5
|
label: string;
|
|
6
6
|
value: string | number;
|
|
7
7
|
}
|
|
8
8
|
export interface FormRadioGroupProps extends Omit<RadioGroupProps, FormOmittedProps> {
|
|
9
9
|
label?: string;
|
|
10
|
-
options: Option
|
|
10
|
+
options: Array<Option>;
|
|
11
11
|
}
|
|
12
12
|
export declare const FormRadioGroup: FC<FormRadioGroupProps>;
|
|
13
13
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SliderProps } from
|
|
2
|
-
import { FC } from
|
|
3
|
-
import { FormOmittedProps } from
|
|
1
|
+
import { SliderProps } from '@mui/material';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
4
4
|
export interface FormSliderProps extends Omit<SliderProps, FormOmittedProps> {
|
|
5
5
|
label?: string;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SwitchProps } from
|
|
2
|
-
import { FC } from
|
|
3
|
-
import { FormOmittedProps } from
|
|
1
|
+
import { SwitchProps } from '@mui/material';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
4
4
|
export interface FormSwitchProps extends Omit<SwitchProps, FormOmittedProps> {
|
|
5
5
|
label?: string;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TextFieldProps } from
|
|
2
|
-
import { FC } from
|
|
3
|
-
import { FormOmittedProps } from
|
|
1
|
+
import { TextFieldProps } from '@mui/material';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
4
4
|
export interface FormTextFieldProps extends Omit<TextFieldProps, FormOmittedProps> {
|
|
5
5
|
type?: "color" | "email" | "password" | "search" | "tel" | "text" | "url";
|
|
6
6
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TextFieldProps } from '@mui/material';
|
|
2
|
+
import { TimePickerProps } from '@mui/x-date-pickers-pro';
|
|
3
|
+
import { FC } from 'react';
|
|
4
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
5
|
+
export interface FormTimePickerProps extends Omit<TimePickerProps, FormOmittedProps> {
|
|
6
|
+
textFieldProps?: TextFieldProps;
|
|
7
|
+
}
|
|
8
|
+
export declare const FormTimePicker: FC<FormTimePickerProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TextFieldProps } from '@mui/material';
|
|
2
|
+
import { TimeRangePickerProps } from '@mui/x-date-pickers-pro';
|
|
3
|
+
import { FC } from 'react';
|
|
4
|
+
import { FormOmittedProps } from '../../lib/utils';
|
|
5
|
+
export interface FormTimeRangePickerProps extends Omit<TimeRangePickerProps, FormOmittedProps> {
|
|
6
|
+
textFieldProps?: TextFieldProps;
|
|
7
|
+
}
|
|
8
|
+
export declare const FormTimeRangePicker: FC<FormTimeRangePickerProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ButtonProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<ButtonProps<"a">, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterButton: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { FabProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<FabProps<"a">, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterFab: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { GridActionsCellItemProps } from '@mui/x-data-grid-premium';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<GridActionsCellItemProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
export declare const RouterGridActionsCellItem: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { IconButtonProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<IconButtonProps<"a">, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterIconButton: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { LinkProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterLink: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ListItemButtonProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<ListItemButtonProps<"a">, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterListItemButton: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function RouterNotFound(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TabProps } from '@mui/material';
|
|
3
|
+
import { LinkComponent } from '@tanstack/react-router';
|
|
4
|
+
declare const Component: React.ForwardRefExoticComponent<Omit<TabProps<"a">, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
5
|
+
export declare const RouterTab: LinkComponent<typeof Component>;
|
|
6
|
+
export {};
|