@pixelated-tech/components 3.2.12 → 3.2.14
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/README.COMPONENTS.md +146 -48
- package/README.md +130 -100
- package/dist/components/callout/callout.scss +0 -3
- package/dist/components/cms/flickr.js +8 -2
- package/dist/components/cms/google.reviews.components.js +1 -1
- package/dist/components/cms/wordpress.components.js +1 -1
- package/dist/components/cms/wordpress.css +7 -0
- package/dist/components/menu/menu-expando.js +7 -1
- package/dist/components/nerdjoke/nerdjoke.js +13 -7
- package/dist/components/pagebuilder/components/ComponentPropertiesForm.js +1 -1
- package/dist/components/pagebuilder/form/form.css +5 -1
- package/dist/components/pagebuilder/form/formcomponents.js +1 -1
- package/dist/components/seo/manifest.js +40 -0
- package/dist/components/seo/schema-localbusiness.js +46 -2
- package/dist/components/seo/schema-website.js +31 -2
- package/dist/components/seo/sitemap.js +3 -3
- package/dist/data/routes.json +25 -0
- package/dist/data/routes2.json +25 -0
- package/dist/index.js +2 -2
- package/dist/index.server.js +0 -1
- package/dist/types/components/cms/flickr.d.ts.map +1 -1
- package/dist/types/components/cms/google.reviews.components.d.ts.map +1 -1
- package/dist/types/components/config/config.types.d.ts +30 -0
- package/dist/types/components/config/config.types.d.ts.map +1 -1
- package/dist/types/components/menu/menu-expando.d.ts.map +1 -1
- package/dist/types/components/nerdjoke/nerdjoke.d.ts.map +1 -1
- package/dist/types/components/pagebuilder/components/ComponentPropertiesForm.d.ts +1 -1
- package/dist/types/components/seo/manifest.d.ts +19 -0
- package/dist/types/components/seo/manifest.d.ts.map +1 -0
- package/dist/types/components/seo/schema-localbusiness.d.ts +22 -23
- package/dist/types/components/seo/schema-localbusiness.d.ts.map +1 -1
- package/dist/types/components/seo/schema-website.d.ts +17 -18
- package/dist/types/components/seo/schema-website.d.ts.map +1 -1
- package/dist/types/components/seo/sitemap.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.server.d.ts +0 -1
- package/dist/types/stories/seo/seo.googleanalytics.stories.d.ts.map +1 -1
- package/dist/types/stories/seo/seo.schema.stories.d.ts +23 -0
- package/dist/types/stories/seo/seo.schema.stories.d.ts.map +1 -0
- package/dist/types/tests/component-properties-form.test.d.ts +2 -0
- package/dist/types/tests/component-properties-form.test.d.ts.map +1 -0
- package/dist/types/tests/component-selector.test.d.ts +2 -0
- package/dist/types/tests/component-selector.test.d.ts.map +1 -0
- package/dist/types/tests/component-tree.test.d.ts +2 -0
- package/dist/types/tests/component-tree.test.d.ts.map +1 -0
- package/dist/types/tests/manifest.test.d.ts +2 -0
- package/dist/types/tests/manifest.test.d.ts.map +1 -0
- package/dist/types/tests/page-builder-ui.test.d.ts +2 -0
- package/dist/types/tests/page-builder-ui.test.d.ts.map +1 -0
- package/dist/types/tests/page-engine.test.d.ts +2 -0
- package/dist/types/tests/page-engine.test.d.ts.map +1 -0
- package/dist/types/tests/save-load-section.test.d.ts +2 -0
- package/dist/types/tests/save-load-section.test.d.ts.map +1 -0
- package/package.json +5 -5
- package/dist/components/utilities/api.js +0 -36
- package/dist/types/components/utilities/api.d.ts +0 -16
- package/dist/types/components/utilities/api.d.ts.map +0 -1
- package/dist/types/tests/api.test.d.ts +0 -2
- package/dist/types/tests/api.test.d.ts.map +0 -1
|
@@ -72,11 +72,15 @@ form span {
|
|
|
72
72
|
border-radius: 20px;
|
|
73
73
|
padding: 0 3px; */
|
|
74
74
|
vertical-align: middle;
|
|
75
|
+
padding: 5px;
|
|
76
|
+
box-shadow: none;
|
|
77
|
+
background-color: transparent;
|
|
78
|
+
border: none;
|
|
75
79
|
}
|
|
76
80
|
|
|
77
81
|
.tooltipIcon img {
|
|
78
82
|
width: 20px;
|
|
79
|
-
margin: 5px 0 0 -10px;
|
|
83
|
+
/* margin: 5px 0 0 -10px; */
|
|
80
84
|
background-color: #DDD;
|
|
81
85
|
border-radius: 5px;
|
|
82
86
|
}
|
|
@@ -83,7 +83,7 @@ function FormTooltip(props) {
|
|
|
83
83
|
alt={props.id + " - " + props.text}
|
|
84
84
|
src="/images/icons/tooltip-icon-2.png" /> */
|
|
85
85
|
return (_jsx(_Fragment, { children: props.text && props.id
|
|
86
|
-
? _jsx(_Fragment, { children: _jsxs("div", { id: thisID, className: `tooltip ${props.className || ''}`, children: [_jsx("
|
|
86
|
+
? _jsx(_Fragment, { children: _jsxs("div", { id: thisID, className: `tooltip ${props.className || ''}`, children: [_jsx("button", { type: "button", className: "tooltipIcon", onClick: toggleTooltip, "aria-label": "Toggle tooltip", children: tooltipImg }), _jsx("div", { className: "tooltipText", children: props.text })] }) })
|
|
87
87
|
: "" }));
|
|
88
88
|
}
|
|
89
89
|
FormValidate.propTypes = {
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generates a PWA manifest from siteinfo configuration
|
|
3
|
+
* @param options - Configuration options
|
|
4
|
+
* @returns Next.js manifest object
|
|
5
|
+
*/
|
|
6
|
+
export function generateManifest(options) {
|
|
7
|
+
const { siteInfo, customProperties = {} } = options;
|
|
8
|
+
const baseManifest = {
|
|
9
|
+
// @ts-expect-error - 'author' is not in standard Manifest type but used by some PWA implementations
|
|
10
|
+
author: siteInfo.author,
|
|
11
|
+
background_color: siteInfo.background_color,
|
|
12
|
+
default_locale: siteInfo.default_locale,
|
|
13
|
+
description: siteInfo.description,
|
|
14
|
+
developer: {
|
|
15
|
+
name: siteInfo.author || "Developer",
|
|
16
|
+
url: siteInfo.url
|
|
17
|
+
},
|
|
18
|
+
display: siteInfo.display || "standalone",
|
|
19
|
+
homepage_url: siteInfo.url,
|
|
20
|
+
icons: [{
|
|
21
|
+
src: siteInfo.favicon || "/favicon.ico",
|
|
22
|
+
sizes: siteInfo.favicon_sizes || "64x64 32x32 24x24 16x16",
|
|
23
|
+
type: siteInfo.favicon_type || "image/x-icon"
|
|
24
|
+
}],
|
|
25
|
+
name: siteInfo.name,
|
|
26
|
+
short_name: siteInfo.name,
|
|
27
|
+
start_url: ".",
|
|
28
|
+
theme_color: siteInfo.theme_color,
|
|
29
|
+
};
|
|
30
|
+
// Merge with custom properties, allowing overrides
|
|
31
|
+
return { ...baseManifest, ...customProperties };
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Default export for Next.js manifest route
|
|
35
|
+
* @param options - Configuration options
|
|
36
|
+
* @returns Next.js manifest object
|
|
37
|
+
*/
|
|
38
|
+
export function Manifest(options) {
|
|
39
|
+
return generateManifest(options);
|
|
40
|
+
}
|
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
/**
|
|
4
|
+
* LocalBusiness Schema Component
|
|
5
|
+
* Generates JSON-LD structured data for SEO
|
|
6
|
+
* https://schema.org/LocalBusiness
|
|
7
|
+
*
|
|
8
|
+
* This component uses siteInfo passed as props to generate schema data.
|
|
9
|
+
* It does not use client-side hooks and can be rendered on the server.
|
|
10
|
+
*/
|
|
11
|
+
LocalBusinessSchema.propTypes = {
|
|
12
|
+
name: PropTypes.string,
|
|
13
|
+
streetAddress: PropTypes.string,
|
|
14
|
+
addressLocality: PropTypes.string,
|
|
15
|
+
addressRegion: PropTypes.string,
|
|
16
|
+
postalCode: PropTypes.string,
|
|
17
|
+
addressCountry: PropTypes.string,
|
|
18
|
+
telephone: PropTypes.string,
|
|
19
|
+
url: PropTypes.string,
|
|
20
|
+
logo: PropTypes.string,
|
|
21
|
+
image: PropTypes.string,
|
|
22
|
+
openingHours: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)]),
|
|
23
|
+
description: PropTypes.string,
|
|
24
|
+
email: PropTypes.string,
|
|
25
|
+
priceRange: PropTypes.string,
|
|
26
|
+
sameAs: PropTypes.arrayOf(PropTypes.string), // Social media profiles
|
|
27
|
+
siteInfo: PropTypes.object // Required siteinfo from parent component
|
|
28
|
+
};
|
|
29
|
+
export function LocalBusinessSchema(props) {
|
|
30
|
+
// const config = usePixelatedConfig();
|
|
31
|
+
const siteInfo = props.siteInfo;
|
|
32
|
+
// Use props if provided, otherwise fall back to siteInfo
|
|
33
|
+
const name = props.name || siteInfo?.name;
|
|
34
|
+
const streetAddress = props.streetAddress || siteInfo?.address?.streetAddress;
|
|
35
|
+
const addressLocality = props.addressLocality || siteInfo?.address?.addressLocality;
|
|
36
|
+
const addressRegion = props.addressRegion || siteInfo?.address?.addressRegion;
|
|
37
|
+
const postalCode = props.postalCode || siteInfo?.address?.postalCode;
|
|
38
|
+
const addressCountry = props.addressCountry || siteInfo?.address?.addressCountry || 'United States';
|
|
39
|
+
const telephone = props.telephone || siteInfo?.telephone;
|
|
40
|
+
const url = props.url || siteInfo?.url;
|
|
41
|
+
const logo = props.logo || siteInfo?.image;
|
|
42
|
+
const image = props.image || siteInfo?.image;
|
|
43
|
+
const openingHours = props.openingHours;
|
|
44
|
+
const description = props.description || siteInfo?.description;
|
|
45
|
+
const email = props.email || siteInfo?.email;
|
|
46
|
+
const priceRange = props.priceRange || siteInfo?.priceRange;
|
|
47
|
+
const sameAs = props.sameAs || siteInfo?.sameAs;
|
|
3
48
|
const schemaData = {
|
|
4
49
|
'@context': 'https://schema.org',
|
|
5
50
|
'@type': 'LocalBusiness',
|
|
@@ -24,4 +69,3 @@ export function LocalBusinessSchema({ name, streetAddress, addressLocality, addr
|
|
|
24
69
|
};
|
|
25
70
|
return (_jsx("script", { type: "application/ld+json", dangerouslySetInnerHTML: { __html: JSON.stringify(schemaData) } }));
|
|
26
71
|
}
|
|
27
|
-
export default LocalBusinessSchema;
|
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
/**
|
|
4
|
+
* Website Schema Component
|
|
5
|
+
* Generates JSON-LD structured data for websites
|
|
6
|
+
* https://schema.org/WebSite
|
|
7
|
+
*
|
|
8
|
+
* This component uses siteInfo passed as props to generate schema data.
|
|
9
|
+
* It does not use client-side hooks and can be rendered on the server.
|
|
10
|
+
*/
|
|
11
|
+
WebsiteSchema.propTypes = {
|
|
12
|
+
name: PropTypes.string,
|
|
13
|
+
url: PropTypes.string,
|
|
14
|
+
description: PropTypes.string,
|
|
15
|
+
potentialAction: PropTypes.shape({
|
|
16
|
+
'@type': PropTypes.string,
|
|
17
|
+
target: PropTypes.shape({
|
|
18
|
+
'@type': PropTypes.string,
|
|
19
|
+
urlTemplate: PropTypes.string
|
|
20
|
+
}),
|
|
21
|
+
query: PropTypes.string
|
|
22
|
+
}),
|
|
23
|
+
siteInfo: PropTypes.object // Required siteinfo from parent component
|
|
24
|
+
};
|
|
25
|
+
export function WebsiteSchema(props) {
|
|
26
|
+
// const config = usePixelatedConfig();
|
|
27
|
+
const siteInfo = props.siteInfo;
|
|
28
|
+
// Use props if provided, otherwise fall back to siteInfo
|
|
29
|
+
const name = props.name || siteInfo?.name;
|
|
30
|
+
const url = props.url || siteInfo?.url;
|
|
31
|
+
const description = props.description || siteInfo?.description;
|
|
32
|
+
const potentialAction = props.potentialAction;
|
|
3
33
|
const schemaData = {
|
|
4
34
|
'@context': 'https://schema.org',
|
|
5
35
|
'@type': 'WebSite',
|
|
@@ -10,4 +40,3 @@ export function WebsiteSchema({ name, url, description, potentialAction }) {
|
|
|
10
40
|
};
|
|
11
41
|
return (_jsx("script", { type: "application/ld+json", dangerouslySetInnerHTML: { __html: JSON.stringify(schemaData) } }));
|
|
12
42
|
}
|
|
13
|
-
export default WebsiteSchema;
|
|
@@ -173,9 +173,9 @@ export async function createImageURLsFromJSON(origin, jsonPath = 'public/site-im
|
|
|
173
173
|
images: newImages,
|
|
174
174
|
});
|
|
175
175
|
}
|
|
176
|
-
catch (e) {
|
|
177
|
-
|
|
178
|
-
|
|
176
|
+
catch /* (e) */ {
|
|
177
|
+
// During build time, fetch will fail - suppress the error to avoid build noise
|
|
178
|
+
// The function returns an empty array, which is acceptable
|
|
179
179
|
}
|
|
180
180
|
return sitemap;
|
|
181
181
|
}
|
package/dist/data/routes.json
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
+
"siteInfo": {
|
|
3
|
+
"name": "Pixelated Technologies",
|
|
4
|
+
"description": "Custom web development and digital design agency specializing in React, Next.js, and modern web technologies",
|
|
5
|
+
"url": "https://pixelated.tech",
|
|
6
|
+
"email": "info@pixelated.tech",
|
|
7
|
+
"image": "/images/pix/pix-bg-512.gif",
|
|
8
|
+
"image_height": "512",
|
|
9
|
+
"image_width": "512",
|
|
10
|
+
"favicon": "/favicon.ico",
|
|
11
|
+
"telephone": "+1-973-710-8008",
|
|
12
|
+
"address": {
|
|
13
|
+
"streetAddress": "10 Jade Circle",
|
|
14
|
+
"addressLocality": "Denville",
|
|
15
|
+
"addressRegion": "NJ",
|
|
16
|
+
"postalCode": "07834",
|
|
17
|
+
"addressCountry": "US"
|
|
18
|
+
},
|
|
19
|
+
"priceRange": "$$",
|
|
20
|
+
"sameAs": [
|
|
21
|
+
"https://www.linkedin.com/in/brianwhaley",
|
|
22
|
+
"https://github.com/brianwhaley",
|
|
23
|
+
"https://twitter.com/brianwhaley"
|
|
24
|
+
],
|
|
25
|
+
"keywords": "pixelated, web development, react, next.js, custom websites, digital design, small business"
|
|
26
|
+
},
|
|
2
27
|
"routes": [
|
|
3
28
|
{
|
|
4
29
|
"name": "Home",
|
package/dist/data/routes2.json
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
+
"siteInfo": {
|
|
3
|
+
"name": "Pixelated Technologies",
|
|
4
|
+
"description": "Custom web development and digital design agency specializing in React, Next.js, and modern web technologies",
|
|
5
|
+
"url": "https://pixelated.tech",
|
|
6
|
+
"email": "info@pixelated.tech",
|
|
7
|
+
"image": "/images/pix/pix-bg-512.gif",
|
|
8
|
+
"image_height": "512",
|
|
9
|
+
"image_width": "512",
|
|
10
|
+
"favicon": "/favicon.ico",
|
|
11
|
+
"telephone": "+1-973-710-8008",
|
|
12
|
+
"address": {
|
|
13
|
+
"streetAddress": "10 Jade Circle",
|
|
14
|
+
"addressLocality": "Denville",
|
|
15
|
+
"addressRegion": "NJ",
|
|
16
|
+
"postalCode": "07834",
|
|
17
|
+
"addressCountry": "US"
|
|
18
|
+
},
|
|
19
|
+
"priceRange": "$$",
|
|
20
|
+
"sameAs": [
|
|
21
|
+
"https://www.linkedin.com/in/brianwhaley",
|
|
22
|
+
"https://github.com/brianwhaley",
|
|
23
|
+
"https://twitter.com/brianwhaley"
|
|
24
|
+
],
|
|
25
|
+
"keywords": "pixelated, web development, react, next.js, custom websites, digital design, small business"
|
|
26
|
+
},
|
|
2
27
|
"routes": [
|
|
3
28
|
{
|
|
4
29
|
"name": "Home",
|
package/dist/index.js
CHANGED
|
@@ -65,9 +65,10 @@ export * from './components/seo/schema-recipe';
|
|
|
65
65
|
export * from './components/seo/schema-services';
|
|
66
66
|
export * from './components/seo/schema-website';
|
|
67
67
|
export * from './components/seo/schema-blogposting';
|
|
68
|
+
export * from './components/seo/manifest';
|
|
68
69
|
export * from './components/seo/metadata'; // server-side
|
|
69
70
|
export * from './components/seo/metadata.components';
|
|
70
|
-
export * from './components/seo/sitemap'; // server-side
|
|
71
|
+
export * from './components/seo/sitemap'; // server-side
|
|
71
72
|
export * from './components/shoppingcart/ebay.components';
|
|
72
73
|
export * from './components/shoppingcart/ebay.functions'; // server-side
|
|
73
74
|
export * from './components/shoppingcart/paypal';
|
|
@@ -79,5 +80,4 @@ export * from './components/structured/recipe';
|
|
|
79
80
|
export * from './components/structured/resume';
|
|
80
81
|
export * from './components/structured/socialcard';
|
|
81
82
|
export * from './components/structured/timeline';
|
|
82
|
-
export * from './components/utilities/api'; // server-side
|
|
83
83
|
export * from './components/utilities/functions'; // server-side
|
package/dist/index.server.js
CHANGED
|
@@ -27,7 +27,6 @@ export * from './components/seo/metadata';
|
|
|
27
27
|
export * from './components/seo/sitemap';
|
|
28
28
|
export * from './components/shoppingcart/ebay.functions';
|
|
29
29
|
export * from './components/shoppingcart/shoppingcart.functions';
|
|
30
|
-
export * from './components/utilities/api';
|
|
31
30
|
export * from './components/utilities/functions';
|
|
32
31
|
// Server-only wrapper exports
|
|
33
32
|
// DO I REALLY NEED THIS?
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flickr.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/flickr.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"flickr.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/flickr.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAsE3D,wBAAgB,aAAa,CAAE,KAAK,EAAE;IAAE,MAAM,CAAC,EAAE,GAAG,CAAC;IAAC,MAAM,CAAC,EAAE,YAAY,CAAA;CAAE,gBA2D5E;yBA3De,aAAa;;;;;;AAmE7B,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB;;;;;;;gBAejE;yBAfe,mBAAmB;;;;;;AA8BnC,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,2CA0CtD;yBA1Ce,aAAa"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"google.reviews.components.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/google.reviews.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,sBAAsB,CAAC;AAW9B,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CAChB,
|
|
1
|
+
{"version":3,"file":"google.reviews.components.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/google.reviews.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,sBAAsB,CAAC;AAW9B,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CAChB,2CAiGA;yBAvGe,iBAAiB"}
|
|
@@ -74,6 +74,35 @@ export interface WordpressConfig {
|
|
|
74
74
|
baseURL: string;
|
|
75
75
|
site: string;
|
|
76
76
|
}
|
|
77
|
+
export interface SiteInfo {
|
|
78
|
+
name: string;
|
|
79
|
+
description: string;
|
|
80
|
+
url: string;
|
|
81
|
+
email?: string;
|
|
82
|
+
image?: string;
|
|
83
|
+
image_height?: string;
|
|
84
|
+
image_width?: string;
|
|
85
|
+
favicon?: string;
|
|
86
|
+
telephone?: string;
|
|
87
|
+
address?: {
|
|
88
|
+
streetAddress: string;
|
|
89
|
+
addressLocality: string;
|
|
90
|
+
addressRegion: string;
|
|
91
|
+
postalCode: string;
|
|
92
|
+
addressCountry: string;
|
|
93
|
+
};
|
|
94
|
+
openingHours?: string;
|
|
95
|
+
priceRange?: string;
|
|
96
|
+
sameAs?: string[];
|
|
97
|
+
keywords?: string;
|
|
98
|
+
author?: string;
|
|
99
|
+
theme_color?: string;
|
|
100
|
+
background_color?: string;
|
|
101
|
+
default_locale?: string;
|
|
102
|
+
display?: "standalone" | "fullscreen" | "minimal-ui" | "browser";
|
|
103
|
+
favicon_sizes?: string;
|
|
104
|
+
favicon_type?: string;
|
|
105
|
+
}
|
|
77
106
|
export interface PixelatedConfig {
|
|
78
107
|
cloudinary?: CloudinaryConfig;
|
|
79
108
|
contentful?: ContentfulConfig;
|
|
@@ -85,6 +114,7 @@ export interface PixelatedConfig {
|
|
|
85
114
|
hubspot?: HubspotConfig;
|
|
86
115
|
paypal?: PaypalConfig;
|
|
87
116
|
proxy?: ProxyConfig;
|
|
117
|
+
siteInfo?: SiteInfo;
|
|
88
118
|
wordpress?: WordpressConfig;
|
|
89
119
|
}
|
|
90
120
|
//# sourceMappingURL=config.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu-expando.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/menu-expando.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAE5B,wBAAgB,WAAW,CAAC,KAAK,EAAE,GAAG,2CAkJrC;yBAlJe,WAAW;;;;;AA+J3B,wBAAgB,eAAe,CAAC,KAAK,EAAE,GAAG,2CAIzC;yBAJe,eAAe;;;;;;AAW/B,wBAAgB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"menu-expando.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/menu-expando.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAE5B,wBAAgB,WAAW,CAAC,KAAK,EAAE,GAAG,2CAkJrC;yBAlJe,WAAW;;;;;AA+J3B,wBAAgB,eAAe,CAAC,KAAK,EAAE,GAAG,2CAIzC;yBAJe,eAAe;;;;;;AAW/B,wBAAgB,iBAAiB,4CA4BhC;yBA5Be,iBAAiB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nerdjoke.d.ts","sourceRoot":"","sources":["../../../../src/components/nerdjoke/nerdjoke.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"nerdjoke.d.ts","sourceRoot":"","sources":["../../../../src/components/nerdjoke/nerdjoke.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,gBAAgB,CAAC;AAOxB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,4CAsIvB;yBAtIe,QAAQ;;;AA8IxB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,iBAAS,UAAU,CAAC,KAAK,EAAE,cAAc,2CASxC;kBATQ,UAAU"}
|
|
@@ -3,7 +3,7 @@ type ComponentPropertiesFormProps = InferProps<typeof ComponentPropertiesForm.pr
|
|
|
3
3
|
export declare function ComponentPropertiesForm({ editableComponent, onSubmit }: ComponentPropertiesFormProps): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace ComponentPropertiesForm {
|
|
5
5
|
var propTypes: {
|
|
6
|
-
editableComponent: PropTypes.
|
|
6
|
+
editableComponent: PropTypes.Requireable<object>;
|
|
7
7
|
onSubmit: PropTypes.Validator<(...args: any[]) => any>;
|
|
8
8
|
};
|
|
9
9
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { MetadataRoute } from 'next';
|
|
2
|
+
import type { SiteInfo } from '../config/config.types';
|
|
3
|
+
export interface ManifestOptions {
|
|
4
|
+
siteInfo: SiteInfo;
|
|
5
|
+
customProperties?: Partial<MetadataRoute.Manifest>;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Generates a PWA manifest from siteinfo configuration
|
|
9
|
+
* @param options - Configuration options
|
|
10
|
+
* @returns Next.js manifest object
|
|
11
|
+
*/
|
|
12
|
+
export declare function generateManifest(options: ManifestOptions): MetadataRoute.Manifest;
|
|
13
|
+
/**
|
|
14
|
+
* Default export for Next.js manifest route
|
|
15
|
+
* @param options - Configuration options
|
|
16
|
+
* @returns Next.js manifest object
|
|
17
|
+
*/
|
|
18
|
+
export declare function Manifest(options: ManifestOptions): MetadataRoute.Manifest;
|
|
19
|
+
//# sourceMappingURL=manifest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/manifest.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAC1C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAEvD,MAAM,WAAW,eAAe;IAC/B,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;CACnD;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,eAAe,GAAG,aAAa,CAAC,QAAQ,CA4BjF;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,OAAO,EAAE,eAAe,GAAG,aAAa,CAAC,QAAQ,CAEzE"}
|
|
@@ -1,25 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
import PropTypes, { InferProps } from "prop-types";
|
|
2
|
+
export type LocalBusinessSchemaType = InferProps<typeof LocalBusinessSchema.propTypes>;
|
|
3
|
+
export declare function LocalBusinessSchema(props: LocalBusinessSchemaType): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare namespace LocalBusinessSchema {
|
|
5
|
+
var propTypes: {
|
|
6
|
+
name: PropTypes.Requireable<string>;
|
|
7
|
+
streetAddress: PropTypes.Requireable<string>;
|
|
8
|
+
addressLocality: PropTypes.Requireable<string>;
|
|
9
|
+
addressRegion: PropTypes.Requireable<string>;
|
|
10
|
+
postalCode: PropTypes.Requireable<string>;
|
|
11
|
+
addressCountry: PropTypes.Requireable<string>;
|
|
12
|
+
telephone: PropTypes.Requireable<string>;
|
|
13
|
+
url: PropTypes.Requireable<string>;
|
|
14
|
+
logo: PropTypes.Requireable<string>;
|
|
15
|
+
image: PropTypes.Requireable<string>;
|
|
16
|
+
openingHours: PropTypes.Requireable<NonNullable<string | (string | null | undefined)[] | null | undefined>>;
|
|
17
|
+
description: PropTypes.Requireable<string>;
|
|
18
|
+
email: PropTypes.Requireable<string>;
|
|
19
|
+
priceRange: PropTypes.Requireable<string>;
|
|
20
|
+
sameAs: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
21
|
+
siteInfo: PropTypes.Requireable<object>;
|
|
22
|
+
};
|
|
22
23
|
}
|
|
23
|
-
export declare function LocalBusinessSchema({ name, streetAddress, addressLocality, addressRegion, postalCode, addressCountry, telephone, url, logo, image, openingHours, description, email, priceRange, sameAs }: LocalBusinessSchemaProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
export default LocalBusinessSchema;
|
|
25
24
|
//# sourceMappingURL=schema-localbusiness.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/schema-localbusiness.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/schema-localbusiness.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAgCnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AAEvF,wBAAgB,mBAAmB,CAAE,KAAK,EAAE,uBAAuB,2CAiDlE;yBAjDe,mBAAmB"}
|
|
@@ -1,21 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
import PropTypes, { InferProps } from "prop-types";
|
|
2
|
+
export type WebsiteSchemaType = InferProps<typeof WebsiteSchema.propTypes>;
|
|
3
|
+
export declare function WebsiteSchema(props: WebsiteSchemaType): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare namespace WebsiteSchema {
|
|
5
|
+
var propTypes: {
|
|
6
|
+
name: PropTypes.Requireable<string>;
|
|
7
|
+
url: PropTypes.Requireable<string>;
|
|
8
|
+
description: PropTypes.Requireable<string>;
|
|
9
|
+
potentialAction: PropTypes.Requireable<PropTypes.InferProps<{
|
|
10
|
+
'@type': PropTypes.Requireable<string>;
|
|
11
|
+
target: PropTypes.Requireable<PropTypes.InferProps<{
|
|
12
|
+
'@type': PropTypes.Requireable<string>;
|
|
13
|
+
urlTemplate: PropTypes.Requireable<string>;
|
|
14
|
+
}>>;
|
|
15
|
+
query: PropTypes.Requireable<string>;
|
|
16
|
+
}>>;
|
|
17
|
+
siteInfo: PropTypes.Requireable<object>;
|
|
17
18
|
};
|
|
18
19
|
}
|
|
19
|
-
export declare function WebsiteSchema({ name, url, description, potentialAction }: WebsiteSchemaProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export default WebsiteSchema;
|
|
21
20
|
//# sourceMappingURL=schema-website.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-website.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/schema-website.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"schema-website.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/schema-website.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA4BnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAE3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,2CAwBtD;yBAxBe,aAAa"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sitemap.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/sitemap.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAQ1C,MAAM,MAAM,YAAY,GAAG,aAAa,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;AAWzD,MAAM,MAAM,aAAa,GAAG;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,GAAG,CAAC;CACb,CAAC;AAKF;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,WAAW,CAAC,EAAE;IAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAA;CAAE,GAAG,SAAS,EAAE,cAAc,SAA0B,UAU7I;AAED;;;;GAIG;AACH,wBAAsB,wBAAwB,CAAC,cAAc,SAA0B,mBAatF;AAID,wBAAgB,aAAa,CAAC,MAAM,EAAE,GAAG,SAGxC;AAID,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,YAAY,EAAE,UAU3D;AAID;;;GAGG;AACH,wBAAsB,eAAe,CAAC,GAAG,GAAE,aAAkB,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,OAAO,CAAC,CAmEnH;AAKD,wBAAsB,cAAc,CAAC,QAAQ,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,EAAE,MAAM,EAAE,MAAM;;;;;;
|
|
1
|
+
{"version":3,"file":"sitemap.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/sitemap.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAQ1C,MAAM,MAAM,YAAY,GAAG,aAAa,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;AAWzD,MAAM,MAAM,aAAa,GAAG;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,GAAG,CAAC;CACb,CAAC;AAKF;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,WAAW,CAAC,EAAE;IAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAA;CAAE,GAAG,SAAS,EAAE,cAAc,SAA0B,UAU7I;AAED;;;;GAIG;AACH,wBAAsB,wBAAwB,CAAC,cAAc,SAA0B,mBAatF;AAID,wBAAgB,aAAa,CAAC,MAAM,EAAE,GAAG,SAGxC;AAID,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,YAAY,EAAE,UAU3D;AAID;;;GAGG;AACH,wBAAsB,eAAe,CAAC,GAAG,GAAE,aAAkB,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,OAAO,CAAC,CAmEnH;AAKD,wBAAsB,cAAc,CAAC,QAAQ,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,EAAE,MAAM,EAAE,MAAM;;;;;;iBAkOukJ,CAAC;;;;KAnNxpJ;AAMD,wBAAsB,uBAAuB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,SAA4B,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC,CAgC3H;AAKD,wBAAsB,mBAAmB,CAAC,KAAK,EAAE;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,aAAa,CAAC,EAAE,OAAO,CAAA;CAAC;;;;;;iBAwKgkJ,CAAC;;;;KAzJxpJ;AAcD,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAsB,oBAAoB,CAAC,KAAK,EAAE,wBAAwB;;;;;;iBA0I8kJ,CAAC;;;;KAnHxpJ;yBAvBqB,oBAAoB;;;;;;;;;;;AAoC1C,MAAM,MAAM,mCAAmC,GAAG,UAAU,CAAC,OAAO,+BAA+B,CAAC,SAAS,CAAC,CAAC;AAC/G,wBAAsB,+BAA+B,CAAC,KAAK,EAAE,mCAAmC;;;;;;iBAqGwjJ,CAAC;;;;KArFxpJ;yBAhBqB,+BAA+B;;;;;;;;;;;AAgCrD,MAAM,MAAM,6BAA6B,GAAG,UAAU,CAAC,OAAO,yBAAyB,CAAC,SAAS,CAAC,CAAC;AACnG,wBAAsB,yBAAyB,CAAC,KAAK,EAAE,6BAA6B,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC,CA0B7G;yBA1BqB,yBAAyB;;;;;;;;;;;;AA6C/C,wBAAsB,kBAAkB,CAAC,MAAM,EAAE,MAAM;;;;;;iBAuBimJ,CAAC;;;;KANxpJ"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ export * from "./components/seo/schema-recipe";
|
|
|
63
63
|
export * from "./components/seo/schema-services";
|
|
64
64
|
export * from "./components/seo/schema-website";
|
|
65
65
|
export * from "./components/seo/schema-blogposting";
|
|
66
|
+
export * from "./components/seo/manifest";
|
|
66
67
|
export * from "./components/seo/metadata";
|
|
67
68
|
export * from "./components/seo/metadata.components";
|
|
68
69
|
export * from "./components/seo/sitemap";
|
|
@@ -77,6 +78,5 @@ export * from "./components/structured/recipe";
|
|
|
77
78
|
export * from "./components/structured/resume";
|
|
78
79
|
export * from "./components/structured/socialcard";
|
|
79
80
|
export * from "./components/structured/timeline";
|
|
80
|
-
export * from "./components/utilities/api";
|
|
81
81
|
export * from "./components/utilities/functions";
|
|
82
82
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -23,7 +23,6 @@ export * from "./components/seo/metadata";
|
|
|
23
23
|
export * from "./components/seo/sitemap";
|
|
24
24
|
export * from "./components/shoppingcart/ebay.functions";
|
|
25
25
|
export * from "./components/shoppingcart/shoppingcart.functions";
|
|
26
|
-
export * from "./components/utilities/api";
|
|
27
26
|
export * from "./components/utilities/functions";
|
|
28
27
|
export * from "./components/config/config.server";
|
|
29
28
|
export * from "./components/seo/metadata.components";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"seo.googleanalytics.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/seo/seo.googleanalytics.stories.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"seo.googleanalytics.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/seo/seo.googleanalytics.stories.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;gCACgC,kCAAkC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let title: string;
|
|
3
|
+
export { LocalBusinessSchema as component };
|
|
4
|
+
export let decorators: ((Story: any) => import("react/jsx-runtime").JSX.Element)[];
|
|
5
|
+
}
|
|
6
|
+
export default _default;
|
|
7
|
+
export namespace Schema_LocalBusiness_From_Config {
|
|
8
|
+
function render(): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
}
|
|
10
|
+
export namespace Schema_LocalBusiness_Custom_Props {
|
|
11
|
+
export function render_1(): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export { render_1 as render };
|
|
13
|
+
}
|
|
14
|
+
export namespace Schema_Website_From_Config {
|
|
15
|
+
export function render_2(): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export { render_2 as render };
|
|
17
|
+
}
|
|
18
|
+
export namespace Schema_Website_With_Search {
|
|
19
|
+
export function render_3(): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export { render_3 as render };
|
|
21
|
+
}
|
|
22
|
+
import { LocalBusinessSchema } from '@/components/seo/schema-localbusiness';
|
|
23
|
+
//# sourceMappingURL=seo.schema.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"seo.schema.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/seo/seo.schema.stories.js"],"names":[],"mappings":";;;;;;;IAuBS,2DAMP;;;IAIO,oEASP;;;;IAIO,oEAMP;;;;IAIO,oEAeP;;;oCAtEkC,uCAAuC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-properties-form.test.d.ts","sourceRoot":"","sources":["../../../src/tests/component-properties-form.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-selector.test.d.ts","sourceRoot":"","sources":["../../../src/tests/component-selector.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-tree.test.d.ts","sourceRoot":"","sources":["../../../src/tests/component-tree.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manifest.test.d.ts","sourceRoot":"","sources":["../../../src/tests/manifest.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-builder-ui.test.d.ts","sourceRoot":"","sources":["../../../src/tests/page-builder-ui.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page-engine.test.d.ts","sourceRoot":"","sources":["../../../src/tests/page-engine.test.tsx"],"names":[],"mappings":""}
|