identity-admin-ui 1.7.14 → 1.7.15

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.
@@ -14,6 +14,7 @@ export interface Option {
14
14
  _id: string;
15
15
  title?: string;
16
16
  name?: string;
17
+ image?: string;
17
18
  }
18
19
  export default function RHFLazySelect({ name, options, loading, multiple, onOptionChange, onOpenChanged, ...other }: Props): import("react/jsx-runtime").JSX.Element;
19
20
  export {};
@@ -41,6 +41,8 @@ export interface IMainProperty {
41
41
  disableNextPreviousButtonsInShowPage?: boolean;
42
42
  disableNextPreviousButtonsInEditPage?: boolean;
43
43
  displayEditPageInShowPage?: boolean;
44
+ imageOnReferencePath?: string;
45
+ disableImageOnReference?: string;
44
46
  }
45
47
  export interface IParent {
46
48
  icon: string;
@@ -0,0 +1,4 @@
1
+ import IResource from '../../../context/Resource';
2
+ export declare class ReferenceHelper {
3
+ static getReferenceImage(referencedResource: IResource, record: any): string | undefined;
4
+ }