wcz-test 2.7.0 → 2.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 +15 -15
- package/dist/index.js +221 -116
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { TypographyProps, ChipProps, ButtonProps, LinkProps, TabProps, CssVarsThemeOptions, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
|
|
1
|
+
import { TypographyProps, ChipProps, ButtonProps, IconButtonProps, LinkProps, TabProps, CssVarsThemeOptions, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { GridValidRowModel, GridRenderCellParams, GridColumnHeaderParams } from '@mui/x-data-grid-premium';
|
|
3
|
+
import { GridValidRowModel, GridRenderCellParams, GridColumnHeaderParams, GridActionsCellItemProps } from '@mui/x-data-grid-premium';
|
|
4
4
|
import { LinkComponent, ErrorComponentProps } from '@tanstack/react-router';
|
|
5
5
|
import * as react from 'react';
|
|
6
6
|
import react__default, { FC } from 'react';
|
|
@@ -37,20 +37,20 @@ declare const ChipInputCell: <T extends GridValidRowModel>({ params, slotProps,
|
|
|
37
37
|
|
|
38
38
|
declare const EditableColumnHeader: <T extends GridValidRowModel>({ colDef }: GridColumnHeaderParams<T>) => react_jsx_runtime.JSX.Element;
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
declare const MUIButtonLinkComponent: react__default.ForwardRefExoticComponent<Omit<MUIButtonLinkProps, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
43
|
-
declare const RouterButton: LinkComponent<typeof MUIButtonLinkComponent>;
|
|
40
|
+
declare const Component$4: react__default.ForwardRefExoticComponent<Omit<ButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
41
|
+
declare const RouterButton: LinkComponent<typeof Component$4>;
|
|
44
42
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
declare const MUILinkComponent: react__default.ForwardRefExoticComponent<Omit<MUILinkProps, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
48
|
-
declare const RouterLink: LinkComponent<typeof MUILinkComponent>;
|
|
43
|
+
declare const Component$3: react__default.ForwardRefExoticComponent<GridActionsCellItemProps & react__default.RefAttributes<HTMLButtonElement>>;
|
|
44
|
+
declare const RouterGridActionsCellItem: LinkComponent<typeof Component$3>;
|
|
49
45
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
declare const
|
|
46
|
+
declare const Component$2: react__default.ForwardRefExoticComponent<Omit<IconButtonProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
47
|
+
declare const RouterIconButton: LinkComponent<typeof Component$2>;
|
|
48
|
+
|
|
49
|
+
declare const Component$1: react__default.ForwardRefExoticComponent<Omit<LinkProps, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
50
|
+
declare const RouterLink: LinkComponent<typeof Component$1>;
|
|
51
|
+
|
|
52
|
+
declare const Component: react__default.ForwardRefExoticComponent<Omit<TabProps<"a">, "ref"> & react__default.RefAttributes<HTMLAnchorElement>>;
|
|
53
|
+
declare const RouterTab: LinkComponent<typeof Component>;
|
|
54
54
|
|
|
55
55
|
declare function RouterNotFound(): react_jsx_runtime.JSX.Element;
|
|
56
56
|
|
|
@@ -343,4 +343,4 @@ interface PeoplesoftDepartment {
|
|
|
343
343
|
manager: PeoplesoftEmployee;
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
export { ChipInputCell, EditableColumnHeader, type Email, type EmailAttachment, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, LayoutProvider, type NavigationParams, type PeoplesoftDepartment, type PeoplesoftEmployee, Platform, RouterButton, RouterError, RouterLink, RouterNotFound, RouterTab, TypographyWithIcon, type User, WISTRON_PRIMARY_COLOR, WISTRON_SECONDARY_COLOR, getContrastTextColor, rootRouteHead, useDeleteFile, useDeleteFiles, useDownloadFile, useFieldContext, useFormContext, useGetFile, useGetFileMetas, useGetFileThumbnail, useLayoutForm, useOpenFile, useUpdateFileMeta, useUploadFile, wczApiClient, withLayoutForm };
|
|
346
|
+
export { ChipInputCell, EditableColumnHeader, type Email, type EmailAttachment, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, LayoutProvider, type NavigationParams, type PeoplesoftDepartment, type PeoplesoftEmployee, Platform, RouterButton, RouterError, RouterGridActionsCellItem, RouterIconButton, RouterLink, RouterNotFound, RouterTab, TypographyWithIcon, type User, WISTRON_PRIMARY_COLOR, WISTRON_SECONDARY_COLOR, getContrastTextColor, rootRouteHead, useDeleteFile, useDeleteFiles, useDownloadFile, useFieldContext, useFormContext, useGetFile, useGetFileMetas, useGetFileThumbnail, useLayoutForm, useOpenFile, useUpdateFileMeta, useUploadFile, wczApiClient, withLayoutForm };
|