@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.
- package/dist/components/general/schema-blogposting.functions.js +3 -1
- package/dist/components/general/schema-localbusiness.js +23 -6
- package/dist/components/integrations/wordpress.components.js +11 -1
- package/dist/components/integrations/wordpress.functions.js +9 -14
- package/dist/components/pixelated/pixelated.components.js +11 -0
- package/dist/config/pixelated.config.json.enc +1 -1
- package/dist/index.js +1 -0
- package/dist/scripts/create-pixelated-app.json +45 -40
- package/dist/types/components/general/schema-blogposting.functions.d.ts +1 -0
- package/dist/types/components/general/schema-blogposting.functions.d.ts.map +1 -1
- package/dist/types/components/general/schema-localbusiness.d.ts +13 -0
- package/dist/types/components/general/schema-localbusiness.d.ts.map +1 -1
- package/dist/types/components/general/utilities.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.components.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.functions.d.ts +13 -1
- package/dist/types/components/integrations/wordpress.functions.d.ts.map +1 -1
- package/dist/types/components/pixelated/pixelated.components.d.ts +7 -0
- package/dist/types/components/pixelated/pixelated.components.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- 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;
|
|
@@ -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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
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
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
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:
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
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
|
}
|
|
@@ -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,
|
|
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;
|
|
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,
|
|
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;
|
|
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?:
|
|
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;
|
|
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"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
116
|
-
"@aws-sdk/client-cloudwatch": "^3.
|
|
117
|
-
"@aws-sdk/client-iam": "^3.
|
|
118
|
-
"@aws-sdk/client-route-53": "^3.
|
|
119
|
-
"@aws-sdk/xml-builder": "^3.972.
|
|
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.
|
|
128
|
-
"@storybook/addon-docs": "^10.2.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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"
|