sixseconds-modules 1.6.164 → 1.6.167

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.
@@ -4,5 +4,5 @@ interface IProps {
4
4
  router?: any;
5
5
  sx?: any;
6
6
  }
7
- export declare const PreviousLoginBanner: ({ t, router, sx }: IProps) => any;
7
+ export declare const PreviousLoginBanner: (props: IProps) => import("react/jsx-runtime").JSX.Element;
8
8
  export {};
@@ -1,2 +1,10 @@
1
1
  import { IHeaderProps } from './type';
2
- export declare const Header: ({ router, frontCustomComponent, endCustomComponents, totallyEndCustomComponent, userData, interFaceLangList, centerCustomComponents, updateInterfaceLang, selectedInterFaceLang, logoutHandler, logo, isNotification, extraMenuOptions, isMenu, isAccessAppMenu, notificationAccessApps, sx, isMainLogo, handleSideToggle, t, }: IHeaderProps) => import("react/jsx-runtime").JSX.Element;
2
+ /**
3
+ * Public Header export.
4
+ *
5
+ * Wraps HeaderInner with MuiProvider so that:
6
+ * 1. The Emotion cache is created synchronously — SSR-safe, no `dynamic({ ssr: false })` needed.
7
+ * 2. All MUI class names are prefixed with `sixseconds-modules-` preventing conflicts.
8
+ * 3. Emotion styles are injected into a scoped cache, isolating them from the host app.
9
+ */
10
+ export declare const Header: (props: IHeaderProps) => import("react/jsx-runtime").JSX.Element;