identity-admin-ui 1.8.5 → 1.8.7

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.
@@ -1,3 +1,4 @@
1
1
  import { UseFormGetValues, UseFormSetValue } from 'react-hook-form';
2
2
  import { SizeType } from '../../helpers/Types';
3
- export declare function getFieldType(SIZE: SizeType, key: string, schema: any, referencedValues: any, loading: any, fullKey: string, isEnglish: boolean, handleOpenChangedState: (apiRoute: string, pathRoute: string, value: any, key: string, fullKey: string) => Promise<void>, onRefrenceChanged: (value: any, key: string) => void, setValue: UseFormSetValue<any>, getValues: UseFormGetValues<any>): import("react/jsx-runtime").JSX.Element | undefined;
3
+ import { IPaginatedReference } from '../../helpers/ReferencedValues/IPaginatedReference';
4
+ export declare function getFieldType(SIZE: SizeType, key: string, schema: any, paginatedRefValues: IPaginatedReference, loading: any, fullKey: string, isEnglish: boolean, handlePaginatedReferenceOpen: (apiRoute: string, pathRoute: string, value: any, key: string, fullKey: string, page: number, filter?: string) => Promise<void>, onRefrenceChanged: (value: any, key: string) => void, setValue: UseFormSetValue<any>, getValues: UseFormGetValues<any>): import("react/jsx-runtime").JSX.Element | undefined;
@@ -1,5 +1,6 @@
1
1
  import { UseFormGetValues, UseFormSetValue } from 'react-hook-form';
2
2
  import { SizeType } from '../../../helpers/Types';
3
- export declare function getQuickFilterFieldType(SIZE: SizeType, key: string, schema: any, referencedValues: any, loading: any, fullKey: string, isEnglish: boolean, values: {
3
+ import { IPaginatedReference } from '../../../helpers/ReferencedValues/IPaginatedReference';
4
+ export declare function getQuickFilterFieldType(SIZE: SizeType, key: string, schema: any, paginatedRefValues: IPaginatedReference, loading: any, fullKey: string, isEnglish: boolean, values: {
4
5
  [key: string]: any;
5
- }, handleOpenChangedState: (apiRoute: string, pathRoute: string, value: any, key: string, fullKey: string) => Promise<void>, onChange: (key: any, value: any, searchParamsfields: string[]) => Promise<void>, setValue: UseFormSetValue<any>, getValues: UseFormGetValues<any>): import("react/jsx-runtime").JSX.Element | undefined;
6
+ }, handlePaginatedReferenceOpen: (apiRoute: string, pathRoute: string, value: any, key: string, fullKey: string, page: number, filter?: string) => Promise<void>, onChange: (key: any, value: any, searchParamsfields: string[]) => Promise<void>, setValue: UseFormSetValue<any>, getValues: UseFormGetValues<any>): import("react/jsx-runtime").JSX.Element | undefined;
@@ -0,0 +1,5 @@
1
+ import IResource from '../../../context/Resource';
2
+ export declare class ReferenceTitleHelper {
3
+ static get(referencedResource: IResource, data: any): any;
4
+ private static getReferenceValue;
5
+ }