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
+ }
package/lib/index.d.ts CHANGED
@@ -156,6 +156,8 @@ interface IMainProperty {
156
156
  disableNextPreviousButtonsInShowPage?: boolean;
157
157
  disableNextPreviousButtonsInEditPage?: boolean;
158
158
  displayEditPageInShowPage?: boolean;
159
+ imageOnReferencePath?: string;
160
+ disableImageOnReference?: string;
159
161
  }
160
162
  interface IParent {
161
163
  icon: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.7.14",
3
+ "version": "1.7.15",
4
4
  "description": "Identity solutions UI package using for identity-admin dashboard",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.js",