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.
- package/lib/cjs/index.js +9 -9
- package/lib/cjs/types/components/hook-form/RHFLazySelect.d.ts +1 -0
- package/lib/cjs/types/context/Resource.d.ts +2 -0
- package/lib/cjs/types/helpers/CrudHelper/CreateEdit/ReferenceImageHelper.d.ts +4 -0
- package/lib/esm/index.js +12 -12
- package/lib/esm/types/components/hook-form/RHFLazySelect.d.ts +1 -0
- package/lib/esm/types/context/Resource.d.ts +2 -0
- package/lib/esm/types/helpers/CrudHelper/CreateEdit/ReferenceImageHelper.d.ts +4 -0
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|
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;
|