identity-admin-ui 1.6.1 → 1.6.3
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 +2 -2
- package/lib/cjs/types/context/ResourcesContext.d.ts +2 -0
- package/lib/cjs/types/index.d.ts +2 -1
- package/lib/cjs/types/pages/LoadingScreen.d.ts +2 -1
- package/lib/esm/index.js +2 -2
- package/lib/esm/types/context/ResourcesContext.d.ts +2 -0
- package/lib/esm/types/index.d.ts +2 -1
- package/lib/esm/types/pages/LoadingScreen.d.ts +2 -1
- package/lib/index.d.ts +10 -3
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { RequestState } from '../hooks/RequetState';
|
|
3
3
|
import IResource from './Resource';
|
|
4
|
+
import { SxProps } from '@mui/material';
|
|
4
5
|
export type ResourceResponse = {
|
|
5
6
|
[key: string]: IResource | {
|
|
6
7
|
[key: string]: string[];
|
|
@@ -16,6 +17,7 @@ declare const ResourcesContext: import("react").Context<{
|
|
|
16
17
|
export interface ResourcesContextConfig {
|
|
17
18
|
resourcesUrl: string;
|
|
18
19
|
laodingLogo?: string;
|
|
20
|
+
logoSxProps?: SxProps;
|
|
19
21
|
children: any;
|
|
20
22
|
}
|
|
21
23
|
declare const ResourcesContextProvider: (props: ResourcesContextConfig) => import("react/jsx-runtime").JSX.Element;
|
package/lib/cjs/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from './pages';
|
|
2
2
|
export * from './hooks';
|
|
3
3
|
export * from './context';
|
|
4
4
|
export * from './ApiClient';
|
|
@@ -6,3 +6,4 @@ export * from './layout/dashboard';
|
|
|
6
6
|
export * from './theme';
|
|
7
7
|
export { default as ThemeProvider } from './theme';
|
|
8
8
|
export * from './routes';
|
|
9
|
+
export { NextPreviousButtons } from './components/Buttons/NextPreviousButtons';
|
|
@@ -3,6 +3,7 @@ type Props = {
|
|
|
3
3
|
isDashboard?: boolean;
|
|
4
4
|
sx?: SxProps;
|
|
5
5
|
loadingLogo?: string;
|
|
6
|
+
logoSxProps?: SxProps;
|
|
6
7
|
};
|
|
7
|
-
export default function LoadingScreen({ isDashboard, loadingLogo, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default function LoadingScreen({ isDashboard, loadingLogo, logoSxProps, ...other }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|