@pronto-tools-and-more/components 10.28.0 → 10.29.0
Sign up to get free protection for your applications and to get access to all the features.
package/dist/main.js
CHANGED
@@ -19,6 +19,7 @@ export * from "../HeaderLogo/HeaderLogo.tsx";
|
|
19
19
|
export * from "../HeaderLogoSection/HeaderLogoSection.tsx";
|
20
20
|
export * from "../HeaderMenuItems/HeaderMenuItems.tsx";
|
21
21
|
export * from "../Heading/Heading.tsx";
|
22
|
+
export * from "../HrefLangAlternate/HrefLangAlternate.ts";
|
22
23
|
export * from "../IArticleListItem/IArticleListItem.ts";
|
23
24
|
export * from "../ICategoryItem/ICategoryItem.ts";
|
24
25
|
export * from "../IFooterSocialLink/IFooterSocialLink.ts";
|
package/dist/parts/Seo/Seo.d.ts
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
|
1
|
+
import type { HrefLangAlternate } from "../HrefLangAlternate/HrefLangAlternate.ts";
|
2
|
+
export declare const Seo: ({ title, description, keywords, titlePostfix, language, alternates, }?: {
|
2
3
|
title?: string;
|
3
4
|
description?: string;
|
4
5
|
keywords?: string;
|
5
6
|
titlePostfix?: string;
|
7
|
+
language?: string;
|
8
|
+
hrefLang?: string;
|
9
|
+
alternates?: readonly HrefLangAlternate[];
|
6
10
|
}) => import("react").JSX.Element;
|