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/esm/index.css CHANGED
@@ -18,6 +18,12 @@
18
18
  border-color: lightgray;
19
19
  }
20
20
 
21
+ [dir="rtl"] .rdw-dropdown-carettoopen,
22
+ [dir="rtl"] .rdw-dropdown-carettoclose {
23
+ right: auto;
24
+ left: 10%;
25
+ }
26
+
21
27
  /*!
22
28
  Theme: Tomorrow Night
23
29
  Author: Chris Kempson (http://chriskempson.com)