identity-admin-ui 1.10.17 → 1.10.18
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 +12 -12
- package/lib/cjs/types/components/DashboardFormFields/ArrayField/IdentityArray.d.ts +1 -1
- package/lib/cjs/types/components/hook-form/PaginatedLazySelect.d.ts +2 -1
- package/lib/cjs/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/cjs/types/sections/dashboard/NewEditForm.d.ts +3 -1
- package/lib/cjs/types/utils/FormWidthModulator/FieldWidthByType.d.ts +5 -0
- package/lib/cjs/types/utils/FormWidthModulator/heightTypeDiscriminator.d.ts +7 -0
- package/lib/esm/index.js +12 -12
- package/lib/esm/types/components/DashboardFormFields/ArrayField/IdentityArray.d.ts +1 -1
- package/lib/esm/types/components/hook-form/PaginatedLazySelect.d.ts +2 -1
- package/lib/esm/types/pages/IdentityEditPage.d.ts +2 -0
- package/lib/esm/types/sections/dashboard/NewEditForm.d.ts +3 -1
- package/lib/esm/types/utils/FormWidthModulator/FieldWidthByType.d.ts +5 -0
- package/lib/esm/types/utils/FormWidthModulator/heightTypeDiscriminator.d.ts +7 -0
- package/lib/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -11,4 +11,4 @@ export interface IIdentiyArray {
|
|
|
11
11
|
direction?: ArrayDirection;
|
|
12
12
|
numberOfColumns?: number;
|
|
13
13
|
}
|
|
14
|
-
export declare function IdentityArray({ draggable, addButtonText, handleRemove, itemComponent, handleDrop, handleAdd, list, direction, numberOfColumns }: IIdentiyArray): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function IdentityArray({ draggable, addButtonText, handleRemove, itemComponent, handleDrop, handleAdd, list, direction, numberOfColumns, }: IIdentiyArray): import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,6 +13,7 @@ type IProps = {
|
|
|
13
13
|
loadMoreText?: string;
|
|
14
14
|
resource?: IResource;
|
|
15
15
|
resourcePath?: string;
|
|
16
|
+
enableCreateNewButtonOnReference?: boolean;
|
|
16
17
|
};
|
|
17
18
|
type Props = IProps & TextFieldProps;
|
|
18
19
|
export interface Option {
|
|
@@ -21,5 +22,5 @@ export interface Option {
|
|
|
21
22
|
name?: string;
|
|
22
23
|
image?: string;
|
|
23
24
|
}
|
|
24
|
-
export default function PaginatedRHFLazySelect({ name, options, loading, multiple, onOptionChange, onOpenChanged, hasNext, loadMoreText, resource, resourcePath, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export default function PaginatedRHFLazySelect({ name, options, loading, multiple, onOptionChange, onOpenChanged, hasNext, loadMoreText, resource, resourcePath, enableCreateNewButtonOnReference, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
25
26
|
export {};
|
|
@@ -17,5 +17,7 @@ export interface ICreateEdit extends INextpreviousExtras {
|
|
|
17
17
|
BreadcrumbsChildren?: (props: any) => JSX.Element;
|
|
18
18
|
redirectPath?: (record: any) => string;
|
|
19
19
|
BreadCrumbLinks?: (props: any) => TLink[];
|
|
20
|
+
disableCreateNewButtonOnReference?: boolean;
|
|
21
|
+
keepFullWidthElements?: boolean;
|
|
20
22
|
}
|
|
21
23
|
export default function CreateEdit(props: ICreateEdit): import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,5 +10,7 @@ export interface INewEditFormProps {
|
|
|
10
10
|
redirectPath?: (record: any) => string;
|
|
11
11
|
afterEditSnackText?: (recordName: string) => string;
|
|
12
12
|
afterCreateSnackText?: (recordName: string) => string;
|
|
13
|
+
enableCreateNewButtonOnReference?: boolean;
|
|
14
|
+
keepFullWidthElements?: boolean;
|
|
13
15
|
}
|
|
14
|
-
export default function NewEditForm({ isEdit, id, record, path, mediaUploaderFields, onSubmitForm, referencedMap, modelRoute, redirectPath, afterCreateSnackText, afterEditSnackText, }: INewEditFormProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export default function NewEditForm({ isEdit, id, record, path, mediaUploaderFields, onSubmitForm, referencedMap, modelRoute, redirectPath, afterCreateSnackText, afterEditSnackText, enableCreateNewButtonOnReference, keepFullWidthElements, }: INewEditFormProps): import("react/jsx-runtime").JSX.Element;
|