identity-admin-ui 1.11.45 → 1.11.47
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.css +1843 -1843
- package/lib/cjs/index.js +135 -135
- package/lib/cjs/types/components/LocalesTabes.d.ts +2 -1
- package/lib/cjs/types/components/LocalizedStringForm.d.ts +2 -1
- package/lib/cjs/types/components/editor/toolbar.d.ts +7 -7
- package/lib/cjs/types/helpers/Contsants.d.ts +2 -1
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/cjs/types/helpers/Localization/LocalesEnums.d.ts +2 -1
- package/lib/cjs/types/pages/index.d.ts +8 -8
- package/lib/cjs/types/pages/maillog/ShowMailLog.d.ts +1 -1
- package/lib/esm/index.css +1843 -1843
- package/lib/esm/index.js +135 -135
- package/lib/esm/types/components/LocalesTabes.d.ts +2 -1
- package/lib/esm/types/components/LocalizedStringForm.d.ts +2 -1
- package/lib/esm/types/components/editor/toolbar.d.ts +7 -7
- package/lib/esm/types/helpers/Contsants.d.ts +2 -1
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/esm/types/helpers/Localization/LocalesEnums.d.ts +2 -1
- package/lib/esm/types/pages/index.d.ts +8 -8
- package/lib/esm/types/pages/maillog/ShowMailLog.d.ts +1 -1
- package/lib/index.d.ts +880 -876
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ type Props = {
|
|
|
3
3
|
handleChange: (event: React.SyntheticEvent, newValue: string) => void;
|
|
4
4
|
includeFrench?: boolean;
|
|
5
5
|
includeGerman?: boolean;
|
|
6
|
+
includeSpanish?: boolean;
|
|
6
7
|
};
|
|
7
|
-
export default function LocalizedTabs({ handleChange, includeFrench, includeGerman }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function LocalizedTabs({ handleChange, includeFrench, includeGerman, includeSpanish }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -10,9 +10,10 @@ type Props = {
|
|
|
10
10
|
value: string;
|
|
11
11
|
includeFrench?: boolean;
|
|
12
12
|
includeGerman?: boolean;
|
|
13
|
+
includeSpanish?: boolean;
|
|
13
14
|
setValue: UseFormSetValue<any>;
|
|
14
15
|
getValues: (name: string) => any;
|
|
15
16
|
handleChange: (event: React.SyntheticEvent, newValue: string) => void;
|
|
16
17
|
};
|
|
17
|
-
export default function LocalizedStringForm({ title, includeFrench, includeGerman, size, value, isEdit, fieldName, numberOfRows, setValue, getValues, handleChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export default function LocalizedStringForm({ title, includeFrench, includeGerman, includeSpanish, size, value, isEdit, fieldName, numberOfRows, setValue, getValues, handleChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
18
19
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare const formats: string[];
|
|
2
|
-
type EditorToolbarProps = {
|
|
3
|
-
id: string;
|
|
4
|
-
isSimple?: boolean;
|
|
5
|
-
};
|
|
6
|
-
export default function Toolbar({ id, isSimple, ...other }: EditorToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export {};
|
|
1
|
+
export declare const formats: string[];
|
|
2
|
+
type EditorToolbarProps = {
|
|
3
|
+
id: string;
|
|
4
|
+
isSimple?: boolean;
|
|
5
|
+
};
|
|
6
|
+
export default function Toolbar({ id, isSimple, ...other }: EditorToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -2,5 +2,6 @@ export declare enum Flags {
|
|
|
2
2
|
ENGLISH_FLAG = "https://pngimg.com/uploads/flags/flags_PNG14592.png",
|
|
3
3
|
ARABIC_FLAG = "/assets/icons/flags/ic_flag_sa.svg",
|
|
4
4
|
FRENCH_FLAG = "/assets/icons/flags/ic_flag_fr.svg",
|
|
5
|
-
GERMAN_FLAG = "/assets/icons/flags/ic_flag_de.svg"
|
|
5
|
+
GERMAN_FLAG = "/assets/icons/flags/ic_flag_de.svg",
|
|
6
|
+
SPANISH_FLAG = "/assets/icons/flags/ic_flag_es.svg"
|
|
6
7
|
}
|
|
@@ -65,4 +65,8 @@ export interface ShowRecordProps extends INextpreviousExtras {
|
|
|
65
65
|
* An optional flag to disable skeleton before loading record.
|
|
66
66
|
*/
|
|
67
67
|
hideSkeleton?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* An optional flag to disable fetching the record.
|
|
70
|
+
*/
|
|
71
|
+
disableFetchRecord?: boolean;
|
|
68
72
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from './IdentityPage';
|
|
2
|
-
export * from './IdentityPage.types';
|
|
3
|
-
export { default as IdentityList } from './IdentityListPage';
|
|
4
|
-
export { default as IdentityShow } from './IdentityShowPage';
|
|
5
|
-
export { default as IdentityEdit } from './IdentityEditPage';
|
|
6
|
-
export { default as IdenityModelConfiguration } from './IdentityModelConfigurationPage';
|
|
7
|
-
export { default as IdentityPermissionPage } from './permissions';
|
|
8
|
-
export { default as IdentityShowMailLog } from './maillog/ShowMailLog';
|
|
1
|
+
export * from './IdentityPage';
|
|
2
|
+
export * from './IdentityPage.types';
|
|
3
|
+
export { default as IdentityList } from './IdentityListPage';
|
|
4
|
+
export { default as IdentityShow } from './IdentityShowPage';
|
|
5
|
+
export { default as IdentityEdit } from './IdentityEditPage';
|
|
6
|
+
export { default as IdenityModelConfiguration } from './IdentityModelConfigurationPage';
|
|
7
|
+
export { default as IdentityPermissionPage } from './permissions';
|
|
8
|
+
export { default as IdentityShowMailLog } from './maillog/ShowMailLog';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function ShowMailLog(props: any): import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
export default function ShowMailLog(props: any): import("react/jsx-runtime").JSX.Element;
|