@pixelated-tech/components 3.13.8 → 3.13.9

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.
@@ -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;
@@ -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:15e948ca0376ef20c0be2bb9:957d570218ce379c64b0b0dcd2dac1d1:e26dae3f5ae2fdb80c0bbdaa08ccf67f873594266d4e2b3ff216ba770005a0599e0f22a31785dbc4a00ee8bd76e5fe6570640746df56ff489ec409533eb98ada5ba39f1b88355eb5647619bc96b77c50305c8f87efaa72e42a3289e5cfd217a1c3b57595c56589e0057a7f4601c8a6e25df0a8547017625e20f2baeba99d872ec03a4f71c7b41d8af32c2a08eb5c1e4976e0d84f7844bdea8892afd24a894a0c26ca9a488c5960e5db893c700d4dcc93695dfb421af228a52985cd41831540782a6d5f500937c158bebee6ce18f0dd97a6cc8bbafc32643c3a9c4f9f1b2f0f89499f44c8c69ab80b34639f6da1370658d94dcc798ee8146cd66dd81695c6b61802f84b28195fc53d4043e6022bdf00c991247bf8126bda943b0307338e0518f6ab7f5d3d4c111407ff2f71bf6799e80afac504ae0491c8df969ac4c13bb6130d9450ba2e89ef9976bae5682d02a02a3799499517512b846cd727c86caefc1f718f4e104ca4d56e4f558100c93108c03dca9e7b44cd6a6d95f617704ad85d38b10e7de966a4965f15039331faa183b6a5525a3b642d03554bba7fa07ebc20b015614ab270ae0827af9ad3160bcf2b69a8bf14357cc85901c282d545661d3d41dfc8a6f7d5762cc8214af525fd0f243b681d111f6d2c769d12885ab374bfa32bc982279c75eec811a53e6536239b2e0efe0799a57ab049ff549d4fe380af0f5e4bc34fa9d0956532942fcf5552ba62994dca42b01735e219c3a12c1cc719ef2df101833f8902cab4fbdb22d608d04ee0b40d6b6152fd8e5c91ee954f334437929b92fcb56a0d525c1f748b749d4b702f07c3c6c37fa0543587b6ecdf1150f1ff84fe91a243ac27a8eab230e511ca8be18e5e4c6090df988c5c572cad127652bd11271f29e983971761eccc2135e5a6ad3d7085d0449a102a4c4dd085df5b6aafa7ab86086f9be5613b78e14baee419607820d13e0665989fbe3a3590aabe5aac953e0e9208437ac8d885d20d237e6522c356d753d0f745af5d890d621df1fa31a97f5b1f1393edbb2df77d50a680762329dae6499b72afe6587fe68b7ca85839e0bbf3c81cb5a105c756f8014aec7ac379e13e39912f6e60fe73b59461522d3c34cfefa077983d1c41a9a424f3a5215bd53b09ce3bce25d56fca44c8ae49761c8dbe4a6a8d1fe86db23cd278c280a3bc677c0eccda9c7707189f0d38b7e9fd59901b0250ad0de3849c52c093a54fffe9c0728c7ca79946d323b1d7dcd280de1f8fe67c862af151a51884ab1cc577ba49fea86b828fd1fa49a30a5aa37cac74b3c864cacedeade0158635bd74b85a9abac2e8e1f06ee87fdaff33bf9ad16a8dc37eaba8b1fbe1e8b082e07e5875a5e85735808b77dc93bed6995e8fee2b9e4ee5efcc65f5a6c872cce8f775fc547baaa1bc07be2aea8df43335a8cbd1535898ab7b1d4ef8cd731372f1380afd6a1f9e2bd34a0cb855da50bcc24b016953a87488e36cde8a805cb95fb68d597f6438f9f1f8c083df13ddb1e9b7cf2d93056f14cf7ec945af652b34383b81c63674af037930cedbc20d49e441ec46140072a53c92f634e1ad573e38606cfa238210135bf257f35d81ab5ceaf8fd7ddebeebcf69aac71836a74bce38a4e66b6526e17762ee8c35379b05f9f93fc1f9107d066bbb23a082ec90a3c9f78257c7c557a05509ab2bd8dd49d315b2506b9a2ba28d017a8cf3e942c8716c204e8be644da29c5e7f738a3938f3326dd656ea11556abe60b82a5292a42a64efd5ffdb8b0f09b3caa99a08b418d3f29cf4252802dc7c947c4f96193e6292037c54456561ecfd5a8e13d05043e435cce7b8fd028473102d89a98b600d52eea261d5d200d0fff50663573dbe2e0c7ce2454c920c001c42cb66a335ba0e1cecb085e8da3f98b966496ebdd73e1db81b6bc1f02a79c1fac06e61461b024b14009a3655b26b53f3e3d02da7947f07096458071076466d34d5bcf28a38e1c69828738a7cbe45159fe47fc163d4e9571be43f1333f2f7d0f0c3ba6296345928b07809b83287755a28f2b3674756f1c5c76366d991ffb68dafe8d52a192a5beb54ff0ef66366b729499531e4ec2adcacc54cf9672a1e6081091f9523111b98484213f8c6446131f6a7c88215d1f40a9b1dd5f2668ea5bfd59d2fe42d8e779d30b8f4804ae238acadad1624b8563bab7df9140e5f85c4c8336e83c4f52275003dd3736624f68562372f0351714b25ac4e218f3fdddc04bde0fe287d7329aa2b5c7478b73e5c602d9f7407fdc06eb1081400c9a2b6a1908834b75a1f10878a4e57ea847d70adf0cebefcf8f7d8f00ce961ab872249c0df8a2d0236d54911bcafe89e3d11dacbdec6d02de47d914c0d27320fa69dc2208e8692dd088b6d2379eb6196981eae0c85b5130544b024f2757d9fa1f8d00d0bbdd8bf3b418a543cdeade1e8e62498903b5422f0573afa7934522a020c008f43123622a891c8611067315ffe51f56f874ff56d48530891dba84e9144a1653adb9d02e4b1b012f51334566740ed6a1726b810328df0fa1ce8e0c5ac1e6115ea675fa235b3e80ea2d763f71551c8f0440c37026bb6ae0e6c9dc274c4cd534cb8051065a15ad87ffeee7023339e79bb077d4edadbdaa3e1640dd14c823bf7d6d7b877f64abc169aa1655cc0bee3f63c4d51dd701cdefafb0f688bca69942fdb07cef4e931b7896a75f220e3935639a20378f303da3ad084d33cacfe8d668f9c1e2001a1493dfc4f7347487f3b537af090a6fa4346a9b826b664e3c8ea1cc79736103e361d523e5dcccccc10cd41f961022da00e2192dd2208d2566fc2dc383b06617960e0f54c7e5c309b60042e330a55e039c1b0280ac1ba0e40e52b30aafd5418235eb33f49966b992559edc9e7aac9b6840875c6e003e4253a5398d6a978be9b2e115de609243b1402a05430e4cb42fdce13bb6af0ddb79a6d8502d4d4a2abcb2f36dc86fb662b2f8ccbdee037049a85ecb8a6eef2bd3eb73bb80d95cd186ea3bb2ef668f8ec04223f6eaf2b7a7ee04fe0fd00b52d848a86dc75294542890e116b656c3871b8f1b53f18eb622260f28586dae25ca6b43bac5c74ec08d93fb8f01053fa27b57c150ddede9b0f3d74a5ad61adaf77e9a3254079b8d43694e1d2826a7d9b6c10c4e246e0f3c5804ddcf4df9ab9fbba8ad44be04187b35cd2cf93beedd52c4cbac8e3d98fc6f37e0cf5c82a094cc7c2efb3953bfb68448f2ec1b773cc2f5b796353ebc276ef6c93524b038d0e1c694a675b9e899165c554a0ef575d97bb78f4b917a9533c7a35abda9cbe39d9b5bb5a113df02732a030dbb0b036c75f3d46244ad28c742c40f6e9629476ca82999245ed30921cb7df90bdc10e4c97a31ccb085176bf58f9104fda6d3c2d93a9585482462b47862f854e4d24a196c7d1f31892fc849d39a37110364ec0e3356434ec2dae03c3a83b32d28231749d462aa58aaa1483d32c0463113a3b512493b129e542918c9c6cffa74c1fd00b7d543b0715d3ade737e2db5c838dc75ddcca4d51c5dee1f2fd11b54eb4d8db4d6902df5eee66eeff9883fd1ec649cd88f413d19d2906bc3d2b12ea98de2a1a3c16530302055dc856daefb09ea955c57cc59a9f1d87c6cd832c70c29db18079200c343e3c2c0e08f75006f55fcdf78dcb79db6af64b92e076f9b73a47ed23d8e9a578bd43e51df27700c51ad8ae70b3d9f1e092aa2e53e47f0a10bc1b1b92d73fd06512fb4472165815436e190bb2ea2d9ed9d64d67ef90de7a2e91dfe1290c143356aa4950f31baadc4fdcf6be5130ed1fb9112c48a6c380bc7aaa26f209e68ee5b7bd34b19c369c432d660ad0fb263771e45f4875aa62fef3f06cef64dbb5013f422b4adedbb45fb9bb73ebf2e0a7138cf54d0727cc3aa7adb4ea44287b17f9d362e123a3719619982370f78f458e593843d7df07d434fd89d5afa37f10ff84204625dcaadd9ebcc20ff2fb885a4bbe192a73fc2a55f3eab021f84a8933465ddef575dc558ed69ebc95a74ed6d108142ae1f649d1dabadf049f5b5777da56ad9d82396ccaabdb8801d214d315692d791068cf7bfe0fee5d426eff8cd25e1b678685c3aeee76f22c5521d15717cfa01c7e6813196d5359a203550f7da51f054d786224b676343497c6c74bf6650159b7e493145d2dfa0d4792c98235b958e28ebd1190b7ee4047ebb3b1f50283e1cd26131446a469dadd611d74a9af30c7a15753c85f89a25ca283ccf0184f2e3599ecf2c7acb6bbef958615d9c54f6584ebb6f894c5fa4f1547d59a7aaced07199dc70bd25972fde2d623cfb77612e8bb15918c0771460d8f6f745218bb753b06c4e346878e4ea7d26f76267107e1177436532d3be1ba320c07d2bdc5ab8c026746f30777e0b64b188689715a9d6e93c388158ae0827bdf19fd8711a2849b112a585fd299a583b1ed244d761e13687b24a37147bd221b5dda71eb1f8c3229a9959686d766164c4e4e03c7a125d76c40e1b75b4eb58af140146635e1eb8cb473627fa0dbafde124df5ac3b58fea2d13b32996d078ae3fc5b4862a6273894b21dc1154fd846beb4e282310f291d41734829fae131d12db1939ce88a11078c05f219e7d56df8a9fc7d792b5a98068c87c36b1a2b83d6aae7226f5d4dba95c5d7a522abd4c94bde67eaba0aa2e474a4502ece21ed6ac4dea6cb86e973ca5986247d4f5d18408e5c9b8fdf528db1698cd00ab083cd2ff8d40a363062e4191ed54f73507cbd771e6882d885a3f2c792484525d75793e4d66f149de1066df3134dce0d55c99e90092466ad14dd47141a27a9e4c8f84fa8e02300ab1817dc6a22b161dcbf88623ddfd2c718347e00daf59c709c232bc1dc89653ae9a518e16e47a2bcf8d2c5524faf0a4680d039871d97c4df553e5a9acae61234ec41609a22645cf8576408efeec603f359a97d9fb28192bc3f394cc319d1e316c84592e90fcb4c3cb908ed9c3f7c68340d9219588bd170985be6437a5ed052abb5620c1ec4188fd52ad53fbe8f3ee8ab24fcfa32f0000cc253eb0f50137b6c5a4fb13bf1c3ae6efcacd8856faa2afc89554bfa6c3b4ee897bebd60dfdedfd1b24a71a60d67bcf3b30ebd21a5e93d3d9d53eef13b0ee543d50b321b0fd02b6ef7ab1a8a4c567f2931e59db210060d49d023f3b7e
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"}
@@ -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";
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.9",
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"