@pixelated-tech/components 3.13.8 → 3.13.10

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.
Files changed (24) hide show
  1. package/dist/components/general/schema-blogposting.functions.js +3 -1
  2. package/dist/components/general/schema-faq.js +22 -1
  3. package/dist/components/general/schema-localbusiness.js +23 -6
  4. package/dist/components/integrations/wordpress.components.js +11 -1
  5. package/dist/components/integrations/wordpress.functions.js +9 -14
  6. package/dist/components/pixelated/pixelated.components.js +11 -0
  7. package/dist/config/pixelated.config.json.enc +1 -1
  8. package/dist/index.js +1 -0
  9. package/dist/scripts/create-pixelated-app.json +45 -40
  10. package/dist/types/components/general/schema-blogposting.functions.d.ts +1 -0
  11. package/dist/types/components/general/schema-blogposting.functions.d.ts.map +1 -1
  12. package/dist/types/components/general/schema-faq.d.ts.map +1 -1
  13. package/dist/types/components/general/schema-localbusiness.d.ts +13 -0
  14. package/dist/types/components/general/schema-localbusiness.d.ts.map +1 -1
  15. package/dist/types/components/general/utilities.d.ts.map +1 -1
  16. package/dist/types/components/integrations/wordpress.components.d.ts.map +1 -1
  17. package/dist/types/components/integrations/wordpress.functions.d.ts +13 -1
  18. package/dist/types/components/integrations/wordpress.functions.d.ts.map +1 -1
  19. package/dist/types/components/pixelated/pixelated.components.d.ts +7 -0
  20. package/dist/types/components/pixelated/pixelated.components.d.ts.map +1 -0
  21. package/dist/types/index.d.ts +1 -0
  22. package/dist/types/tests/schema-faq.test.d.ts +2 -0
  23. package/dist/types/tests/schema-faq.test.d.ts.map +1 -0
  24. package/package.json +12 -12
@@ -17,6 +17,7 @@ export function mapWordPressToBlogPosting(post, includeFullContent = false) {
17
17
  const schema = {
18
18
  '@context': 'https://schema.org',
19
19
  '@type': 'BlogPosting',
20
+ url: post.URL,
20
21
  headline: decode(post.title.replace(/<[^>]*>/g, '')),
21
22
  description: description || decode(post.title.replace(/<[^>]*>/g, '')),
22
23
  datePublished: post.date,
@@ -35,7 +36,8 @@ export function mapWordPressToBlogPosting(post, includeFullContent = false) {
35
36
  if (post.author) {
36
37
  schema.author = {
37
38
  '@type': 'Person',
38
- name: post.author,
39
+ name: post.author.name,
40
+ url: `https://${new URL(post.URL).hostname}/author/${post.author.login}`,
39
41
  };
40
42
  }
41
43
  return schema;
@@ -1,6 +1,27 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
+ // normalizeFaqs turns a JSON-LD FAQPage payload into a form where each
3
+ // question has a single `acceptedAnswer.text` string. Some of our data
4
+ // sources (WordPress, CMS exports) allow multiple answer fragments; we
5
+ // merge them here so the final JSON remains valid for search engines.
6
+ function normalizeFaqs(data) {
7
+ if (!data || typeof data !== 'object')
8
+ return data;
9
+ const faqs = JSON.parse(JSON.stringify(data));
10
+ if (Array.isArray(faqs.mainEntity)) {
11
+ faqs.mainEntity.forEach((entry) => {
12
+ if (entry && entry.acceptedAnswer) {
13
+ const ans = entry.acceptedAnswer;
14
+ if (ans && Array.isArray(ans.text)) {
15
+ ans.text = ans.text.join(' ');
16
+ }
17
+ }
18
+ });
19
+ }
20
+ return faqs;
21
+ }
2
22
  export function SchemaFAQ({ faqsData }) {
23
+ const normalized = normalizeFaqs(faqsData);
3
24
  return (_jsx("script", { type: "application/ld+json", dangerouslySetInnerHTML: {
4
- __html: JSON.stringify(faqsData),
25
+ __html: JSON.stringify(normalized),
5
26
  } }));
6
27
  }
@@ -12,6 +12,7 @@ import PropTypes from "prop-types";
12
12
  * LocalBusinessSchema — generates JSON-LD for a LocalBusiness using provided props or a fallback `siteInfo`.
13
13
  *
14
14
  * @param {string} [props.name] - Business name (overrides siteInfo.name).
15
+ * @param {object} [props.address] - Address object containing streetAddress, addressLocality, addressRegion, postalCode, and addressCountry.
15
16
  * @param {string} [props.streetAddress] - Street address line.
16
17
  * @param {string} [props.addressLocality] - City or locality.
17
18
  * @param {string} [props.addressRegion] - State, region or province.
@@ -31,6 +32,19 @@ import PropTypes from "prop-types";
31
32
  LocalBusinessSchema.propTypes = {
32
33
  /** Business name to include in schema (falls back to siteInfo.name). */
33
34
  name: PropTypes.string,
35
+ /** Address object for the business */
36
+ address: PropTypes.shape({
37
+ /** Street address for the business. */
38
+ streetAddress: PropTypes.string,
39
+ /** City or locality for the business address. */
40
+ addressLocality: PropTypes.string,
41
+ /** State/region for the business address. */
42
+ addressRegion: PropTypes.string,
43
+ /** Postal or ZIP code for the address. */
44
+ postalCode: PropTypes.string,
45
+ /** Country for the address (defaults to United States when absent). */
46
+ addressCountry: PropTypes.string,
47
+ }),
34
48
  /** Street address for the business. */
35
49
  streetAddress: PropTypes.string,
36
50
  /** City or locality for the business address. */
@@ -67,6 +81,7 @@ export function LocalBusinessSchema(props) {
67
81
  const siteInfo = props.siteInfo;
68
82
  // Use props if provided, otherwise fall back to siteInfo
69
83
  const name = props.name || siteInfo?.name;
84
+ const address = props.address || siteInfo?.address;
70
85
  const streetAddress = props.streetAddress || siteInfo?.address?.streetAddress;
71
86
  const addressLocality = props.addressLocality || siteInfo?.address?.addressLocality;
72
87
  const addressRegion = props.addressRegion || siteInfo?.address?.addressRegion;
@@ -75,7 +90,7 @@ export function LocalBusinessSchema(props) {
75
90
  const telephone = props.telephone || siteInfo?.telephone;
76
91
  const url = props.url || siteInfo?.url;
77
92
  const logo = props.logo || siteInfo?.image;
78
- const image = props.image || siteInfo?.image;
93
+ const image = props.image || siteInfo?.image || logo;
79
94
  const openingHours = props.openingHours;
80
95
  const description = props.description || siteInfo?.description;
81
96
  const email = props.email || siteInfo?.email;
@@ -87,11 +102,13 @@ export function LocalBusinessSchema(props) {
87
102
  name,
88
103
  address: {
89
104
  '@type': 'PostalAddress',
90
- streetAddress,
91
- addressLocality,
92
- addressRegion,
93
- postalCode,
94
- addressCountry
105
+ ...(address || {
106
+ streetAddress,
107
+ addressLocality,
108
+ addressRegion,
109
+ postalCode,
110
+ addressCountry
111
+ })
95
112
  },
96
113
  telephone,
97
114
  url,
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import { usePixelatedConfig } from "../config/config.client";
6
6
  import { SmartImage } from '../general/smartimage';
7
7
  import { PageGridItem } from '../general/semantic';
8
- import { getWordPressItems } from './wordpress.functions';
8
+ import { getWordPressItems, getWordPressLastModified } from './wordpress.functions';
9
9
  import { Loading, ToggleLoading } from '../general/loading';
10
10
  import { CacheManager } from "../general/cache-manager";
11
11
  import "./wordpress.css";
@@ -17,6 +17,7 @@ function decodeString(str) {
17
17
  }
18
18
  const wpCacheTTL = 1000 * 60 * 60 * 24 * 7; // 1 week
19
19
  const wpCache = new CacheManager({ mode: 'local', ttl: wpCacheTTL, prefix: 'wp_' });
20
+ const wpApiURL = "https://public-api.wordpress.com/rest/v1/sites/";
20
21
  /**
21
22
  * getCachedWordPressItems — Fetch posts from the WordPress REST API with caching. Checks local cache first and returns cached posts if available and not expired; otherwise fetches from the API, stores in cache, and returns the fresh data.
22
23
  *
@@ -38,6 +39,15 @@ export async function getCachedWordPressItems(props) {
38
39
  if (posts)
39
40
  wpCache.set(key, posts);
40
41
  }
42
+ if (posts && posts.length > 0 && posts[0].modified) {
43
+ const lastModified = await getWordPressLastModified({ site: props.site, baseURL: wpApiURL });
44
+ if (lastModified && lastModified !== posts[0].modified) {
45
+ // our cached response is stale relative to origin
46
+ import('next/cache').then(({ revalidateTag }) => {
47
+ revalidateTag(`wp-posts-${props.site}`, {});
48
+ });
49
+ }
50
+ }
41
51
  return posts;
42
52
  }
43
53
  /**
@@ -37,6 +37,7 @@ export async function getWordPressItems(props) {
37
37
  cache: 'force-cache',
38
38
  next: { revalidate: 60 * 60 * 24 * 7, tags: [tag] }, // revalidate once per week
39
39
  });
40
+ // -> "HIT" or "MISS" (or "REVALIDATED" etc.)
40
41
  const data = await response.json();
41
42
  const batch = Array.isArray(data.posts) ? data.posts : [];
42
43
  if (batch.length === 0) {
@@ -60,23 +61,17 @@ export async function getWordPressItems(props) {
60
61
  }
61
62
  // once we've fetched the posts we can also compare the "modified" date from
62
63
  // the first post (which is the most recent) with a fresh timestamp obtained
63
- // via getWordPressLastModified. if the header indicates a newer update than
64
+ // via getWordPressLastModified. if the lastModified indicates a newer update than
64
65
  // what we just fetched, bust the cache so future callers get the latest data.
65
- try {
66
- if (posts.length > 0 && posts[0].modified) {
67
- const lastModified = await getWordPressLastModified({ site: props.site, baseURL });
68
- if (lastModified && lastModified !== posts[0].modified) {
69
- // our cached response is stale relative to origin
70
- import('next/cache').then(({ revalidateTag }) => {
71
- revalidateTag(`wp-posts-${props.site}`, {});
72
- });
73
- }
66
+ if (posts && posts.length > 0 && posts[0].modified) {
67
+ const lastModified = await getWordPressLastModified({ site: props.site, baseURL });
68
+ if (lastModified && lastModified !== posts[0].modified) {
69
+ // our cached response is stale relative to origin
70
+ import('next/cache').then(({ revalidateTag }) => {
71
+ revalidateTag(`wp-posts-${props.site}`, {});
72
+ });
74
73
  }
75
74
  }
76
- catch (e) {
77
- // non-fatal, we already have posts and can return them
78
- console.warn('comparison check failed', e);
79
- }
80
75
  return posts;
81
76
  }
82
77
  /*
@@ -0,0 +1,11 @@
1
+ "use client";
2
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
+ import { SmartImage } from "../general/smartimage";
4
+ /**
5
+ * PixelatedFooter — Simple footer component for Pixelated sites.
6
+ * @param {any} [props] - No props are accepted by PixelatedFooter.
7
+ */
8
+ PixelatedFooter.propTypes = { /** no props */};
9
+ export function PixelatedFooter(props) {
10
+ return (_jsx(_Fragment, { children: _jsxs("p", { className: "footer-text", children: ["Designed and developed by", _jsxs("a", { href: "https://www.pixelated.tech", target: "_blank", rel: "noopener noreferrer", children: [_jsx(SmartImage, { src: "https://www.pixelated.tech/images/pix/pix-bg.png", alt: "Pixelated Technologies", width: 50, height: 50, style: { width: "20px", height: "20px", margin: "0 1px 0 8px", verticalAlign: "middle", borderRadius: "5px" } }), "Pixelated Technologies."] })] }) }));
11
+ }
@@ -1 +1 @@
1
- pxl:v1:fbf000f31450173d233f8d07:98f501df255377cc090f542157c6849d:791bc568604616c2980235f5076a5723a8fbd3036e3ff67690b5641fb0fd2c2ba6cd81d824504c036acd43d75495b394f50bc62b23094fb308a2c2854268f87004a2f0f03af1ce300f8a8272e905817bb328a0d696aa56a788bfd17f5c23ae0faef6165de82f4e57ea952b479e3194f38c901df8f8e1258ac7bb048b2b92b41862bb4636335fb36e2a04b54725fe3df8c0c52f2e6e4c1a8032422f94fa9092ff00bf36d4ad048537f545c028243f8497eedf91f35ce0f1a7197279f0b672ecd70f3782747f125e66ba4b01c24cd44960157ba073d331767d1c0b6605f7ea8c71adf5d52dc0fdc38e4bbdc53b817d3652329cc6537e13ed2aada1ef5d9f66796c00121813d9a467d242219c5b28d616f87e91265d3f7bb7d83c0d4f034c963392bfb5af187a1504b1d3eb4c950c360cf01ddd688c06e22d4da7017d9b41c10a99e115f23ab08cf622be306dfd9a418e5fb4cfe8f5aff1cbbcf59ab4cd9da01f67813aec29921906d0741bf1fa265a423e099310ac5ec716436cee539176713f32e92aae56ed8ba7be84032032aec269a5d341a054377394e62248a9cb92a9f2cc3c926395ef06a91cf5f8f9c3e4413ddcf5d0b4b9161a4e29590a6472cdd0f5d528e1f9db3d1820a5f4b3f15703a0785201db7bac327a8ac5050db63f5bbbfa3de111d6c3e73cc7a170f2e6e8b3eccea11a95fd18752bade6dbeb65686b54ba841615acff123b702f5a40c1b8c16943f92d491a30f90182b380c2db4f42ff4257e3a0320616958c7d30bad619caa2e1db4898b8925cbc20b873036b1a49fb01f73362ef73aea816c8425ec4dc00e516ef418ad0499ea00d0835dd58c68572d3c1dbd6fddeb0aa85b13d8a6bc6c05e27b141bea252fb4a7addd97a96c2862a57d3a862e8b1c4e661d72f93dfee016f8179dd3875202e4fd0f977619aaa53c4a12cdf205fb73cf29dcd6998833443483addd674cb034fa7df77ac21bb52ac2a56f50d8a0cddcf6066dbd8731466e01fe21cdd78b2d9422273ab332e7b50965becb5ebdea95bd081ebc8c6e76b630cfbcaa419ebda382b61292bd55a2d84d63f56e42336b26cef8a622a0c4fa1fa1778f25200283beffa38d069dd783a39462bd1cbdd69d875abe01a2883fca84a73c3ff33f750ec128aecd2c71dfb097904d364b513eb08023f6585aa36ffe5fcc83294ff12baa0196c4b83c1611d58330757841b3c0b6eb4868c53e544fbdea8d155a7eda0b69e1711a7393a95cd790a0084442d8c1ff37b29438466beb6255a95a8e9a859976d3426e3604592977b7217f027dc9379f79a98d0336c7f7f751d74be4adecf3cd53a9db6781eb2261a667d56a88b129ea5bdaea82fb66b5b126e2216b0d99973d75e071df331d8a36a086d82fef8304926abcc812746026e2f17e918488119fad26c1b5e5269ae10da03110841df4b0daa8a6be742dc7215513266c4f0772756b2ab46f88bcbef9966e200cf69d849dc6964f261a6a32e0ab7bf573f164c82649a451b82c950a154b213b62c7339e8e5c589e9e7a586b8a9819ff5da892f512523bf6547d1ab8fc381b3fd7000fabade1023b68cd899eadc68078e22ed7520d178709ea4ee588c288f88ef9a59c6467fd6bb098bbb2ccf5e1a4ee67ff3ca65eff684ee7489502f0517a7a3b70aaa5a17de3a1b3e0ee673621dcf1af2075c5232cabf15a3c3cd8e5b66df709516f47a4f754d4468f76593a2485410f8abfdcddc7345717d67aee69c70c98143c13199f448a697bd5763c49f9b75656cfc06490a92e6e4ff190faca377fb1b7566af3b91be5187fd77fd7f04bd57a53cb5b88b3490faa240b36ed2fb1b723671776f7881f49d42c14b55ddd00c2ae0c852cc2e05fd9b70f9867cccce515082db3ab3d5052a4afd80b5ab3dc6976170a1114d04cb3a225b8388325fd24609d11820b4d47f002cb7529abc47bd10ce96e2373425784b68258058683dc459a55a78d0b6cf8b9023204ed6a0ba90e5221b4103302437c5a919d5b098d21ba233138cc36c56bc5a6b74a29358b4156c4d0011944fb2d86fbb6c9d3feb27e34c1cbb204b5a6e10cea4100e85b96a28a5372401ad79bde01a950d2afeebae6d52fde22a1c6f19603f02336d0c1513a1d50ccef469fefefcc92ce01c839b719687d9cb47e869bdd9238d54390b9ab3689daa9ee748fe0793e9415e2e50af1a3e5221fcd903687245da166ef7fd726f2ed4750845653f1db0324aed2c4d2a2c59e9fe26dd151b200b90aab0e528fc437d24fe03db59094e47b6f889a5df2e8d8ecc38f7a030e18852edbdc6be479a93ea8b20f3dbd7248dbf8515d727c9a96063be090bba4a80fcfbded04b4f508451a515fcbf82a4afed4355e3a4b5463300297d32883f54b89012cf481c214e94832e3d9204752c3abcd3b018c7bc8f701d214fed6a72a27416f902326103868747884da3c3dd220e00e8f11ceb8c54a3b6abc039267dc54bb9471bd9e5ffb7dfa01aa7f80e35985237c9dafe164b730d7165ef528c515843cd1512a2d48c4b270b9f1e50648b45a0995671aae6418ee03bfd7239767ccc40fc89e0b88e6c23501c040943c289442901393f6ba169e8bbc360c0fdef8ccb8ac439d7661411ebf92c3efacb6b49c79faec622022e300cab336ebaae5342b560a68f71c513ab376ef85beeade2c71354d1a56f67be3f49d67ab94a6ab9c0634cf2b29576aaabead68e1acd6f47c01ed9da731420a63f46d67aa1fa42656bf31cac070adb1be5cb4a1fc7fc56718687c3dd219f0530f4adce63ea8b757deb31f4bddb50b5b962ba69973de96d3f5fa378bfd3ae40c35ee358fb21e9a0c23d5bee9a4141d7cda9b3c7a0fe76f0cebda6e824875bc52d65ef7d45ca4a3e088757a537db92d300fc3c255454439ad7ce0b3e9cbe5e4dd3a6b95acf6ad769753b9cb77148a77997e0276f774cd94dcae601dd4168f0f699af8f1d37ace99e827fc4bd7bd6732a58a42ee170e261b4062af972056f9abb5e6d64f28c6a46e1b88c294b4d4a2d06a2b0ae323b679b6e077b87bf7cbccd923ca5c9bb3c44b1202f27cc81c6cd379606a075d88e827970a5307b9ee15790d783ffb8c77dadd670d866e8ee547692c5e0e48dc18288901f2de0efed420e24cea2aee0fecee0edf851f69968ef07ad4afdf89b7aaa3828a88c1a21fd7a732329205a79b18a9874fe42bf0bae300f6c774e9c1cd1b66ea97d3d56e694e9c73105ed209f0042b1d01a4640191e8027624bbbaf1f5d790762e2710ac5a72a9e191ce8819eb9c18c7f11107a54481c32d186fe2cf8f4fb8ed222f230d3fc0ebbc834a091e04bd0924ea3c80fa19a6cf95a8bfb401bbcbba5c77903b33c2501eaa205e8c80b351769ae5c5ba45210b4bbb2849b0a8f0360be47bf789366b7759fe25f8efb5540a0cc4b266be2a86b739a8d32a3e6fbca078e5307540429e6c8cb18447cc3ad383afabe4ae4a4fc301d1df641090798631443d94a827cf2b6db4a2f3ecb4125f24c21286041e429a244ba0d1e7dbf1ae85435f8f0a0a55640e8604178a92f113be0aee6e68fe5276bf8b1b6bbb65368d982602a0c5a961033078a1a5a4b363ec269d9be43aead8d0ced985cb12f25efa5f0a751dba9db957736eb20166de46c4dce44500ca25902bb0a0d1fa9c26e0e0bc1cfe771736bcc219c5d0778e56d8cb147869e571e831043427cf804fb26041460bc90cd69151163c1e3be958744c0a5a9d1e3a0862c942a2219bf5b27b29ce88a818cfd45c385b51749171d44f4007ce1261874cd1f2ae0be596c2c84dbcae0e4f2bafff13976dbee1253799ee16e795cc9bafd8b5400bea9193e925295a6aa45b3caba5335a2b412885494b80456a6f3f44c1faba043723700d1bb32464595a3b44b9fcfedfa8971c390c610ab7a9b9fa134fa31541cf54650a925d1a835c9a9f54ca936bf4281972fdd2ff6979e596545132199537a6cacbe86857d02b6374c73c382b73bfecdef55792f980cdb5d0fde1a5073d57984d49e23ea5da360c736053275956615ab74881445210b213bbf0e1edb5bff0409d6e43bc0d87d575e5f4bbc4322bade3ec4d55f00c8c3273e9d4aece771618015cac2ed06d6dcb9d43a68fed759d8c5cb209175ef015967fd4fdd6b4f7e2335e094a277aa906d18e6db43d8a2fa300fc472464843d514547d3a570326493043360960e0470822e31ae666845c4942b2447c0847b8581fa9c157ba0c9f353096af6988b1aabfd4b2af3d4abbc1d383110f0bac23cae697e6d7cc4a187f95252124777da449452f88ce925f6bb7aac2ad0a1f3ab467915457fa1096ca73135d4052daf5afb9e5ca88dc66953b30a5467a29d9d405d1b1bf5c208a89b13fa382401a68bf845f0ff48d13a58a3f65571cdb9acd53f472ab484b16b15a3f9ecd294c5971a79c888b339a503a8a20d72b5c45b261ccf366a5ff91816c810626edf6c0411e3a6d6cab4b1fa49866ca83f77fc0562a9228423e4293b53a892b6a3c22991d09c2006a8ce51c0ed860f7c4d7f681a6eb28bad68ad44bc4f6ff53527e22442af63580982b60a7ddc2be544e6875d66bd2fc3dd0c40ad534ba0b143e34f892ee229b8f432d364d919fbf43b462df16f75db0b6688740dcae990b0f40b1c12cf0e2c51410a9d7e21746bce3dfcea6b075902e582ec37969d15907c050f15d6ac75fbedfd6629ad40d42547739c29c05a5524a1605944bde50af6ba7cf5c6ed3f743576f39b31eaca57c30779d5e0da8af2e5e0f33bd342dfb430a5c220e193e46996b08d94e207f486253dffd6b26af9e84135ee207723fc21da2da497e00f6ab0ca4c257fba797aacd283c10417ed0b9c2154c392614538f00e28b15709a9b73109dd2ceb50b5c5e368d3fa5d2aeae956c681bfe40647fb9abdf9eab1df01a426af05105abcdf9c191d67a72398ef3b87e54c2d12c91793c9839a431131d76fb7fa6e7a14bf511b86c9c2c66c04f4f8bf887251357ebf96ce042e34f470d042e3e9adcceed4e4d70904f3bc817b50132bcb66040d1fbe156b79d453dbafd6f3d57eaeeb6c9a67c1a9faf35b8301ddeb117ba27869d6f899468c412e508884b3ba9cb175c65da2abe855cd5955c1f5bfadd55a12cea45e03a22105d5bea2203b65e60946987c140eaefac58c8
1
+ pxl:v1:baf15b131c1a483618160633:40fc3f3a344e2447fc00d35eb721763a:406ce5c448bffb5103411870a6c116764ce6d83d9437993cb454e87c319b36e7f26d349e728f94a266d35b65d27f5bf15294103aa07ee30756d5e3723779ca01a74023927aba084010b09db70125f5ab7f8fde1a662489991b41756607d2bb85caa5ece882029b4e38fa68404d49bc934cb36805e719529071179fb8406db18f91800b5fcb76f66febdc14609f364b0cad90110312ea95d5680b64748e6276f36509fa6c27307f83f764ead64541e6dbe955bfff94241233b9d78319f40c2509642bc12c6cc85b0ed25e91f43a48fd2b1a48403190a74487289505a14cd5e6d34afa9e7261ed76a74eb3e0fd8ce730bf04d4a3e325c220d626e05d4ff3e04b3ef9c0e7d7c5e300e3439599f9acf733b6bf8f186a6576bf1bb67706b9d86cf351714cd343e8ee703a0fa831bd7a1d026e2899ded4dd9a1bad781b208ff957fcdf1bf9d2c851d2cdecd687d2ec3dca3dd8e4fcac6d96cda797db630f466d40bc6231f6dae5e51473f8e329caa87806003c0a6e7e85d223f51af15d12612faabc4701444892f47619aac1b9bb653d5b97c259075b426afefcfb02184a14651b4f79446495f365271d5ed0d251da32c245960bfa8b414ec1bb85f48b808e31cf4c6b1715c588da08ef4413836585799243e3b37fff8da9e4b8fa2f3b172126c0edb0d1a8241552d745c96cc8bfb5dea1ac1e7c514a548cc74d72044e6964f5aea83b9887bb6cc62a21ffef4e4c3407ac5475f6d7f07da34071935272fa82ee947715d496c1f6ea92c131a996fdffa6ae5544afd099fcd1749d3532364539a58d336c1c8c38b892bf44f00731aa1501a1219719cbec338066b3fc8fceb7cdd7e78c65c94cddc95221a7fa94538a47a8cbd53d3c7d9c9b7558bb3eeee5f4377748cda6edd6a7c93dec37c5ab0c69600ae722ce2d550fdd3ebc04425ee44c1cf7c6fa0cfe284f227d91dc28520890968f51338d2f7288d5dcebbd6aabdc9defac75e6d703f60ae1cde5ca4c317015a8add8dcaa9cfdc8cb551a94d5017febd49543b223419e04c5aa4e9831259c347f29db8615e1f0fa62d089bdce2ec21a3a187b302d94af4cc1ded8174f6ad0481f38e5e564cbc32701b6d5e1f3855411aa4bfeac29cf2f0c452661331518dc1145c10a42ae9a36937daa2ff260022f4c68fa8cf0f83fa598a42bdc760753bc71649d3fa19cd9741e2c9101963fb51e72274bfc48e8640e4b97c3883fa76ade2de0a18212ceacc4ddda1e435866d201d121d7d87dcd41f1f1e48fec419d039c8e3083fcb2a289d20228b5f7dbd2eac0f95274d7c13dc9967b4c27d4c84f06120bdd10abbc608b94aa8036c416aa727607449be947b40b425f42e31b9d5613f17a80fe1e73a406fbace9bffbed44019f45a3f6bc20b7a3d883e9452b826111663f47f5df4257562144b25b3b96cf0ef1eb7d07458cdd11a7521a4df698162d3fe35b9d040351bff870b88e9a084e03a7fa04c188dfca0fee171aa0af6a4ca98ff5ecace05458cf93564ca1ecad1efff29c19d03b1bc041d14d398d807d274d765adae2ec4bb78e3f8a481e38f484dcc0dac170aae823d4554a46a61445a5b1db657ef0de12969d99562ec2aa5bd07803a8c72882b64e41711912b777711a5e3986e964e571a6873bbcaf92bd9a99da0485573fa6845a5e80f211ffd9dfe16a21eeae28cae3c62fa1921e83a8a36fba1076c5e59bb3742c84e54765c8e7e3e2083d3415519926fea09e95cbbf5fa5daf5553307295da0cd39821e7446a0d28dd40547f8e17cf735ddbeb7f834d8e8f7fc01fc131188fc202ac365e1de64f1a6ba6b41b67ed94c1df2c66c53b4965b78b8846e42209e9971d94cf336f5e514b267c3ea39b2e1bf4b65df2dd09c0e920149e1bf7699d317d7473617c9269b28e80c4a3500ed4b35c6aec71e8cc794ab97c29af36c27c0351efe5759dcb1095a4b7a43433d55cabafe55de95badf6c092e9d606c4f44ca4666d351fd321332a7fb7e96a941447d7d94b770c319f8e58112e0e6153d35b71e98db548765cf6c275d16881cb5b13762ab716719fae8efdba4654f571755f6bf22a9f0bc9deba924ac6e9bbc05788a324be09834c1cb54a6bc638d80b4d44c946b307de86b4773907b9e586c887b5c3f2aa78c3c0c03cdcb3c7154bfdf5261c3ed148e05765a533553f414bb6f05fcbe4197089161e76359e50f9281924e2d15d41e335f5d5a8ce81ed63e178ab0372b7e0b0d0ea38260b0fabf0a48697fc49e08412d0b3d8dff50abc8db4b8813c8c6c00ceedd42daa52cbbfcf7050b2a681f1f79c1853c973741491c83fab85f9f3727ed58456e3eca39f5a684d8386908e38ec1ebf7bc6087ba82dcc7820d4a3cceaec9f40382f4bebfdab959f5057594ab4d98a19fdce9854a839d67fbb62826d8fdc416a9bd91ce0db8a87973e3ed9e901b90c3e558cb80e1727857b9708c1f81a7f6c45d72554e2bcdef4c118823378975738eb5684b305664072059f66199cdf9e03954870b601bd9a97ba387afe8d41f9e622a65c51e57a850209195f1291285ced83e21f9e43047ac8cc3c329d0aa6820b013df6efc5994f6ce75ec3672a68084803c85e8b8351385fa1329799e7516e0fbcd32f9d6bc53e97ebdcf91c27cd6833d3ab78b9dd9afe7064a28a8acb4c3064b55fc0083023de741f23dd34c9bd0555c9d0a1d332dad57d2c48787c8f9017ec107ffac1a6f7ddabfa4494f1515790983f76bc0cadb8526d7545786a439c2dafa3d5bc1870900437fa7995e97cac42afc8b4f11726a14d92ee350d419b5f3da5f2ce58fff409b6371c3cc76c453b40ae4d07b9340d88e56ac2fe4cc5645fb3ec5e7bb3f04324f27635e7523b9c8a407d3750892596cc793899c7cb2fce5c48febc7670ac033b65fa135762be9d7d1d2eb5fb4934ece1f5ce9347b3ca46807dae8ef8e1be6e7629768f9ebbe4d94c8cc1568ed307c72e18e2ef42cb0ad7c35e925bccf0f6da3b6a4adb793aa497e22c9928b057affdaf71bf8ed335ee2761583145c7bc670ef96a6de2eadd8e16de70649db362271b8f4ece98c7b24b07db3f4b678e2eb19be95cbd44a302bca90e8b5c4ec4a4d9bce58e7828d69f17c5a5d07c7eb32d8ead12ef09b40cc8b40896d90eb3c5e44e3972f109baf506f83dbe50367f140e2814a451a5f98902c5de8e94e8d6d9f326c8afa2dc498d6bb337177f31ab59b3f8b839b72722497b46fd6e26fc57e0241115da4728d5ac1e04074a6bb6ad6c32d35a72d80f9569468ae8a8b970af09d9c0c2e1b96c988023268cec5a435b813179011c16777a8c477a2711898a89616cd61402e81ec171e02a75c9d147c6d28cf5d7df6e8444a159aa181fcbbdfb8acf447a8b61423c5c6ac95b8175649c785e71600d70f7f6b953b941f6127c36ccdbe082f7ec1d02e60875414b6d9506f05fd1256c35b89142bab83a221b2e88661d08e538edc8018abb9cac1e2cc3e33378d5cf9edd98d7f4c9cf48470f75b9dec836b98e25335959cac87c6ebf7ca16aef2677f9ecbfa534130b4c3326a3b7ce154c4be4331c14e97319438f7cfa74322ed4142002cf6a8e686776d3b0651d6f115b4a559aa6c6af8a26638bebd16291469677bfae1b56a4320fab5d83f942d65ae70007d191db5ec94884bbb881bcc6d4b5d1dcfc0a7890a2af7d8b5cc6c7c39efa93f6d5756d425def4ad89783e6048f11342929cfa95d57fcb1232c7ab7a3f844efba56db106e15b586857374977ae1be5f803260916289c77eb1411cbe60d4dfb219f333a6f2ae4af718cca8dfe408cd367b8727fe60c098f5504a194d9f8fc5bcee013afeb075eab80d4090a914ec304a745c01c3b5da35398968e58f5c840ab2e330856a590217685fa73c7b2ded66e6bedd83ce631156f2a22ffd211c6dde263f11d109a55a2ad6d0a075cdb73677af982a7265bba203dbff3e2ccecec54d5ffb3b73583b8486ae49ae3484b89a1950de09b0747712609845bc3a73dfc9b61349d084623bff2f1ca7f8ebda54742aee137a1318e07413cf24d0f73c8925ef9b31dcb87c22ef41c50b49b44f7bc51f456c9c228bf223d744e78146e0ce9edc32862928ed119a8cf23d24c2b19257f96c63640046967c30cf0f6daf76d6cce91d3e4e5a1970887bfd9077009689de6096288d18c148a446a77b8d1f07d5256f7d4592594c26d6d3ae32cceb1406bddf44c1a5a24e33b3c716ad9f1b01888dceba1e2e697482267ad16e3cd3c833ef606a9107b2388f764c1efb6cdca422f1a019efee89d13df2aface899af2635b01937b0d702cd49a9c05b960b3d16fc443c0ef046133058b8e99e9d69e7fbc05993712f8c9f845b5cb9bd84caf54643a0acdeb372b5f51c6d001988daa2133ba59c7bf09d3f2049e27acf6fd4633e05bbeb7d145b37cbef79b6992164539626502a90238a722aaf91d87b11ee2b335f64902c5616b8a0938c830415c9427859f79efe1ad29897743a7ae60e78b440a35d6c0513a655b7ef8f4e848e215a98973cac92911627cf94722fd933747a08f49207d9fc222f1ab3b8af3bbc76f1adeb594dc1fc1c50d911e71f56d502215e2b1df2762a011a813cf055c19f85c0027e9c3e734a5c6e53e705d41e6fe99674886d70463fb3d8f9273c99678445b2175d8be3f3832397a58b100f306bead2a027241ab7bafff8505d51a14306e357d57c8125bb42622174c64022b861d87e3956bdbee5373a43878db37e8234fce7666aa5edb6093988ca8bbe6b6087eee09c2951549358d8d8690cc05faef8927060ae5528cc2a091cf38dafd86a91e2a1f7514870711715530620ec35eedd33ec3e6e0429dec5aa768061e04263d8dcccac3cb8fcbf123deb3e5a33c3eb71f9cef028a65adf225e9330c53b3dcd66233e02b1830fc01dd1747c75e6195f21d8f2bacbdd480eac8b483cea881b3d05173d7c7496b6250b925b3a6135c8af5c29fddafa4ec3ef3804483178a12efadde541d9169a1a09d7780f4c577bca464a5d0961cc2602f736db4e5687f3c3abc0571278c306fc7674c37205eafe6f004e450821c12940e5074bcfb132ba994a6bb49006204bca6ecebc1e063e13dcffffdc8349b34c911041a2d76907b25ece712be184c0ee4f32bbba035e0e0ffbdd15ebe4329c9152fedcbbf2044
package/dist/index.js CHANGED
@@ -72,6 +72,7 @@ export * from './components/integrations/gemini-api.client';
72
72
  export * from './components/integrations/wordpress.components';
73
73
  export * from './components/integrations/wordpress.functions';
74
74
  export * from './components/integrations/yelp';
75
+ export * from './components/pixelated/pixelated.components';
75
76
  export * from './components/shoppingcart/ebay.components';
76
77
  export * from './components/shoppingcart/ebay.functions';
77
78
  export * from './components/shoppingcart/paypal';
@@ -1,42 +1,47 @@
1
1
  {
2
- "templates": [
3
- {
4
- "name": "About",
5
- "aliases": ["about", "about-us", "company", "our-company", "team", "our-team", "about-us-page"],
6
- "src": "../../pixelated-template/src/app/(pages)/about"
7
- },
8
- {
9
- "name": "Contact",
10
- "aliases": ["contact", "contact-us", "contact-us-page", "contactus", "support", "get-in-touch", "reach-out", "get-in-touch"],
11
- "src": "../../pixelated-template/src/app/(pages)/contact",
12
- "associated_files": ["src/app/data/contactform.json"]
13
- },
14
- {
15
- "name": "FAQs",
16
- "aliases": ["faq", "faqs", "qa", "q-and-a", "frequently-asked-question", "frequently-asked-questions"],
17
- "src": "../../pixelated-template/src/app/(pages)/faqs",
18
- "associated_files": ["src/app/data/faqs.json"]
19
- },
20
- {
21
- "name": "Humans.txt",
22
- "aliases": ["humans", "humans-txt", "humans.txt", "humansfile", "humansfile.txt", "humanstext"],
23
- "src": "../../pixelated-template/src/app/(pages)/humans"
24
- },
25
- {
26
- "name": "Projects",
27
- "aliases": ["gallery", "project", "projects", "portfolio", "work", "our-work",
28
- "our-projects", "our-project", "case-studies", "examples", "showcase", "samples"],
29
- "src": "../../pixelated-template/src/app/(pages)/projects"
30
- },
31
- {
32
- "name": "Services",
33
- "aliases": ["services", "service", "our-services", "services-page", "offerings", "solutions", "products"],
34
- "src": "../../pixelated-template/src/app/(pages)/services"
35
- },
36
- {
37
- "name": "Style Guide",
38
- "aliases": ["styleguide", "style-guide", "design-system", "ui-kit", "pattern-library"],
39
- "src": "../../pixelated-template/src/app/(pages)/styleguide"
40
- }
41
- ]
2
+ "templates": [
3
+ {
4
+ "name": "About",
5
+ "aliases": ["about", "about-us", "company", "our-company", "team", "our-team", "about-us-page"],
6
+ "src": "../../pixelated-template/src/app/(pages)/about"
7
+ },
8
+ {
9
+ "name": "Blog",
10
+ "aliases": ["blog", "blog-posts", "news", "updates", "articles"],
11
+ "src": "../../pixelated-template/src/app/(pages)/blog"
12
+ },
13
+ {
14
+ "name": "Contact",
15
+ "aliases": ["contact", "contact-us", "contact-us-page", "contactus", "support", "get-in-touch", "reach-out", "get-in-touch"],
16
+ "src": "../../pixelated-template/src/app/(pages)/contact",
17
+ "associated_files": ["src/app/data/contactform.json"]
18
+ },
19
+ {
20
+ "name": "FAQs",
21
+ "aliases": ["faq", "faqs", "qa", "q-and-a", "frequently-asked-question", "frequently-asked-questions"],
22
+ "src": "../../pixelated-template/src/app/(pages)/faqs",
23
+ "associated_files": ["src/app/data/faqs.json"]
24
+ },
25
+ {
26
+ "name": "Humans.txt",
27
+ "aliases": ["humans", "humans-txt", "humans.txt", "humansfile", "humansfile.txt", "humanstext"],
28
+ "src": "../../pixelated-template/src/app/(pages)/humans"
29
+ },
30
+ {
31
+ "name": "Projects",
32
+ "aliases": ["gallery", "project", "projects", "portfolio", "work", "our-work",
33
+ "our-projects", "our-project", "case-studies", "examples", "showcase", "samples"],
34
+ "src": "../../pixelated-template/src/app/(pages)/projects"
35
+ },
36
+ {
37
+ "name": "Services",
38
+ "aliases": ["services", "service", "our-services", "services-page", "offerings", "solutions", "products"],
39
+ "src": "../../pixelated-template/src/app/(pages)/services"
40
+ },
41
+ {
42
+ "name": "Style Guide",
43
+ "aliases": ["styleguide", "style-guide", "design-system", "ui-kit", "pattern-library"],
44
+ "src": "../../pixelated-template/src/app/(pages)/styleguide"
45
+ }
46
+ ]
42
47
  }
@@ -2,6 +2,7 @@ import type { BlogPostType } from '../integrations/wordpress.functions';
2
2
  export interface BlogPostingSchema {
3
3
  '@context': string;
4
4
  '@type': string;
5
+ url: string;
5
6
  headline: string;
6
7
  description?: string;
7
8
  image?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"schema-blogposting.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-blogposting.functions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAGxE,MAAM,WAAW,iBAAiB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;KACb,CAAC;IACF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CACxC,IAAI,EAAE,YAAY,EAClB,kBAAkB,GAAE,OAAe,GACjC,iBAAiB,CAyCnB"}
1
+ {"version":3,"file":"schema-blogposting.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-blogposting.functions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAGxE,MAAM,WAAW,iBAAiB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE;QACR,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;KACb,CAAC;IACF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CACxC,IAAI,EAAE,YAAY,EAClB,kBAAkB,GAAE,OAAe,GACjC,iBAAiB,CA2CnB"}
@@ -1 +1 @@
1
- {"version":3,"file":"schema-faq.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-faq.tsx"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,QAAQ,EAAE,GAAG,CAAC;CACf;AAED,wBAAgB,SAAS,CAAC,EAAE,QAAQ,EAAE,EAAE,cAAc,2CASrD"}
1
+ {"version":3,"file":"schema-faq.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-faq.tsx"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACtB,QAAQ,EAAE,GAAG,CAAC;CACf;AAsBD,wBAAgB,SAAS,CAAC,EAAE,QAAQ,EAAE,EAAE,cAAc,2CAUrD"}
@@ -5,6 +5,19 @@ export declare namespace LocalBusinessSchema {
5
5
  var propTypes: {
6
6
  /** Business name to include in schema (falls back to siteInfo.name). */
7
7
  name: PropTypes.Requireable<string>;
8
+ /** Address object for the business */
9
+ address: PropTypes.Requireable<PropTypes.InferProps<{
10
+ /** Street address for the business. */
11
+ streetAddress: PropTypes.Requireable<string>;
12
+ /** City or locality for the business address. */
13
+ addressLocality: PropTypes.Requireable<string>;
14
+ /** State/region for the business address. */
15
+ addressRegion: PropTypes.Requireable<string>;
16
+ /** Postal or ZIP code for the address. */
17
+ postalCode: PropTypes.Requireable<string>;
18
+ /** Country for the address (defaults to United States when absent). */
19
+ addressCountry: PropTypes.Requireable<string>;
20
+ }>>;
8
21
  /** Street address for the business. */
9
22
  streetAddress: PropTypes.Requireable<string>;
10
23
  /** City or locality for the business address. */
@@ -1 +1 @@
1
- {"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-localbusiness.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAqEnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAE,KAAK,EAAE,uBAAuB,2CAiDlE;yBAjDe,mBAAmB;;QAlCnC,wEAAwE;;QAEvE,uCAAuC;;QAEvC,iDAAiD;;QAEjD,6CAA6C;;QAE7C,0CAA0C;;QAE1C,uEAAuE;;QAEvE,gCAAgC;;QAEhC,6BAA6B;;QAE7B,+CAA+C;;QAE/C,gCAAgC;;QAEhC,2FAA2F;;QAE3F,oCAAoC;;QAEpC,6BAA6B;;QAE7B,sCAAsC;;QAEtC,8DAA8D;;QAE9D,wEAAwE"}
1
+ {"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-localbusiness.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAmFnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAE,KAAK,EAAE,uBAAuB,2CAoDlE;yBApDe,mBAAmB;;QA/CnC,wEAAwE;;QAEvE,sCAAsC;;YAErC,uCAAuC;;YAEvC,iDAAiD;;YAEjD,6CAA6C;;YAE7C,0CAA0C;;YAE1C,uEAAuE;;;QAGxE,uCAAuC;;QAEvC,iDAAiD;;QAEjD,6CAA6C;;QAE7C,0CAA0C;;QAE1C,uEAAuE;;QAEvE,gCAAgC;;QAEhC,6BAA6B;;QAE7B,+CAA+C;;QAE/C,gCAAgC;;QAEhC,2FAA2F;;QAE3F,oCAAoC;;QAEpC,6BAA6B;;QAE7B,sCAAsC;;QAEtC,8DAA8D;;QAE9D,wEAAwE"}
@@ -1 +1 @@
1
- {"version":3,"file":"utilities.d.ts","sourceRoot":"","sources":["../../../../src/components/general/utilities.ts"],"names":[],"mappings":"AAGA,wBAAgB,QAAQ,CAAE,GAAG,EAAE,MAAM,oBAUpC;AAGD,wBAAgB,SAAS,CAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG;;EAmBxC;AAED,wBAAgB,aAAa,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,UAOtD;AAED,wBAAgB,WAAW,WAc1B;AAED,wBAAgB,YAAY,WAK3B;AAED,wBAAgB,UAAU,CAAE,GAAG,EAAE,MAAM,UAEtC;AAGD,2DAA2D;AAC3D,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAKrD;AAQD,wBAAgB,YAAY,CAAE,YAAY,EAAE,MAAM,UAgCjD;AAID;;;;OAII;AACJ,wBAAgB,YAAY,SAoB3B;AAOD;;;GAGG;AACH,eAAO,MAAM,oBAAoB,UA0BhC,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,uBAAuB,UAQnC,CAAC;AAEF,eAAO,MAAM,wBAAwB,UAOpC,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,oBAAoB,UAoBhC,CAAC"}
1
+ {"version":3,"file":"utilities.d.ts","sourceRoot":"","sources":["../../../../src/components/general/utilities.ts"],"names":[],"mappings":"AAGA,wBAAgB,QAAQ,CAAE,GAAG,EAAE,MAAM,oBASpC;AAGD,wBAAgB,SAAS,CAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG;;EAmBxC;AAED,wBAAgB,aAAa,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,UAOtD;AAED,wBAAgB,WAAW,WAc1B;AAED,wBAAgB,YAAY,WAK3B;AAED,wBAAgB,UAAU,CAAE,GAAG,EAAE,MAAM,UAEtC;AAGD,2DAA2D;AAC3D,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAKrD;AAQD,wBAAgB,YAAY,CAAE,YAAY,EAAE,MAAM,UAgCjD;AAID;;;;OAII;AACJ,wBAAgB,YAAY,SAoB3B;AAOD;;;GAGG;AACH,eAAO,MAAM,oBAAoB,UA0BhC,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,uBAAuB,UAQnC,CAAC;AAEF,eAAO,MAAM,wBAAwB,UAOpC,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,oBAAoB,UAoBhC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"wordpress.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAM1D,OAAO,iBAAiB,CAAC;AA0BzB,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAC/F,wBAAsB,uBAAuB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,uCAUpE;yBAVqB,uBAAuB;;QAJ5C,iDAAiD;;;;AAuClD,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAsDnD;yBAtDe,YAAY;;QAZ3B,gCAAgC;;QAEhC,kCAAkC;;QAElC,2CAA2C;;QAE3C,0CAA0C;;QAE1C,wCAAwC;;;;AA0FzC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAgDzD;yBAhDe,eAAe;;QAlB9B,iCAAiC;;QAEjC,iBAAiB;;QAEjB,qCAAqC;;QAErC,mBAAmB;;QAEnB,iCAAiC;;QAEjC,uCAAuC;;QAEvC,yBAAyB;;QAEzB,2BAA2B;;;;AAiE5B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,kDAyB/D;yBAzBe,kBAAkB;;QAJjC,8BAA8B"}
1
+ {"version":3,"file":"wordpress.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAI1D,OAAO,iBAAiB,CAAC;AA2BzB,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAC/F,wBAAsB,uBAAuB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,uCAsBpE;yBAtBqB,uBAAuB;;QAJ5C,iDAAiD;;;;AAmDlD,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAsDnD;yBAtDe,YAAY;;QAZ3B,gCAAgC;;QAEhC,kCAAkC;;QAElC,2CAA2C;;QAE3C,0CAA0C;;QAE1C,wCAAwC;;;;AA0FzC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAgDzD;yBAhDe,eAAe;;QAlB9B,iCAAiC;;QAEjC,iBAAiB;;QAEjB,qCAAqC;;QAErC,mBAAmB;;QAEnB,iCAAiC;;QAEjC,uCAAuC;;QAEvC,yBAAyB;;QAEzB,2BAA2B;;;;AAiE5B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,kDAyB/D;yBAzBe,kBAAkB;;QAJjC,8BAA8B"}
@@ -4,7 +4,19 @@ export type BlogPostType = {
4
4
  title: string;
5
5
  date: string;
6
6
  modified?: string;
7
- author?: string;
7
+ author?: {
8
+ "ID": number;
9
+ "login": string;
10
+ "email": string | boolean;
11
+ "name": string;
12
+ "first_name": string;
13
+ "last_name": string;
14
+ "nice_name": string;
15
+ "URL": string;
16
+ "avatar_URL": string;
17
+ "profile_URL": string;
18
+ "ip_address": string | false;
19
+ };
8
20
  excerpt: string;
9
21
  content?: string;
10
22
  URL: string;
@@ -1 +1 @@
1
- {"version":3,"file":"wordpress.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.functions.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,MAAM,MAAM,YAAY,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE;QAChB,GAAG,EAAE,MAAM,CAAC;KACZ,CAAA;IACD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAgBF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAsB,iBAAiB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,uCA6DhG;yBA7DqB,iBAAiB;;QARvC,iDAAiD;;QAEhD,0CAA0C;;QAE1C,4CAA4C;;;;AAiF7C,wBAAsB,wBAAwB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,gBAavF;AAMD,MAAM,MAAM,qBAAqB,GAAG;IACnC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAUF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,YAAY,GAAG,qBAAqB,EAAE,CAuClF;yBAvCe,sBAAsB;;QAJtC,4BAA4B;;;;AAkD5B,MAAM,MAAM,oBAAoB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CACjB,CAAC;AAaF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAsB,sBAAsB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,8BAerF;yBAfqB,sBAAsB;;QAN5C,iDAAiD;;QAEhD,4CAA4C;;;;AAqB7C;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAkB7D"}
1
+ {"version":3,"file":"wordpress.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.functions.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,MAAM,MAAM,YAAY,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE;QACX,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC;QAC1B,MAAM,EAAE,MAAM,CAAC;QACf,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,MAAM,CAAC;QACpB,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,EAAE,MAAM,CAAC;QACrB,aAAa,EAAE,MAAM,CAAC;QACtB,YAAY,EAAE,MAAM,GAAG,KAAK,CAAC;KAC7B,CAAC;IACC,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE;QAChB,GAAG,EAAE,MAAM,CAAC;KACZ,CAAA;IACD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAgBF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAsB,iBAAiB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,uCA0DhG;yBA1DqB,iBAAiB;;QARvC,iDAAiD;;QAEhD,0CAA0C;;QAE1C,4CAA4C;;;;AA8E7C,wBAAsB,wBAAwB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,gBAavF;AAMD,MAAM,MAAM,qBAAqB,GAAG;IACnC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAUF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,YAAY,GAAG,qBAAqB,EAAE,CAuClF;yBAvCe,sBAAsB;;QAJtC,4BAA4B;;;;AAkD5B,MAAM,MAAM,oBAAoB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CACjB,CAAC;AAaF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAsB,sBAAsB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,8BAerF;yBAfqB,sBAAsB;;QAN5C,iDAAiD;;QAEhD,4CAA4C;;;;AAqB7C;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAkB7D"}
@@ -0,0 +1,7 @@
1
+ import { InferProps } from 'prop-types';
2
+ export type PixelatedFooterType = InferProps<typeof PixelatedFooter.propTypes>;
3
+ export declare function PixelatedFooter(props: PixelatedFooterType): import("react/jsx-runtime").JSX.Element;
4
+ export declare namespace PixelatedFooter {
5
+ var propTypes: {};
6
+ }
7
+ //# sourceMappingURL=pixelated.components.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pixelated.components.d.ts","sourceRoot":"","sources":["../../../../src/components/pixelated/pixelated.components.tsx"],"names":[],"mappings":"AAGA,OAAkB,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAQnD,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAE,KAAK,EAAE,mBAAmB,2CAc1D;yBAde,eAAe"}
@@ -71,6 +71,7 @@ export * from "./components/integrations/gemini-api.client";
71
71
  export * from "./components/integrations/wordpress.components";
72
72
  export * from "./components/integrations/wordpress.functions";
73
73
  export * from "./components/integrations/yelp";
74
+ export * from "./components/pixelated/pixelated.components";
74
75
  export * from "./components/shoppingcart/ebay.components";
75
76
  export * from "./components/shoppingcart/ebay.functions";
76
77
  export * from "./components/shoppingcart/paypal";
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=schema-faq.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema-faq.test.d.ts","sourceRoot":"","sources":["../../../src/tests/schema-faq.test.tsx"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelated-tech/components",
3
- "version": "3.13.8",
3
+ "version": "3.13.10",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": {
@@ -112,11 +112,11 @@
112
112
  "html-entities": "^2.6.0"
113
113
  },
114
114
  "devDependencies": {
115
- "@aws-sdk/client-amplify": "^3.998.0",
116
- "@aws-sdk/client-cloudwatch": "^3.998.0",
117
- "@aws-sdk/client-iam": "^3.998.0",
118
- "@aws-sdk/client-route-53": "^3.998.0",
119
- "@aws-sdk/xml-builder": "^3.972.7",
115
+ "@aws-sdk/client-amplify": "^3.999.0",
116
+ "@aws-sdk/client-cloudwatch": "^3.999.0",
117
+ "@aws-sdk/client-iam": "^3.999.0",
118
+ "@aws-sdk/client-route-53": "^3.999.0",
119
+ "@aws-sdk/xml-builder": "^3.972.8",
120
120
  "@babel/core": "^7.29.0",
121
121
  "@babel/plugin-proposal-class-properties": "^7.18.6",
122
122
  "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
@@ -124,16 +124,16 @@
124
124
  "@babel/preset-react": "^7.28.5",
125
125
  "@babel/preset-typescript": "^7.28.5",
126
126
  "@eslint/js": "^10.0.1",
127
- "@storybook/addon-a11y": "^10.2.12",
128
- "@storybook/addon-docs": "^10.2.12",
127
+ "@storybook/addon-a11y": "^10.2.13",
128
+ "@storybook/addon-docs": "^10.2.13",
129
129
  "@storybook/addon-webpack5-compiler-babel": "^4.0.0",
130
130
  "@storybook/preset-scss": "^1.0.3",
131
- "@storybook/react-webpack5": "^10.2.12",
131
+ "@storybook/react-webpack5": "^10.2.13",
132
132
  "@testing-library/dom": "^10.4.1",
133
133
  "@testing-library/react": "^16.3.2",
134
134
  "@testing-library/user-event": "^14.6.1",
135
135
  "@types/md5": "^2.3.6",
136
- "@types/node": "^25.3.0",
136
+ "@types/node": "^25.3.2",
137
137
  "@types/prop-types": "^15.7.15",
138
138
  "@types/react": "^19.2.14",
139
139
  "@types/react-dom": "^19.2.3",
@@ -167,13 +167,13 @@
167
167
  "redux": "^5.0.1",
168
168
  "sass": "^1.97.3",
169
169
  "sass-loader": "^16.0.7",
170
- "storybook": "^10.2.12",
170
+ "storybook": "^10.2.13",
171
171
  "style-loader": "^4.0.0",
172
172
  "ts-loader": "^9.5.4",
173
173
  "typescript": "^5.9.3",
174
174
  "url-loader": "^4.1.1",
175
175
  "vitest": "^4.0.18",
176
- "webpack": "^5.105.2",
176
+ "webpack": "^5.105.3",
177
177
  "webpack-cli": "^6.0.1",
178
178
  "webpack-dev-server": "^5.2.3",
179
179
  "webpack-node-externals": "^3.0.0"