@pronto-tools-and-more/components 15.15.0 → 15.17.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 +4 -2
- package/dist/parts/Seo/Seo.d.ts +2 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -2188,7 +2188,8 @@ var Seo = ({
|
|
2188
2188
|
alternates,
|
2189
2189
|
googleSiteVerification,
|
2190
2190
|
facebookDomainVerification,
|
2191
|
-
image
|
2191
|
+
image,
|
2192
|
+
jsonLdString
|
2192
2193
|
} = {}) => {
|
2193
2194
|
const actualTitlePostFix = getActualTitlePostFix(titlePostfix);
|
2194
2195
|
const actualAlternates = getActualAlternates(alternates);
|
@@ -2211,7 +2212,8 @@ var Seo = ({
|
|
2211
2212
|
"facebook-domain-verification": facebookDomainVerification,
|
2212
2213
|
language,
|
2213
2214
|
alternates: actualAlternates
|
2214
|
-
}
|
2215
|
+
},
|
2216
|
+
jsonLD: jsonLdString
|
2215
2217
|
};
|
2216
2218
|
return /* @__PURE__ */ React.createElement(JsonComponent, { json });
|
2217
2219
|
};
|
package/dist/parts/Seo/Seo.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { HrefLangAlternate } from "../HrefLangAlternate/HrefLangAlternate.ts";
|
2
|
-
export declare const Seo: ({ title, description, keywords, titlePostfix, language, alternates, googleSiteVerification, facebookDomainVerification, image, }?: {
|
2
|
+
export declare const Seo: ({ title, description, keywords, titlePostfix, language, alternates, googleSiteVerification, facebookDomainVerification, image, jsonLdString, }?: {
|
3
3
|
title?: string;
|
4
4
|
description?: string;
|
5
5
|
keywords?: string;
|
@@ -10,4 +10,5 @@ export declare const Seo: ({ title, description, keywords, titlePostfix, languag
|
|
10
10
|
googleSiteVerification?: string;
|
11
11
|
facebookDomainVerification?: string;
|
12
12
|
image?: string;
|
13
|
+
jsonLdString?: string;
|
13
14
|
}) => import("react").JSX.Element;
|