identity-admin-ui 1.12.28 → 1.12.31

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.
@@ -99,6 +99,7 @@ export interface IAction {
99
99
  new: IActionMin;
100
100
  show: IActionMin;
101
101
  import?: IActionMin;
102
+ duplicate?: IActionMin;
102
103
  extras?: IExtras;
103
104
  }
104
105
  export interface IExtras {
@@ -17,6 +17,7 @@ export interface INewEditFormProps {
17
17
  fieldsMap?: Record<string, (props: {
18
18
  name: string;
19
19
  record?: any;
20
+ setUploading: (value: boolean) => void;
20
21
  }) => JSX.Element>;
21
22
  }
22
23
  export default function NewEditForm({ isEdit, isDuplicate, id, record, path, mediaUploaderFields, onSubmitForm, referencedMap, modelRoute, redirectPath, afterCreateSnackText, afterEditSnackText, enableCreateNewButtonOnReference, keepFullWidthElements, fieldsMap }: INewEditFormProps): import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -250,6 +250,7 @@ interface IAction {
250
250
  new: IActionMin;
251
251
  show: IActionMin;
252
252
  import?: IActionMin;
253
+ duplicate?: IActionMin;
253
254
  extras?: IExtras;
254
255
  }
255
256
  interface IExtras {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin-ui",
3
- "version": "1.12.28",
3
+ "version": "1.12.31",
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",