identity-admin-ui 1.12.18 → 1.12.19

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.
@@ -2,4 +2,5 @@ export { default as IdentityGrid } from './dataGrid/DataGridd';
2
2
  export { default as NotificationPopover } from './Notifications/NotificationsPopover';
3
3
  export { default as MotionLazyContainer } from './MotionLazyContainer';
4
4
  export { default as SvgIconStyle } from './SvgIconStyle';
5
+ export { default as ThemeSettings } from './settings/index';
5
6
  export * from './Dialog/ActionDialog';
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { SizeType } from '../helpers/Types';
3
- import { PaletteOptions } from '@mui/material';
3
+ import { BoxProps, PaletteOptions, SxProps } from '@mui/material';
4
4
  type AppConfigurations = {
5
5
  children?: ReactNode;
6
6
  textFieldSize?: SizeType;
@@ -15,6 +15,12 @@ type AppConfigurations = {
15
15
  loginLogo?: string;
16
16
  loginLoginMessage?: string;
17
17
  palette?: PaletteOptions;
18
+ loadingLogoSxProps?: BoxProps;
19
+ loginWelcomeImageSxProps?: SxProps;
20
+ navBarLogoSxProps?: BoxProps;
21
+ miniNavBarLogoSxProps?: SxProps;
22
+ loginLogoSxProps?: SxProps;
23
+ loginMessageSxProps?: SxProps;
18
24
  };
19
25
  declare const AppConfigurationsContext: import("react").Context<AppConfigurations>;
20
26
  declare const AppConfigurationsContextProvider: (props: AppConfigurations) => import("react/jsx-runtime").JSX.Element;
@@ -13,4 +13,10 @@ export declare const useAppConfigurations: () => {
13
13
  loginLogo?: string | undefined;
14
14
  loginLoginMessage?: string | undefined;
15
15
  palette?: import("@mui/material").PaletteOptions | undefined;
16
+ loadingLogoSxProps?: import("@mui/material").BoxProps | undefined;
17
+ loginWelcomeImageSxProps?: import("@mui/system").SxProps | undefined;
18
+ navBarLogoSxProps?: import("@mui/material").BoxProps | undefined;
19
+ miniNavBarLogoSxProps?: import("@mui/system").SxProps | undefined;
20
+ loginLogoSxProps?: import("@mui/system").SxProps | undefined;
21
+ loginMessageSxProps?: import("@mui/system").SxProps | undefined;
16
22
  };
@@ -0,0 +1,2 @@
1
+ import i18next from 'i18next';
2
+ export default i18next;
@@ -1 +1,2 @@
1
1
  export * from './format-number';
2
+ export { default as i18ninit } from './i18n';