identity-admin-ui 1.11.42 → 1.11.44
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 +1 -1
- package/lib/cjs/types/context/ResourcesContext.d.ts +2 -0
- package/lib/cjs/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/cjs/types/hooks/useResources.d.ts +2 -0
- package/lib/esm/index.js +2 -2
- package/lib/esm/types/context/ResourcesContext.d.ts +2 -0
- package/lib/esm/types/helpers/CrudHelper/Show/ShowRecordProps.d.ts +4 -0
- package/lib/esm/types/hooks/useResources.d.ts +2 -0
- package/lib/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ declare const ResourcesContext: import("react").Context<{
|
|
|
14
14
|
getResources: () => void;
|
|
15
15
|
state: RequestState;
|
|
16
16
|
clearResources: () => void;
|
|
17
|
+
loadingLogo?: string | undefined;
|
|
18
|
+
logoSxProps?: SxProps | undefined;
|
|
17
19
|
}>;
|
|
18
20
|
export interface ResourcesContextConfig {
|
|
19
21
|
resourcesUrl: string;
|
|
@@ -61,4 +61,8 @@ export interface ShowRecordProps extends INextpreviousExtras {
|
|
|
61
61
|
* An optional flag to disable default actions like edit.
|
|
62
62
|
*/
|
|
63
63
|
hideHeaderBreadcrumbs?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* An optional flag to disable skeleton before loading record.
|
|
66
|
+
*/
|
|
67
|
+
hideSkeleton?: boolean;
|
|
64
68
|
}
|