wcz-test 4.6.12 → 4.8.0
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 +4 -11
- package/dist/index.js +360 -373
- package/dist/index.js.map +1 -1
- package/package.json +10 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TypographyProps, SxProps, Theme,
|
|
1
|
+
import { TypographyProps, BoxProps, SxProps, Theme, ChipProps, ButtonProps, IconButtonProps, LinkProps, TabProps, ListItemButtonProps, CssVarsThemeOptions, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { FC,
|
|
3
|
+
import react__default, { FC, ComponentType, ReactNode } from 'react';
|
|
4
4
|
import { DropzoneOptions } from 'react-dropzone';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { GridValidRowModel, GridRenderCellParams, GridColumnHeaderParams, GridActionsCellItemProps } from '@mui/x-data-grid-premium';
|
|
@@ -24,14 +24,7 @@ interface TypographyWithIconProps extends TypographyProps {
|
|
|
24
24
|
}
|
|
25
25
|
declare const TypographyWithIcon: React.FC<TypographyWithIconProps>;
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
title: string;
|
|
29
|
-
action?: ReactNode;
|
|
30
|
-
sx?: SxProps<Theme>;
|
|
31
|
-
}
|
|
32
|
-
declare const PageHeader: FC<PageHeaderProps>;
|
|
33
|
-
|
|
34
|
-
declare const TableContainer: FC<BoxProps>;
|
|
27
|
+
declare const Fullscreen: FC<BoxProps>;
|
|
35
28
|
|
|
36
29
|
interface DropzoneProps extends DropzoneOptions {
|
|
37
30
|
sx?: SxProps<Theme>;
|
|
@@ -417,4 +410,4 @@ interface Department {
|
|
|
417
410
|
manager: Employee;
|
|
418
411
|
}
|
|
419
412
|
|
|
420
|
-
export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, LayoutProvider, type Navigation,
|
|
413
|
+
export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, Fullscreen, LayoutProvider, type Navigation, Platform, RouterButton, RouterError, RouterGridActionsCellItem, RouterIconButton, RouterLink, RouterListItemButton, RouterNotFound, RouterTab, TypographyWithIcon, type User, rootRouteHead, useDeleteFile, useDeleteFiles, useDialogs, useDownloadFile, useFieldContext, useFormContext, useGetFile, useGetFileMetas, useGetFileThumbnail, useLayoutForm, useOpenFile, useUpdateFileMeta, useUploadFile, wczApiClient, withLayoutForm };
|