mayak-common-library-payload 0.2.8 → 0.2.10

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/dist/index.d.mts CHANGED
@@ -684,12 +684,12 @@ type LocaleSlug = LocaleSlugSlice & LocaleSlugActions;
684
684
  declare const createLocaleSlugSlice: StateCreator<LocaleSlug>;
685
685
  declare const useLocaleSlugStore: zustand.UseBoundStore<zustand.StoreApi<LocaleSlug>>;
686
686
 
687
- declare const Header: FC<PropsWithChildren & {
688
- locale: string;
687
+ interface HeaderProps extends PropsWithChildren {
689
688
  homePage: string;
690
- oneLogo?: string;
691
689
  selectPart: ReactNode;
692
- }>;
690
+ logoPart?: ReactNode;
691
+ }
692
+ declare const Header: (props: HeaderProps) => react_jsx_runtime.JSX.Element;
693
693
 
694
694
  interface HeaderContactButtonProps {
695
695
  onClick: MouseEventHandler<HTMLButtonElement> | undefined;
package/dist/index.d.ts CHANGED
@@ -684,12 +684,12 @@ type LocaleSlug = LocaleSlugSlice & LocaleSlugActions;
684
684
  declare const createLocaleSlugSlice: StateCreator<LocaleSlug>;
685
685
  declare const useLocaleSlugStore: zustand.UseBoundStore<zustand.StoreApi<LocaleSlug>>;
686
686
 
687
- declare const Header: FC<PropsWithChildren & {
688
- locale: string;
687
+ interface HeaderProps extends PropsWithChildren {
689
688
  homePage: string;
690
- oneLogo?: string;
691
689
  selectPart: ReactNode;
692
- }>;
690
+ logoPart?: ReactNode;
691
+ }
692
+ declare const Header: (props: HeaderProps) => react_jsx_runtime.JSX.Element;
693
693
 
694
694
  interface HeaderContactButtonProps {
695
695
  onClick: MouseEventHandler<HTMLButtonElement> | undefined;