mayak-common-library 0.0.221 → 0.0.222
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -945,8 +945,9 @@ interface IHeaderProps {
|
|
|
945
945
|
homePage: string;
|
|
946
946
|
whatsUp?: boolean;
|
|
947
947
|
defLocale: string;
|
|
948
|
+
actionComponent?: ReactNode;
|
|
948
949
|
}
|
|
949
|
-
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
950
|
+
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale, actionComponent, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
950
951
|
|
|
951
952
|
interface HeaderContactButtonProps {
|
|
952
953
|
onClick: MouseEventHandler<HTMLButtonElement> | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -945,8 +945,9 @@ interface IHeaderProps {
|
|
|
945
945
|
homePage: string;
|
|
946
946
|
whatsUp?: boolean;
|
|
947
947
|
defLocale: string;
|
|
948
|
+
actionComponent?: ReactNode;
|
|
948
949
|
}
|
|
949
|
-
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
950
|
+
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale, actionComponent, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
950
951
|
|
|
951
952
|
interface HeaderContactButtonProps {
|
|
952
953
|
onClick: MouseEventHandler<HTMLButtonElement> | undefined;
|