wcz-test 4.6.0 → 4.6.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/index.d.ts +2 -8
- package/dist/index.js +89 -143
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ import * as _tanstack_react_form from '@tanstack/react-form';
|
|
|
13
13
|
import * as _tanstack_form_core from '@tanstack/form-core';
|
|
14
14
|
export { default as useLocalStorageState } from 'use-local-storage-state';
|
|
15
15
|
export { useTranslation } from 'react-i18next';
|
|
16
|
-
import { TFunction } from 'i18next';
|
|
17
16
|
export { t } from 'i18next';
|
|
18
17
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
19
18
|
import { DefinedInitialDataOptions, UseMutationOptions } from '@tanstack/react-query';
|
|
@@ -117,7 +116,7 @@ interface RouterErrorProps {
|
|
|
117
116
|
}
|
|
118
117
|
declare const RouterError: FC<RouterErrorProps>;
|
|
119
118
|
|
|
120
|
-
interface NavigationPageItem extends Pick<LinkOptions, "to"
|
|
119
|
+
interface NavigationPageItem extends Partial<Pick<LinkOptions, "to" | "href" | "params" | "search">> {
|
|
121
120
|
title: string;
|
|
122
121
|
icon: React.ReactNode;
|
|
123
122
|
children?: Array<NavigationItem>;
|
|
@@ -341,11 +340,6 @@ interface User {
|
|
|
341
340
|
category: string;
|
|
342
341
|
}
|
|
343
342
|
|
|
344
|
-
interface NavigationParams {
|
|
345
|
-
user: User;
|
|
346
|
-
t: TFunction<"translation", undefined>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
343
|
interface EmailAttachment {
|
|
350
344
|
appName: string;
|
|
351
345
|
subId: string;
|
|
@@ -423,4 +417,4 @@ interface Department {
|
|
|
423
417
|
manager: Employee;
|
|
424
418
|
}
|
|
425
419
|
|
|
426
|
-
export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, LayoutProvider, type Navigation,
|
|
420
|
+
export { ChipInputCell, type Department, type DialogProps, Dropzone, EditableColumnHeader, type Email, type EmailAttachment, type Employee, EmployeeCategoryGroup, EmployeeStatus, type FileMeta, FileViewer, LayoutProvider, type Navigation, 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 };
|