@pronto-tools-and-more/components 10.28.0 → 10.29.0

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/main.js CHANGED
@@ -947,7 +947,9 @@ var Seo = ({
947
947
  title,
948
948
  description,
949
949
  keywords,
950
- titlePostfix
950
+ titlePostfix,
951
+ language,
952
+ alternates
951
953
  } = {}) => {
952
954
  const json = {
953
955
  title: `${title}${titlePostfix}`,
@@ -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";
@@ -0,0 +1,4 @@
1
+ export interface HrefLangAlternate {
2
+ readonly path: string;
3
+ readonly lang: string;
4
+ }
@@ -1,6 +1,10 @@
1
- export declare const Seo: ({ title, description, keywords, titlePostfix, }?: {
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "10.28.0",
3
+ "version": "10.29.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",