wcz-test 3.3.0 → 3.4.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 CHANGED
@@ -1,4 +1,4 @@
1
- import { TypographyProps, SxProps, Theme, TableContainerProps, ChipProps, ButtonProps, IconButtonProps, LinkProps, TabProps, CssVarsThemeOptions, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
1
+ import { TypographyProps, SxProps, Theme, BoxProps, ChipProps, ButtonProps, IconButtonProps, LinkProps, TabProps, ListItemButtonProps, CssVarsThemeOptions, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
2
2
  import * as react from 'react';
3
3
  import react__default, { FC, ReactNode, ComponentType } from 'react';
4
4
  import { DropzoneOptions } from 'react-dropzone';
@@ -32,7 +32,7 @@ interface PageHeaderProps {
32
32
  }
33
33
  declare const PageHeader: FC<PageHeaderProps>;
34
34
 
35
- declare const TableContainer: FC<TableContainerProps>;
35
+ declare const TableContainer: FC<BoxProps>;
36
36
 
37
37
  interface DropzoneProps extends DropzoneOptions {
38
38
  sx?: SxProps<Theme>;
@@ -92,20 +92,23 @@ declare const ChipInputCell: <T extends GridValidRowModel>({ params, slotProps,
92
92
 
93
93
  declare const EditableColumnHeader: <T extends GridValidRowModel>({ colDef }: GridColumnHeaderParams<T>) => react_jsx_runtime.JSX.Element;
94
94
 
95
- declare const Component$4: react__default.ForwardRefExoticComponent<Omit<ButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
96
- declare const RouterButton: LinkComponent<typeof Component$4>;
95
+ declare const Component$5: react__default.ForwardRefExoticComponent<Omit<ButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
96
+ declare const RouterButton: LinkComponent<typeof Component$5>;
97
97
 
98
- declare const Component$3: react__default.ForwardRefExoticComponent<GridActionsCellItemProps & react__default.RefAttributes<HTMLButtonElement>>;
99
- declare const RouterGridActionsCellItem: LinkComponent<typeof Component$3>;
98
+ declare const Component$4: react__default.ForwardRefExoticComponent<GridActionsCellItemProps & react__default.RefAttributes<HTMLButtonElement>>;
99
+ declare const RouterGridActionsCellItem: LinkComponent<typeof Component$4>;
100
100
 
101
- declare const Component$2: react__default.ForwardRefExoticComponent<Omit<IconButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
102
- declare const RouterIconButton: LinkComponent<typeof Component$2>;
101
+ declare const Component$3: react__default.ForwardRefExoticComponent<Omit<IconButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
102
+ declare const RouterIconButton: LinkComponent<typeof Component$3>;
103
103
 
104
- declare const Component$1: react__default.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
105
- declare const RouterLink: LinkComponent<typeof Component$1>;
104
+ declare const Component$2: react__default.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
105
+ declare const RouterLink: LinkComponent<typeof Component$2>;
106
106
 
107
- declare const Component: react__default.ForwardRefExoticComponent<Omit<TabProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
108
- declare const RouterTab: LinkComponent<typeof Component>;
107
+ declare const Component$1: react__default.ForwardRefExoticComponent<Omit<TabProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
108
+ declare const RouterTab: LinkComponent<typeof Component$1>;
109
+
110
+ declare const Component: react__default.ForwardRefExoticComponent<Omit<ListItemButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
111
+ declare const RouterListItemButton: LinkComponent<typeof Component>;
109
112
 
110
113
  declare function RouterNotFound(): react_jsx_runtime.JSX.Element;
111
114
 
@@ -132,13 +135,16 @@ interface NavigationPageItem extends Pick<LinkOptions, "to" | "href" | "params"
132
135
  title: string;
133
136
  icon: React.ReactNode;
134
137
  children?: NavigationItem[];
138
+ hidden?: boolean;
135
139
  }
136
140
  interface NavigationDivider {
137
141
  kind: "divider";
142
+ hidden?: boolean;
138
143
  }
139
144
  interface NavigationHeader {
140
145
  kind: "header";
141
146
  title: string;
147
+ hidden?: boolean;
142
148
  }
143
149
  type NavigationItem = NavigationPageItem | NavigationDivider | NavigationHeader;
144
150
  type Navigation = NavigationItem[];
@@ -417,4 +423,4 @@ interface Department {
417
423
  manager: Employee;
418
424
  }
419
425
 
420
- export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, LayoutProvider, type Navigation, type NavigationParams, PageHeader, Platform, RouterButton, RouterError, RouterGridActionsCellItem, RouterIconButton, RouterLink, RouterNotFound, RouterTab, TableContainer, TypographyWithIcon, type User, rootRouteHead, useDeleteFile, useDeleteFiles, useDialogs, useDownloadFile, useFieldContext, useFormContext, useGetFile, useGetFileMetas, useGetFileThumbnail, useLayoutForm, useOpenFile, useUpdateFileMeta, useUploadFile, wczApiClient, withLayoutForm };
426
+ export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, LayoutProvider, type Navigation, type NavigationParams, PageHeader, Platform, RouterButton, RouterError, RouterGridActionsCellItem, RouterIconButton, RouterLink, RouterListItemButton, RouterNotFound, RouterTab, TableContainer, TypographyWithIcon, type User, rootRouteHead, useDeleteFile, useDeleteFiles, useDialogs, useDownloadFile, useFieldContext, useFormContext, useGetFile, useGetFileMetas, useGetFileThumbnail, useLayoutForm, useOpenFile, useUpdateFileMeta, useUploadFile, wczApiClient, withLayoutForm };