diff --git a/docs-md/api/arrayRemoveItem.md b/docs-md/api/arrayRemoveItem.md index fe023e3..7634886 100644 --- a/docs-md/api/arrayRemoveItem.md +++ b/docs-md/api/arrayRemoveItem.md @@ -27,4 +27,4 @@ Returns **[array][1]** of strings without the removed element. [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -* Source: [array-remove-item.ts](https://github.com/iamdevlinph/common-utils-pkg/blob/main/src/array-remove-item/array-remove-item.ts#L16-L18) \ No newline at end of file +* Source: [array-remove-item.ts](https://github.com/iamdevlinph/common-utils-pkg/blob/main/src/array-remove-item/array-remove-item.ts#L16-L18) diff --git a/docs-md/getting-started.md b/docs-md/getting-started.md index 0cf0178..a939fca 100644 --- a/docs-md/getting-started.md +++ b/docs-md/getting-started.md @@ -6,8 +6,6 @@ sidebar_label: Getting started title: Getting started --- -Welcome to the new look! - # Getting started ![img](img/js-pkg.png#center) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index fbb0ab4..de05762 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -58,6 +58,13 @@ const config: Config = { ], themeConfig: { + announcementBar: { + id: 'new_look', + content: 'Welcome to the new look!', + backgroundColor: '#fafbfc', + textColor: '#091E42', + isCloseable: true, + }, // Replace with your project's social card image: 'img/js-pkg.png', colorMode: { @@ -65,35 +72,37 @@ const config: Config = { // disableSwitch: false, // respectPrefersColorScheme: false, }, - // algolia: { - // // The application ID provided by Algolia - // appId: 'YOUR_APP_ID', + algolia: { + // The application ID provided by Algolia + appId: 'CKFAW48CDG', + + // Public API key: it is safe to commit it + apiKey: 'ea188884aad4b0fc23cb79f0d7bc17af', - // // Public API key: it is safe to commit it - // apiKey: 'YOUR_SEARCH_API_KEY', + indexName: 'common-utils-pkg-js', - // indexName: 'YOUR_INDEX_NAME', + // Optional: see doc section below + contextualSearch: false, - // // Optional: see doc section below - // contextualSearch: true, + // Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them. + // externalUrlRegex: 'external\\.com|domain\\.com', - // // Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them. - // externalUrlRegex: 'external\\.com|domain\\.com', + // Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs + replaceSearchResultPathname: { + from: '/docs/', // or as RegExp: /\/docs\// + to: '/', + }, - // // Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs - // replaceSearchResultPathname: { - // from: '/docs/', // or as RegExp: /\/docs\// - // to: '/', - // }, + // Optional: Algolia search parameters + // searchParameters: {}, - // // Optional: Algolia search parameters - // searchParameters: {}, + // Optional: path for search page that enabled by default (`false` to disable it) + // searchPagePath: 'search', - // // Optional: path for search page that enabled by default (`false` to disable it) - // searchPagePath: 'search', + //... other Algolia params - // //... other Algolia params - // }, + // debug: false, + }, navbar: { title: 'Common Utilities Package', logo: { diff --git a/docusaurus/Array/arrayRemoveItem.md b/docusaurus/Array/arrayRemoveItem.md deleted file mode 100644 index 841cc76..0000000 --- a/docusaurus/Array/arrayRemoveItem.md +++ /dev/null @@ -1,5 +0,0 @@ -## arrayRemoveItemRemoves provided element from an array.### Parameters* `array` **StringArray** array to remove element from -* `toRemove` **[String][1]** element to remove from the array### Examples```javascript -arrayRemoveItem(['The', 'quick', 'brown'], 'The'); -// => ['quick', 'brown'] -```Returns **StringArray** Returns an array without the removed element.**Meta*** **version**: 4.0.8[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Array/stringToArray.md b/docusaurus/Array/stringToArray.md deleted file mode 100644 index 7f026e7..0000000 --- a/docusaurus/Array/stringToArray.md +++ /dev/null @@ -1,5 +0,0 @@ -## stringToArraySplits a string to an array based on the delimiter passed.### Parameters* `string` **[String][1]** string to convert to array -* `delimiter` **[String][1]** where to split the string### Examples```javascript -stringToArray('apple;banana;orange', ';'); -// => ['apple', 'banana', 'orange'] -```Returns **StringArray** Returns an array of the split string.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Boolean/toBoolean.md b/docusaurus/Boolean/toBoolean.md deleted file mode 100644 index cf8f972..0000000 --- a/docusaurus/Boolean/toBoolean.md +++ /dev/null @@ -1,8 +0,0 @@ -## toBooleanConverts any value to a Boolean equivalent.**Note:** If no user-defined array is passed, the default true values are:\['true', 'yes', 'y', '1'].### Parameters* `val` **any** value to check if true or false -* `trueValuesArr` **AnyArray?** optional array of user defined true values### Examples```javascript -toBoolean('y'); - // => true - -toBoolean(null); -// => false -```Returns **[Boolean][1]** Returns a boolean equivalent of the value.**Meta*** **version**: 3.1.1[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/docusaurus/Browser/browserDetect.md b/docusaurus/Browser/browserDetect.md deleted file mode 100644 index 0ecaf15..0000000 --- a/docusaurus/Browser/browserDetect.md +++ /dev/null @@ -1,4 +0,0 @@ -## browserDetectDetects browser being used.### Examples```javascript -browserDetect(); -// => 'Chrome -```Returns **[String][1]** Returns browser name**Meta*** **version**: 3.1.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Color/colorBrightness.md b/docusaurus/Color/colorBrightness.md deleted file mode 100644 index 5ff9de1..0000000 --- a/docusaurus/Color/colorBrightness.md +++ /dev/null @@ -1,9 +0,0 @@ -## colorBrightnessBrightens or darkens a HEX color based on the amount specified. Behaves like the SASS lighen and darken. -Will always return with # symbol.### Parameters* `hex` **[String][1]** HEX color to change brightness -* `amount` **[Number][2]** positive or negative percentage### Examples```javascript -colorBrightness('#3CB878', 50); -// => '#6EEAAA' - -colorBrightness('#3CB878', -50); -// => '#A8646' -```Returns **[String][1]** Returns a manipulated HEX color**Meta*** **version**: 1.7.1[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number diff --git a/docusaurus/Color/invertColor.md b/docusaurus/Color/invertColor.md deleted file mode 100644 index 096c917..0000000 --- a/docusaurus/Color/invertColor.md +++ /dev/null @@ -1,7 +0,0 @@ -## invertColorInverts a HEX color.### Parameters* `hex` **[String][1]** hex color to convert### Examples```javascript -invertColor('#E3CCA8'); -// => '#1C3357' - -invertColor('ccc'); -// => '#333333' -```Returns **[String][1]** Returns a HEX color string.**Meta*** **version**: 1.6.1[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Color/randomPastelColor.md b/docusaurus/Color/randomPastelColor.md deleted file mode 100644 index e43845b..0000000 --- a/docusaurus/Color/randomPastelColor.md +++ /dev/null @@ -1,4 +0,0 @@ -## randomPastelColorGet a random pastel color.### Examples```javascript -randomPastelColor(); -// => 'hsl(85.78009756824814,31.861668997564585%,90.94781190317771%)' -```Returns **[String][1]** Returns an HSL color.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/File/readableBytes.md b/docusaurus/File/readableBytes.md deleted file mode 100644 index 0c77f38..0000000 --- a/docusaurus/File/readableBytes.md +++ /dev/null @@ -1,8 +0,0 @@ -## readableBytesConverts a number of bytes to a human readable file size.### Parameters* `bytes` **[Number][1]** number of bytes to show -* `decimals` **[Number][1]?** optional number of decimals to show### Examples```javascript -readableBytes(1234); -// => 1.205078125 kB - -readableBytes(1234, 2); -// => 1.21 kB -```Returns **[String][2]** Returns a human readable file size.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Key/guid.md b/docusaurus/Key/guid.md deleted file mode 100644 index a1bb038..0000000 --- a/docusaurus/Key/guid.md +++ /dev/null @@ -1,4 +0,0 @@ -## guidGenerates a GUID.### Examples```javascript -guid(); -// => "0153a717-3ba2-b1ac-67f1-49db6551a28d" -```Returns **[String][1]** guid string**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Storage/storageClear.md b/docusaurus/Storage/storageClear.md deleted file mode 100644 index 5c05b7b..0000000 --- a/docusaurus/Storage/storageClear.md +++ /dev/null @@ -1,3 +0,0 @@ -## storageClearRemoves all data stored in the local storage.### Examples```javascript -storageClear(); -```**Meta*** **version**: 1.9.0 diff --git a/docusaurus/Storage/storageGet.md b/docusaurus/Storage/storageGet.md deleted file mode 100644 index 7dfc5ac..0000000 --- a/docusaurus/Storage/storageGet.md +++ /dev/null @@ -1,3 +0,0 @@ -## storageGetRetrieves data from the local storage.### Parameters* `key` **[String][1]** key to retrieve### Examples```javascript -storageGet('key'); -```Returns **Any** Returns data from the local storage. Returns '' if key is not found**Meta*** **version**: 1.9.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Storage/storageRemove.md b/docusaurus/Storage/storageRemove.md deleted file mode 100644 index 9554a16..0000000 --- a/docusaurus/Storage/storageRemove.md +++ /dev/null @@ -1,3 +0,0 @@ -## storageRemoveRemoves an entry from the local storage.### Parameters* `key` **[String][1]** key of the entry to remove### Examples```javascript -storageRemove('key'); -```**Meta*** **version**: 1.9.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/Storage/storageSet.md b/docusaurus/Storage/storageSet.md deleted file mode 100644 index c6299b6..0000000 --- a/docusaurus/Storage/storageSet.md +++ /dev/null @@ -1,4 +0,0 @@ -## storageSetStores data to the local storage.### Parameters* `key` **[String][1]** name of the entry -* `data` **any** data to store in the local storage### Examples```javascript -storageSet('key', data); -```**Meta*** **version**: 1.9.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/String/arrayToString.md b/docusaurus/String/arrayToString.md deleted file mode 100644 index 2fb1a11..0000000 --- a/docusaurus/String/arrayToString.md +++ /dev/null @@ -1,5 +0,0 @@ -## arrayToStringConvert an array to a string and combine on the delimiter passed.### Parameters* `array` **AnyArray** array to convert to string -* `delimiter` **[String][1]** characater to use in combining to string### Examples```javascript -arrayToString(['The', 'quick', 'brown'], '-'); -// => 'The-brown-fox' -```Returns **[String][1]** Returns a string from the array.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/String/slugify.md b/docusaurus/String/slugify.md deleted file mode 100644 index 6c9419f..0000000 --- a/docusaurus/String/slugify.md +++ /dev/null @@ -1,10 +0,0 @@ -## slugifyConverts a string into a slug for URL usage.### Parameters* `string` **[String][1]** string to convert to slug### Examples```javascript -slugify('The quick brown fox'); -// => 'the-quick-brown-fox' - -slugify('A. more-Complicated string!..'); -// => 'a-more-complicated-string' - -slugify('wïth speciäl chærs'); -// => 'with-special-chars' -```Returns **[String][1]** Returns slug version of the string.**Meta*** **version**: 2.1.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/String/toSentenceCase.md b/docusaurus/String/toSentenceCase.md deleted file mode 100644 index fb946a0..0000000 --- a/docusaurus/String/toSentenceCase.md +++ /dev/null @@ -1,4 +0,0 @@ -## toSentenceCaseConverts a string to Sentence case.### Parameters* `string` **[String][1]** string to convert to Sentence case### Examples```javascript -toSentenceCase('THE QUICK BROWN FOX'); -// => 'The quick brown fox' -```Returns **[String][1]** Returns a Sentence case string.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/docusaurus/String/toTitleCase.md b/docusaurus/String/toTitleCase.md deleted file mode 100644 index c476136..0000000 --- a/docusaurus/String/toTitleCase.md +++ /dev/null @@ -1,4 +0,0 @@ -## toTitleCaseConverts a string to a Title Case.### Parameters* `string` **[String][1]** string to convert to Title Case### Examples```javascript -toTitleCase('the quick brown fox'); -// => 'The Quick Brown Fox' -```Returns **[String][1]** Returns a Tile Case string.**Meta*** **version**: 1.0.0[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String diff --git a/package.json b/package.json index ebaf6e5..02c53fe 100644 --- a/package.json +++ b/package.json @@ -52,18 +52,18 @@ "dependencies": { "@docusaurus/core": "3.1.1", "@docusaurus/preset-classic": "3.1.1", - "@mdx-js/react": "3.0.0", - "clsx": "2.0.0", + "@mdx-js/react": "3.0.1", + "clsx": "2.1.0", "lz-string": "1.4.4", - "prism-react-renderer": "2.3.0", - "react": "18.0.0", - "react-dom": "18.0.0" + "prism-react-renderer": "2.3.1", + "react": "18.2.0", + "react-dom": "18.2.0" }, "devDependencies": { "@docusaurus/module-type-aliases": "3.1.1", "@docusaurus/tsconfig": "3.1.1", "@docusaurus/types": "3.1.1", - "@types/jest": "^29.0.3", + "@types/jest": "29.0.3", "@types/node": "20.11.30", "@typescript-eslint/eslint-plugin": "7.3.1", "@typescript-eslint/parser": "7.3.1", @@ -74,12 +74,12 @@ "eslint-plugin-simple-import-sort": "8.0.0", "http-server": "14.1.1", "husky": "8.0.1", - "jest": "^29.0.3", + "jest": "29.0.3", "lint-staged": "13.0.3", "mock-local-storage": "1.1.23", "prettier": "3.2.5", "shell-quote": "1.7.3", - "ts-jest": "^29.1.2", + "ts-jest": "29.1.2", "typescript": "5.2.2" }, "browserslist": { diff --git a/src-docusaurus/css/custom.css b/src-docusaurus/css/custom.css index 2184ca9..f7d2789 100644 --- a/src-docusaurus/css/custom.css +++ b/src-docusaurus/css/custom.css @@ -33,3 +33,43 @@ img[src*='#center'] { display: block; margin: auto; } + +[data-theme='light'] .DocSearch { + /* --docsearch-primary-color: var(--ifm-color-primary); */ + /* --docsearch-text-color: var(--ifm-font-color-base); */ + --docsearch-muted-color: var(--ifm-color-secondary-darkest); + --docsearch-container-background: rgba(94, 100, 112, 0.7); + /* Modal */ + --docsearch-modal-background: var(--ifm-color-secondary-lighter); + /* Search box */ + --docsearch-searchbox-background: var(--ifm-color-secondary); + --docsearch-searchbox-focus-background: var(--ifm-color-white); + /* Hit */ + --docsearch-hit-color: var(--ifm-font-color-base); + --docsearch-hit-active-color: var(--ifm-color-white); + --docsearch-hit-background: var(--ifm-color-white); + /* Footer */ + --docsearch-footer-background: var(--ifm-color-white); +} + +[data-theme='dark'] .DocSearch { + --docsearch-text-color: var(--ifm-font-color-base); + --docsearch-muted-color: var(--ifm-color-secondary-darkest); + --docsearch-container-background: rgba(47, 55, 69, 0.7); + /* Modal */ + --docsearch-modal-background: var(--ifm-background-color); + /* Search box */ + --docsearch-searchbox-background: var(--ifm-background-color); + --docsearch-searchbox-focus-background: var(--ifm-color-black); + /* Hit */ + --docsearch-hit-color: var(--ifm-font-color-base); + --docsearch-hit-active-color: var(--ifm-color-white); + --docsearch-hit-background: var(--ifm-color-emphasis-100); + /* Footer */ + --docsearch-footer-background: var(--ifm-background-surface-color); + --docsearch-key-gradient: linear-gradient( + -26.5deg, + var(--ifm-color-emphasis-200) 0%, + var(--ifm-color-emphasis-100) 100% + ); +} diff --git a/yarn.lock b/yarn.lock index 326a591..f3e1635 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1784,7 +1784,7 @@ jest-util "^29.7.0" slash "^3.0.0" -"@jest/core@^29.7.0": +"@jest/core@^29.0.3", "@jest/core@^29.7.0": version "29.7.0" resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== @@ -1952,7 +1952,7 @@ slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^29.6.3": +"@jest/types@^29.0.3", "@jest/types@^29.6.3": version "29.6.3" resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== @@ -2038,14 +2038,7 @@ unist-util-visit "^5.0.0" vfile "^6.0.0" -"@mdx-js/react@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.0.tgz#eaccaa8d6a7736b19080aff5a70448a7ba692271" - integrity sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ== - dependencies: - "@types/mdx" "^2.0.0" - -"@mdx-js/react@^3.0.0": +"@mdx-js/react@3.0.1", "@mdx-js/react@^3.0.0": version "3.0.1" resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.1.tgz#997a19b3a5b783d936c75ae7c47cfe62f967f746" integrity sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A== @@ -2476,10 +2469,10 @@ dependencies: "@types/istanbul-lib-report" "*" -"@types/jest@^29.0.3": - version "29.5.12" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" - integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== +"@types/jest@29.0.3": + version "29.0.3" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.0.3.tgz#b61a5ed100850686b8d3c5e28e3a1926b2001b59" + integrity sha512-F6ukyCTwbfsEX5F2YmVYmM5TcTHy1q9P5rWlRbrk56KyMh3v9xRGUO3aa8+SkvMi0SHXtASJv1283enXimC0Og== dependencies: expect "^29.0.0" pretty-format "^29.0.0" @@ -3955,12 +3948,7 @@ cloneable-readable@^1.0.0: process-nextick-args "^2.0.0" readable-stream "^2.3.5" -clsx@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b" - integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== - -clsx@^2.0.0: +clsx@2.1.0, clsx@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.0.tgz#e851283bcb5c80ee7608db18487433f7b23f77cb" integrity sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg== @@ -5086,9 +5074,9 @@ ee-first@1.1.1: integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== electron-to-chromium@^1.4.668: - version "1.4.711" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.711.tgz#f9fd04007878cc27ac327d5c6ce300f8b516f635" - integrity sha512-hRg81qzvUEibX2lDxnFlVCHACa+LtrCPIsWAxo161LDYIB3jauf57RGsMZV9mvGwE98yGH06icj3zBEoOkxd/w== + version "1.4.712" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.712.tgz#2117ea2f4f95e8e0ec96c33dd345134ac00e57ed" + integrity sha512-ncfPC8UnGIyGFrPE03J5Xn6yTZ6R+clkcZbuG1PJbjAaZBFS4Kn3UKfzu8eilzru6SfC8TPsHuwv0p0eYVu+ww== emittery@^0.13.1: version "0.13.1" @@ -7250,7 +7238,7 @@ jest-circus@^29.7.0: slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^29.7.0: +jest-cli@^29.0.3: version "29.7.0" resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== @@ -7572,15 +7560,15 @@ jest-worker@^29.1.2, jest-worker@^29.7.0: merge-stream "^2.0.0" supports-color "^8.0.0" -jest@^29.0.3: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" - integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== +jest@29.0.3: + version "29.0.3" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.0.3.tgz#5227a0596d30791b2649eea347e4aa97f734944d" + integrity sha512-ElgUtJBLgXM1E8L6K1RW1T96R897YY/3lRYqq9uVcPWtP2AAl/nQ16IYDh/FzQOOQ12VEuLdcPU83mbhG2C3PQ== dependencies: - "@jest/core" "^29.7.0" - "@jest/types" "^29.6.3" + "@jest/core" "^29.0.3" + "@jest/types" "^29.0.3" import-local "^3.0.2" - jest-cli "^29.7.0" + jest-cli "^29.0.3" jiti@^1.20.0: version "1.21.0" @@ -10109,15 +10097,7 @@ pretty-time@^1.1.0: resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e" integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== -prism-react-renderer@2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.3.0.tgz#5f8f615af6af8201a0b734bd8c946df3d818ea54" - integrity sha512-UYRg2TkVIaI6tRVHC5OJ4/BxqPUxJkJvq/odLT/ykpt1zGYXooNperUxQcCvi87LyRnR4nCh81ceOA+e7nrydg== - dependencies: - "@types/prismjs" "^1.26.0" - clsx "^2.0.0" - -prism-react-renderer@^2.3.0: +prism-react-renderer@2.3.1, prism-react-renderer@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.3.1.tgz#e59e5450052ede17488f6bc85de1553f584ff8d5" integrity sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw== @@ -10362,13 +10342,13 @@ react-dev-utils@^12.0.1: strip-ansi "^6.0.1" text-table "^0.2.0" -react-dom@18.0.0: - version "18.0.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023" - integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw== +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" - scheduler "^0.21.0" + scheduler "^0.23.0" react-error-overlay@^6.0.11: version "6.0.11" @@ -10465,10 +10445,10 @@ react-router@5.3.4, react-router@^5.3.4: tiny-invariant "^1.0.2" tiny-warning "^1.0.0" -react@18.0.0: - version "18.0.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.0.0.tgz#b468736d1f4a5891f38585ba8e8fb29f91c3cb96" - integrity sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A== +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" @@ -11046,10 +11026,10 @@ sax@^1.2.4: resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== -scheduler@^0.21.0: - version "0.21.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820" - integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ== +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== dependencies: loose-envify "^1.1.0" @@ -12054,7 +12034,7 @@ ts-api-utils@^1.0.1: resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== -ts-jest@^29.1.2: +ts-jest@29.1.2: version "29.1.2" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.2.tgz#7613d8c81c43c8cb312c6904027257e814c40e09" integrity sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==