From 0e0a29eeac4712c575199fcdc975f00b22c7ad12 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Mon, 22 Jan 2024 08:54:24 +0100 Subject: [PATCH 01/45] =?UTF-8?q?=F0=9F=8E=A8=20chore(waypoints):=20Better?= =?UTF-8?q?=20waypoint=20target=20selection?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- src/js/scripts/waypointObserver.ts | 26 +++++++++++++++++++++++--- 3 files changed, 37 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abf8db5f..8336d828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ # davidhellmann/craftcms-baukasten Change Log. +## 4.0.14 - wip + +### added +- + +### updated +- (waypoints): Better waypoint target selection + + +### fixed +- + ## 4.0.13 - 2024.01.20 ### added diff --git a/package-lock.json b/package-lock.json index aae62c25..3decfbde 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "craftcms-baukasten", - "version": "4.0.12", + "version": "4.0.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "craftcms-baukasten", - "version": "4.0.12", + "version": "4.0.13", "hasInstallScript": true, "dependencies": { "@alpinejs/persist": "^3.13.3", diff --git a/src/js/scripts/waypointObserver.ts b/src/js/scripts/waypointObserver.ts index a4797146..c800c618 100644 --- a/src/js/scripts/waypointObserver.ts +++ b/src/js/scripts/waypointObserver.ts @@ -3,6 +3,7 @@ import { IComponent } from '../@types/IComponent'; interface Settings { delay: number; staggeringDelay: number; + includeHolder: boolean; endless: boolean; } @@ -15,11 +16,13 @@ interface ICompWaypointObserver extends IComponent { settings: { delay: number; staggeringDelay: number; + includeHolder: boolean; endless: boolean; }; startObserving(el: NodeListOf): void; setSettings(el: Element): void; + findWaypointTargets(el: Element): Array; getWaypointTargets(el: Element): Array; handleAnimateClasses(el: Array, settings: Settings): void; } @@ -42,11 +45,12 @@ const animateElement = (element: HTMLElement, delay: number): void => { const waypointObserver: ICompWaypointObserver = { name: 'waypointObserver', selectors: { - waypointTarget: '[waypoint-target]', + waypointTarget: '[waypoint-target]:not([waypoint])', }, settings: { delay: 50, staggeringDelay: 35, + includeHolder: false, endless: false, }, observerConfig: { @@ -105,17 +109,33 @@ const waypointObserver: ICompWaypointObserver = { ); this.settings.endless = waypoint.getAttribute('waypoint-endless') === 'true'; + + this.settings.includeHolder = waypoint.getAttribute('waypoint-include-holder') === 'true'; + }, + + findWaypointTargets(holder: HTMLElement): Array { + if (!this.selectors) return []; + const allTargets = holder.querySelectorAll(this.selectors.waypointTarget); + + return Array.from(allTargets).filter((target) => { + return target.closest('[waypoint]') === holder; + }) as Array; }, getWaypointTargets(holder: HTMLElement): Array { if (!this.selectors) return []; - let targets = [...holder.querySelectorAll(this.selectors.waypointTarget)]; + let targets = [...this.findWaypointTargets(holder)]; const holderIsTarget = holder.hasAttribute('waypoint-target'); - if (holderIsTarget) { + if (holderIsTarget && !this.settings.includeHolder) { // Animate the waypoint itself if there is a waypoint-target attribute targets = [holder]; } + if (holderIsTarget && this.settings.includeHolder) { + // Animate also the holder element with the waypoint-targets + targets = [holder, ...targets]; + } + return targets; }, From fb5d3fa7fd74031f5b4363e07c903ea93f4dc8eb Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 28 Jan 2024 17:45:34 +0100 Subject: [PATCH 02/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20S?= =?UTF-8?q?EOmatic=20(4.0.38)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 ++++++++++++++- composer.json | 2 +- composer.lock | 46 ++++++++++++++++++++++++---------------------- 3 files changed, 39 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abf8db5f..a44ad9cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # davidhellmann/craftcms-baukasten Change Log. -## 4.0.13 - 2024.01.20 +## 4.0.14 - wip + +### added +- + +### updated +- (plugin): SEOmatic (4.0.38) + +### fixed +- + + +### fixed +- ## 4.0.13 - 2024.01.20 ### added - Rollup copy plugin to copy `src/public/*` to `web/dist` on npm run dev (start only). Feel free to extend it to your needs. diff --git a/composer.json b/composer.json index c51544e2..0f2c2b8d 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "nystudio107/craft-emptycoalesce": "4.0.0", "nystudio107/craft-minify": "^4.0.0-beta.2", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.0.37", + "nystudio107/craft-seomatic": "4.0.38", "nystudio107/craft-vite": "4.0.7", "putyourlightson/craft-blitz": "4.10.3", "putyourlightson/craft-elements-panel": "2.0.0", diff --git a/composer.lock b/composer.lock index a72fae88..984c4700 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d8e4d48eb06096a2de6fc5c094f20ea9", + "content-hash": "8de0c9855f2c05a0c4b1f091bbff8803", "packages": [ { "name": "amphp/amp", @@ -1559,11 +1559,11 @@ }, { "name": "craftcms/server-check", - "version": "2.1.7", + "version": "2.1.8", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/server-check/zipball/97c09a55cee207cb0a79243606354d9783d693d8", - "reference": "97c09a55cee207cb0a79243606354d9783d693d8", + "url": "https://api.github.com/repos/craftcms/server-check/zipball/c86e8aeabc73333111e2bfb4483d7b5402232e48", + "reference": "c86e8aeabc73333111e2bfb4483d7b5402232e48", "shasum": "" }, "type": "library", @@ -1583,7 +1583,7 @@ "requirements", "yii2" ], - "time": "2023-09-20T01:56:57+00:00" + "time": "2023-09-25T17:28:37+00:00" }, { "name": "creocoder/yii2-nested-sets", @@ -4362,11 +4362,11 @@ }, { "name": "moneyphp/money", - "version": "v4.3.0", + "version": "v4.4.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/moneyphp/money/zipball/50ddfd15b2be01d4bed3bcb0c975a6af5f78a183", - "reference": "50ddfd15b2be01d4bed3bcb0c975a6af5f78a183", + "url": "https://api.github.com/repos/moneyphp/money/zipball/5e60aebf09f709dd4ea16bf85e66d65301c0d172", + "reference": "5e60aebf09f709dd4ea16bf85e66d65301c0d172", "shasum": "" }, "require": { @@ -4418,7 +4418,7 @@ "money", "vo" ], - "time": "2023-11-22T09:46:30+00:00" + "time": "2024-01-24T08:29:16+00:00" }, { "name": "monolog/monolog", @@ -4944,11 +4944,11 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.0.37", + "version": "4.0.38", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/524c5fe79fe238c124f1d5cb621bd615ebe1a821", - "reference": "524c5fe79fe238c124f1d5cb621bd615ebe1a821", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/2508dd5c39016ad3d03b2593bc8865b14655dcdf", + "reference": "2508dd5c39016ad3d03b2593bc8865b14655dcdf", "shasum": "" }, "require": { @@ -5000,7 +5000,7 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2023-12-12T20:04:54+00:00" + "time": "2024-01-22T20:12:43+00:00" }, { "name": "nystudio107/craft-vite", @@ -5189,11 +5189,11 @@ }, { "name": "php-science/textrank", - "version": "1.2.2", + "version": "1.2.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-Science/TextRank/zipball/c5ccfc998b3cee91bf5d01b9f107d382acfa0ca8", - "reference": "c5ccfc998b3cee91bf5d01b9f107d382acfa0ca8", + "url": "https://api.github.com/repos/DavidBelicza/PHP-Science-TextRank/zipball/d63788f7f7305b8dd726a367a5653cdd5dac7fba", + "reference": "d63788f7f7305b8dd726a367a5653cdd5dac7fba", "shasum": "" }, "require": { @@ -5205,8 +5205,7 @@ "autoload": { "psr-4": { "PhpScience\\TextRank\\": [ - "src/", - "tests/" + "src/" ] } }, @@ -5216,20 +5215,23 @@ "authors": [ { "name": "David Belicza", - "email": "87.bdavid@gmail.com" + "email": "david@belicza.com" } ], - "description": "TextRank (automatic text summarization) for PHP7 and HHVM.", + "description": "TextRank (automatic text summarization) for PHP.", "keywords": [ - "PHP7", + "ai", + "artificial", "automatic", + "intelligence", + "php", "php8", "science", "strict", "summarization", "textrank" ], - "time": "2022-08-12T13:02:17+00:00" + "time": "2023-12-29T15:21:30+00:00" }, { "name": "phpcollection/phpcollection", From 9ba72025a851461c09ec3c9658f6b69980d631bf Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 28 Jan 2024 17:46:19 +0100 Subject: [PATCH 03/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20I?= =?UTF-8?q?mage=20Resizer=20(3.0.10)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a44ad9cc..1fba74a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### updated - (plugin): SEOmatic (4.0.38) +- (plugin): Image Resizer (3.0.10) ### fixed - diff --git a/composer.json b/composer.json index 0f2c2b8d..14338d17 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "vaersaagod/matrixmate": "2.1.4", "verbb/formie": "2.1.2", "verbb/hyper": "1.1.19", - "verbb/image-resizer": "3.0.9", + "verbb/image-resizer": "3.0.10", "verbb/navigation": "2.0.24", "verbb/super-table": "3.0.12", "vlucas/phpdotenv": "^5.4", diff --git a/composer.lock b/composer.lock index 984c4700..24b1f4ae 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8de0c9855f2c05a0c4b1f091bbff8803", + "content-hash": "812f6aded796c3a38b7b1cecc3434928", "packages": [ { "name": "amphp/amp", @@ -9080,11 +9080,11 @@ }, { "name": "verbb/image-resizer", - "version": "3.0.9", + "version": "3.0.10", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/image-resizer/zipball/2c45c310a25e5820aead3e07741f97a9b9b4fc15", - "reference": "2c45c310a25e5820aead3e07741f97a9b9b4fc15", + "url": "https://api.github.com/repos/verbb/image-resizer/zipball/250ae563a4e104631a00b951a131be34bf447fa2", + "reference": "250ae563a4e104631a00b951a131be34bf447fa2", "shasum": "" }, "require": { @@ -9131,7 +9131,7 @@ "docs": "https://github.com/verbb/image-resizer", "rss": "https://github.com/verbb/image-resizer/commits/v2.atom" }, - "time": "2023-12-14T03:17:17+00:00" + "time": "2024-01-23T12:31:37+00:00" }, { "name": "verbb/navigation", From 4926f8dff3260d8ee3337463b71b8475836f9cc0 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 28 Jan 2024 17:47:07 +0100 Subject: [PATCH 04/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20F?= =?UTF-8?q?ormie=20(2.1.3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 2 +- composer.lock | 18 +++++++++--------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fba74a2..bcd119dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### updated - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.10) +- (plugin): Formie (2.1.3) ### fixed - diff --git a/composer.json b/composer.json index 14338d17..b5cb0aac 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "spatie/browsershot": "^3.59", "studioespresso/craft-dumper": "3.0.1", "vaersaagod/matrixmate": "2.1.4", - "verbb/formie": "2.1.2", + "verbb/formie": "2.1.3", "verbb/hyper": "1.1.19", "verbb/image-resizer": "3.0.10", "verbb/navigation": "2.0.24", diff --git a/composer.lock b/composer.lock index 24b1f4ae..2ff125ee 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "812f6aded796c3a38b7b1cecc3434928", + "content-hash": "95e67846b5eba670c83ef3c623c92f93", "packages": [ { "name": "amphp/amp", @@ -2372,11 +2372,11 @@ }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.28", + "version": "8.13.29", "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/f508ab946a60c1470c92e33cfc0393a0d580b9a1", - "reference": "f508ab946a60c1470c92e33cfc0393a0d580b9a1", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4", + "reference": "b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4", "shasum": "" }, "require": { @@ -2421,7 +2421,7 @@ "phonenumber", "validation" ], - "time": "2024-01-17T08:09:20+00:00" + "time": "2024-01-26T08:49:18+00:00" }, { "name": "giggsey/locale", @@ -8957,11 +8957,11 @@ }, { "name": "verbb/formie", - "version": "2.1.2", + "version": "2.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/formie/zipball/e7b18fd5e3ac841c1e8dd1a5f18e8eca8f696529", - "reference": "e7b18fd5e3ac841c1e8dd1a5f18e8eca8f696529", + "url": "https://api.github.com/repos/verbb/formie/zipball/e77b63ca491afb95d6e0c6f14a75a447796d6f4a", + "reference": "e77b63ca491afb95d6e0c6f14a75a447796d6f4a", "shasum": "" }, "require": { @@ -9022,7 +9022,7 @@ "docs": "https://github.com/verbb/formie", "rss": "https://github.com/verbb/formie/commits/v2.atom" }, - "time": "2024-01-15T23:55:16+00:00" + "time": "2024-01-24T22:45:40+00:00" }, { "name": "verbb/hyper", From ab12a97e037246165feb949268f1376dbbd0305d Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 28 Jan 2024 17:48:06 +0100 Subject: [PATCH 05/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(cms):=20Craf?= =?UTF-8?q?tCMS=20(4.7.0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd119dc..3c6a9461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - ### updated +- (cms): CraftCMS (4.7.0) - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.10) - (plugin): Formie (2.1.3) diff --git a/composer.json b/composer.json index b5cb0aac..d8fe8b8e 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.6.0", - "craftcms/cms": "4.6.1", + "craftcms/cms": "4.7.0", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-clearcache": "1.3.0", diff --git a/composer.lock b/composer.lock index 2ff125ee..50d0e78e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "95e67846b5eba670c83ef3c623c92f93", + "content-hash": "e773510d0904d0ed69e9a1e345dfd6ba", "packages": [ { "name": "amphp/amp", @@ -1390,11 +1390,11 @@ }, { "name": "craftcms/cms", - "version": "4.6.1", + "version": "4.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/562ab3515f86f083f52f094411bd0799d7608ffc", - "reference": "562ab3515f86f083f52f094411bd0799d7608ffc", + "url": "https://api.github.com/repos/craftcms/cms/zipball/17164e79c7b3e86534491ff7687129cc1db79386", + "reference": "17164e79c7b3e86534491ff7687129cc1db79386", "shasum": "" }, "require": { @@ -1482,7 +1482,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-01-16T18:07:18+00:00" + "time": "2024-01-23T18:59:37+00:00" }, { "name": "craftcms/html-field", From 7c354a27a27f8a0f3626f79fb20aebe3cea539b8 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 28 Jan 2024 17:51:10 +0100 Subject: [PATCH 06/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20Composer?= =?UTF-8?q?=20packages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.lock | 584 ++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 426 insertions(+), 158 deletions(-) diff --git a/composer.lock b/composer.lock index 50d0e78e..b648c185 100644 --- a/composer.lock +++ b/composer.lock @@ -756,11 +756,11 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.296.6", + "version": "3.297.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/11d0a94f8b2539d587e2f6db7c2fa8e39fe78a67", - "reference": "11d0a94f8b2539d587e2f6db7c2fa8e39fe78a67", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bbf516a4a88f829f92cc396628be705966880dbd", + "reference": "bbf516a4a88f829f92cc396628be705966880dbd", "shasum": "" }, "require": { @@ -817,7 +817,7 @@ "s3", "sdk" ], - "time": "2024-01-19T19:14:55+00:00" + "time": "2024-01-26T19:09:20+00:00" }, { "name": "brick/math", @@ -2494,15 +2494,16 @@ }, { "name": "google/cloud-core", - "version": "v1.53.1", + "version": "v1.54.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/4bb40e0cc1839054ea5010321e1105107a3413ce", - "reference": "4bb40e0cc1839054ea5010321e1105107a3413ce", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/cd3f670dbb7f6a5b9b550b0d1b8e5b6ed148fb58", + "reference": "cd3f670dbb7f6a5b9b550b0d1b8e5b6ed148fb58", "shasum": "" }, "require": { "google/auth": "^1.34", + "google/gax": "^1.26.3", "guzzlehttp/guzzle": "^6.5.8|^7.4.4", "guzzlehttp/promises": "^1.4||^2.0", "guzzlehttp/psr7": "^2.6", @@ -2536,15 +2537,15 @@ "Apache-2.0" ], "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.", - "time": "2024-01-19T15:59:50+00:00" + "time": "2024-01-26T20:27:24+00:00" }, { "name": "google/cloud-storage", - "version": "v1.37.0", + "version": "v1.37.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/48489319d931262def899a5b2337b8e514c39d34", - "reference": "48489319d931262def899a5b2337b8e514c39d34", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/7982d8afc3d0b2fc6b2676b329d05abadc5c2554", + "reference": "7982d8afc3d0b2fc6b2676b329d05abadc5c2554", "shasum": "" }, "require": { @@ -2574,20 +2575,193 @@ "Apache-2.0" ], "description": "Cloud Storage Client for PHP", - "time": "2024-01-12T19:18:38+00:00" + "time": "2024-01-26T20:27:24+00:00" + }, + { + "name": "google/common-protos", + "version": "v4.5.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/dfc232e90823cedca107b56e7371f2e2f35b9427", + "reference": "dfc232e90823cedca107b56e7371f2e2f35b9427", + "shasum": "" + }, + "require": { + "google/protobuf": "^3.6.1", + "php": ">=7.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Google\\Api\\": "src/Api", + "Google\\Iam\\": "src/Iam", + "Google\\Rpc\\": "src/Rpc", + "Google\\Type\\": "src/Type", + "Google\\Cloud\\": "src/Cloud", + "GPBMetadata\\Google\\Api\\": "metadata/Api", + "GPBMetadata\\Google\\Iam\\": "metadata/Iam", + "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc", + "GPBMetadata\\Google\\Type\\": "metadata/Type", + "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud", + "GPBMetadata\\Google\\Logging\\": "metadata/Logging" + } + }, + "license": [ + "Apache-2.0" + ], + "description": "Google API Common Protos for PHP", + "homepage": "https://github.com/googleapis/common-protos-php", + "keywords": [ + "google" + ], + "time": "2023-11-29T21:08:16+00:00" + }, + { + "name": "google/gax", + "version": "v1.26.3", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/googleapis/gax-php/zipball/b7c782dcc40957ad84c9da947cc201f42e97859e", + "reference": "b7c782dcc40957ad84c9da947cc201f42e97859e", + "shasum": "" + }, + "require": { + "google/auth": "^1.34.0", + "google/common-protos": "^4.4", + "google/grpc-gcp": "^0.2||^0.3", + "google/longrunning": "~0.2", + "google/protobuf": "^3.22", + "grpc/grpc": "^1.13", + "guzzlehttp/promises": "^1.4||^2.0", + "guzzlehttp/psr7": "^2.0", + "php": ">=7.4" + }, + "conflict": { + "ext-protobuf": "<3.7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Google\\ApiCore\\": "src", + "GPBMetadata\\ApiCore\\": "metadata/ApiCore" + } + }, + "license": [ + "BSD-3-Clause" + ], + "description": "Google API Core for PHP", + "homepage": "https://github.com/googleapis/gax-php", + "keywords": [ + "google" + ], + "time": "2024-01-18T20:24:45+00:00" + }, + { + "name": "google/grpc-gcp", + "version": "v0.3.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/4d8b455a45a89f57e1552cadc41a43bc34c40456", + "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456", + "shasum": "" + }, + "require": { + "google/auth": "^1.3", + "google/protobuf": "^v3.3.0", + "grpc/grpc": "^v1.13.0", + "php": "^7.4||^8.0", + "psr/cache": "^1.0.1||^2.0.0||^3.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Grpc\\Gcp\\": "src/" + }, + "classmap": [ + "src/generated/" + ] + }, + "license": [ + "Apache-2.0" + ], + "description": "gRPC GCP library for channel management", + "time": "2023-04-24T14:37:29+00:00" + }, + { + "name": "google/longrunning", + "version": "0.3.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/c21cb8f8794f724ca672dad94bf7d406e62476b9", + "reference": "c21cb8f8794f724ca672dad94bf7d406e62476b9", + "shasum": "" + }, + "type": "library", + "extra": { + "component": { + "id": "longrunning", + "path": "LongRunning", + "entry": null, + "target": "googleapis/php-longrunning" + } + }, + "autoload": { + "psr-4": { + "Google\\LongRunning\\": "src/LongRunning", + "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning", + "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning" + } + }, + "license": [ + "Apache-2.0" + ], + "description": "Google LongRunning Client for PHP", + "time": "2024-01-05T17:46:51+00:00" + }, + { + "name": "google/protobuf", + "version": "v3.25.2", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/83ea4c147718666ce6a9b9332ac2aa588c9211eb", + "reference": "83ea4c147718666ce6a9b9332ac2aa588c9211eb", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "suggest": { + "ext-bcmath": "Need to support JSON deserialization" + }, + "type": "library", + "autoload": { + "psr-4": { + "Google\\Protobuf\\": "src/Google/Protobuf", + "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf" + } + }, + "license": [ + "BSD-3-Clause" + ], + "description": "proto library for PHP", + "homepage": "https://developers.google.com/protocol-buffers/", + "keywords": [ + "proto" + ], + "time": "2024-01-09T22:12:32+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.1.1", + "version": "v1.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", - "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.1" + "phpoption/phpoption": "^1.9.2" }, "type": "library", "autoload": { @@ -2613,7 +2787,39 @@ "Result-Type", "result" ], - "time": "2023-02-25T20:23:15+00:00" + "time": "2023-11-12T22:16:48+00:00" + }, + { + "name": "grpc/grpc", + "version": "1.57.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/grpc/grpc-php/zipball/b610c42022ed3a22f831439cb93802f2a4502fdf", + "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "suggest": { + "ext-protobuf": "For better performance, install the protobuf C extension.", + "google/protobuf": "To get started using grpc quickly, install the native protobuf library." + }, + "type": "library", + "autoload": { + "psr-4": { + "Grpc\\": "src/lib/" + } + }, + "license": [ + "Apache-2.0" + ], + "description": "gRPC library for PHP", + "homepage": "https://grpc.io", + "keywords": [ + "rpc" + ], + "time": "2023-08-14T23:57:54+00:00" }, { "name": "guzzlehttp/guzzle", @@ -3421,11 +3627,11 @@ }, { "name": "league/flysystem", - "version": "3.17.0", + "version": "3.23.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/bd4c9b26849d82364119c68429541f1631fba94b", - "reference": "bd4c9b26849d82364119c68429541f1631fba94b", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", + "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", "shasum": "" }, "require": { @@ -3471,15 +3677,15 @@ "sftp", "storage" ], - "time": "2023-10-05T20:15:05+00:00" + "time": "2024-01-26T18:42:03+00:00" }, { "name": "league/flysystem-local", - "version": "3.16.0", + "version": "3.23.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ec7383f25642e6fd4bb0c9554fc2311245391781", - "reference": "ec7383f25642e6fd4bb0c9554fc2311245391781", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00", + "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00", "shasum": "" }, "require": { @@ -3511,7 +3717,7 @@ "filesystem", "local" ], - "time": "2023-08-30T10:23:59+00:00" + "time": "2024-01-26T18:25:23+00:00" }, { "name": "league/glide", @@ -6669,16 +6875,16 @@ }, { "name": "spatie/browsershot", - "version": "3.59.0", + "version": "3.61.0", "source": { "type": "git", "url": "https://github.com/spatie/browsershot.git", - "reference": "1b74e71fdd1c30fa1de45465bacc1cf5dc852881" + "reference": "14d75679390b8b84a71b3a17dc5905928deeb887" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/browsershot/zipball/1b74e71fdd1c30fa1de45465bacc1cf5dc852881", - "reference": "1b74e71fdd1c30fa1de45465bacc1cf5dc852881", + "url": "https://api.github.com/repos/spatie/browsershot/zipball/14d75679390b8b84a71b3a17dc5905928deeb887", + "reference": "14d75679390b8b84a71b3a17dc5905928deeb887", "shasum": "" }, "require": { @@ -6686,7 +6892,7 @@ "php": "^8.0", "spatie/image": "^1.5.3|^2.0", "spatie/temporary-directory": "^1.1|^2.0", - "symfony/process": "^4.2|^5.0|^6.0" + "symfony/process": "^4.2|^5.0|^6.0|^7.0" }, "require-dev": { "pestphp/pest": "^1.20", @@ -6723,7 +6929,7 @@ "webpage" ], "support": { - "source": "https://github.com/spatie/browsershot/tree/3.59.0" + "source": "https://github.com/spatie/browsershot/tree/3.61.0" }, "funding": [ { @@ -6731,7 +6937,7 @@ "type": "github" } ], - "time": "2023-10-09T12:59:37+00:00" + "time": "2023-12-21T10:00:28+00:00" }, { "name": "spatie/image", @@ -6804,28 +7010,28 @@ }, { "name": "spatie/image-optimizer", - "version": "1.7.1", + "version": "1.7.2", "source": { "type": "git", "url": "https://github.com/spatie/image-optimizer.git", - "reference": "af179994e2d2413e4b3ba2d348d06b4eaddbeb30" + "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/af179994e2d2413e4b3ba2d348d06b4eaddbeb30", - "reference": "af179994e2d2413e4b3ba2d348d06b4eaddbeb30", + "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/62f7463483d1bd975f6f06025d89d42a29608fe1", + "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1", "shasum": "" }, "require": { "ext-fileinfo": "*", "php": "^7.3|^8.0", "psr/log": "^1.0 | ^2.0 | ^3.0", - "symfony/process": "^4.2|^5.0|^6.0" + "symfony/process": "^4.2|^5.0|^6.0|^7.0" }, "require-dev": { "pestphp/pest": "^1.21", "phpunit/phpunit": "^8.5.21|^9.4.4", - "symfony/var-dumper": "^4.2|^5.0|^6.0" + "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0" }, "type": "library", "autoload": { @@ -6853,17 +7059,17 @@ ], "support": { "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.7.1" + "source": "https://github.com/spatie/image-optimizer/tree/1.7.2" }, - "time": "2023-07-27T07:57:32+00:00" + "time": "2023-11-03T10:08:02+00:00" }, { "name": "spatie/temporary-directory", - "version": "2.2.0", + "version": "2.2.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/efc258c9f4da28f0c7661765b8393e4ccee3d19c", - "reference": "efc258c9f4da28f0c7661765b8393e4ccee3d19c", + "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", + "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", "shasum": "" }, "require": { @@ -6893,7 +7099,7 @@ "spatie", "temporary-directory" ], - "time": "2023-09-25T07:13:36+00:00" + "time": "2023-12-25T11:46:58+00:00" }, { "name": "ssnepenthe/color-utils", @@ -9242,21 +9448,21 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.5.0", + "version": "v5.6.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", - "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.0.2", - "php": "^7.1.3 || ^8.0", - "phpoption/phpoption": "^1.8", - "symfony/polyfill-ctype": "^1.23", - "symfony/polyfill-mbstring": "^1.23.1", - "symfony/polyfill-php80": "^1.23.1" + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" }, "suggest": { "ext-filter": "Required to use the boolean validator." @@ -9268,7 +9474,7 @@ "forward-command": true }, "branch-alias": { - "dev-master": "5.5-dev" + "dev-master": "5.6-dev" } }, "autoload": { @@ -9297,7 +9503,7 @@ "env", "environment" ], - "time": "2022-10-16T01:01:54+00:00" + "time": "2023-11-12T22:43:29+00:00" }, { "name": "voku/anti-xss", @@ -10186,11 +10392,11 @@ }, { "name": "nette/php-generator", - "version": "v4.1.1", + "version": "v4.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/php-generator/zipball/d915b7fa643cd0cf6ffe306c25ac5c3db24914a4", - "reference": "d915b7fa643cd0cf6ffe306c25ac5c3db24914a4", + "url": "https://api.github.com/repos/nette/php-generator/zipball/08ab9bff22ae34fe4e1d2fe8ba16b3770ea2459f", + "reference": "08ab9bff22ae34fe4e1d2fe8ba16b3770ea2459f", "shasum": "" }, "require": { @@ -10234,15 +10440,15 @@ "php", "scaffolding" ], - "time": "2023-10-17T08:36:10+00:00" + "time": "2024-01-18T17:44:20+00:00" }, { "name": "nette/utils", - "version": "v4.0.2", + "version": "v4.0.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/cead6637226456b35e1175cc53797dd585d85545", - "reference": "cead6637226456b35e1175cc53797dd585d85545", + "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", "shasum": "" }, "require": { @@ -10304,15 +10510,15 @@ "utility", "validation" ], - "time": "2023-09-19T11:58:07+00:00" + "time": "2024-01-17T16:50:36+00:00" }, { "name": "nikic/php-parser", - "version": "v4.17.1", + "version": "v4.18.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", - "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", "shasum": "" }, "require": { @@ -10346,24 +10552,24 @@ "parser", "php" ], - "time": "2023-08-13T19:53:39+00:00" + "time": "2023-12-10T21:03:43+00:00" }, { "name": "nystudio107/craft-autocomplete", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/nystudio107/craft-autocomplete.git", - "reference": "72f192858dba23f5f94e1e9abe5ae0049c55a916" + "reference": "13d432970963cb7825bcb929bb7704c21bdac51f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-autocomplete/zipball/72f192858dba23f5f94e1e9abe5ae0049c55a916", - "reference": "72f192858dba23f5f94e1e9abe5ae0049c55a916", + "url": "https://api.github.com/repos/nystudio107/craft-autocomplete/zipball/13d432970963cb7825bcb929bb7704c21bdac51f", + "reference": "13d432970963cb7825bcb929bb7704c21bdac51f", "shasum": "" }, "require": { - "craftcms/cms": "^3.0.0 || ^4.0.0-alpha" + "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0-alpha.1" }, "type": "yii2-extension", "extra": { @@ -10410,15 +10616,15 @@ "type": "github" } ], - "time": "2023-07-03T21:51:43+00:00" + "time": "2024-01-26T02:03:40+00:00" }, { "name": "psy/psysh", - "version": "v0.11.21", + "version": "v0.11.22", "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/bcb22101107f3bf770523b65630c9d547f60c540", - "reference": "bcb22101107f3bf770523b65630c9d547f60c540", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b", + "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b", "shasum": "" }, "require": { @@ -10444,7 +10650,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.11.x-dev" + "dev-0.11": "0.11.x-dev" }, "bamarni-bin": { "bin-links": false, @@ -10477,7 +10683,7 @@ "interactive", "shell" ], - "time": "2023-09-17T21:15:54+00:00" + "time": "2023-10-14T21:56:36+00:00" }, { "name": "roave/security-advisories", @@ -10485,20 +10691,21 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "a4a221e6b171fe5eadf48e21ad8247304738bcd5" + "reference": "cea5a32b418b44dc5a480049f531f53563c26210" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a4a221e6b171fe5eadf48e21ad8247304738bcd5", - "reference": "a4a221e6b171fe5eadf48e21ad8247304738bcd5", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/cea5a32b418b44dc5a480049f531f53563c26210", + "reference": "cea5a32b418b44dc5a480049f531f53563c26210", "shasum": "" }, "conflict": { "3f/pygmentize": "<1.2", - "admidio/admidio": "<4.2.11", + "admidio/admidio": "<4.2.13", "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3", "aheinze/cockpit": "<2.2", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", + "airesvsg/acf-to-rest-api": "<=3.1", "akaunting/akaunting": "<2.1.13", "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53", "alextselegidis/easyappointments": "<1.5", @@ -10521,22 +10728,23 @@ "athlon1600/php-proxy": "<=5.1", "athlon1600/php-proxy-app": "<=3", "austintoddj/canvas": "<=3.4.2", - "automad/automad": "<1.8", + "automad/automad": "<=1.10.9", "awesome-support/awesome-support": "<=6.0.7", - "aws/aws-sdk-php": ">=3,<3.2.1", + "aws/aws-sdk-php": "<3.288.1", "azuracast/azuracast": "<0.18.3", "backdrop/backdrop": "<1.24.2", "backpack/crud": "<3.4.9", + "bacula-web/bacula-web": "<8.0.0.0-RC2-dev", "badaso/core": "<2.7", - "bagisto/bagisto": "<0.1.5", + "bagisto/bagisto": "<1.3.2", "barrelstrength/sprout-base-email": "<1.2.7", "barrelstrength/sprout-forms": "<3.9", "barryvdh/laravel-translation-manager": "<0.6.2", "barzahlen/barzahlen-php": "<2.0.1", - "baserproject/basercms": "<4.7.5", + "baserproject/basercms": "<4.8", "bassjobsen/bootstrap-3-typeahead": ">4.0.2", "bigfork/silverstripe-form-capture": ">=3,<3.1.1", - "billz/raspap-webgui": "<=2.9.2", + "billz/raspap-webgui": "<2.9.5", "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3", "bmarshall511/wordpress_zero_spam": "<5.2.13", "bolt/bolt": "<3.7.2", @@ -10562,14 +10770,15 @@ "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "chriskacerguis/codeigniter-restserver": "<=2.7.1", "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3", + "ckeditor/ckeditor": "<4.17", "cockpit-hq/cockpit": "<=2.6.3", "codeception/codeception": "<3.1.3|>=4,<4.1.22", "codeigniter/framework": "<3.1.9", - "codeigniter4/framework": "<4.3.5", - "codeigniter4/shield": "<1.0.0.0-beta4", + "codeigniter4/framework": "<=4.4.2", + "codeigniter4/shield": "<1.0.0.0-beta8", "codiad/codiad": "<=2.8.4", - "composer/composer": "<1.10.26|>=2,<2.2.12|>=2.3,<2.3.5", - "concrete5/concrete5": "<9.2", + "composer/composer": "<1.10.27|>=2,<2.2.22|>=2.3,<2.6.4", + "concrete5/concrete5": "<9.2.3", "concrete5/core": "<8.5.8|>=9,<9.1", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4", @@ -10577,8 +10786,9 @@ "contao/core-bundle": "<4.9.42|>=4.10,<4.13.28|>=5,<5.1.10", "contao/listing-bundle": ">=4,<4.4.8", "contao/managed-edition": "<=1.5", + "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", - "craftcms/cms": "<=4.4.14", + "craftcms/cms": "<=4.5.10", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czproject/git-php": "<4.0.3", @@ -10591,30 +10801,35 @@ "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3", "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1", "desperado/xml-bundle": "<=0.1.7", - "directmailteam/direct-mail": "<5.2.4", - "doctrine/annotations": ">=1,<1.2.7", - "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", - "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1", + "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2", + "doctrine/annotations": "<1.2.7", + "doctrine/cache": "<1.3.2|>=1.4,<1.4.2", + "doctrine/common": "<2.4.3|>=2.5,<2.5.1", "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4", "doctrine/doctrine-bundle": "<1.5.2", "doctrine/doctrine-module": "<=0.7.1", - "doctrine/mongodb-odm": ">=1,<1.0.2", - "doctrine/mongodb-odm-bundle": ">=2,<3.0.1", + "doctrine/mongodb-odm": "<1.0.2", + "doctrine/mongodb-odm-bundle": "<3.0.1", "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4", - "dolibarr/dolibarr": "<17.0.1", - "dompdf/dompdf": "<2.0.2|==2.0.2", - "drupal/core": "<9.4.14|>=9.5,<9.5.8|>=10,<10.0.8", + "dolibarr/dolibarr": "<18.0.2", + "dompdf/dompdf": "<2.0.4", + "doublethreedigital/guest-entries": "<3.1.2", + "drupal/core": "<9.5.11|>=10,<10.0.11|>=10.1,<10.1.4", "drupal/drupal": ">=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4", + "duncanmcclean/guest-entries": "<3.1.2", "dweeves/magmi": "<=0.7.24", + "ec-cube/ec-cube": "<2.4.4", "ecodev/newsletter": "<=4", "ectouch/ectouch": "<=2.7.2", "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", + "elijaa/phpmemcacheadmin": "<=1.3", "encore/laravel-admin": "<=1.8.19", "endroid/qr-code-bundle": "<3.4.2", "enshrined/svg-sanitize": "<0.15", "erusev/parsedown": "<1.7.2", "ether/logs": "<3.0.4", + "evolutioncms/evolution": "<=3.2.3", "exceedone/exment": "<4.4.3|>=5,<5.0.3", "exceedone/laravel-admin": "<2.2.3|==3", "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev", @@ -10625,11 +10840,12 @@ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26", "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12", - "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.26", + "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.34", "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8", "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev", + "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15", "ezsystems/ezplatform-user": ">=1,<1.0.1", - "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.30", + "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31", "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.06,<=2019.03.5.1", "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3", "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15", @@ -10643,14 +10859,16 @@ "firebase/php-jwt": "<6", "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2", "fixpunkt/fp-newsletter": "<1.1.1|>=2,<2.1.2|>=2.2,<3.2.6", - "flarum/core": "<1.8", - "flarum/framework": "<1.8", + "flarum/core": "<1.8.5", + "flarum/framework": "<1.8.5", "flarum/mentions": "<1.6.3", "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15", "flarum/tags": "<=0.1.0.0-beta13", + "floriangaerber/magnesium": "<0.3.1", "fluidtypo3/vhs": "<5.1.1", "fof/byobu": ">=0.3.0.0-beta2,<1.1.7", "fof/upload": "<1.2.3", + "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1", "fooman/tcpdf": "<6.2.22", "forkcms/forkcms": "<5.11.1", "fossar/tcpdf-parser": "<6.2.22", @@ -10662,7 +10880,7 @@ "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6", "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.1", - "froxlor/froxlor": "<2.1", + "froxlor/froxlor": "<=2.1.1", "fuel/core": "<1.8.1", "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3", "gaoming13/wechat-php-sdk": "<=1.10.2", @@ -10672,15 +10890,16 @@ "getkirby/kirby": "<=2.5.12", "getkirby/panel": "<2.5.14", "getkirby/starterkit": "<=3.7.0.2", - "gilacms/gila": "<=1.11.4", - "gleez/cms": "<=1.2", + "gilacms/gila": "<=1.15.4", + "gleez/cms": "<=1.2|==2", "globalpayments/php-sdk": "<2", "gogentooss/samlbase": "<1.2.7", "google/protobuf": "<3.15", "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", "gree/jose": "<2.2.1", "gregwar/rst": "<1.0.3", - "grumpydictator/firefly-iii": "<6", + "grumpydictator/firefly-iii": "<6.1.1", + "gugoan/economizzer": "<=0.9.0.0-beta1", "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5", "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5", "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2", @@ -10694,9 +10913,10 @@ "httpsoft/http-message": "<1.0.12", "hyn/multi-tenant": ">=5.6,<5.7.2", "ibexa/admin-ui": ">=4.2,<4.2.3", - "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3", + "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.4", "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3", "ibexa/post-install": "<=1.0.4", + "ibexa/solr": ">=4.5,<4.5.4", "ibexa/user": ">=4,<4.4.3", "icecoder/icecoder": "<=8.1", "idno/known": "<=1.3.1", @@ -10706,11 +10926,12 @@ "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75", "impresscms/impresscms": "<=1.4.5", - "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.1", + "impresspages/impresspages": "<=1.0.12", + "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.2.3", "in2code/ipandlanguageredirect": "<5.1.2", "in2code/lux": "<17.6.1|>=18,<24.0.2", "innologi/typo3-appointments": "<2.0.6", - "intelliants/subrion": "<=4.2.1", + "intelliants/subrion": "<4.2.2", "islandora/islandora": ">=2,<2.4.1", "ivankristianto/phpwhois": "<=4.3", "jackalope/jackalope-doctrine-dbal": "<1.7.4", @@ -10718,21 +10939,23 @@ "james-heinrich/phpthumb": "<1.7.12", "jasig/phpcas": "<1.3.3", "jcbrand/converse.js": "<3.3.3", + "joomla/application": "<1.0.13", "joomla/archive": "<1.1.12|>=2,<2.0.1", "joomla/filesystem": "<1.6.2|>=2,<2.0.1", "joomla/filter": "<1.4.4|>=2,<2.0.1", "joomla/framework": ">=2.5.4,<=3.8.12", "joomla/input": ">=2,<2.0.2", - "joomla/joomla-cms": "<3.9.12", + "joomla/joomla-cms": ">=2.5,<3.9.12", "joomla/session": "<1.3.1", "joyqi/hyper-down": "<=2.4.27", "jsdecena/laracom": "<2.0.9", "jsmitty12/phpwhois": "<5.1", + "juzaweb/cms": "<=3.4", "kazist/phpwhois": "<=4.2.6", "kelvinmo/simplexrd": "<3.1.1", "kevinpapst/kimai2": "<1.16.7", "khodakhah/nodcms": "<=3", - "kimai/kimai": "<1.1", + "kimai/kimai": "<2.1", "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4", "klaviyo/magento2-extension": ">=1,<3", "knplabs/knp-snappy": "<=1.4.2", @@ -10761,23 +10984,30 @@ "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", "luyadev/yii-helpers": "<1.2.1", - "magento/community-edition": "<=2.4", + "magento/community-edition": "<2.4.3.0-patch3|>=2.4.4,<2.4.5", + "magento/core": "<=1.9.4.5", "magento/magento1ce": "<1.9.4.3-dev", "magento/magento1ee": ">=1,<1.14.4.3-dev", "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2.0-patch2", + "magneto/core": "<1.9.4.4-dev", "maikuolan/phpmussel": ">=1,<1.6", - "mantisbt/mantisbt": "<=2.25.5", + "mainwp/mainwp": "<=4.4.3.3", + "mantisbt/mantisbt": "<=2.25.7", "marcwillmann/turn": "<0.3.3", "matyhtf/framework": "<3.0.6", "mautic/core": "<4.3", "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35", "mediawiki/matomo": "<2.4.3", + "mediawiki/semantic-media-wiki": "<4.0.2", "melisplatform/melis-asset-manager": "<5.0.1", "melisplatform/melis-cms": "<5.0.1", "melisplatform/melis-front": "<5.0.1", "mezzio/mezzio-swoole": "<3.7|>=4,<4.3", "mgallegos/laravel-jqgrid": "<=1.3", - "microweber/microweber": "<=1.3.4", + "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2.0.0.0-RC1-dev,<2.0.1", + "microsoft/microsoft-graph-beta": "<2.0.1", + "microsoft/microsoft-graph-core": "<2.0.2", + "microweber/microweber": "<=2.0.4", "miniorange/miniorange-saml": "<1.4.3", "mittwald/typo3_forum": "<1.2.1", "mobiledetect/mobiledetectlib": "<2.8.32", @@ -10785,21 +11015,27 @@ "mojo42/jirafeau": "<4.4", "mongodb/mongodb": ">=1,<1.9.2", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<4.2.0.0-RC2-dev|==4.2", + "moodle/moodle": "<4.3.0.0-RC2-dev", + "mos/cimage": "<0.7.19", "movim/moxl": ">=0.8,<=0.10", "mpdf/mpdf": "<=7.1.7", + "munkireport/comment": "<4.1", + "munkireport/managedinstalls": "<2.6", + "munkireport/munkireport": ">=2.5.3,<5.6.3", "mustache/mustache": ">=2,<2.14.1", "namshi/jose": "<2.2", "neoan3-apps/template": "<1.1.1", "neorazorx/facturascripts": "<2022.04", "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3", + "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9", "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2", "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5", "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15", "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6", "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13", "nilsteampassnet/teampass": "<3.0.10", + "nonfiction/nterchange": "<4.1.1", "notrinos/notrinos-erp": "<=0.7", "noumo/easyii": "<=0.9", "nukeviet/nukeviet": "<4.5.02", @@ -10810,18 +11046,22 @@ "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1", "october/october": "<=3.4.4", "october/rain": "<1.0.472|>=1.1,<1.1.2", - "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.0.66", + "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2", + "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", "open-web-analytics/open-web-analytics": "<1.7.4", - "opencart/opencart": "<=3.0.3.7", + "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev", "openid/php-openid": "<2.3", - "openmage/magento-lts": "<=19.5|>=20,<=20.1", + "openmage/magento-lts": "<20.2", "opensource-workshop/connect-cms": "<1.7.2|>=2,<2.3.2", "orchid/platform": ">=9,<9.4.4|>=14.0.0.0-alpha4,<14.5", - "oro/commerce": ">=4.1,<5.0.6", + "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1", + "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1", "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7", - "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<4.2.8", + "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1", + "oro/customer-portal": ">=4.2,<=4.2.8|>=5,<5.0.11|>=5.1,<5.1.1", + "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<5.0.8", "oxid-esales/oxideshop-ce": "<4.5", "packbackbooks/lti-1-3-php-library": "<5", "padraic/humbug_get_contents": "<1.1.2", @@ -10836,8 +11076,10 @@ "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1", "personnummer/personnummer": "<3.0.2", "phanan/koel": "<5.1.4", + "phenx/php-svg-lib": "<0.5.1", "php-mod/curl": "<2.3.2", "phpbb/phpbb": "<3.2.10|>=3.3,<3.3.1", + "phpems/phpems": ">=6,<=6.1.3", "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7", "phpmailer/phpmailer": "<6.5", "phpmussel/phpmussel": ">=1,<1.6", @@ -10845,42 +11087,49 @@ "phpmyfaq/phpmyfaq": "<=3.1.7", "phpoffice/phpexcel": "<1.8", "phpoffice/phpspreadsheet": "<1.16", - "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.19", + "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.34", "phpservermon/phpservermon": "<3.6", - "phpsysinfo/phpsysinfo": "<3.2.5", + "phpsysinfo/phpsysinfo": "<3.4.3", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", "phpxmlrpc/phpxmlrpc": "<4.9.2", "pi/pi": "<=2.5", - "pimcore/admin-ui-classic-bundle": "<1.0.3", - "pimcore/customer-management-framework-bundle": "<3.4.2", + "pimcore/admin-ui-classic-bundle": "<1.3.2", + "pimcore/customer-management-framework-bundle": "<4.0.6", "pimcore/data-hub": "<1.2.4", + "pimcore/demo": "<10.3", + "pimcore/ecommerce-framework-bundle": "<1.0.10", "pimcore/perspective-editor": "<1.5.1", - "pimcore/pimcore": "<10.6.8", + "pimcore/pimcore": "<11.1.1", "pixelfed/pixelfed": "<=0.11.4", + "plotly/plotly.js": "<2.25.2", "pocketmine/bedrock-protocol": "<8.0.2", "pocketmine/pocketmine-mp": "<=4.23|>=5,<5.3.1", + "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1", "pressbooks/pressbooks": "<5.18", "prestashop/autoupgrade": ">=4,<4.10.1", + "prestashop/blockreassurance": "<=5.1.3", "prestashop/blockwishlist": ">=2,<2.1.1", "prestashop/contactform": ">=1.0.1,<4.3", "prestashop/gamification": "<2.3.2", - "prestashop/prestashop": "<=8.1", + "prestashop/prestashop": "<8.1.3", "prestashop/productcomments": "<5.0.2", "prestashop/ps_emailsubscription": "<2.6.1", "prestashop/ps_facetedsearch": "<3.4.1", "prestashop/ps_linklist": "<3.1", "privatebin/privatebin": "<1.4", - "processwire/processwire": "<=3.0.200", + "processwire/processwire": "<=3.0.210", "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7", "propel/propel1": ">=1,<=1.7.1", "pterodactyl/panel": "<1.7", - "ptheofan/yii2-statemachine": ">=2", + "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2", "ptrofimov/beanstalk_console": "<1.7.14", + "pubnub/pubnub": "<6.1", "pusher/pusher-php-server": "<2.2.1", "pwweb/laravel-core": "<=0.3.6.0-beta", "pyrocms/pyrocms": "<=3.9.1", + "rainlab/blog-plugin": "<1.4.1", "rainlab/debugbar-plugin": "<3.1", "rainlab/user-plugin": "<=1.4.5", "rankmath/seo-by-rank-math": "<=1.0.95", @@ -10888,6 +11137,8 @@ "react/http": ">=0.7,<1.9", "really-simple-plugins/complianz-gdpr": "<6.4.2", "remdex/livehelperchat": "<3.99", + "reportico-web/reportico": "<=7.1.21", + "rhukster/dom-sanitizer": "<1.0.7", "rmccue/requests": ">=1.6,<1.8", "robrichards/xmlseclibs": "<3.0.4", "roots/soil": "<4.1", @@ -10901,21 +11152,21 @@ "serluck/phpwhois": "<=4.2.6", "sfroemken/url_redirect": "<=1.2.1", "sheng/yiicms": "<=1.2", - "shopware/core": "<=6.4.20", - "shopware/platform": "<=6.4.20", + "shopware/core": "<=6.5.7.3", + "shopware/platform": "<=6.5.7.3", "shopware/production": "<=6.3.5.2", "shopware/shopware": "<=5.7.17", "shopware/storefront": "<=6.4.8.1", "shopxo/shopxo": "<2.2.6", "showdoc/showdoc": "<2.10.4", "silverstripe-australia/advancedreports": ">=1,<=2", - "silverstripe/admin": "<1.13.6", + "silverstripe/admin": "<1.13.19|>=2,<2.1.8", "silverstripe/assets": ">=1,<1.11.1", "silverstripe/cms": "<4.11.3", "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": "<4.13.14|>=5,<5.0.13", - "silverstripe/graphql": "<3.5.2|>=4.0.0.0-alpha1,<4.0.0.0-alpha2|>=4.1.1,<4.1.2|>=4.2.2,<4.2.3", + "silverstripe/framework": "<4.13.39|>=5,<5.1.11", + "silverstripe/graphql": "<3.8.2|>=4,<4.3.7|>=5,<5.1.3", "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1", "silverstripe/recipe-cms": ">=4.5,<4.5.3", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", @@ -10926,19 +11177,20 @@ "silverstripe/userforms": "<3", "silverstripe/versioned-admin": ">=1,<1.11.1", "simple-updates/phpwhois": "<=1", - "simplesamlphp/saml2": "<1.15.4|>=2,<2.3.8|>=3,<3.1.4", + "simplesamlphp/saml2": "<1.15.4|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12", "simplesamlphp/simplesamlphp": "<1.18.6", "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", "simplesamlphp/simplesamlphp-module-openid": "<1", "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9", + "simplesamlphp/xml-security": "==1.6.11", "simplito/elliptic-php": "<1.0.6", "sitegeist/fluid-components": "<3.5", - "sjbr/sr-freecap": "<=2.5.2", + "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3", "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1", "slim/slim": "<2.6", "slub/slub-events": "<3.0.3", "smarty/smarty": "<3.1.48|>=4,<4.3.1", - "snipe/snipe-it": "<=6.0.14", + "snipe/snipe-it": "<=6.2.2", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spatie/browsershot": "<3.57.4", @@ -10947,16 +11199,16 @@ "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "ssddanbrown/bookstack": "<22.02.3", - "statamic/cms": "<4.10", + "statamic/cms": "<4.36", "stormpath/sdk": "<9.9.99", "studio-42/elfinder": "<2.1.62", "subhh/libconnect": "<7.0.8|>=8,<8.1", - "subrion/cms": "<=4.2.1", "sukohi/surpass": "<1", "sulu/sulu": "<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8|==2.4.0.0-RC1|>=2.5,<2.5.10", "sumocoders/framework-user-bundle": "<1.4", "swag/paypal": "<5.4.4", "swiftmailer/swiftmailer": ">=4,<5.4.5", + "swiftyedit/swiftyedit": "<1.2", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": "<1.10.1", @@ -10988,17 +11240,21 @@ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9", "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8", - "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2", + "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2|>=5.4,<5.4.31|>=6,<6.3.8", "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12", - "symfony/symfony": "<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6", + "symfony/symfony": "<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/translation": ">=2,<2.0.17", + "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/ux-autocomplete": "<2.11.2", "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3", "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", + "symfony/webhook": ">=6.3,<6.3.8", "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", + "symphonycms/symphony-2": "<2.6.4", "t3/dce": "<0.11.5|>=2.2,<2.6.2", "t3g/svg-sanitizer": "<1.0.3", + "t3s/content-consent": "<1.0.3|>=2,<2.0.2", "tastyigniter/tastyigniter": "<3.3", "tcg/voyager": "<=1.4", "tecnickcom/tcpdf": "<6.2.22", @@ -11007,9 +11263,9 @@ "thelia/thelia": ">=2.1,<2.1.3", "theonedemon/phpwhois": "<=4.2.5", "thinkcmf/thinkcmf": "<=5.1.7", - "thorsten/phpmyfaq": "<3.2.0.0-beta2", + "thorsten/phpmyfaq": "<3.2.2", "tikiwiki/tiki-manager": "<=17.1", - "tinymce/tinymce": "<5.10.7|>=6,<6.3.1", + "tinymce/tinymce": "<5.10.9|>=6,<6.7.3", "tinymighty/wiki-seo": "<1.2.2", "titon/framework": "<9.9.99", "tobiasbg/tablepress": "<=2.0.0.0-RC1", @@ -11017,35 +11273,36 @@ "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3", "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2", - "tribalsystems/zenario": "<=9.3.57595", + "tribalsystems/zenario": "<=9.4.59197", "truckersmp/phpwhois": "<=4.3.1", "ttskch/pagination-service-provider": "<1", "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3", - "typo3/cms": "<8.7.38|>=9,<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", + "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", - "typo3/cms-core": "<8.7.51|>=9,<9.5.42|>=10,<10.4.39|>=11,<11.5.30|>=12,<12.4.4", + "typo3/cms-core": "<8.7.55|>=9,<9.5.44|>=10,<10.4.41|>=11,<11.5.33|>=12,<12.4.8", "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1", "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", + "typo3/cms-install": ">=12.2,<12.4.8", "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", - "typo3/html-sanitizer": ">=1,<1.5.1|>=2,<2.1.2", + "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3", "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1", "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5", "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10", "ua-parser/uap-php": "<3.8", "uasoft-indonesia/badaso": "<=2.9.7", - "unisharp/laravel-filemanager": "<=2.5.1", + "unisharp/laravel-filemanager": "<2.6.4", "userfrosting/userfrosting": ">=0.3.1,<4.6.3", "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", "uvdesk/community-skeleton": "<=1.1.1", "vanilla/safecurl": "<0.9.2", - "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", + "verot/class.upload.php": "<=2.1.6", "vova07/yii2-fileapi-widget": "<0.1.9", "vrana/adminer": "<4.8.1", "waldhacker/hcaptcha": "<2.1.2", "wallabag/tcpdf": "<6.2.22", - "wallabag/wallabag": "<=2.6.2", + "wallabag/wallabag": "<2.6.7", "wanglelecc/laracms": "<=1.0.3", "web-auth/webauthn-framework": ">=3.3,<3.3.4", "webbuilders-group/silverstripe-kapost-bridge": "<0.4", @@ -11056,6 +11313,8 @@ "wikibase/wikibase": "<=1.39.3", "wikimedia/parsoid": "<0.12.2", "willdurand/js-translation-bundle": "<2.1.1", + "winter/wn-backend-module": "<1.2.4", + "winter/wn-system-module": "<1.2.4", "wintercms/winter": "<1.2.3", "woocommerce/woocommerce": "<6.6", "wp-cli/wp-cli": "<2.5", @@ -11069,8 +11328,9 @@ "yetiforce/yetiforce-crm": "<=6.4", "yidashi/yii2cmf": "<=2", "yii2mod/yii2-cms": "<1.9.2", - "yiisoft/yii": "<1.1.27", + "yiisoft/yii": "<1.1.29", "yiisoft/yii2": "<2.0.38", + "yiisoft/yii2-authclient": "<2.2.15", "yiisoft/yii2-bootstrap": "<2.0.4", "yiisoft/yii2-dev": "<2.0.43", "yiisoft/yii2-elasticsearch": "<2.0.5", @@ -11082,7 +11342,7 @@ "yourls/yourls": "<=1.8.2", "zencart/zencart": "<=1.5.7.0-beta", "zendesk/zendesk_api_client_php": "<2.2.11", - "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", + "zendframework/zend-cache": "<2.4.8|>=2.5,<2.5.3", "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5", @@ -11101,14 +11361,22 @@ "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6", "zendframework/zendframework": "<=3", "zendframework/zendframework1": "<1.12.20", - "zendframework/zendopenid": ">=2,<2.0.2", + "zendframework/zendopenid": "<2.0.2", + "zendframework/zendrest": "<2.0.2", + "zendframework/zendservice-amazon": "<2.0.3", + "zendframework/zendservice-api": "<1", + "zendframework/zendservice-audioscrobbler": "<2.0.2", + "zendframework/zendservice-nirvanix": "<2.0.2", + "zendframework/zendservice-slideshare": "<2.0.2", + "zendframework/zendservice-technorati": "<2.0.2", + "zendframework/zendservice-windowsazure": "<2.0.2", "zendframework/zendxml": "<1.0.1", "zenstruck/collection": "<0.2.1", "zetacomponents/mail": "<1.8.2", "zf-commons/zfc-user": "<1.2.2", - "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3", + "zfcampus/zf-apigility-doctrine": "<1.0.3", "zfr/zfr-oauth2-server-module": "<0.1.2", - "zoujingli/thinkadmin": "<6.0.22" + "zoujingli/thinkadmin": "<=6.1.53" }, "default-branch": true, "type": "metapackage", @@ -11146,7 +11414,7 @@ "type": "tidelift" } ], - "time": "2023-09-15T19:04:11+00:00" + "time": "2024-01-24T22:04:16+00:00" }, { "name": "yiisoft/yii2-shell", From 31cdf8b29d099c031ef2d0bcb50e28d63eaa3d16 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Mon, 29 Jan 2024 22:28:24 +0100 Subject: [PATCH 07/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(cms):=20Craf?= =?UTF-8?q?tCMS=20(4.7.1)=20/=20Vite=20Config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- composer.json | 2 +- composer.lock | 10 +- package-lock.json | 2076 ++++++++++++++++++++++----------------------- package.json | 71 +- vite.config.mts | 2 +- 6 files changed, 1072 insertions(+), 1091 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f1e5b76..493d490f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ - ### updated -- (cms): CraftCMS (4.7.0) +- (cms): CraftCMS (4.7.1) - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.10) - (plugin): Formie (2.1.3) diff --git a/composer.json b/composer.json index d8fe8b8e..ecbc20a2 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.6.0", - "craftcms/cms": "4.7.0", + "craftcms/cms": "4.7.1", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-clearcache": "1.3.0", diff --git a/composer.lock b/composer.lock index b648c185..1989bf84 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e773510d0904d0ed69e9a1e345dfd6ba", + "content-hash": "874cedc05539248124a881bdf46d2a13", "packages": [ { "name": "amphp/amp", @@ -1390,11 +1390,11 @@ }, { "name": "craftcms/cms", - "version": "4.7.0", + "version": "4.7.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/17164e79c7b3e86534491ff7687129cc1db79386", - "reference": "17164e79c7b3e86534491ff7687129cc1db79386", + "url": "https://api.github.com/repos/craftcms/cms/zipball/887b4ca440dd554b0233ec077ef3b9a725df53e8", + "reference": "887b4ca440dd554b0233ec077ef3b9a725df53e8", "shasum": "" }, "require": { @@ -1482,7 +1482,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-01-23T18:59:37+00:00" + "time": "2024-01-29T18:59:43+00:00" }, { "name": "craftcms/html-field", diff --git a/package-lock.json b/package-lock.json index 3decfbde..d939b8d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,14 +9,14 @@ "version": "4.0.13", "hasInstallScript": true, "dependencies": { - "@alpinejs/persist": "^3.13.3", + "@alpinejs/persist": "^3.13.5", "@popperjs/core": "^2.11.8", "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/container-queries": "^0.1.1", "@tailwindcss/forms": "^0.5.7", - "@vueuse/core": "^10.6.1", - "alpinejs": "^3.13.3", - "axios": "^1.6.2", + "@vueuse/core": "^10.7.2", + "alpinejs": "^3.13.5", + "axios": "^1.6.7", "clipboard": "^2.0.11", "ferdi": "0.0.21", "focus-trap": "^7.5.4", @@ -24,59 +24,59 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "puppeteer": "^21.6.0", + "puppeteer": "^21.9.0", "swiper": "^11.0.5", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", "typeface-jetbrains-mono": "^2.0.1", "typeface-lato": "^1.1.13", "typeface-merriweather": "^1.1.13", - "vue": "^3.3.8", + "vue": "^3.4.15", "vue-axios": "^3.5.2", "vue-confetti": "^2.3.0" }, "devDependencies": { "@rollup/plugin-node-resolve": "^15.2.3", - "@types/alpinejs": "^3.13.5", + "@types/alpinejs": "^3.13.6", "@types/lodash-es": "^4.17.12", - "@typescript-eslint/eslint-plugin": "^6.12.0", - "@typescript-eslint/parser": "^6.12.0", - "@vitejs/plugin-legacy": "^5.2.0", - "@vitejs/plugin-vue": "^4.5.0", - "@vue/compiler-sfc": "^3.3.8", - "autoprefixer": "^10.4.16", - "cypress": "^13.6.0", + "@typescript-eslint/eslint-plugin": "^6.19.1", + "@typescript-eslint/parser": "^6.19.1", + "@vitejs/plugin-legacy": "^5.3.0", + "@vitejs/plugin-vue": "^5.0.3", + "@vue/compiler-sfc": "^3.4.15", + "autoprefixer": "^10.4.17", + "cypress": "^13.6.3", "cypress-audit": "^1.1.0", - "eslint": "^8.54.0", - "eslint-config-prettier": "^9.0.0", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-alias": "^1.1.2", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-prettier": "^5.0.1", - "eslint-plugin-vue": "^9.18.1", - "husky": "^8.0.3", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-vue": "^9.20.1", + "husky": "^9.0.6", "npm-check": "^6.0.1", - "postcss": "^8.4.31", - "postcss-import": "^15.1.0", - "postcss-nesting": "^12.0.1", - "prettier": "^3.1.0", - "prettier-plugin-tailwindcss": "^0.5.7", + "postcss": "^8.4.33", + "postcss-import": "^16.0.0", + "postcss-nesting": "^12.0.2", + "prettier": "^3.2.4", + "prettier-plugin-tailwindcss": "^0.5.11", "prettier-plugin-twig-melody": "^0.4.6", "rollup-plugin-copy": "^3.5.0", - "rollup-plugin-critical": "^1.0.12", - "rollup-plugin-visualizer": "^5.9.2", - "stylelint": "^15.11.0", - "stylelint-config-recommended": "^13.0.0", + "rollup-plugin-critical": "^1.0.13", + "rollup-plugin-visualizer": "^5.12.0", + "stylelint": "^16.2.0", + "stylelint-config-recommended": "^14.0.0", "stylelint-config-recommended-vue": "^1.5.0", - "tailwindcss": "^3.3.5", + "tailwindcss": "^3.4.1", "tailwindcss-debug-screens": "^2.2.1", - "typescript": "^5.3.2", - "vite": "^5.0.2", + "typescript": "^5.3.3", + "vite": "^5.0.12", "vite-plugin-compression": "^0.5.1", "vite-plugin-eslint": "^1.8.1", "vite-plugin-favicon2": "^1.1.5", "vite-plugin-manifest-sri": "^0.2.0", "vite-plugin-restart": "^0.4.0", - "vue-eslint-parser": "^9.3.2" + "vue-eslint-parser": "^9.4.2" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -100,9 +100,9 @@ } }, "node_modules/@alpinejs/persist": { - "version": "3.13.3", - "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.13.3.tgz", - "integrity": "sha512-gXTH8ynVFmmQJf50/bukRvHRnp5fIDYBBfo1ZJMLSzSC6OefM/CAablwlDCV6gx+8ELeis+v5yFvX0MjBEQ7Uw==" + "version": "3.13.5", + "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.13.5.tgz", + "integrity": "sha512-nmULi5Kp/v5/h4FtGpqyzzMPlulc2fmQ+Olhk0NwTcBKSCZDg6OtXgS998rnHpcWO0jsjCmvXn/Pul2av7D8lA==" }, "node_modules/@ampproject/remapping": { "version": "2.2.1", @@ -118,9 +118,9 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", - "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dependencies": { "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" @@ -130,30 +130,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", - "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz", - "integrity": "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.3", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.3", - "@babel/types": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -178,12 +178,12 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.4.tgz", - "integrity": "sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "dev": true, "dependencies": { - "@babel/types": "^7.23.4", + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -217,14 +217,14 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -242,17 +242,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", - "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.9.tgz", + "integrity": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" @@ -300,9 +300,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", + "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -501,9 +501,9 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true, "engines": { "node": ">=6.9.0" @@ -524,14 +524,14 @@ } }, "node_modules/@babel/helpers": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.4.tgz", - "integrity": "sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.4", - "@babel/types": "^7.23.4" + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" }, "engines": { "node": ">=6.9.0" @@ -551,9 +551,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.4.tgz", - "integrity": "sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", "bin": { "parser": "bin/babel-parser.js" }, @@ -594,9 +594,9 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", - "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", + "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", @@ -872,9 +872,9 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", - "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", + "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", @@ -970,16 +970,15 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", - "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", + "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-split-export-declaration": "^7.22.6", @@ -1103,12 +1102,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", - "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1230,9 +1230,9 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", - "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", + "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", @@ -1629,18 +1629,18 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.3.tgz", - "integrity": "sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz", + "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", + "@babel/helper-validator-option": "^7.23.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", @@ -1661,41 +1661,41 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.9", "@babel/plugin-transform-async-to-generator": "^7.23.3", "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.3", - "@babel/plugin-transform-classes": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.8", "@babel/plugin-transform-computed-properties": "^7.23.3", "@babel/plugin-transform-destructuring": "^7.23.3", "@babel/plugin-transform-dotall-regex": "^7.23.3", "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.3", - "@babel/plugin-transform-for-of": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", "@babel/plugin-transform-member-expression-literals": "^7.23.3", "@babel/plugin-transform-modules-amd": "^7.23.3", "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.9", "@babel/plugin-transform-modules-umd": "^7.23.3", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.3", - "@babel/plugin-transform-numeric-separator": "^7.23.3", - "@babel/plugin-transform-object-rest-spread": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.23.4", "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.3", - "@babel/plugin-transform-optional-chaining": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", "@babel/plugin-transform-parameters": "^7.23.3", "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", "@babel/plugin-transform-property-literals": "^7.23.3", "@babel/plugin-transform-regenerator": "^7.23.3", "@babel/plugin-transform-reserved-words": "^7.23.3", @@ -1709,9 +1709,9 @@ "@babel/plugin-transform-unicode-regex": "^7.23.3", "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -1764,34 +1764,34 @@ } }, "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.4.tgz", - "integrity": "sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.4", - "@babel/generator": "^7.23.4", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.4", - "@babel/types": "^7.23.4", - "debug": "^4.1.0", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -1799,9 +1799,9 @@ } }, "node_modules/@babel/types": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.4.tgz", - "integrity": "sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==", + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.23.4", @@ -1823,9 +1823,9 @@ } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", - "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.5.0.tgz", + "integrity": "sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==", "dev": true, "funding": [ { @@ -1841,13 +1841,13 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.1" + "@csstools/css-tokenizer": "^2.2.3" } }, "node_modules/@csstools/css-tokenizer": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", - "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz", + "integrity": "sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==", "dev": true, "funding": [ { @@ -1864,9 +1864,9 @@ } }, "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz", - "integrity": "sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.7.tgz", + "integrity": "sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==", "dev": true, "funding": [ { @@ -1882,14 +1882,14 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.3.2", - "@csstools/css-tokenizer": "^2.2.1" + "@csstools/css-parser-algorithms": "^2.5.0", + "@csstools/css-tokenizer": "^2.2.3" } }, "node_modules/@csstools/selector-specificity": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", - "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz", + "integrity": "sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==", "dev": true, "funding": [ { @@ -2380,9 +2380,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -2403,9 +2403,9 @@ } }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -2430,9 +2430,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", - "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -2486,6 +2486,102 @@ "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", "dev": true }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jimp/bmp": { "version": "0.16.13", "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz", @@ -3041,54 +3137,26 @@ "node": ">= 8" } }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@pkgr/utils/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, + "optional": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=14" } }, - "node_modules/@pkgr/utils/node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, "engines": { - "node": ">=14.16" + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/unts" } }, "node_modules/@popperjs/core": { @@ -3101,9 +3169,9 @@ } }, "node_modules/@puppeteer/browsers": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.0.tgz", - "integrity": "sha512-QwguOLy44YBGC8vuPP2nmpX4MUN2FzWbsnvZJtiCzecU3lHmVZkaC1tq6rToi9a200m8RzlVtDyxCS0UIDrxUg==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", + "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", "dependencies": { "debug": "4.3.4", "extract-zip": "2.0.1", @@ -3152,9 +3220,9 @@ } }, "node_modules/@puppeteer/browsers/node_modules/tar-stream": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", - "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", @@ -3496,9 +3564,9 @@ } }, "node_modules/@types/alpinejs": { - "version": "3.13.5", - "resolved": "https://registry.npmjs.org/@types/alpinejs/-/alpinejs-3.13.5.tgz", - "integrity": "sha512-BSNTroRhmBkNiyd7ELK/5Boja92hnQMST6H4z1BqXKeMVzHjp9o1j5poqd5Tyhjd8oMFwxYC4I00eghfg2xrTA==", + "version": "3.13.6", + "resolved": "https://registry.npmjs.org/@types/alpinejs/-/alpinejs-3.13.6.tgz", + "integrity": "sha512-BMi1/2uQz7mp30VFn69SzjN7YwQ0QzE4Hn3RMBt4iMpQeasdbMiImv1f5yvK1bYmvjIyG/YFg+CgPxbjIXZk0g==", "dev": true }, "node_modules/@types/cacheable-request": { @@ -3677,16 +3745,16 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.12.0.tgz", - "integrity": "sha512-XOpZ3IyJUIV1b15M7HVOpgQxPPF7lGXgsfcEIu3yDxFPaf/xZKt7s9QO/pbk7vpWQyVulpJbu4E5LwpZiQo4kA==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.1.tgz", + "integrity": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/type-utils": "6.12.0", - "@typescript-eslint/utils": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", + "@typescript-eslint/scope-manager": "6.19.1", + "@typescript-eslint/type-utils": "6.19.1", + "@typescript-eslint/utils": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -3712,15 +3780,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.12.0.tgz", - "integrity": "sha512-s8/jNFPKPNRmXEnNXfuo1gemBdVmpQsK1pcu+QIvuNJuhFzGrpD7WjOcvDc/+uEdfzSYpNu7U/+MmbScjoQ6vg==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.1.tgz", + "integrity": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/typescript-estree": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", + "@typescript-eslint/scope-manager": "6.19.1", + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/typescript-estree": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1", "debug": "^4.3.4" }, "engines": { @@ -3740,13 +3808,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.12.0.tgz", - "integrity": "sha512-5gUvjg+XdSj8pcetdL9eXJzQNTl3RD7LgUiYTl8Aabdi8hFkaGSYnaS6BLc0BGNaDH+tVzVwmKtWvu0jLgWVbw==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.1.tgz", + "integrity": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0" + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1" }, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -3757,13 +3825,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.12.0.tgz", - "integrity": "sha512-WWmRXxhm1X8Wlquj+MhsAG4dU/Blvf1xDgGaYCzfvStP2NwPQh6KBvCDbiOEvaE0filhranjIlK/2fSTVwtBng==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.1.tgz", + "integrity": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.12.0", - "@typescript-eslint/utils": "6.12.0", + "@typescript-eslint/typescript-estree": "6.19.1", + "@typescript-eslint/utils": "6.19.1", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, @@ -3784,9 +3852,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.12.0.tgz", - "integrity": "sha512-MA16p/+WxM5JG/F3RTpRIcuOghWO30//VEOvzubM8zuOOBYXsP+IfjoCXXiIfy2Ta8FRh9+IO9QLlaFQUU+10Q==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.1.tgz", + "integrity": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==", "dev": true, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -3797,16 +3865,17 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.12.0.tgz", - "integrity": "sha512-vw9E2P9+3UUWzhgjyyVczLWxZ3GuQNT7QpnIY3o5OMeLO/c8oHljGc8ZpryBMIyympiAAaKgw9e5Hl9dCWFOYw==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.1.tgz", + "integrity": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/visitor-keys": "6.19.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", + "minimatch": "9.0.3", "semver": "^7.5.4", "ts-api-utils": "^1.0.1" }, @@ -3823,18 +3892,42 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/utils": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.12.0.tgz", - "integrity": "sha512-LywPm8h3tGEbgfyjYnu3dauZ0U7R60m+miXgKcZS8c7QALO9uWJdvNoP+duKTk2XMWc7/Q3d/QiCuLN9X6SWyQ==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.1.tgz", + "integrity": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/typescript-estree": "6.12.0", + "@typescript-eslint/scope-manager": "6.19.1", + "@typescript-eslint/types": "6.19.1", + "@typescript-eslint/typescript-estree": "6.19.1", "semver": "^7.5.4" }, "engines": { @@ -3849,12 +3942,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.12.0.tgz", - "integrity": "sha512-rg3BizTZHF1k3ipn8gfrzDXXSFKyOEB5zxYXInQ6z0hUvmQlhaZQzK+YmHmNViMA9HzW5Q9+bPPt90bU6GQwyw==", + "version": "6.19.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.1.tgz", + "integrity": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", + "@typescript-eslint/types": "6.19.1", "eslint-visitor-keys": "^3.4.1" }, "engines": { @@ -3872,18 +3965,19 @@ "dev": true }, "node_modules/@vitejs/plugin-legacy": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.2.0.tgz", - "integrity": "sha512-FGpxQCgyI8SHA/TkFH5vfBManyc6GYkCoYtmom924c7sKObnBE7q543RQuKK46duI4j31Nv1wg4GRNtCfsGpGQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.3.0.tgz", + "integrity": "sha512-BhW+WcJmEgW5G/1UQRiVQ7wz9/ZPnxqzExT9n0zAk4RlqQQ/26udIeXzdU8+03AGnaF61wmZlCspexgEnxFWMA==", "dev": true, "dependencies": { - "@babel/core": "^7.23.3", - "@babel/preset-env": "^7.23.3", - "browserslist": "^4.22.1", - "core-js": "^3.33.2", + "@babel/core": "^7.23.7", + "@babel/preset-env": "^7.23.8", + "browserslist": "^4.22.2", + "core-js": "^3.35.0", + "esbuild-plugin-browserslist": "^0.10.0", "magic-string": "^0.30.5", - "regenerator-runtime": "^0.14.0", - "systemjs": "^6.14.2" + "regenerator-runtime": "^0.14.1", + "systemjs": "^6.14.3" }, "engines": { "node": "^18.0.0 || >=20.0.0" @@ -3897,134 +3991,122 @@ } }, "node_modules/@vitejs/plugin-legacy/node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, "node_modules/@vitejs/plugin-vue": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.5.0.tgz", - "integrity": "sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.3.tgz", + "integrity": "sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==", "dev": true, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^18.0.0 || >=20.0.0" }, "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", + "vite": "^5.0.0", "vue": "^3.2.25" } }, "node_modules/@vue/compiler-core": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.8.tgz", - "integrity": "sha512-hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.15.tgz", + "integrity": "sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==", "dependencies": { - "@babel/parser": "^7.23.0", - "@vue/shared": "3.3.8", + "@babel/parser": "^7.23.6", + "@vue/shared": "3.4.15", + "entities": "^4.5.0", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-dom": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.8.tgz", - "integrity": "sha512-+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.15.tgz", + "integrity": "sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==", "dependencies": { - "@vue/compiler-core": "3.3.8", - "@vue/shared": "3.3.8" + "@vue/compiler-core": "3.4.15", + "@vue/shared": "3.4.15" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.8.tgz", - "integrity": "sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==", - "dependencies": { - "@babel/parser": "^7.23.0", - "@vue/compiler-core": "3.3.8", - "@vue/compiler-dom": "3.3.8", - "@vue/compiler-ssr": "3.3.8", - "@vue/reactivity-transform": "3.3.8", - "@vue/shared": "3.3.8", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.15.tgz", + "integrity": "sha512-LCn5M6QpkpFsh3GQvs2mJUOAlBQcCco8D60Bcqmf3O3w5a+KWS5GvYbrrJBkgvL1BDnTp+e8q0lXCLgHhKguBA==", + "dependencies": { + "@babel/parser": "^7.23.6", + "@vue/compiler-core": "3.4.15", + "@vue/compiler-dom": "3.4.15", + "@vue/compiler-ssr": "3.4.15", + "@vue/shared": "3.4.15", "estree-walker": "^2.0.2", "magic-string": "^0.30.5", - "postcss": "^8.4.31", + "postcss": "^8.4.33", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-ssr": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.8.tgz", - "integrity": "sha512-hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.15.tgz", + "integrity": "sha512-1jdeQyiGznr8gjFDadVmOJqZiLNSsMa5ZgqavkPZ8O2wjHv0tVuAEsw5hTdUoUW4232vpBbL/wJhzVW/JwY1Uw==", "dependencies": { - "@vue/compiler-dom": "3.3.8", - "@vue/shared": "3.3.8" + "@vue/compiler-dom": "3.4.15", + "@vue/shared": "3.4.15" } }, "node_modules/@vue/reactivity": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.8.tgz", - "integrity": "sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw==", - "dependencies": { - "@vue/shared": "3.3.8" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.8.tgz", - "integrity": "sha512-49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.15.tgz", + "integrity": "sha512-55yJh2bsff20K5O84MxSvXKPHHt17I2EomHznvFiJCAZpJTNW8IuLj1xZWMLELRhBK3kkFV/1ErZGHJfah7i7w==", "dependencies": { - "@babel/parser": "^7.23.0", - "@vue/compiler-core": "3.3.8", - "@vue/shared": "3.3.8", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5" + "@vue/shared": "3.4.15" } }, "node_modules/@vue/runtime-core": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.8.tgz", - "integrity": "sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.15.tgz", + "integrity": "sha512-6E3by5m6v1AkW0McCeAyhHTw+3y17YCOKG0U0HDKDscV4Hs0kgNT5G+GCHak16jKgcCDHpI9xe5NKb8sdLCLdw==", "dependencies": { - "@vue/reactivity": "3.3.8", - "@vue/shared": "3.3.8" + "@vue/reactivity": "3.4.15", + "@vue/shared": "3.4.15" } }, "node_modules/@vue/runtime-dom": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.8.tgz", - "integrity": "sha512-Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.15.tgz", + "integrity": "sha512-EVW8D6vfFVq3V/yDKNPBFkZKGMFSvZrUQmx196o/v2tHKdwWdiZjYUBS+0Ez3+ohRyF8Njwy/6FH5gYJ75liUw==", "dependencies": { - "@vue/runtime-core": "3.3.8", - "@vue/shared": "3.3.8", - "csstype": "^3.1.2" + "@vue/runtime-core": "3.4.15", + "@vue/shared": "3.4.15", + "csstype": "^3.1.3" } }, "node_modules/@vue/server-renderer": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.8.tgz", - "integrity": "sha512-zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.15.tgz", + "integrity": "sha512-3HYzaidu9cHjrT+qGUuDhFYvF/j643bHC6uUN9BgM11DVy+pM6ATsG6uPBLnkwOgs7BpJABReLmpL3ZPAsUaqw==", "dependencies": { - "@vue/compiler-ssr": "3.3.8", - "@vue/shared": "3.3.8" + "@vue/compiler-ssr": "3.4.15", + "@vue/shared": "3.4.15" }, "peerDependencies": { - "vue": "3.3.8" + "vue": "3.4.15" } }, "node_modules/@vue/shared": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.8.tgz", - "integrity": "sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==" + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.15.tgz", + "integrity": "sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==" }, "node_modules/@vueuse/core": { - "version": "10.6.1", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.6.1.tgz", - "integrity": "sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==", + "version": "10.7.2", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.2.tgz", + "integrity": "sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==", "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.6.1", - "@vueuse/shared": "10.6.1", + "@vueuse/metadata": "10.7.2", + "@vueuse/shared": "10.7.2", "vue-demi": ">=0.14.6" }, "funding": { @@ -4057,17 +4139,17 @@ } }, "node_modules/@vueuse/metadata": { - "version": "10.6.1", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.6.1.tgz", - "integrity": "sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==", + "version": "10.7.2", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.2.tgz", + "integrity": "sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==", "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/shared": { - "version": "10.6.1", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.6.1.tgz", - "integrity": "sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==", + "version": "10.7.2", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.2.tgz", + "integrity": "sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==", "dependencies": { "vue-demi": ">=0.14.6" }, @@ -4188,9 +4270,9 @@ } }, "node_modules/alpinejs": { - "version": "3.13.3", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.3.tgz", - "integrity": "sha512-WZ6WQjkAOl+WdW/jukzNHq9zHFDNKmkk/x6WF7WdyNDD6woinrfXCVsZXm0galjbco+pEpYmJLtwlZwcOfIVdg==", + "version": "3.13.5", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.5.tgz", + "integrity": "sha512-1d2XeNGN+Zn7j4mUAKXtAgdc4/rLeadyTMWeJGXF5DzwawPBxwTiBhFFm6w/Ei8eJxUZeyNWWSD9zknfdz1kEw==", "dependencies": { "@vue/reactivity": "~3.1.1" } @@ -4893,9 +4975,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", "dev": true, "funding": [ { @@ -4912,9 +4994,9 @@ } ], "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -4966,11 +5048,11 @@ } }, "node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", "dependencies": { - "follow-redirects": "^1.15.0", + "follow-redirects": "^1.15.4", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -5062,13 +5144,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", + "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.5.0", "semver": "^6.3.1" }, "peerDependencies": { @@ -5085,25 +5167,25 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", - "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", + "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.33.1" + "@babel/helper-define-polyfill-provider": "^0.5.0", + "core-js-compat": "^3.34.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", + "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" + "@babel/helper-define-polyfill-provider": "^0.5.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -5270,9 +5352,9 @@ ] }, "node_modules/basic-ftp": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", - "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz", + "integrity": "sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==", "engines": { "node": ">=10.0.0" } @@ -5301,15 +5383,6 @@ "node": ">= 8.0.0" } }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, "node_modules/bignumber.js": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz", @@ -5469,18 +5542,6 @@ "node": ">=8" } }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -5502,9 +5563,9 @@ } }, "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", "dev": true, "funding": [ { @@ -5521,9 +5582,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.13" }, "bin": { @@ -5610,21 +5671,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", @@ -5787,9 +5833,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001563", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001563.tgz", - "integrity": "sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==", + "version": "1.0.30001581", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz", + "integrity": "sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==", "dev": true, "funding": [ { @@ -5963,9 +6009,9 @@ } }, "node_modules/chromium-bidi": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.1.tgz", - "integrity": "sha512-dcCqOgq9fHKExc2R4JZs/oKbOghWpUNFAJODS8WKRtLhp3avtIH5UDCBrutdqZdh3pARogH8y1ObXm87emwb3g==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.4.tgz", + "integrity": "sha512-p9CdiHl0xNh4P7oVa44zXgJJw+pvnHXFDB+tVdo25xaPLgQDVf2kQO+TDxD2fp2Evqi7vs/vGRINMzl1qJrWiw==", "dependencies": { "mitt": "3.0.1", "urlpattern-polyfill": "9.0.0" @@ -6537,9 +6583,9 @@ } }, "node_modules/core-js": { - "version": "3.33.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.3.tgz", - "integrity": "sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==", + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", "dev": true, "hasInstallScript": true, "funding": { @@ -6548,12 +6594,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.33.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.3.tgz", - "integrity": "sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==", + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz", + "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==", "dev": true, "dependencies": { - "browserslist": "^4.22.1" + "browserslist": "^4.22.2" }, "funding": { "type": "opencollective", @@ -7495,9 +7541,9 @@ } }, "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "node_modules/cuint": { "version": "0.2.2", @@ -7506,15 +7552,14 @@ "dev": true }, "node_modules/cypress": { - "version": "13.6.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.0.tgz", - "integrity": "sha512-quIsnFmtj4dBUEJYU4OH0H12bABJpSujvWexC24Ju1gTlKMJbeT6tTO0vh7WNfiBPPjoIXLN+OUqVtiKFs6SGw==", + "version": "13.6.3", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.3.tgz", + "integrity": "sha512-d/pZvgwjAyZsoyJ3FOsJT5lDsqnxQ/clMqnNc++rkHjbkkiF2h9s0JsZSyyH4QXhVFW3zPFg82jD25roFLOdZA==", "dev": true, "hasInstallScript": true, "dependencies": { "@cypress/request": "^3.0.0", "@cypress/xvfb": "^1.2.4", - "@types/node": "^18.17.5", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", @@ -7573,15 +7618,6 @@ "pa11y": "^6.0.1" } }, - "node_modules/cypress/node_modules/@types/node": { - "version": "18.18.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.11.tgz", - "integrity": "sha512-c1vku6qnTeujJneYH94/4aq73XrVcsJe35UPyAsSok1ijiKrkRzK+AxQPSpNMUnC03roWBBwJx/9I8V7lQoxmA==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } - }, "node_modules/cypress/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -7842,207 +7878,51 @@ "node": ">=0.10.0" } }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" + "clone": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8" } }, - "node_modules/default-browser/node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">= 0.4" } }, - "node_modules/default-browser/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/default-browser/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, "engines": { "node": ">=8" @@ -8292,9 +8172,9 @@ } }, "node_modules/devtools-protocol": { - "version": "0.0.1203626", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1203626.tgz", - "integrity": "sha512-nEzHZteIUZfGCZtTiS1fRpC8UZmsfD1SiyPvaUNvS13dvKf666OAm8YTi0+Ca3n1nLEyu49Cy4+dPWpaHFJk9g==" + "version": "0.0.1232444", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1232444.tgz", + "integrity": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==" }, "node_modules/didyoumean": { "version": "1.2.2", @@ -8421,6 +8301,12 @@ "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", "dev": true }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -8441,9 +8327,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.589", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.589.tgz", - "integrity": "sha512-zF6y5v/YfoFIgwf2dDfAqVlPPsyQeWNpEWXbAlDUS8Ax4Z2VoiiZpAPC0Jm9hXEkJm2vIZpwB6rc4KnLTQffbQ==", + "version": "1.4.648", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.648.tgz", + "integrity": "sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg==", "dev": true }, "node_modules/emoji-regex": { @@ -8475,7 +8361,6 @@ "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, "engines": { "node": ">=0.12" }, @@ -8483,6 +8368,14 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, "node_modules/envinfo": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", @@ -8639,6 +8532,23 @@ "@esbuild/win32-x64": "0.19.7" } }, + "node_modules/esbuild-plugin-browserslist": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.10.0.tgz", + "integrity": "sha512-rZWFcp3l+73xDiJB+Vl9UqP1VVs+L4E0lygbwJl6UTmW2qQago7DLT56hBu0vocH/TtZsAcRHj0+qHqkkB5Gww==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "zod": "^3.21.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "browserslist": "^4.21.8", + "esbuild": "~0.19.2" + } + }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", @@ -8685,15 +8595,15 @@ } }, "node_modules/eslint": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", - "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.54.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -8740,9 +8650,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", - "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" @@ -8810,9 +8720,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { "array-includes": "^3.1.7", @@ -8831,7 +8741,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" @@ -8871,23 +8781,24 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz", - "integrity": "sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" + "synckit": "^0.8.6" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/prettier" + "url": "https://opencollective.com/eslint-plugin-prettier" }, "peerDependencies": { "@types/eslint": ">=8.0.0", "eslint": ">=8.0.0", + "eslint-config-prettier": "*", "prettier": ">=3.0.0" }, "peerDependenciesMeta": { @@ -8900,9 +8811,9 @@ } }, "node_modules/eslint-plugin-vue": { - "version": "9.18.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.18.1.tgz", - "integrity": "sha512-7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg==", + "version": "9.20.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.20.1.tgz", + "integrity": "sha512-GyCs8K3lkEvoyC1VV97GJhP1SvqsKCiWGHnbn0gVUYiUhaH2+nB+Dv1uekv1THFMPbBfYxukrzQdltw950k+LQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", @@ -8910,7 +8821,7 @@ "nth-check": "^2.1.1", "postcss-selector-parser": "^6.0.13", "semver": "^7.5.4", - "vue-eslint-parser": "^9.3.1", + "vue-eslint-parser": "^9.4.0", "xml-name-validator": "^4.0.0" }, "engines": { @@ -9911,9 +9822,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", "funding": [ { "type": "individual", @@ -9946,6 +9857,34 @@ "node": ">=0.10.0" } }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -10965,15 +10904,15 @@ } }, "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.6.tgz", + "integrity": "sha512-EEuw/rfTiMjOfuL7pGO/i9otg1u36TXxqjIA6D9qxVjd/UXoDOsLor/BSFf5hTK50shwzCU3aVVwdXDp/lp7RA==", "dev": true, "bin": { - "husky": "lib/bin.js" + "husky": "bin.js" }, "engines": { - "node": ">=14" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/typicode" @@ -11010,9 +10949,9 @@ ] }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, "engines": { "node": ">= 4" @@ -11075,15 +11014,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -11762,39 +11692,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-installed-globally": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", @@ -12093,6 +11990,24 @@ "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/jimp": { "version": "0.16.13", "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.16.13.tgz", @@ -13779,6 +13694,15 @@ "node": ">= 6" } }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", @@ -13867,9 +13791,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", "funding": [ { "type": "github", @@ -13988,9 +13912,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node_modules/node.extend": { @@ -15586,10 +15510,36 @@ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, "engines": { "node": ">=8" } @@ -15864,9 +15814,9 @@ } }, "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", "funding": [ { "type": "opencollective", @@ -15882,7 +15832,7 @@ } ], "dependencies": { - "nanoid": "^3.3.6", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -15947,16 +15897,17 @@ } }, "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.0.0.tgz", + "integrity": "sha512-e77lhVvrD1I2y7dYmBv0k9ULTdArgEYZt97T4w6sFIU5uxIHvDFQlKgUUyY7v7Barj0Yf/zm5A4OquZN7jKm5Q==", + "dev": true, "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "engines": { - "node": ">=14.0.0" + "node": ">=18.0.0" }, "peerDependencies": { "postcss": "^8.0.0" @@ -16035,9 +15986,9 @@ } }, "node_modules/postcss-nesting": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.1.tgz", - "integrity": "sha512-6LCqCWP9pqwXw/njMvNK0hGY44Fxc4B2EsGbn6xDcxbNRzP8GYoxT7yabVVMLrX3quqOJ9hg2jYMsnkedOf8pA==", + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.2.tgz", + "integrity": "sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==", "dev": true, "funding": [ { @@ -16050,7 +16001,7 @@ } ], "dependencies": { - "@csstools/selector-specificity": "^3.0.0", + "@csstools/selector-specificity": "^3.0.1", "postcss-selector-parser": "^6.0.13" }, "engines": { @@ -16071,6 +16022,7 @@ "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, + "peer": true, "engines": { "node": ">=12.0" }, @@ -16083,9 +16035,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -16202,9 +16154,9 @@ } }, "node_modules/prettier": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", - "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", + "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -16229,9 +16181,9 @@ } }, "node_modules/prettier-plugin-tailwindcss": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.7.tgz", - "integrity": "sha512-4v6uESAgwCni6YF6DwJlRaDjg9Z+al5zM4JfngcazMy4WEf/XkPS5TEQjbD+DZ5iNuG6RrKQLa/HuX2SYzC3kQ==", + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.11.tgz", + "integrity": "sha512-AvI/DNyMctyyxGOjyePgi/gqj5hJYClZ1avtQvLlqMT3uDZkRbi4HhGUpok3DRzv9z7Lti85Kdj3s3/1CeNI0w==", "dev": true, "engines": { "node": ">=14.21.3" @@ -16240,13 +16192,13 @@ "@ianvs/prettier-plugin-sort-imports": "*", "@prettier/plugin-pug": "*", "@shopify/prettier-plugin-liquid": "*", - "@shufo/prettier-plugin-blade": "*", "@trivago/prettier-plugin-sort-imports": "*", "prettier": "^3.0", "prettier-plugin-astro": "*", "prettier-plugin-css-order": "*", "prettier-plugin-import-sort": "*", "prettier-plugin-jsdoc": "*", + "prettier-plugin-marko": "*", "prettier-plugin-organize-attributes": "*", "prettier-plugin-organize-imports": "*", "prettier-plugin-style-order": "*", @@ -16262,9 +16214,6 @@ "@shopify/prettier-plugin-liquid": { "optional": true }, - "@shufo/prettier-plugin-blade": { - "optional": true - }, "@trivago/prettier-plugin-sort-imports": { "optional": true }, @@ -16492,14 +16441,14 @@ } }, "node_modules/puppeteer": { - "version": "21.6.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-21.6.0.tgz", - "integrity": "sha512-u6JhSF7xaPYZ2gd3tvhYI8MwVAjLc3Cazj7UWvMV95A07/y7cIjBwYUiMU9/jm4z0FSUORriLX/RZRaiASNWPw==", + "version": "21.9.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-21.9.0.tgz", + "integrity": "sha512-vcLR81Rp+MBrgqhiXZfpwEBbyKTa88Hd+8Al3+emWzcJb9evLLSfUYli0QUqhofPFrXsO2A/dAF9OunyOivL6w==", "hasInstallScript": true, "dependencies": { - "@puppeteer/browsers": "1.9.0", - "cosmiconfig": "8.3.6", - "puppeteer-core": "21.6.0" + "@puppeteer/browsers": "1.9.1", + "cosmiconfig": "9.0.0", + "puppeteer-core": "21.9.0" }, "bin": { "puppeteer": "lib/esm/puppeteer/node/cli.js" @@ -16509,25 +16458,25 @@ } }, "node_modules/puppeteer-core": { - "version": "21.6.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.6.0.tgz", - "integrity": "sha512-1vrzbp2E1JpBwtIIrriWkN+A0afUxkqRuFTC3uASc5ql6iuK9ppOdIU/CPGKwOyB4YFIQ16mRbK0PK19mbXnaQ==", + "version": "21.9.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.9.0.tgz", + "integrity": "sha512-QgowcczLAoLWlV38s3y3VuEvjJGfKU5rR6Q23GUbiGOaiQi+QpaWQ+aXdzP9LHVSUPmHdAaWhcvMztYSw3f8gQ==", "dependencies": { - "@puppeteer/browsers": "1.9.0", - "chromium-bidi": "0.5.1", + "@puppeteer/browsers": "1.9.1", + "chromium-bidi": "0.5.4", "cross-fetch": "4.0.0", "debug": "4.3.4", - "devtools-protocol": "0.0.1203626", - "ws": "8.14.2" + "devtools-protocol": "0.0.1232444", + "ws": "8.16.0" }, "engines": { "node": ">=16.13.2" } }, "node_modules/puppeteer-core/node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", "engines": { "node": ">=10.0.0" }, @@ -16545,14 +16494,14 @@ } }, "node_modules/puppeteer/node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dependencies": { + "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "parse-json": "^5.2.0" }, "engines": { "node": ">=14" @@ -17556,18 +17505,18 @@ } }, "node_modules/rollup-plugin-critical": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/rollup-plugin-critical/-/rollup-plugin-critical-1.0.12.tgz", - "integrity": "sha512-KVD2Ls1pFsjC66nqG30FwponLDEtB722v1+nEHe3BEJgpl9cGkdMkjsPxR6QX6qrRAA4B2qhV54Yn5OE2n9boQ==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/rollup-plugin-critical/-/rollup-plugin-critical-1.0.13.tgz", + "integrity": "sha512-WhFuFEy3PuuPFp/fGnNwAFyoMnr+KxY4bm0RZywlOdGb19WlT2iZrJYNemFq5D3XEH1Wpxg++boWOw4+WzSeRw==", "dev": true, "dependencies": { "critical": "^5.0.0" } }, "node_modules/rollup-plugin-visualizer": { - "version": "5.9.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.9.2.tgz", - "integrity": "sha512-waHktD5mlWrYFrhOLbti4YgQCn1uR24nYsNuXxg7LkPH8KdTXVWR9DNY1WU0QqokyMixVXJS4J04HNrVTMP01A==", + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", + "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", "dev": true, "dependencies": { "open": "^8.4.0", @@ -17582,7 +17531,7 @@ "node": ">=14" }, "peerDependencies": { - "rollup": "2.x || 3.x" + "rollup": "2.x || 3.x || 4.x" }, "peerDependenciesMeta": { "rollup": { @@ -17675,71 +17624,12 @@ "node": ">=12" } }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/run-applescript/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "engines": { - "node": ">=0.12.0" + "node": ">=0.12.0" } }, "node_modules/run-parallel": { @@ -18785,6 +18675,21 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/string.prototype.trim": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", @@ -18841,6 +18746,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -18941,54 +18859,46 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, "node_modules/stylelint": { - "version": "15.11.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.11.0.tgz", - "integrity": "sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.2.0.tgz", + "integrity": "sha512-gwqU5AkIb52wrAzzn+359S3NIJDMl02TXLUaV2tzA/L6jUdpTwNt+MCxHlc8+Hb2bUHlYVo92YeSIryF2gJthA==", "dev": true, "dependencies": { - "@csstools/css-parser-algorithms": "^2.3.1", - "@csstools/css-tokenizer": "^2.2.0", - "@csstools/media-query-list-parser": "^2.1.4", - "@csstools/selector-specificity": "^3.0.0", + "@csstools/css-parser-algorithms": "^2.5.0", + "@csstools/css-tokenizer": "^2.2.3", + "@csstools/media-query-list-parser": "^2.1.7", + "@csstools/selector-specificity": "^3.0.1", "balanced-match": "^2.0.0", "colord": "^2.9.3", - "cosmiconfig": "^8.2.0", + "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.1", "css-tree": "^2.3.1", "debug": "^4.3.4", - "fast-glob": "^3.3.1", + "fast-glob": "^3.3.2", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^7.0.0", + "file-entry-cache": "^8.0.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", - "ignore": "^5.2.4", - "import-lazy": "^4.0.0", + "ignore": "^5.3.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.29.0", "mathml-tag-names": "^2.1.3", - "meow": "^10.1.5", + "meow": "^13.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.28", + "postcss": "^8.4.33", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.13", + "postcss-safe-parser": "^7.0.0", + "postcss-selector-parser": "^6.0.15", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", + "strip-ansi": "^7.1.0", "supports-hyperlinks": "^3.0.0", "svg-tags": "^1.0.0", "table": "^6.8.1", @@ -18998,7 +18908,7 @@ "stylelint": "bin/stylelint.mjs" }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": ">=18.12.0" }, "funding": { "type": "opencollective", @@ -19022,15 +18932,15 @@ } }, "node_modules/stylelint-config-recommended": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", - "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.0.tgz", + "integrity": "sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==", "dev": true, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": ">=18.12.0" }, "peerDependencies": { - "stylelint": "^15.10.0" + "stylelint": "^16.0.0" } }, "node_modules/stylelint-config-recommended-vue": { @@ -19054,46 +18964,63 @@ "stylelint": ">=14.0.0" } }, + "node_modules/stylelint/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, - "node_modules/stylelint/node_modules/camelcase-keys": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", - "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", + "node_modules/stylelint/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "camelcase": "^6.3.0", - "map-obj": "^4.1.0", - "quick-lru": "^5.1.1", - "type-fest": "^1.2.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "balanced-match": "^1.0.0" } }, + "node_modules/stylelint/node_modules/brace-expansion/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, "node_modules/stylelint/node_modules/cosmiconfig": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", - "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "dependencies": { - "import-fresh": "^3.2.1", + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" + "parse-json": "^5.2.0" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/stylelint/node_modules/css-tree": { @@ -19109,40 +19036,67 @@ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/stylelint/node_modules/decamelize": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", - "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "node_modules/stylelint/node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "flat-cache": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/stylelint/node_modules/file-entry-cache": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-7.0.2.tgz", - "integrity": "sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==", + "node_modules/stylelint/node_modules/flat-cache": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.0.tgz", + "integrity": "sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==", "dev": true, "dependencies": { - "flat-cache": "^3.2.0" + "flatted": "^3.2.9", + "keyv": "^4.5.4", + "rimraf": "^5.0.5" }, "engines": { - "node": ">=12.0.0" + "node": ">=16" } }, - "node_modules/stylelint/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/stylelint/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/stylelint/node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/stylelint/node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" } }, "node_modules/stylelint/node_modules/mdn-data": { @@ -19152,101 +19106,83 @@ "dev": true }, "node_modules/stylelint/node_modules/meow": { - "version": "10.1.5", - "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", - "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-13.1.0.tgz", + "integrity": "sha512-o5R/R3Tzxq0PJ3v3qcQJtSvSE9nKOLSAaDuuoMzDVuGTwHdccMWcYomh9Xolng2tjT6O/Y83d+0coVGof6tqmA==", "dev": true, - "dependencies": { - "@types/minimist": "^1.2.2", - "camelcase-keys": "^7.0.0", - "decamelize": "^5.0.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.2", - "read-pkg-up": "^8.0.0", - "redent": "^4.0.0", - "trim-newlines": "^4.0.2", - "type-fest": "^1.2.2", - "yargs-parser": "^20.2.9" - }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/stylelint/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/stylelint/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/stylelint/node_modules/read-pkg": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", - "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", + "node_modules/stylelint/node_modules/postcss-safe-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.0.tgz", + "integrity": "sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==", "dev": true, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^3.0.2", - "parse-json": "^5.2.0", - "type-fest": "^1.0.1" - }, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "engines": { - "node": ">=12" + "node": ">=18.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/stylelint/node_modules/read-pkg-up": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", - "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", + "node_modules/stylelint/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "dependencies": { - "find-up": "^5.0.0", - "read-pkg": "^6.0.0", - "type-fest": "^1.0.1" - }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/stylelint/node_modules/redent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", - "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", + "node_modules/stylelint/node_modules/rimraf": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", + "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", "dev": true, "dependencies": { - "indent-string": "^5.0.0", - "strip-indent": "^4.0.0" + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" }, "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stylelint/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/stylelint/node_modules/signal-exit": { @@ -19261,43 +19197,19 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/stylelint/node_modules/strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", + "node_modules/stylelint/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "min-indent": "^1.0.1" - }, - "engines": { - "node": ">=12" + "ansi-regex": "^6.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stylelint/node_modules/trim-newlines": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", - "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", - "dev": true, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stylelint/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/stylelint/node_modules/write-file-atomic": { @@ -19565,13 +19477,13 @@ "dev": true }, "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", "dev": true, "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -19581,9 +19493,9 @@ } }, "node_modules/systemjs": { - "version": "6.14.2", - "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.14.2.tgz", - "integrity": "sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==", + "version": "6.14.3", + "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.14.3.tgz", + "integrity": "sha512-hQv45irdhXudAOr8r6SVSpJSGtogdGZUbJBRKCE5nsIS7tsxxvnIHqT4IOPWj+P+HcSzeWzHlGCGpmhPDIKe+w==", "dev": true }, "node_modules/tabbable": { @@ -19680,9 +19592,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", - "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", @@ -19740,6 +19652,22 @@ "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" } }, + "node_modules/tailwindcss/node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, "node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -19991,18 +19919,6 @@ "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", "dev": true }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/tmp": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", @@ -20176,9 +20092,9 @@ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { "@types/json5": "^0.0.29", @@ -20342,9 +20258,9 @@ "integrity": "sha512-ho6xe/y/uHIKVXsFtK+dJfRCD5KZqJCMYTCcXfuCwQHQbeQ83a7hVkxfRMTEIjZOSXw5SevOjnwJuZ5QgWEHiw==" }, "node_modules/typescript": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", - "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", "devOptional": true, "bin": { "tsc": "bin/tsc", @@ -20868,13 +20784,13 @@ } }, "node_modules/vite": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.2.tgz", - "integrity": "sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", "dev": true, "dependencies": { "esbuild": "^0.19.3", - "postcss": "^8.4.31", + "postcss": "^8.4.32", "rollup": "^4.2.0" }, "bin": { @@ -21134,15 +21050,15 @@ } }, "node_modules/vue": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.8.tgz", - "integrity": "sha512-5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w==", + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.15.tgz", + "integrity": "sha512-jC0GH4KkWLWJOEQjOpkqU1bQsBwf4R1rsFtw5GQJbjHVKWDzO6P0nWWBTmjp1xSemAioDFj1jdaK1qa3DnMQoQ==", "dependencies": { - "@vue/compiler-dom": "3.3.8", - "@vue/compiler-sfc": "3.3.8", - "@vue/runtime-dom": "3.3.8", - "@vue/server-renderer": "3.3.8", - "@vue/shared": "3.3.8" + "@vue/compiler-dom": "3.4.15", + "@vue/compiler-sfc": "3.4.15", + "@vue/runtime-dom": "3.4.15", + "@vue/server-renderer": "3.4.15", + "@vue/shared": "3.4.15" }, "peerDependencies": { "typescript": "*" @@ -21168,9 +21084,9 @@ "integrity": "sha512-zmPniVzBKv0ie/BEXBR6Isi08hYSd6lS18b8VduG5BzZ2tv6bO/rlwISg+IpGY2XsqAFTXFdTC28YR+UPocnAw==" }, "node_modules/vue-eslint-parser": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.3.2.tgz", - "integrity": "sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==", + "version": "9.4.2", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz", + "integrity": "sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==", "dev": true, "dependencies": { "debug": "^4.3.4", @@ -21373,6 +21289,57 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -21759,6 +21726,15 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } + }, + "node_modules/zod": { + "version": "3.22.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", + "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/package.json b/package.json index f5502eae..bba1e720 100644 --- a/package.json +++ b/package.json @@ -9,14 +9,14 @@ "url": "https://davidhellmann.com" }, "dependencies": { - "@alpinejs/persist": "^3.13.3", + "@alpinejs/persist": "^3.13.5", "@popperjs/core": "^2.11.8", "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/container-queries": "^0.1.1", "@tailwindcss/forms": "^0.5.7", - "@vueuse/core": "^10.6.1", - "alpinejs": "^3.13.3", - "axios": "^1.6.2", + "@vueuse/core": "^10.7.2", + "alpinejs": "^3.13.5", + "axios": "^1.6.7", "clipboard": "^2.0.11", "ferdi": "0.0.21", "focus-trap": "^7.5.4", @@ -24,59 +24,59 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "puppeteer": "^21.6.0", + "puppeteer": "^21.9.0", "swiper": "^11.0.5", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", "typeface-jetbrains-mono": "^2.0.1", "typeface-lato": "^1.1.13", "typeface-merriweather": "^1.1.13", - "vue": "^3.3.8", + "vue": "^3.4.15", "vue-axios": "^3.5.2", "vue-confetti": "^2.3.0" }, "devDependencies": { "@rollup/plugin-node-resolve": "^15.2.3", - "@types/alpinejs": "^3.13.5", + "@types/alpinejs": "^3.13.6", "@types/lodash-es": "^4.17.12", - "@typescript-eslint/eslint-plugin": "^6.12.0", - "@typescript-eslint/parser": "^6.12.0", - "@vitejs/plugin-legacy": "^5.2.0", - "@vitejs/plugin-vue": "^4.5.0", - "@vue/compiler-sfc": "^3.3.8", - "autoprefixer": "^10.4.16", - "cypress": "^13.6.0", + "@typescript-eslint/eslint-plugin": "^6.19.1", + "@typescript-eslint/parser": "^6.19.1", + "@vitejs/plugin-legacy": "^5.3.0", + "@vitejs/plugin-vue": "^5.0.3", + "@vue/compiler-sfc": "^3.4.15", + "autoprefixer": "^10.4.17", + "cypress": "^13.6.3", "cypress-audit": "^1.1.0", - "eslint": "^8.54.0", - "eslint-config-prettier": "^9.0.0", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-alias": "^1.1.2", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-prettier": "^5.0.1", - "eslint-plugin-vue": "^9.18.1", - "husky": "^8.0.3", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-vue": "^9.20.1", + "husky": "^9.0.6", "npm-check": "^6.0.1", - "postcss": "^8.4.31", - "postcss-import": "^15.1.0", - "postcss-nesting": "^12.0.1", - "prettier": "^3.1.0", - "prettier-plugin-tailwindcss": "^0.5.7", + "postcss": "^8.4.33", + "postcss-import": "^16.0.0", + "postcss-nesting": "^12.0.2", + "prettier": "^3.2.4", + "prettier-plugin-tailwindcss": "^0.5.11", "prettier-plugin-twig-melody": "^0.4.6", "rollup-plugin-copy": "^3.5.0", - "rollup-plugin-critical": "^1.0.12", - "rollup-plugin-visualizer": "^5.9.2", - "stylelint": "^15.11.0", - "stylelint-config-recommended": "^13.0.0", + "rollup-plugin-critical": "^1.0.13", + "rollup-plugin-visualizer": "^5.12.0", + "stylelint": "^16.2.0", + "stylelint-config-recommended": "^14.0.0", "stylelint-config-recommended-vue": "^1.5.0", - "tailwindcss": "^3.3.5", + "tailwindcss": "^3.4.1", "tailwindcss-debug-screens": "^2.2.1", - "typescript": "^5.3.2", - "vite": "^5.0.2", + "typescript": "^5.3.3", + "vite": "^5.0.12", "vite-plugin-compression": "^0.5.1", "vite-plugin-eslint": "^1.8.1", "vite-plugin-favicon2": "^1.1.5", "vite-plugin-manifest-sri": "^0.2.0", "vite-plugin-restart": "^0.4.0", - "vue-eslint-parser": "^9.3.2" + "vue-eslint-parser": "^9.4.2" }, "scripts": { "dev": "vite", @@ -94,5 +94,10 @@ "preinstall": "$npm_execpath --silent run checknpm", "checknpm": "echo \"$npm_execpath\" | grep -q \"npm-cli\\.js$\" || (echo '⚠️ Use npm not yarn! No Hipster Party here!! ⚠️ ' && echo && exit 1)", "prepare": "husky install" + }, + "exports": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" } } diff --git a/vite.config.mts b/vite.config.mts index 15f09114..f124a6ad 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -31,7 +31,7 @@ export default defineConfig(({ command }) => ({ sourcemap: true, }, plugins: [ - (critical as any).default({ + critical({ criticalUrl: 'https://stage.baukasten.io/', criticalBase: './web/dist/criticalcss/', criticalPages: [ From 284ae6dab35c4e875c53427b3d097fc6dc53bfeb Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Thu, 1 Feb 2024 22:56:23 +0100 Subject: [PATCH 08/45] =?UTF-8?q?=F0=9F=8E=A8=20chore(ckeditor):=20updates?= =?UTF-8?q?=20default=20styles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/ckeditor/default/styles.css | 37 +++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/web/ckeditor/default/styles.css b/web/ckeditor/default/styles.css index 9cd96f7e..010a4399 100644 --- a/web/ckeditor/default/styles.css +++ b/web/ckeditor/default/styles.css @@ -1,40 +1,51 @@ /* Headlines */ -.ck.ck-content h2, .ck.ck-content :is(h2,h3,h4,h5,h6).text-4xl { - font-size: 4rem; +.ck.ck-content h2, +.ck.ck-content :is(h2,h3,h4,h5,h6).text-4xl { + font-size: 2rem; text-transform: none; + line-height: 1.3; } -.ck.ck-content h3, .ck.ck-content :is(h2,h3,h4,h5,h6).text-3xl { - font-size: 3rem; +.ck.ck-content h3, +.ck.ck-content :is(h2,h3,h4,h5,h6).text-3xl { + font-size: 1.8rem; text-transform: none; + line-height: 1.3; } -.ck.ck-content h4, .ck.ck-content :is(h2,h3,h4,h5,h6).text-2xl { - font-size: 2rem; +.ck.ck-content h4, +.ck.ck-content :is(h2,h3,h4,h5,h6).text-2xl { + font-size: 1.6rem; text-transform: none; + line-height: 1.3; } -.ck.ck-content h5, .ck.ck-content :is(h2,h3,h4,h5,h6).text-xl { - font-size: 1rem; +.ck.ck-content h5, +.ck.ck-content :is(h2,h3,h4,h5,h6).text-xl { + font-size: 1.2rem; text-transform: none; + line-height: 1.5; } -.ck.ck-content h6, .ck.ck-content :is(h2,h3,h4,h5,h6).text-lg { +.ck.ck-content h6, +.ck.ck-content :is(h2,h3,h4,h5,h6).text-lg { font-size: 1rem; text-transform: none; + line-height: 1.5; } /* Paragraphs */ -.ck.ck-content p { - font-size: 1rem; +.ck.ck-content :is(p, ul, ol) { + font-size: 1.2rem; + line-height: 1.5; } .ck.ck-content p.text-sm { - font-size: 0.75rem; + font-size: 1rem; } .ck.ck-content p.text-lg { - font-size: 1.25rem; + font-size: 1.4rem; } /* Inline Text Styles */ From a712623d3f4f0be656e0a479d23e532022c88eb5 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 3 Feb 2024 00:16:55 +0100 Subject: [PATCH 09/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20C?= =?UTF-8?q?KEditor=20(3.7.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 4 +- composer.lock | 109 ++++++++++++++++++------------------ config/project/project.yaml | 2 +- 4 files changed, 59 insertions(+), 57 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 493d490f..740aec34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.10) - (plugin): Formie (2.1.3) +- (plugin): CKEditor (3.7.1) - (waypoints): Better waypoint target selection ### fixed diff --git a/composer.json b/composer.json index ecbc20a2..7c4282fd 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "require": { - "craftcms/ckeditor": "3.6.0", + "craftcms/ckeditor": "3.7.1", "craftcms/cms": "4.7.1", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", @@ -89,4 +89,4 @@ "canonical": false } ] -} \ No newline at end of file +} diff --git a/composer.lock b/composer.lock index 1989bf84..fe914959 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "874cedc05539248124a881bdf46d2a13", + "content-hash": "a9569391fee1945a24d795ad9aa9289b", "packages": [ { "name": "amphp/amp", @@ -1338,17 +1338,17 @@ }, { "name": "craftcms/ckeditor", - "version": "3.6.0", + "version": "3.7.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/69a76a6ec028a4ca93962f47e23bc3f3bb15417e", - "reference": "69a76a6ec028a4ca93962f47e23bc3f3bb15417e", + "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/5eef932ccd1fcce6507a1896cfce39a176785e21", + "reference": "5eef932ccd1fcce6507a1896cfce39a176785e21", "shasum": "" }, "require": { "craftcms/cms": "^4.5.0-beta.2", "craftcms/html-field": "^2.0.0-alpha.2", - "nystudio107/craft-code-editor": "^1.0.8", + "nystudio107/craft-code-editor": ">=1.0.8 <=1.0.13 || ^1.0.16", "php": "^8.0.2" }, "type": "craft-plugin", @@ -1386,7 +1386,7 @@ "docs": "https://github.com/craftcms/ckeditor/blob/master/README.md", "rss": "https://github.com/craftcms/ckeditor/commits/master.atom" }, - "time": "2023-09-13T15:54:45+00:00" + "time": "2024-02-02T06:23:03+00:00" }, { "name": "craftcms/cms", @@ -1842,11 +1842,11 @@ }, { "name": "doctrine/deprecations", - "version": "1.1.2", + "version": "1.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931", - "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { @@ -1866,7 +1866,7 @@ ], "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", "homepage": "https://www.doctrine-project.org/", - "time": "2023-09-27T20:04:15+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/lexer", @@ -4875,14 +4875,15 @@ }, { "name": "nystudio107/craft-code-editor", - "version": "1.0.16", + "version": "1.0.17", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/ea5d1866d891a09f1c2e5a482d47e555bdf34392", - "reference": "ea5d1866d891a09f1c2e5a482d47e555bdf34392", + "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/d2d9c8706fc1a6f40253fc78762101ce9b5ac386", + "reference": "d2d9c8706fc1a6f40253fc78762101ce9b5ac386", "shasum": "" }, "require": { + "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0-alpha.1", "phpdocumentor/reflection-docblock": "^5.0.0" }, "type": "yii2-extension", @@ -4916,7 +4917,7 @@ "markdown", "twig" ], - "time": "2023-12-08T14:39:29+00:00" + "time": "2024-01-30T03:18:54+00:00" }, { "name": "nystudio107/craft-code-field", @@ -7410,11 +7411,11 @@ }, { "name": "symfony/console", - "version": "v6.4.2", + "version": "v6.4.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0254811a143e6bc6c8deea08b589a7e68a37f625", - "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625", + "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", + "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", "shasum": "" }, "require": { @@ -7464,7 +7465,7 @@ "console", "terminal" ], - "time": "2023-12-10T16:15:48+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/deprecation-contracts", @@ -7512,11 +7513,11 @@ }, { "name": "symfony/event-dispatcher", - "version": "v7.0.2", + "version": "v7.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/098b62ae81fdd6cbf941f355059f617db28f4f9a", - "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", "shasum": "" }, "require": { @@ -7555,7 +7556,7 @@ ], "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", - "time": "2023-12-27T22:24:19+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -7652,11 +7653,11 @@ }, { "name": "symfony/filesystem", - "version": "v7.0.0", + "version": "v7.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7", - "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12", + "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12", "shasum": "" }, "require": { @@ -7688,7 +7689,7 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2023-07-27T06:33:22+00:00" + "time": "2024-01-23T15:02:46+00:00" }, { "name": "symfony/finder", @@ -7730,11 +7731,11 @@ }, { "name": "symfony/http-client", - "version": "v6.4.2", + "version": "v6.4.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/fc0944665bd932cf32a7b8a1d009466afc16528f", - "reference": "fc0944665bd932cf32a7b8a1d009466afc16528f", + "url": "https://api.github.com/repos/symfony/http-client/zipball/a9034bc119fab8238f76cf49c770f3135f3ead86", + "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86", "shasum": "" }, "require": { @@ -7781,7 +7782,7 @@ "keywords": [ "http" ], - "time": "2023-12-02T12:49:56+00:00" + "time": "2024-01-29T15:01:07+00:00" }, { "name": "symfony/http-client-contracts", @@ -7840,11 +7841,11 @@ }, { "name": "symfony/mailer", - "version": "v7.0.2", + "version": "v7.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/c51c8f411062ef8fec837c76b0dad15dd5a6ab16", - "reference": "c51c8f411062ef8fec837c76b0dad15dd5a6ab16", + "url": "https://api.github.com/repos/symfony/mailer/zipball/2f71c0f6d62d28784783fdc5477e19dd57065d78", + "reference": "2f71c0f6d62d28784783fdc5477e19dd57065d78", "shasum": "" }, "require": { @@ -7887,15 +7888,15 @@ ], "description": "Helps sending emails", "homepage": "https://symfony.com", - "time": "2023-12-19T11:23:03+00:00" + "time": "2024-01-29T15:41:16+00:00" }, { "name": "symfony/mime", - "version": "v7.0.0", + "version": "v7.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", - "reference": "0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", + "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", "shasum": "" }, "require": { @@ -7938,7 +7939,7 @@ "mime", "mime-type" ], - "time": "2023-10-19T14:20:43+00:00" + "time": "2024-01-30T08:34:29+00:00" }, { "name": "symfony/polyfill-ctype", @@ -8529,11 +8530,11 @@ }, { "name": "symfony/process", - "version": "v6.4.2", + "version": "v6.4.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/c4b1ef0bc80533d87a2e969806172f1c2a980241", - "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241", + "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3", + "reference": "31642b0818bfcff85930344ef93193f8c607e0a3", "shasum": "" }, "require": { @@ -8563,7 +8564,7 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "time": "2023-12-22T16:42:54+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/service-contracts", @@ -8626,11 +8627,11 @@ }, { "name": "symfony/string", - "version": "v7.0.2", + "version": "v7.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/cc78f14f91f5e53b42044d0620961c48028ff9f5", - "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5", + "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac", + "reference": "524aac4a280b90a4420d8d6a040718d0586505ac", "shasum": "" }, "require": { @@ -8678,15 +8679,15 @@ "utf-8", "utf8" ], - "time": "2023-12-10T16:54:46+00:00" + "time": "2024-01-29T15:41:16+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.29", + "version": "v5.4.35", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65", - "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ce4685b30e47d94dfc990c5566285ff99ddf012b", + "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b", "shasum": "" }, "require": { @@ -8736,7 +8737,7 @@ "debug", "dump" ], - "time": "2023-09-12T10:09:58+00:00" + "time": "2024-01-23T14:28:09+00:00" }, { "name": "symfony/var-exporter", @@ -8788,11 +8789,11 @@ }, { "name": "symfony/yaml", - "version": "v5.4.31", + "version": "v5.4.35", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/f387675d7f5fc4231f7554baa70681f222f73563", - "reference": "f387675d7f5fc4231f7554baa70681f222f73563", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e78db7f5c70a21f0417a31f414c4a95fe76c07e4", + "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4", "shasum": "" }, "require": { @@ -8833,7 +8834,7 @@ ], "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", - "time": "2023-11-03T14:41:28+00:00" + "time": "2024-01-23T13:51:25+00:00" }, { "name": "theiconic/name-parser", diff --git a/config/project/project.yaml b/config/project/project.yaml index 26cbcd13..99334fa9 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1705787841 +dateModified: 1706915737 elementSources: craft\elements\Asset: - From 8d73ddda1be9bfdd34187f3467e5e3a2df4e1bae Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 3 Feb 2024 00:19:18 +0100 Subject: [PATCH 10/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20H?= =?UTF-8?q?yper=20(1.1.20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 4 ++-- composer.lock | 20 ++++++++++---------- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 740aec34..9d70f854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.10) - (plugin): Formie (2.1.3) +- (plugin): Hyper (1.1.20) - (plugin): CKEditor (3.7.1) - (waypoints): Better waypoint target selection diff --git a/composer.json b/composer.json index 7c4282fd..feb15df1 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "studioespresso/craft-dumper": "3.0.1", "vaersaagod/matrixmate": "2.1.4", "verbb/formie": "2.1.3", - "verbb/hyper": "1.1.19", + "verbb/hyper": "1.1.20", "verbb/image-resizer": "3.0.10", "verbb/navigation": "2.0.24", "verbb/super-table": "3.0.12", @@ -89,4 +89,4 @@ "canonical": false } ] -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index fe914959..0703e9d8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a9569391fee1945a24d795ad9aa9289b", + "content-hash": "141daeb645c554a9164858684d91edc6", "packages": [ { "name": "amphp/amp", @@ -5067,11 +5067,11 @@ }, { "name": "nystudio107/craft-plugin-vite", - "version": "4.0.8", + "version": "4.0.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/eb05b1cc7dc9eeecbdfe8cd3cd3d119e83c62619", - "reference": "eb05b1cc7dc9eeecbdfe8cd3cd3d119e83c62619", + "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/b6f727e6e54e2c312e02595beec0f8318399fc97", + "reference": "b6f727e6e54e2c312e02595beec0f8318399fc97", "shasum": "" }, "require": { @@ -5099,10 +5099,10 @@ "vite" ], "support": { - "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v1/README.md", + "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v4/README.md", "issues": "https://github.com/nystudio107/craft-plugin-vite/issues" }, - "time": "2023-01-25T21:09:10+00:00" + "time": "2024-01-30T18:20:12+00:00" }, { "name": "nystudio107/craft-scripts", @@ -9233,11 +9233,11 @@ }, { "name": "verbb/hyper", - "version": "1.1.19", + "version": "1.1.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", - "reference": "8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", + "url": "https://api.github.com/repos/verbb/hyper/zipball/b93325b20a3a276e679c1bcf1af82198e15775ef", + "reference": "b93325b20a3a276e679c1bcf1af82198e15775ef", "shasum": "" }, "require": { @@ -9283,7 +9283,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2023-12-19T23:34:50+00:00" + "time": "2024-01-30T12:37:21+00:00" }, { "name": "verbb/image-resizer", From 258739e4b47f18455a330c9ffe419eb8fa1c136c Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 3 Feb 2024 00:19:49 +0100 Subject: [PATCH 11/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20I?= =?UTF-8?q?mage=20Resizer=20(3.0.11)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d70f854..b3ac3ce0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ ### updated - (cms): CraftCMS (4.7.1) - (plugin): SEOmatic (4.0.38) -- (plugin): Image Resizer (3.0.10) +- (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) - (plugin): Hyper (1.1.20) - (plugin): CKEditor (3.7.1) diff --git a/composer.json b/composer.json index feb15df1..6b8d2471 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "vaersaagod/matrixmate": "2.1.4", "verbb/formie": "2.1.3", "verbb/hyper": "1.1.20", - "verbb/image-resizer": "3.0.10", + "verbb/image-resizer": "3.0.11", "verbb/navigation": "2.0.24", "verbb/super-table": "3.0.12", "vlucas/phpdotenv": "^5.4", diff --git a/composer.lock b/composer.lock index 0703e9d8..52111e00 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "141daeb645c554a9164858684d91edc6", + "content-hash": "836d4ade1df08da2ec2fb0c3e63c674b", "packages": [ { "name": "amphp/amp", @@ -9287,11 +9287,11 @@ }, { "name": "verbb/image-resizer", - "version": "3.0.10", + "version": "3.0.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/image-resizer/zipball/250ae563a4e104631a00b951a131be34bf447fa2", - "reference": "250ae563a4e104631a00b951a131be34bf447fa2", + "url": "https://api.github.com/repos/verbb/image-resizer/zipball/f1d4a22afdbc22af65aa851230b4eaae72694bc9", + "reference": "f1d4a22afdbc22af65aa851230b4eaae72694bc9", "shasum": "" }, "require": { @@ -9338,7 +9338,7 @@ "docs": "https://github.com/verbb/image-resizer", "rss": "https://github.com/verbb/image-resizer/commits/v2.atom" }, - "time": "2024-01-23T12:31:37+00:00" + "time": "2024-01-30T12:35:34+00:00" }, { "name": "verbb/navigation", From a77dcd9995cd4738337833a47d798281e4611503 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 3 Feb 2024 00:20:31 +0100 Subject: [PATCH 12/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20N?= =?UTF-8?q?avigation=20(2.0.25)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3ac3ce0..8be465a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) +- (plugin): Navigation (2.0.25) - (plugin): Hyper (1.1.20) - (plugin): CKEditor (3.7.1) - (waypoints): Better waypoint target selection diff --git a/composer.json b/composer.json index 6b8d2471..196af779 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "verbb/formie": "2.1.3", "verbb/hyper": "1.1.20", "verbb/image-resizer": "3.0.11", - "verbb/navigation": "2.0.24", + "verbb/navigation": "2.0.25", "verbb/super-table": "3.0.12", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index 52111e00..39891d45 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "836d4ade1df08da2ec2fb0c3e63c674b", + "content-hash": "a6dbbe64052a5e7267b56454b37c2370", "packages": [ { "name": "amphp/amp", @@ -9342,11 +9342,11 @@ }, { "name": "verbb/navigation", - "version": "2.0.24", + "version": "2.0.25", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/navigation/zipball/d7c666ae8b9fb95bc0d4ea523c584af4c7a485cb", - "reference": "d7c666ae8b9fb95bc0d4ea523c584af4c7a485cb", + "url": "https://api.github.com/repos/verbb/navigation/zipball/92455c9f92b0e23b62b241721d4553cab259f532", + "reference": "92455c9f92b0e23b62b241721d4553cab259f532", "shasum": "" }, "require": { @@ -9391,7 +9391,7 @@ "docs": "https://github.com/verbb/navigation", "rss": "https://github.com/verbb/navigation/commits/v2.atom" }, - "time": "2024-01-06T01:15:44+00:00" + "time": "2024-01-30T12:34:03+00:00" }, { "name": "verbb/super-table", From 8f50ebe2b98e99cc831281f07fe63978cf92323b Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 3 Feb 2024 00:22:23 +0100 Subject: [PATCH 13/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20V?= =?UTF-8?q?ite=20(4.0.8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + composer.json | 2 +- composer.lock | 13 +++++++------ 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8be465a1..4d5cb21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - (plugin): Formie (2.1.3) - (plugin): Navigation (2.0.25) - (plugin): Hyper (1.1.20) +- (plugin): Vite (4.0.8) - (plugin): CKEditor (3.7.1) - (waypoints): Better waypoint target selection diff --git a/composer.json b/composer.json index 196af779..f27571d0 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ "nystudio107/craft-minify": "^4.0.0-beta.2", "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.38", - "nystudio107/craft-vite": "4.0.7", + "nystudio107/craft-vite": "4.0.8", "putyourlightson/craft-blitz": "4.10.3", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sherlock": "4.4.1", diff --git a/composer.lock b/composer.lock index 39891d45..1673bb49 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a6dbbe64052a5e7267b56454b37c2370", + "content-hash": "b4c5669facac860f0be7a88dba414568", "packages": [ { "name": "amphp/amp", @@ -5211,19 +5211,20 @@ }, { "name": "nystudio107/craft-vite", - "version": "4.0.7", + "version": "4.0.8", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/c5d4a719151678ec2e629b3b6931257733645e1d", - "reference": "c5d4a719151678ec2e629b3b6931257733645e1d", + "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/f6523874d44bac8e35036598cdc6dc35b621f2ca", + "reference": "f6523874d44bac8e35036598cdc6dc35b621f2ca", "shasum": "" }, "require": { "craftcms/cms": "^4.0.0", - "nystudio107/craft-plugin-vite": "^4.0.8" + "nystudio107/craft-plugin-vite": "^4.0.9" }, "type": "craft-plugin", "extra": { + "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-vite/v4/CHANGELOG.md", "class": "nystudio107\\vite\\Vite", "handle": "vite", "name": "Vite" @@ -5255,7 +5256,7 @@ "issues": "https://nystudio107.com/plugins/vite/support", "source": "https://github.com/nystudio107/craft-vite" }, - "time": "2023-12-08T20:22:47+00:00" + "time": "2024-01-30T18:27:14+00:00" }, { "name": "oscarotero/html-parser", From a041cfed9b59ce6afeb549c258c4d38c053d399a Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 9 Feb 2024 09:11:59 +0100 Subject: [PATCH 14/45] =?UTF-8?q?=F0=9F=8E=A8=20chore(waypoints):=20add=20?= =?UTF-8?q?dom=20change=20watcher?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/js/scripts/waypointObserver.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/js/scripts/waypointObserver.ts b/src/js/scripts/waypointObserver.ts index c800c618..9ac4e141 100644 --- a/src/js/scripts/waypointObserver.ts +++ b/src/js/scripts/waypointObserver.ts @@ -21,10 +21,16 @@ interface ICompWaypointObserver extends IComponent { }; startObserving(el: NodeListOf): void; + setSettings(el: Element): void; + findWaypointTargets(el: Element): Array; + getWaypointTargets(el: Element): Array; + handleAnimateClasses(el: Array, settings: Settings): void; + + watchDomChanges(): void; } const getAttributeAsNumber = ( @@ -153,8 +159,30 @@ const waypointObserver: ICompWaypointObserver = { }); }, + watchDomChanges() { + const targetNode = document.body; + const config = { + childList: true, + attributes: true, + subtree: true, + }; + + const callback = (mutationList: MutationRecord[]) => { + for (const mutation of mutationList) { + if (mutation.type === 'childList') { + const waypointEls = document.querySelectorAll('[waypoint]'); + this.startObserving(waypointEls as NodeListOf); + } + } + }; + + const observer = new MutationObserver(callback); + observer.observe(targetNode, config); + }, + init(waypointEls: NodeListOf) { this.startObserving(waypointEls); + this.watchDomChanges(); }, }; From 4212fe3da047778f920a42b329f9870858b35e01 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 9 Feb 2024 10:54:33 +0100 Subject: [PATCH 15/45] =?UTF-8?q?=F0=9F=8E=A8=20chore:=20update=20waypoint?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/css/components/transitions.css | 39 +++++++++++++------------ src/js/scripts/waypointObserver.ts | 46 +++++++++++++++--------------- 2 files changed, 43 insertions(+), 42 deletions(-) diff --git a/src/css/components/transitions.css b/src/css/components/transitions.css index 6a0f2a4a..fef75bdd 100644 --- a/src/css/components/transitions.css +++ b/src/css/components/transitions.css @@ -1,45 +1,46 @@ @layer components { - [waypoint-target] { - @apply transition duration-200 transform-gpu; + [data-waypoint-target] { + @apply transition duration-300 ease-out; } - [waypoint-target].is-zoomInUp { - @apply opacity-0 translate-y-32 scale-75; + [data-waypoint-target].is-fadeInUp { + @apply opacity-0 transform-gpu translate-y-8; } - [waypoint-target].is-zoomInUp.is-animated { - @apply opacity-100 translate-y-0 scale-100 ease-out-back; + [data-waypoint-target][data-waypoint-animated].is-fadeInUp { + @apply opacity-100 translate-y-0; } - [waypoint-target].is-fadeInUp { - @apply opacity-0 translate-y-12 ease-out; + [data-waypoint-target].is-zoomInUp { + @apply opacity-0 transform-gpu translate-y-12 scale-75; } - [waypoint-target].is-fadeInUp.is-animated { - @apply opacity-100 translate-y-0; + [data-waypoint-target][data-waypoint-animated].is-zoomInUp { + @apply opacity-100 translate-y-0 scale-100; + transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275); } - [waypoint-target].is-fadeInDown { - @apply opacity-0 -translate-y-12 ease-out; + [data-waypoint-target].is-fadeInDown { + @apply opacity-0 transform-gpu -translate-y-8; } - [waypoint-target].is-fadeInDown.is-animated { + [data-waypoint-target][data-waypoint-animated].is-fadeInDown { @apply opacity-100 translate-y-0; } - [waypoint-target].is-fadeInLeft { - @apply opacity-0 translate-x-12 ease-out; + [data-waypoint-target].is-fadeInLeft { + @apply opacity-0 transform-gpu translate-x-8; } - [waypoint-target].is-fadeInLeft.is-animated { + [data-waypoint-target][data-waypoint-animated].is-fadeInLeft { @apply opacity-100 translate-x-0; } - [waypoint-target].is-fadeInRight { - @apply opacity-0 -translate-x-12 ease-out; + [data-waypoint-target].is-fadeInRight { + @apply opacity-0 transform-gpu -translate-x-8; } - [waypoint-target].is-fadeInRight.is-animated { + [data-waypoint-target][data-waypoint-animated].is-fadeInRight { @apply opacity-100 translate-x-0; } } diff --git a/src/js/scripts/waypointObserver.ts b/src/js/scripts/waypointObserver.ts index 9ac4e141..6396ea89 100644 --- a/src/js/scripts/waypointObserver.ts +++ b/src/js/scripts/waypointObserver.ts @@ -28,9 +28,11 @@ interface ICompWaypointObserver extends IComponent { getWaypointTargets(el: Element): Array; - handleAnimateClasses(el: Array, settings: Settings): void; + handleAnimateAttributes(el: Array, settings: Settings): void; watchDomChanges(): void; + + init(el: HTMLElement | NodeListOf): void; } const getAttributeAsNumber = ( @@ -44,14 +46,14 @@ const getAttributeAsNumber = ( const animateElement = (element: HTMLElement, delay: number): void => { setTimeout(() => { - element.classList.add('is-animated'); + element.setAttribute('data-waypoint-animated', 'true'); }, delay); }; const waypointObserver: ICompWaypointObserver = { name: 'waypointObserver', selectors: { - waypointTarget: '[waypoint-target]:not([waypoint])', + waypointTarget: '[data-waypoint-target]:not([data-waypoint])', }, settings: { delay: 50, @@ -63,10 +65,6 @@ const waypointObserver: ICompWaypointObserver = { threshold: [0], rootMargin: '0px 0px -10% 0px', }, - classes: { - isInViewport: 'is-inViewport', - isAnimated: 'is-animated', - }, startObserving(waypoints) { const observer = new IntersectionObserver((entries) => { @@ -81,19 +79,17 @@ const waypointObserver: ICompWaypointObserver = { } // Add in-view class for element - if (!this.classes) return; - entry.target.classList?.add(this.classes.isInViewport); + entry.target.setAttribute('data-waypoint-in-viewport', 'true'); // Animate Targets if (!targets) return; - this.handleAnimateClasses(targets, this.settings); + this.handleAnimateAttributes(targets, this.settings); } else { // Add in-view class for element - if (!this.classes) return; - entry.target.classList?.remove(this.classes.isInViewport); + entry.target.removeAttribute('data-waypoint-in-viewport'); targets?.forEach((target) => { - if (target.classList?.contains('is-animated')) { - target.classList?.remove('is-animated'); + if (target.hasAttribute('data-waypoint-animated')) { + target.removeAttribute('data-waypoint-animated'); } }); } @@ -106,17 +102,21 @@ const waypointObserver: ICompWaypointObserver = { }, setSettings(waypoint) { - this.settings.delay = getAttributeAsNumber(waypoint, 'waypoint-delay', this.settings.delay); + this.settings.delay = getAttributeAsNumber( + waypoint, + 'data-waypoint-delay', + this.settings.delay, + ); this.settings.staggeringDelay = getAttributeAsNumber( waypoint, - 'waypoint-staggering-delay', + 'data-waypoint-staggering-delay', this.settings.staggeringDelay, ); - this.settings.endless = waypoint.getAttribute('waypoint-endless') === 'true'; + this.settings.endless = waypoint.getAttribute('data-waypoint-endless') === 'true'; - this.settings.includeHolder = waypoint.getAttribute('waypoint-include-holder') === 'true'; + this.settings.includeHolder = waypoint.getAttribute('data-waypoint-include-holder') === 'true'; }, findWaypointTargets(holder: HTMLElement): Array { @@ -124,14 +124,14 @@ const waypointObserver: ICompWaypointObserver = { const allTargets = holder.querySelectorAll(this.selectors.waypointTarget); return Array.from(allTargets).filter((target) => { - return target.closest('[waypoint]') === holder; + return target.closest('[data-waypoint]') === holder; }) as Array; }, getWaypointTargets(holder: HTMLElement): Array { if (!this.selectors) return []; let targets = [...this.findWaypointTargets(holder)]; - const holderIsTarget = holder.hasAttribute('waypoint-target'); + const holderIsTarget = holder.hasAttribute('data-waypoint-target'); if (holderIsTarget && !this.settings.includeHolder) { // Animate the waypoint itself if there is a waypoint-target attribute targets = [holder]; @@ -145,7 +145,7 @@ const waypointObserver: ICompWaypointObserver = { return targets; }, - handleAnimateClasses(targets: Array, settings: Settings): void { + handleAnimateAttributes(targets: Array, settings: Settings): void { targets.forEach((target, index) => { let delay = settings.delay + settings.staggeringDelay * index; @@ -153,7 +153,7 @@ const waypointObserver: ICompWaypointObserver = { delay = settings.delay; } - if (!target.classList.contains('is-animated')) { + if (!target.hasAttribute('data-waypoint-animated')) { animateElement(target, delay); } }); @@ -170,7 +170,7 @@ const waypointObserver: ICompWaypointObserver = { const callback = (mutationList: MutationRecord[]) => { for (const mutation of mutationList) { if (mutation.type === 'childList') { - const waypointEls = document.querySelectorAll('[waypoint]'); + const waypointEls = document.querySelectorAll('[data-waypoint]'); this.startObserving(waypointEls as NodeListOf); } } From 11b81bac05090a71d55472e3bedcebb1f6e2b7de Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 6 Mar 2024 20:18:43 +0100 Subject: [PATCH 16/45] =?UTF-8?q?=E2=9E=96=20remove(plugin):=20formie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 + composer.json | 3 +- composer.lock | 994 +----------------- ...-7e8fd607-0b56-4196-9e02-76ebba9ad7bd.yaml | 6 - ...-359d175b-2fe0-421b-959a-16ca87c71044.yaml | 209 ---- config/project/project.yaml | 133 +-- 6 files changed, 15 insertions(+), 1333 deletions(-) delete mode 100644 config/project/formie/statuses/new--7e8fd607-0b56-4196-9e02-76ebba9ad7bd.yaml delete mode 100644 config/project/formie/stencils/contact--359d175b-2fe0-421b-959a-16ca87c71044.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5cb21e..eaeec36f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### added - +### removed +- formie + ### updated - (cms): CraftCMS (4.7.1) - (plugin): SEOmatic (4.0.38) diff --git a/composer.json b/composer.json index f27571d0..541f6616 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,6 @@ "spatie/browsershot": "^3.59", "studioespresso/craft-dumper": "3.0.1", "vaersaagod/matrixmate": "2.1.4", - "verbb/formie": "2.1.3", "verbb/hyper": "1.1.20", "verbb/image-resizer": "3.0.11", "verbb/navigation": "2.0.25", @@ -89,4 +88,4 @@ "canonical": false } ] -} \ No newline at end of file +} diff --git a/composer.lock b/composer.lock index 1673bb49..5a3bdb66 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b4c5669facac860f0be7a88dba414568", + "content-hash": "9859ddd1107d78e253716d90757350a8", "packages": [ { "name": "amphp/amp", @@ -1972,51 +1972,6 @@ }, "time": "2023-08-04T13:40:22+00:00" }, - { - "name": "dompdf/dompdf", - "version": "v2.0.4", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "masterminds/html5": "^2.0", - "phenx/php-font-lib": ">=0.5.4 <1.0.0", - "phenx/php-svg-lib": ">=0.3.3 <1.0.0", - "php": "^7.1 || ^8.0" - }, - "suggest": { - "ext-gd": "Needed to process images", - "ext-gmagick": "Improves image processing performance", - "ext-imagick": "Improves image processing performance", - "ext-zlib": "Needed for pdf stream compression" - }, - "type": "library", - "autoload": { - "psr-4": { - "Dompdf\\": "src/" - }, - "classmap": [ - "lib/" - ] - }, - "license": [ - "LGPL-2.1" - ], - "authors": [ - { - "name": "The Dompdf Community", - "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" - } - ], - "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", - "homepage": "https://github.com/dompdf/dompdf", - "time": "2023-12-12T20:19:39+00:00" - }, { "name": "doublesecretagency/craft-cpcss", "version": "2.6.0", @@ -2279,52 +2234,6 @@ ], "time": "2023-11-17T15:01:25+00:00" }, - { - "name": "fakerphp/faker", - "version": "v1.23.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", - "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "psr/container": "^1.0 || ^2.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "conflict": { - "fzaninotto/faker": "*" - }, - "suggest": { - "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", - "ext-curl": "Required by Faker\\Provider\\Image to download images.", - "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", - "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", - "ext-mbstring": "Required for multibyte Unicode string functionality." - }, - "type": "library", - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "time": "2024-01-02T13:46:09+00:00" - }, { "name": "firebase/php-jwt", "version": "v6.10.0", @@ -2370,90 +2279,6 @@ ], "time": "2023-12-01T16:26:39+00:00" }, - { - "name": "giggsey/libphonenumber-for-php", - "version": "8.13.29", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4", - "reference": "b8fa0daf0c27bb6fdb5940e0288f203be7e5cfd4", - "shasum": "" - }, - "require": { - "giggsey/locale": "^1.7|^2.0", - "php": ">=5.3.2", - "symfony/polyfill-mbstring": "^1.17" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } - }, - "autoload": { - "psr-4": { - "libphonenumber\\": "src/" - }, - "exclude-from-classmap": [ - "/src/data/", - "/src/carrier/data/", - "/src/geocoding/data/", - "/src/timezone/data/" - ] - }, - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Joshua Gigg", - "email": "giggsey@gmail.com", - "homepage": "https://giggsey.com/" - } - ], - "description": "PHP Port of Google's libphonenumber", - "homepage": "https://github.com/giggsey/libphonenumber-for-php", - "keywords": [ - "geocoding", - "geolocation", - "libphonenumber", - "mobile", - "phonenumber", - "validation" - ], - "time": "2024-01-26T08:49:18+00:00" - }, - { - "name": "giggsey/locale", - "version": "2.5", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239", - "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Giggsey\\Locale\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Joshua Gigg", - "email": "giggsey@gmail.com", - "homepage": "https://giggsey.com/" - } - ], - "description": "Locale functions required by libphonenumber-for-php", - "time": "2023-11-01T17:19:48+00:00" - }, { "name": "google/auth", "version": "v1.34.0", @@ -2915,52 +2740,6 @@ ], "time": "2023-12-03T20:35:24+00:00" }, - { - "name": "guzzlehttp/oauth-subscriber", - "version": "0.6.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/oauth-subscriber/zipball/8d6cab29f8397e5712d00a383eeead36108a3c1f", - "reference": "8d6cab29f8397e5712d00a383eeead36108a3c1f", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.5|^7.2", - "guzzlehttp/psr7": "^1.7|^2.0", - "php": ">=5.5.0" - }, - "suggest": { - "ext-openssl": "Required to sign using RSA-SHA1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.6-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Subscriber\\Oauth\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle OAuth 1.0 subscriber", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "Guzzle", - "oauth" - ], - "time": "2021-07-13T12:01:32+00:00" - }, { "name": "guzzlehttp/promises", "version": "2.0.2", @@ -3103,34 +2882,6 @@ ], "time": "2023-12-03T20:05:35+00:00" }, - { - "name": "html2text/html2text", - "version": "4.3.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mtibben/html2text/zipball/61ad68e934066a6f8df29a3d23a6460536d0855c", - "reference": "61ad68e934066a6f8df29a3d23a6460536d0855c", - "shasum": "" - }, - "suggest": { - "ext-mbstring": "For best performance", - "symfony/polyfill-mbstring": "If you can't install ext-mbstring" - }, - "type": "library", - "autoload": { - "psr-4": { - "Html2Text\\": [ - "src/", - "test/" - ] - } - }, - "license": [ - "GPL-2.0-or-later" - ], - "description": "Converts HTML to formatted plain text", - "time": "2020-04-16T23:44:31+00:00" - }, { "name": "illuminate/collections", "version": "v9.52.16", @@ -3784,59 +3535,6 @@ }, "time": "2023-07-08T06:26:07+00:00" }, - { - "name": "league/html-to-markdown", - "version": "5.1.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd", - "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-xml": "*", - "php": "^7.2.5 || ^8.0" - }, - "bin": [ - "bin/html-to-markdown" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.2-dev" - } - }, - "autoload": { - "psr-4": { - "League\\HTMLToMarkdown\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com", - "role": "Lead Developer" - }, - { - "name": "Nick Cernis", - "email": "nick@cern.is", - "homepage": "http://modernnerd.net", - "role": "Original Author" - } - ], - "description": "An HTML-to-markdown conversion helper for PHP", - "homepage": "https://github.com/thephpleague/html-to-markdown", - "keywords": [ - "html", - "markdown" - ], - "time": "2023-07-12T21:21:09+00:00" - }, { "name": "league/mime-type-detection", "version": "1.14.0", @@ -3868,159 +3566,6 @@ "description": "Mime-type detection for Flysystem", "time": "2023-10-17T14:13:20+00:00" }, - { - "name": "league/oauth1-client", - "version": "v1.10.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167", - "reference": "d6365b901b5c287dd41f143033315e2f777e1167", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-openssl": "*", - "guzzlehttp/guzzle": "^6.0|^7.0", - "guzzlehttp/psr7": "^1.7|^2.0", - "php": ">=7.1||>=8.0" - }, - "suggest": { - "ext-simplexml": "For decoding XML-based responses." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev", - "dev-develop": "2.0-dev" - } - }, - "autoload": { - "psr-4": { - "League\\OAuth1\\Client\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ben Corlett", - "email": "bencorlett@me.com", - "homepage": "http://www.webcomm.com.au", - "role": "Developer" - } - ], - "description": "OAuth 1.0 Client Library", - "keywords": [ - "Authentication", - "SSO", - "authorization", - "bitbucket", - "identity", - "idp", - "oauth", - "oauth1", - "single sign on", - "trello", - "tumblr", - "twitter" - ], - "time": "2022-04-15T14:02:14+00:00" - }, - { - "name": "league/oauth2-client", - "version": "2.7.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8", - "reference": "160d6274b03562ebeb55ed18399281d8118b76c8", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.0 || ^7.0", - "paragonie/random_compat": "^1 || ^2 || ^9.99", - "php": "^5.6 || ^7.0 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "League\\OAuth2\\Client\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alex Bilbie", - "email": "hello@alexbilbie.com", - "homepage": "http://www.alexbilbie.com", - "role": "Developer" - }, - { - "name": "Woody Gilk", - "homepage": "https://github.com/shadowhand", - "role": "Contributor" - } - ], - "description": "OAuth 2.0 Client Library", - "keywords": [ - "Authentication", - "SSO", - "authorization", - "identity", - "idp", - "oauth", - "oauth2", - "single sign on" - ], - "time": "2023-04-16T18:19:15+00:00" - }, - { - "name": "league/oauth2-google", - "version": "4.0.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-google/zipball/1b01ba18ba31b29e88771e3e0979e5c91d4afe76", - "reference": "1b01ba18ba31b29e88771e3e0979e5c91d4afe76", - "shasum": "" - }, - "require": { - "league/oauth2-client": "^2.0", - "php": "^7.3 || ^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\OAuth2\\Client\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Woody Gilk", - "email": "hello@shadowhand.com", - "homepage": "https://shadowhand.com" - } - ], - "description": "Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client", - "keywords": [ - "Authentication", - "authorization", - "client", - "google", - "oauth", - "oauth2" - ], - "time": "2023-03-17T15:20:52+00:00" - }, { "name": "league/uri", "version": "7.4.0", @@ -4297,60 +3842,6 @@ "homepage": "http://leafo.net/lessphp/", "time": "2021-03-10T17:56:57+00:00" }, - { - "name": "masterminds/html5", - "version": "2.8.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, - "autoload": { - "psr-4": { - "Masterminds\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Matt Butcher", - "email": "technosophos@gmail.com" - }, - { - "name": "Matt Farina", - "email": "matt@mattfarina.com" - }, - { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" - } - ], - "description": "An HTML5 parser and serializer.", - "homepage": "http://masterminds.github.io/html5-php", - "keywords": [ - "HTML5", - "dom", - "html", - "parser", - "querypath", - "serializer", - "xml" - ], - "time": "2023-05-10T11:58:31+00:00" - }, { "name": "mikehaertl/php-shellcommand", "version": "1.7.0", @@ -5331,70 +4822,6 @@ ], "time": "2020-10-15T08:29:30+00:00" }, - { - "name": "phenx/php-font-lib", - "version": "0.5.5", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/671df0f3516252011aa94f9e8e3b3b66199339f8", - "reference": "671df0f3516252011aa94f9e8e3b3b66199339f8", - "shasum": "" - }, - "require": { - "ext-mbstring": "*" - }, - "type": "library", - "autoload": { - "psr-4": { - "FontLib\\": "src/FontLib" - } - }, - "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "Fabien Ménager", - "email": "fabien.menager@gmail.com" - } - ], - "description": "A library to read, parse, export and make subsets of different types of font files.", - "homepage": "https://github.com/PhenX/php-font-lib", - "time": "2024-01-07T18:13:29+00:00" - }, - { - "name": "phenx/php-svg-lib", - "version": "0.5.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/8a8a1ebcf6aea861ef30197999f096f7bd4b4456", - "reference": "8a8a1ebcf6aea861ef30197999f096f7bd4b4456", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0", - "sabberworm/php-css-parser": "^8.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Svg\\": "src/Svg" - } - }, - "license": [ - "LGPL-3.0" - ], - "authors": [ - { - "name": "Fabien Ménager", - "email": "fabien.menager@gmail.com" - } - ], - "description": "A library to read, parse and export to PDF SVG files.", - "homepage": "https://github.com/PhenX/php-svg-lib", - "time": "2023-12-11T20:56:08+00:00" - }, { "name": "php-science/textrank", "version": "1.2.3", @@ -6544,51 +5971,12 @@ "shasum": "" }, "require": { - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Rize\\": "src/Rize" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marut K", - "homepage": "http://twitter.com/rezigned" - } - ], - "description": "PHP URI Template (RFC 6570) supports both expansion & extraction", - "keywords": [ - "RFC 6570", - "template", - "uri" - ], - "time": "2022-10-12T17:22:51+00:00" - }, - { - "name": "sabberworm/php-css-parser", - "version": "8.4.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30", - "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30", - "shasum": "" - }, - "require": { - "ext-iconv": "*", - "php": ">=5.6.20" - }, - "suggest": { - "ext-mbstring": "for parsing UTF-8 CSS" + "php": ">=5.3.0" }, "type": "library", "autoload": { "psr-4": { - "Sabberworm\\CSS\\": "src/" + "Rize\\": "src/Rize" } }, "license": [ @@ -6596,17 +5984,17 @@ ], "authors": [ { - "name": "Raphael Schweikert" + "name": "Marut K", + "homepage": "http://twitter.com/rezigned" } ], - "description": "Parser for CSS Files written in PHP", - "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "description": "PHP URI Template (RFC 6570) supports both expansion & extraction", "keywords": [ - "css", - "parser", - "stylesheet" + "RFC 6570", + "template", + "uri" ], - "time": "2021-12-11T13:40:54+00:00" + "time": "2022-10-12T17:22:51+00:00" }, { "name": "samdark/yii2-psr-log-target", @@ -7157,50 +6545,6 @@ ], "time": "2017-06-19T16:48:17+00:00" }, - { - "name": "stripe/stripe-php", - "version": "v10.21.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/b4ab319731958077227fad1874a3671458c5d593", - "reference": "b4ab319731958077227fad1874a3671458c5d593", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "ext-json": "*", - "ext-mbstring": "*", - "php": ">=5.6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } - }, - "autoload": { - "psr-4": { - "Stripe\\": "lib/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Stripe and contributors", - "homepage": "https://github.com/stripe/stripe-php/contributors" - } - ], - "description": "Stripe PHP Library", - "homepage": "https://stripe.com/", - "keywords": [ - "api", - "payment processing", - "stripe" - ], - "time": "2023-08-11T00:23:24+00:00" - }, { "name": "studioespresso/craft-dumper", "version": "3.0.1", @@ -7296,120 +6640,6 @@ ], "time": "2016-11-22T22:57:47+00:00" }, - { - "name": "symfony/cache", - "version": "v6.4.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/14a75869bbb41cb35bc5d9d322473928c6f3f978", - "reference": "14a75869bbb41cb35bc5d9d322473928c6f3f978", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/cache": "^2.0|^3.0", - "psr/log": "^1.1|^2|^3", - "symfony/cache-contracts": "^2.5|^3", - "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6|^7.0" - }, - "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/var-dumper": "<5.4" - }, - "provide": { - "psr/cache-implementation": "2.0|3.0", - "psr/simple-cache-implementation": "1.0|2.0|3.0", - "symfony/cache-implementation": "1.1|2.0|3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Cache\\": "" - }, - "classmap": [ - "Traits/ValueWrapper.php" - ], - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", - "homepage": "https://symfony.com", - "keywords": [ - "caching", - "psr6" - ], - "time": "2023-12-29T15:34:34+00:00" - }, - { - "name": "symfony/cache-contracts", - "version": "v3.4.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778", - "reference": "1d74b127da04ffa87aa940abe15446fa89653778", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/cache": "^3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Cache\\": "" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to caching", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "time": "2023-09-25T12:52:38+00:00" - }, { "name": "symfony/console", "version": "v6.4.3", @@ -7612,46 +6842,6 @@ ], "time": "2023-05-23T14:45:45+00:00" }, - { - "name": "symfony/expression-language", - "version": "v5.4.21", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/501589522b844b8eecf012c133f0404f0eef77ac", - "reference": "501589522b844b8eecf012c133f0404f0eef77ac", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "symfony/cache": "^4.4|^5.0|^6.0", - "symfony/service-contracts": "^1.1|^2|^3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ExpressionLanguage\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides an engine that can compile and evaluate expressions", - "homepage": "https://symfony.com", - "time": "2023-02-14T08:03:56+00:00" - }, { "name": "symfony/filesystem", "version": "v7.0.3", @@ -8740,54 +7930,6 @@ ], "time": "2024-01-23T14:28:09+00:00" }, - { - "name": "symfony/var-exporter", - "version": "v7.0.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/345c62fefe92243c3a06fc0cc65f2ec1a47e0764", - "reference": "345c62fefe92243c3a06fc0cc65f2ec1a47e0764", - "shasum": "" - }, - "require": { - "php": ">=8.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\VarExporter\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Allows exporting any serializable PHP data structure to plain PHP code", - "homepage": "https://symfony.com", - "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "lazy-loading", - "proxy", - "serialize" - ], - "time": "2023-12-27T08:42:13+00:00" - }, { "name": "symfony/yaml", "version": "v5.4.35", @@ -8870,53 +8012,6 @@ "description": "PHP library for parsing a string containing a full name into its parts", "time": "2019-11-14T14:08:48+00:00" }, - { - "name": "thenetworg/oauth2-azure", - "version": "v2.2.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TheNetworg/oauth2-azure/zipball/be204a5135f016470a9c33e82ab48785bbc11af2", - "reference": "be204a5135f016470a9c33e82ab48785bbc11af2", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-openssl": "*", - "firebase/php-jwt": "~3.0||~4.0||~5.0||~6.0", - "league/oauth2-client": "~2.0", - "php": "^7.1|^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "TheNetworg\\OAuth2\\Client\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Hajek", - "email": "jan.hajek@thenetw.org", - "homepage": "https://thenetw.org" - } - ], - "description": "Azure Active Directory OAuth 2.0 Client Provider for The PHP League OAuth2-Client", - "keywords": [ - "SSO", - "aad", - "authorization", - "azure", - "azure active directory", - "client", - "microsoft", - "oauth", - "oauth2", - "windows azure" - ], - "time": "2023-12-19T12:10:48+00:00" - }, { "name": "tinify/tinify", "version": "1.6.1", @@ -9163,75 +8258,6 @@ "description": "Common utilities and building-blocks for Verbb plugins for Craft CMS.", "time": "2023-09-19T22:50:02+00:00" }, - { - "name": "verbb/formie", - "version": "2.1.3", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/verbb/formie/zipball/e77b63ca491afb95d6e0c6f14a75a447796d6f4a", - "reference": "e77b63ca491afb95d6e0c6f14a75a447796d6f4a", - "shasum": "" - }, - "require": { - "commerceguys/addressing": "^1.2", - "craftcms/cms": "^4.3.2", - "dompdf/dompdf": "^1.0.2 || ^2.0.3", - "ezyang/htmlpurifier": "^4.13", - "fakerphp/faker": "^1.9.1", - "giggsey/libphonenumber-for-php": "^8.12", - "guzzlehttp/oauth-subscriber": "^0.4.0 || ^0.5.0 || ^0.6.0", - "html2text/html2text": "^4.3", - "league/html-to-markdown": "^4.10 || ^5.0", - "league/oauth1-client": "^1.9", - "league/oauth2-client": "^2.6.0", - "league/oauth2-google": "^3.0 || ^4.0", - "moneyphp/money": "^4.0", - "nystudio107/craft-plugin-vite": "^4.0.0-beta.4", - "php": "^8.0.2", - "stripe/stripe-php": "^7.0 || ^8.0 || ^9.0 || ^10.0", - "symfony/expression-language": "^5.3.0", - "thenetworg/oauth2-azure": "^2.0", - "verbb/base": "^2.0.0", - "voku/anti-xss": "^4.1" - }, - "type": "craft-plugin", - "extra": { - "name": "Formie", - "handle": "formie", - "changelogUrl": "https://raw.githubusercontent.com/verbb/formie/craft-4/CHANGELOG.md", - "class": "verbb\\formie\\Formie" - }, - "autoload": { - "psr-4": { - "verbb\\formie\\": "src/" - } - }, - "license": [ - "proprietary" - ], - "authors": [ - { - "name": "Verbb", - "homepage": "https://verbb.io" - } - ], - "description": "The most user-friendly forms plugin for Craft.", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "formie" - ], - "support": { - "email": "support@verbb.io", - "issues": "https://github.com/verbb/formie/issues?state=open", - "source": "https://github.com/verbb/formie", - "docs": "https://github.com/verbb/formie", - "rss": "https://github.com/verbb/formie/commits/v2.atom" - }, - "time": "2024-01-24T22:45:40+00:00" - }, { "name": "verbb/hyper", "version": "1.1.20", diff --git a/config/project/formie/statuses/new--7e8fd607-0b56-4196-9e02-76ebba9ad7bd.yaml b/config/project/formie/statuses/new--7e8fd607-0b56-4196-9e02-76ebba9ad7bd.yaml deleted file mode 100644 index 6a1e0950..00000000 --- a/config/project/formie/statuses/new--7e8fd607-0b56-4196-9e02-76ebba9ad7bd.yaml +++ /dev/null @@ -1,6 +0,0 @@ -color: green -description: null -handle: new -isDefault: true -name: New -sortOrder: 1 diff --git a/config/project/formie/stencils/contact--359d175b-2fe0-421b-959a-16ca87c71044.yaml b/config/project/formie/stencils/contact--359d175b-2fe0-421b-959a-16ca87c71044.yaml deleted file mode 100644 index ce8eeb68..00000000 --- a/config/project/formie/stencils/contact--359d175b-2fe0-421b-959a-16ca87c71044.yaml +++ /dev/null @@ -1,209 +0,0 @@ -data: - dataRetention: forever - dataRetentionValue: null - fileUploadsAction: retain - notifications: - - - attachFiles: true - bcc: null - cc: null - conditions: null - content: '[{"type":"paragraph","content":[{"type":"text","text":"A user submission has been made on the \""},{"type":"variableTag","attrs":{"label":"Form Name","value":"{formName}"}},{"type":"text","text":"\" form on "},{"type":"variableTag","attrs":{"label":"Site Name","value":"{siteName}"}},{"type":"text","text":" at "},{"type":"variableTag","attrs":{"label":"Timestamp (yyyy-mm-dd hh:mm:ss)","value":"{timestamp}"}}]},{"type":"paragraph","content":[{"type":"text","text":"Their submission details are:"}]},{"type":"paragraph","content":[{"type":"variableTag","attrs":{"label":"All Form Fields","value":"{allFields}"}}]}]' - enableConditions: false - enabled: true - formId: null - from: null - fromName: null - id: stencil618e487f01f51 - name: 'Admin Notification' - replyTo: '{field.emailAddress}' - replyToName: null - subject: 'A new submission was made on "{formName}"' - templateId: null - to: '{systemEmail}' - uid: null - - - attachFiles: true - bcc: null - cc: null - conditions: null - content: '[{"type":"paragraph","content":[{"type":"text","text":"Thanks again for contacting us. Our team will get back to you as soon as we can."}]},{"type":"paragraph","content":[{"type":"text","text":"As a reminder, you submitted the following details at "},{"type":"variableTag","attrs":{"label":"Timestamp (yyyy-mm-dd hh:mm:ss)","value":"{timestamp}"}}]},{"type":"paragraph","content":[{"type":"variableTag","attrs":{"label":"All Form Fields","value":"{allFields}"}}]}]' - enableConditions: false - enabled: true - formId: null - from: null - fromName: null - id: stencil618e487f01f53 - name: 'User Notification' - replyTo: null - replyToName: null - subject: 'Thanks for contacting us!' - templateId: null - to: '{field.emailAddress}' - uid: null - pages: - - - id: new1272610411 - label: 'Page 1' - rows: - - - fields: - - - brandNewField: false - columnWidth: 12 - handle: yourName - hasLabel: true - id: new7715-7348 - label: 'Your Name' - settings: - conditions: '{"showRule":"show","conditionRule":"all","conditions":[]}' - enableConditions: false - firstNameCollapsed: false - firstNameDefaultValue: '' - firstNameEnabled: true - firstNameLabel: 'First Name' - firstNamePlaceholder: 'e.g. Peter' - firstNameRequired: true - handle: yourName - instructions: 'Please enter your full name.' - instructionsPosition: verbb\formie\positions\FieldsetStart - label: 'Your Name' - labelPosition: '' - lastNameCollapsed: false - lastNameDefaultValue: '' - lastNameEnabled: true - lastNameLabel: 'Last Name' - lastNamePlaceholder: 'e.g. Sherman' - lastNameRequired: true - limitType: characters - middleNameCollapsed: true - middleNameDefaultValue: '' - middleNameEnabled: false - middleNameLabel: 'Middle Name' - placeholder: 'Your name' - prefixCollapsed: true - prefixDefaultValue: '' - prefixEnabled: false - prefixLabel: Prefix - required: true - subfieldLabelPosition: '' - useMultipleFields: false - visibility: '' - type: verbb\formie\fields\formfields\Name - vid: new7959-8511 - id: new8990-9934 - - - fields: - - - brandNewField: false - columnWidth: 12 - handle: emailAddress - hasLabel: true - id: new6482-9528 - label: 'Email Address' - settings: - conditions: '{"showRule":"show","conditionRule":"all","conditions":[]}' - handle: emailAddress - instructions: 'Please enter your email so we can get in touch.' - instructionsPosition: '' - label: 'Email Address' - labelPosition: '' - limitType: characters - placeholder: 'e.g. psherman@wallaby.com' - required: true - validateDomain: false - visibility: '' - type: verbb\formie\fields\formfields\Email - vid: new7965-6031 - id: new9524-8509 - - - fields: - - - brandNewField: false - columnWidth: 12 - handle: message - hasLabel: true - id: new982-7322 - label: Message - settings: - conditions: '{"showRule":"show","conditionRule":"all","conditions":[]}' - handle: message - instructions: 'Please enter your comments.' - instructionsPosition: '' - label: Message - labelPosition: '' - limit: true - limitAmount: '5000' - limitType: characters - placeholder: 'e.g. The reason for my enquiry is...' - required: true - visibility: '' - type: verbb\formie\fields\formfields\MultiLineText - vid: new8144-535 - id: new2177-9685 - settings: - backButtonLabel: Back - buttonsPosition: left - label: 'Page 1' - showBackButton: false - submitButtonLabel: 'Contact us' - sortOrder: 0 - settings: - collectIp: false - collectUser: false - dataRetention: null - dataRetentionValue: null - defaultEmailTemplateId: null - defaultInstructionsPosition: verbb\formie\positions\AboveInput - defaultLabelPosition: verbb\formie\positions\AboveInput - disableCaptchas: false - displayCurrentPageTitle: false - displayFormTitle: false - displayPageProgress: false - displayPageTabs: false - errorMessage: '[{"type":"paragraph","content":[{"type":"text","text":"Couldn’t save submission due to errors."}]}]' - errorMessagePosition: top-form - fileUploadsAction: null - integrations: - duplicate: - enabled: '1' - showAllPages: '1' - honeypot: - enabled: '1' - showAllPages: '1' - javascript: - enabled: '1' - showAllPages: '1' - limitSubmissions: false - limitSubmissionsMessage: null - limitSubmissionsNumber: null - limitSubmissionsType: null - loadingIndicator: spinner - loadingIndicatorText: null - progressPosition: end - redirectUrl: null - requireUser: false - requireUserMessage: null - scheduleForm: false - scheduleFormEnd: null - scheduleFormExpiredMessage: null - scheduleFormPendingMessage: null - scheduleFormStart: null - scrollToTop: true - submissionTitleFormat: '{timestamp}: {field.yourName} <{field.emailAddress}>' - submitAction: message - submitActionFormHide: true - submitActionMessage: '[{"type":"paragraph","content":[{"type":"text","text":"Thank you for contacting us! Our team will get in touch shortly to follow up on your message."}]}]' - submitActionMessagePosition: top-form - submitActionMessageTimeout: null - submitActionTab: null - submitActionUrl: null - submitMethod: ajax - validationOnFocus: true - validationOnSubmit: true - userDeletedAction: retain -defaultStatus: 7e8fd607-0b56-4196-9e02-76ebba9ad7bd # New -handle: contact -name: Contact -submitActionEntry: null -template: null diff --git a/config/project/project.yaml b/config/project/project.yaml index 99334fa9..1e1b8eb1 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1706915737 +dateModified: 1709752682 elementSources: craft\elements\Asset: - @@ -97,7 +97,6 @@ meta: 6f4a3e01-23de-4313-8109-00a430317d11: 'Rich Text Default' # Rich Text Default 7b3b13e0-e20d-4d51-b0ae-832300f45234: Text # Text 7b23a4a8-a6f8-43c4-b12c-326d089176ad: Video # Video - 7e8fd607-0b56-4196-9e02-76ebba9ad7bd: New # New 7eb1a718-0679-4fda-b656-9bfdf55a2025: 'Navigation Main' # Navigation Main 8ced5be5-13b2-483f-8db9-aab9757aad21: Error # Error 8d272b11-c1b4-4fc3-95c8-9d94fa513795: 'Text: Links' # Text: Links @@ -119,7 +118,6 @@ meta: 88f5b6a1-8725-4770-b8df-f5f3c0d257d3: 'Section Width' # Section Width 98f7a455-6764-4b7d-8d19-405bdcc42228: 'Image Ratio' # Image Ratio 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82: 'Image Position' # Image Position - 359d175b-2fe0-421b-959a-16ca87c71044: Contact # Contact 419ebfbb-8723-48db-ae89-10adf52cdf11: 'Text: Source' # Text: Source 426b9c6d-ddd6-433e-a29d-8247cd9095ba: 'Text CK' # Text CK 1516a801-6243-468d-b8e2-479085458faa: 'Text: Title Overwrite' # Text: Title Overwrite @@ -216,135 +214,6 @@ plugins: edition: standard enabled: true schemaVersion: 1.0.0 - formie: - edition: standard - enabled: true - licenseKey: $PLUGIN_FORMIE - schemaVersion: 2.0.13 - settings: - ajaxTimeout: 10 - captchas: - __assoc__: - - - - recaptcha - - - __assoc__: - - - - type - - verbb\formie\integrations\captchas\Recaptcha - - - - enabled - - false - - - - settings - - - __assoc__: - - - - handle - - recaptcha - - - - secretKey - - '' - - - - siteKey - - '' - - - - type - - v3 - - - - size - - normal - - - - theme - - light - - - - badge - - bottomright - - - - language - - en - - - - minScore - - '0.5' - - - - duplicate - - - __assoc__: - - - - type - - verbb\formie\integrations\captchas\Duplicate - - - - enabled - - true - - - - settings - - - __assoc__: - - - - handle - - duplicate - - - - honeypot - - - __assoc__: - - - - type - - verbb\formie\integrations\captchas\Honeypot - - - - enabled - - true - - - - settings - - - __assoc__: - - - - handle - - honeypot - - - - javascript - - - __assoc__: - - - - type - - verbb\formie\integrations\captchas\Javascript - - - - enabled - - true - - - - settings - - - __assoc__: - - - - handle - - javascript - - - - minTime - - '10' - defaultDateDisplayType: '' - defaultDateTime: '' - defaultDateValueOption: '' - defaultEmailTemplate: '' - defaultFileUploadVolume: '' - defaultFormTemplate: '' - defaultInstructionsPosition: below-input - defaultLabelPosition: above-input - defaultPage: forms - enableCsrfValidationForGuests: true - enableGatsbyCompatibility: false - enableUnloadWarning: true - maxIncompleteSubmissionAge: 30 - maxSentNotificationsAge: 30 - pluginName: Formie - saveSpam: true - sendEmailAlerts: false - sentNotifications: true - spamBehaviour: showSuccess - spamBehaviourMessage: '' - spamEmailNotifications: false - spamKeywords: '' - spamLimit: 1000 - useQueueForIntegrations: true - useQueueForNotifications: true hyper: edition: standard enabled: true From 0c8fce912ed4a155e91cea6f8b5d1f4f8ddf92cc Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 19 Apr 2024 22:54:25 +0200 Subject: [PATCH 17/45] =?UTF-8?q?=E2=9E=96=20remove:=20social=20share=20im?= =?UTF-8?q?age?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 10 +- composer.lock | 480 +-------------- config/app.php | 13 +- config/project/project.yaml | 4 +- config/routes.php | 7 +- .../social-share-image/GenerateSocialCard.php | 39 -- modules/social-share-image/Module.php | 68 --- package-lock.json | 576 +++--------------- package.json | 1 - .../_boilerplate/_layouts/layout-ssig.twig | 67 -- templates/_layouts/layout-ssig.twig | 18 - templates/ssig.twig | 10 - 12 files changed, 78 insertions(+), 1215 deletions(-) delete mode 100644 modules/social-share-image/GenerateSocialCard.php delete mode 100644 modules/social-share-image/Module.php delete mode 100644 templates/_boilerplate/_layouts/layout-ssig.twig delete mode 100644 templates/_layouts/layout-ssig.twig delete mode 100644 templates/ssig.twig diff --git a/composer.json b/composer.json index 541f6616..87fe81ae 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.7.1", - "craftcms/cms": "4.7.1", + "craftcms/cms": "4.8.9", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-clearcache": "1.3.0", @@ -17,7 +17,6 @@ "putyourlightson/craft-sherlock": "4.4.1", "putyourlightson/craft-sprig": "2.7.3", "spacecatninja/imager-x": "4.2.4", - "spatie/browsershot": "^3.59", "studioespresso/craft-dumper": "3.0.1", "vaersaagod/matrixmate": "2.1.4", "verbb/hyper": "1.1.20", @@ -33,11 +32,6 @@ "roave/security-advisories": "dev-latest", "yiisoft/yii2-shell": "^2.0.4" }, - "autoload": { - "psr-4": { - "modules\\socialshareimage\\": "modules/social-share-image/" - } - }, "minimum-stability": "dev", "prefer-stable": true, "config": { @@ -88,4 +82,4 @@ "canonical": false } ] -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index 5a3bdb66..d8eadd5e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9859ddd1107d78e253716d90757350a8", + "content-hash": "f6034c74fa4a5fefc13dc1d98636b19e", "packages": [ { "name": "amphp/amp", @@ -3111,66 +3111,6 @@ ], "time": "2021-01-22T15:08:35+00:00" }, - { - "name": "intervention/image", - "version": "2.7.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad", - "reference": "04be355f8d6734c826045d02a1079ad658322dad", - "shasum": "" - }, - "require": { - "ext-fileinfo": "*", - "guzzlehttp/psr7": "~1.1 || ^2.0", - "php": ">=5.4.0" - }, - "suggest": { - "ext-gd": "to use GD library based image processing.", - "ext-imagick": "to use Imagick based image processing.", - "intervention/imagecache": "Caching extension for the Intervention Image library" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.4-dev" - }, - "laravel": { - "providers": [ - "Intervention\\Image\\ImageServiceProvider" - ], - "aliases": { - "Image": "Intervention\\Image\\Facades\\Image" - } - } - }, - "autoload": { - "psr-4": { - "Intervention\\Image\\": "src/Intervention/Image" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Oliver Vogel", - "email": "oliver@intervention.io", - "homepage": "https://intervention.io/" - } - ], - "description": "Image handling and manipulation library with support for Laravel integration", - "homepage": "http://image.intervention.io/", - "keywords": [ - "gd", - "image", - "imagick", - "laravel", - "thumbnail", - "watermark" - ], - "time": "2022-05-21T17:30:32+00:00" - }, { "name": "justinrainbow/json-schema", "version": "v5.2.13", @@ -3376,196 +3316,6 @@ ], "time": "2022-11-12T10:09:40+00:00" }, - { - "name": "league/flysystem", - "version": "3.23.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", - "reference": "199e1aebbe3e62bd39f4d4fc8c61ce0b3786197e", - "shasum": "" - }, - "require": { - "league/flysystem-local": "^3.0.0", - "league/mime-type-detection": "^1.0.0", - "php": "^8.0.2" - }, - "conflict": { - "async-aws/core": "<1.19.0", - "async-aws/s3": "<1.14.0", - "aws/aws-sdk-php": "3.209.31 || 3.210.0", - "guzzlehttp/guzzle": "<7.0", - "guzzlehttp/ringphp": "<1.1.1", - "phpseclib/phpseclib": "3.0.15", - "symfony/http-client": "<5.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\Flysystem\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frank de Jonge", - "email": "info@frankdejonge.nl" - } - ], - "description": "File storage abstraction for PHP", - "keywords": [ - "WebDAV", - "aws", - "cloud", - "file", - "files", - "filesystem", - "filesystems", - "ftp", - "s3", - "sftp", - "storage" - ], - "time": "2024-01-26T18:42:03+00:00" - }, - { - "name": "league/flysystem-local", - "version": "3.23.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/b884d2bf9b53bb4804a56d2df4902bb51e253f00", - "reference": "b884d2bf9b53bb4804a56d2df4902bb51e253f00", - "shasum": "" - }, - "require": { - "ext-fileinfo": "*", - "league/flysystem": "^3.0.0", - "league/mime-type-detection": "^1.0.0", - "php": "^8.0.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\Flysystem\\Local\\": "" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frank de Jonge", - "email": "info@frankdejonge.nl" - } - ], - "description": "Local filesystem adapter for Flysystem.", - "keywords": [ - "Flysystem", - "file", - "files", - "filesystem", - "local" - ], - "time": "2024-01-26T18:25:23+00:00" - }, - { - "name": "league/glide", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/glide.git", - "reference": "2ff92c8f1edc80b74e2d3c5efccfc7223f74d407" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/glide/zipball/2ff92c8f1edc80b74e2d3c5efccfc7223f74d407", - "reference": "2ff92c8f1edc80b74e2d3c5efccfc7223f74d407", - "shasum": "" - }, - "require": { - "intervention/image": "^2.7", - "league/flysystem": "^2.0|^3.0", - "php": "^7.2|^8.0", - "psr/http-message": "^1.0|^2.0" - }, - "require-dev": { - "mockery/mockery": "^1.3.3", - "phpunit/php-token-stream": "^3.1|^4.0", - "phpunit/phpunit": "^8.5|^9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\Glide\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jonathan Reinink", - "email": "jonathan@reinink.ca", - "homepage": "http://reinink.ca" - }, - { - "name": "Titouan Galopin", - "email": "galopintitouan@gmail.com", - "homepage": "https://titouangalopin.com" - } - ], - "description": "Wonderfully easy on-demand image manipulation library with an HTTP based API.", - "homepage": "http://glide.thephpleague.com", - "keywords": [ - "ImageMagick", - "editing", - "gd", - "image", - "imagick", - "league", - "manipulation", - "processing" - ], - "support": { - "issues": "https://github.com/thephpleague/glide/issues", - "source": "https://github.com/thephpleague/glide/tree/2.3.0" - }, - "time": "2023-07-08T06:26:07+00:00" - }, - { - "name": "league/mime-type-detection", - "version": "1.14.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e", - "reference": "b6a5854368533df0295c5761a0253656a2e52d9e", - "shasum": "" - }, - "require": { - "ext-fileinfo": "*", - "php": "^7.4 || ^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\MimeTypeDetection\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frank de Jonge", - "email": "info@frankdejonge.nl" - } - ], - "description": "Mime-type detection for Flysystem", - "time": "2023-10-17T14:13:20+00:00" - }, { "name": "league/uri", "version": "7.4.0", @@ -6263,234 +6013,6 @@ }, "time": "2024-01-10T09:29:50+00:00" }, - { - "name": "spatie/browsershot", - "version": "3.61.0", - "source": { - "type": "git", - "url": "https://github.com/spatie/browsershot.git", - "reference": "14d75679390b8b84a71b3a17dc5905928deeb887" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/browsershot/zipball/14d75679390b8b84a71b3a17dc5905928deeb887", - "reference": "14d75679390b8b84a71b3a17dc5905928deeb887", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": "^8.0", - "spatie/image": "^1.5.3|^2.0", - "spatie/temporary-directory": "^1.1|^2.0", - "symfony/process": "^4.2|^5.0|^6.0|^7.0" - }, - "require-dev": { - "pestphp/pest": "^1.20", - "spatie/phpunit-snapshot-assertions": "^4.2.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\Browsershot\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://github.com/freekmurze", - "role": "Developer" - } - ], - "description": "Convert a webpage to an image or pdf using headless Chrome", - "homepage": "https://github.com/spatie/browsershot", - "keywords": [ - "chrome", - "convert", - "headless", - "image", - "pdf", - "puppeteer", - "screenshot", - "webpage" - ], - "support": { - "source": "https://github.com/spatie/browsershot/tree/3.61.0" - }, - "funding": [ - { - "url": "https://github.com/spatie", - "type": "github" - } - ], - "time": "2023-12-21T10:00:28+00:00" - }, - { - "name": "spatie/image", - "version": "2.2.7", - "source": { - "type": "git", - "url": "https://github.com/spatie/image.git", - "reference": "2f802853aab017aa615224daae1588054b5ab20e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/image/zipball/2f802853aab017aa615224daae1588054b5ab20e", - "reference": "2f802853aab017aa615224daae1588054b5ab20e", - "shasum": "" - }, - "require": { - "ext-exif": "*", - "ext-json": "*", - "ext-mbstring": "*", - "league/glide": "^2.2.2", - "php": "^8.0", - "spatie/image-optimizer": "^1.7", - "spatie/temporary-directory": "^1.0|^2.0", - "symfony/process": "^3.0|^4.0|^5.0|^6.0" - }, - "require-dev": { - "pestphp/pest": "^1.22", - "phpunit/phpunit": "^9.5", - "symfony/var-dumper": "^4.0|^5.0|^6.0", - "vimeo/psalm": "^4.6" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\Image\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - } - ], - "description": "Manipulate images with an expressive API", - "homepage": "https://github.com/spatie/image", - "keywords": [ - "image", - "spatie" - ], - "support": { - "source": "https://github.com/spatie/image/tree/2.2.7" - }, - "funding": [ - { - "url": "https://spatie.be/open-source/support-us", - "type": "custom" - }, - { - "url": "https://github.com/spatie", - "type": "github" - } - ], - "time": "2023-07-24T13:54:13+00:00" - }, - { - "name": "spatie/image-optimizer", - "version": "1.7.2", - "source": { - "type": "git", - "url": "https://github.com/spatie/image-optimizer.git", - "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/62f7463483d1bd975f6f06025d89d42a29608fe1", - "reference": "62f7463483d1bd975f6f06025d89d42a29608fe1", - "shasum": "" - }, - "require": { - "ext-fileinfo": "*", - "php": "^7.3|^8.0", - "psr/log": "^1.0 | ^2.0 | ^3.0", - "symfony/process": "^4.2|^5.0|^6.0|^7.0" - }, - "require-dev": { - "pestphp/pest": "^1.21", - "phpunit/phpunit": "^8.5.21|^9.4.4", - "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\ImageOptimizer\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - } - ], - "description": "Easily optimize images using PHP", - "homepage": "https://github.com/spatie/image-optimizer", - "keywords": [ - "image-optimizer", - "spatie" - ], - "support": { - "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.7.2" - }, - "time": "2023-11-03T10:08:02+00:00" - }, - { - "name": "spatie/temporary-directory", - "version": "2.2.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", - "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a", - "shasum": "" - }, - "require": { - "php": "^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\TemporaryDirectory\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alex Vanderbist", - "email": "alex@spatie.be", - "homepage": "https://spatie.be", - "role": "Developer" - } - ], - "description": "Easily create, use and destroy temporary directories", - "homepage": "https://github.com/spatie/temporary-directory", - "keywords": [ - "php", - "spatie", - "temporary-directory" - ], - "time": "2023-12-25T11:46:58+00:00" - }, { "name": "ssnepenthe/color-utils", "version": "0.4.2", diff --git a/config/app.php b/config/app.php index ce3906bd..45094c78 100644 --- a/config/app.php +++ b/config/app.php @@ -18,7 +18,6 @@ */ use craft\helpers\App; -use modules\socialshareimage\Module; $redisConfig = [ 'redis' => [ @@ -60,12 +59,8 @@ return [ '*' => [ 'id' => App::env('CRAFT_APP_ID') ?: 'CraftCMS', - 'modules' => [ - 'social-share-image' => [ - 'class' => \modules\socialshareimage\Module::class, - ], - ], - 'bootstrap' => ['social-share-image'], + 'modules' => [], + 'bootstrap' => [], 'components' => [ 'db' => static function () { $config = craft\helpers\App::dbConfig(); @@ -85,6 +80,6 @@ 'production' => [], 'staging' => [], 'dev' => [], - 'modules' => ['social-share-image' => Module::class], - 'bootstrap' => ['social-share-image'], + 'modules' => [], + 'bootstrap' => [], ]; diff --git a/config/project/project.yaml b/config/project/project.yaml index 1e1b8eb1..19932741 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1709752682 +dateModified: 1713558994 elementSources: craft\elements\Asset: - @@ -310,7 +310,7 @@ plugins: enabled: true schemaVersion: 1.0.0 system: - edition: pro + edition: solo live: true name: Baukasten retryDuration: null diff --git a/config/routes.php b/config/routes.php index 7e463e23..ffa6f303 100644 --- a/config/routes.php +++ b/config/routes.php @@ -19,10 +19,5 @@ */ return [ - 'api' => 'graphql/api', - - // Social share image - 'ssig/' => [ - 'template' => 'ssig' - ] + 'api' => 'graphql/api' ]; diff --git a/modules/social-share-image/GenerateSocialCard.php b/modules/social-share-image/GenerateSocialCard.php deleted file mode 100644 index 9e52eed3..00000000 --- a/modules/social-share-image/GenerateSocialCard.php +++ /dev/null @@ -1,39 +0,0 @@ -elementId) - ->setNodeBinary(App::env('NODE_BINARY')) - ->setNpmBinary(App::env('NPM_BINARY')) - ->windowSize(1200, 675) - ->waitUntilNetworkIdle() - ->save(getcwd() . '/social-share-images/' . $this->elementSite . '_' . $this->elementSection . '_' . $this->elementSlug . '_' . $this->elementId . '.png'); - } - - protected function defaultDescription(): string - { - return Craft::t('app', 'Generate the social card'); - } -} diff --git a/modules/social-share-image/Module.php b/modules/social-share-image/Module.php deleted file mode 100644 index 0ecc7a91..00000000 --- a/modules/social-share-image/Module.php +++ /dev/null @@ -1,68 +0,0 @@ -request->isConsoleRequest) { - $this->controllerNamespace = 'modules\\socialshareimage\\console\\controllers'; - } else { - $this->controllerNamespace = 'modules\\socialshareimage\\controllers'; - } - - parent::init(); - - // Defer most setup tasks until Craft is fully initialized - Craft::$app->onInit(function() { - $this->attachEventHandlers(); - // ... - }); - } - - private function attachEventHandlers(): void - { - // Register event handlers here ... - // (see https://craftcms.com/docs/4.x/extend/events.html to get started) - - Event::on( - Elements::class, - Elements::EVENT_AFTER_SAVE_ELEMENT, - static function (ElementEvent $event) { - $element = $event->element; - if ( - $element instanceof Entry // is entry - // is in 'userPostedJobs' section - && !$element->getIsRevision() // is not revision - && !$element->getIsDraft() // is not draft - && $element->status === 'live' - ) { - Queue::push(new GenerateSocialCard([ - 'elementId' => $element->id, - 'elementSlug' => $element->slug, - 'elementSection' => $element->section->handle, - 'elementSite' => $element->site->handle, - ])); - } - } - ); - } -} diff --git a/package-lock.json b/package-lock.json index d939b8d3..8114e6c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,7 +24,6 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "puppeteer": "^21.9.0", "swiper": "^11.0.5", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", @@ -121,6 +120,7 @@ "version": "7.23.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, "dependencies": { "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" @@ -496,6 +496,7 @@ "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -541,6 +542,7 @@ "version": "7.23.4", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -3168,100 +3170,6 @@ "url": "https://opencollective.com/popperjs" } }, - "node_modules/@puppeteer/browsers": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", - "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", - "dependencies": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.1", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.2" - }, - "bin": { - "browsers": "lib/cjs/main-cli.js" - }, - "engines": { - "node": ">=16.3.0" - } - }, - "node_modules/@puppeteer/browsers/node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@puppeteer/browsers/node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/@puppeteer/browsers/node_modules/tar-fs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", - "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", - "dependencies": { - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - } - }, - "node_modules/@puppeteer/browsers/node_modules/tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, - "node_modules/@puppeteer/browsers/node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/@puppeteer/browsers/node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@puppeteer/browsers/node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, "node_modules/@rollup/plugin-node-resolve": { "version": "15.2.3", "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", @@ -3549,11 +3457,6 @@ "node": ">= 10" } }, - "node_modules/@tootallnate/quickjs-emscripten": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", - "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" - }, "node_modules/@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", @@ -3680,7 +3583,7 @@ "version": "20.9.3", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.3.tgz", "integrity": "sha512-nk5wXLAXGBKfrhLB0cyHGbSqopS+nz0BUgZkUQqSHSSgdee0kssp1IAqlQOu333bW+gMNs2QREx7iynm19Abxw==", - "devOptional": true, + "dev": true, "dependencies": { "undici-types": "~5.26.4" } @@ -3739,6 +3642,7 @@ "version": "2.10.0", "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "dev": true, "optional": true, "dependencies": { "@types/node": "*" @@ -4320,6 +4224,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, "engines": { "node": ">=8" } @@ -4441,7 +4346,8 @@ "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, "node_modules/arr-diff": { "version": "4.0.0", @@ -4908,17 +4814,6 @@ "node": ">=0.10.0" } }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -5057,11 +4952,6 @@ "proxy-from-env": "^1.1.0" } }, - "node_modules/b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==" - }, "node_modules/babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -5336,6 +5226,7 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, "funding": [ { "type": "github", @@ -5351,14 +5242,6 @@ } ] }, - "node_modules/basic-ftp": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz", - "integrity": "sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==", - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", @@ -5598,6 +5481,7 @@ "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, "funding": [ { "type": "github", @@ -5635,6 +5519,7 @@ "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, "engines": { "node": "*" } @@ -5782,6 +5667,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, "engines": { "node": ">=6" } @@ -6008,18 +5894,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chromium-bidi": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.4.tgz", - "integrity": "sha512-p9CdiHl0xNh4P7oVa44zXgJJw+pvnHXFDB+tVdo25xaPLgQDVf2kQO+TDxD2fp2Evqi7vs/vGRINMzl1qJrWiw==", - "dependencies": { - "mitt": "3.0.1", - "urlpattern-polyfill": "9.0.0" - }, - "peerDependencies": { - "devtools-protocol": "*" - } - }, "node_modules/ci-info": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", @@ -7355,14 +7229,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dependencies": { - "node-fetch": "^2.6.12" - } - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -7779,6 +7645,7 @@ "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "dependencies": { "ms": "2.1.2" }, @@ -7957,19 +7824,6 @@ "node": ">=0.10.0" } }, - "node_modules/degenerator": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", - "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", - "dependencies": { - "ast-types": "^0.13.4", - "escodegen": "^2.1.0", - "esprima": "^4.0.1" - }, - "engines": { - "node": ">= 14" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -8171,11 +8025,6 @@ "node": ">=0.10" } }, - "node_modules/devtools-protocol": { - "version": "0.0.1232444", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1232444.tgz", - "integrity": "sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==" - }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -8335,12 +8184,14 @@ "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, "dependencies": { "once": "^1.4.0" } @@ -8372,6 +8223,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, "engines": { "node": ">=6" } @@ -8553,6 +8405,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, "engines": { "node": ">=6" } @@ -8578,6 +8431,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", @@ -8989,6 +8843,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -9025,6 +8880,7 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, "engines": { "node": ">=4.0" } @@ -9038,6 +8894,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -9317,6 +9174,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", @@ -9356,7 +9214,8 @@ "node_modules/fast-fifo": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.2.0.tgz", - "integrity": "sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==" + "integrity": "sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==", + "dev": true }, "node_modules/fast-glob": { "version": "3.3.2", @@ -9450,6 +9309,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, "dependencies": { "pend": "~1.2.0" } @@ -10122,6 +9982,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, "dependencies": { "pump": "^3.0.0" }, @@ -10148,57 +10009,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-uri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", - "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", - "dependencies": { - "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.0", - "debug": "^4.3.4", - "fs-extra": "^8.1.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/get-uri/node_modules/data-uri-to-buffer": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz", - "integrity": "sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==", - "engines": { - "node": ">= 14" - } - }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/get-uri/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/get-uri/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", @@ -10933,6 +10743,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, "funding": [ { "type": "github", @@ -11003,6 +10814,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -11430,11 +11242,6 @@ "node": ">=0.10.0" } }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, "node_modules/ip-regex": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz", @@ -11671,6 +11478,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { "node": ">=8" } @@ -12060,12 +11868,14 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { "argparse": "^2.0.1" }, @@ -12239,7 +12049,8 @@ "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true }, "node_modules/json-schema": { "version": "0.4.0", @@ -13703,11 +13514,6 @@ "node": ">=16 || 14 >=14.17" } }, - "node_modules/mitt": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" - }, "node_modules/mixin-deep": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", @@ -13734,12 +13540,14 @@ "node_modules/mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/multimatch": { "version": "2.1.0", @@ -13840,14 +13648,6 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/node-abi": { "version": "2.30.1", "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz", @@ -13896,6 +13696,7 @@ "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, "dependencies": { "whatwg-url": "^5.0.0" }, @@ -15259,72 +15060,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/pac-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", - "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", - "dependencies": { - "@tootallnate/quickjs-emscripten": "^0.23.0", - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "get-uri": "^6.0.1", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-resolver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", - "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", - "dependencies": { - "degenerator": "^5.0.0", - "ip": "^1.1.8", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 14" - } - }, "node_modules/package-json": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", @@ -15359,6 +15094,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "dependencies": { "callsites": "^3.0.0" }, @@ -15416,6 +15152,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -15560,7 +15297,8 @@ "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true }, "node_modules/penthouse": { "version": "2.3.3", @@ -16317,71 +16055,11 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, "engines": { "node": ">=0.4.0" } }, - "node_modules/proxy-agent": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz", - "integrity": "sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.1", - "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "engines": { - "node": ">=12" - } - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -16414,6 +16092,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -16440,84 +16119,6 @@ "node": ">=8" } }, - "node_modules/puppeteer": { - "version": "21.9.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-21.9.0.tgz", - "integrity": "sha512-vcLR81Rp+MBrgqhiXZfpwEBbyKTa88Hd+8Al3+emWzcJb9evLLSfUYli0QUqhofPFrXsO2A/dAF9OunyOivL6w==", - "hasInstallScript": true, - "dependencies": { - "@puppeteer/browsers": "1.9.1", - "cosmiconfig": "9.0.0", - "puppeteer-core": "21.9.0" - }, - "bin": { - "puppeteer": "lib/esm/puppeteer/node/cli.js" - }, - "engines": { - "node": ">=16.13.2" - } - }, - "node_modules/puppeteer-core": { - "version": "21.9.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.9.0.tgz", - "integrity": "sha512-QgowcczLAoLWlV38s3y3VuEvjJGfKU5rR6Q23GUbiGOaiQi+QpaWQ+aXdzP9LHVSUPmHdAaWhcvMztYSw3f8gQ==", - "dependencies": { - "@puppeteer/browsers": "1.9.1", - "chromium-bidi": "0.5.4", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1232444", - "ws": "8.16.0" - }, - "engines": { - "node": ">=16.13.2" - } - }, - "node_modules/puppeteer-core/node_modules/ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/puppeteer/node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", - "dependencies": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, "node_modules/qs": { "version": "6.10.4", "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", @@ -16580,7 +16181,8 @@ "node_modules/queue-tick": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", - "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true }, "node_modules/quick-lru": { "version": "4.0.1", @@ -17328,6 +16930,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, "engines": { "node": ">=4" } @@ -18141,15 +17744,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -18343,53 +17937,11 @@ "urix": "^0.1.0" } }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/socks-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10.0" } @@ -18649,6 +18201,7 @@ "version": "2.15.1", "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "dev": true, "dependencies": { "fast-fifo": "^1.1.0", "queue-tick": "^1.0.1" @@ -18666,6 +18219,7 @@ "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -18739,6 +18293,7 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -20057,7 +19612,8 @@ "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, "node_modules/trim-newlines": { "version": "3.0.1", @@ -20118,7 +19674,8 @@ "node_modules/tslib": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true }, "node_modules/tunnel-agent": { "version": "0.6.0", @@ -20301,6 +19858,7 @@ "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" @@ -20310,7 +19868,7 @@ "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "devOptional": true + "dev": true }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", @@ -20685,11 +20243,6 @@ "node": ">=0.10.0" } }, - "node_modules/urlpattern-polyfill": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz", - "integrity": "sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==" - }, "node_modules/use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", @@ -21174,6 +20727,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -21182,7 +20736,8 @@ "node_modules/whatwg-url/node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true }, "node_modules/which": { "version": "2.0.2", @@ -21277,6 +20832,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -21344,6 +20900,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -21358,6 +20915,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -21368,7 +20926,8 @@ "node_modules/wrap-ansi/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, "node_modules/wrappy": { "version": "1.0.2", @@ -21710,6 +21269,7 @@ "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" diff --git a/package.json b/package.json index bba1e720..6b889018 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "puppeteer": "^21.9.0", "swiper": "^11.0.5", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", diff --git a/templates/_boilerplate/_layouts/layout-ssig.twig b/templates/_boilerplate/_layouts/layout-ssig.twig deleted file mode 100644 index b7c51948..00000000 --- a/templates/_boilerplate/_layouts/layout-ssig.twig +++ /dev/null @@ -1,67 +0,0 @@ -{% extends "_boilerplate/_layouts/layout-global-variables.twig" %} - -{# >>> Render block app #} -{% block blockApp %} - - - - {# >>> Render block head meta #} - {{ include("_boilerplate/_partials/head-meta.twig", {}, withContext = true) }} - {% block blockHeadMeta %} - - {% endblock %} - - {% block blockHeadFavicons %} - - {% endblock %} - - {# >>> Render block head js #} - {{ include("_boilerplate/_partials/head-js.twig", {}, withContext = true) }} - {% block blockHeadJs %} - - {% endblock %} - - {# >>> Render block head fonts #} - {% block blockHeadFonts %} - - {% endblock %} - - {# >>> Render block head css #} - {% block blockHeadCss %} - - {% endblock %} - - {{ - include( - "_boilerplate/_partials/head-critical-css.twig", - { - criticalPath: templatePath|default("") - }, - withContext = true - ) - }} - - {# >>> Render block app head #} - {% block blockAppHead %} - - {% endblock %} - - - - {# >>> Render block app body #} - {% block blockAppBody %} - - {% endblock %} - - -{% endblock %} diff --git a/templates/_layouts/layout-ssig.twig b/templates/_layouts/layout-ssig.twig deleted file mode 100644 index 2574e4e8..00000000 --- a/templates/_layouts/layout-ssig.twig +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "_boilerplate/_layouts/layout-ssig.twig" %} - -{# >>> Render favicons #} -{% block blockHeadFavicons %} - {{ include("_layouts/_partials/favicons/favicons-default.twig", {}, withContext = true) }} -{% endblock %} - -{# >>> Render block head fonts #} -{% block blockHeadFonts %} - {{ include("_layouts/_partials/fonts/fonts-default-preloading.twig", {}, withContext = true) }} -{% endblock %} - -{# >>> Render block app body #} -{% block blockAppBody %} - {% block blockAppContent %} - - {% endblock %} -{% endblock %} diff --git a/templates/ssig.twig b/templates/ssig.twig deleted file mode 100644 index 9711cdbe..00000000 --- a/templates/ssig.twig +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "_layouts/layout-ssig.twig" %} - -{% block blockAppContent %} - {% set entry = craft.entries.id(craft.app.request.segments|last).one %} - -
- - {{ entry.title }} -
-{% endblock %} From 530c06465c5bc2f6fbd5317e45cc4b01ee12a3a5 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 19 Apr 2024 23:01:01 +0200 Subject: [PATCH 18/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20uprade:=20CraftCMS?= =?UTF-8?q?=20&=20Plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 28 +- composer.lock | 832 +++++++++++++++++++----------------- config/project/project.yaml | 4 +- 3 files changed, 457 insertions(+), 407 deletions(-) diff --git a/composer.json b/composer.json index 87fe81ae..67ac67f5 100644 --- a/composer.json +++ b/composer.json @@ -1,28 +1,28 @@ { "require": { - "craftcms/ckeditor": "3.7.1", - "craftcms/cms": "4.8.9", + "craftcms/ckeditor": "3.8.3", + "craftcms/cms": "^4.8.9", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", - "mmikkel/cp-clearcache": "1.3.0", + "mmikkel/cp-clearcache": "1.3.1", "mmikkel/cp-field-inspect": "^1.4.4", "nystudio107/craft-code-field": "4.0.12", "nystudio107/craft-emptycoalesce": "4.0.0", - "nystudio107/craft-minify": "^4.0.0-beta.2", + "nystudio107/craft-minify": "4.0.1", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.0.38", - "nystudio107/craft-vite": "4.0.8", - "putyourlightson/craft-blitz": "4.10.3", + "nystudio107/craft-seomatic": "4.0.48", + "nystudio107/craft-vite": "4.0.9", + "putyourlightson/craft-blitz": "4.16.2", "putyourlightson/craft-elements-panel": "2.0.0", - "putyourlightson/craft-sherlock": "4.4.1", - "putyourlightson/craft-sprig": "2.7.3", - "spacecatninja/imager-x": "4.2.4", - "studioespresso/craft-dumper": "3.0.1", + "putyourlightson/craft-sherlock": "4.4.2", + "putyourlightson/craft-sprig": "2.8.0", + "spacecatninja/imager-x": "4.4.0", + "studioespresso/craft-dumper": "5.0.1", "vaersaagod/matrixmate": "2.1.4", - "verbb/hyper": "1.1.20", + "verbb/hyper": "1.1.27", "verbb/image-resizer": "3.0.11", - "verbb/navigation": "2.0.25", - "verbb/super-table": "3.0.12", + "verbb/navigation": "2.0.27", + "verbb/super-table": "3.0.13", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" }, diff --git a/composer.lock b/composer.lock index d8eadd5e..efb9f3bd 100644 --- a/composer.lock +++ b/composer.lock @@ -4,15 +4,15 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f6034c74fa4a5fefc13dc1d98636b19e", + "content-hash": "c9090be5331087879ff412e4dbb64ff5", "packages": [ { "name": "amphp/amp", - "version": "v2.6.2", + "version": "v2.6.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb", - "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb", + "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", + "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", "shasum": "" }, "require": { @@ -67,15 +67,15 @@ "non-blocking", "promise" ], - "time": "2022-02-20T17:52:18+00:00" + "time": "2024-03-21T18:52:26+00:00" }, { "name": "amphp/byte-stream", - "version": "v1.8.1", + "version": "v1.8.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd", - "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd", + "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc", + "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc", "shasum": "" }, "require": { @@ -83,11 +83,6 @@ "php": ">=7.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "files": [ "lib/functions.php" @@ -110,7 +105,7 @@ } ], "description": "A stream abstraction to make working with non-blocking I/O simple.", - "homepage": "http://amphp.org/byte-stream", + "homepage": "https://amphp.org/byte-stream", "keywords": [ "amp", "amphp", @@ -119,15 +114,15 @@ "non-blocking", "stream" ], - "time": "2021-03-30T17:13:30+00:00" + "time": "2024-04-13T18:00:56+00:00" }, { "name": "amphp/cache", - "version": "v1.5.0", + "version": "v1.5.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/cache/zipball/2b6b5dbb70e54cc914df9952ba7c012bc4cbcd28", - "reference": "2b6b5dbb70e54cc914df9952ba7c012bc4cbcd28", + "url": "https://api.github.com/repos/amphp/cache/zipball/fe78cfae2fb8c92735629b8cd1893029c73c9b63", + "reference": "fe78cfae2fb8c92735629b8cd1893029c73c9b63", "shasum": "" }, "require": { @@ -160,7 +155,7 @@ ], "description": "A promise-aware caching API for Amp.", "homepage": "https://github.com/amphp/cache", - "time": "2021-06-29T17:12:43+00:00" + "time": "2024-03-21T19:35:02+00:00" }, { "name": "amphp/dns", @@ -230,11 +225,11 @@ }, { "name": "amphp/hpack", - "version": "v3.2.0", + "version": "v3.2.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/hpack/zipball/95895d29ae577a3a5995b46d16def04e11e39947", - "reference": "95895d29ae577a3a5995b46d16def04e11e39947", + "url": "https://api.github.com/repos/amphp/hpack/zipball/4f293064b15682a2b178b1367ddf0b8b5feb0239", + "reference": "4f293064b15682a2b178b1367ddf0b8b5feb0239", "shasum": "" }, "require": { @@ -278,15 +273,15 @@ "hpack", "http-2" ], - "time": "2023-09-05T19:59:20+00:00" + "time": "2024-03-21T19:00:16+00:00" }, { "name": "amphp/http", - "version": "v1.7.1", + "version": "v1.7.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/http/zipball/0d729b09fbace00dd1fd35ae8d4d45eb25f39d96", - "reference": "0d729b09fbace00dd1fd35ae8d4d45eb25f39d96", + "url": "https://api.github.com/repos/amphp/http/zipball/3a33e68a3b53f7279217238e89748cf0cb30b8a6", + "reference": "3a33e68a3b53f7279217238e89748cf0cb30b8a6", "shasum": "" }, "require": { @@ -317,15 +312,15 @@ } ], "description": "Basic HTTP primitives which can be shared by servers and clients.", - "time": "2023-02-08T00:29:51+00:00" + "time": "2024-04-03T17:45:14+00:00" }, { "name": "amphp/http-client", - "version": "v4.6.3", + "version": "v4.6.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/http-client/zipball/6d4dcc7b7bd9a6ea58e26652eba632ccbc16c030", - "reference": "6d4dcc7b7bd9a6ea58e26652eba632ccbc16c030", + "url": "https://api.github.com/repos/amphp/http-client/zipball/f607a33f81c7b3aafe80cf6c6ed438ca245bbbe3", + "reference": "f607a33f81c7b3aafe80cf6c6ed438ca245bbbe3", "shasum": "" }, "require": { @@ -388,7 +383,7 @@ "non-blocking", "rest" ], - "time": "2023-08-15T20:09:57+00:00" + "time": "2024-03-21T19:51:27+00:00" }, { "name": "amphp/parallel", @@ -445,11 +440,11 @@ }, { "name": "amphp/parser", - "version": "v1.1.0", + "version": "v1.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/parser/zipball/ff1de4144726c5dad5fab97f66692ebe8de3e151", - "reference": "ff1de4144726c5dad5fab97f66692ebe8de3e151", + "url": "https://api.github.com/repos/amphp/parser/zipball/3cf1f8b32a0171d4b1bed93d25617637a77cded7", + "reference": "3cf1f8b32a0171d4b1bed93d25617637a77cded7", "shasum": "" }, "require": { @@ -482,21 +477,31 @@ "parser", "stream" ], - "time": "2022-12-30T18:08:47+00:00" + "time": "2024-03-21T19:16:53+00:00" }, { "name": "amphp/process", - "version": "v1.1.4", + "version": "v1.1.7", + "source": { + "type": "git", + "url": "https://github.com/amphp/process.git", + "reference": "1949d85b6d71af2818ff68144304a98495628f19" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/process/zipball/76e9495fd6818b43a20167cb11d8a67f7744ee0f", - "reference": "76e9495fd6818b43a20167cb11d8a67f7744ee0f", + "url": "https://api.github.com/repos/amphp/process/zipball/1949d85b6d71af2818ff68144304a98495628f19", + "reference": "1949d85b6d71af2818ff68144304a98495628f19", "shasum": "" }, "require": { "amphp/amp": "^2", "amphp/byte-stream": "^1.4", - "php": ">=7" + "php": ">=7.1" + }, + "require-dev": { + "amphp/php-cs-fixer-config": "dev-master", + "amphp/phpunit-util": "^1", + "phpunit/phpunit": "^6" }, "type": "library", "autoload": { @@ -507,6 +512,7 @@ "Amp\\Process\\": "lib" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -526,7 +532,17 @@ ], "description": "Asynchronous process manager.", "homepage": "https://github.com/amphp/process", - "time": "2022-07-06T23:50:12+00:00" + "support": { + "issues": "https://github.com/amphp/process/issues", + "source": "https://github.com/amphp/process/tree/v1.1.7" + }, + "funding": [ + { + "url": "https://github.com/amphp", + "type": "github" + } + ], + "time": "2024-04-19T03:00:28+00:00" }, { "name": "amphp/serialization", @@ -574,11 +590,11 @@ }, { "name": "amphp/socket", - "version": "v1.2.0", + "version": "v1.2.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/socket/zipball/a8af9f5d0a66c5fe9567da45a51509e592788fe6", - "reference": "a8af9f5d0a66c5fe9567da45a51509e592788fe6", + "url": "https://api.github.com/repos/amphp/socket/zipball/b00528bd75548b7ae06a502358bb3ff8b106f5ab", + "reference": "b00528bd75548b7ae06a502358bb3ff8b106f5ab", "shasum": "" }, "require": { @@ -633,7 +649,7 @@ "tcp", "tls" ], - "time": "2021-07-09T18:18:48+00:00" + "time": "2024-03-21T18:12:22+00:00" }, { "name": "amphp/sync", @@ -756,11 +772,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.297.2", + "version": "3.304.8", + "source": { + "type": "git", + "url": "https://github.com/aws/aws-sdk-php.git", + "reference": "0079eaa0a0eaef2d73d0a4a11389cdfce1d33189" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bbf516a4a88f829f92cc396628be705966880dbd", - "reference": "bbf516a4a88f829f92cc396628be705966880dbd", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0079eaa0a0eaef2d73d0a4a11389cdfce1d33189", + "reference": "0079eaa0a0eaef2d73d0a4a11389cdfce1d33189", "shasum": "" }, "require": { @@ -775,6 +796,25 @@ "php": ">=7.2.5", "psr/http-message": "^1.0 || ^2.0" }, + "require-dev": { + "andrewsville/php-token-reflection": "^1.4", + "aws/aws-php-sns-message-validator": "~1.0", + "behat/behat": "~3.0", + "composer/composer": "^1.10.22", + "dms/phpunit-arraysubset-asserts": "^0.4.0", + "doctrine/cache": "~1.4", + "ext-dom": "*", + "ext-openssl": "*", + "ext-pcntl": "*", + "ext-sockets": "*", + "nette/neon": "^2.3", + "paragonie/random_compat": ">= 2", + "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5", + "psr/cache": "^1.0", + "psr/simple-cache": "^1.0", + "sebastian/comparator": "^1.2.3 || ^4.0", + "yoast/phpunit-polyfills": "^1.0" + }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", "doctrine/cache": "To use the DoctrineCacheAdapter", @@ -796,6 +836,7 @@ "Aws\\": "src/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], @@ -817,7 +858,12 @@ "s3", "sdk" ], - "time": "2024-01-26T19:09:20+00:00" + "support": { + "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", + "issues": "https://github.com/aws/aws-sdk-php/issues", + "source": "https://github.com/aws/aws-sdk-php/tree/3.304.8" + }, + "time": "2024-04-19T18:13:09+00:00" }, { "name": "brick/math", @@ -951,17 +997,17 @@ }, { "name": "composer/ca-bundle", - "version": "1.4.0", + "version": "1.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385", - "reference": "b66d11b7479109ab547f9405b97205640b17d385", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", + "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", "shasum": "" }, "require": { "ext-openssl": "*", "ext-pcre": "*", - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { @@ -992,15 +1038,15 @@ "ssl", "tls" ], - "time": "2023-12-18T12:05:55+00:00" + "time": "2024-03-15T14:00:32+00:00" }, { "name": "composer/class-map-generator", - "version": "1.1.0", + "version": "1.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9", - "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8286a62d243312ed99b3eee20d5005c961adb311", + "reference": "8286a62d243312ed99b3eee20d5005c961adb311", "shasum": "" }, "require": { @@ -1033,15 +1079,20 @@ "keywords": [ "classmap" ], - "time": "2023-06-30T13:58:57+00:00" + "time": "2024-03-15T12:53:41+00:00" }, { "name": "composer/composer", - "version": "2.6.6", + "version": "2.7.3", + "source": { + "type": "git", + "url": "https://github.com/composer/composer.git", + "reference": "e49be96f3bccd183c9ff1313686c06cf898ba4be" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/683557bd2466072777309d039534bb1332d0dda5", - "reference": "683557bd2466072777309d039534bb1332d0dda5", + "url": "https://api.github.com/repos/composer/composer/zipball/e49be96f3bccd183c9ff1313686c06cf898ba4be", + "reference": "e49be96f3bccd183c9ff1313686c06cf898ba4be", "shasum": "" }, "require": { @@ -1059,7 +1110,7 @@ "seld/jsonlint": "^1.4", "seld/phar-utils": "^1.2", "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.11 || ^6.0.11", + "symfony/console": "^5.4.11 || ^6.0.11 || ^7", "symfony/filesystem": "^5.4 || ^6.0 || ^7", "symfony/finder": "^5.4 || ^6.0 || ^7", "symfony/polyfill-php73": "^1.24", @@ -1067,6 +1118,14 @@ "symfony/polyfill-php81": "^1.24", "symfony/process": "^5.4 || ^6.0 || ^7" }, + "require-dev": { + "phpstan/phpstan": "^1.9.3", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan-strict-rules": "^1", + "phpstan/phpstan-symfony": "^1.2.10", + "symfony/phpunit-bridge": "^6.4.1 || ^7.0.1" + }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", "ext-zip": "Enabling the zip extension allows you to unzip archives", @@ -1078,7 +1137,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.6-dev" + "dev-main": "2.7-dev" }, "phpstan": { "includes": [ @@ -1091,6 +1150,7 @@ "Composer\\": "src/Composer/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -1113,7 +1173,27 @@ "dependency", "package" ], - "time": "2023-12-08T17:32:26+00:00" + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.7.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-04-19T19:40:57+00:00" }, { "name": "composer/metadata-minifier", @@ -1157,11 +1237,11 @@ }, { "name": "composer/pcre", - "version": "3.1.1", + "version": "3.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9", - "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9", + "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", "shasum": "" }, "require": { @@ -1195,7 +1275,7 @@ "regex", "regular expression" ], - "time": "2023-10-11T07:11:09+00:00" + "time": "2024-03-19T10:26:25+00:00" }, { "name": "composer/semver", @@ -1302,11 +1382,11 @@ }, { "name": "composer/xdebug-handler", - "version": "3.0.3", + "version": "3.0.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", - "reference": "ced299686f41dce890debac69273b47ffe98a40c", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255", "shasum": "" }, "require": { @@ -1334,15 +1414,15 @@ "Xdebug", "performance" ], - "time": "2022-02-25T21:32:43+00:00" + "time": "2024-03-26T18:29:49+00:00" }, { "name": "craftcms/ckeditor", - "version": "3.7.1", + "version": "3.8.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/5eef932ccd1fcce6507a1896cfce39a176785e21", - "reference": "5eef932ccd1fcce6507a1896cfce39a176785e21", + "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/2dada986452c8a403c3ca652e87fe3a440fe9bf5", + "reference": "2dada986452c8a403c3ca652e87fe3a440fe9bf5", "shasum": "" }, "require": { @@ -1386,20 +1466,20 @@ "docs": "https://github.com/craftcms/ckeditor/blob/master/README.md", "rss": "https://github.com/craftcms/ckeditor/commits/master.atom" }, - "time": "2024-02-02T06:23:03+00:00" + "time": "2024-03-28T19:52:16+00:00" }, { "name": "craftcms/cms", - "version": "4.7.1", + "version": "4.8.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/887b4ca440dd554b0233ec077ef3b9a725df53e8", - "reference": "887b4ca440dd554b0233ec077ef3b9a725df53e8", + "url": "https://api.github.com/repos/craftcms/cms/zipball/81fc5457658ff2906e9c120f3d3f71621b1d9b73", + "reference": "81fc5457658ff2906e9c120f3d3f71621b1d9b73", "shasum": "" }, "require": { "commerceguys/addressing": "^1.2", - "composer/composer": "^2.2.19", + "composer/composer": "^2.7.0", "craftcms/plugin-installer": "~1.6.0", "craftcms/server-check": "~2.1.2", "creocoder/yii2-nested-sets": "~0.9.0", @@ -1428,7 +1508,7 @@ "symfony/var-dumper": "^5.0|^6.0", "symfony/yaml": "^5.2.3", "theiconic/name-parser": "^1.2", - "twig/twig": "~3.4.3", + "twig/twig": "~3.8.0", "voku/stringy": "^6.4.0", "webonyx/graphql-php": "~14.11.5", "yiisoft/yii2": "~2.0.48.1", @@ -1482,18 +1562,19 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-01-29T18:59:43+00:00" + "time": "2024-04-10T22:40:32+00:00" }, { "name": "craftcms/html-field", - "version": "2.0.8", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/html-field/zipball/4797c9cb0397e6d69d25d9716a75f7b47c69fd3a", - "reference": "4797c9cb0397e6d69d25d9716a75f7b47c69fd3a", + "url": "https://api.github.com/repos/craftcms/html-field/zipball/80c232ef92960748553afd27c87f2c0ef4bd4d93", + "reference": "80c232ef92960748553afd27c87f2c0ef4bd4d93", "shasum": "" }, "require": { + "craftcms/cms": "^4.2.0", "php": "^8.0.2" }, "type": "library", @@ -1519,7 +1600,7 @@ "docs": "https://github.com/craftcms/html-field/blob/main/README.md", "rss": "https://github.com/craftcms/html-field/commits/main.atom" }, - "time": "2023-09-17T11:24:51+00:00" + "time": "2024-03-06T18:13:29+00:00" }, { "name": "craftcms/plugin-installer", @@ -1701,16 +1782,16 @@ }, { "name": "daverandom/libdns", - "version": "v2.0.3", + "version": "v2.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/DaveRandom/LibDNS/zipball/42c2d700d1178c9f9e78664793463f7f1aea248c", - "reference": "42c2d700d1178c9f9e78664793463f7f1aea248c", + "url": "https://api.github.com/repos/DaveRandom/LibDNS/zipball/b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a", + "reference": "b84c94e8fe6b7ee4aecfe121bfe3b6177d303c8a", "shasum": "" }, "require": { "ext-ctype": "*", - "php": ">=7.0" + "php": ">=7.1" }, "suggest": { "ext-intl": "Required for IDN support" @@ -1731,7 +1812,7 @@ "keywords": [ "dns" ], - "time": "2022-09-20T18:15:38+00:00" + "time": "2024-04-12T12:12:48+00:00" }, { "name": "defuse/php-encryption", @@ -1788,11 +1869,11 @@ }, { "name": "doctrine/collections", - "version": "2.1.4", + "version": "2.2.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134", - "reference": "72328a11443a0de79967104ad36ba7b30bded134", + "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59", + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59", "shasum": "" }, "require": { @@ -1838,7 +1919,7 @@ "iterators", "php" ], - "time": "2023-10-03T09:22:33+00:00" + "time": "2024-04-18T06:56:21+00:00" }, { "name": "doctrine/deprecations", @@ -1870,11 +1951,11 @@ }, { "name": "doctrine/lexer", - "version": "3.0.0", + "version": "3.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", - "reference": "84a527db05647743d50373e0ec53a152f2cde568", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", "shasum": "" }, "require": { @@ -1912,7 +1993,7 @@ "parser", "php" ], - "time": "2022-12-15T16:57:16+00:00" + "time": "2024-02-05T11:56:58+00:00" }, { "name": "dodecastudio/craft-blurhash", @@ -2281,16 +2362,16 @@ }, { "name": "google/auth", - "version": "v1.34.0", + "version": "v1.37.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/155daeadfd2f09743f611ea493b828d382519575", - "reference": "155daeadfd2f09743f611ea493b828d382519575", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46", + "reference": "1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46", "shasum": "" }, "require": { "firebase/php-jwt": "^6.0", - "guzzlehttp/guzzle": "^6.2.1|^7.0", + "guzzlehttp/guzzle": "^6.5.8||^7.4.5", "guzzlehttp/psr7": "^2.4.5", "php": "^7.4||^8.0", "psr/cache": "^1.0||^2.0||^3.0", @@ -2315,25 +2396,25 @@ "google", "oauth2" ], - "time": "2024-01-03T20:45:15+00:00" + "time": "2024-04-03T18:41:12+00:00" }, { "name": "google/cloud-core", - "version": "v1.54.0", + "version": "v1.57.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/cd3f670dbb7f6a5b9b550b0d1b8e5b6ed148fb58", - "reference": "cd3f670dbb7f6a5b9b550b0d1b8e5b6ed148fb58", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/a6bbc85a5ff2edc1c29344e3aaaa0a099d569748", + "reference": "a6bbc85a5ff2edc1c29344e3aaaa0a099d569748", "shasum": "" }, "require": { "google/auth": "^1.34", - "google/gax": "^1.26.3", + "google/gax": "^1.30", "guzzlehttp/guzzle": "^6.5.8|^7.4.4", "guzzlehttp/promises": "^1.4||^2.0", "guzzlehttp/psr7": "^2.6", "monolog/monolog": "^2.9|^3.0", - "php": ">=7.4", + "php": "^8.0", "psr/http-message": "^1.0|^2.0", "rize/uri-template": "~0.3" }, @@ -2362,20 +2443,20 @@ "Apache-2.0" ], "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.", - "time": "2024-01-26T20:27:24+00:00" + "time": "2024-04-12T23:38:19+00:00" }, { "name": "google/cloud-storage", - "version": "v1.37.1", + "version": "v1.41.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/7982d8afc3d0b2fc6b2676b329d05abadc5c2554", - "reference": "7982d8afc3d0b2fc6b2676b329d05abadc5c2554", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/3b6d7c13970f0c80f2450d2ec1241d7deaad3dda", + "reference": "3b6d7c13970f0c80f2450d2ec1241d7deaad3dda", "shasum": "" }, "require": { - "google/cloud-core": "^1.53", - "php": ">=7.4", + "google/cloud-core": "^1.55", + "php": "^8.0", "ramsey/uuid": "^4.2.3" }, "suggest": { @@ -2400,20 +2481,20 @@ "Apache-2.0" ], "description": "Cloud Storage Client for PHP", - "time": "2024-01-26T20:27:24+00:00" + "time": "2024-04-12T23:38:19+00:00" }, { "name": "google/common-protos", - "version": "v4.5.0", + "version": "v4.6.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/dfc232e90823cedca107b56e7371f2e2f35b9427", - "reference": "dfc232e90823cedca107b56e7371f2e2f35b9427", + "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/f8588298a0a204aef2db15ce501530e476ec883f", + "reference": "f8588298a0a204aef2db15ce501530e476ec883f", "shasum": "" }, "require": { - "google/protobuf": "^3.6.1", - "php": ">=7.4" + "google/protobuf": "^v3.25.3||^4.26.1", + "php": "^8.0" }, "type": "library", "autoload": { @@ -2439,27 +2520,28 @@ "keywords": [ "google" ], - "time": "2023-11-29T21:08:16+00:00" + "time": "2024-04-03T19:11:54+00:00" }, { "name": "google/gax", - "version": "v1.26.3", + "version": "v1.30.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/gax-php/zipball/b7c782dcc40957ad84c9da947cc201f42e97859e", - "reference": "b7c782dcc40957ad84c9da947cc201f42e97859e", + "url": "https://api.github.com/repos/googleapis/gax-php/zipball/2deeb24898d0ba3c4faba48f7f0cfcc1ef341613", + "reference": "2deeb24898d0ba3c4faba48f7f0cfcc1ef341613", "shasum": "" }, "require": { "google/auth": "^1.34.0", "google/common-protos": "^4.4", - "google/grpc-gcp": "^0.2||^0.3", + "google/grpc-gcp": "^0.4", "google/longrunning": "~0.2", - "google/protobuf": "^3.22", + "google/protobuf": "^v3.25.3||^4.26.1", "grpc/grpc": "^1.13", - "guzzlehttp/promises": "^1.4||^2.0", + "guzzlehttp/promises": "^2.0", "guzzlehttp/psr7": "^2.0", - "php": ">=7.4" + "php": "^8.0", + "ramsey/uuid": "^4.0" }, "conflict": { "ext-protobuf": "<3.7.0" @@ -2479,22 +2561,22 @@ "keywords": [ "google" ], - "time": "2024-01-18T20:24:45+00:00" + "time": "2024-04-03T19:04:34+00:00" }, { "name": "google/grpc-gcp", - "version": "v0.3.0", + "version": "v0.4.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/4d8b455a45a89f57e1552cadc41a43bc34c40456", - "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456", + "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/2a80dbf690922aa52bb6bb79b9a32a9637a5c2d9", + "reference": "2a80dbf690922aa52bb6bb79b9a32a9637a5c2d9", "shasum": "" }, "require": { "google/auth": "^1.3", - "google/protobuf": "^v3.3.0", + "google/protobuf": "^v3.25.3||^4.26.1", "grpc/grpc": "^v1.13.0", - "php": "^7.4||^8.0", + "php": "^8.0", "psr/cache": "^1.0.1||^2.0.0||^3.0.0" }, "type": "library", @@ -2510,15 +2592,15 @@ "Apache-2.0" ], "description": "gRPC GCP library for channel management", - "time": "2023-04-24T14:37:29+00:00" + "time": "2024-04-03T16:37:55+00:00" }, { "name": "google/longrunning", - "version": "0.3.0", + "version": "0.4.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/c21cb8f8794f724ca672dad94bf7d406e62476b9", - "reference": "c21cb8f8794f724ca672dad94bf7d406e62476b9", + "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/6841b03479d5a397a64036a99c33d8ee06bc8b42", + "reference": "6841b03479d5a397a64036a99c33d8ee06bc8b42", "shasum": "" }, "type": "library", @@ -2541,15 +2623,15 @@ "Apache-2.0" ], "description": "Google LongRunning Client for PHP", - "time": "2024-01-05T17:46:51+00:00" + "time": "2024-04-12T23:38:19+00:00" }, { "name": "google/protobuf", - "version": "v3.25.2", + "version": "v4.26.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/83ea4c147718666ce6a9b9332ac2aa588c9211eb", - "reference": "83ea4c147718666ce6a9b9332ac2aa588c9211eb", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/5c46b0eb09e7ad3e6efef3c5a85e2a34108c52ae", + "reference": "5c46b0eb09e7ad3e6efef3c5a85e2a34108c52ae", "shasum": "" }, "require": { @@ -2573,7 +2655,7 @@ "keywords": [ "proto" ], - "time": "2024-01-09T22:12:32+00:00" + "time": "2024-03-27T19:56:50+00:00" }, { "name": "graham-campbell/result-type", @@ -3318,11 +3400,11 @@ }, { "name": "league/uri", - "version": "7.4.0", + "version": "7.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/bf414ba956d902f5d98bf9385fcf63954f09dce5", - "reference": "bf414ba956d902f5d98bf9385fcf63954f09dce5", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4", + "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4", "shasum": "" }, "require": { @@ -3386,15 +3468,15 @@ "url", "ws" ], - "time": "2023-12-01T06:24:25+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "league/uri-interfaces", - "version": "7.4.0", + "version": "7.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/bd8c487ec236930f7bbc42b8d374fa882fbba0f3", - "reference": "bd8c487ec236930f7bbc42b8d374fa882fbba0f3", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", "shasum": "" }, "require": { @@ -3452,7 +3534,7 @@ "url", "ws" ], - "time": "2023-11-24T15:40:42+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "league/uri-parser", @@ -3707,11 +3789,11 @@ }, { "name": "mmikkel/cp-clearcache", - "version": "1.3.0", + "version": "1.3.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/mmikkel/CpClearCache-Craft/zipball/770e6db3c45a9ae306ae2e61051cdbd8cebfdd85", - "reference": "770e6db3c45a9ae306ae2e61051cdbd8cebfdd85", + "url": "https://api.github.com/repos/mmikkel/CpClearCache-Craft/zipball/81ff133e845f6939622ec4e226acb82436305749", + "reference": "81ff133e845f6939622ec4e226acb82436305749", "shasum": "" }, "require": { @@ -3754,7 +3836,7 @@ "docs": "https://github.com/mmikkel/CpClearCache-Craft/blob/master/README.md", "issues": "https://github.com/mmikkel/CpClearCache-Craft/issues" }, - "time": "2022-11-10T17:31:41+00:00" + "time": "2024-03-30T13:09:15+00:00" }, { "name": "mmikkel/cp-field-inspect", @@ -3809,18 +3891,18 @@ }, { "name": "moneyphp/money", - "version": "v4.4.0", + "version": "v4.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/moneyphp/money/zipball/5e60aebf09f709dd4ea16bf85e66d65301c0d172", - "reference": "5e60aebf09f709dd4ea16bf85e66d65301c0d172", + "url": "https://api.github.com/repos/moneyphp/money/zipball/a1daa7daf159b4044e3d0c34c41fe2be5860e850", + "reference": "a1daa7daf159b4044e3d0c34c41fe2be5860e850", "shasum": "" }, "require": { "ext-bcmath": "*", "ext-filter": "*", "ext-json": "*", - "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "suggest": { "ext-gmp": "Calculate without integer limits", @@ -3865,15 +3947,15 @@ "money", "vo" ], - "time": "2024-01-24T08:29:16+00:00" + "time": "2024-02-15T19:47:21+00:00" }, { "name": "monolog/monolog", - "version": "2.9.2", + "version": "2.9.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", - "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215", + "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215", "shasum": "" }, "require": { @@ -3927,7 +4009,7 @@ "logging", "psr-3" ], - "time": "2023-10-27T15:25:26+00:00" + "time": "2024-04-12T20:52:51+00:00" }, { "name": "mrclay/jsmin-php", @@ -4116,15 +4198,15 @@ }, { "name": "nystudio107/craft-code-editor", - "version": "1.0.17", + "version": "1.0.19", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/d2d9c8706fc1a6f40253fc78762101ce9b5ac386", - "reference": "d2d9c8706fc1a6f40253fc78762101ce9b5ac386", + "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/a793406e62cd6c7d8e25ac5e0fb2208b4206815b", + "reference": "a793406e62cd6c7d8e25ac5e0fb2208b4206815b", "shasum": "" }, "require": { - "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0-alpha.1", + "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0", "phpdocumentor/reflection-docblock": "^5.0.0" }, "type": "yii2-extension", @@ -4158,7 +4240,7 @@ "markdown", "twig" ], - "time": "2024-01-30T03:18:54+00:00" + "time": "2024-04-15T16:35:48+00:00" }, { "name": "nystudio107/craft-code-field", @@ -4260,15 +4342,15 @@ }, { "name": "nystudio107/craft-minify", - "version": "4.0.0-beta.2", + "version": "4.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-minify/zipball/8ed542b3b67a52893c36814934e59914487da26a", - "reference": "8ed542b3b67a52893c36814934e59914487da26a", + "url": "https://api.github.com/repos/nystudio107/craft-minify/zipball/e3291ffbcc8fa53461663ed0d79c0a9d21d9fdd6", + "reference": "e3291ffbcc8fa53461663ed0d79c0a9d21d9fdd6", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0-alpha", + "craftcms/cms": "^4.0.0", "mrclay/minify": "^3.0.10" }, "type": "craft-plugin", @@ -4304,15 +4386,15 @@ "issues": "https://nystudio107.com/plugins/minify/support", "source": "https://github.com/nystudio107/craft-minify" }, - "time": "2022-03-09T03:37:27+00:00" + "time": "2024-02-11T00:11:36+00:00" }, { "name": "nystudio107/craft-plugin-vite", - "version": "4.0.9", + "version": "4.0.10", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/b6f727e6e54e2c312e02595beec0f8318399fc97", - "reference": "b6f727e6e54e2c312e02595beec0f8318399fc97", + "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/4ff8dfabd51663fcb081f092eeeba1ed2ed88a50", + "reference": "4ff8dfabd51663fcb081f092eeeba1ed2ed88a50", "shasum": "" }, "require": { @@ -4343,7 +4425,7 @@ "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v4/README.md", "issues": "https://github.com/nystudio107/craft-plugin-vite/issues" }, - "time": "2024-01-30T18:20:12+00:00" + "time": "2024-03-02T05:06:52+00:00" }, { "name": "nystudio107/craft-scripts", @@ -4392,11 +4474,11 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.0.38", + "version": "4.0.48", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/2508dd5c39016ad3d03b2593bc8865b14655dcdf", - "reference": "2508dd5c39016ad3d03b2593bc8865b14655dcdf", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/4f81d00701e3c5cb6882dc76008ad7426177035f", + "reference": "4f81d00701e3c5cb6882dc76008ad7426177035f", "shasum": "" }, "require": { @@ -4448,20 +4530,20 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2024-01-22T20:12:43+00:00" + "time": "2024-04-10T18:16:53+00:00" }, { "name": "nystudio107/craft-vite", - "version": "4.0.8", + "version": "4.0.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/f6523874d44bac8e35036598cdc6dc35b621f2ca", - "reference": "f6523874d44bac8e35036598cdc6dc35b621f2ca", + "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/de42712a3c68454c4b25a0d110b95eb6f7020993", + "reference": "de42712a3c68454c4b25a0d110b95eb6f7020993", "shasum": "" }, "require": { "craftcms/cms": "^4.0.0", - "nystudio107/craft-plugin-vite": "^4.0.9" + "nystudio107/craft-plugin-vite": "^4.0.10" }, "type": "craft-plugin", "extra": { @@ -4497,7 +4579,7 @@ "issues": "https://nystudio107.com/plugins/vite/support", "source": "https://github.com/nystudio107/craft-vite" }, - "time": "2024-01-30T18:27:14+00:00" + "time": "2024-03-02T05:11:19+00:00" }, { "name": "oscarotero/html-parser", @@ -4705,18 +4787,20 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "version": "5.4.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a", + "reference": "298d2febfe79d03fe714eb871d5538da55205b1a", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.1", "ext-filter": "*", - "php": "^7.2 || ^8.0", + "php": "^7.4 || ^8.0", "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", "webmozart/assert": "^1.9.1" }, "type": "library", @@ -4740,24 +4824,24 @@ }, { "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "email": "opensource@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2021-10-19T17:43:47+00:00" + "time": "2024-04-09T21:13:58+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.8.0", + "version": "1.8.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fad452781b3d774e3337b0c0b245dd8e5a4455fc", - "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c", + "reference": "153ae662783729388a584b4361f2545e4d841e3c", "shasum": "" }, "require": { "doctrine/deprecations": "^1.0", - "php": "^7.4 || ^8.0", + "php": "^7.3 || ^8.0", "phpdocumentor/reflection-common": "^2.0", "phpstan/phpdoc-parser": "^1.13" }, @@ -4782,7 +4866,7 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2024-01-11T11:49:22+00:00" + "time": "2024-02-23T11:10:43+00:00" }, { "name": "phpoption/phpoption", @@ -4837,11 +4921,11 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.25.0", + "version": "1.28.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", + "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", "shasum": "" }, "require": { @@ -4859,7 +4943,7 @@ "MIT" ], "description": "PHPDoc parser with support for nullable, intersection and generic types", - "time": "2024-01-04T17:06:16+00:00" + "time": "2024-04-03T18:51:33+00:00" }, { "name": "pimple/pimple", @@ -5292,20 +5376,20 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.10.3", + "version": "4.16.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/706905dbee69be0c1a0583e5391d1d92210ece47", - "reference": "706905dbee69be0c1a0583e5391d1d92210ece47", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/9ad5246dd3fae939f007d099780c09b05329160d", + "reference": "9ad5246dd3fae939f007d099780c09b05329160d", "shasum": "" }, "require": { "amphp/http-client": "^4.0", "amphp/parallel": "^1.0", - "craftcms/cms": "^4.0", + "craftcms/cms": "^4.4", "cypresslab/gitelephant": "^4.0", "php": "^8.0.2", - "putyourlightson/craft-blitz-hints": "^1.1.1", + "putyourlightson/craft-blitz-hints": "^1.2.2", "putyourlightson/craft-sprig-core": "^2.6.4" }, "type": "craft-plugin", @@ -5341,15 +5425,15 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-01-13T13:24:59+00:00" + "time": "2024-04-13T01:55:59+00:00" }, { "name": "putyourlightson/craft-blitz-hints", - "version": "1.1.1", + "version": "1.2.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz-hints/zipball/5531616033c61a3c44d85f6c219cd59dca89a391", - "reference": "5531616033c61a3c44d85f6c219cd59dca89a391", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz-hints/zipball/a7a95485454ee61e7093a362f15c33d075fd2dd9", + "reference": "a7a95485454ee61e7093a362f15c33d075fd2dd9", "shasum": "" }, "require": { @@ -5371,7 +5455,7 @@ "source": "https://github.com/putyourlightson/craft-blitz-hints", "issues": "https://github.com/putyourlightson/craft-blitz-hints/issues" }, - "time": "2023-11-01T11:58:04+00:00" + "time": "2024-04-16T14:56:13+00:00" }, { "name": "putyourlightson/craft-elements-panel", @@ -5414,11 +5498,11 @@ }, { "name": "putyourlightson/craft-sherlock", - "version": "4.4.1", + "version": "4.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sherlock/zipball/1fc82f3230563398040b209491499c023fc04d0f", - "reference": "1fc82f3230563398040b209491499c023fc04d0f", + "url": "https://api.github.com/repos/putyourlightson/craft-sherlock/zipball/b0ea322825de04abf6fc13cd2e412e1f53509d2e", + "reference": "b0ea322825de04abf6fc13cd2e412e1f53509d2e", "shasum": "" }, "require": { @@ -5458,22 +5542,22 @@ "source": "https://github.com/putyourlightson/craft-sherlock", "issues": "https://github.com/putyourlightson/craft-sherlock/issues" }, - "time": "2024-01-12T14:24:32+00:00" + "time": "2024-03-25T14:18:36+00:00" }, { "name": "putyourlightson/craft-sprig", - "version": "2.7.3", + "version": "2.8.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/850bf29b99a47077fbd1ba6c9b4189b7b883e114", - "reference": "850bf29b99a47077fbd1ba6c9b4189b7b883e114", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/930406dfbf8dd8bc037c4b8e36b944d07a69cd67", + "reference": "930406dfbf8dd8bc037c4b8e36b944d07a69cd67", "shasum": "" }, "require": { "craftcms/cms": "^4.0", "nystudio107/craft-code-editor": "^1.0.0", "php": "^8.0.2", - "putyourlightson/craft-sprig-core": "^2.6.4" + "putyourlightson/craft-sprig-core": "^2.7.0" }, "type": "craft-plugin", "extra": { @@ -5499,15 +5583,15 @@ "source": "https://github.com/putyourlightson/craft-sprig", "issues": "https://github.com/putyourlightson/craft-sprig/issues" }, - "time": "2023-12-12T15:09:09+00:00" + "time": "2024-03-27T03:15:23+00:00" }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.6.6", + "version": "2.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/76b1d813bcd29bcad667453f8a3d3e4164b8f043", - "reference": "76b1d813bcd29bcad667453f8a3d3e4164b8f043", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/bd112b1525a8b42c1d59d5635dbe972418d318bd", + "reference": "bd112b1525a8b42c1d59d5635dbe972418d318bd", "shasum": "" }, "require": { @@ -5529,7 +5613,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2023-12-16T01:18:51+00:00" + "time": "2024-03-27T02:39:57+00:00" }, { "name": "ralouphie/getallheaders", @@ -5713,11 +5797,11 @@ }, { "name": "rize/uri-template", - "version": "0.3.5", + "version": "0.3.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/rize/UriTemplate/zipball/5ed4ba8ea34af84485dea815d4b6b620794d1168", - "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168", + "url": "https://api.github.com/repos/rize/UriTemplate/zipball/34efe65c79710eed0883884f2285ae6d4a0aad19", + "reference": "34efe65c79710eed0883884f2285ae6d4a0aad19", "shasum": "" }, "require": { @@ -5744,7 +5828,7 @@ "template", "uri" ], - "time": "2022-10-12T17:22:51+00:00" + "time": "2024-03-10T08:07:49+00:00" }, { "name": "samdark/yii2-psr-log-target", @@ -5829,11 +5913,11 @@ }, { "name": "seld/jsonlint", - "version": "1.10.1", + "version": "1.10.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/76d449a358ece77d6f1d6331c68453e657172202", - "reference": "76d449a358ece77d6f1d6331c68453e657172202", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259", + "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259", "shasum": "" }, "require": { @@ -5865,7 +5949,7 @@ "parser", "validator" ], - "time": "2023-12-18T13:03:25+00:00" + "time": "2024-02-07T12:57:50+00:00" }, { "name": "seld/phar-utils", @@ -5950,16 +6034,16 @@ }, { "name": "spacecatninja/imager-x", - "version": "4.2.4", + "version": "4.4.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/f564938d10a8da3240d5ac73a9e548e88ce8dba4", - "reference": "f564938d10a8da3240d5ac73a9e548e88ce8dba4", + "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/735844afb57151151e6474af209a78552654f8ef", + "reference": "735844afb57151151e6474af209a78552654f8ef", "shasum": "" }, "require": { "aws/aws-sdk-php": "^3.0.0", - "craftcms/cms": "^4.0.0-beta", + "craftcms/cms": "^4.5.0", "google/cloud-storage": "~1.0", "imgix/imgix-php": "^3.0", "kornrunner/blurhash": "^1.1", @@ -6011,7 +6095,7 @@ "docs": "http://imager-x.spacecat.ninja/", "issues": "https://github.com/spacecatninja/craft-imager-x/issues" }, - "time": "2024-01-10T09:29:50+00:00" + "time": "2024-04-05T09:09:27+00:00" }, { "name": "ssnepenthe/color-utils", @@ -6069,15 +6153,15 @@ }, { "name": "studioespresso/craft-dumper", - "version": "3.0.1", + "version": "5.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/studioespresso/craft3-dumper/zipball/35155b80c813f96ee5fa377ada4726c083ce9d3d", - "reference": "35155b80c813f96ee5fa377ada4726c083ce9d3d", + "url": "https://api.github.com/repos/studioespresso/craft-dumper/zipball/3f5c1cfc44cffcefebe9c9b83e94c40b5b75dbc4", + "reference": "3f5c1cfc44cffcefebe9c9b83e94c40b5b75dbc4", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0-RC1" + "craftcms/cms": "^4.0.0|^5.0.0-alpha" }, "type": "craft-plugin", "extra": { @@ -6086,7 +6170,7 @@ "schemaVersion": "1.0.0", "hasCpSettings": false, "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/studioespresso/craft3-dumper/master/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/studioespresso/craft-dumper/master/CHANGELOG.md", "class": "studioespresso\\craftdumper\\CraftDumper" }, "autoload": { @@ -6103,10 +6187,10 @@ "authors": [ { "name": "Studio Espresso", - "homepage": "https://studioespresso.dev" + "homepage": "https://www.studioespresso.co" } ], - "description": "Bringing larapack/dd to Craft CMS", + "description": "Bringing symfony/VarDumper to Craft CMS", "keywords": [ "cms", "craft", @@ -6115,10 +6199,10 @@ "dumper" ], "support": { - "docs": "https://github.com/studioespresso/craft3-dumper/blob/master/README.md", - "issues": "https://github.com/studioespresso/craft3-dumper/issues" + "docs": "https://github.com/studioespresso/craft-dumper/blob/master/README.md", + "issues": "https://github.com/studioespresso/craft-dumper/issues" }, - "time": "2022-05-24T17:49:13+00:00" + "time": "2024-02-21T14:48:06+00:00" }, { "name": "sunra/php-simple-html-dom-parser", @@ -6164,11 +6248,11 @@ }, { "name": "symfony/console", - "version": "v6.4.3", + "version": "v6.4.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", - "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", + "url": "https://api.github.com/repos/symfony/console/zipball/a2708a5da5c87d1d0d52937bdeac625df659e11f", + "reference": "a2708a5da5c87d1d0d52937bdeac625df659e11f", "shasum": "" }, "require": { @@ -6218,7 +6302,7 @@ "console", "terminal" ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-03-29T19:07:53+00:00" }, { "name": "symfony/deprecation-contracts", @@ -6313,11 +6397,11 @@ }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "version": "v3.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224", + "reference": "4e64b49bf370ade88e567de29465762e316e4224", "shasum": "" }, "require": { @@ -6362,15 +6446,15 @@ "interoperability", "standards" ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/filesystem", - "version": "v7.0.3", + "version": "v7.0.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12", - "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/408105dff4c104454100730bdfd1a9cdd993f04d", + "reference": "408105dff4c104454100730bdfd1a9cdd993f04d", "shasum": "" }, "require": { @@ -6402,7 +6486,7 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2024-01-23T15:02:46+00:00" + "time": "2024-03-21T19:37:36+00:00" }, { "name": "symfony/finder", @@ -6444,18 +6528,18 @@ }, { "name": "symfony/http-client", - "version": "v6.4.3", + "version": "v6.4.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/a9034bc119fab8238f76cf49c770f3135f3ead86", - "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86", + "url": "https://api.github.com/repos/symfony/http-client/zipball/6a46c0ea9b099f9a5132d560a51833ffcbd5b0d9", + "reference": "6a46c0ea9b099f9a5132d560a51833ffcbd5b0d9", "shasum": "" }, "require": { "php": ">=8.1", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-client-contracts": "^3", + "symfony/http-client-contracts": "^3.4.1", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -6495,15 +6579,15 @@ "keywords": [ "http" ], - "time": "2024-01-29T15:01:07+00:00" + "time": "2024-04-01T20:35:50+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.4.0", + "version": "v3.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654", - "reference": "1ee70e699b41909c209a0c930f11034b93578654", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e", + "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e", "shasum": "" }, "require": { @@ -6550,15 +6634,15 @@ "interoperability", "standards" ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2024-04-01T18:51:09+00:00" }, { "name": "symfony/mailer", - "version": "v7.0.3", + "version": "v7.0.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/2f71c0f6d62d28784783fdc5477e19dd57065d78", - "reference": "2f71c0f6d62d28784783fdc5477e19dd57065d78", + "url": "https://api.github.com/repos/symfony/mailer/zipball/eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0", + "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0", "shasum": "" }, "require": { @@ -6601,15 +6685,15 @@ ], "description": "Helps sending emails", "homepage": "https://symfony.com", - "time": "2024-01-29T15:41:16+00:00" + "time": "2024-03-28T09:20:36+00:00" }, { "name": "symfony/mime", - "version": "v7.0.3", + "version": "v7.0.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", - "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "url": "https://api.github.com/repos/symfony/mime/zipball/99362408c9abdf8c7cadcf0529b6fc8b16f5ace2", + "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2", "shasum": "" }, "require": { @@ -6652,15 +6736,15 @@ "mime", "mime-type" ], - "time": "2024-01-30T08:34:29+00:00" + "time": "2024-03-21T19:37:36+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", "shasum": "" }, "require": { @@ -6674,9 +6758,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -6711,15 +6792,15 @@ "polyfill", "portable" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", + "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", "shasum": "" }, "require": { @@ -6733,9 +6814,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -6771,15 +6849,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", "shasum": "" }, "require": { @@ -6790,9 +6868,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -6829,15 +6904,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", "shasum": "" }, "require": { @@ -6850,9 +6925,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -6893,15 +6965,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:30:37+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", "shasum": "" }, "require": { @@ -6912,9 +6984,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -6954,15 +7023,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", "shasum": "" }, "require": { @@ -6976,9 +7045,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -7014,15 +7080,15 @@ "portable", "shim" ], - "time": "2023-07-28T09:04:16+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", "shasum": "" }, "require": { @@ -7030,9 +7096,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -7067,15 +7130,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5", - "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2", + "reference": "21bd091060673a1177ae842c0ef8fe30893114d2", "shasum": "" }, "require": { @@ -7083,9 +7146,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -7123,15 +7183,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", "shasum": "" }, "require": { @@ -7139,9 +7199,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -7183,15 +7240,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.28.0", + "version": "v1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", - "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", "shasum": "" }, "require": { @@ -7199,9 +7256,6 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" @@ -7239,15 +7293,15 @@ "portable", "shim" ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/process", - "version": "v6.4.3", + "version": "v6.4.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3", - "reference": "31642b0818bfcff85930344ef93193f8c607e0a3", + "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297", + "reference": "710e27879e9be3395de2b98da3f52a946039f297", "shasum": "" }, "require": { @@ -7277,15 +7331,15 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-02-20T12:31:00+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.1", + "version": "v3.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e", + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e", "shasum": "" }, "require": { @@ -7336,15 +7390,15 @@ "interoperability", "standards" ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2023-12-19T21:51:00+00:00" }, { "name": "symfony/string", - "version": "v7.0.3", + "version": "v7.0.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac", - "reference": "524aac4a280b90a4420d8d6a040718d0586505ac", + "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b", "shasum": "" }, "require": { @@ -7392,15 +7446,15 @@ "utf-8", "utf8" ], - "time": "2024-01-29T15:41:16+00:00" + "time": "2024-02-01T13:17:36+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.35", + "version": "v5.4.38", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ce4685b30e47d94dfc990c5566285ff99ddf012b", - "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ae1d949ccc57d3f6662e4256b47ac9fbfa9651ae", + "reference": "ae1d949ccc57d3f6662e4256b47ac9fbfa9651ae", "shasum": "" }, "require": { @@ -7450,7 +7504,7 @@ "debug", "dump" ], - "time": "2024-01-23T14:28:09+00:00" + "time": "2024-03-19T10:19:25+00:00" }, { "name": "symfony/yaml", @@ -7648,24 +7702,20 @@ }, { "name": "twig/twig", - "version": "v3.4.3", + "version": "v3.8.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58", - "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php80": "^1.22" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Twig\\": "src/" @@ -7696,7 +7746,7 @@ "keywords": [ "templating" ], - "time": "2022-09-28T08:42:51+00:00" + "time": "2023-11-21T18:54:41+00:00" }, { "name": "vaersaagod/matrixmate", @@ -7751,11 +7801,11 @@ }, { "name": "verbb/base", - "version": "2.0.3", + "version": "2.0.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/verbb-base/zipball/fb33550d8bc1c879f3e114ce00ee70d624014b9e", - "reference": "fb33550d8bc1c879f3e114ce00ee70d624014b9e", + "url": "https://api.github.com/repos/verbb/verbb-base/zipball/d8bf72792c826fe4f3785c0942f7f74adb5c2670", + "reference": "d8bf72792c826fe4f3785c0942f7f74adb5c2670", "shasum": "" }, "require": { @@ -7778,15 +7828,15 @@ } ], "description": "Common utilities and building-blocks for Verbb plugins for Craft CMS.", - "time": "2023-09-19T22:50:02+00:00" + "time": "2024-03-13T23:35:14+00:00" }, { "name": "verbb/hyper", - "version": "1.1.20", + "version": "1.1.27", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/b93325b20a3a276e679c1bcf1af82198e15775ef", - "reference": "b93325b20a3a276e679c1bcf1af82198e15775ef", + "url": "https://api.github.com/repos/verbb/hyper/zipball/97decd1470b6ea43436d7148ae3f655f52f6180f", + "reference": "97decd1470b6ea43436d7148ae3f655f52f6180f", "shasum": "" }, "require": { @@ -7832,7 +7882,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-01-30T12:37:21+00:00" + "time": "2024-04-10T13:14:54+00:00" }, { "name": "verbb/image-resizer", @@ -7891,11 +7941,11 @@ }, { "name": "verbb/navigation", - "version": "2.0.25", + "version": "2.0.27", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/navigation/zipball/92455c9f92b0e23b62b241721d4553cab259f532", - "reference": "92455c9f92b0e23b62b241721d4553cab259f532", + "url": "https://api.github.com/repos/verbb/navigation/zipball/9480dc8e85052eb0e52b0b842af3feff756ebe2c", + "reference": "9480dc8e85052eb0e52b0b842af3feff756ebe2c", "shasum": "" }, "require": { @@ -7940,15 +7990,15 @@ "docs": "https://github.com/verbb/navigation", "rss": "https://github.com/verbb/navigation/commits/v2.atom" }, - "time": "2024-01-30T12:34:03+00:00" + "time": "2024-03-17T13:08:40+00:00" }, { "name": "verbb/super-table", - "version": "3.0.12", + "version": "3.0.13", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/super-table/zipball/ba5d7b0ddbd2597c156a0e9913890d391ba54040", - "reference": "ba5d7b0ddbd2597c156a0e9913890d391ba54040", + "url": "https://api.github.com/repos/verbb/super-table/zipball/a4388a50579d3069318ee6307ebc81aa4417ad5d", + "reference": "a4388a50579d3069318ee6307ebc81aa4417ad5d", "shasum": "" }, "require": { @@ -7994,7 +8044,7 @@ "docs": "https://github.com/verbb/super-table", "rss": "https://github.com/verbb/super-table/commits/v2.atom" }, - "time": "2023-10-05T04:08:28+00:00" + "time": "2024-04-10T13:08:25+00:00" }, { "name": "vlucas/phpdotenv", @@ -10025,5 +10075,5 @@ "platform-overrides": { "php": "8.2.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/config/project/project.yaml b/config/project/project.yaml index 19932741..871ad678 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1713558994 +dateModified: 1713560420 elementSources: craft\elements\Asset: - @@ -171,7 +171,7 @@ plugins: edition: standard enabled: true licenseKey: $PLUGIN_BLITZ - schemaVersion: 4.10.1 + schemaVersion: 4.13.0 settings: integrations: - putyourlightson\blitz\drivers\integrations\CommerceIntegration From 28e009708045d555c31e3652cc212201b1101932 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 19 Apr 2024 23:17:31 +0200 Subject: [PATCH 19/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20templates?= =?UTF-8?q?=20and=20plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 9 +- composer.lock | 929 +++--------------- config/general.php | 2 +- config/project/project.yaml | 34 +- templates/_components-sprig/paginateNews.twig | 2 - templates/entry/news/newsDefault.twig | 2 - templates/entry/pages/pageContentBuilder.twig | 2 - templates/index.twig | 2 - 8 files changed, 124 insertions(+), 858 deletions(-) diff --git a/composer.json b/composer.json index 67ac67f5..88681732 100644 --- a/composer.json +++ b/composer.json @@ -4,25 +4,18 @@ "craftcms/cms": "^4.8.9", "dodecastudio/craft-blurhash": "2.0.5", "doublesecretagency/craft-cpcss": "2.6.0", - "mmikkel/cp-clearcache": "1.3.1", "mmikkel/cp-field-inspect": "^1.4.4", "nystudio107/craft-code-field": "4.0.12", "nystudio107/craft-emptycoalesce": "4.0.0", - "nystudio107/craft-minify": "4.0.1", "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.48", "nystudio107/craft-vite": "4.0.9", "putyourlightson/craft-blitz": "4.16.2", "putyourlightson/craft-elements-panel": "2.0.0", - "putyourlightson/craft-sherlock": "4.4.2", "putyourlightson/craft-sprig": "2.8.0", "spacecatninja/imager-x": "4.4.0", - "studioespresso/craft-dumper": "5.0.1", - "vaersaagod/matrixmate": "2.1.4", "verbb/hyper": "1.1.27", - "verbb/image-resizer": "3.0.11", "verbb/navigation": "2.0.27", - "verbb/super-table": "3.0.13", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" }, @@ -82,4 +75,4 @@ "canonical": false } ] -} \ No newline at end of file +} diff --git a/composer.lock b/composer.lock index efb9f3bd..8a3ce377 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c9090be5331087879ff412e4dbb64ff5", + "content-hash": "fb508bf1dbf34c41d39ce88e190fbaa4", "packages": [ { "name": "amphp/amp", @@ -3146,53 +3146,6 @@ ], "time": "2021-03-25T15:10:34+00:00" }, - { - "name": "intervention/httpauth", - "version": "3.0.3", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Intervention/httpauth/zipball/7742aa013e1a72f94379cb6623286f06fa1ea5f7", - "reference": "7742aa013e1a72f94379cb6623286f06fa1ea5f7", - "shasum": "" - }, - "require": { - "php": "^7.3|^8.0" - }, - "type": "library", - "extra": { - "laravel": { - "providers": [ - "Intervention\\HttpAuth\\Laravel\\HttpAuthServiceProvider" - ], - "aliases": { - "HttpAuth": "Intervention\\HttpAuth\\Laravel\\Facades\\HttpAuth" - } - } - }, - "autoload": { - "psr-4": { - "Intervention\\HttpAuth\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Oliver Vogel", - "email": "oliver@olivervogel.com", - "homepage": "https://olivervogel.com/" - } - ], - "description": "HTTP authentication (Basic & Digest) including ServiceProviders for easy Laravel integration", - "homepage": "https://github.com/Intervention/httpauth", - "keywords": [ - "Authentication", - "http", - "laravel" - ], - "time": "2021-01-22T15:08:35+00:00" - }, { "name": "justinrainbow/json-schema", "version": "v5.2.13", @@ -3588,92 +3541,6 @@ ], "time": "2018-11-22T07:55:51+00:00" }, - { - "name": "lsolesen/pel", - "version": "0.9.12", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/pel/pel/zipball/b95fe29cdacf9d36330da277f10910a13648c84c", - "reference": "b95fe29cdacf9d36330da277f10910a13648c84c", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "lsolesen\\pel\\": "src/" - } - }, - "license": [ - "GPL-2.0" - ], - "authors": [ - { - "name": "Lars Olesen", - "email": "lars@intraface.dk", - "homepage": "http://intraface.dk", - "role": "Developer" - }, - { - "name": "Martin Geisler", - "email": "martin@geisler.net", - "homepage": "http://geisler.net", - "role": "Developer" - } - ], - "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.", - "homepage": "http://pel.github.com/pel/", - "keywords": [ - "exif", - "image" - ], - "time": "2022-02-18T13:20:54+00:00" - }, - { - "name": "marcusschwarz/lesserphp", - "version": "v0.5.5", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/MarcusSchwarz/lesserphp/zipball/77ba82b5218ff228267d3b0e5ec8697be75e86a7", - "reference": "77ba82b5218ff228267d3b0e5ec8697be75e86a7", - "shasum": "" - }, - "bin": [ - "plessc" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.5.1-dev" - } - }, - "autoload": { - "classmap": [ - "lessc.inc.php" - ] - }, - "license": [ - "MIT", - "GPL-3.0" - ], - "authors": [ - { - "name": "Leaf Corcoran", - "email": "leafot@gmail.com", - "homepage": "http://leafo.net" - }, - { - "name": "Marcus Schwarz", - "email": "github@maswaba.de", - "homepage": "https://www.maswaba.de" - } - ], - "description": "lesserphp is a compiler for LESS written in PHP based on leafo's lessphp.", - "homepage": "http://leafo.net/lessphp/", - "time": "2021-03-10T17:56:57+00:00" - }, { "name": "mikehaertl/php-shellcommand", "version": "1.7.0", @@ -3787,57 +3654,6 @@ ], "time": "2022-09-29T08:45:17+00:00" }, - { - "name": "mmikkel/cp-clearcache", - "version": "1.3.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mmikkel/CpClearCache-Craft/zipball/81ff133e845f6939622ec4e226acb82436305749", - "reference": "81ff133e845f6939622ec4e226acb82436305749", - "shasum": "" - }, - "require": { - "craftcms/cms": "^3.7.0|^4.0.0-beta.3", - "php": "^7.2.5|^8.0" - }, - "type": "craft-plugin", - "extra": { - "name": "CP Clear Cache", - "handle": "cp-clearcache", - "schemaVersion": "1.0.0", - "hasCpSettings": false, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/mmikkel/CpClearCache-Craft/master/CHANGELOG.md", - "class": "mmikkel\\cpclearcache\\CpClearCache" - }, - "autoload": { - "psr-4": { - "mmikkel\\cpclearcache\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mats Mikkel Rummelhoff", - "homepage": "https://vaersaagod.no" - } - ], - "description": "Less clickin’ to get clearin’", - "keywords": [ - "cms", - "cp clear cache", - "craft", - "craft-plugin", - "craftcms" - ], - "support": { - "docs": "https://github.com/mmikkel/CpClearCache-Craft/blob/master/README.md", - "issues": "https://github.com/mmikkel/CpClearCache-Craft/issues" - }, - "time": "2024-03-30T13:09:15+00:00" - }, { "name": "mmikkel/cp-field-inspect", "version": "1.4.4", @@ -4011,139 +3827,6 @@ ], "time": "2024-04-12T20:52:51+00:00" }, - { - "name": "mrclay/jsmin-php", - "version": "2.4.3", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mrclay/jsmin-php/zipball/49feaa85933458c15bb62ae65644bf22d60b7610", - "reference": "49feaa85933458c15bb62ae65644bf22d60b7610", - "shasum": "" - }, - "require": { - "ext-pcre": "*", - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "JSMin\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Stephen Clay", - "email": "steve@mrclay.org", - "role": "Developer" - }, - { - "name": "Ryan Grove", - "email": "ryan@wonko.com", - "role": "Developer" - } - ], - "description": "Provides a modified port of Douglas Crockford's jsmin.c, which removes unnecessary whitespace from JavaScript files.", - "homepage": "https://github.com/mrclay/jsmin-php/", - "keywords": [ - "compress", - "jsmin", - "minify" - ], - "time": "2022-12-13T20:15:15+00:00" - }, - { - "name": "mrclay/minify", - "version": "3.0.14", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mrclay/minify/zipball/dc02cdfba70737828c947fde33bc3f8235a742f5", - "reference": "dc02cdfba70737828c947fde33bc3f8235a742f5", - "shasum": "" - }, - "require": { - "ext-pcre": "*", - "intervention/httpauth": "^2.0|^3.0", - "marcusschwarz/lesserphp": "^0.5.5", - "monolog/monolog": "~1.1|~2.0|~3.0", - "mrclay/jsmin-php": "~2", - "mrclay/props-dic": "^2.2|^3.0", - "php": "^5.3.0 || ^7.0 || ^8.0", - "tubalmartin/cssmin": "~4" - }, - "suggest": { - "firephp/firephp-core": "Use FirePHP for Log messages", - "meenie/javascript-packer": "Keep track of the Packer PHP port using Composer" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, - "autoload": { - "classmap": [ - "lib/" - ] - }, - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Stephen Clay", - "email": "steve@mrclay.org", - "role": "Developer" - } - ], - "description": "Minify is a PHP app that helps you follow several rules for client-side performance. It combines multiple CSS or Javascript files, removes unnecessary whitespace and comments, and serves them with gzip encoding and optimal client-side cache headers", - "homepage": "https://github.com/mrclay/minify", - "time": "2023-05-05T12:03:06+00:00" - }, - { - "name": "mrclay/props-dic", - "version": "3.0.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mrclay/Props/zipball/63fae3035770feee1836f57c7dd52c0a9b7e5b4d", - "reference": "63fae3035770feee1836f57c7dd52c0a9b7e5b4d", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "pimple/pimple": "~3.0", - "psr/container": "^1.0|^2.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "Props\\": [ - "src/" - ] - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Steve Clay", - "email": "steve@mrclay.org", - "homepage": "http://www.mrclay.org/" - } - ], - "description": "Props is a simple DI container that allows retrieving values via custom property and method names", - "keywords": [ - "container", - "dependency injection", - "dependency injection container", - "di", - "di container" - ], - "time": "2023-02-13T07:32:41+00:00" - }, { "name": "mtdowling/jmespath.php", "version": "2.7.0", @@ -4340,54 +4023,6 @@ }, "time": "2022-08-05T15:55:28+00:00" }, - { - "name": "nystudio107/craft-minify", - "version": "4.0.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-minify/zipball/e3291ffbcc8fa53461663ed0d79c0a9d21d9fdd6", - "reference": "e3291ffbcc8fa53461663ed0d79c0a9d21d9fdd6", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "mrclay/minify": "^3.0.10" - }, - "type": "craft-plugin", - "extra": { - "class": "nystudio107\\minify\\Minify", - "handle": "minify", - "name": "Minify" - }, - "autoload": { - "psr-4": { - "nystudio107\\minify\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "nystudio107", - "homepage": "https://nystudio107.com/" - } - ], - "description": "A simple plugin that allows you to minify blocks of HTML, CSS, and JS inline in Craft CMS templates.", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "minify" - ], - "support": { - "docs": "https://nystudio107.com/docs/minify/", - "issues": "https://nystudio107.com/plugins/minify/support", - "source": "https://github.com/nystudio107/craft-minify" - }, - "time": "2024-02-11T00:11:36+00:00" - }, { "name": "nystudio107/craft-plugin-vite", "version": "4.0.10", @@ -4945,47 +4580,6 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "time": "2024-04-03T18:51:33+00:00" }, - { - "name": "pimple/pimple", - "version": "v3.5.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed", - "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "psr/container": "^1.1 || ^2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4.x-dev" - } - }, - "autoload": { - "psr-0": { - "Pimple": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - } - ], - "description": "Pimple, a simple Dependency Injection Container", - "homepage": "https://pimple.symfony.com", - "keywords": [ - "container", - "dependency injection" - ], - "time": "2021-10-28T11:13:42+00:00" - }, { "name": "pixelandtonic/imagine", "version": "1.3.3.1", @@ -5496,54 +5090,6 @@ }, "time": "2022-05-04T18:44:34+00:00" }, - { - "name": "putyourlightson/craft-sherlock", - "version": "4.4.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sherlock/zipball/b0ea322825de04abf6fc13cd2e412e1f53509d2e", - "reference": "b0ea322825de04abf6fc13cd2e412e1f53509d2e", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" - }, - "type": "craft-plugin", - "extra": { - "name": "Sherlock", - "handle": "sherlock", - "developer": "PutYourLightsOn", - "developerUrl": "https://putyourlightson.com/", - "documentationUrl": "https://putyourlightson.com/plugins/sherlock", - "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-sherlock/v4/CHANGELOG.md", - "class": "putyourlightson\\sherlock\\Sherlock" - }, - "autoload": { - "psr-4": { - "putyourlightson\\sherlock\\": "src/" - } - }, - "license": [ - "proprietary" - ], - "description": "Security scanner and monitor to keep your site and CMS secure.", - "homepage": "https://putyourlightson.com/plugins/sherlock", - "keywords": [ - "cms", - "craft", - "craftcms", - "scanner", - "secure", - "security" - ], - "support": { - "docs": "https://putyourlightson.com/plugins/sherlock", - "source": "https://github.com/putyourlightson/craft-sherlock", - "issues": "https://github.com/putyourlightson/craft-sherlock/issues" - }, - "time": "2024-03-25T14:18:36+00:00" - }, { "name": "putyourlightson/craft-sprig", "version": "2.8.0", @@ -6151,59 +5697,6 @@ ], "time": "2017-06-19T16:48:17+00:00" }, - { - "name": "studioespresso/craft-dumper", - "version": "5.0.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/studioespresso/craft-dumper/zipball/3f5c1cfc44cffcefebe9c9b83e94c40b5b75dbc4", - "reference": "3f5c1cfc44cffcefebe9c9b83e94c40b5b75dbc4", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0|^5.0.0-alpha" - }, - "type": "craft-plugin", - "extra": { - "name": "Dumper", - "handle": "dumper", - "schemaVersion": "1.0.0", - "hasCpSettings": false, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/studioespresso/craft-dumper/master/CHANGELOG.md", - "class": "studioespresso\\craftdumper\\CraftDumper" - }, - "autoload": { - "psr-4": { - "studioespresso\\craftdumper\\": "src/" - }, - "files": [ - "src/helper.php" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Studio Espresso", - "homepage": "https://www.studioespresso.co" - } - ], - "description": "Bringing symfony/VarDumper to Craft CMS", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "dumper" - ], - "support": { - "docs": "https://github.com/studioespresso/craft-dumper/blob/master/README.md", - "issues": "https://github.com/studioespresso/craft-dumper/issues" - }, - "time": "2024-02-21T14:48:06+00:00" - }, { "name": "sunra/php-simple-html-dom-parser", "version": "v1.5.2", @@ -7657,49 +7150,6 @@ }, "time": "2021-05-04T17:17:46+00:00" }, - { - "name": "tubalmartin/cssmin", - "version": "v4.1.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/tubalmartin/YUI-CSS-compressor-PHP-port/zipball/3cbf557f4079d83a06f9c3ff9b957c022d7805cf", - "reference": "3cbf557f4079d83a06f9c3ff9b957c022d7805cf", - "shasum": "" - }, - "require": { - "ext-pcre": "*", - "php": ">=5.3.2" - }, - "bin": [ - "cssmin" - ], - "type": "library", - "autoload": { - "psr-4": { - "tubalmartin\\CssMin\\": "src" - } - }, - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Túbal Martín", - "homepage": "http://tubalmartin.me/" - } - ], - "description": "A PHP port of the YUI CSS compressor", - "homepage": "https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port", - "keywords": [ - "compress", - "compressor", - "css", - "cssmin", - "minify", - "yui" - ], - "time": "2018-01-15T15:26:51+00:00" - }, { "name": "twig/twig", "version": "v3.8.0", @@ -7748,57 +7198,6 @@ ], "time": "2023-11-21T18:54:41+00:00" }, - { - "name": "vaersaagod/matrixmate", - "version": "2.1.4", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/vaersaagod/matrixmate/zipball/65651e7aee74207afa1818f9a7cea37cff71b262", - "reference": "65651e7aee74207afa1818f9a7cea37cff71b262", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" - }, - "type": "craft-plugin", - "extra": { - "name": "MatrixMate", - "handle": "matrixmate", - "schemaVersion": "1.0.0", - "hasCpSettings": false, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/vaersaagod/matrixmate/master/CHANGELOG.md", - "class": "vaersaagod\\matrixmate\\MatrixMate" - }, - "autoload": { - "psr-4": { - "vaersaagod\\matrixmate\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Værsågod", - "homepage": "https://vaersaagod.no" - } - ], - "description": "Welding Matrix into shape, mate!", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "matrixmate" - ], - "support": { - "docs": "https://github.com/vaersaagod/matrixmate/blob/master/README.md", - "issues": "https://github.com/vaersaagod/matrixmate/issues" - }, - "time": "2023-11-10T23:46:59+00:00" - }, { "name": "verbb/base", "version": "2.0.5", @@ -7884,61 +7283,6 @@ }, "time": "2024-04-10T13:14:54+00:00" }, - { - "name": "verbb/image-resizer", - "version": "3.0.11", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/verbb/image-resizer/zipball/f1d4a22afdbc22af65aa851230b4eaae72694bc9", - "reference": "f1d4a22afdbc22af65aa851230b4eaae72694bc9", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "lsolesen/pel": "^0.9.6", - "php": "^8.0.2", - "verbb/base": "^2.0.0" - }, - "type": "craft-plugin", - "extra": { - "name": "Image Resizer", - "handle": "image-resizer", - "description": "Image Resizer resizes your assets when they are uploaded.", - "documentationUrl": "https://github.com/verbb/image-resizer", - "changelogUrl": "https://raw.githubusercontent.com/verbb/image-resizer/craft-4/CHANGELOG.md", - "class": "verbb\\imageresizer\\ImageResizer" - }, - "autoload": { - "psr-4": { - "verbb\\imageresizer\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Verbb", - "homepage": "https://verbb.io" - } - ], - "description": "Resize assets when they are uploaded.", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "example" - ], - "support": { - "email": "support@verbb.io", - "issues": "https://github.com/verbb/image-resizer/issues?state=open", - "source": "https://github.com/verbb/image-resizer", - "docs": "https://github.com/verbb/image-resizer", - "rss": "https://github.com/verbb/image-resizer/commits/v2.atom" - }, - "time": "2024-01-30T12:35:34+00:00" - }, { "name": "verbb/navigation", "version": "2.0.27", @@ -7992,60 +7336,6 @@ }, "time": "2024-03-17T13:08:40+00:00" }, - { - "name": "verbb/super-table", - "version": "3.0.13", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/verbb/super-table/zipball/a4388a50579d3069318ee6307ebc81aa4417ad5d", - "reference": "a4388a50579d3069318ee6307ebc81aa4417ad5d", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2", - "verbb/base": "^2.0.0" - }, - "type": "craft-plugin", - "extra": { - "name": "Super Table", - "handle": "super-table", - "description": "Super-charge your Craft workflow with Super Table. Use it to group fields together or build complex Matrix-in-Matrix solutions.", - "documentationUrl": "https://github.com/verbb/super-table", - "changelogUrl": "https://raw.githubusercontent.com/verbb/super-table/craft-4/CHANGELOG.md", - "class": "verbb\\supertable\\SuperTable" - }, - "autoload": { - "psr-4": { - "verbb\\supertable\\": "src/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Verbb", - "homepage": "https://verbb.io" - } - ], - "description": "Super-charge your content builders and create nested Matrix fields.", - "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "super table" - ], - "support": { - "email": "support@verbb.io", - "issues": "https://github.com/verbb/super-table/issues?state=open", - "source": "https://github.com/verbb/super-table", - "docs": "https://github.com/verbb/super-table", - "rss": "https://github.com/verbb/super-table/commits/v2.atom" - }, - "time": "2024-04-10T13:08:25+00:00" - }, { "name": "vlucas/phpdotenv", "version": "v5.6.0", @@ -8944,11 +8234,11 @@ "packages-dev": [ { "name": "craftcms/generator", - "version": "1.6.1", + "version": "1.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/generator/zipball/8f3ac6ce89ad7760b2f2881549b73b437bc0ca59", - "reference": "8f3ac6ce89ad7760b2f2881549b73b437bc0ca59", + "url": "https://api.github.com/repos/craftcms/generator/zipball/ef136309da97acc98a178c88b466c6d7dade1a32", + "reference": "ef136309da97acc98a178c88b466c6d7dade1a32", "shasum": "" }, "require": { @@ -8988,15 +8278,15 @@ "source": "https://github.com/craftcms/generator", "rss": "https://github.com/craftcms/generator/releases.atom" }, - "time": "2023-08-11T01:27:27+00:00" + "time": "2024-03-06T12:13:24+00:00" }, { "name": "nette/php-generator", - "version": "v4.1.3", + "version": "v4.1.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/php-generator/zipball/08ab9bff22ae34fe4e1d2fe8ba16b3770ea2459f", - "reference": "08ab9bff22ae34fe4e1d2fe8ba16b3770ea2459f", + "url": "https://api.github.com/repos/nette/php-generator/zipball/b135071d8da108445e4df2fc6a75522b23c0237d", + "reference": "b135071d8da108445e4df2fc6a75522b23c0237d", "shasum": "" }, "require": { @@ -9040,7 +8330,7 @@ "php", "scaffolding" ], - "time": "2024-01-18T17:44:20+00:00" + "time": "2024-03-07T23:06:26+00:00" }, { "name": "nette/utils", @@ -9114,16 +8404,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.18.0", + "version": "v4.19.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b", + "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": ">=7.0" + "php": ">=7.1" }, "bin": [ "bin/php-parse" @@ -9152,24 +8442,29 @@ "parser", "php" ], - "time": "2023-12-10T21:03:43+00:00" + "time": "2024-03-17T08:10:35+00:00" }, { "name": "nystudio107/craft-autocomplete", - "version": "1.12.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/nystudio107/craft-autocomplete.git", - "reference": "13d432970963cb7825bcb929bb7704c21bdac51f" + "reference": "ee3d7e2386eb94abf4e4d7690640055cedeaf07f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-autocomplete/zipball/13d432970963cb7825bcb929bb7704c21bdac51f", - "reference": "13d432970963cb7825bcb929bb7704c21bdac51f", + "url": "https://api.github.com/repos/nystudio107/craft-autocomplete/zipball/ee3d7e2386eb94abf4e4d7690640055cedeaf07f", + "reference": "ee3d7e2386eb94abf4e4d7690640055cedeaf07f", "shasum": "" }, "require": { - "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0-alpha.1" + "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0" + }, + "require-dev": { + "craftcms/ecs": "dev-main", + "craftcms/phpstan": "dev-main", + "craftcms/rector": "dev-main" }, "type": "yii2-extension", "extra": { @@ -9216,7 +8511,7 @@ "type": "github" } ], - "time": "2024-01-26T02:03:40+00:00" + "time": "2024-04-15T16:14:38+00:00" }, { "name": "psy/psysh", @@ -9291,12 +8586,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "cea5a32b418b44dc5a480049f531f53563c26210" + "reference": "a6fb2a760c95f45ccb6a412599770061c330c624" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/cea5a32b418b44dc5a480049f531f53563c26210", - "reference": "cea5a32b418b44dc5a480049f531f53563c26210", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a6fb2a760c95f45ccb6a412599770061c330c624", + "reference": "a6fb2a760c95f45ccb6a412599770061c330c624", "shasum": "" }, "conflict": { @@ -9312,7 +8607,7 @@ "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1", "amazing/media2click": ">=1,<1.3.3", "amphp/artax": "<1.0.6|>=2,<2.0.6", - "amphp/http": "<1.0.1", + "amphp/http": "<=1.7.2|>=2,<=2.1", "amphp/http-client": ">=4,<4.4", "anchorcms/anchor-cms": "<=0.12.7", "andreapollastri/cipi": "<=3.1.15", @@ -9336,12 +8631,12 @@ "backpack/crud": "<3.4.9", "bacula-web/bacula-web": "<8.0.0.0-RC2-dev", "badaso/core": "<2.7", - "bagisto/bagisto": "<1.3.2", + "bagisto/bagisto": "<2.1", "barrelstrength/sprout-base-email": "<1.2.7", "barrelstrength/sprout-forms": "<3.9", "barryvdh/laravel-translation-manager": "<0.6.2", "barzahlen/barzahlen-php": "<2.0.1", - "baserproject/basercms": "<4.8", + "baserproject/basercms": "<5.0.9", "bassjobsen/bootstrap-3-typeahead": ">4.0.2", "bigfork/silverstripe-form-capture": ">=3,<3.1.1", "billz/raspap-webgui": "<2.9.5", @@ -9350,12 +8645,13 @@ "bolt/bolt": "<3.7.2", "bolt/core": "<=4.2", "bottelet/flarepoint": "<2.2.1", + "bref/bref": "<2.1.17", "brightlocal/phpwhois": "<=4.2.5", "brotkrueml/codehighlight": "<2.7", "brotkrueml/schema": "<1.13.1|>=2,<2.5.1", "brotkrueml/typo3-matomo-integration": "<1.3.2", "buddypress/buddypress": "<7.2.1", - "bugsnag/bugsnag-laravel": "<2.0.2", + "bugsnag/bugsnag-laravel": ">=2,<2.0.2", "bytefury/crater": "<6.0.2", "cachethq/cachet": "<2.5.1", "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10", @@ -9365,30 +8661,32 @@ "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", "catfan/medoo": "<1.7.5", + "causal/oidc": "<2.1", "cecil/cecil": "<7.47.1", - "centreon/centreon": "<22.10.0.0-beta1", + "centreon/centreon": "<22.10.15", "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "chriskacerguis/codeigniter-restserver": "<=2.7.1", "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3", - "ckeditor/ckeditor": "<4.17", - "cockpit-hq/cockpit": "<=2.6.3", + "ckeditor/ckeditor": "<4.24", + "cockpit-hq/cockpit": "<=2.6.3|==2.7", "codeception/codeception": "<3.1.3|>=4,<4.1.22", "codeigniter/framework": "<3.1.9", - "codeigniter4/framework": "<=4.4.2", + "codeigniter4/framework": "<4.4.7", "codeigniter4/shield": "<1.0.0.0-beta8", "codiad/codiad": "<=2.8.4", - "composer/composer": "<1.10.27|>=2,<2.2.22|>=2.3,<2.6.4", - "concrete5/concrete5": "<9.2.3", + "composer/composer": "<1.10.27|>=2,<2.2.23|>=2.3,<2.7", + "concrete5/concrete5": "<9.2.8", "concrete5/core": "<8.5.8|>=9,<9.1", "contao-components/mediaelement": ">=2.14.2,<2.21.1", + "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4", "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4", "contao/core": ">=2,<3.5.39", - "contao/core-bundle": "<4.9.42|>=4.10,<4.13.28|>=5,<5.1.10", + "contao/core-bundle": "<4.13.40|>=5,<5.3.4", "contao/listing-bundle": ">=4,<4.4.8", "contao/managed-edition": "<=1.5", "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", - "craftcms/cms": "<=4.5.10", + "craftcms/cms": "<4.6.2", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czproject/git-php": "<4.0.3", @@ -9399,11 +8697,11 @@ "dbrisinajumi/d2files": "<1", "dcat/laravel-admin": "<=2.1.3.0-beta", "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3", - "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1", + "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4", "desperado/xml-bundle": "<=0.1.7", "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2", "doctrine/annotations": "<1.2.7", - "doctrine/cache": "<1.3.2|>=1.4,<1.4.2", + "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", "doctrine/common": "<2.4.3|>=2.5,<2.5.1", "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4", "doctrine/doctrine-bundle": "<1.5.2", @@ -9411,11 +8709,11 @@ "doctrine/mongodb-odm": "<1.0.2", "doctrine/mongodb-odm-bundle": "<3.0.1", "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4", - "dolibarr/dolibarr": "<18.0.2", + "dolibarr/dolibarr": "<=19", "dompdf/dompdf": "<2.0.4", "doublethreedigital/guest-entries": "<3.1.2", - "drupal/core": "<9.5.11|>=10,<10.0.11|>=10.1,<10.1.4", - "drupal/drupal": ">=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4", + "drupal/core": ">=6,<6.38|>=7,<7.96|>=8,<10.1.8|>=10.2,<10.2.2", + "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4", "duncanmcclean/guest-entries": "<3.1.2", "dweeves/magmi": "<=0.7.24", "ec-cube/ec-cube": "<2.4.4", @@ -9426,6 +8724,7 @@ "elijaa/phpmemcacheadmin": "<=1.3", "encore/laravel-admin": "<=1.8.19", "endroid/qr-code-bundle": "<3.4.2", + "enhavo/enhavo-app": "<=0.13.1", "enshrined/svg-sanitize": "<0.15", "erusev/parsedown": "<1.7.2", "ether/logs": "<3.0.4", @@ -9440,7 +8739,7 @@ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26", "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12", - "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.34", + "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35", "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8", "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev", "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15", @@ -9472,21 +8771,23 @@ "fooman/tcpdf": "<6.2.22", "forkcms/forkcms": "<5.11.1", "fossar/tcpdf-parser": "<6.2.22", - "francoisjacquet/rosariosis": "<11", + "francoisjacquet/rosariosis": "<=11.5.1", "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2", "friendsofsymfony/oauth2-php": "<1.3", "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", + "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5", + "friendsofsymfony1/symfony1": ">=1.1,<1.15.19", "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6", - "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.1", + "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.3", "froxlor/froxlor": "<=2.1.1", "fuel/core": "<1.8.1", "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3", "gaoming13/wechat-php-sdk": "<=1.10.2", "genix/cms": "<=1.1.11", - "getgrav/grav": "<=1.7.42.1", - "getkirby/cms": "<3.5.8.3-dev|>=3.6,<3.6.6.3-dev|>=3.7,<3.7.5.2-dev|>=3.8,<3.8.4.1-dev|>=3.9,<3.9.6", + "getgrav/grav": "<1.7.45", + "getkirby/cms": "<4.1.1", "getkirby/kirby": "<=2.5.12", "getkirby/panel": "<2.5.14", "getkirby/starterkit": "<=3.7.0.2", @@ -9498,7 +8799,7 @@ "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", "gree/jose": "<2.2.1", "gregwar/rst": "<1.0.3", - "grumpydictator/firefly-iii": "<6.1.1", + "grumpydictator/firefly-iii": "<6.1.7", "gugoan/economizzer": "<=0.9.0.0-beta1", "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5", "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5", @@ -9513,14 +8814,15 @@ "httpsoft/http-message": "<1.0.12", "hyn/multi-tenant": ">=5.6,<5.7.2", "ibexa/admin-ui": ">=4.2,<4.2.3", - "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.4", + "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2", "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3", "ibexa/post-install": "<=1.0.4", "ibexa/solr": ">=4.5,<4.5.4", "ibexa/user": ">=4,<4.4.3", "icecoder/icecoder": "<=8.1", "idno/known": "<=1.3.1", - "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10", + "ilicmiljan/secure-props": ">=1.2,<1.2.2", + "illuminate/auth": "<5.5.10", "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4", "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40", "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", @@ -9539,11 +8841,12 @@ "james-heinrich/phpthumb": "<1.7.12", "jasig/phpcas": "<1.3.3", "jcbrand/converse.js": "<3.3.3", + "johnbillion/wp-crontrol": "<1.16.2", "joomla/application": "<1.0.13", "joomla/archive": "<1.1.12|>=2,<2.0.1", "joomla/filesystem": "<1.6.2|>=2,<2.0.1", "joomla/filter": "<1.4.4|>=2,<2.0.1", - "joomla/framework": ">=2.5.4,<=3.8.12", + "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12", "joomla/input": ">=2,<2.0.2", "joomla/joomla-cms": ">=2.5,<3.9.12", "joomla/session": "<1.3.1", @@ -9555,7 +8858,7 @@ "kelvinmo/simplexrd": "<3.1.1", "kevinpapst/kimai2": "<1.16.7", "khodakhah/nodcms": "<=3", - "kimai/kimai": "<2.1", + "kimai/kimai": "<2.13", "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4", "klaviyo/magento2-extension": ">=1,<3", "knplabs/knp-snappy": "<=1.4.2", @@ -9580,7 +8883,7 @@ "liftkit/database": "<2.13.2", "limesurvey/limesurvey": "<3.27.19", "livehelperchat/livehelperchat": "<=3.91", - "livewire/livewire": ">2.2.4,<2.2.6", + "livewire/livewire": ">2.2.4,<2.2.6|>=3.3.5,<3.4.9", "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", "luyadev/yii-helpers": "<1.2.1", @@ -9592,11 +8895,11 @@ "magneto/core": "<1.9.4.4-dev", "maikuolan/phpmussel": ">=1,<1.6", "mainwp/mainwp": "<=4.4.3.3", - "mantisbt/mantisbt": "<=2.25.7", + "mantisbt/mantisbt": "<2.26.1", "marcwillmann/turn": "<0.3.3", "matyhtf/framework": "<3.0.6", - "mautic/core": "<4.3", - "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35", + "mautic/core": "<4.4.12|>=5.0.0.0-alpha,<5.0.4", + "mediawiki/core": "<1.36.2", "mediawiki/matomo": "<2.4.3", "mediawiki/semantic-media-wiki": "<4.0.2", "melisplatform/melis-asset-manager": "<5.0.1", @@ -9604,7 +8907,7 @@ "melisplatform/melis-front": "<5.0.1", "mezzio/mezzio-swoole": "<3.7|>=4,<4.3", "mgallegos/laravel-jqgrid": "<=1.3", - "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2.0.0.0-RC1-dev,<2.0.1", + "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1", "microsoft/microsoft-graph-beta": "<2.0.1", "microsoft/microsoft-graph-core": "<2.0.2", "microweber/microweber": "<=2.0.4", @@ -9615,7 +8918,7 @@ "mojo42/jirafeau": "<4.4", "mongodb/mongodb": ">=1,<1.9.2", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<4.3.0.0-RC2-dev", + "moodle/moodle": "<=4.3.3", "mos/cimage": "<0.7.19", "movim/moxl": ">=0.8,<=0.10", "mpdf/mpdf": "<=7.1.7", @@ -9649,19 +8952,19 @@ "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2", "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", - "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", + "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", "open-web-analytics/open-web-analytics": "<1.7.4", "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev", "openid/php-openid": "<2.3", - "openmage/magento-lts": "<20.2", + "openmage/magento-lts": "<20.5", "opensource-workshop/connect-cms": "<1.7.2|>=2,<2.3.2", "orchid/platform": ">=9,<9.4.4|>=14.0.0.0-alpha4,<14.5", "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1", "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1", "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7", "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1", - "oro/customer-portal": ">=4.2,<=4.2.8|>=5,<5.0.11|>=5.1,<5.1.1", - "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<5.0.8", + "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3", + "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3", "oxid-esales/oxideshop-ce": "<4.5", "packbackbooks/lti-1-3-php-library": "<5", "padraic/humbug_get_contents": "<1.1.2", @@ -9671,12 +8974,13 @@ "passbolt/passbolt_api": "<2.11", "paypal/merchant-sdk-php": "<3.12", "pear/archive_tar": "<1.4.14", + "pear/auth": "<1.2.4", "pear/crypt_gpg": "<1.6.7", "pear/pear": "<=1.10.1", "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1", "personnummer/personnummer": "<3.0.2", "phanan/koel": "<5.1.4", - "phenx/php-svg-lib": "<0.5.1", + "phenx/php-svg-lib": "<0.5.2", "php-mod/curl": "<2.3.2", "phpbb/phpbb": "<3.2.10|>=3.3,<3.3.1", "phpems/phpems": ">=6,<=6.1.3", @@ -9684,28 +8988,28 @@ "phpmailer/phpmailer": "<6.5", "phpmussel/phpmussel": ">=1,<1.6", "phpmyadmin/phpmyadmin": "<5.2.1", - "phpmyfaq/phpmyfaq": "<=3.1.7", + "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5", "phpoffice/phpexcel": "<1.8", "phpoffice/phpspreadsheet": "<1.16", - "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.34", + "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", "phpservermon/phpservermon": "<3.6", "phpsysinfo/phpsysinfo": "<3.4.3", - "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3", + "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", "phpxmlrpc/phpxmlrpc": "<4.9.2", "pi/pi": "<=2.5", - "pimcore/admin-ui-classic-bundle": "<1.3.2", + "pimcore/admin-ui-classic-bundle": "<1.3.4", "pimcore/customer-management-framework-bundle": "<4.0.6", "pimcore/data-hub": "<1.2.4", "pimcore/demo": "<10.3", "pimcore/ecommerce-framework-bundle": "<1.0.10", "pimcore/perspective-editor": "<1.5.1", - "pimcore/pimcore": "<11.1.1", - "pixelfed/pixelfed": "<=0.11.4", + "pimcore/pimcore": "<11.1.6.1-dev|>=11.2,<11.2.2", + "pixelfed/pixelfed": "<0.11.11", "plotly/plotly.js": "<2.25.2", "pocketmine/bedrock-protocol": "<8.0.2", - "pocketmine/pocketmine-mp": "<=4.23|>=5,<5.3.1", + "pocketmine/pocketmine-mp": "<5.11.2", "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1", "pressbooks/pressbooks": "<5.18", "prestashop/autoupgrade": ">=4,<4.10.1", @@ -9713,7 +9017,7 @@ "prestashop/blockwishlist": ">=2,<2.1.1", "prestashop/contactform": ">=1.0.1,<4.3", "prestashop/gamification": "<2.3.2", - "prestashop/prestashop": "<8.1.3", + "prestashop/prestashop": "<8.1.4", "prestashop/productcomments": "<5.0.2", "prestashop/ps_emailsubscription": "<2.6.1", "prestashop/ps_facetedsearch": "<3.4.1", @@ -9736,27 +9040,28 @@ "rap2hpoutre/laravel-log-viewer": "<0.13", "react/http": ">=0.7,<1.9", "really-simple-plugins/complianz-gdpr": "<6.4.2", - "remdex/livehelperchat": "<3.99", - "reportico-web/reportico": "<=7.1.21", + "redaxo/source": "<=5.15.1", + "remdex/livehelperchat": "<4.29", + "reportico-web/reportico": "<=8.1", "rhukster/dom-sanitizer": "<1.0.7", "rmccue/requests": ">=1.6,<1.8", - "robrichards/xmlseclibs": "<3.0.4", + "robrichards/xmlseclibs": ">=1,<3.0.4", "roots/soil": "<4.1", "rudloff/alltube": "<3.0.3", "s-cart/core": "<6.9", "s-cart/s-cart": "<6.9", "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1", - "sabre/dav": "<1.7.11|>=1.8,<1.8.9", + "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9", "scheb/two-factor-bundle": "<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", "sfroemken/url_redirect": "<=1.2.1", "sheng/yiicms": "<=1.2", - "shopware/core": "<=6.5.7.3", - "shopware/platform": "<=6.5.7.3", + "shopware/core": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", + "shopware/platform": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", "shopware/production": "<=6.3.5.2", "shopware/shopware": "<=5.7.17", - "shopware/storefront": "<=6.4.8.1", + "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev", "shopxo/shopxo": "<2.2.6", "showdoc/showdoc": "<2.10.4", "silverstripe-australia/advancedreports": ">=1,<=2", @@ -9766,7 +9071,7 @@ "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", "silverstripe/framework": "<4.13.39|>=5,<5.1.11", - "silverstripe/graphql": "<3.8.2|>=4,<4.3.7|>=5,<5.1.3", + "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3", "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1", "silverstripe/recipe-cms": ">=4.5,<4.5.3", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", @@ -9777,7 +9082,7 @@ "silverstripe/userforms": "<3", "silverstripe/versioned-admin": ">=1,<1.11.1", "simple-updates/phpwhois": "<=1", - "simplesamlphp/saml2": "<1.15.4|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12", + "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12", "simplesamlphp/simplesamlphp": "<1.18.6", "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", "simplesamlphp/simplesamlphp-module-openid": "<1", @@ -9799,21 +9104,22 @@ "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "ssddanbrown/bookstack": "<22.02.3", - "statamic/cms": "<4.36", + "statamic/cms": "<4.46", "stormpath/sdk": "<9.9.99", "studio-42/elfinder": "<2.1.62", "subhh/libconnect": "<7.0.8|>=8,<8.1", "sukohi/surpass": "<1", - "sulu/sulu": "<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8|==2.4.0.0-RC1|>=2.5,<2.5.10", + "sulu/sulu": "<1.6.44|>=2,<2.4.17|>=2.5,<2.5.13", "sumocoders/framework-user-bundle": "<1.4", + "superbig/craft-audit": "<3.0.2", "swag/paypal": "<5.4.4", - "swiftmailer/swiftmailer": ">=4,<5.4.5", + "swiftmailer/swiftmailer": ">=4,<6.2.5", "swiftyedit/swiftyedit": "<1.2", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": "<1.10.1", "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1", - "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", + "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2", "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4", @@ -9824,7 +9130,7 @@ "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4", "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", - "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3", + "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4", "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7", "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6", "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", @@ -9842,7 +9148,7 @@ "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8", "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2|>=5.4,<5.4.31|>=6,<6.3.8", "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12", - "symfony/symfony": "<4.4.51|>=5,<5.4.31|>=6,<6.3.8", + "symfony/symfony": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/translation": ">=2,<2.0.17", "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/ux-autocomplete": "<2.11.2", @@ -9850,14 +9156,14 @@ "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", "symfony/webhook": ">=6.3,<6.3.8", - "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", + "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7|>=2.2.0.0-beta1,<2.2.0.0-beta2", "symphonycms/symphony-2": "<2.6.4", "t3/dce": "<0.11.5|>=2.2,<2.6.2", "t3g/svg-sanitizer": "<1.0.3", "t3s/content-consent": "<1.0.3|>=2,<2.0.2", "tastyigniter/tastyigniter": "<3.3", "tcg/voyager": "<=1.4", - "tecnickcom/tcpdf": "<6.2.22", + "tecnickcom/tcpdf": "<=6.7.4", "terminal42/contao-tablelookupwizard": "<3.3.5", "thelia/backoffice-default-template": ">=2.1,<2.1.2", "thelia/thelia": ">=2.1,<2.1.3", @@ -9865,24 +9171,28 @@ "thinkcmf/thinkcmf": "<=5.1.7", "thorsten/phpmyfaq": "<3.2.2", "tikiwiki/tiki-manager": "<=17.1", - "tinymce/tinymce": "<5.10.9|>=6,<6.7.3", + "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1", + "tinymce/tinymce": "<7", "tinymighty/wiki-seo": "<1.2.2", "titon/framework": "<9.9.99", "tobiasbg/tablepress": "<=2.0.0.0-RC1", "topthink/framework": "<6.0.14", "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3", + "torrentpier/torrentpier": "<=2.4.1", "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2", "tribalsystems/zenario": "<=9.4.59197", "truckersmp/phpwhois": "<=4.3.1", "ttskch/pagination-service-provider": "<1", "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3", "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", - "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", - "typo3/cms-core": "<8.7.55|>=9,<9.5.44|>=10,<10.4.41|>=11,<11.5.33|>=12,<12.4.8", + "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", + "typo3/cms-core": "<=8.7.56|>=9,<=9.5.45|>=10,<=10.4.42|>=11,<=11.5.34|>=12,<=12.4.10|==13", "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1", + "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1", "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", - "typo3/cms-install": ">=12.2,<12.4.8", + "typo3/cms-frontend": "<4.3.9|>=4.4,<4.4.5", + "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8", "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3", @@ -9896,6 +9206,7 @@ "userfrosting/userfrosting": ">=0.3.1,<4.6.3", "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", "uvdesk/community-skeleton": "<=1.1.1", + "uvdesk/core-framework": "<=1.1.1", "vanilla/safecurl": "<0.9.2", "verot/class.upload.php": "<=2.1.6", "vova07/yii2-fileapi-widget": "<0.1.9", @@ -9914,10 +9225,11 @@ "wikimedia/parsoid": "<0.12.2", "willdurand/js-translation-bundle": "<2.1.1", "winter/wn-backend-module": "<1.2.4", + "winter/wn-dusk-plugin": "<2.1", "winter/wn-system-module": "<1.2.4", - "wintercms/winter": "<1.2.3", + "wintercms/winter": "<=1.2.3", "woocommerce/woocommerce": "<6.6", - "wp-cli/wp-cli": "<2.5", + "wp-cli/wp-cli": ">=0.12,<2.5", "wp-graphql/wp-graphql": "<=1.14.5", "wpanel/wpanel4-cms": "<=4.3.1", "wpcloud/wp-stateless": "<3.2", @@ -9940,12 +9252,13 @@ "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6", "yoast-seo-for-typo3/yoast_seo": "<7.2.3", "yourls/yourls": "<=1.8.2", + "yuan1994/tpadmin": "<=1.3.12", "zencart/zencart": "<=1.5.7.0-beta", "zendesk/zendesk_api_client_php": "<2.2.11", - "zendframework/zend-cache": "<2.4.8|>=2.5,<2.5.3", + "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", - "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5", + "zendframework/zend-db": "<2.2.10|>=2.3,<2.3.5", "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3", "zendframework/zend-diactoros": "<1.8.4", "zendframework/zend-feed": "<2.10.3", @@ -9970,11 +9283,11 @@ "zendframework/zendservice-slideshare": "<2.0.2", "zendframework/zendservice-technorati": "<2.0.2", "zendframework/zendservice-windowsazure": "<2.0.2", - "zendframework/zendxml": "<1.0.1", + "zendframework/zendxml": ">=1,<1.0.1", "zenstruck/collection": "<0.2.1", "zetacomponents/mail": "<1.8.2", "zf-commons/zfc-user": "<1.2.2", - "zfcampus/zf-apigility-doctrine": "<1.0.3", + "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3", "zfr/zfr-oauth2-server-module": "<0.1.2", "zoujingli/thinkadmin": "<=6.1.53" }, @@ -10014,7 +9327,7 @@ "type": "tidelift" } ], - "time": "2024-01-24T22:04:16+00:00" + "time": "2024-04-19T20:04:33+00:00" }, { "name": "yiisoft/yii2-shell", @@ -10075,5 +9388,5 @@ "platform-overrides": { "php": "8.2.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/config/general.php b/config/general.php index 2158f450..32c1ef07 100644 --- a/config/general.php +++ b/config/general.php @@ -52,7 +52,7 @@ if ($isProd) { $config->disabledPlugins([ - 'dumper', 'elements-panel', 'blitz-recommendations', 'cp-field-inspect' + 'elements-panel', 'blitz-recommendations', 'cp-field-inspect' ]); } diff --git a/config/project/project.yaml b/config/project/project.yaml index 871ad678..7a04c981 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1713560420 +dateModified: 1713561240 elementSources: craft\elements\Asset: - @@ -187,10 +187,6 @@ plugins: edition: standard enabled: true schemaVersion: 1.0.0 - cp-clearcache: - edition: standard - enabled: true - schemaVersion: 1.0.0 cp-css: edition: standard enabled: true @@ -202,10 +198,6 @@ plugins: edition: standard enabled: true schemaVersion: 1.0.0 - dumper: - edition: standard - enabled: true - schemaVersion: 1.0.0 elements-panel: edition: standard enabled: true @@ -219,23 +211,11 @@ plugins: enabled: true licenseKey: $PLUGIN_HYPER schemaVersion: 1.0.0 - image-resizer: - edition: standard - enabled: true - schemaVersion: 2.0.0 imager-x: edition: pro enabled: true licenseKey: $PLUGIN_IMAGERX schemaVersion: 4.0.0 - matrixmate: - edition: standard - enabled: true - schemaVersion: 1.0.0 - minify: - edition: standard - enabled: true - schemaVersion: 1.0.0 navigation: edition: standard enabled: true @@ -289,22 +269,10 @@ plugins: submitSitemaps: true truncateDescriptionTags: '1' truncateTitleTags: '1' - sherlock: - edition: lite - enabled: true - schemaVersion: 4.1.0 - settings: - strictTransportSecurity: - canFail: true - threshold: 15552000 sprig: edition: standard enabled: true schemaVersion: 1.0.1 - super-table: - edition: standard - enabled: true - schemaVersion: 3.0.0 vite: edition: standard enabled: true diff --git a/templates/_components-sprig/paginateNews.twig b/templates/_components-sprig/paginateNews.twig index 99a5e20d..823b77c5 100644 --- a/templates/_components-sprig/paginateNews.twig +++ b/templates/_components-sprig/paginateNews.twig @@ -2,7 +2,6 @@ {% set page = page ??? craft.app.request.pageNum ??? 1 %} {% cache using key craft.app.request.pathInfo ~ 'overviewNews-' ~ section ~ '-' ~ page %} - {% minify %} {% set entryQuery = craft.entries .section(section) .with(['assetEntryImage']) @@ -34,5 +33,4 @@ {{ include('_components/pagination/pagination.twig', {}, withContext = true) }} - {% endminify %} {% endcache %} diff --git a/templates/entry/news/newsDefault.twig b/templates/entry/news/newsDefault.twig index 4090c8af..d51eafe6 100755 --- a/templates/entry/news/newsDefault.twig +++ b/templates/entry/news/newsDefault.twig @@ -3,7 +3,6 @@ {% block blockAppContent %} {% cache %} - {% minify %} {% do craft.app.elements.eagerLoadElements( className(entry), [entry], @@ -26,6 +25,5 @@ contentBuilder: entry.builderContent ??? null, } }, withContext = false) }} - {% endminify %} {% endcache %} {% endblock %} diff --git a/templates/entry/pages/pageContentBuilder.twig b/templates/entry/pages/pageContentBuilder.twig index 4090c8af..d51eafe6 100755 --- a/templates/entry/pages/pageContentBuilder.twig +++ b/templates/entry/pages/pageContentBuilder.twig @@ -3,7 +3,6 @@ {% block blockAppContent %} {% cache %} - {% minify %} {% do craft.app.elements.eagerLoadElements( className(entry), [entry], @@ -26,6 +25,5 @@ contentBuilder: entry.builderContent ??? null, } }, withContext = false) }} - {% endminify %} {% endcache %} {% endblock %} diff --git a/templates/index.twig b/templates/index.twig index a959ce50..d0af6a08 100755 --- a/templates/index.twig +++ b/templates/index.twig @@ -4,7 +4,6 @@ {% block blockAppContent %} {% cache %} - {% minify %}

Oh, hey! @@ -24,6 +23,5 @@ withContext = false ) }}

- {% endminify %} {% endcache %} {% endblock %} From bf40fa8e40681b17ac0e8ee8b2b37c9f27f562b0 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Thu, 25 Apr 2024 22:25:24 +0200 Subject: [PATCH 20/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20npm=20pac?= =?UTF-8?q?kages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 5796 +++++++++++++++++++++++---------------------- package.json | 4 +- vite.config.mts | 3 +- 3 files changed, 3030 insertions(+), 2773 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8114e6c2..c975e744 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,8 +38,8 @@ "@rollup/plugin-node-resolve": "^15.2.3", "@types/alpinejs": "^3.13.6", "@types/lodash-es": "^4.17.12", - "@typescript-eslint/eslint-plugin": "^6.19.1", - "@typescript-eslint/parser": "^6.19.1", + "@typescript-eslint/eslint-plugin": "^7.7.1", + "@typescript-eslint/parser": "^7.7.1", "@vitejs/plugin-legacy": "^5.3.0", "@vitejs/plugin-vue": "^5.0.3", "@vue/compiler-sfc": "^3.4.15", @@ -99,61 +99,61 @@ } }, "node_modules/@alpinejs/persist": { - "version": "3.13.5", - "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.13.5.tgz", - "integrity": "sha512-nmULi5Kp/v5/h4FtGpqyzzMPlulc2fmQ+Olhk0NwTcBKSCZDg6OtXgS998rnHpcWO0jsjCmvXn/Pul2av7D8lA==" + "version": "3.13.10", + "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.13.10.tgz", + "integrity": "sha512-rIG12KzdKdwO9XaosWtmoaOeEJWUNM9M/gp7CGOGnRc1Qnw2DVP2bVk3jsAF2ctLpXLdHw3MVT8UaB2bS8kg9Q==" }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", - "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", + "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.9", - "@babel/parser": "^7.23.9", - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9", + "@babel/helpers": "^7.24.4", + "@babel/parser": "^7.24.4", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -178,14 +178,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", + "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", "dev": true, "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -242,9 +242,9 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.9.tgz", - "integrity": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", + "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", @@ -252,7 +252,7 @@ "@babel/helper-function-name": "^7.23.0", "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-replace-supers": "^7.24.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" @@ -300,9 +300,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", - "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -362,12 +362,12 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -405,9 +405,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", + "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", "dev": true, "engines": { "node": ">=6.9.0" @@ -431,13 +431,13 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", + "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { @@ -484,9 +484,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -525,37 +525,38 @@ } }, "node_modules/@babel/helpers": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", - "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", + "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", "dev": true, "dependencies": { - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", - "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", + "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", "bin": { "parser": "bin/babel-parser.js" }, @@ -563,13 +564,29 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", + "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", - "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", + "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -579,14 +596,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", - "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", + "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/plugin-transform-optional-chaining": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -596,13 +613,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", - "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", + "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -687,12 +704,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", - "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", + "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -702,12 +719,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", - "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", + "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -859,12 +876,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", - "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", + "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -874,13 +891,13 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", - "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" }, @@ -892,13 +909,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", - "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { @@ -909,12 +926,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", - "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", + "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -924,12 +941,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", - "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", + "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -939,13 +956,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", - "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", + "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -955,13 +972,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", - "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", + "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -972,17 +989,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", - "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", + "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, @@ -994,13 +1011,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", - "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", + "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/template": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1010,12 +1027,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", - "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1025,13 +1042,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", - "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", + "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1041,12 +1058,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", - "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", + "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1056,12 +1073,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", - "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", + "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1072,13 +1089,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", - "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", + "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", "dev": true, "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1088,12 +1105,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", - "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", + "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1104,12 +1121,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", - "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", + "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { @@ -1120,14 +1137,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", - "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", + "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1137,12 +1154,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", - "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", + "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1153,12 +1170,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", - "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", + "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1168,12 +1185,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", - "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", + "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1184,12 +1201,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", - "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", + "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1199,13 +1216,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", - "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", + "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1215,13 +1232,13 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", + "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-simple-access": "^7.22.5" }, "engines": { @@ -1232,14 +1249,14 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", - "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", + "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { @@ -1250,13 +1267,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", - "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", + "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", "dev": true, "dependencies": { "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1282,12 +1299,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", - "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", + "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1297,12 +1314,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", - "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", + "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1313,12 +1330,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", - "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", + "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1329,16 +1346,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", - "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", + "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" + "@babel/plugin-transform-parameters": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1348,13 +1364,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", - "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", + "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1364,12 +1380,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", - "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", + "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1380,12 +1396,12 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", - "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", + "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, @@ -1397,12 +1413,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", - "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1412,13 +1428,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", - "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", + "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1428,14 +1444,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", - "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", + "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1446,12 +1462,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", - "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", + "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1461,12 +1477,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", - "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", + "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1477,12 +1493,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", - "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", + "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1492,12 +1508,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", - "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1507,12 +1523,12 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", - "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", + "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { @@ -1523,12 +1539,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", - "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", + "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1538,12 +1554,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", - "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", + "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1553,12 +1569,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", - "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", + "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1568,12 +1584,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", - "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", + "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1583,13 +1599,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", - "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", + "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1599,13 +1615,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", - "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", + "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1615,13 +1631,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", - "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", + "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", "dev": true, "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1631,26 +1647,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz", - "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", + "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", + "@babel/compat-data": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.23.3", - "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1662,58 +1679,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.9", - "@babel/plugin-transform-async-to-generator": "^7.23.3", - "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.4", - "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.4", - "@babel/plugin-transform-classes": "^7.23.8", - "@babel/plugin-transform-computed-properties": "^7.23.3", - "@babel/plugin-transform-destructuring": "^7.23.3", - "@babel/plugin-transform-dotall-regex": "^7.23.3", - "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.4", - "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/plugin-transform-for-of": "^7.23.6", - "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.4", - "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", - "@babel/plugin-transform-member-expression-literals": "^7.23.3", - "@babel/plugin-transform-modules-amd": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.9", - "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.4", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", - "@babel/plugin-transform-numeric-separator": "^7.23.4", - "@babel/plugin-transform-object-rest-spread": "^7.23.4", - "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.4", - "@babel/plugin-transform-optional-chaining": "^7.23.4", - "@babel/plugin-transform-parameters": "^7.23.3", - "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.4", - "@babel/plugin-transform-property-literals": "^7.23.3", - "@babel/plugin-transform-regenerator": "^7.23.3", - "@babel/plugin-transform-reserved-words": "^7.23.3", - "@babel/plugin-transform-shorthand-properties": "^7.23.3", - "@babel/plugin-transform-spread": "^7.23.3", - "@babel/plugin-transform-sticky-regex": "^7.23.3", - "@babel/plugin-transform-template-literals": "^7.23.3", - "@babel/plugin-transform-typeof-symbol": "^7.23.3", - "@babel/plugin-transform-unicode-escapes": "^7.23.3", - "@babel/plugin-transform-unicode-property-regex": "^7.23.3", - "@babel/plugin-transform-unicode-regex": "^7.23.3", - "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.1", + "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.8", - "babel-plugin-polyfill-corejs3": "^0.9.0", - "babel-plugin-polyfill-regenerator": "^0.5.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -1754,45 +1771,45 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", - "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.4.tgz", + "integrity": "sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==", "dev": true, "dependencies": { - "regenerator-runtime": "^0.13.11" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", - "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", - "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9", + "@babel/parser": "^7.24.1", + "@babel/types": "^7.24.0", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1801,9 +1818,9 @@ } }, "node_modules/@babel/types": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", - "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.23.4", @@ -1825,9 +1842,9 @@ } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.5.0.tgz", - "integrity": "sha512-abypo6m9re3clXA00eu5syw+oaPHbJTPapu9C4pzNsJ4hdZDzushT50Zhu+iIYXgEe1CxnRMn7ngsbV+MLrlpQ==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.1.tgz", + "integrity": "sha512-ubEkAaTfVZa+WwGhs5jbo5Xfqpeaybr/RvWzvFxRs4jfq16wH8l8Ty/QEEpINxll4xhuGfdMbipRyz5QZh9+FA==", "dev": true, "funding": [ { @@ -1843,13 +1860,13 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.3" + "@csstools/css-tokenizer": "^2.2.4" } }, "node_modules/@csstools/css-tokenizer": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz", - "integrity": "sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg==", + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.4.tgz", + "integrity": "sha512-PuWRAewQLbDhGeTvFuq2oClaSCKPIBmHyIobCV39JHRYN0byDcUWJl5baPeNUcqrjtdMNqFooE0FGl31I3JOqw==", "dev": true, "funding": [ { @@ -1866,9 +1883,32 @@ } }, "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.7.tgz", - "integrity": "sha512-lHPKJDkPUECsyAvD60joYfDmp8UERYxHGkFfyLJFTVK/ERJe0sVlIFLXU5XFxdjNDTerp5L4KeaKG+Z5S94qxQ==", + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.9.tgz", + "integrity": "sha512-qqGuFfbn4rUmyOB0u8CVISIp5FfJ5GAR3mBrZ9/TKndHakdnm6pY0L/fbLcpPnrzwCyyTEZl1nUcXAYHEWneTA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^2.6.1", + "@csstools/css-tokenizer": "^2.2.4" + } + }, + "node_modules/@csstools/selector-resolve-nested": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz", + "integrity": "sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==", "dev": true, "funding": [ { @@ -1884,14 +1924,13 @@ "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.5.0", - "@csstools/css-tokenizer": "^2.2.3" + "postcss-selector-parser": "^6.0.13" } }, "node_modules/@csstools/selector-specificity": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz", - "integrity": "sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.3.tgz", + "integrity": "sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q==", "dev": true, "funding": [ { @@ -1953,30 +1992,6 @@ "node": ">= 0.12" } }, - "node_modules/@cypress/request/node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@cypress/request/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/@cypress/xvfb": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", @@ -2005,10 +2020,36 @@ "stackframe": "^1.1.1" } }, + "node_modules/@dual-bundle/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-ZKXyJeFAzcpKM2kk8ipoGIPUqx9BX52omTGnfwjJvxOCaZTM2wtDK7zN0aIgPRbT9XYAlha0HtmZ+XKteuh0Gw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@esbuild/android-arm": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.7.tgz", - "integrity": "sha512-YGSPnndkcLo4PmVl2tKatEn+0mlVMr3yEpOOT0BeMria87PhvoJb5dg5f5Ft9fbCVgtAz4pWMzZVgSEGpDAlww==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", "cpu": [ "arm" ], @@ -2022,9 +2063,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.7.tgz", - "integrity": "sha512-YEDcw5IT7hW3sFKZBkCAQaOCJQLONVcD4bOyTXMZz5fr66pTHnAet46XAtbXAkJRfIn2YVhdC6R9g4xa27jQ1w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", "cpu": [ "arm64" ], @@ -2038,9 +2079,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.7.tgz", - "integrity": "sha512-jhINx8DEjz68cChFvM72YzrqfwJuFbfvSxZAk4bebpngGfNNRm+zRl4rtT9oAX6N9b6gBcFaJHFew5Blf6CvUw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", "cpu": [ "x64" ], @@ -2054,9 +2095,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.7.tgz", - "integrity": "sha512-dr81gbmWN//3ZnBIm6YNCl4p3pjnabg1/ZVOgz2fJoUO1a3mq9WQ/1iuEluMs7mCL+Zwv7AY5e3g1hjXqQZ9Iw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", "cpu": [ "arm64" ], @@ -2070,9 +2111,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.7.tgz", - "integrity": "sha512-Lc0q5HouGlzQEwLkgEKnWcSazqr9l9OdV2HhVasWJzLKeOt0PLhHaUHuzb8s/UIya38DJDoUm74GToZ6Wc7NGQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", "cpu": [ "x64" ], @@ -2086,9 +2127,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.7.tgz", - "integrity": "sha512-+y2YsUr0CxDFF7GWiegWjGtTUF6gac2zFasfFkRJPkMAuMy9O7+2EH550VlqVdpEEchWMynkdhC9ZjtnMiHImQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", "cpu": [ "arm64" ], @@ -2102,9 +2143,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.7.tgz", - "integrity": "sha512-CdXOxIbIzPJmJhrpmJTLx+o35NoiKBIgOvmvT+jeSadYiWJn0vFKsl+0bSG/5lwjNHoIDEyMYc/GAPR9jxusTA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", "cpu": [ "x64" ], @@ -2118,9 +2159,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.7.tgz", - "integrity": "sha512-Y+SCmWxsJOdQtjcBxoacn/pGW9HDZpwsoof0ttL+2vGcHokFlfqV666JpfLCSP2xLxFpF1lj7T3Ox3sr95YXww==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", "cpu": [ "arm" ], @@ -2134,9 +2175,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.7.tgz", - "integrity": "sha512-inHqdOVCkUhHNvuQPT1oCB7cWz9qQ/Cz46xmVe0b7UXcuIJU3166aqSunsqkgSGMtUCWOZw3+KMwI6otINuC9g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", "cpu": [ "arm64" ], @@ -2150,9 +2191,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.7.tgz", - "integrity": "sha512-2BbiL7nLS5ZO96bxTQkdO0euGZIUQEUXMTrqLxKUmk/Y5pmrWU84f+CMJpM8+EHaBPfFSPnomEaQiG/+Gmh61g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", "cpu": [ "ia32" ], @@ -2166,9 +2207,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.7.tgz", - "integrity": "sha512-BVFQla72KXv3yyTFCQXF7MORvpTo4uTA8FVFgmwVrqbB/4DsBFWilUm1i2Oq6zN36DOZKSVUTb16jbjedhfSHw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", "cpu": [ "loong64" ], @@ -2182,9 +2223,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.7.tgz", - "integrity": "sha512-DzAYckIaK+pS31Q/rGpvUKu7M+5/t+jI+cdleDgUwbU7KdG2eC3SUbZHlo6Q4P1CfVKZ1lUERRFP8+q0ob9i2w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", "cpu": [ "mips64el" ], @@ -2198,9 +2239,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.7.tgz", - "integrity": "sha512-JQ1p0SmUteNdUaaiRtyS59GkkfTW0Edo+e0O2sihnY4FoZLz5glpWUQEKMSzMhA430ctkylkS7+vn8ziuhUugQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", "cpu": [ "ppc64" ], @@ -2214,9 +2255,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.7.tgz", - "integrity": "sha512-xGwVJ7eGhkprY/nB7L7MXysHduqjpzUl40+XoYDGC4UPLbnG+gsyS1wQPJ9lFPcxYAaDXbdRXd1ACs9AE9lxuw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", "cpu": [ "riscv64" ], @@ -2230,9 +2271,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.7.tgz", - "integrity": "sha512-U8Rhki5PVU0L0nvk+E8FjkV8r4Lh4hVEb9duR6Zl21eIEYEwXz8RScj4LZWA2i3V70V4UHVgiqMpszXvG0Yqhg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", "cpu": [ "s390x" ], @@ -2246,9 +2287,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.7.tgz", - "integrity": "sha512-ZYZopyLhm4mcoZXjFt25itRlocKlcazDVkB4AhioiL9hOWhDldU9n38g62fhOI4Pth6vp+Mrd5rFKxD0/S+7aQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", "cpu": [ "x64" ], @@ -2262,9 +2303,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.7.tgz", - "integrity": "sha512-/yfjlsYmT1O3cum3J6cmGG16Fd5tqKMcg5D+sBYLaOQExheAJhqr8xOAEIuLo8JYkevmjM5zFD9rVs3VBcsjtQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", "cpu": [ "x64" ], @@ -2278,9 +2319,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.7.tgz", - "integrity": "sha512-MYDFyV0EW1cTP46IgUJ38OnEY5TaXxjoDmwiTXPjezahQgZd+j3T55Ht8/Q9YXBM0+T9HJygrSRGV5QNF/YVDQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", "cpu": [ "x64" ], @@ -2294,9 +2335,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.7.tgz", - "integrity": "sha512-JcPvgzf2NN/y6X3UUSqP6jSS06V0DZAV/8q0PjsZyGSXsIGcG110XsdmuWiHM+pno7/mJF6fjH5/vhUz/vA9fw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", "cpu": [ "x64" ], @@ -2310,9 +2351,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.7.tgz", - "integrity": "sha512-ZA0KSYti5w5toax5FpmfcAgu3ZNJxYSRm0AW/Dao5up0YV1hDVof1NvwLomjEN+3/GMtaWDI+CIyJOMTRSTdMw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", "cpu": [ "arm64" ], @@ -2326,9 +2367,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.7.tgz", - "integrity": "sha512-CTOnijBKc5Jpk6/W9hQMMvJnsSYRYgveN6O75DTACCY18RA2nqka8dTZR+x/JqXCRiKk84+5+bRKXUSbbwsS0A==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", "cpu": [ "ia32" ], @@ -2342,9 +2383,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.7.tgz", - "integrity": "sha512-gRaP2sk6hc98N734luX4VpF318l3w+ofrtTu9j5L8EQXF+FzQKV6alCOHMVoJJHvVK/mGbwBXfOL1HETQu9IGQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", "cpu": [ "x64" ], @@ -2404,6 +2445,16 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/@eslint/eslintrc/node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", @@ -2419,6 +2470,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -2432,9 +2495,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", - "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -2456,19 +2519,41 @@ } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", @@ -2483,16 +2568,15 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "dev": true }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", @@ -2509,7 +2593,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, "engines": { "node": ">=12" }, @@ -2521,7 +2604,6 @@ "version": "6.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, "engines": { "node": ">=12" }, @@ -2532,14 +2614,12 @@ "node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -2556,7 +2636,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, "dependencies": { "ansi-regex": "^6.0.1" }, @@ -2571,7 +2650,6 @@ "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -3036,44 +3114,50 @@ "regenerator-runtime": "^0.13.3" } }, + "node_modules/@jimp/utils/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", - "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "peer": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { @@ -3082,19 +3166,14 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, "node_modules/@mrmlnc/readdir-enhanced": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", @@ -3143,7 +3222,6 @@ "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, "optional": true, "engines": { "node": ">=14" @@ -3196,9 +3274,9 @@ } }, "node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", "dev": true, "dependencies": { "@types/estree": "^1.0.0", @@ -3209,7 +3287,7 @@ "node": ">=14.0.0" }, "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "peerDependenciesMeta": { "rollup": { @@ -3218,9 +3296,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.5.0.tgz", - "integrity": "sha512-OINaBGY+Wc++U0rdr7BLuFClxcoWaVW3vQYqmQq6B3bqQ/2olkaoz+K8+af/Mmka/C2yN5j+L9scBkv4BtKsDA==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.4.tgz", + "integrity": "sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==", "cpu": [ "arm" ], @@ -3231,9 +3309,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.5.0.tgz", - "integrity": "sha512-UdMf1pOQc4ZmUA/NTmKhgJTBimbSKnhPS2zJqucqFyBRFPnPDtwA8MzrGNTjDeQbIAWfpJVAlxejw+/lQyBK/w==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.4.tgz", + "integrity": "sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==", "cpu": [ "arm64" ], @@ -3244,9 +3322,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.5.0.tgz", - "integrity": "sha512-L0/CA5p/idVKI+c9PcAPGorH6CwXn6+J0Ys7Gg1axCbTPgI8MeMlhA6fLM9fK+ssFhqogMHFC8HDvZuetOii7w==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.4.tgz", + "integrity": "sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==", "cpu": [ "arm64" ], @@ -3257,9 +3335,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.5.0.tgz", - "integrity": "sha512-QZCbVqU26mNlLn8zi/XDDquNmvcr4ON5FYAHQQsyhrHx8q+sQi/6xduoznYXwk/KmKIXG5dLfR0CvY+NAWpFYQ==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.4.tgz", + "integrity": "sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==", "cpu": [ "x64" ], @@ -3270,9 +3348,22 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.5.0.tgz", - "integrity": "sha512-VpSQ+xm93AeV33QbYslgf44wc5eJGYfYitlQzAi3OObu9iwrGXEnmu5S3ilkqE3Pr/FkgOiJKV/2p0ewf4Hrtg==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.4.tgz", + "integrity": "sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.4.tgz", + "integrity": "sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==", "cpu": [ "arm" ], @@ -3283,9 +3374,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.5.0.tgz", - "integrity": "sha512-OrEyIfpxSsMal44JpEVx9AEcGpdBQG1ZuWISAanaQTSMeStBW+oHWwOkoqR54bw3x8heP8gBOyoJiGg+fLY8qQ==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.4.tgz", + "integrity": "sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==", "cpu": [ "arm64" ], @@ -3296,9 +3387,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.5.0.tgz", - "integrity": "sha512-1H7wBbQuE6igQdxMSTjtFfD+DGAudcYWhp106z/9zBA8OQhsJRnemO4XGavdzHpGhRtRxbgmUGdO3YQgrWf2RA==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.4.tgz", + "integrity": "sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==", "cpu": [ "arm64" ], @@ -3308,10 +3399,49 @@ "linux" ] }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.4.tgz", + "integrity": "sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.4.tgz", + "integrity": "sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.4.tgz", + "integrity": "sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.5.0.tgz", - "integrity": "sha512-FVyFI13tXw5aE65sZdBpNjPVIi4Q5mARnL/39UIkxvSgRAIqCo5sCpCELk0JtXHGee2owZz5aNLbWNfBHzr71Q==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.4.tgz", + "integrity": "sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==", "cpu": [ "x64" ], @@ -3322,9 +3452,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.5.0.tgz", - "integrity": "sha512-eBPYl2sLpH/o8qbSz6vPwWlDyThnQjJfcDOGFbNjmjb44XKC1F5dQfakOsADRVrXCNzM6ZsSIPDG5dc6HHLNFg==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.4.tgz", + "integrity": "sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==", "cpu": [ "x64" ], @@ -3335,9 +3465,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.5.0.tgz", - "integrity": "sha512-xaOHIfLOZypoQ5U2I6rEaugS4IYtTgP030xzvrBf5js7p9WI9wik07iHmsKaej8Z83ZDxN5GyypfoyKV5O5TJA==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.4.tgz", + "integrity": "sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==", "cpu": [ "arm64" ], @@ -3348,9 +3478,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.5.0.tgz", - "integrity": "sha512-Al6quztQUrHwcOoU2TuFblUQ5L+/AmPBXFR6dUvyo4nRj2yQRK0WIUaGMF/uwKulvRcXkpHe3k9A8Vf93VDktA==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.4.tgz", + "integrity": "sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==", "cpu": [ "ia32" ], @@ -3361,9 +3491,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.5.0.tgz", - "integrity": "sha512-8kdW+brNhI/NzJ4fxDufuJUjepzINqJKLGHuxyAtpPG9bMbn8P5mtaCcbOm0EzLJ+atg+kF9dwg8jpclkVqx5w==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.4.tgz", + "integrity": "sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==", "cpu": [ "x64" ], @@ -3374,9 +3504,9 @@ ] }, "node_modules/@sideway/address": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", "dev": true, "dependencies": { "@hapi/hoek": "^9.0.0" @@ -3467,9 +3597,9 @@ } }, "node_modules/@types/alpinejs": { - "version": "3.13.6", - "resolved": "https://registry.npmjs.org/@types/alpinejs/-/alpinejs-3.13.6.tgz", - "integrity": "sha512-BMi1/2uQz7mp30VFn69SzjN7YwQ0QzE4Hn3RMBt4iMpQeasdbMiImv1f5yvK1bYmvjIyG/YFg+CgPxbjIXZk0g==", + "version": "3.13.10", + "resolved": "https://registry.npmjs.org/@types/alpinejs/-/alpinejs-3.13.10.tgz", + "integrity": "sha512-ah53tF6mWuuwerpDE7EHwbZErNDJQlsLISPqJhYj2RZ9nuTYbRknSkqebUd3igkhLIZKkPa7IiXjSn9qsU9O2w==", "dev": true }, "node_modules/@types/cacheable-request": { @@ -3485,9 +3615,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz", - "integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==", + "version": "8.56.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", + "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", "dev": true, "dependencies": { "@types/estree": "*", @@ -3495,15 +3625,15 @@ } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "dev": true }, "node_modules/@types/fs-extra": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.3.tgz", - "integrity": "sha512-7IdV01N0u/CaVO0fuY1YmEg14HQN3+EW8mpNgg6NEfxEl/lzCa5OxlBu3iFsCAdamnYOcTQ7oEi43Xc/67Rgzw==", + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.5.tgz", + "integrity": "sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -3520,9 +3650,9 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", "dev": true }, "node_modules/@types/json-schema": { @@ -3547,9 +3677,9 @@ } }, "node_modules/@types/lodash": { - "version": "4.14.194", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz", - "integrity": "sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g==", + "version": "4.17.0", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz", + "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==", "dev": true }, "node_modules/@types/lodash-es": { @@ -3562,9 +3692,9 @@ } }, "node_modules/@types/mime-types": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", - "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.4.tgz", + "integrity": "sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==", "dev": true }, "node_modules/@types/minimatch": { @@ -3574,30 +3704,30 @@ "dev": true }, "node_modules/@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", "dev": true }, "node_modules/@types/node": { - "version": "20.9.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.3.tgz", - "integrity": "sha512-nk5wXLAXGBKfrhLB0cyHGbSqopS+nz0BUgZkUQqSHSSgdee0kssp1IAqlQOu333bW+gMNs2QREx7iynm19Abxw==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, "node_modules/@types/resolve": { @@ -3607,18 +3737,18 @@ "dev": true }, "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/semver": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", - "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true }, "node_modules/@types/sinonjs__fake-timers": { @@ -3628,9 +3758,9 @@ "dev": true }, "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", + "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", "dev": true }, "node_modules/@types/web-bluetooth": { @@ -3639,9 +3769,9 @@ "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" }, "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, "optional": true, "dependencies": { @@ -3649,33 +3779,33 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.1.tgz", - "integrity": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.7.1.tgz", + "integrity": "sha512-KwfdWXJBOviaBVhxO3p5TJiLpNuh2iyXyjmWN0f1nU87pwyvfS0EmjC6ukQVYVFJd/K1+0NWGPDXiyEyQorn0Q==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.19.1", - "@typescript-eslint/type-utils": "6.19.1", - "@typescript-eslint/utils": "6.19.1", - "@typescript-eslint/visitor-keys": "6.19.1", + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.7.1", + "@typescript-eslint/type-utils": "7.7.1", + "@typescript-eslint/utils": "7.7.1", + "@typescript-eslint/visitor-keys": "7.7.1", "debug": "^4.3.4", "graphemer": "^1.4.0", - "ignore": "^5.2.4", + "ignore": "^5.3.1", "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -3684,26 +3814,26 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.1.tgz", - "integrity": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.7.1.tgz", + "integrity": "sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.19.1", - "@typescript-eslint/types": "6.19.1", - "@typescript-eslint/typescript-estree": "6.19.1", - "@typescript-eslint/visitor-keys": "6.19.1", + "@typescript-eslint/scope-manager": "7.7.1", + "@typescript-eslint/types": "7.7.1", + "@typescript-eslint/typescript-estree": "7.7.1", + "@typescript-eslint/visitor-keys": "7.7.1", "debug": "^4.3.4" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -3712,16 +3842,16 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.1.tgz", - "integrity": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.7.1.tgz", + "integrity": "sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.19.1", - "@typescript-eslint/visitor-keys": "6.19.1" + "@typescript-eslint/types": "7.7.1", + "@typescript-eslint/visitor-keys": "7.7.1" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -3729,25 +3859,25 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.1.tgz", - "integrity": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.7.1.tgz", + "integrity": "sha512-ZksJLW3WF7o75zaBPScdW1Gbkwhd/lyeXGf1kQCxJaOeITscoSl0MjynVvCzuV5boUz/3fOI06Lz8La55mu29Q==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.19.1", - "@typescript-eslint/utils": "6.19.1", + "@typescript-eslint/typescript-estree": "7.7.1", + "@typescript-eslint/utils": "7.7.1", "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -3756,12 +3886,12 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.1.tgz", - "integrity": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.7.1.tgz", + "integrity": "sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==", "dev": true, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -3769,22 +3899,22 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.1.tgz", - "integrity": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.7.1.tgz", + "integrity": "sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.19.1", - "@typescript-eslint/visitor-keys": "6.19.1", + "@typescript-eslint/types": "7.7.1", + "@typescript-eslint/visitor-keys": "7.7.1", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -3796,66 +3926,42 @@ } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/@typescript-eslint/utils": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.1.tgz", - "integrity": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.7.1.tgz", + "integrity": "sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.19.1", - "@typescript-eslint/types": "6.19.1", - "@typescript-eslint/typescript-estree": "6.19.1", - "semver": "^7.5.4" + "@types/json-schema": "^7.0.15", + "@types/semver": "^7.5.8", + "@typescript-eslint/scope-manager": "7.7.1", + "@typescript-eslint/types": "7.7.1", + "@typescript-eslint/typescript-estree": "7.7.1", + "semver": "^7.6.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^8.56.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.19.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.1.tgz", - "integrity": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==", + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.7.1.tgz", + "integrity": "sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.19.1", - "eslint-visitor-keys": "^3.4.1" + "@typescript-eslint/types": "7.7.1", + "eslint-visitor-keys": "^3.4.3" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -3869,17 +3975,17 @@ "dev": true }, "node_modules/@vitejs/plugin-legacy": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.3.0.tgz", - "integrity": "sha512-BhW+WcJmEgW5G/1UQRiVQ7wz9/ZPnxqzExT9n0zAk4RlqQQ/26udIeXzdU8+03AGnaF61wmZlCspexgEnxFWMA==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.3.2.tgz", + "integrity": "sha512-8moCOrIMaZ/Rjln0Q6GsH6s8fAt1JOI3k8nmfX4tXUxE5KAExVctSyOBk+A25GClsdSWqIk2yaUthH3KJ2X4tg==", "dev": true, "dependencies": { - "@babel/core": "^7.23.7", - "@babel/preset-env": "^7.23.8", - "browserslist": "^4.22.2", - "core-js": "^3.35.0", - "esbuild-plugin-browserslist": "^0.10.0", - "magic-string": "^0.30.5", + "@babel/core": "^7.23.9", + "@babel/preset-env": "^7.23.9", + "browserslist": "^4.23.0", + "browserslist-to-esbuild": "^2.1.1", + "core-js": "^3.36.0", + "magic-string": "^0.30.7", "regenerator-runtime": "^0.14.1", "systemjs": "^6.14.3" }, @@ -3894,16 +4000,10 @@ "vite": "^5.0.0" } }, - "node_modules/@vitejs/plugin-legacy/node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true - }, "node_modules/@vitejs/plugin-vue": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.3.tgz", - "integrity": "sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.4.tgz", + "integrity": "sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==", "dev": true, "engines": { "node": "^18.0.0 || >=20.0.0" @@ -3914,113 +4014,126 @@ } }, "node_modules/@vue/compiler-core": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.15.tgz", - "integrity": "sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.25.tgz", + "integrity": "sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==", "dependencies": { - "@babel/parser": "^7.23.6", - "@vue/shared": "3.4.15", + "@babel/parser": "^7.24.4", + "@vue/shared": "3.4.25", "entities": "^4.5.0", "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.0" } }, "node_modules/@vue/compiler-dom": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.15.tgz", - "integrity": "sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.25.tgz", + "integrity": "sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==", "dependencies": { - "@vue/compiler-core": "3.4.15", - "@vue/shared": "3.4.15" + "@vue/compiler-core": "3.4.25", + "@vue/shared": "3.4.25" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.15.tgz", - "integrity": "sha512-LCn5M6QpkpFsh3GQvs2mJUOAlBQcCco8D60Bcqmf3O3w5a+KWS5GvYbrrJBkgvL1BDnTp+e8q0lXCLgHhKguBA==", - "dependencies": { - "@babel/parser": "^7.23.6", - "@vue/compiler-core": "3.4.15", - "@vue/compiler-dom": "3.4.15", - "@vue/compiler-ssr": "3.4.15", - "@vue/shared": "3.4.15", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.25.tgz", + "integrity": "sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==", + "dependencies": { + "@babel/parser": "^7.24.4", + "@vue/compiler-core": "3.4.25", + "@vue/compiler-dom": "3.4.25", + "@vue/compiler-ssr": "3.4.25", + "@vue/shared": "3.4.25", "estree-walker": "^2.0.2", - "magic-string": "^0.30.5", - "postcss": "^8.4.33", - "source-map-js": "^1.0.2" + "magic-string": "^0.30.10", + "postcss": "^8.4.38", + "source-map-js": "^1.2.0" } }, "node_modules/@vue/compiler-ssr": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.15.tgz", - "integrity": "sha512-1jdeQyiGznr8gjFDadVmOJqZiLNSsMa5ZgqavkPZ8O2wjHv0tVuAEsw5hTdUoUW4232vpBbL/wJhzVW/JwY1Uw==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.25.tgz", + "integrity": "sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==", "dependencies": { - "@vue/compiler-dom": "3.4.15", - "@vue/shared": "3.4.15" + "@vue/compiler-dom": "3.4.25", + "@vue/shared": "3.4.25" } }, "node_modules/@vue/reactivity": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.15.tgz", - "integrity": "sha512-55yJh2bsff20K5O84MxSvXKPHHt17I2EomHznvFiJCAZpJTNW8IuLj1xZWMLELRhBK3kkFV/1ErZGHJfah7i7w==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", "dependencies": { - "@vue/shared": "3.4.15" + "@vue/shared": "3.1.5" } }, + "node_modules/@vue/reactivity/node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" + }, "node_modules/@vue/runtime-core": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.15.tgz", - "integrity": "sha512-6E3by5m6v1AkW0McCeAyhHTw+3y17YCOKG0U0HDKDscV4Hs0kgNT5G+GCHak16jKgcCDHpI9xe5NKb8sdLCLdw==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.25.tgz", + "integrity": "sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==", "dependencies": { - "@vue/reactivity": "3.4.15", - "@vue/shared": "3.4.15" + "@vue/reactivity": "3.4.25", + "@vue/shared": "3.4.25" + } + }, + "node_modules/@vue/runtime-core/node_modules/@vue/reactivity": { + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.25.tgz", + "integrity": "sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==", + "dependencies": { + "@vue/shared": "3.4.25" } }, "node_modules/@vue/runtime-dom": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.15.tgz", - "integrity": "sha512-EVW8D6vfFVq3V/yDKNPBFkZKGMFSvZrUQmx196o/v2tHKdwWdiZjYUBS+0Ez3+ohRyF8Njwy/6FH5gYJ75liUw==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.25.tgz", + "integrity": "sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==", "dependencies": { - "@vue/runtime-core": "3.4.15", - "@vue/shared": "3.4.15", + "@vue/runtime-core": "3.4.25", + "@vue/shared": "3.4.25", "csstype": "^3.1.3" } }, "node_modules/@vue/server-renderer": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.15.tgz", - "integrity": "sha512-3HYzaidu9cHjrT+qGUuDhFYvF/j643bHC6uUN9BgM11DVy+pM6ATsG6uPBLnkwOgs7BpJABReLmpL3ZPAsUaqw==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.25.tgz", + "integrity": "sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==", "dependencies": { - "@vue/compiler-ssr": "3.4.15", - "@vue/shared": "3.4.15" + "@vue/compiler-ssr": "3.4.25", + "@vue/shared": "3.4.25" }, "peerDependencies": { - "vue": "3.4.15" + "vue": "3.4.25" } }, "node_modules/@vue/shared": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.15.tgz", - "integrity": "sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==" + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.25.tgz", + "integrity": "sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==" }, "node_modules/@vueuse/core": { - "version": "10.7.2", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.7.2.tgz", - "integrity": "sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==", + "version": "10.9.0", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.9.0.tgz", + "integrity": "sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==", "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.7.2", - "@vueuse/shared": "10.7.2", - "vue-demi": ">=0.14.6" + "@vueuse/metadata": "10.9.0", + "@vueuse/shared": "10.9.0", + "vue-demi": ">=0.14.7" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "version": "0.14.7", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", + "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -4043,28 +4156,28 @@ } }, "node_modules/@vueuse/metadata": { - "version": "10.7.2", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.7.2.tgz", - "integrity": "sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==", + "version": "10.9.0", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.9.0.tgz", + "integrity": "sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA==", "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/shared": { - "version": "10.7.2", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.7.2.tgz", - "integrity": "sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==", + "version": "10.9.0", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.9.0.tgz", + "integrity": "sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==", "dependencies": { - "vue-demi": ">=0.14.6" + "vue-demi": ">=0.14.7" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", + "version": "0.14.7", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", + "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -4090,12 +4203,13 @@ "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", "dev": true }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -4124,9 +4238,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", "dev": true, "engines": { "node": ">=0.4.0" @@ -4174,26 +4288,13 @@ } }, "node_modules/alpinejs": { - "version": "3.13.5", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.5.tgz", - "integrity": "sha512-1d2XeNGN+Zn7j4mUAKXtAgdc4/rLeadyTMWeJGXF5DzwawPBxwTiBhFFm6w/Ei8eJxUZeyNWWSD9zknfdz1kEw==", + "version": "3.13.10", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.10.tgz", + "integrity": "sha512-86RB307VWICex0vG15Eq0x058cNNsvS57ohrjN6n/TJAVSFV+zXOK/E34nNHDHc6Poq+yTNCLqEzPqEkRBTMRQ==", "dependencies": { "@vue/reactivity": "~3.1.1" } }, - "node_modules/alpinejs/node_modules/@vue/reactivity": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", - "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", - "dependencies": { - "@vue/shared": "3.1.5" - } - }, - "node_modules/alpinejs/node_modules/@vue/shared": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", - "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" - }, "node_modules/ansi-align": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", @@ -4224,7 +4325,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, "engines": { "node": ">=8" } @@ -4308,6 +4408,12 @@ "readable-stream": "^2.0.6" } }, + "node_modules/are-we-there-yet/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, "node_modules/are-we-there-yet/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -4374,13 +4480,16 @@ } }, "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4395,15 +4504,16 @@ } }, "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", "is-string": "^1.0.7" }, "engines": { @@ -4439,16 +4549,17 @@ } }, "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -4494,17 +4605,18 @@ } }, "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", "is-shared-array-buffer": "^1.0.2" }, "engines": { @@ -4585,9 +4697,9 @@ } }, "node_modules/asset-resolver/node_modules/cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", "dev": true, "dependencies": { "clone-response": "^1.0.2", @@ -4635,6 +4747,19 @@ "node": ">=10" } }, + "node_modules/asset-resolver/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/asset-resolver/node_modules/got": { "version": "11.8.6", "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", @@ -4660,25 +4785,16 @@ "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/asset-resolver/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/asset-resolver/node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/asset-resolver/node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", + "node_modules/asset-resolver/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "json-buffer": "3.0.1" + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/asset-resolver/node_modules/lowercase-keys": { @@ -4727,18 +4843,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/asset-resolver/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, "node_modules/asset-resolver/node_modules/normalize-url": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", @@ -4760,61 +4864,129 @@ "node": ">=8" } }, - "node_modules/asset-resolver/node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "node_modules/asset-resolver/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "dependencies": { - "lowercase-keys": "^2.0.0" + "p-try": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/asset-resolver/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/asset-resolver/node_modules/type-fest": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", - "dev": true, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/asset-resolver/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "node_modules/asset-resolver/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/astral-regex": { + "node_modules/asset-resolver/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/asset-resolver/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/asset-resolver/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asset-resolver/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/asset-resolver/node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/asset-resolver/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/asset-resolver/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", @@ -4824,9 +4996,9 @@ } }, "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", "dev": true }, "node_modules/async-limiter": { @@ -4870,9 +5042,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.17", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", - "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", "dev": true, "funding": [ { @@ -4889,8 +5061,8 @@ } ], "dependencies": { - "browserslist": "^4.22.2", - "caniuse-lite": "^1.0.30001578", + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4907,10 +5079,13 @@ } }, "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -4943,11 +5118,11 @@ } }, "node_modules/axios": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", - "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", + "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", "dependencies": { - "follow-redirects": "^1.15.4", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } @@ -5034,13 +5209,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.8", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", - "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.5.0", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { @@ -5057,25 +5232,25 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", - "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0", - "core-js-compat": "^3.34.0" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", - "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -5194,6 +5369,13 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "node_modules/bare-events": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.2.tgz", + "integrity": "sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==", + "dev": true, + "optional": true + }, "node_modules/base": { "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", @@ -5276,11 +5458,14 @@ } }, "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bl": { @@ -5426,12 +5611,11 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, "node_modules/braces": { @@ -5446,9 +5630,9 @@ } }, "node_modules/browserslist": { - "version": "4.22.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", - "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", "dev": true, "funding": [ { @@ -5465,8 +5649,8 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001580", - "electron-to-chromium": "^1.4.648", + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.13" }, @@ -5477,6 +5661,24 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, + "node_modules/browserslist-to-esbuild": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/browserslist-to-esbuild/-/browserslist-to-esbuild-2.1.1.tgz", + "integrity": "sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==", + "dev": true, + "dependencies": { + "meow": "^13.0.0" + }, + "bin": { + "browserslist-to-esbuild": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "browserslist": "*" + } + }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -5602,6 +5804,21 @@ "node": ">=8" } }, + "node_modules/cacheable-request/node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, + "node_modules/cacheable-request/node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, "node_modules/cacheable-request/node_modules/lowercase-keys": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", @@ -5612,23 +5829,28 @@ } }, "node_modules/cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", + "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -5718,10 +5940,19 @@ "node": ">=6" } }, + "node_modules/camelcase-keys/node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/caniuse-lite": { - "version": "1.0.30001581", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz", - "integrity": "sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==", + "version": "1.0.30001612", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz", + "integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==", "dev": true, "funding": [ { @@ -5781,9 +6012,9 @@ } }, "node_modules/check-types": { - "version": "11.2.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", - "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==", + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==", "dev": true }, "node_modules/cheerio": { @@ -5825,15 +6056,9 @@ } }, "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -5846,6 +6071,9 @@ "engines": { "node": ">= 8.10.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, "optionalDependencies": { "fsevents": "~2.3.2" } @@ -5895,9 +6123,9 @@ } }, "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -5934,75 +6162,22 @@ "node": ">=0.10.0" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/clean-css": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", - "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "dependencies": { "source-map": "~0.6.0" @@ -6045,9 +6220,9 @@ } }, "node_modules/cli-spinners": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.8.0.tgz", - "integrity": "sha512-/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, "engines": { "node": ">=6" @@ -6057,9 +6232,9 @@ } }, "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", + "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", "dev": true, "dependencies": { "string-width": "^4.2.0" @@ -6210,6 +6385,11 @@ "readable-stream": "^2.3.5" } }, + "node_modules/cloneable-readable/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "node_modules/cloneable-readable/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -6307,9 +6487,9 @@ "dev": true }, "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, "node_modules/colors": { @@ -6356,9 +6536,12 @@ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/concat-map": { "version": "0.0.1", @@ -6380,6 +6563,12 @@ "typedarray": "^0.0.6" } }, + "node_modules/concat-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, "node_modules/concat-stream/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -6457,9 +6646,9 @@ } }, "node_modules/core-js": { - "version": "3.35.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", - "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "version": "3.37.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.37.0.tgz", + "integrity": "sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==", "dev": true, "hasInstallScript": true, "funding": { @@ -6468,12 +6657,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.35.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz", - "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==", + "version": "3.37.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.0.tgz", + "integrity": "sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==", "dev": true, "dependencies": { - "browserslist": "^4.22.2" + "browserslist": "^4.23.0" }, "funding": { "type": "opencollective", @@ -6502,41 +6691,41 @@ } }, "node_modules/critical": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/critical/-/critical-5.1.1.tgz", - "integrity": "sha512-MHVSBVnmBN38ur4i0cfQV8FA8LJEcz4pDqnUTM9bi23nHKKaFboAw9DcDSgR3MYDNiWWehO4FRhh6EjSbfcRUA==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/critical/-/critical-5.3.0.tgz", + "integrity": "sha512-LJaLOddf+jWA/rujW6Bzr/eBd5KNhuwo0ps1WCho5WK58qWminXjJUqLbY75Nf2MIO9h879WfYrucG+9hwMYCw==", "dev": true, "dependencies": { "clean-css": "^5.3.2", "common-tags": "^1.8.2", "css-url-parser": "^1.1.3", - "data-uri-to-buffer": "^4.0.1", + "data-uri-to-buffer": "^5.0.1", "debug": "^4.3.4", "find-up": "^6.3.0", "get-stdin": "^9.0.0", - "globby": "^13.1.3", + "globby": "^13.2.2", "got": "^12.6.0", "group-args": "^0.1.0", "indent-string": "^5.0.0", "inline-critical": "^10.0.1", "is-glob": "^4.0.3", - "joi": "^17.9.1", + "joi": "^17.10.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", "make-dir": "^3.1.0", "meow": "^11.0.0", - "oust": "^2.0.3", + "oust": "^2.0.4", "p-all": "^4.0.0", "penthouse": "^2.3.3", "picocolors": "^1.0.0", "plugin-error": "^2.0.1", - "postcss": "^8.4.21", + "postcss": "^8.4.29", "postcss-discard": "^2.0.0", "postcss-image-inliner": "^6.1.0", "postcss-url": "^10.1.3", "replace-ext": "^2.0.0", - "slash": "^5.0.0", - "tempy": "^3.0.0", + "slash": "^5.1.0", + "tempy": "^3.1.0", "through2": "^4.0.2", "vinyl": "^3.0.0" }, @@ -6548,9 +6737,9 @@ } }, "node_modules/critical/node_modules/@sindresorhus/is": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", - "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", "dev": true, "engines": { "node": ">=14.16" @@ -6581,15 +6770,15 @@ } }, "node_modules/critical/node_modules/cacheable-request": { - "version": "10.2.9", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.9.tgz", - "integrity": "sha512-CaAMr53AS1Tb9evO1BIWFnZjSr8A4pbXofpsNVWPMDZZj3ZQKHwsQG9BrTqQ4x5ZYJXz1T2b8LLtTZODxSpzbg==", + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "dev": true, "dependencies": { - "@types/http-cache-semantics": "^4.0.1", + "@types/http-cache-semantics": "^4.0.2", "get-stream": "^6.0.1", "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.2", + "keyv": "^4.5.3", "mimic-response": "^4.0.0", "normalize-url": "^8.0.0", "responselike": "^3.0.0" @@ -6629,9 +6818,9 @@ } }, "node_modules/critical/node_modules/camelcase-keys/node_modules/quick-lru": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.1.1.tgz", - "integrity": "sha512-S27GBT+F0NTRiehtbrgaSE1idUAJ5bX8dPAQTdylEyNlrdcH5X4Lz7Edz3DYzecbsCluD5zO8ZNEe04z3D3u6Q==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.1.2.tgz", + "integrity": "sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==", "dev": true, "engines": { "node": ">=12" @@ -6640,18 +6829,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/critical/node_modules/camelcase-keys/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/critical/node_modules/decamelize": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-6.0.0.tgz", @@ -6729,14 +6906,14 @@ } }, "node_modules/critical/node_modules/globby": { - "version": "13.1.4", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", - "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "dev": true, "dependencies": { "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" }, @@ -6760,9 +6937,9 @@ } }, "node_modules/critical/node_modules/got": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.6.0.tgz", - "integrity": "sha512-WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ==", + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", "dev": true, "dependencies": { "@sindresorhus/is": "^5.2.0", @@ -6797,9 +6974,9 @@ } }, "node_modules/critical/node_modules/http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dev": true, "dependencies": { "quick-lru": "^5.1.1", @@ -6821,25 +6998,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/critical/node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/critical/node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/critical/node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "node_modules/critical/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "dependencies": { "p-locate": "^6.0.0" @@ -6898,6 +7060,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/critical/node_modules/meow/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/critical/node_modules/mimic-response": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", @@ -6926,9 +7100,9 @@ } }, "node_modules/critical/node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "dev": true, "engines": { "node": ">=14.16" @@ -6985,18 +7159,6 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/critical/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/critical/node_modules/read-pkg": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-7.1.0.tgz", @@ -7032,18 +7194,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/critical/node_modules/read-pkg-up/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/critical/node_modules/read-pkg/node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", @@ -7083,18 +7233,6 @@ "node": ">=10" } }, - "node_modules/critical/node_modules/read-pkg/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/critical/node_modules/redent": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", @@ -7127,9 +7265,9 @@ } }, "node_modules/critical/node_modules/slash": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.0.0.tgz", - "integrity": "sha512-n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "engines": { "node": ">=14.16" @@ -7174,18 +7312,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/critical/node_modules/type-fest": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.8.0.tgz", - "integrity": "sha512-FVNSzGQz9Th+/9R6Lvv7WIAkstylfHN2/JYxkyhhmKFYh9At2DST8t6L6Lref9eYO8PXFTfG9Sg1Agg0K3vq3Q==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/critical/node_modules/vinyl": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz", @@ -7233,7 +7359,6 @@ "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -7279,9 +7404,9 @@ } }, "node_modules/css-functions-list": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", - "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", + "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", "dev": true, "engines": { "node": ">=12 || >=16" @@ -7418,9 +7543,9 @@ "dev": true }, "node_modules/cypress": { - "version": "13.6.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.3.tgz", - "integrity": "sha512-d/pZvgwjAyZsoyJ3FOsJT5lDsqnxQ/clMqnNc++rkHjbkkiF2h9s0JsZSyyH4QXhVFW3zPFg82jD25roFLOdZA==", + "version": "13.8.1", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.8.1.tgz", + "integrity": "sha512-Uk6ovhRbTg6FmXjeZW/TkbRM07KPtvM5gah1BIMp4Y2s+i/NMxgaLw0+PbYTOdw1+egE0FP3mWRiGcRkjjmhzA==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -7431,7 +7556,7 @@ "arch": "^2.2.0", "blob-util": "^2.0.2", "bluebird": "^3.7.2", - "buffer": "^5.6.0", + "buffer": "^5.7.1", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", @@ -7449,7 +7574,7 @@ "figures": "^3.2.0", "fs-extra": "^9.1.0", "getos": "^3.2.1", - "is-ci": "^3.0.0", + "is-ci": "^3.0.1", "is-installed-globally": "~0.4.0", "lazy-ass": "^1.6.0", "listr2": "^3.8.3", @@ -7588,12 +7713,12 @@ } }, "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-5.0.1.tgz", + "integrity": "sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==", "dev": true, "engines": { - "node": ">= 12" + "node": ">= 14" } }, "node_modules/data-urls": { @@ -7635,10 +7760,61 @@ "node": ">=12" } }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/dayjs": { - "version": "1.11.7", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", - "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", + "version": "1.11.10", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==", "dev": true }, "node_modules/debug": { @@ -7773,17 +7949,20 @@ "dev": true }, "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-lazy-prop": { @@ -7844,34 +8023,34 @@ "dev": true }, "node_modules/depcheck": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/depcheck/-/depcheck-1.4.3.tgz", - "integrity": "sha512-vy8xe1tlLFu7t4jFyoirMmOR7x7N601ubU9Gkifyr9z8rjBFtEdWHDBMqXyk6OkK+94NXutzddVXJuo0JlUQKQ==", + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/depcheck/-/depcheck-1.4.7.tgz", + "integrity": "sha512-1lklS/bV5chOxwNKA/2XUUk/hPORp8zihZsXflr8x0kLwmcZ9Y9BsS6Hs3ssvA+2wUVbG0U2Ciqvm1SokNjPkA==", "dev": true, "dependencies": { - "@babel/parser": "7.16.4", - "@babel/traverse": "^7.12.5", - "@vue/compiler-sfc": "^3.0.5", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0", - "debug": "^4.2.0", - "deps-regex": "^0.1.4", - "ignore": "^5.1.8", - "is-core-module": "^2.4.0", - "js-yaml": "^3.14.0", - "json5": "^2.1.3", - "lodash": "^4.17.20", - "minimatch": "^3.0.4", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@vue/compiler-sfc": "^3.3.4", + "callsite": "^1.0.0", + "camelcase": "^6.3.0", + "cosmiconfig": "^7.1.0", + "debug": "^4.3.4", + "deps-regex": "^0.2.0", + "findup-sync": "^5.0.0", + "ignore": "^5.2.4", + "is-core-module": "^2.12.0", + "js-yaml": "^3.14.1", + "json5": "^2.2.3", + "lodash": "^4.17.21", + "minimatch": "^7.4.6", "multimatch": "^5.0.0", "please-upgrade-node": "^3.2.0", - "query-ast": "^1.0.3", - "readdirp": "^3.5.0", + "readdirp": "^3.6.0", "require-package-name": "^2.0.1", - "resolve": "^1.18.1", - "sass": "^1.29.0", - "scss-parser": "^1.0.4", - "semver": "^7.3.2", - "yargs": "^16.1.0" + "resolve": "^1.22.3", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "yargs": "^16.2.0" }, "bin": { "depcheck": "bin/depcheck.js" @@ -7880,18 +8059,6 @@ "node": ">=10" } }, - "node_modules/depcheck/node_modules/@babel/parser": { - "version": "7.16.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", - "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/depcheck/node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -7952,6 +8119,21 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/depcheck/node_modules/minimatch": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/depcheck/node_modules/multimatch": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", @@ -7971,6 +8153,37 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/depcheck/node_modules/multimatch/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/depcheck/node_modules/multimatch/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/depcheck/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/depcheck/node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -7999,11 +8212,20 @@ } }, "node_modules/deps-regex": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deps-regex/-/deps-regex-0.1.4.tgz", - "integrity": "sha512-3tzwGYogSJi8HoG93R5x9NrdefZQOXgHgGih/7eivloOq6yC6O+yoFxZnkgP661twvfILONfoKRdF9GQOGx2RA==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/deps-regex/-/deps-regex-0.2.0.tgz", + "integrity": "sha512-PwuBojGMQAYbWkMXOY9Pd/NWCDNHVH12pnS7WHqZkTSeMESe4hwnKKRp0yR87g37113x4JPbo/oIvXY+s/f56Q==", "dev": true }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/detect-indent": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", @@ -8025,6 +8247,12 @@ "node": ">=0.10" } }, + "node_modules/devtools-protocol": { + "version": "0.0.869402", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.869402.tgz", + "integrity": "sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA==", + "dev": true + }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -8095,6 +8323,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "deprecated": "Use your platform's native DOMException instead", "dev": true, "dependencies": { "webidl-conversions": "^7.0.0" @@ -8119,14 +8348,14 @@ } }, "node_modules/domutils": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", - "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dev": true, "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", - "domhandler": "^5.0.1" + "domhandler": "^5.0.3" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" @@ -8153,8 +8382,7 @@ "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, "node_modules/ecc-jsbn": { "version": "0.1.2", @@ -8176,16 +8404,15 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.648", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.648.tgz", - "integrity": "sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg==", + "version": "1.4.749", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.749.tgz", + "integrity": "sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==", "dev": true }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "node_modules/end-of-stream": { "version": "1.4.4", @@ -8197,12 +8424,13 @@ } }, "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", "dev": true, "dependencies": { - "ansi-colors": "^4.1.1" + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8.6" @@ -8249,50 +8477,57 @@ } }, "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", + "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", + "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" + "which-typed-array": "^1.1.15" }, "engines": { "node": ">= 0.4" @@ -8301,15 +8536,48 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -8348,9 +8616,9 @@ "dev": true }, "node_modules/esbuild": { - "version": "0.19.7", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.7.tgz", - "integrity": "sha512-6brbTZVqxhqgbpqBR5MzErImcpA0SQdoKOkcWK/U30HtQxnokIpG3TX2r0IJqbFUzqLjhU/zC1S5ndgakObVCQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "dev": true, "hasInstallScript": true, "bin": { @@ -8360,51 +8628,35 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.19.7", - "@esbuild/android-arm64": "0.19.7", - "@esbuild/android-x64": "0.19.7", - "@esbuild/darwin-arm64": "0.19.7", - "@esbuild/darwin-x64": "0.19.7", - "@esbuild/freebsd-arm64": "0.19.7", - "@esbuild/freebsd-x64": "0.19.7", - "@esbuild/linux-arm": "0.19.7", - "@esbuild/linux-arm64": "0.19.7", - "@esbuild/linux-ia32": "0.19.7", - "@esbuild/linux-loong64": "0.19.7", - "@esbuild/linux-mips64el": "0.19.7", - "@esbuild/linux-ppc64": "0.19.7", - "@esbuild/linux-riscv64": "0.19.7", - "@esbuild/linux-s390x": "0.19.7", - "@esbuild/linux-x64": "0.19.7", - "@esbuild/netbsd-x64": "0.19.7", - "@esbuild/openbsd-x64": "0.19.7", - "@esbuild/sunos-x64": "0.19.7", - "@esbuild/win32-arm64": "0.19.7", - "@esbuild/win32-ia32": "0.19.7", - "@esbuild/win32-x64": "0.19.7" - } - }, - "node_modules/esbuild-plugin-browserslist": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.10.0.tgz", - "integrity": "sha512-rZWFcp3l+73xDiJB+Vl9UqP1VVs+L4E0lygbwJl6UTmW2qQago7DLT56hBu0vocH/TtZsAcRHj0+qHqkkB5Gww==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "zod": "^3.21.4" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "browserslist": "^4.21.8", - "esbuild": "~0.19.2" + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "engines": { "node": ">=6" @@ -8449,16 +8701,16 @@ } }, "node_modules/eslint": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", - "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.56.0", - "@humanwhocodes/config-array": "^0.11.13", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -8548,9 +8800,9 @@ } }, "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", "dev": true, "dependencies": { "debug": "^3.2.7" @@ -8604,6 +8856,16 @@ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, + "node_modules/eslint-plugin-import/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/eslint-plugin-import/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -8625,6 +8887,18 @@ "node": ">=0.10.0" } }, + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/eslint-plugin-import/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -8665,31 +8939,59 @@ } }, "node_modules/eslint-plugin-vue": { - "version": "9.20.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.20.1.tgz", - "integrity": "sha512-GyCs8K3lkEvoyC1VV97GJhP1SvqsKCiWGHnbn0gVUYiUhaH2+nB+Dv1uekv1THFMPbBfYxukrzQdltw950k+LQ==", + "version": "9.25.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.25.0.tgz", + "integrity": "sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", + "globals": "^13.24.0", "natural-compare": "^1.4.0", "nth-check": "^2.1.1", - "postcss-selector-parser": "^6.0.13", - "semver": "^7.5.4", - "vue-eslint-parser": "^9.4.0", + "postcss-selector-parser": "^6.0.15", + "semver": "^7.6.0", + "vue-eslint-parser": "^9.4.2", "xml-name-validator": "^4.0.0" }, "engines": { "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { - "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" } }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, + "node_modules/eslint-plugin-vue/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-vue/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -8728,6 +9030,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -8775,9 +9087,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -8798,6 +9110,18 @@ "node": ">=8" } }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/eslint/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -8993,61 +9317,16 @@ "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/expand-brackets/node_modules/is-extendable": { @@ -9058,14 +9337,6 @@ "node": ">=0.10.0" } }, - "node_modules/expand-brackets/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/expand-brackets/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -9080,6 +9351,18 @@ "node": ">=6" } }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -9206,15 +9489,15 @@ "dev": true }, "node_modules/fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", "dev": true }, "node_modules/fast-fifo": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.2.0.tgz", - "integrity": "sha512-NcvQXt7Cky1cNau15FWy64IjuO8X0JijhTBBrJj1YlxlDfRkJXNaK9RFUjwpfDPzMdv7wB38jr53l9tkNLxnWg==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", "dev": true }, "node_modules/fast-glob": { @@ -9265,9 +9548,9 @@ } }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dependencies": { "reusify": "^1.0.4" } @@ -9409,6 +9692,14 @@ "node": ">=4" } }, + "node_modules/ferdi/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "engines": { + "node": ">=4" + } + }, "node_modules/ferdi/node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", @@ -9579,15 +9870,6 @@ "node": ">=8" } }, - "node_modules/find-yarn-workspace-root2/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/find-yarn-workspace-root2/node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", @@ -9600,6 +9882,21 @@ "node": ">=8" } }, + "node_modules/findup-sync": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", + "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.3", + "micromatch": "^4.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 10.13.0" + } + }, "node_modules/first-chunk-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz", @@ -9611,6 +9908,11 @@ "node": ">=0.10.0" } }, + "node_modules/first-chunk-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "node_modules/first-chunk-stream/node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -9652,25 +9954,10 @@ "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/flat-cache/node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/flat-cache/node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, "node_modules/focus-trap": { @@ -9682,9 +9969,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "funding": [ { "type": "individual", @@ -9721,7 +10008,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" @@ -9737,7 +10023,6 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, "engines": { "node": ">=14" }, @@ -9952,16 +10237,20 @@ "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" }, "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -9994,13 +10283,14 @@ } }, "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" @@ -10052,9 +10342,9 @@ "dev": true }, "node_modules/giturl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/giturl/-/giturl-1.0.1.tgz", - "integrity": "sha512-wQourBdI13n8tbjcZTDl6k+ZrCRMU6p9vfp9jknZq+zfWc8xXNztpZFM4XkPHVzHcMSUZxEMYYKZjIGkPlei6Q==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/giturl/-/giturl-1.0.3.tgz", + "integrity": "sha512-qVDEXufVtYUzYqI5hoDUONh9GCEPi0n+e35KNDafdsNt9fPxB0nvFW/kFiw7W42wkg8TUyhBqb+t24yyaoc87A==", "dev": true, "engines": { "node": ">= 0.10.0" @@ -10095,6 +10385,26 @@ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==" }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/global": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", @@ -10324,18 +10634,6 @@ "node": ">=6" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", @@ -10375,21 +10673,21 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, "engines": { "node": ">= 0.4" @@ -10411,12 +10709,12 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -10499,9 +10797,9 @@ } }, "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { "function-bind": "^1.1.2" }, @@ -10535,44 +10833,31 @@ "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", "dev": true }, - "node_modules/hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", - "dev": true, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "parse-passwd": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { - "node": ">=10" + "node": ">= 6.0.0" } }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" }, "node_modules/html_codesniffer": { "version": "2.5.1", @@ -10679,18 +10964,6 @@ "node": ">=10.19.0" } }, - "node_modules/http2-wrapper/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -10714,12 +10987,12 @@ } }, "node_modules/husky": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.6.tgz", - "integrity": "sha512-EEuw/rfTiMjOfuL7pGO/i9otg1u36TXxqjIA6D9qxVjd/UXoDOsLor/BSFf5hTK50shwzCU3aVVwdXDp/lp7RA==", + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", + "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", "dev": true, "bin": { - "husky": "bin.js" + "husky": "bin.mjs" }, "engines": { "node": ">=18" @@ -10760,9 +11033,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", "dev": true, "engines": { "node": ">= 4" @@ -10804,12 +11077,6 @@ "integrity": "sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==", "dev": true }, - "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "dev": true - }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", @@ -10826,11 +11093,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, "engines": { "node": ">=0.8.19" } @@ -10930,6 +11206,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/inline-critical/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/inline-critical/node_modules/indent-string": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", @@ -10942,6 +11230,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/inline-critical/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/inline-critical/node_modules/meow": { "version": "10.1.5", "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", @@ -10968,16 +11268,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inline-critical/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/inline-critical/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/inline-critical/node_modules/read-pkg": { @@ -11032,9 +11335,9 @@ } }, "node_modules/inline-critical/node_modules/slash": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.0.0.tgz", - "integrity": "sha512-n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "engines": { "node": ">=14.16" @@ -11082,6 +11385,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/inline-critical/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/inquirer": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", @@ -11196,12 +11505,12 @@ } }, "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", + "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" }, @@ -11261,25 +11570,27 @@ } }, "node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", "dependencies": { - "kind-of": "^6.0.0" + "hasown": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11385,14 +11696,29 @@ } }, "node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", "dependencies": { - "kind-of": "^6.0.0" + "hasown": "^2.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-date-object": { @@ -11411,16 +11737,15 @@ } }, "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/is-docker": { @@ -11478,7 +11803,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, "engines": { "node": ">=8" } @@ -11532,9 +11856,9 @@ "dev": true }, "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, "engines": { "node": ">= 0.4" @@ -11603,9 +11927,9 @@ } }, "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", + "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==", "dev": true, "engines": { "node": ">=0.10.0" @@ -11634,12 +11958,15 @@ } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11688,12 +12015,12 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -11764,9 +12091,10 @@ "dev": true }, "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true }, "node_modules/isbinaryfile": { "version": "3.0.3", @@ -11802,7 +12130,6 @@ "version": "2.3.6", "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" }, @@ -11829,6 +12156,12 @@ "regenerator-runtime": "^0.13.3" } }, + "node_modules/jimp/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, "node_modules/jiti": { "version": "1.21.0", "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", @@ -11838,14 +12171,14 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.13.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.0.tgz", + "integrity": "sha512-9qcrTyoBmFZRNHeVP4edKqIUEgFzq7MHvTNSDuHSqkpOPtiBkgNgcmTSqmiw1kw9tdKaiddvIDv/eCJDxmqWCA==", "dev": true, "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0", - "@sideway/address": "^4.1.3", + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", "@sideway/formula": "^3.0.1", "@sideway/pinpoint": "^2.0.0" } @@ -11857,9 +12190,9 @@ "dev": true }, "node_modules/js-library-detector": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.6.0.tgz", - "integrity": "sha512-z8OkDmXALZ22bIzBtIW8cpJ39MV93/Zu1rWrFdhsNw+sity2rOLaGT2kfWWQ6mnRTWs4ddONY5kiroA8e98Gvg==", + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.7.0.tgz", + "integrity": "sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==", "dev": true, "engines": { "node": ">=12" @@ -11958,21 +12291,6 @@ "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, - "node_modules/jsdom/node_modules/tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/jsdom/node_modules/tr46": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", @@ -11985,15 +12303,6 @@ "node": ">=12" } }, - "node_modules/jsdom/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/jsdom/node_modules/whatwg-url": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", @@ -12008,9 +12317,9 @@ } }, "node_modules/jsdom/node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", "dev": true, "engines": { "node": ">=10.0.0" @@ -12041,9 +12350,9 @@ } }, "node_modules/json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, "node_modules/json-parse-even-better-errors": { @@ -12125,12 +12434,12 @@ } }, "node_modules/keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { - "json-buffer": "3.0.0" + "json-buffer": "3.0.1" } }, "node_modules/kind-of": { @@ -12151,9 +12460,9 @@ } }, "node_modules/known-css-properties": { - "version": "0.29.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.29.0.tgz", - "integrity": "sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==", + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.30.0.tgz", + "integrity": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==", "dev": true }, "node_modules/latest-version": { @@ -12261,9 +12570,9 @@ } }, "node_modules/lighthouse-logger": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz", - "integrity": "sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", "dev": true, "dependencies": { "debug": "^2.6.9", @@ -12286,9 +12595,9 @@ "dev": true }, "node_modules/lighthouse-stack-packs": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.9.1.tgz", - "integrity": "sha512-9prq6oMkVHz3GeCkphq4FHXXdj3M/WPiFWUvJAczLYV8j/oTxsgiHSPMqh1KVV11CP0VTxD40hFC0pDfXF+khQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.12.1.tgz", + "integrity": "sha512-i4jTmg7tvZQFwNFiwB+nCK6a7ICR68Xcwo+VIVd6Spi71vBNFUlds5HiDrSbClZdkQDON2Bhqv+KKJIo5zkPeA==", "dev": true }, "node_modules/lighthouse/node_modules/cliui": { @@ -12312,9 +12621,9 @@ } }, "node_modules/lighthouse/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -12827,14 +13136,11 @@ } }, "node_modules/magic-string": { - "version": "0.30.5", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", - "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" } }, "node_modules/make-dir": { @@ -12853,9 +13159,9 @@ } }, "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -13222,6 +13528,11 @@ "node": ">=0.10.0" } }, + "node_modules/mem-fs-editor/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "node_modules/mem-fs-editor/node_modules/micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", @@ -13340,26 +13651,12 @@ } }, "node_modules/meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", + "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", "dev": true, - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -13473,14 +13770,17 @@ } }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minimist": { @@ -13509,7 +13809,6 @@ "version": "7.0.4", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, "engines": { "node": ">=16 || 14 >=14.17" } @@ -13574,6 +13873,26 @@ "node": ">=0.10.0" } }, + "node_modules/multimatch/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/multimatch/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/mustache": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", @@ -13658,9 +13977,9 @@ } }, "node_modules/node-abi/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -13683,6 +14002,26 @@ "node": ">= 0.10.5" } }, + "node_modules/node-dir/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/node-dir/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/node-emoji": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", @@ -13719,13 +14058,13 @@ "dev": true }, "node_modules/node.extend": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.2.tgz", - "integrity": "sha512-pDT4Dchl94/+kkgdwyS2PauDFjZG0Hk0IcHIB+LkW27HLDtdoeMxHTxZh39DYbPP8UflWXWj9JcdDozF+YDOpQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.3.tgz", + "integrity": "sha512-xwADg/okH48PvBmRZyoX8i8GJaKuJ1CqlqotlZOhUio8egD1P5trJupHKBzcPjSF9ifK2gPcEICRBnkfPqQXZw==", "dev": true, "dependencies": { - "has": "^1.0.3", - "is": "^3.2.1" + "hasown": "^2.0.0", + "is": "^3.3.0" }, "engines": { "node": ">=0.4.0" @@ -13747,22 +14086,26 @@ } }, "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" } }, - "node_modules/normalize-path": { - "version": "3.0.0", + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "engines": { @@ -13892,6 +14235,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/npm-check/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/npm-check/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -13984,6 +14337,19 @@ "node": ">=4" } }, + "node_modules/npm-check/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npm-check/node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -14005,22 +14371,25 @@ "node": ">=8" } }, - "node_modules/npm-check/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/npm-check/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "engines": { - "node": ">=10.17.0" + "node": ">=10" } }, - "node_modules/npm-check/node_modules/import-lazy": { + "node_modules/npm-check/node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "engines": { - "node": ">=4" + "node": ">=10.17.0" } }, "node_modules/npm-check/node_modules/inquirer": { @@ -14071,12 +14440,205 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/npm-check/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-check/node_modules/meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/npm-check/node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, + "node_modules/npm-check/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-check/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-check/node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-check/node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/npm-check/node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/npm-check/node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-check/node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/npm-check/node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", @@ -14159,6 +14721,12 @@ "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, + "node_modules/npm-check/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -14204,9 +14772,9 @@ } }, "node_modules/nwsapi": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz", - "integrity": "sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g==", + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.9.tgz", + "integrity": "sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==", "dev": true }, "node_modules/oauth-sign": { @@ -14250,47 +14818,16 @@ "node": ">=0.10.0" } }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/object-copy/node_modules/kind-of": { @@ -14342,13 +14879,13 @@ } }, "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -14360,14 +14897,15 @@ } }, "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -14377,15 +14915,17 @@ } }, "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/object.pick": { @@ -14400,14 +14940,14 @@ } }, "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -14710,16 +15250,16 @@ "dev": true }, "node_modules/oust": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/oust/-/oust-2.0.3.tgz", - "integrity": "sha512-OM9SyOHP1by2e7cBRsHLRimfBsZgzm/58HHZNiVT5PZFpCZHBDv8tvvdbH6w3Fq3wc9IQZtGD72unxXYBtfUsQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/oust/-/oust-2.0.4.tgz", + "integrity": "sha512-hGFMHndpX0TDdc9bck8bAet7kmVD+lmJnABWYV4RNjjQ+XO2mEhwSK5o15NxAZ9C8qc7rdvqGdnA/0wRP8Ugtg==", "dev": true, "dependencies": { "cheerio": "^1.0.0-rc.12", "minimist": "^1.2.8" }, "bin": { - "oust": "cli.js" + "oust": "bin/cli.js" }, "engines": { "node": ">=12" @@ -14882,11 +15422,12 @@ } }, "node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/pa11y": { @@ -14923,37 +15464,6 @@ "node": ">= 12" } }, - "node_modules/pa11y/node_modules/devtools-protocol": { - "version": "0.0.869402", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.869402.tgz", - "integrity": "sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA==", - "dev": true - }, - "node_modules/pa11y/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pa11y/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/pa11y/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -14966,79 +15476,6 @@ "node": ">=10" } }, - "node_modules/pa11y/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pa11y/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pa11y/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pa11y/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pa11y/node_modules/puppeteer": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz", - "integrity": "sha512-W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw==", - "deprecated": "< 19.4.0 is no longer supported", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "debug": "^4.1.0", - "devtools-protocol": "0.0.869402", - "extract-zip": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "node-fetch": "^2.6.1", - "pkg-dir": "^4.2.0", - "progress": "^2.0.1", - "proxy-from-env": "^1.1.0", - "rimraf": "^3.0.2", - "tar-fs": "^2.0.0", - "unbzip2-stream": "^1.3.3", - "ws": "^7.2.3" - }, - "engines": { - "node": ">=10.18.1" - } - }, "node_modules/pa11y/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -15076,9 +15513,9 @@ } }, "node_modules/package-json/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -15127,13 +15564,26 @@ "dev": true }, "node_modules/parse-bmfont-xml": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", - "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz", + "integrity": "sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==", "dev": true, "dependencies": { "xml-parse-from-string": "^1.0.0", - "xml2js": "^0.4.5" + "xml2js": "^0.5.0" + } + }, + "node_modules/parse-bmfont-xml/node_modules/xml2js": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", + "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", + "dev": true, + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" } }, "node_modules/parse-cache-control": { @@ -15166,6 +15616,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/parse-png": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-1.1.2.tgz", @@ -15237,7 +15696,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "engines": { "node": ">=8" } @@ -15248,12 +15706,11 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { @@ -15264,10 +15721,9 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "dev": true, + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.1.tgz", + "integrity": "sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==", "engines": { "node": "14 || >=16.14" } @@ -15372,7 +15828,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.1.tgz", "integrity": "sha512-LWzaDVQkk1EPiuYeTOj+CZRIjda4k2s5w4MK4xoH2+kgWV/SDlkYHmxatDdtYrciHUKSXTsGgPgPP8ILVdBsxg==", - "deprecated": "< 19.4.0 is no longer supported", + "deprecated": "< 21.9.0 is no longer supported", "dev": true, "hasInstallScript": true, "dependencies": { @@ -15422,6 +15878,7 @@ "version": "2.9.3", "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true }, "node_modules/picocolors": { @@ -15470,9 +15927,9 @@ } }, "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "engines": { "node": ">= 6" } @@ -15551,10 +16008,19 @@ "node": ">=0.10.0" } }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/postcss": { - "version": "8.4.33", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", - "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", "funding": [ { "type": "opencollective", @@ -15572,7 +16038,7 @@ "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.0" }, "engines": { "node": "^10 || ^12 || >=14" @@ -15594,9 +16060,9 @@ } }, "node_modules/postcss-html": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.5.0.tgz", - "integrity": "sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-1.6.0.tgz", + "integrity": "sha512-OWgQ9/Pe23MnNJC0PL4uZp8k0EDaUvqpJFSiwFxOLClAhmD7UEisyhO3x5hVsD4xFrjReVTXydlrMes45dJ71w==", "dev": true, "peer": true, "dependencies": { @@ -15610,16 +16076,16 @@ } }, "node_modules/postcss-html/node_modules/js-tokens": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.1.tgz", - "integrity": "sha512-3AGrZT6tuMm1ZWWn9mLXh7XMfi2YtiLNPALCVxBCiUVq0LD1OQMxV/AdS/s7rLJU5o9i/jBZw/N4vXXL5dm29A==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-8.0.3.tgz", + "integrity": "sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==", "dev": true, "peer": true }, "node_modules/postcss-image-inliner": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-image-inliner/-/postcss-image-inliner-6.1.0.tgz", - "integrity": "sha512-7YUKQeY2VnMZY+FXxxUPDoh8HFDV87BaDAxnQqt1xj1SnCKuH4r9nfqrqBBOaT9bw3/r9s/U/DFVR53YOxNIFQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-image-inliner/-/postcss-image-inliner-6.2.0.tgz", + "integrity": "sha512-RpWQxXnBE+TFU1WYdzIjgCYkRojSzCU7ktdA0owufCz+e5HCCbC/WpT8qAtRnd5ethVLpK8Bbdc8pAMKmuqMIQ==", "dev": true, "dependencies": { "asset-resolver": "^3.0.5", @@ -15635,9 +16101,9 @@ } }, "node_modules/postcss-import": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.0.0.tgz", - "integrity": "sha512-e77lhVvrD1I2y7dYmBv0k9ULTdArgEYZt97T4w6sFIU5uxIHvDFQlKgUUyY7v7Barj0Yf/zm5A4OquZN7jKm5Q==", + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.0.tgz", + "integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.0.0", @@ -15670,20 +16136,26 @@ } }, "node_modules/postcss-load-config": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", - "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^2.1.1" + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" }, "engines": { "node": ">= 14" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" @@ -15697,10 +16169,24 @@ } } }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, "node_modules/postcss-load-config/node_modules/yaml": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", + "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", + "bin": { + "yaml": "bin.mjs" + }, "engines": { "node": ">= 14" } @@ -15724,9 +16210,9 @@ } }, "node_modules/postcss-nesting": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.2.tgz", - "integrity": "sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==", + "version": "12.1.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.1.2.tgz", + "integrity": "sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew==", "dev": true, "funding": [ { @@ -15739,7 +16225,8 @@ } ], "dependencies": { - "@csstools/selector-specificity": "^3.0.1", + "@csstools/selector-resolve-nested": "^1.1.0", + "@csstools/selector-specificity": "^3.0.3", "postcss-selector-parser": "^6.0.13" }, "engines": { @@ -15773,9 +16260,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "version": "6.0.16", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", + "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -15802,6 +16289,16 @@ "postcss": "^8.0.0" } }, + "node_modules/postcss-url/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/postcss-url/node_modules/mime": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", @@ -15859,9 +16356,9 @@ } }, "node_modules/preferred-pm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.0.3.tgz", - "integrity": "sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.3.tgz", + "integrity": "sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==", "dev": true, "dependencies": { "find-up": "^5.0.0", @@ -15892,9 +16389,9 @@ } }, "node_modules/prettier": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", - "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -15919,9 +16416,9 @@ } }, "node_modules/prettier-plugin-tailwindcss": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.11.tgz", - "integrity": "sha512-AvI/DNyMctyyxGOjyePgi/gqj5hJYClZ1avtQvLlqMT3uDZkRbi4HhGUpok3DRzv9z7Lti85Kdj3s3/1CeNI0w==", + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.14.tgz", + "integrity": "sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==", "dev": true, "engines": { "node": ">=14.21.3" @@ -15931,6 +16428,7 @@ "@prettier/plugin-pug": "*", "@shopify/prettier-plugin-liquid": "*", "@trivago/prettier-plugin-sort-imports": "*", + "@zackad/prettier-plugin-twig-melody": "*", "prettier": "^3.0", "prettier-plugin-astro": "*", "prettier-plugin-css-order": "*", @@ -15939,6 +16437,7 @@ "prettier-plugin-marko": "*", "prettier-plugin-organize-attributes": "*", "prettier-plugin-organize-imports": "*", + "prettier-plugin-sort-imports": "*", "prettier-plugin-style-order": "*", "prettier-plugin-svelte": "*" }, @@ -15955,6 +16454,9 @@ "@trivago/prettier-plugin-sort-imports": { "optional": true }, + "@zackad/prettier-plugin-twig-melody": { + "optional": true + }, "prettier-plugin-astro": { "optional": true }, @@ -15976,13 +16478,13 @@ "prettier-plugin-organize-imports": { "optional": true }, - "prettier-plugin-style-order": { + "prettier-plugin-sort-imports": { "optional": true }, - "prettier-plugin-svelte": { + "prettier-plugin-style-order": { "optional": true }, - "prettier-plugin-twig-melody": { + "prettier-plugin-svelte": { "optional": true } } @@ -16094,26 +16596,115 @@ "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/puppeteer": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz", + "integrity": "sha512-W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw==", + "deprecated": "< 21.9.0 is no longer supported", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.869402", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "engines": { + "node": ">=10.18.1" + } + }, + "node_modules/puppeteer/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/puppeteer/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/punycode": { + "node_modules/puppeteer/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, "engines": { "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pupa": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", - "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "node_modules/puppeteer/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { - "escape-goat": "^2.0.0" + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/puppeteer/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" }, "engines": { "node": ">=8" @@ -16134,16 +16725,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/query-ast": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/query-ast/-/query-ast-1.0.5.tgz", - "integrity": "sha512-JK+1ma4YDuLjvKKcz9JZ70G+CM9qEOs/l1cZzstMMfwKUabTJ9sud5jvDGrUNuv03yKUgs82bLkHXJkDyhRmBw==", - "dev": true, - "dependencies": { - "invariant": "2.2.4", - "lodash": "^4.17.21" - } - }, "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", @@ -16185,12 +16766,15 @@ "dev": true }, "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/raven": { @@ -16239,9 +16823,9 @@ } }, "node_modules/rc-config-loader": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.2.tgz", - "integrity": "sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz", + "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==", "dev": true, "dependencies": { "debug": "^4.3.4", @@ -16283,141 +16867,100 @@ } }, "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==", "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==", "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "locate-path": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dependencies": { - "p-locate": "^4.1.0" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dependencies": { - "p-try": "^2.0.0" + "p-try": "^1.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dependencies": { - "p-limit": "^2.2.0" + "p-limit": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/read-pkg-up/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, + "node_modules/read-pkg/node_modules/path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==", "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, + "pify": "^2.0.0" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/readable-stream": { @@ -16504,9 +17047,9 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, "node_modules/regenerator-transform": { @@ -16531,14 +17074,15 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -16742,6 +17286,19 @@ "node": ">=0.6" } }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/request/node_modules/uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", @@ -16914,18 +17471,79 @@ "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/resolve-dir/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -16981,9 +17599,9 @@ } }, "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", + "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", "dev": true }, "node_modules/rimraf": { @@ -17008,20 +17626,37 @@ "dev": true }, "node_modules/rollup": { - "version": "3.24.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.24.0.tgz", - "integrity": "sha512-OgraHOIg2YpHQTjl0/ymWfFNBEyPucB7lmhXrQUh38qNOegxLapSPFs9sNr0qKR75awW41D93XafoR2QfhBdUQ==", + "version": "4.16.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.16.4.tgz", + "integrity": "sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==", "dev": true, - "optional": true, - "peer": true, + "dependencies": { + "@types/estree": "1.0.5" + }, "bin": { "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=14.18.0", + "node": ">=18.0.0", "npm": ">=8.0.0" }, "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.16.4", + "@rollup/rollup-android-arm64": "4.16.4", + "@rollup/rollup-darwin-arm64": "4.16.4", + "@rollup/rollup-darwin-x64": "4.16.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.16.4", + "@rollup/rollup-linux-arm-musleabihf": "4.16.4", + "@rollup/rollup-linux-arm64-gnu": "4.16.4", + "@rollup/rollup-linux-arm64-musl": "4.16.4", + "@rollup/rollup-linux-powerpc64le-gnu": "4.16.4", + "@rollup/rollup-linux-riscv64-gnu": "4.16.4", + "@rollup/rollup-linux-s390x-gnu": "4.16.4", + "@rollup/rollup-linux-x64-gnu": "4.16.4", + "@rollup/rollup-linux-x64-musl": "4.16.4", + "@rollup/rollup-win32-arm64-msvc": "4.16.4", + "@rollup/rollup-win32-ia32-msvc": "4.16.4", + "@rollup/rollup-win32-x64-msvc": "4.16.4", "fsevents": "~2.3.2" } }, @@ -17080,15 +17715,6 @@ "node": ">=8" } }, - "node_modules/rollup-plugin-copy/node_modules/is-plain-object": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", - "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/rollup-plugin-copy/node_modules/jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", @@ -17201,9 +17827,9 @@ } }, "node_modules/rollup-plugin-visualizer/node_modules/yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { "cliui": "^8.0.1", @@ -17271,22 +17897,22 @@ } }, "node_modules/rxjs": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", - "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, @@ -17297,12 +17923,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-array-concat/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -17331,15 +17951,18 @@ } }, "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", "is-regex": "^1.1.4" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -17349,27 +17972,10 @@ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "node_modules/sass": { - "version": "1.62.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.0.tgz", - "integrity": "sha512-Q4USplo4pLYgCi+XlipZCWUQz5pkg/ruSSgJ0WRDSb/+3z9tXUOkQ7QPYn4XrhZKYAK4HlpaQecRwKLJX6+DBg==", - "dev": true, - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", "dev": true }, "node_modules/saxes": { @@ -17384,28 +17990,15 @@ "node": ">=v12.22.7" } }, - "node_modules/scss-parser": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/scss-parser/-/scss-parser-1.0.6.tgz", - "integrity": "sha512-SH3TaoaJFzfAtqs3eG1j5IuHJkeEW5rKUPIjIN+ZorLAyJLHItQGnsgwHk76v25GtLtpT9IqfAcqK4vFWdiw+w==", - "dev": true, - "dependencies": { - "invariant": "2.2.4", - "lodash": "4.17.21" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/select": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -17436,9 +18029,9 @@ } }, "node_modules/semver-diff/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -17468,29 +18061,32 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -17567,7 +18163,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, @@ -17579,7 +18174,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "engines": { "node": ">=8" } @@ -17588,6 +18182,7 @@ "version": "2.2.16", "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz", "integrity": "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true, "dependencies": { "nanoid": "^2.1.0" @@ -17600,14 +18195,18 @@ "dev": true }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -17838,61 +18437,16 @@ "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/snapdragon/node_modules/is-extendable": { @@ -17903,14 +18457,6 @@ "node": ">=0.10.0" } }, - "node_modules/snapdragon/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/snapdragon/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -17947,9 +18493,9 @@ } }, "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "engines": { "node": ">=0.10.0" } @@ -17992,9 +18538,9 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", @@ -18006,9 +18552,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==" }, "node_modules/speedline-core": { "version": "1.4.3", @@ -18042,9 +18588,9 @@ "dev": true }, "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", "dev": true, "dependencies": { "asn1": "~0.2.3", @@ -18111,69 +18657,16 @@ "node": ">=0.10.0" } }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/stream-to": { @@ -18198,13 +18691,16 @@ } }, "node_modules/streamx": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz", - "integrity": "sha512-fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.16.1.tgz", + "integrity": "sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==", "dev": true, "dependencies": { "fast-fifo": "^1.1.0", "queue-tick": "^1.0.1" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" } }, "node_modules/string_decoder": { @@ -18219,7 +18715,6 @@ "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -18234,7 +18729,6 @@ "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -18245,14 +18739,15 @@ } }, "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -18262,28 +18757,31 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -18293,7 +18791,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -18306,7 +18803,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -18415,19 +18911,20 @@ } }, "node_modules/stylelint": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.2.0.tgz", - "integrity": "sha512-gwqU5AkIb52wrAzzn+359S3NIJDMl02TXLUaV2tzA/L6jUdpTwNt+MCxHlc8+Hb2bUHlYVo92YeSIryF2gJthA==", + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.4.0.tgz", + "integrity": "sha512-uSx7VMuXwLuYcNSIg+0/fFNv0WinsfLAqsVVy7h7p80clKOHiGE8pfY6UjqwylTHiJrRIahTl6a8FPxGezhWoA==", "dev": true, "dependencies": { - "@csstools/css-parser-algorithms": "^2.5.0", - "@csstools/css-tokenizer": "^2.2.3", - "@csstools/media-query-list-parser": "^2.1.7", - "@csstools/selector-specificity": "^3.0.1", + "@csstools/css-parser-algorithms": "^2.6.1", + "@csstools/css-tokenizer": "^2.2.4", + "@csstools/media-query-list-parser": "^2.1.9", + "@csstools/selector-specificity": "^3.0.3", + "@dual-bundle/import-meta-resolve": "^4.0.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", - "css-functions-list": "^3.2.1", + "css-functions-list": "^3.2.2", "css-tree": "^2.3.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", @@ -18437,26 +18934,26 @@ "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", - "ignore": "^5.3.0", + "ignore": "^5.3.1", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.29.0", + "known-css-properties": "^0.30.0", "mathml-tag-names": "^2.1.3", - "meow": "^13.1.0", + "meow": "^13.2.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.33", + "postcss": "^8.4.38", "postcss-resolve-nested-selector": "^0.1.1", "postcss-safe-parser": "^7.0.0", - "postcss-selector-parser": "^6.0.15", + "postcss-selector-parser": "^6.0.16", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "strip-ansi": "^7.1.0", "supports-hyperlinks": "^3.0.0", "svg-tags": "^1.0.0", - "table": "^6.8.1", + "table": "^6.8.2", "write-file-atomic": "^5.0.1" }, "bin": { @@ -18537,21 +19034,6 @@ "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, - "node_modules/stylelint/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/stylelint/node_modules/brace-expansion/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, "node_modules/stylelint/node_modules/cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", @@ -18604,88 +19086,32 @@ } }, "node_modules/stylelint/node_modules/flat-cache": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.0.tgz", - "integrity": "sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "dependencies": { "flatted": "^3.2.9", - "keyv": "^4.5.4", - "rimraf": "^5.0.5" + "keyv": "^4.5.4" }, "engines": { "node": ">=16" } }, - "node_modules/stylelint/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "node_modules/stylelint/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/stylelint/node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/stylelint/node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" + "node": ">=0.10.0" } }, "node_modules/stylelint/node_modules/mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true - }, - "node_modules/stylelint/node_modules/meow": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-13.1.0.tgz", - "integrity": "sha512-o5R/R3Tzxq0PJ3v3qcQJtSvSE9nKOLSAaDuuoMzDVuGTwHdccMWcYomh9Xolng2tjT6O/Y83d+0coVGof6tqmA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stylelint/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "dev": true }, "node_modules/stylelint/node_modules/postcss-safe-parser": { "version": "7.0.0", @@ -18722,28 +19148,10 @@ "node": ">=8" } }, - "node_modules/stylelint/node_modules/rimraf": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", - "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", - "dev": true, - "dependencies": { - "glob": "^10.3.7" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/stylelint/node_modules/signal-exit": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz", - "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "engines": { "node": ">=14" @@ -18781,13 +19189,13 @@ } }, "node_modules/sucrase": { - "version": "3.32.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", - "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", - "glob": "7.1.6", + "glob": "^10.3.10", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", @@ -18798,7 +19206,7 @@ "sucrase-node": "bin/sucrase-node" }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/sucrase/node_modules/commander": { @@ -18810,19 +19218,21 @@ } }, "node_modules/sucrase/node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -19008,9 +19418,9 @@ "dev": true }, "node_modules/swiper": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.0.5.tgz", - "integrity": "sha512-rhCwupqSyRnWrtNzWzemnBLMoyYuoDgGgspAm/8iBD3jCvAWycPLH4Z3TB0O5520DHLzMx94yUMH/B9Efpa48w==", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.1.tgz", + "integrity": "sha512-jGmEA/fNz1lACIcY4/40ggm1Gcyv+EUivmgV/Jd2WFPsEJhbWXnRAwzZR8OPjkBLtDxmzcoYG/iiAMWfRs0YKQ==", "funding": [ { "type": "patreon", @@ -19059,9 +19469,9 @@ "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" }, "node_modules/table": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", + "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", "dev": true, "dependencies": { "ajv": "^8.0.1", @@ -19147,9 +19557,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", - "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", + "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", @@ -19159,7 +19569,7 @@ "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "jiti": "^1.19.1", + "jiti": "^1.21.0", "lilconfig": "^2.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", @@ -19192,9 +19602,9 @@ } }, "node_modules/tailwindcss-fluid-type": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tailwindcss-fluid-type/-/tailwindcss-fluid-type-2.0.3.tgz", - "integrity": "sha512-PE1yz2R+wMyB9updGxU3Ru/NzN2ZelRzEbkdR1F4Q3jlmma8MGnEfKG2Qkpzbmo49QYLUD/cFIUF23MmC6OMTA==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/tailwindcss-fluid-type/-/tailwindcss-fluid-type-2.0.6.tgz", + "integrity": "sha512-52cOi3zDHWNChRbwlZ9r7UnY/1LGBFQA0enaFfy8zGrXuXuWSxZZFssrMBh717C9HjdBay7Qn3amH89VirsIsw==", "peerDependencies": { "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" } @@ -19261,22 +19671,22 @@ } }, "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=14.16" } }, "node_modules/tempy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.0.0.tgz", - "integrity": "sha512-B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", "dev": true, "dependencies": { "is-stream": "^3.0.0", - "temp-dir": "^2.0.0", + "temp-dir": "^3.0.0", "type-fest": "^2.12.2", "unique-string": "^3.0.0" }, @@ -19326,18 +19736,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tempy/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/tempy/node_modules/unique-string": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", @@ -19366,14 +19764,14 @@ } }, "node_modules/terser": { - "version": "5.16.9", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.9.tgz", - "integrity": "sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==", + "version": "5.30.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.30.4.tgz", + "integrity": "sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ==", "dev": true, "peer": true, "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -19429,10 +19827,13 @@ "dev": true }, "node_modules/throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", - "dev": true + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz", + "integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/through": { "version": "2.3.8", @@ -19475,15 +19876,12 @@ "dev": true }, "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "dev": true, - "dependencies": { - "rimraf": "^3.0.0" - }, "engines": { - "node": ">=8.17.0" + "node": ">=14.14" } }, "node_modules/to-fast-properties": { @@ -19597,16 +19995,27 @@ } }, "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { - "node": ">=0.8" + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" } }, "node_modules/tr46": { @@ -19631,12 +20040,12 @@ "dev": true }, "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", "dev": true, "engines": { - "node": ">=16.13.0" + "node": ">=16" }, "peerDependencies": { "typescript": ">=4.2.0" @@ -19708,41 +20117,42 @@ } }, "node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -19752,16 +20162,17 @@ } }, "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -19771,14 +20182,20 @@ } }, "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -19815,9 +20232,9 @@ "integrity": "sha512-ho6xe/y/uHIKVXsFtK+dJfRCD5KZqJCMYTCcXfuCwQHQbeQ83a7hVkxfRMTEIjZOSXw5SevOjnwJuZ5QgWEHiw==" }, "node_modules/typescript": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", - "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "devOptional": true, "bin": { "tsc": "bin/tsc", @@ -19945,9 +20362,9 @@ } }, "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "engines": { "node": ">= 10.0.0" @@ -19997,6 +20414,11 @@ "node": ">=0.10.0" } }, + "node_modules/unset-value/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, "node_modules/untildify": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", @@ -20139,15 +20561,6 @@ "node": ">=8" } }, - "node_modules/update-notifier/node_modules/import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/update-notifier/node_modules/ini": { "version": "1.3.7", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz", @@ -20337,14 +20750,14 @@ } }, "node_modules/vite": { - "version": "5.0.12", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", - "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", + "version": "5.2.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.10.tgz", + "integrity": "sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==", "dev": true, "dependencies": { - "esbuild": "^0.19.3", - "postcss": "^8.4.32", - "rollup": "^4.2.0" + "esbuild": "^0.20.1", + "postcss": "^8.4.38", + "rollup": "^4.13.0" }, "bin": { "vite": "bin/vite.js" @@ -20574,44 +20987,16 @@ "vite": "^2.9.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" } }, - "node_modules/vite/node_modules/rollup": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.5.0.tgz", - "integrity": "sha512-41xsWhzxqjMDASCxH5ibw1mXk+3c4TNI2UjKbLxe6iEzrSQnqOzmmK8/3mufCPbzHNJ2e04Fc1ddI35hHy+8zg==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.5.0", - "@rollup/rollup-android-arm64": "4.5.0", - "@rollup/rollup-darwin-arm64": "4.5.0", - "@rollup/rollup-darwin-x64": "4.5.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.5.0", - "@rollup/rollup-linux-arm64-gnu": "4.5.0", - "@rollup/rollup-linux-arm64-musl": "4.5.0", - "@rollup/rollup-linux-x64-gnu": "4.5.0", - "@rollup/rollup-linux-x64-musl": "4.5.0", - "@rollup/rollup-win32-arm64-msvc": "4.5.0", - "@rollup/rollup-win32-ia32-msvc": "4.5.0", - "@rollup/rollup-win32-x64-msvc": "4.5.0", - "fsevents": "~2.3.2" - } - }, "node_modules/vue": { - "version": "3.4.15", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.15.tgz", - "integrity": "sha512-jC0GH4KkWLWJOEQjOpkqU1bQsBwf4R1rsFtw5GQJbjHVKWDzO6P0nWWBTmjp1xSemAioDFj1jdaK1qa3DnMQoQ==", + "version": "3.4.25", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.25.tgz", + "integrity": "sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==", "dependencies": { - "@vue/compiler-dom": "3.4.15", - "@vue/compiler-sfc": "3.4.15", - "@vue/runtime-dom": "3.4.15", - "@vue/server-renderer": "3.4.15", - "@vue/shared": "3.4.15" + "@vue/compiler-dom": "3.4.25", + "@vue/compiler-sfc": "3.4.25", + "@vue/runtime-dom": "3.4.25", + "@vue/server-renderer": "3.4.25", + "@vue/shared": "3.4.25" }, "peerDependencies": { "typescript": "*" @@ -20743,7 +21128,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -20771,9 +21155,9 @@ } }, "node_modules/which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" }, "node_modules/which-pm": { "version": "2.0.0", @@ -20789,16 +21173,16 @@ } }, "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -20850,7 +21234,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -20867,7 +21250,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -20882,7 +21264,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -20893,8 +21274,7 @@ "node_modules/wrap-ansi-cjs/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", @@ -21113,22 +21493,6 @@ "node": ">=4" } }, - "node_modules/yargs/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - }, "node_modules/yargs/node_modules/is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -21137,103 +21501,6 @@ "node": ">=4" } }, - "node_modules/yargs/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/yargs/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==", - "dependencies": { - "pify": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==", - "dependencies": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==", - "dependencies": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/yargs/node_modules/string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -21286,15 +21553,6 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } - }, - "node_modules/zod": { - "version": "3.22.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", - "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } } } } diff --git a/package.json b/package.json index 6b889018..85e1a4f8 100644 --- a/package.json +++ b/package.json @@ -38,8 +38,8 @@ "@rollup/plugin-node-resolve": "^15.2.3", "@types/alpinejs": "^3.13.6", "@types/lodash-es": "^4.17.12", - "@typescript-eslint/eslint-plugin": "^6.19.1", - "@typescript-eslint/parser": "^6.19.1", + "@typescript-eslint/eslint-plugin": "^7.7.1", + "@typescript-eslint/parser": "^7.7.1", "@vitejs/plugin-legacy": "^5.3.0", "@vitejs/plugin-vue": "^5.0.3", "@vue/compiler-sfc": "^3.4.15", diff --git a/vite.config.mts b/vite.config.mts index f124a6ad..7715cfcd 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -1,4 +1,4 @@ -import { defineConfig, splitVendorChunkPlugin } from 'vite'; +import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; // import legacy from '@vitejs/plugin-legacy'; import ViteRestart from 'vite-plugin-restart'; @@ -76,7 +76,6 @@ export default defineConfig(({ command }) => ({ eslintPlugin({ cache: false, }), - splitVendorChunkPlugin(), copy({ targets: [{ src: 'src/public/*', dest: 'web/dist' }], hook: command === 'build' ? 'writeBundle' : 'buildStart', From 1b9b20065fd2db23e3620fa00a0c1ac10cd5957b Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Thu, 25 Apr 2024 22:29:53 +0200 Subject: [PATCH 21/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20update=20?= =?UTF-8?q?plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 10 ++--- composer.lock | 111 +++++++++++++------------------------------------- 2 files changed, 33 insertions(+), 88 deletions(-) diff --git a/composer.json b/composer.json index 88681732..6482dd44 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "^4.8.9", - "dodecastudio/craft-blurhash": "2.0.5", + "craftcms/cms": "4.8.10", + "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", "nystudio107/craft-code-field": "4.0.12", @@ -10,9 +10,9 @@ "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.48", "nystudio107/craft-vite": "4.0.9", - "putyourlightson/craft-blitz": "4.16.2", + "putyourlightson/craft-blitz": "4.16.3", "putyourlightson/craft-elements-panel": "2.0.0", - "putyourlightson/craft-sprig": "2.8.0", + "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", "verbb/hyper": "1.1.27", "verbb/navigation": "2.0.27", @@ -75,4 +75,4 @@ "canonical": false } ] -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index 8a3ce377..10c527dc 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "fb508bf1dbf34c41d39ce88e190fbaa4", + "content-hash": "93884c369360f3606f97dee60129da5c", "packages": [ { "name": "amphp/amp", @@ -482,11 +482,6 @@ { "name": "amphp/process", "version": "v1.1.7", - "source": { - "type": "git", - "url": "https://github.com/amphp/process.git", - "reference": "1949d85b6d71af2818ff68144304a98495628f19" - }, "dist": { "type": "zip", "url": "https://api.github.com/repos/amphp/process/zipball/1949d85b6d71af2818ff68144304a98495628f19", @@ -498,11 +493,6 @@ "amphp/byte-stream": "^1.4", "php": ">=7.1" }, - "require-dev": { - "amphp/php-cs-fixer-config": "dev-master", - "amphp/phpunit-util": "^1", - "phpunit/phpunit": "^6" - }, "type": "library", "autoload": { "files": [ @@ -512,7 +502,6 @@ "Amp\\Process\\": "lib" } }, - "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -532,16 +521,6 @@ ], "description": "Asynchronous process manager.", "homepage": "https://github.com/amphp/process", - "support": { - "issues": "https://github.com/amphp/process/issues", - "source": "https://github.com/amphp/process/tree/v1.1.7" - }, - "funding": [ - { - "url": "https://github.com/amphp", - "type": "github" - } - ], "time": "2024-04-19T03:00:28+00:00" }, { @@ -1083,16 +1062,11 @@ }, { "name": "composer/composer", - "version": "2.7.3", - "source": { - "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "e49be96f3bccd183c9ff1313686c06cf898ba4be" - }, + "version": "2.7.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/e49be96f3bccd183c9ff1313686c06cf898ba4be", - "reference": "e49be96f3bccd183c9ff1313686c06cf898ba4be", + "url": "https://api.github.com/repos/composer/composer/zipball/a625e50598e12171d3f60b1149eb530690c43474", + "reference": "a625e50598e12171d3f60b1149eb530690c43474", "shasum": "" }, "require": { @@ -1118,14 +1092,6 @@ "symfony/polyfill-php81": "^1.24", "symfony/process": "^5.4 || ^6.0 || ^7" }, - "require-dev": { - "phpstan/phpstan": "^1.9.3", - "phpstan/phpstan-deprecation-rules": "^1", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1", - "phpstan/phpstan-symfony": "^1.2.10", - "symfony/phpunit-bridge": "^6.4.1 || ^7.0.1" - }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", "ext-zip": "Enabling the zip extension allows you to unzip archives", @@ -1150,7 +1116,6 @@ "Composer\\": "src/Composer/" } }, - "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -1173,27 +1138,7 @@ "dependency", "package" ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.7.3" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-04-19T19:40:57+00:00" + "time": "2024-04-22T19:17:03+00:00" }, { "name": "composer/metadata-minifier", @@ -1470,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.8.9", + "version": "4.8.10", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/81fc5457658ff2906e9c120f3d3f71621b1d9b73", - "reference": "81fc5457658ff2906e9c120f3d3f71621b1d9b73", + "url": "https://api.github.com/repos/craftcms/cms/zipball/fbf5ed3b35f06ddf9c93fa54c6f4781fd7052b70", + "reference": "fbf5ed3b35f06ddf9c93fa54c6f4781fd7052b70", "shasum": "" }, "require": { @@ -1562,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-04-10T22:40:32+00:00" + "time": "2024-04-23T17:52:56+00:00" }, { "name": "craftcms/html-field", @@ -1997,15 +1942,15 @@ }, { "name": "dodecastudio/craft-blurhash", - "version": "2.0.5", + "version": "3.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/dodecastudio/craft-blurhash/zipball/506afd777156d115f2b3f4db28aafa31febc2a8d", - "reference": "506afd777156d115f2b3f4db28aafa31febc2a8d", + "url": "https://api.github.com/repos/dodecastudio/craft-blurhash/zipball/493b9daf491ab724d9b7119392b60e0ba4b00ac8", + "reference": "493b9daf491ab724d9b7119392b60e0ba4b00ac8", "shasum": "" }, "require": { - "craftcms/cms": "^3.0|^4.0", + "craftcms/cms": "^3.0|^4.0|^5.0", "kornrunner/blurhash": "^1.2", "php": ">=7.4", "treeware/plant": "^0.1.0" @@ -2051,7 +1996,7 @@ "docs": "https://github.com/dodecastudio/craft-blurhash/blob/main/README.md", "issues": "https://github.com/dodecastudio/craft-blurhash/issues" }, - "time": "2023-08-04T13:40:22+00:00" + "time": "2024-04-22T14:22:39+00:00" }, { "name": "doublesecretagency/craft-cpcss", @@ -4970,11 +4915,11 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.16.2", + "version": "4.16.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/9ad5246dd3fae939f007d099780c09b05329160d", - "reference": "9ad5246dd3fae939f007d099780c09b05329160d", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1a0e4bc5b127f12f115dc3285e0e017d7d5e3af6", + "reference": "1a0e4bc5b127f12f115dc3285e0e017d7d5e3af6", "shasum": "" }, "require": { @@ -5019,7 +4964,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-04-13T01:55:59+00:00" + "time": "2024-04-23T02:21:32+00:00" }, { "name": "putyourlightson/craft-blitz-hints", @@ -5092,18 +5037,18 @@ }, { "name": "putyourlightson/craft-sprig", - "version": "2.8.0", + "version": "2.8.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/930406dfbf8dd8bc037c4b8e36b944d07a69cd67", - "reference": "930406dfbf8dd8bc037c4b8e36b944d07a69cd67", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/5c20473847cc344d14116145a2b85491e1a2d0f5", + "reference": "5c20473847cc344d14116145a2b85491e1a2d0f5", "shasum": "" }, "require": { "craftcms/cms": "^4.0", "nystudio107/craft-code-editor": "^1.0.0", "php": "^8.0.2", - "putyourlightson/craft-sprig-core": "^2.7.0" + "putyourlightson/craft-sprig-core": "^2.7.1" }, "type": "craft-plugin", "extra": { @@ -5129,15 +5074,15 @@ "source": "https://github.com/putyourlightson/craft-sprig", "issues": "https://github.com/putyourlightson/craft-sprig/issues" }, - "time": "2024-03-27T03:15:23+00:00" + "time": "2024-04-21T14:02:33+00:00" }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.7.0", + "version": "2.7.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/bd112b1525a8b42c1d59d5635dbe972418d318bd", - "reference": "bd112b1525a8b42c1d59d5635dbe972418d318bd", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/064aec98e581c2cea8a5da19a1aacd4e717f7622", + "reference": "064aec98e581c2cea8a5da19a1aacd4e717f7622", "shasum": "" }, "require": { @@ -5159,7 +5104,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2024-03-27T02:39:57+00:00" + "time": "2024-04-21T13:56:53+00:00" }, { "name": "ralouphie/getallheaders", @@ -9388,5 +9333,5 @@ "platform-overrides": { "php": "8.2.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From ae452bd60d7a1ba6b135b97a65653a586f4c106b Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 27 Apr 2024 18:48:35 +0200 Subject: [PATCH 22/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 6 +-- composer.lock | 137 +++++++++++++++++++++++++------------------------- 2 files changed, 72 insertions(+), 71 deletions(-) diff --git a/composer.json b/composer.json index 6482dd44..3b2446af 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.8.10", + "craftcms/cms": "4.9.0", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", @@ -10,11 +10,11 @@ "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.48", "nystudio107/craft-vite": "4.0.9", - "putyourlightson/craft-blitz": "4.16.3", + "putyourlightson/craft-blitz": "4.17.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", - "verbb/hyper": "1.1.27", + "verbb/hyper": "1.1.28", "verbb/navigation": "2.0.27", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index 10c527dc..d7c56c38 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "93884c369360f3606f97dee60129da5c", + "content-hash": "6db632717b01b612e0d5ec7162f10ee5", "packages": [ { "name": "amphp/amp", @@ -1415,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.8.10", + "version": "4.9.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/fbf5ed3b35f06ddf9c93fa54c6f4781fd7052b70", - "reference": "fbf5ed3b35f06ddf9c93fa54c6f4781fd7052b70", + "url": "https://api.github.com/repos/craftcms/cms/zipball/3597752fa2c226971b0cb0a0b159300786f3ad3e", + "reference": "3597752fa2c226971b0cb0a0b159300786f3ad3e", "shasum": "" }, "require": { @@ -1507,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-04-23T17:52:56+00:00" + "time": "2024-04-30T17:32:43+00:00" }, { "name": "craftcms/html-field", @@ -4915,11 +4915,11 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.16.3", + "version": "4.17.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1a0e4bc5b127f12f115dc3285e0e017d7d5e3af6", - "reference": "1a0e4bc5b127f12f115dc3285e0e017d7d5e3af6", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/f1ee49bd3d9a99bad7e2e6293c885fdf0a993a44", + "reference": "f1ee49bd3d9a99bad7e2e6293c885fdf0a993a44", "shasum": "" }, "require": { @@ -4964,7 +4964,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-04-23T02:21:32+00:00" + "time": "2024-04-27T23:16:18+00:00" }, { "name": "putyourlightson/craft-blitz-hints", @@ -5078,11 +5078,11 @@ }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.7.1", + "version": "2.7.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/064aec98e581c2cea8a5da19a1aacd4e717f7622", - "reference": "064aec98e581c2cea8a5da19a1aacd4e717f7622", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/7f4a229a9779eb73920b6af5f4cb7a944446033e", + "reference": "7f4a229a9779eb73920b6af5f4cb7a944446033e", "shasum": "" }, "require": { @@ -5104,7 +5104,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2024-04-21T13:56:53+00:00" + "time": "2024-04-30T13:28:24+00:00" }, { "name": "ralouphie/getallheaders", @@ -5686,11 +5686,11 @@ }, { "name": "symfony/console", - "version": "v6.4.6", + "version": "v6.4.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a2708a5da5c87d1d0d52937bdeac625df659e11f", - "reference": "a2708a5da5c87d1d0d52937bdeac625df659e11f", + "url": "https://api.github.com/repos/symfony/console/zipball/a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", + "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", "shasum": "" }, "require": { @@ -5740,7 +5740,7 @@ "console", "terminal" ], - "time": "2024-03-29T19:07:53+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/deprecation-contracts", @@ -5788,11 +5788,11 @@ }, { "name": "symfony/event-dispatcher", - "version": "v7.0.3", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", - "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/db2a7fab994d67d92356bb39c367db115d9d30f9", + "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9", "shasum": "" }, "require": { @@ -5831,7 +5831,7 @@ ], "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", - "time": "2024-01-23T15:02:46+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -5888,17 +5888,18 @@ }, { "name": "symfony/filesystem", - "version": "v7.0.6", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/408105dff4c104454100730bdfd1a9cdd993f04d", - "reference": "408105dff4c104454100730bdfd1a9cdd993f04d", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/cc168be6fbdcdf3401f50ae863ee3818ed4338f5", + "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5", "shasum": "" }, "require": { "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" + "symfony/polyfill-mbstring": "~1.8", + "symfony/process": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -5924,15 +5925,15 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2024-03-21T19:37:36+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/finder", - "version": "v7.0.0", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", - "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c", + "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c", "shasum": "" }, "require": { @@ -5962,15 +5963,15 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", - "time": "2023-10-31T17:59:56+00:00" + "time": "2024-04-28T11:44:19+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.6", + "version": "v6.4.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/6a46c0ea9b099f9a5132d560a51833ffcbd5b0d9", - "reference": "6a46c0ea9b099f9a5132d560a51833ffcbd5b0d9", + "url": "https://api.github.com/repos/symfony/http-client/zipball/3683d8107cf1efdd24795cc5f7482be1eded34ac", + "reference": "3683d8107cf1efdd24795cc5f7482be1eded34ac", "shasum": "" }, "require": { @@ -6017,7 +6018,7 @@ "keywords": [ "http" ], - "time": "2024-04-01T20:35:50+00:00" + "time": "2024-04-18T09:22:46+00:00" }, { "name": "symfony/http-client-contracts", @@ -6076,11 +6077,11 @@ }, { "name": "symfony/mailer", - "version": "v7.0.6", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0", - "reference": "eb0c3187c7ddfde12d8aa0e1fa5fb29e730a41e0", + "url": "https://api.github.com/repos/symfony/mailer/zipball/4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", + "reference": "4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", "shasum": "" }, "require": { @@ -6123,15 +6124,15 @@ ], "description": "Helps sending emails", "homepage": "https://symfony.com", - "time": "2024-03-28T09:20:36+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/mime", - "version": "v7.0.6", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/99362408c9abdf8c7cadcf0529b6fc8b16f5ace2", - "reference": "99362408c9abdf8c7cadcf0529b6fc8b16f5ace2", + "url": "https://api.github.com/repos/symfony/mime/zipball/3adbf110c306546f6f00337f421d2edca0e8d3c0", + "reference": "3adbf110c306546f6f00337f421d2edca0e8d3c0", "shasum": "" }, "require": { @@ -6174,7 +6175,7 @@ "mime", "mime-type" ], - "time": "2024-03-21T19:37:36+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/polyfill-ctype", @@ -6735,15 +6736,15 @@ }, { "name": "symfony/process", - "version": "v6.4.4", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297", - "reference": "710e27879e9be3395de2b98da3f52a946039f297", + "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0", + "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "type": "library", "autoload": { @@ -6769,7 +6770,7 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "time": "2024-02-20T12:31:00+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/service-contracts", @@ -6832,11 +6833,11 @@ }, { "name": "symfony/string", - "version": "v7.0.4", + "version": "v7.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b", - "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b", + "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63", + "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63", "shasum": "" }, "require": { @@ -6884,15 +6885,15 @@ "utf-8", "utf8" ], - "time": "2024-02-01T13:17:36+00:00" + "time": "2024-04-18T09:29:19+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.38", + "version": "v5.4.39", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ae1d949ccc57d3f6662e4256b47ac9fbfa9651ae", - "reference": "ae1d949ccc57d3f6662e4256b47ac9fbfa9651ae", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1987f86ad7f339fe3d3e8e6cf3b7ce4d4b8e547e", + "reference": "1987f86ad7f339fe3d3e8e6cf3b7ce4d4b8e547e", "shasum": "" }, "require": { @@ -6942,15 +6943,15 @@ "debug", "dump" ], - "time": "2024-03-19T10:19:25+00:00" + "time": "2024-04-18T08:26:06+00:00" }, { "name": "symfony/yaml", - "version": "v5.4.35", + "version": "v5.4.39", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/e78db7f5c70a21f0417a31f414c4a95fe76c07e4", - "reference": "e78db7f5c70a21f0417a31f414c4a95fe76c07e4", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640", + "reference": "bc780e16879000f77a1022163c052f5323b5e640", "shasum": "" }, "require": { @@ -6991,7 +6992,7 @@ ], "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", - "time": "2024-01-23T13:51:25+00:00" + "time": "2024-04-23T11:57:27+00:00" }, { "name": "theiconic/name-parser", @@ -7176,11 +7177,11 @@ }, { "name": "verbb/hyper", - "version": "1.1.27", + "version": "1.1.28", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/97decd1470b6ea43436d7148ae3f655f52f6180f", - "reference": "97decd1470b6ea43436d7148ae3f655f52f6180f", + "url": "https://api.github.com/repos/verbb/hyper/zipball/8519daf5b49b0e0dbc91d9c691ae569c6a5e2c71", + "reference": "8519daf5b49b0e0dbc91d9c691ae569c6a5e2c71", "shasum": "" }, "require": { @@ -7226,7 +7227,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-04-10T13:14:54+00:00" + "time": "2024-04-29T01:27:03+00:00" }, { "name": "verbb/navigation", @@ -8010,16 +8011,16 @@ }, { "name": "yiisoft/yii2-queue", - "version": "2.3.6", + "version": "2.3.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/yiisoft/yii2-queue/zipball/5c14c3f6e83b2e2d150a969dc6eda4e083b73956", - "reference": "5c14c3f6e83b2e2d150a969dc6eda4e083b73956", + "url": "https://api.github.com/repos/yiisoft/yii2-queue/zipball/dbc9d4a7b2a6995cd19c3e334227482ef55e559b", + "reference": "dbc9d4a7b2a6995cd19c3e334227482ef55e559b", "shasum": "" }, "require": { "php": ">=5.5.0", - "symfony/process": "^3.3||^4.0||^5.0||^6.0", + "symfony/process": "^3.3||^4.0||^5.0||^6.0||^7.0", "yiisoft/yii2": "~2.0.14" }, "suggest": { @@ -8085,7 +8086,7 @@ "sqs", "yii" ], - "time": "2023-10-03T16:02:00+00:00" + "time": "2024-04-29T09:40:52+00:00" }, { "name": "yiisoft/yii2-redis", From ddfd0bad11bd96f5b7df487220aabbd270c52b61 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sun, 5 May 2024 23:09:30 +0200 Subject: [PATCH 23/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20cms?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 61 ++++++++++++++++++++++++++------------------------- 2 files changed, 32 insertions(+), 31 deletions(-) diff --git a/composer.json b/composer.json index 3b2446af..a2350086 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.9.0", + "craftcms/cms": "4.9.1", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", diff --git a/composer.lock b/composer.lock index d7c56c38..2cfb39db 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6db632717b01b612e0d5ec7162f10ee5", + "content-hash": "efb1d99cb8d47263b36fcead87b3de29", "packages": [ { "name": "amphp/amp", @@ -1062,11 +1062,11 @@ }, { "name": "composer/composer", - "version": "2.7.4", + "version": "2.7.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/a625e50598e12171d3f60b1149eb530690c43474", - "reference": "a625e50598e12171d3f60b1149eb530690c43474", + "url": "https://api.github.com/repos/composer/composer/zipball/fabd995783b633829fd4280e272284b39b6ae702", + "reference": "fabd995783b633829fd4280e272284b39b6ae702", "shasum": "" }, "require": { @@ -1138,7 +1138,7 @@ "dependency", "package" ], - "time": "2024-04-22T19:17:03+00:00" + "time": "2024-05-04T21:03:15+00:00" }, { "name": "composer/metadata-minifier", @@ -1415,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.9.0", + "version": "4.9.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/3597752fa2c226971b0cb0a0b159300786f3ad3e", - "reference": "3597752fa2c226971b0cb0a0b159300786f3ad3e", + "url": "https://api.github.com/repos/craftcms/cms/zipball/6405731ee01606fd183ac9495171de0ee5f37566", + "reference": "6405731ee01606fd183ac9495171de0ee5f37566", "shasum": "" }, "require": { @@ -1507,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-04-30T17:32:43+00:00" + "time": "2024-05-02T22:23:56+00:00" }, { "name": "craftcms/html-field", @@ -5744,11 +5744,11 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.4.0", + "version": "v3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", "shasum": "" }, "require": { @@ -5757,7 +5757,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -5784,7 +5784,7 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/event-dispatcher", @@ -5835,11 +5835,11 @@ }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.2", + "version": "v3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224", - "reference": "4e64b49bf370ade88e567de29465762e316e4224", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", "shasum": "" }, "require": { @@ -5849,7 +5849,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -5884,7 +5884,7 @@ "interoperability", "standards" ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/filesystem", @@ -6022,11 +6022,11 @@ }, { "name": "symfony/http-client-contracts", - "version": "v3.4.2", + "version": "v3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e", - "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d", + "reference": "20414d96f391677bf80078aa55baece78b82647d", "shasum": "" }, "require": { @@ -6035,7 +6035,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -6073,7 +6073,7 @@ "interoperability", "standards" ], - "time": "2024-04-01T18:51:09+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/mailer", @@ -6774,16 +6774,17 @@ }, { "name": "symfony/service-contracts", - "version": "v3.4.2", + "version": "v3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e", - "reference": "11bbf19a0fb7b36345861e85c5768844c552906e", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^1.1|^2.0" + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -6791,7 +6792,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" + "dev-main": "3.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -6829,7 +6830,7 @@ "interoperability", "standards" ], - "time": "2023-12-19T21:51:00+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/string", From a99ba2a03421034ff8a20783c74caf5b6da8c539 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 8 May 2024 07:58:51 +0200 Subject: [PATCH 24/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20plugins?= =?UTF-8?q?=20&=20cms?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 4 ++-- composer.lock | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/composer.json b/composer.json index a2350086..3e7e3205 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.9.1", + "craftcms/cms": "4.9.2", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", @@ -10,7 +10,7 @@ "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.48", "nystudio107/craft-vite": "4.0.9", - "putyourlightson/craft-blitz": "4.17.0", + "putyourlightson/craft-blitz": "4.18.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", diff --git a/composer.lock b/composer.lock index 2cfb39db..1d68f04a 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "efb1d99cb8d47263b36fcead87b3de29", + "content-hash": "56b1c899ef145965caa5cd08773fceb5", "packages": [ { "name": "amphp/amp", @@ -1327,11 +1327,11 @@ }, { "name": "composer/xdebug-handler", - "version": "3.0.4", + "version": "3.0.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255", - "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", "shasum": "" }, "require": { @@ -1359,7 +1359,7 @@ "Xdebug", "performance" ], - "time": "2024-03-26T18:29:49+00:00" + "time": "2024-05-06T16:37:16+00:00" }, { "name": "craftcms/ckeditor", @@ -1415,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.9.1", + "version": "4.9.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/6405731ee01606fd183ac9495171de0ee5f37566", - "reference": "6405731ee01606fd183ac9495171de0ee5f37566", + "url": "https://api.github.com/repos/craftcms/cms/zipball/fbef5f2421b1d2517feb2b3a6eb33e3f6924172a", + "reference": "fbef5f2421b1d2517feb2b3a6eb33e3f6924172a", "shasum": "" }, "require": { @@ -1507,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-05-02T22:23:56+00:00" + "time": "2024-05-07T18:40:05+00:00" }, { "name": "craftcms/html-field", @@ -4501,11 +4501,11 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.28.0", + "version": "1.29.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", - "reference": "cd06d6b1a1b3c75b0b83f97577869fd85a3cd4fb", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/536889f2b340489d328f5ffb7b02bb6b183ddedc", + "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc", "shasum": "" }, "require": { @@ -4523,7 +4523,7 @@ "MIT" ], "description": "PHPDoc parser with support for nullable, intersection and generic types", - "time": "2024-04-03T18:51:33+00:00" + "time": "2024-05-06T12:04:23+00:00" }, { "name": "pixelandtonic/imagine", @@ -4915,11 +4915,11 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.17.0", + "version": "4.18.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/f1ee49bd3d9a99bad7e2e6293c885fdf0a993a44", - "reference": "f1ee49bd3d9a99bad7e2e6293c885fdf0a993a44", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1c85739d3a9af1b48dee85605c5b306a117924e0", + "reference": "1c85739d3a9af1b48dee85605c5b306a117924e0", "shasum": "" }, "require": { @@ -4929,7 +4929,7 @@ "cypresslab/gitelephant": "^4.0", "php": "^8.0.2", "putyourlightson/craft-blitz-hints": "^1.2.2", - "putyourlightson/craft-sprig-core": "^2.6.4" + "putyourlightson/craft-sprig-core": "^2.7.3" }, "type": "craft-plugin", "extra": { @@ -4964,7 +4964,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-04-27T23:16:18+00:00" + "time": "2024-05-07T13:48:55+00:00" }, { "name": "putyourlightson/craft-blitz-hints", From 4abc3a3f53b414d326822ea4d5df8885c86dabae Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Sat, 11 May 2024 23:47:13 +0200 Subject: [PATCH 25/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20hyper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 3e7e3205..20a08d26 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", - "verbb/hyper": "1.1.28", + "verbb/hyper": "1.1.29", "verbb/navigation": "2.0.27", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index 1d68f04a..ad21dca9 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "56b1c899ef145965caa5cd08773fceb5", + "content-hash": "7ef5e74ed82c1477423a3ed949f4608e", "packages": [ { "name": "amphp/amp", @@ -4742,15 +4742,15 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -4773,7 +4773,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -4784,7 +4784,7 @@ "request", "response" ], - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -7178,11 +7178,11 @@ }, { "name": "verbb/hyper", - "version": "1.1.28", + "version": "1.1.29", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/8519daf5b49b0e0dbc91d9c691ae569c6a5e2c71", - "reference": "8519daf5b49b0e0dbc91d9c691ae569c6a5e2c71", + "url": "https://api.github.com/repos/verbb/hyper/zipball/68f1e7bf6cb0a1f0112b942318772634b6391fde", + "reference": "68f1e7bf6cb0a1f0112b942318772634b6391fde", "shasum": "" }, "require": { @@ -7228,7 +7228,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-04-29T01:27:03+00:00" + "time": "2024-05-11T02:05:33+00:00" }, { "name": "verbb/navigation", From 090ac7111c88d0dcfdd3bf6c75b60aa558099cbd Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Thu, 23 May 2024 22:02:32 +0200 Subject: [PATCH 26/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 8 +++---- composer.lock | 58 +++++++++++++++++++++++++-------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/composer.json b/composer.json index 20a08d26..34b427e1 100644 --- a/composer.json +++ b/composer.json @@ -1,20 +1,20 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.9.2", + "craftcms/cms": "4.9.5", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", "nystudio107/craft-code-field": "4.0.12", "nystudio107/craft-emptycoalesce": "4.0.0", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.0.48", + "nystudio107/craft-seomatic": "4.0.49", "nystudio107/craft-vite": "4.0.9", - "putyourlightson/craft-blitz": "4.18.0", + "putyourlightson/craft-blitz": "4.18.1", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", - "verbb/hyper": "1.1.29", + "verbb/hyper": "1.1.30", "verbb/navigation": "2.0.27", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index ad21dca9..35899d26 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7ef5e74ed82c1477423a3ed949f4608e", + "content-hash": "bc9a8789fe9b34272688e6a5d1f8c9d0", "packages": [ { "name": "amphp/amp", @@ -1415,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.9.2", + "version": "4.9.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/fbef5f2421b1d2517feb2b3a6eb33e3f6924172a", - "reference": "fbef5f2421b1d2517feb2b3a6eb33e3f6924172a", + "url": "https://api.github.com/repos/craftcms/cms/zipball/12bb8e12b82ec4638a2d0ddc64572b82894bcc95", + "reference": "12bb8e12b82ec4638a2d0ddc64572b82894bcc95", "shasum": "" }, "require": { @@ -1507,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-05-07T18:40:05+00:00" + "time": "2024-05-22T19:48:25+00:00" }, { "name": "craftcms/html-field", @@ -4054,11 +4054,11 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.0.48", + "version": "4.0.49", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/4f81d00701e3c5cb6882dc76008ad7426177035f", - "reference": "4f81d00701e3c5cb6882dc76008ad7426177035f", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/a4ddb79cdd80e81f860e1e603e313a0cbfb2598e", + "reference": "a4ddb79cdd80e81f860e1e603e313a0cbfb2598e", "shasum": "" }, "require": { @@ -4110,7 +4110,7 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2024-04-10T18:16:53+00:00" + "time": "2024-05-20T19:44:44+00:00" }, { "name": "nystudio107/craft-vite", @@ -4367,11 +4367,11 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.4.0", + "version": "5.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/298d2febfe79d03fe714eb871d5538da55205b1a", - "reference": "298d2febfe79d03fe714eb871d5538da55205b1a", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", "shasum": "" }, "require": { @@ -4408,7 +4408,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2024-04-09T21:13:58+00:00" + "time": "2024-05-21T05:55:05+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -4915,11 +4915,11 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.18.0", + "version": "4.18.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1c85739d3a9af1b48dee85605c5b306a117924e0", - "reference": "1c85739d3a9af1b48dee85605c5b306a117924e0", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/26b9ca3d8ed03a137ee319b22cf499b934ee7c5a", + "reference": "26b9ca3d8ed03a137ee319b22cf499b934ee7c5a", "shasum": "" }, "require": { @@ -4964,7 +4964,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-05-07T13:48:55+00:00" + "time": "2024-05-16T11:16:23+00:00" }, { "name": "putyourlightson/craft-blitz-hints", @@ -5078,11 +5078,11 @@ }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.7.3", + "version": "2.7.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/7f4a229a9779eb73920b6af5f4cb7a944446033e", - "reference": "7f4a229a9779eb73920b6af5f4cb7a944446033e", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/2de07775abe6f9f63358e2ac25fd3c30bca2e5f3", + "reference": "2de07775abe6f9f63358e2ac25fd3c30bca2e5f3", "shasum": "" }, "require": { @@ -5104,7 +5104,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2024-04-30T13:28:24+00:00" + "time": "2024-05-15T20:28:13+00:00" }, { "name": "ralouphie/getallheaders", @@ -7147,11 +7147,11 @@ }, { "name": "verbb/base", - "version": "2.0.5", + "version": "2.0.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/verbb-base/zipball/d8bf72792c826fe4f3785c0942f7f74adb5c2670", - "reference": "d8bf72792c826fe4f3785c0942f7f74adb5c2670", + "url": "https://api.github.com/repos/verbb/verbb-base/zipball/3ef8401a7d0b4e4f45c03739b798439eee32b9ae", + "reference": "3ef8401a7d0b4e4f45c03739b798439eee32b9ae", "shasum": "" }, "require": { @@ -7174,15 +7174,15 @@ } ], "description": "Common utilities and building-blocks for Verbb plugins for Craft CMS.", - "time": "2024-03-13T23:35:14+00:00" + "time": "2024-05-18T01:32:27+00:00" }, { "name": "verbb/hyper", - "version": "1.1.29", + "version": "1.1.30", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/68f1e7bf6cb0a1f0112b942318772634b6391fde", - "reference": "68f1e7bf6cb0a1f0112b942318772634b6391fde", + "url": "https://api.github.com/repos/verbb/hyper/zipball/a39bb9626b70a94a85cc0ed4dc65b3e487846fd2", + "reference": "a39bb9626b70a94a85cc0ed4dc65b3e487846fd2", "shasum": "" }, "require": { @@ -7228,7 +7228,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-05-11T02:05:33+00:00" + "time": "2024-05-18T12:55:54+00:00" }, { "name": "verbb/navigation", From ec080925bd994c4da57b307fb5cf0da6317978ac Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:00:55 +0200 Subject: [PATCH 27/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(cms):=204.10?= =?UTF-8?q?.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 255 +++++++++++++++++++++++++------------------------- 2 files changed, 128 insertions(+), 129 deletions(-) diff --git a/composer.json b/composer.json index 34b427e1..84368b0f 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.9.5", + "craftcms/cms": "4.10.4", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", diff --git a/composer.lock b/composer.lock index 35899d26..e5e9574b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bc9a8789fe9b34272688e6a5d1f8c9d0", + "content-hash": "9baca9b9bc16e304d7663c791b71a12c", "packages": [ { "name": "amphp/amp", @@ -1021,11 +1021,11 @@ }, { "name": "composer/class-map-generator", - "version": "1.1.1", + "version": "1.3.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/8286a62d243312ed99b3eee20d5005c961adb311", - "reference": "8286a62d243312ed99b3eee20d5005c961adb311", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", + "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", "shasum": "" }, "require": { @@ -1058,23 +1058,23 @@ "keywords": [ "classmap" ], - "time": "2024-03-15T12:53:41+00:00" + "time": "2024-06-12T14:13:04+00:00" }, { "name": "composer/composer", - "version": "2.7.6", + "version": "2.7.7", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/fabd995783b633829fd4280e272284b39b6ae702", - "reference": "fabd995783b633829fd4280e272284b39b6ae702", + "url": "https://api.github.com/repos/composer/composer/zipball/291942978f39435cf904d33739f98d7d4eca7b23", + "reference": "291942978f39435cf904d33739f98d7d4eca7b23", "shasum": "" }, "require": { "composer/ca-bundle": "^1.0", - "composer/class-map-generator": "^1.0", + "composer/class-map-generator": "^1.3.3", "composer/metadata-minifier": "^1.0", "composer/pcre": "^2.1 || ^3.1", - "composer/semver": "^3.2.5", + "composer/semver": "^3.3", "composer/spdx-licenses": "^1.5.7", "composer/xdebug-handler": "^2.0.2 || ^3.0.3", "justinrainbow/json-schema": "^5.2.11", @@ -1138,7 +1138,7 @@ "dependency", "package" ], - "time": "2024-05-04T21:03:15+00:00" + "time": "2024-06-10T20:11:12+00:00" }, { "name": "composer/metadata-minifier", @@ -1182,11 +1182,11 @@ }, { "name": "composer/pcre", - "version": "3.1.3", + "version": "3.1.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", - "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24", + "reference": "04229f163664973f68f38f6f73d917799168ef24", "shasum": "" }, "require": { @@ -1220,7 +1220,7 @@ "regex", "regular expression" ], - "time": "2024-03-19T10:26:25+00:00" + "time": "2024-05-27T13:40:54+00:00" }, { "name": "composer/semver", @@ -1415,11 +1415,11 @@ }, { "name": "craftcms/cms", - "version": "4.9.5", + "version": "4.10.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/12bb8e12b82ec4638a2d0ddc64572b82894bcc95", - "reference": "12bb8e12b82ec4638a2d0ddc64572b82894bcc95", + "url": "https://api.github.com/repos/craftcms/cms/zipball/3c6df36faf3d0592795c0817fe871dc7bf5004fa", + "reference": "3c6df36faf3d0592795c0817fe871dc7bf5004fa", "shasum": "" }, "require": { @@ -1456,7 +1456,7 @@ "twig/twig": "~3.8.0", "voku/stringy": "^6.4.0", "webonyx/graphql-php": "~14.11.5", - "yiisoft/yii2": "~2.0.48.1", + "yiisoft/yii2": "~2.0.50", "yiisoft/yii2-debug": "~2.1.22.0", "yiisoft/yii2-queue": "~2.3.2", "yiisoft/yii2-symfonymailer": "^2.0.0" @@ -1465,10 +1465,10 @@ "webonyx/graphql-php": "14.11.7" }, "provide": { - "bower-asset/inputmask": "~3.2.2|~3.3.5", - "bower-asset/jquery": "3.5.*@stable|3.4.*@stable|3.3.*@stable|3.2.*@stable|3.1.*@stable|2.2.*@stable|2.1.*@stable|1.11.*@stable|1.12.*@stable", - "bower-asset/punycode": "1.3.*", - "bower-asset/yii2-pjax": "~2.0.1", + "bower-asset/inputmask": "5.0.9", + "bower-asset/jquery": "3.6.1", + "bower-asset/punycode": "2.3.1", + "bower-asset/yii2-pjax": "2.0.8", "yii2tech/ar-softdelete": "1.0.4" }, "suggest": { @@ -1507,7 +1507,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-05-22T19:48:25+00:00" + "time": "2024-07-02T16:27:09+00:00" }, { "name": "craftcms/html-field", @@ -4501,11 +4501,11 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.29.0", + "version": "1.29.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/536889f2b340489d328f5ffb7b02bb6b183ddedc", - "reference": "536889f2b340489d328f5ffb7b02bb6b183ddedc", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4", + "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4", "shasum": "" }, "require": { @@ -4523,7 +4523,7 @@ "MIT" ], "description": "PHPDoc parser with support for nullable, intersection and generic types", - "time": "2024-05-06T12:04:23+00:00" + "time": "2024-05-31T08:52:43+00:00" }, { "name": "pixelandtonic/imagine", @@ -5235,11 +5235,11 @@ }, { "name": "react/promise", - "version": "v3.1.0", + "version": "v3.2.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", - "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63", "shasum": "" }, "require": { @@ -5284,7 +5284,7 @@ "promise", "promises" ], - "time": "2023-11-16T16:21:57+00:00" + "time": "2024-05-24T10:39:05+00:00" }, { "name": "rize/uri-template", @@ -5686,11 +5686,11 @@ }, { "name": "symfony/console", - "version": "v6.4.7", + "version": "v6.4.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", - "reference": "a170e64ae10d00ba89e2acbb590dc2e54da8ad8f", + "url": "https://api.github.com/repos/symfony/console/zipball/6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9", + "reference": "6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9", "shasum": "" }, "require": { @@ -5740,7 +5740,7 @@ "console", "terminal" ], - "time": "2024-04-18T09:22:46+00:00" + "time": "2024-06-28T09:49:33+00:00" }, { "name": "symfony/deprecation-contracts", @@ -5788,11 +5788,11 @@ }, { "name": "symfony/event-dispatcher", - "version": "v7.0.7", + "version": "v7.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/db2a7fab994d67d92356bb39c367db115d9d30f9", - "reference": "db2a7fab994d67d92356bb39c367db115d9d30f9", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", + "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7", "shasum": "" }, "require": { @@ -5831,7 +5831,7 @@ ], "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -5888,18 +5888,17 @@ }, { "name": "symfony/filesystem", - "version": "v7.0.7", + "version": "v7.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/cc168be6fbdcdf3401f50ae863ee3818ed4338f5", - "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c", + "reference": "92a91985250c251de9b947a14bb2c9390b1a562c", "shasum": "" }, "require": { "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8", - "symfony/process": "^6.4|^7.0" + "symfony/polyfill-mbstring": "~1.8" }, "type": "library", "autoload": { @@ -5925,15 +5924,15 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-28T10:03:55+00:00" }, { "name": "symfony/finder", - "version": "v7.0.7", + "version": "v7.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c", - "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c", + "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6", + "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6", "shasum": "" }, "require": { @@ -5963,15 +5962,15 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", - "time": "2024-04-28T11:44:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.7", + "version": "v6.4.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/3683d8107cf1efdd24795cc5f7482be1eded34ac", - "reference": "3683d8107cf1efdd24795cc5f7482be1eded34ac", + "url": "https://api.github.com/repos/symfony/http-client/zipball/6e9db0025db565bcf8f1d46ed734b549e51e6045", + "reference": "6e9db0025db565bcf8f1d46ed734b549e51e6045", "shasum": "" }, "require": { @@ -6018,7 +6017,7 @@ "keywords": [ "http" ], - "time": "2024-04-18T09:22:46+00:00" + "time": "2024-06-28T07:59:05+00:00" }, { "name": "symfony/http-client-contracts", @@ -6077,11 +6076,11 @@ }, { "name": "symfony/mailer", - "version": "v7.0.7", + "version": "v7.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", - "reference": "4ff41a7c7998a88cfdc31b5841ef64d9246fc56a", + "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee", + "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee", "shasum": "" }, "require": { @@ -6124,15 +6123,15 @@ ], "description": "Helps sending emails", "homepage": "https://symfony.com", - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-28T08:00:31+00:00" }, { "name": "symfony/mime", - "version": "v7.0.7", + "version": "v7.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/3adbf110c306546f6f00337f421d2edca0e8d3c0", - "reference": "3adbf110c306546f6f00337f421d2edca0e8d3c0", + "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc", + "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc", "shasum": "" }, "require": { @@ -6145,7 +6144,7 @@ "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<6.4", - "symfony/serializer": "<6.4" + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "type": "library", "autoload": { @@ -6175,15 +6174,15 @@ "mime", "mime-type" ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-28T10:03:55+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", + "reference": "0424dff1c58f028c451efff2045f5d92410bd540", "shasum": "" }, "require": { @@ -6231,15 +6230,15 @@ "polyfill", "portable" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", - "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805", + "reference": "c027e6a3c6aee334663ec21f5852e89738abc805", "shasum": "" }, "require": { @@ -6288,15 +6287,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -6343,15 +6342,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -6404,15 +6403,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -6462,15 +6461,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -6519,15 +6518,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442", + "reference": "10112722600777e02d2745716b70c5db4ca70442", "shasum": "" }, "require": { @@ -6569,15 +6568,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2", - "reference": "21bd091060673a1177ae842c0ef8fe30893114d2", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/ec444d3f3f6505bb28d11afa41e75faadebc10a1", + "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1", "shasum": "" }, "require": { @@ -6622,15 +6621,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", "shasum": "" }, "require": { @@ -6679,15 +6678,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.29.0", + "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", "shasum": "" }, "require": { @@ -6732,15 +6731,15 @@ "portable", "shim" ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/process", - "version": "v7.0.7", + "version": "v7.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0", - "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0", + "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028", + "reference": "febf90124323a093c7ee06fdb30e765ca3c20028", "shasum": "" }, "require": { @@ -6770,7 +6769,7 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/service-contracts", @@ -6834,11 +6833,11 @@ }, { "name": "symfony/string", - "version": "v7.0.7", + "version": "v7.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63", - "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63", + "url": "https://api.github.com/repos/symfony/string/zipball/14221089ac66cf82e3cf3d1c1da65de305587ff8", + "reference": "14221089ac66cf82e3cf3d1c1da65de305587ff8", "shasum": "" }, "require": { @@ -6886,15 +6885,15 @@ "utf-8", "utf8" ], - "time": "2024-04-18T09:29:19+00:00" + "time": "2024-06-28T09:27:18+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.39", + "version": "v5.4.40", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1987f86ad7f339fe3d3e8e6cf3b7ce4d4b8e547e", - "reference": "1987f86ad7f339fe3d3e8e6cf3b7ce4d4b8e547e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af8868a6e9d6082dfca11f1a1f205ae93a8b6d93", + "reference": "af8868a6e9d6082dfca11f1a1f205ae93a8b6d93", "shasum": "" }, "require": { @@ -6944,15 +6943,15 @@ "debug", "dump" ], - "time": "2024-04-18T08:26:06+00:00" + "time": "2024-05-31T14:33:22+00:00" }, { "name": "symfony/yaml", - "version": "v5.4.39", + "version": "v5.4.40", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640", - "reference": "bc780e16879000f77a1022163c052f5323b5e640", + "url": "https://api.github.com/repos/symfony/yaml/zipball/81cad0ceab3d61fe14fe941ff18a230ac9c80f83", + "reference": "81cad0ceab3d61fe14fe941ff18a230ac9c80f83", "shasum": "" }, "require": { @@ -6993,7 +6992,7 @@ ], "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", - "time": "2024-04-23T11:57:27+00:00" + "time": "2024-05-31T14:33:22+00:00" }, { "name": "theiconic/name-parser", @@ -7815,25 +7814,25 @@ }, { "name": "yiisoft/yii2", - "version": "2.0.48.1", + "version": "2.0.50", "dist": { "type": "zip", - "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/de92f154eefe322fc1b1b2a52cce46677441ced4", - "reference": "de92f154eefe322fc1b1b2a52cce46677441ced4", + "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/a90b6638cce84e78ed8f681a5cad4a14c76464b4", + "reference": "a90b6638cce84e78ed8f681a5cad4a14c76464b4", "shasum": "" }, "require": { - "bower-asset/inputmask": "~3.2.2 | ~3.3.5", - "bower-asset/jquery": "3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable", - "bower-asset/punycode": "1.3.*", + "bower-asset/inputmask": "^5.0.8 ", + "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable", + "bower-asset/punycode": "^2.2", "bower-asset/yii2-pjax": "~2.0.1", "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0", "ext-ctype": "*", "ext-mbstring": "*", - "ezyang/htmlpurifier": "^4.6", + "ezyang/htmlpurifier": "^4.17", "lib-pcre": "*", "paragonie/random_compat": ">=1", - "php": ">=5.4.0", + "php": ">=7.3.0", "yiisoft/yii2-composer": "~2.0.4" }, "bin": [ @@ -7906,7 +7905,7 @@ "framework", "yii2" ], - "time": "2023-05-24T19:04:02+00:00" + "time": "2024-05-30T17:23:31+00:00" }, { "name": "yiisoft/yii2-composer", From 1f222fbed3236cb705e4d29d5106886cf4ba837a Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:03:06 +0200 Subject: [PATCH 28/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20B?= =?UTF-8?q?litz=20(4.19.0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 ++- composer.json | 2 +- composer.lock | 12 ++++++------ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaeec36f..abcfbf0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,11 @@ - formie ### updated -- (cms): CraftCMS (4.7.1) +- (cms): CraftCMS (4.10.4) - (plugin): SEOmatic (4.0.38) - (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) +- (plugin): Blitz (4.19.0) - (plugin): Navigation (2.0.25) - (plugin): Hyper (1.1.20) - (plugin): Vite (4.0.8) diff --git a/composer.json b/composer.json index 84368b0f..86051f29 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.49", "nystudio107/craft-vite": "4.0.9", - "putyourlightson/craft-blitz": "4.18.1", + "putyourlightson/craft-blitz": "4.19.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", diff --git a/composer.lock b/composer.lock index e5e9574b..e8d85e4b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9baca9b9bc16e304d7663c791b71a12c", + "content-hash": "ab0a3204825d42bff58a729355458772", "packages": [ { "name": "amphp/amp", @@ -4915,17 +4915,17 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.18.1", + "version": "4.19.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/26b9ca3d8ed03a137ee319b22cf499b934ee7c5a", - "reference": "26b9ca3d8ed03a137ee319b22cf499b934ee7c5a", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/24c665d0e6b04aaa1c10e70b4e37b87e9f878880", + "reference": "24c665d0e6b04aaa1c10e70b4e37b87e9f878880", "shasum": "" }, "require": { "amphp/http-client": "^4.0", "amphp/parallel": "^1.0", - "craftcms/cms": "^4.4", + "craftcms/cms": "^4.4.7", "cypresslab/gitelephant": "^4.0", "php": "^8.0.2", "putyourlightson/craft-blitz-hints": "^1.2.2", @@ -4964,7 +4964,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-05-16T11:16:23+00:00" + "time": "2024-07-04T10:10:02+00:00" }, { "name": "putyourlightson/craft-blitz-hints", From cae56ded7129b057a7a8d26f2dd8cb7f1706eee9 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:06:10 +0200 Subject: [PATCH 29/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20H?= =?UTF-8?q?yper=20(1.1.32)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 34 +++++++++++++++++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/composer.json b/composer.json index 86051f29..be017da2 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.0", - "verbb/hyper": "1.1.30", + "verbb/hyper": "1.1.32", "verbb/navigation": "2.0.27", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index e8d85e4b..c6d91021 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "ab0a3204825d42bff58a729355458772", + "content-hash": "e27c5a78147685066e190470ffc56984", "packages": [ { "name": "amphp/amp", @@ -2126,11 +2126,11 @@ }, { "name": "embed/embed", - "version": "v4.4.10", + "version": "v4.4.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/oscarotero/Embed/zipball/8ac21505d048e8796c6cb9172ec5e81e5d0e0408", - "reference": "8ac21505d048e8796c6cb9172ec5e81e5d0e0408", + "url": "https://api.github.com/repos/oscarotero/Embed/zipball/09a60be4f14fc60d063a8dba22594f7b43765958", + "reference": "09a60be4f14fc60d063a8dba22594f7b43765958", "shasum": "" }, "require": { @@ -2178,7 +2178,7 @@ "opengraph", "twitter cards" ], - "time": "2023-12-10T12:30:47+00:00" + "time": "2024-06-10T16:01:33+00:00" }, { "name": "enshrined/svg-sanitize", @@ -3970,11 +3970,11 @@ }, { "name": "nystudio107/craft-plugin-vite", - "version": "4.0.10", + "version": "4.0.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/4ff8dfabd51663fcb081f092eeeba1ed2ed88a50", - "reference": "4ff8dfabd51663fcb081f092eeeba1ed2ed88a50", + "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/7eefbafeb07df455daecf7c16961fd5a47e55d29", + "reference": "7eefbafeb07df455daecf7c16961fd5a47e55d29", "shasum": "" }, "require": { @@ -4005,7 +4005,7 @@ "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v4/README.md", "issues": "https://github.com/nystudio107/craft-plugin-vite/issues" }, - "time": "2024-03-02T05:06:52+00:00" + "time": "2024-06-13T03:40:36+00:00" }, { "name": "nystudio107/craft-scripts", @@ -7146,11 +7146,11 @@ }, { "name": "verbb/base", - "version": "2.0.7", + "version": "2.0.8", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/verbb-base/zipball/3ef8401a7d0b4e4f45c03739b798439eee32b9ae", - "reference": "3ef8401a7d0b4e4f45c03739b798439eee32b9ae", + "url": "https://api.github.com/repos/verbb/verbb-base/zipball/1445a89d7a360d3ba8bba97c47a10c6f1aa27307", + "reference": "1445a89d7a360d3ba8bba97c47a10c6f1aa27307", "shasum": "" }, "require": { @@ -7173,15 +7173,15 @@ } ], "description": "Common utilities and building-blocks for Verbb plugins for Craft CMS.", - "time": "2024-05-18T01:32:27+00:00" + "time": "2024-06-10T09:00:32+00:00" }, { "name": "verbb/hyper", - "version": "1.1.30", + "version": "1.1.32", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/a39bb9626b70a94a85cc0ed4dc65b3e487846fd2", - "reference": "a39bb9626b70a94a85cc0ed4dc65b3e487846fd2", + "url": "https://api.github.com/repos/verbb/hyper/zipball/bf90236521cdc41e3b271c06afc2998327b0ba1a", + "reference": "bf90236521cdc41e3b271c06afc2998327b0ba1a", "shasum": "" }, "require": { @@ -7227,7 +7227,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-05-18T12:55:54+00:00" + "time": "2024-06-15T04:52:50+00:00" }, { "name": "verbb/navigation", From 2c2a1645df7e952f72e7de281eeee1028b3f592f Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:07:16 +0200 Subject: [PATCH 30/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20I?= =?UTF-8?q?magerX=20(4.4.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +- composer.json | 2 +- composer.lock | 151 +++++++++++++++++++++----------------------------- 3 files changed, 66 insertions(+), 90 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abcfbf0a..9803f2cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,9 @@ - (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) - (plugin): Blitz (4.19.0) +- (plugin): ImagerX (4.4.1) - (plugin): Navigation (2.0.25) -- (plugin): Hyper (1.1.20) +- (plugin): Hyper (1.1.32) - (plugin): Vite (4.0.8) - (plugin): CKEditor (3.7.1) - (waypoints): Better waypoint target selection diff --git a/composer.json b/composer.json index be017da2..a65362e9 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "putyourlightson/craft-blitz": "4.19.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", - "spacecatninja/imager-x": "4.4.0", + "spacecatninja/imager-x": "4.4.1", "verbb/hyper": "1.1.32", "verbb/navigation": "2.0.27", "vlucas/phpdotenv": "^5.4", diff --git a/composer.lock b/composer.lock index c6d91021..ca142523 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e27c5a78147685066e190470ffc56984", + "content-hash": "6f3668bf8f70b3efb9948658e1c088ea", "packages": [ { "name": "amphp/amp", @@ -711,11 +711,11 @@ }, { "name": "aws/aws-crt-php", - "version": "v1.2.4", + "version": "v1.2.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2", - "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408", + "reference": "a63485b65b6b3367039306496d49737cf1995408", "shasum": "" }, "require": { @@ -747,20 +747,15 @@ "crt", "sdk" ], - "time": "2023-11-08T00:42:13+00:00" + "time": "2024-06-13T17:21:28+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.304.8", - "source": { - "type": "git", - "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "0079eaa0a0eaef2d73d0a4a11389cdfce1d33189" - }, + "version": "3.315.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0079eaa0a0eaef2d73d0a4a11389cdfce1d33189", - "reference": "0079eaa0a0eaef2d73d0a4a11389cdfce1d33189", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3e6d619d45d8e1a8681dd58de61ddfe90e8341e6", + "reference": "3e6d619d45d8e1a8681dd58de61ddfe90e8341e6", "shasum": "" }, "require": { @@ -775,25 +770,6 @@ "php": ">=7.2.5", "psr/http-message": "^1.0 || ^2.0" }, - "require-dev": { - "andrewsville/php-token-reflection": "^1.4", - "aws/aws-php-sns-message-validator": "~1.0", - "behat/behat": "~3.0", - "composer/composer": "^1.10.22", - "dms/phpunit-arraysubset-asserts": "^0.4.0", - "doctrine/cache": "~1.4", - "ext-dom": "*", - "ext-openssl": "*", - "ext-pcntl": "*", - "ext-sockets": "*", - "nette/neon": "^2.3", - "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5", - "psr/cache": "^1.0", - "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3 || ^4.0", - "yoast/phpunit-polyfills": "^1.0" - }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", "doctrine/cache": "To use the DoctrineCacheAdapter", @@ -815,7 +791,6 @@ "Aws\\": "src/" } }, - "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], @@ -837,24 +812,19 @@ "s3", "sdk" ], - "support": { - "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", - "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.304.8" - }, - "time": "2024-04-19T18:13:09+00:00" + "time": "2024-07-03T18:12:51+00:00" }, { "name": "brick/math", - "version": "0.11.0", + "version": "0.12.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", - "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", "shasum": "" }, "require": { - "php": "^8.0" + "php": "^8.1" }, "type": "library", "autoload": { @@ -873,10 +843,15 @@ "arithmetic", "bigdecimal", "bignum", + "bignumber", "brick", - "math" + "decimal", + "integer", + "math", + "mathematics", + "rational" ], - "time": "2023-01-15T23:15:59+00:00" + "time": "2023-11-29T23:19:16+00:00" }, { "name": "cebe/markdown", @@ -2262,15 +2237,15 @@ }, { "name": "firebase/php-jwt", - "version": "v6.10.0", + "version": "v6.10.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff", - "reference": "a49db6f0a5033aef5143295342f1c95521b075ff", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5", + "reference": "500501c2ce893c824c801da135d02661199f60c5", "shasum": "" }, "require": { - "php": "^7.4||^8.0" + "php": "^8.0" }, "suggest": { "ext-sodium": "Support EdDSA (Ed25519) signatures", @@ -2303,23 +2278,23 @@ "jwt", "php" ], - "time": "2023-12-01T16:26:39+00:00" + "time": "2024-05-18T18:05:11+00:00" }, { "name": "google/auth", - "version": "v1.37.1", + "version": "v1.40.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46", - "reference": "1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/bff9f2d01677e71a98394b5ac981b99523df5178", + "reference": "bff9f2d01677e71a98394b5ac981b99523df5178", "shasum": "" }, "require": { "firebase/php-jwt": "^6.0", - "guzzlehttp/guzzle": "^6.5.8||^7.4.5", + "guzzlehttp/guzzle": "^7.4.5", "guzzlehttp/psr7": "^2.4.5", - "php": "^7.4||^8.0", - "psr/cache": "^1.0||^2.0||^3.0", + "php": "^8.0", + "psr/cache": "^2.0||^3.0", "psr/http-message": "^1.1||^2.0" }, "suggest": { @@ -2341,20 +2316,20 @@ "google", "oauth2" ], - "time": "2024-04-03T18:41:12+00:00" + "time": "2024-05-31T19:16:15+00:00" }, { "name": "google/cloud-core", - "version": "v1.57.0", + "version": "v1.59.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/a6bbc85a5ff2edc1c29344e3aaaa0a099d569748", - "reference": "a6bbc85a5ff2edc1c29344e3aaaa0a099d569748", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/56d31be2663780a7ed0736bee60d01f047bf15c0", + "reference": "56d31be2663780a7ed0736bee60d01f047bf15c0", "shasum": "" }, "require": { "google/auth": "^1.34", - "google/gax": "^1.30", + "google/gax": "^1.34.0", "guzzlehttp/guzzle": "^6.5.8|^7.4.4", "guzzlehttp/promises": "^1.4||^2.0", "guzzlehttp/psr7": "^2.6", @@ -2388,15 +2363,15 @@ "Apache-2.0" ], "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.", - "time": "2024-04-12T23:38:19+00:00" + "time": "2024-06-07T22:33:41+00:00" }, { "name": "google/cloud-storage", - "version": "v1.41.2", + "version": "v1.42.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/3b6d7c13970f0c80f2450d2ec1241d7deaad3dda", - "reference": "3b6d7c13970f0c80f2450d2ec1241d7deaad3dda", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/1c77f5882c30bec95ab2837b9534a946325d1c57", + "reference": "1c77f5882c30bec95ab2837b9534a946325d1c57", "shasum": "" }, "require": { @@ -2426,7 +2401,7 @@ "Apache-2.0" ], "description": "Cloud Storage Client for PHP", - "time": "2024-04-12T23:38:19+00:00" + "time": "2024-05-19T17:27:42+00:00" }, { "name": "google/common-protos", @@ -2469,18 +2444,18 @@ }, { "name": "google/gax", - "version": "v1.30.1", + "version": "v1.34.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/gax-php/zipball/2deeb24898d0ba3c4faba48f7f0cfcc1ef341613", - "reference": "2deeb24898d0ba3c4faba48f7f0cfcc1ef341613", + "url": "https://api.github.com/repos/googleapis/gax-php/zipball/28aa3e95969a75b278606a88448992a6396a119e", + "reference": "28aa3e95969a75b278606a88448992a6396a119e", "shasum": "" }, "require": { "google/auth": "^1.34.0", "google/common-protos": "^4.4", "google/grpc-gcp": "^0.4", - "google/longrunning": "~0.2", + "google/longrunning": "~0.4", "google/protobuf": "^v3.25.3||^4.26.1", "grpc/grpc": "^1.13", "guzzlehttp/promises": "^2.0", @@ -2506,7 +2481,7 @@ "keywords": [ "google" ], - "time": "2024-04-03T19:04:34+00:00" + "time": "2024-05-30T00:35:13+00:00" }, { "name": "google/grpc-gcp", @@ -2541,11 +2516,11 @@ }, { "name": "google/longrunning", - "version": "0.4.0", + "version": "0.4.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/6841b03479d5a397a64036a99c33d8ee06bc8b42", - "reference": "6841b03479d5a397a64036a99c33d8ee06bc8b42", + "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/ed718a735e407826c3332b7197a44602eb03e608", + "reference": "ed718a735e407826c3332b7197a44602eb03e608", "shasum": "" }, "type": "library", @@ -2568,15 +2543,15 @@ "Apache-2.0" ], "description": "Google LongRunning Client for PHP", - "time": "2024-04-12T23:38:19+00:00" + "time": "2024-06-01T03:14:01+00:00" }, { "name": "google/protobuf", - "version": "v4.26.1", + "version": "v4.27.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/5c46b0eb09e7ad3e6efef3c5a85e2a34108c52ae", - "reference": "5c46b0eb09e7ad3e6efef3c5a85e2a34108c52ae", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/1b9bfead0ea8108e6ab411258fc38417b62d4bf6", + "reference": "1b9bfead0ea8108e6ab411258fc38417b62d4bf6", "shasum": "" }, "require": { @@ -2600,7 +2575,7 @@ "keywords": [ "proto" ], - "time": "2024-03-27T19:56:50+00:00" + "time": "2024-06-25T19:14:44+00:00" }, { "name": "graham-campbell/result-type", @@ -5185,15 +5160,15 @@ }, { "name": "ramsey/uuid", - "version": "4.7.5", + "version": "4.7.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -5231,7 +5206,7 @@ "identifier", "uuid" ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2024-04-27T21:32:50+00:00" }, { "name": "react/promise", @@ -5525,11 +5500,11 @@ }, { "name": "spacecatninja/imager-x", - "version": "4.4.0", + "version": "4.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/735844afb57151151e6474af209a78552654f8ef", - "reference": "735844afb57151151e6474af209a78552654f8ef", + "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/cc7d1521366ff3c32067f3ab5e9b33a71a8848b1", + "reference": "cc7d1521366ff3c32067f3ab5e9b33a71a8848b1", "shasum": "" }, "require": { @@ -5586,7 +5561,7 @@ "docs": "http://imager-x.spacecat.ninja/", "issues": "https://github.com/spacecatninja/craft-imager-x/issues" }, - "time": "2024-04-05T09:09:27+00:00" + "time": "2024-06-24T20:31:41+00:00" }, { "name": "ssnepenthe/color-utils", From a6bc47141583c0b0ddc386e53be20b9fa5a94cb1 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:09:05 +0200 Subject: [PATCH 31/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20N?= =?UTF-8?q?avigation=20(2.0.28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9803f2cd..fe421292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ - (plugin): Formie (2.1.3) - (plugin): Blitz (4.19.0) - (plugin): ImagerX (4.4.1) -- (plugin): Navigation (2.0.25) +- (plugin): Navigation (2.0.28) - (plugin): Hyper (1.1.32) - (plugin): Vite (4.0.8) - (plugin): CKEditor (3.7.1) diff --git a/composer.json b/composer.json index a65362e9..666c5dcd 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "putyourlightson/craft-sprig": "2.8.1", "spacecatninja/imager-x": "4.4.1", "verbb/hyper": "1.1.32", - "verbb/navigation": "2.0.27", + "verbb/navigation": "2.0.28", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" }, diff --git a/composer.lock b/composer.lock index ca142523..31f99c9e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6f3668bf8f70b3efb9948658e1c088ea", + "content-hash": "cd4dcebe88e6e762d16d436b1fbc2d78", "packages": [ { "name": "amphp/amp", @@ -7206,11 +7206,11 @@ }, { "name": "verbb/navigation", - "version": "2.0.27", + "version": "2.0.28", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/navigation/zipball/9480dc8e85052eb0e52b0b842af3feff756ebe2c", - "reference": "9480dc8e85052eb0e52b0b842af3feff756ebe2c", + "url": "https://api.github.com/repos/verbb/navigation/zipball/9ada688f7ef323028aa1c14ecd7838b7ad4d5b4f", + "reference": "9ada688f7ef323028aa1c14ecd7838b7ad4d5b4f", "shasum": "" }, "require": { @@ -7255,7 +7255,7 @@ "docs": "https://github.com/verbb/navigation", "rss": "https://github.com/verbb/navigation/commits/v2.atom" }, - "time": "2024-03-17T13:08:40+00:00" + "time": "2024-06-16T01:20:06+00:00" }, { "name": "vlucas/phpdotenv", From 523485310eb4ddeab3f8fca38c4ae00ca541892e Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Fri, 5 Jul 2024 08:14:47 +0200 Subject: [PATCH 32/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20S?= =?UTF-8?q?EOmatic=20(4.0.50)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe421292..8f6ab1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### updated - (cms): CraftCMS (4.10.4) -- (plugin): SEOmatic (4.0.38) +- (plugin): SEOmatic (4.0.50) - (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) - (plugin): Blitz (4.19.0) diff --git a/composer.json b/composer.json index 666c5dcd..c9663154 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "nystudio107/craft-code-field": "4.0.12", "nystudio107/craft-emptycoalesce": "4.0.0", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.0.49", + "nystudio107/craft-seomatic": "4.0.50", "nystudio107/craft-vite": "4.0.9", "putyourlightson/craft-blitz": "4.19.0", "putyourlightson/craft-elements-panel": "2.0.0", diff --git a/composer.lock b/composer.lock index 31f99c9e..c1017a51 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "cd4dcebe88e6e762d16d436b1fbc2d78", + "content-hash": "879d52f8aae6a742e5d199c1a1139687", "packages": [ { "name": "amphp/amp", @@ -4029,11 +4029,11 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.0.49", + "version": "4.0.50", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/a4ddb79cdd80e81f860e1e603e313a0cbfb2598e", - "reference": "a4ddb79cdd80e81f860e1e603e313a0cbfb2598e", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/ecf8fb421ae1915f85e93132942d09dd80e31b2c", + "reference": "ecf8fb421ae1915f85e93132942d09dd80e31b2c", "shasum": "" }, "require": { @@ -4085,7 +4085,7 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2024-05-20T19:44:44+00:00" + "time": "2024-06-13T22:57:25+00:00" }, { "name": "nystudio107/craft-vite", From c6c3a4708e5706197af8c0c24812778354251b83 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:08:20 +0200 Subject: [PATCH 33/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20NPM=20Pac?= =?UTF-8?q?kages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 2115 +++++++++++++++++++++++---------------------- package.json | 52 +- 2 files changed, 1098 insertions(+), 1069 deletions(-) diff --git a/package-lock.json b/package-lock.json index c975e744..c3a1bed5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,14 +9,14 @@ "version": "4.0.13", "hasInstallScript": true, "dependencies": { - "@alpinejs/persist": "^3.13.5", + "@alpinejs/persist": "^3.14.1", "@popperjs/core": "^2.11.8", "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/container-queries": "^0.1.1", - "@tailwindcss/forms": "^0.5.7", - "@vueuse/core": "^10.7.2", - "alpinejs": "^3.13.5", - "axios": "^1.6.7", + "@tailwindcss/forms": "^0.5.8", + "@vueuse/core": "^11.0.3", + "alpinejs": "^3.14.1", + "axios": "^1.7.7", "clipboard": "^2.0.11", "ferdi": "0.0.21", "focus-trap": "^7.5.4", @@ -24,13 +24,13 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "swiper": "^11.0.5", + "swiper": "^11.1.12", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", "typeface-jetbrains-mono": "^2.0.1", "typeface-lato": "^1.1.13", "typeface-merriweather": "^1.1.13", - "vue": "^3.4.15", + "vue": "^3.5.1", "vue-axios": "^3.5.2", "vue-confetti": "^2.3.0" }, @@ -40,42 +40,42 @@ "@types/lodash-es": "^4.17.12", "@typescript-eslint/eslint-plugin": "^7.7.1", "@typescript-eslint/parser": "^7.7.1", - "@vitejs/plugin-legacy": "^5.3.0", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/compiler-sfc": "^3.4.15", - "autoprefixer": "^10.4.17", - "cypress": "^13.6.3", + "@vitejs/plugin-legacy": "^5.4.2", + "@vitejs/plugin-vue": "^5.1.3", + "@vue/compiler-sfc": "^3.5.1", + "autoprefixer": "^10.4.20", + "cypress": "^13.14.2", "cypress-audit": "^1.1.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-alias": "^1.1.2", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-prettier": "^5.1.3", - "eslint-plugin-vue": "^9.20.1", - "husky": "^9.0.6", + "eslint-plugin-import": "^2.30.0", + "eslint-plugin-prettier": "^5.2.1", + "eslint-plugin-vue": "^9.28.0", + "husky": "^9.1.5", "npm-check": "^6.0.1", - "postcss": "^8.4.33", + "postcss": "^8.4.45", "postcss-import": "^16.0.0", "postcss-nesting": "^12.0.2", - "prettier": "^3.2.4", - "prettier-plugin-tailwindcss": "^0.5.11", + "prettier": "^3.3.3", + "prettier-plugin-tailwindcss": "^0.6.6", "prettier-plugin-twig-melody": "^0.4.6", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-critical": "^1.0.13", "rollup-plugin-visualizer": "^5.12.0", - "stylelint": "^16.2.0", - "stylelint-config-recommended": "^14.0.0", + "stylelint": "^16.9.0", + "stylelint-config-recommended": "^14.0.1", "stylelint-config-recommended-vue": "^1.5.0", - "tailwindcss": "^3.4.1", + "tailwindcss": "^3.4.10", "tailwindcss-debug-screens": "^2.2.1", - "typescript": "^5.3.3", - "vite": "^5.0.12", + "typescript": "^5.5.4", + "vite": "^5.4.3", "vite-plugin-compression": "^0.5.1", "vite-plugin-eslint": "^1.8.1", "vite-plugin-favicon2": "^1.1.5", "vite-plugin-manifest-sri": "^0.2.0", - "vite-plugin-restart": "^0.4.0", - "vue-eslint-parser": "^9.4.2" + "vite-plugin-restart": "^0.4.1", + "vue-eslint-parser": "^9.4.3" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -99,9 +99,9 @@ } }, "node_modules/@alpinejs/persist": { - "version": "3.13.10", - "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.13.10.tgz", - "integrity": "sha512-rIG12KzdKdwO9XaosWtmoaOeEJWUNM9M/gp7CGOGnRc1Qnw2DVP2bVk3jsAF2ctLpXLdHw3MVT8UaB2bS8kg9Q==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/@alpinejs/persist/-/persist-3.14.1.tgz", + "integrity": "sha512-odlZ6RZRcysaIdbhcbvuxRmq1wXlKWytjsfgz4U45vZbozU/WcTDkWbyyHjnrbMWgFIsS/jRiohtJuXN0js7PA==" }, "node_modules/@ampproject/remapping": { "version": "2.3.0", @@ -117,12 +117,12 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" }, "engines": { @@ -130,30 +130,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", + "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", - "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -178,12 +178,12 @@ } }, "node_modules/@babel/generator": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", - "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz", + "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==", "dev": true, "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.25.6", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -193,38 +193,39 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -242,19 +243,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", - "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", + "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.4", "semver": "^6.3.1" }, "engines": { @@ -274,12 +273,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", + "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -315,75 +314,42 @@ "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dev": true, - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dev": true, "dependencies": { - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" }, "engines": { "node": ">=6.9.0" @@ -393,35 +359,35 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", + "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-wrap-function": "^7.25.0", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -431,14 +397,14 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -448,103 +414,90 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", - "dev": true, + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true, + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", + "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", - "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz", + "integrity": "sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==", "dev": true, "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0" + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", - "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -554,9 +507,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", - "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz", + "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==", + "dependencies": { + "@babel/types": "^7.25.6" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -565,13 +521,28 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", - "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", + "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", + "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -581,12 +552,12 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", + "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -596,14 +567,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -613,13 +584,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", + "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -704,12 +675,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.25.6.tgz", + "integrity": "sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -719,12 +690,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz", + "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -876,12 +847,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -891,15 +862,15 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.4.tgz", + "integrity": "sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-remap-async-to-generator": "^7.25.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/traverse": "^7.25.4" }, "engines": { "node": ">=6.9.0" @@ -909,14 +880,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -926,12 +897,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -941,12 +912,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", - "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", + "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -956,13 +927,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.4.tgz", + "integrity": "sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -972,13 +943,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", - "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -989,18 +960,16 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", - "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.4.tgz", + "integrity": "sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/traverse": "^7.25.4", "globals": "^11.1.0" }, "engines": { @@ -1011,13 +980,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1027,12 +996,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", - "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1042,13 +1011,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1058,12 +1027,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1072,13 +1041,29 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", + "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1089,13 +1074,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1105,12 +1090,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1121,13 +1106,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1137,14 +1122,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", + "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/traverse": "^7.25.1" }, "engines": { "node": ">=6.9.0" @@ -1154,12 +1139,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1170,12 +1155,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", + "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1185,12 +1170,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1201,12 +1186,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1216,13 +1201,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1232,14 +1217,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1249,15 +1234,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", + "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-transforms": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" @@ -1267,13 +1252,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1283,13 +1268,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1299,12 +1284,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1314,12 +1299,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1330,12 +1315,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1346,15 +1331,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", - "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.1" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1364,13 +1349,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1380,12 +1365,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1396,13 +1381,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", - "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1413,12 +1398,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", - "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1428,13 +1413,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz", + "integrity": "sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.25.4", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1444,14 +1429,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", - "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1462,12 +1447,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1477,12 +1462,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1493,12 +1478,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1508,12 +1493,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1523,13 +1508,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1539,12 +1524,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1554,12 +1539,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1569,12 +1554,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", - "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1584,12 +1569,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1599,13 +1584,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1615,13 +1600,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1631,13 +1616,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.4.tgz", + "integrity": "sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8" }, "engines": { "node": ">=6.9.0" @@ -1647,27 +1632,28 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", - "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.4.tgz", + "integrity": "sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.25.4", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1679,59 +1665,60 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.4", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.1", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.1", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.1", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.1", - "@babel/plugin-transform-parameters": "^7.24.1", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.1", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.1", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.25.0", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.25.4", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.4", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-corejs3": "^0.10.6", "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", + "core-js-compat": "^3.37.1", "semver": "^6.3.1" }, "engines": { @@ -1783,33 +1770,30 @@ } }, "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", - "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.1", - "@babel/generator": "^7.24.1", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.1", - "@babel/types": "^7.24.0", + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz", + "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.6", + "@babel/parser": "^7.25.6", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.6", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1818,13 +1802,12 @@ } }, "node_modules/@babel/types": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", - "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", - "dev": true, + "version": "7.25.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz", + "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1842,9 +1825,9 @@ } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.1.tgz", - "integrity": "sha512-ubEkAaTfVZa+WwGhs5jbo5Xfqpeaybr/RvWzvFxRs4jfq16wH8l8Ty/QEEpINxll4xhuGfdMbipRyz5QZh9+FA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.1.tgz", + "integrity": "sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==", "dev": true, "funding": [ { @@ -1857,16 +1840,16 @@ } ], "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.4" + "@csstools/css-tokenizer": "^3.0.1" } }, "node_modules/@csstools/css-tokenizer": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.4.tgz", - "integrity": "sha512-PuWRAewQLbDhGeTvFuq2oClaSCKPIBmHyIobCV39JHRYN0byDcUWJl5baPeNUcqrjtdMNqFooE0FGl31I3JOqw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.1.tgz", + "integrity": "sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==", "dev": true, "funding": [ { @@ -1879,13 +1862,13 @@ } ], "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=18" } }, "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.9.tgz", - "integrity": "sha512-qqGuFfbn4rUmyOB0u8CVISIp5FfJ5GAR3mBrZ9/TKndHakdnm6pY0L/fbLcpPnrzwCyyTEZl1nUcXAYHEWneTA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz", + "integrity": "sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==", "dev": true, "funding": [ { @@ -1898,11 +1881,11 @@ } ], "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.6.1", - "@csstools/css-tokenizer": "^2.2.4" + "@csstools/css-parser-algorithms": "^3.0.1", + "@csstools/css-tokenizer": "^3.0.1" } }, "node_modules/@csstools/selector-resolve-nested": { @@ -2021,9 +2004,9 @@ } }, "node_modules/@dual-bundle/import-meta-resolve": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", - "integrity": "sha512-ZKXyJeFAzcpKM2kk8ipoGIPUqx9BX52omTGnfwjJvxOCaZTM2wtDK7zN0aIgPRbT9XYAlha0HtmZ+XKteuh0Gw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", + "integrity": "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==", "dev": true, "funding": { "type": "github", @@ -2031,9 +2014,9 @@ } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", "cpu": [ "ppc64" ], @@ -2047,9 +2030,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", "cpu": [ "arm" ], @@ -2063,9 +2046,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", "cpu": [ "arm64" ], @@ -2079,9 +2062,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", "cpu": [ "x64" ], @@ -2095,9 +2078,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", "cpu": [ "arm64" ], @@ -2111,9 +2094,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", "cpu": [ "x64" ], @@ -2127,9 +2110,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", "cpu": [ "arm64" ], @@ -2143,9 +2126,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", "cpu": [ "x64" ], @@ -2159,9 +2142,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", "cpu": [ "arm" ], @@ -2175,9 +2158,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", "cpu": [ "arm64" ], @@ -2191,9 +2174,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", "cpu": [ "ia32" ], @@ -2207,9 +2190,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", "cpu": [ "loong64" ], @@ -2223,9 +2206,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", "cpu": [ "mips64el" ], @@ -2239,9 +2222,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", "cpu": [ "ppc64" ], @@ -2255,9 +2238,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", "cpu": [ "riscv64" ], @@ -2271,9 +2254,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", "cpu": [ "s390x" ], @@ -2287,9 +2270,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", "cpu": [ "x64" ], @@ -2303,9 +2286,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", "cpu": [ "x64" ], @@ -2319,9 +2302,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", "cpu": [ "x64" ], @@ -2335,9 +2318,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", "cpu": [ "x64" ], @@ -2351,9 +2334,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", "cpu": [ "arm64" ], @@ -2367,9 +2350,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", "cpu": [ "ia32" ], @@ -2383,9 +2366,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", "cpu": [ "x64" ], @@ -3161,9 +3144,9 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", @@ -3296,9 +3279,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.4.tgz", - "integrity": "sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.2.tgz", + "integrity": "sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==", "cpu": [ "arm" ], @@ -3309,9 +3292,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.4.tgz", - "integrity": "sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.2.tgz", + "integrity": "sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==", "cpu": [ "arm64" ], @@ -3322,9 +3305,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.4.tgz", - "integrity": "sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.2.tgz", + "integrity": "sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==", "cpu": [ "arm64" ], @@ -3335,9 +3318,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.4.tgz", - "integrity": "sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.2.tgz", + "integrity": "sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==", "cpu": [ "x64" ], @@ -3348,9 +3331,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.4.tgz", - "integrity": "sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.2.tgz", + "integrity": "sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==", "cpu": [ "arm" ], @@ -3361,9 +3344,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.4.tgz", - "integrity": "sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.2.tgz", + "integrity": "sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==", "cpu": [ "arm" ], @@ -3374,9 +3357,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.4.tgz", - "integrity": "sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.2.tgz", + "integrity": "sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==", "cpu": [ "arm64" ], @@ -3387,9 +3370,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.4.tgz", - "integrity": "sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.2.tgz", + "integrity": "sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==", "cpu": [ "arm64" ], @@ -3400,9 +3383,9 @@ ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.4.tgz", - "integrity": "sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.2.tgz", + "integrity": "sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==", "cpu": [ "ppc64" ], @@ -3413,9 +3396,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.4.tgz", - "integrity": "sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.2.tgz", + "integrity": "sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==", "cpu": [ "riscv64" ], @@ -3426,9 +3409,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.4.tgz", - "integrity": "sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.2.tgz", + "integrity": "sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==", "cpu": [ "s390x" ], @@ -3439,9 +3422,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.4.tgz", - "integrity": "sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.2.tgz", + "integrity": "sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==", "cpu": [ "x64" ], @@ -3452,9 +3435,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.4.tgz", - "integrity": "sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.2.tgz", + "integrity": "sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==", "cpu": [ "x64" ], @@ -3465,9 +3448,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.4.tgz", - "integrity": "sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz", + "integrity": "sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==", "cpu": [ "arm64" ], @@ -3478,9 +3461,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.4.tgz", - "integrity": "sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.2.tgz", + "integrity": "sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==", "cpu": [ "ia32" ], @@ -3491,9 +3474,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.4.tgz", - "integrity": "sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz", + "integrity": "sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==", "cpu": [ "x64" ], @@ -3503,6 +3486,12 @@ "win32" ] }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true + }, "node_modules/@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -3562,14 +3551,14 @@ } }, "node_modules/@tailwindcss/forms": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", - "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.8.tgz", + "integrity": "sha512-DJs7B7NPD0JH7BVvdHWNviWmunlFhuEkz7FyFxE4japOWYMLl9b1D6+Z9mivJJPWr6AEbmlPqgiFRyLwFB1SgQ==", "dependencies": { "mini-svg-data-uri": "^1.2.3" }, "peerDependencies": { - "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20" } }, "node_modules/@tokenizer/token": { @@ -3975,19 +3964,19 @@ "dev": true }, "node_modules/@vitejs/plugin-legacy": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.3.2.tgz", - "integrity": "sha512-8moCOrIMaZ/Rjln0Q6GsH6s8fAt1JOI3k8nmfX4tXUxE5KAExVctSyOBk+A25GClsdSWqIk2yaUthH3KJ2X4tg==", + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-legacy/-/plugin-legacy-5.4.2.tgz", + "integrity": "sha512-hlyyQL+wEIyOWdwsUKX+0g3kBU4AbHmVzHarLvVKiGGGqLIYjttMvvjk6zGY8RD9dab6QuFNhDoxg0YFhQ26xA==", "dev": true, "dependencies": { - "@babel/core": "^7.23.9", - "@babel/preset-env": "^7.23.9", - "browserslist": "^4.23.0", + "@babel/core": "^7.25.2", + "@babel/preset-env": "^7.25.3", + "browserslist": "^4.23.3", "browserslist-to-esbuild": "^2.1.1", - "core-js": "^3.36.0", - "magic-string": "^0.30.7", + "core-js": "^3.38.0", + "magic-string": "^0.30.11", "regenerator-runtime": "^0.14.1", - "systemjs": "^6.14.3" + "systemjs": "^6.15.1" }, "engines": { "node": "^18.0.0 || >=20.0.0" @@ -4001,9 +3990,9 @@ } }, "node_modules/@vitejs/plugin-vue": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.4.tgz", - "integrity": "sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.3.tgz", + "integrity": "sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==", "dev": true, "engines": { "node": "^18.0.0 || >=20.0.0" @@ -4014,49 +4003,49 @@ } }, "node_modules/@vue/compiler-core": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.25.tgz", - "integrity": "sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.1.tgz", + "integrity": "sha512-WdjF+NSgFYdWttHevHw5uaJFtKPalhmxhlu2uREj8cLP0uyKKIR60/JvSZNTp0x+NSd63iTiORQTx3+tt55NWQ==", "dependencies": { - "@babel/parser": "^7.24.4", - "@vue/shared": "3.4.25", + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.1", "entities": "^4.5.0", "estree-walker": "^2.0.2", "source-map-js": "^1.2.0" } }, "node_modules/@vue/compiler-dom": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.25.tgz", - "integrity": "sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.1.tgz", + "integrity": "sha512-Ao23fB1lINo18HLCbJVApvzd9OQe8MgmQSgyY5+umbWj2w92w9KykVmJ4Iv2US5nak3ixc2B+7Km7JTNhQ8kSQ==", "dependencies": { - "@vue/compiler-core": "3.4.25", - "@vue/shared": "3.4.25" + "@vue/compiler-core": "3.5.1", + "@vue/shared": "3.5.1" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.25.tgz", - "integrity": "sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==", - "dependencies": { - "@babel/parser": "^7.24.4", - "@vue/compiler-core": "3.4.25", - "@vue/compiler-dom": "3.4.25", - "@vue/compiler-ssr": "3.4.25", - "@vue/shared": "3.4.25", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.1.tgz", + "integrity": "sha512-DFizMNH8eDglLhlfwJ0+ciBsztaYe3fY/zcZjrqL1ljXvUw/UpC84M1d7HpBTCW68SNqZyIxrs1XWmf+73Y65w==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.1", + "@vue/compiler-dom": "3.5.1", + "@vue/compiler-ssr": "3.5.1", + "@vue/shared": "3.5.1", "estree-walker": "^2.0.2", - "magic-string": "^0.30.10", - "postcss": "^8.4.38", + "magic-string": "^0.30.11", + "postcss": "^8.4.44", "source-map-js": "^1.2.0" } }, "node_modules/@vue/compiler-ssr": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.25.tgz", - "integrity": "sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.1.tgz", + "integrity": "sha512-C1hpSHQgRM8bg+5XWWD7CkFaVpSn9wZHCLRd10AmxqrH17d4EMP6+XcZpwBOM7H1jeStU5naEapZZWX0kso1tQ==", "dependencies": { - "@vue/compiler-dom": "3.4.25", - "@vue/shared": "3.4.25" + "@vue/compiler-dom": "3.5.1", + "@vue/shared": "3.5.1" } }, "node_modules/@vue/reactivity": { @@ -4073,67 +4062,76 @@ "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" }, "node_modules/@vue/runtime-core": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.25.tgz", - "integrity": "sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.1.tgz", + "integrity": "sha512-Ce92CCholNRHR3ZtzpRp/7CDGIPFxQ7ElXt9iH91ilK5eOrUv3Z582NWJesuM3aYX71BujVG5/4ypUxigGNxjA==", "dependencies": { - "@vue/reactivity": "3.4.25", - "@vue/shared": "3.4.25" + "@vue/reactivity": "3.5.1", + "@vue/shared": "3.5.1" } }, "node_modules/@vue/runtime-core/node_modules/@vue/reactivity": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.25.tgz", - "integrity": "sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.1.tgz", + "integrity": "sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q==", "dependencies": { - "@vue/shared": "3.4.25" + "@vue/shared": "3.5.1" } }, "node_modules/@vue/runtime-dom": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.25.tgz", - "integrity": "sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.1.tgz", + "integrity": "sha512-B/fUJfBLp5PwE0EWNfBYnA4JUea8Yufb3wN8fN0/HzaqBdkiRHh4sFHOjWqIY8GS75gj//8VqeEqhcU6yUjIkA==", "dependencies": { - "@vue/runtime-core": "3.4.25", - "@vue/shared": "3.4.25", + "@vue/reactivity": "3.5.1", + "@vue/runtime-core": "3.5.1", + "@vue/shared": "3.5.1", "csstype": "^3.1.3" } }, + "node_modules/@vue/runtime-dom/node_modules/@vue/reactivity": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.1.tgz", + "integrity": "sha512-aFE1nMDfbG7V+U5vdOk/NXxH/WX78XuAfX59vWmCM7Ao4lieoc83RkzOAWun61sQXlzNZ4IgROovFBHg+Iz1+Q==", + "dependencies": { + "@vue/shared": "3.5.1" + } + }, "node_modules/@vue/server-renderer": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.25.tgz", - "integrity": "sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.1.tgz", + "integrity": "sha512-C5V/fjQTitgVaRNH5wCoHynaWysjZ+VH68drNsAvQYg4ArHsZUQNz0nHoEWRj41nzqkVn2RUlnWaEOTl2o1Ppg==", "dependencies": { - "@vue/compiler-ssr": "3.4.25", - "@vue/shared": "3.4.25" + "@vue/compiler-ssr": "3.5.1", + "@vue/shared": "3.5.1" }, "peerDependencies": { - "vue": "3.4.25" + "vue": "3.5.1" } }, "node_modules/@vue/shared": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.25.tgz", - "integrity": "sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==" + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.1.tgz", + "integrity": "sha512-NdcTRoO4KuW2RSFgpE2c+E/R/ZHaRzWPxAGxhmxZaaqLh6nYCXx7lc9a88ioqOCxCaV2SFJmujkxbUScW7dNsQ==" }, "node_modules/@vueuse/core": { - "version": "10.9.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.9.0.tgz", - "integrity": "sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-11.0.3.tgz", + "integrity": "sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==", "dependencies": { "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.9.0", - "@vueuse/shared": "10.9.0", - "vue-demi": ">=0.14.7" + "@vueuse/metadata": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", - "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -4156,28 +4154,28 @@ } }, "node_modules/@vueuse/metadata": { - "version": "10.9.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.9.0.tgz", - "integrity": "sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-11.0.3.tgz", + "integrity": "sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==", "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/shared": { - "version": "10.9.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.9.0.tgz", - "integrity": "sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-11.0.3.tgz", + "integrity": "sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==", "dependencies": { - "vue-demi": ">=0.14.7" + "vue-demi": ">=0.14.10" }, "funding": { "url": "https://github.com/sponsors/antfu" } }, "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.7.tgz", - "integrity": "sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==", + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", "hasInstallScript": true, "bin": { "vue-demi-fix": "bin/vue-demi-fix.js", @@ -4288,9 +4286,9 @@ } }, "node_modules/alpinejs": { - "version": "3.13.10", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.10.tgz", - "integrity": "sha512-86RB307VWICex0vG15Eq0x058cNNsvS57ohrjN6n/TJAVSFV+zXOK/E34nNHDHc6Poq+yTNCLqEzPqEkRBTMRQ==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.14.1.tgz", + "integrity": "sha512-ICar8UsnRZAYvv/fCNfNeKMXNoXGUfwHrjx7LqXd08zIP95G2d9bAOuaL97re+1mgt/HojqHsfdOLo/A5LuWgQ==", "dependencies": { "@vue/reactivity": "~3.1.1" } @@ -5042,9 +5040,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "dev": true, "funding": [ { @@ -5061,11 +5059,11 @@ } ], "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" }, "bin": { @@ -5118,9 +5116,9 @@ } }, "node_modules/axios": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", - "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", @@ -5232,13 +5230,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -5619,20 +5617,20 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", "dev": true, "funding": [ { @@ -5649,10 +5647,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" @@ -5950,9 +5948,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001612", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz", - "integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==", + "version": "1.0.30001655", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001655.tgz", + "integrity": "sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==", "dev": true, "funding": [ { @@ -6646,9 +6644,9 @@ } }, "node_modules/core-js": { - "version": "3.37.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.37.0.tgz", - "integrity": "sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==", + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.38.1.tgz", + "integrity": "sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==", "dev": true, "hasInstallScript": true, "funding": { @@ -6657,12 +6655,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.37.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.0.tgz", - "integrity": "sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==", + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", "dev": true, "dependencies": { - "browserslist": "^4.23.0" + "browserslist": "^4.23.3" }, "funding": { "type": "opencollective", @@ -7543,13 +7541,13 @@ "dev": true }, "node_modules/cypress": { - "version": "13.8.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.8.1.tgz", - "integrity": "sha512-Uk6ovhRbTg6FmXjeZW/TkbRM07KPtvM5gah1BIMp4Y2s+i/NMxgaLw0+PbYTOdw1+egE0FP3mWRiGcRkjjmhzA==", + "version": "13.14.2", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.14.2.tgz", + "integrity": "sha512-lsiQrN17vHMB2fnvxIrKLAjOr9bPwsNbPZNrWf99s4u+DVmCY6U+w7O3GGG9FvP4EUVYaDu+guWeNLiUzBrqvA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@cypress/request": "^3.0.0", + "@cypress/request": "^3.0.1", "@cypress/xvfb": "^1.2.4", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", @@ -7588,7 +7586,7 @@ "request-progress": "^3.0.0", "semver": "^7.5.3", "supports-color": "^8.1.1", - "tmp": "~0.2.1", + "tmp": "~0.2.3", "untildify": "^4.0.0", "yauzl": "^2.10.0" }, @@ -7818,9 +7816,9 @@ "dev": true }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -8404,9 +8402,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.749", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.749.tgz", - "integrity": "sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==", + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", + "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==", "dev": true }, "node_modules/emoji-regex": { @@ -8616,9 +8614,9 @@ "dev": true }, "node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", "dev": true, "hasInstallScript": true, "bin": { @@ -8628,29 +8626,29 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" } }, "node_modules/escalade": { @@ -8800,9 +8798,9 @@ } }, "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.9.0.tgz", + "integrity": "sha512-McVbYmwA3NEKwRQY5g4aWMdcZE5xZxV8i8l7CqJSrameuGSQJtSWaL/LxTEzSKKaCcOhlpDR8XEfYXWPrdo/ZQ==", "dev": true, "dependencies": { "debug": "^3.2.7" @@ -8826,26 +8824,27 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz", + "integrity": "sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==", "dev": true, "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.8", + "array.prototype.findlastindex": "^1.2.5", "array.prototype.flat": "^1.3.2", "array.prototype.flatmap": "^1.3.2", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", + "eslint-module-utils": "^2.9.0", + "hasown": "^2.0.2", + "is-core-module": "^2.15.1", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.0", "semver": "^6.3.1", "tsconfig-paths": "^3.15.0" }, @@ -8909,13 +8908,13 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", - "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", + "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.6" + "synckit": "^0.9.1" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -8939,9 +8938,9 @@ } }, "node_modules/eslint-plugin-vue": { - "version": "9.25.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.25.0.tgz", - "integrity": "sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==", + "version": "9.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.28.0.tgz", + "integrity": "sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", @@ -8949,8 +8948,8 @@ "natural-compare": "^1.4.0", "nth-check": "^2.1.1", "postcss-selector-parser": "^6.0.15", - "semver": "^7.6.0", - "vue-eslint-parser": "^9.4.2", + "semver": "^7.6.3", + "vue-eslint-parser": "^9.4.3", "xml-name-validator": "^4.0.0" }, "engines": { @@ -9776,9 +9775,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -10987,12 +10986,12 @@ } }, "node_modules/husky": { - "version": "9.0.11", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", - "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.5.tgz", + "integrity": "sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==", "dev": true, "bin": { - "husky": "bin.mjs" + "husky": "bin.js" }, "engines": { "node": ">=18" @@ -11033,9 +11032,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" @@ -11685,11 +11684,14 @@ } }, "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -12460,9 +12462,9 @@ } }, "node_modules/known-css-properties": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.30.0.tgz", - "integrity": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==", + "version": "0.34.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.34.0.tgz", + "integrity": "sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==", "dev": true }, "node_modules/latest-version": { @@ -13136,11 +13138,11 @@ } }, "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, "node_modules/make-dir": { @@ -13683,11 +13685,11 @@ "dev": true }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -14052,9 +14054,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, "node_modules/node.extend": { @@ -15882,9 +15884,9 @@ "dev": true }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -16018,9 +16020,9 @@ } }, "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "version": "8.4.45", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.45.tgz", + "integrity": "sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==", "funding": [ { "type": "opencollective", @@ -16037,7 +16039,7 @@ ], "dependencies": { "nanoid": "^3.3.7", - "picocolors": "^1.0.0", + "picocolors": "^1.0.1", "source-map-js": "^1.2.0" }, "engines": { @@ -16237,9 +16239,9 @@ } }, "node_modules/postcss-resolve-nested-selector": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", + "integrity": "sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==", "dev": true }, "node_modules/postcss-safe-parser": { @@ -16260,9 +16262,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.16", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -16389,9 +16391,9 @@ } }, "node_modules/prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -16416,9 +16418,9 @@ } }, "node_modules/prettier-plugin-tailwindcss": { - "version": "0.5.14", - "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.14.tgz", - "integrity": "sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==", + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.6.tgz", + "integrity": "sha512-OPva5S7WAsPLEsOuOWXATi13QrCKACCiIonFgIR6V4lYv4QLp++UXVhZSzRbZxXGimkQtQT86CC6fQqTOybGng==", "dev": true, "engines": { "node": ">=14.21.3" @@ -16435,6 +16437,7 @@ "prettier-plugin-import-sort": "*", "prettier-plugin-jsdoc": "*", "prettier-plugin-marko": "*", + "prettier-plugin-multiline-arrays": "*", "prettier-plugin-organize-attributes": "*", "prettier-plugin-organize-imports": "*", "prettier-plugin-sort-imports": "*", @@ -16472,6 +16475,9 @@ "prettier-plugin-marko": { "optional": true }, + "prettier-plugin-multiline-arrays": { + "optional": true + }, "prettier-plugin-organize-attributes": { "optional": true }, @@ -17626,9 +17632,9 @@ "dev": true }, "node_modules/rollup": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.16.4.tgz", - "integrity": "sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.2.tgz", + "integrity": "sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==", "dev": true, "dependencies": { "@types/estree": "1.0.5" @@ -17641,22 +17647,22 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.16.4", - "@rollup/rollup-android-arm64": "4.16.4", - "@rollup/rollup-darwin-arm64": "4.16.4", - "@rollup/rollup-darwin-x64": "4.16.4", - "@rollup/rollup-linux-arm-gnueabihf": "4.16.4", - "@rollup/rollup-linux-arm-musleabihf": "4.16.4", - "@rollup/rollup-linux-arm64-gnu": "4.16.4", - "@rollup/rollup-linux-arm64-musl": "4.16.4", - "@rollup/rollup-linux-powerpc64le-gnu": "4.16.4", - "@rollup/rollup-linux-riscv64-gnu": "4.16.4", - "@rollup/rollup-linux-s390x-gnu": "4.16.4", - "@rollup/rollup-linux-x64-gnu": "4.16.4", - "@rollup/rollup-linux-x64-musl": "4.16.4", - "@rollup/rollup-win32-arm64-msvc": "4.16.4", - "@rollup/rollup-win32-ia32-msvc": "4.16.4", - "@rollup/rollup-win32-x64-msvc": "4.16.4", + "@rollup/rollup-android-arm-eabi": "4.21.2", + "@rollup/rollup-android-arm64": "4.21.2", + "@rollup/rollup-darwin-arm64": "4.21.2", + "@rollup/rollup-darwin-x64": "4.21.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.21.2", + "@rollup/rollup-linux-arm-musleabihf": "4.21.2", + "@rollup/rollup-linux-arm64-gnu": "4.21.2", + "@rollup/rollup-linux-arm64-musl": "4.21.2", + "@rollup/rollup-linux-powerpc64le-gnu": "4.21.2", + "@rollup/rollup-linux-riscv64-gnu": "4.21.2", + "@rollup/rollup-linux-s390x-gnu": "4.21.2", + "@rollup/rollup-linux-x64-gnu": "4.21.2", + "@rollup/rollup-linux-x64-musl": "4.21.2", + "@rollup/rollup-win32-arm64-msvc": "4.21.2", + "@rollup/rollup-win32-ia32-msvc": "4.21.2", + "@rollup/rollup-win32-x64-msvc": "4.21.2", "fsevents": "~2.3.2" } }, @@ -17996,13 +18002,10 @@ "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" }, "node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -18037,24 +18040,6 @@ "semver": "bin/semver.js" } }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -18911,47 +18896,57 @@ } }, "node_modules/stylelint": { - "version": "16.4.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.4.0.tgz", - "integrity": "sha512-uSx7VMuXwLuYcNSIg+0/fFNv0WinsfLAqsVVy7h7p80clKOHiGE8pfY6UjqwylTHiJrRIahTl6a8FPxGezhWoA==", + "version": "16.9.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.9.0.tgz", + "integrity": "sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" + }, + { + "type": "github", + "url": "https://github.com/sponsors/stylelint" + } + ], "dependencies": { - "@csstools/css-parser-algorithms": "^2.6.1", - "@csstools/css-tokenizer": "^2.2.4", - "@csstools/media-query-list-parser": "^2.1.9", - "@csstools/selector-specificity": "^3.0.3", - "@dual-bundle/import-meta-resolve": "^4.0.0", + "@csstools/css-parser-algorithms": "^3.0.1", + "@csstools/css-tokenizer": "^3.0.1", + "@csstools/media-query-list-parser": "^3.0.1", + "@csstools/selector-specificity": "^4.0.0", + "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.2", "css-tree": "^2.3.1", - "debug": "^4.3.4", + "debug": "^4.3.6", "fast-glob": "^3.3.2", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^8.0.0", + "file-entry-cache": "^9.0.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", - "ignore": "^5.3.1", + "ignore": "^5.3.2", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.30.0", + "known-css-properties": "^0.34.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", - "micromatch": "^4.0.5", + "micromatch": "^4.0.8", "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.38", - "postcss-resolve-nested-selector": "^0.1.1", + "picocolors": "^1.0.1", + "postcss": "^8.4.41", + "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.0", - "postcss-selector-parser": "^6.0.16", + "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "strip-ansi": "^7.1.0", - "supports-hyperlinks": "^3.0.0", + "supports-hyperlinks": "^3.1.0", "svg-tags": "^1.0.0", "table": "^6.8.2", "write-file-atomic": "^5.0.1" @@ -18961,10 +18956,6 @@ }, "engines": { "node": ">=18.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" } }, "node_modules/stylelint-config-html": { @@ -18984,15 +18975,25 @@ } }, "node_modules/stylelint-config-recommended": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.0.tgz", - "integrity": "sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==", + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", + "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" + }, + { + "type": "github", + "url": "https://github.com/sponsors/stylelint" + } + ], "engines": { "node": ">=18.12.0" }, "peerDependencies": { - "stylelint": "^16.0.0" + "stylelint": "^16.1.0" } }, "node_modules/stylelint-config-recommended-vue": { @@ -19016,6 +19017,28 @@ "stylelint": ">=14.0.0" } }, + "node_modules/stylelint/node_modules/@csstools/selector-specificity": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-4.0.0.tgz", + "integrity": "sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.1.0" + } + }, "node_modules/stylelint/node_modules/ansi-regex": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", @@ -19074,28 +19097,28 @@ } }, "node_modules/stylelint/node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.1.0.tgz", + "integrity": "sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==", "dev": true, "dependencies": { - "flat-cache": "^4.0.0" + "flat-cache": "^5.0.0" }, "engines": { - "node": ">=16.0.0" + "node": ">=18" } }, "node_modules/stylelint/node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz", + "integrity": "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==", "dev": true, "dependencies": { - "flatted": "^3.2.9", + "flatted": "^3.3.1", "keyv": "^4.5.4" }, "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/stylelint/node_modules/is-plain-object": { @@ -19250,9 +19273,9 @@ } }, "node_modules/supports-hyperlinks": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", - "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", + "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", "dev": true, "dependencies": { "has-flag": "^4.0.0", @@ -19260,6 +19283,9 @@ }, "engines": { "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-hyperlinks/node_modules/has-flag": { @@ -19418,9 +19444,9 @@ "dev": true }, "node_modules/swiper": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.1.tgz", - "integrity": "sha512-jGmEA/fNz1lACIcY4/40ggm1Gcyv+EUivmgV/Jd2WFPsEJhbWXnRAwzZR8OPjkBLtDxmzcoYG/iiAMWfRs0YKQ==", + "version": "11.1.12", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.12.tgz", + "integrity": "sha512-PUkCToYAZMB4kP7z+YfPnkMHOMwMO71g8vUhz2o5INGIgIMb6Sb0XiP6cEJFsiFTd7FRDn5XCbg+KVKPDZqXLw==", "funding": [ { "type": "patreon", @@ -19442,9 +19468,9 @@ "dev": true }, "node_modules/synckit": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", - "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.1.tgz", + "integrity": "sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==", "dev": true, "dependencies": { "@pkgr/core": "^0.1.0", @@ -19458,9 +19484,9 @@ } }, "node_modules/systemjs": { - "version": "6.14.3", - "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.14.3.tgz", - "integrity": "sha512-hQv45irdhXudAOr8r6SVSpJSGtogdGZUbJBRKCE5nsIS7tsxxvnIHqT4IOPWj+P+HcSzeWzHlGCGpmhPDIKe+w==", + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/systemjs/-/systemjs-6.15.1.tgz", + "integrity": "sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==", "dev": true }, "node_modules/tabbable": { @@ -19557,9 +19583,9 @@ } }, "node_modules/tailwindcss": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", - "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.10.tgz", + "integrity": "sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", @@ -19888,7 +19914,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, "engines": { "node": ">=4" } @@ -20232,9 +20257,9 @@ "integrity": "sha512-ho6xe/y/uHIKVXsFtK+dJfRCD5KZqJCMYTCcXfuCwQHQbeQ83a7hVkxfRMTEIjZOSXw5SevOjnwJuZ5QgWEHiw==" }, "node_modules/typescript": { - "version": "5.4.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", - "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", "devOptional": true, "bin": { "tsc": "bin/tsc", @@ -20429,9 +20454,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", "dev": true, "funding": [ { @@ -20448,8 +20473,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -20750,14 +20775,14 @@ } }, "node_modules/vite": { - "version": "5.2.10", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.10.tgz", - "integrity": "sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==", + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.3.tgz", + "integrity": "sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==", "dev": true, "dependencies": { - "esbuild": "^0.20.1", - "postcss": "^8.4.38", - "rollup": "^4.13.0" + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" }, "bin": { "vite": "bin/vite.js" @@ -20776,6 +20801,7 @@ "less": "*", "lightningcss": "^1.21.0", "sass": "*", + "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.4.0" @@ -20793,6 +20819,9 @@ "sass": { "optional": true }, + "sass-embedded": { + "optional": true + }, "stylus": { "optional": true }, @@ -20973,12 +21002,12 @@ "dev": true }, "node_modules/vite-plugin-restart": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/vite-plugin-restart/-/vite-plugin-restart-0.4.0.tgz", - "integrity": "sha512-SXeyKQAzRFmEmEyGP2DjaTbx22D1K5MapyNiAP7Xa14UyFgNSDjZ86bfjWksA0pqn+bZyxnVLJpCiqDuG+tOcg==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/vite-plugin-restart/-/vite-plugin-restart-0.4.1.tgz", + "integrity": "sha512-MYhDFaa2HMoSavr/2pShj6toKVFso+zqF6FAdWGC8JSIrsNig+4giy9EzoSySgGRJvsnbwZXKdjAvn8ag8rUkA==", "dev": true, "dependencies": { - "micromatch": "^4.0.5" + "micromatch": "^4.0.7" }, "funding": { "url": "https://github.com/sponsors/antfu" @@ -20988,15 +21017,15 @@ } }, "node_modules/vue": { - "version": "3.4.25", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.25.tgz", - "integrity": "sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.1.tgz", + "integrity": "sha512-k4UNnbPOEskodSxMtv+B9GljdB0C9ubZDOmW6vnXVGIfMqmEsY2+ohasjGguhGkMkrcP/oOrbH0dSD41x5JQFw==", "dependencies": { - "@vue/compiler-dom": "3.4.25", - "@vue/compiler-sfc": "3.4.25", - "@vue/runtime-dom": "3.4.25", - "@vue/server-renderer": "3.4.25", - "@vue/shared": "3.4.25" + "@vue/compiler-dom": "3.5.1", + "@vue/compiler-sfc": "3.5.1", + "@vue/runtime-dom": "3.5.1", + "@vue/server-renderer": "3.5.1", + "@vue/shared": "3.5.1" }, "peerDependencies": { "typescript": "*" @@ -21022,9 +21051,9 @@ "integrity": "sha512-zmPniVzBKv0ie/BEXBR6Isi08hYSd6lS18b8VduG5BzZ2tv6bO/rlwISg+IpGY2XsqAFTXFdTC28YR+UPocnAw==" }, "node_modules/vue-eslint-parser": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz", - "integrity": "sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==", + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", "dev": true, "dependencies": { "debug": "^4.3.4", diff --git a/package.json b/package.json index 85e1a4f8..fcd1e9eb 100644 --- a/package.json +++ b/package.json @@ -9,14 +9,14 @@ "url": "https://davidhellmann.com" }, "dependencies": { - "@alpinejs/persist": "^3.13.5", + "@alpinejs/persist": "^3.14.1", "@popperjs/core": "^2.11.8", "@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/container-queries": "^0.1.1", - "@tailwindcss/forms": "^0.5.7", - "@vueuse/core": "^10.7.2", - "alpinejs": "^3.13.5", - "axios": "^1.6.7", + "@tailwindcss/forms": "^0.5.8", + "@vueuse/core": "^11.0.3", + "alpinejs": "^3.14.1", + "axios": "^1.7.7", "clipboard": "^2.0.11", "ferdi": "0.0.21", "focus-trap": "^7.5.4", @@ -24,13 +24,13 @@ "lightgallery": "^2.7.2", "lodash-es": "^4.17.21", "prismjs": "^1.29.0", - "swiper": "^11.0.5", + "swiper": "^11.1.12", "tailwindcss-fluid-type": "^2.0.1", "tailwindcss-theme-it": "^1.0.1", "typeface-jetbrains-mono": "^2.0.1", "typeface-lato": "^1.1.13", "typeface-merriweather": "^1.1.13", - "vue": "^3.4.15", + "vue": "^3.5.1", "vue-axios": "^3.5.2", "vue-confetti": "^2.3.0" }, @@ -40,42 +40,42 @@ "@types/lodash-es": "^4.17.12", "@typescript-eslint/eslint-plugin": "^7.7.1", "@typescript-eslint/parser": "^7.7.1", - "@vitejs/plugin-legacy": "^5.3.0", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/compiler-sfc": "^3.4.15", - "autoprefixer": "^10.4.17", - "cypress": "^13.6.3", + "@vitejs/plugin-legacy": "^5.4.2", + "@vitejs/plugin-vue": "^5.1.3", + "@vue/compiler-sfc": "^3.5.1", + "autoprefixer": "^10.4.20", + "cypress": "^13.14.2", "cypress-audit": "^1.1.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-alias": "^1.1.2", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-prettier": "^5.1.3", - "eslint-plugin-vue": "^9.20.1", - "husky": "^9.0.6", + "eslint-plugin-import": "^2.30.0", + "eslint-plugin-prettier": "^5.2.1", + "eslint-plugin-vue": "^9.28.0", + "husky": "^9.1.5", "npm-check": "^6.0.1", - "postcss": "^8.4.33", + "postcss": "^8.4.45", "postcss-import": "^16.0.0", "postcss-nesting": "^12.0.2", - "prettier": "^3.2.4", - "prettier-plugin-tailwindcss": "^0.5.11", + "prettier": "^3.3.3", + "prettier-plugin-tailwindcss": "^0.6.6", "prettier-plugin-twig-melody": "^0.4.6", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-critical": "^1.0.13", "rollup-plugin-visualizer": "^5.12.0", - "stylelint": "^16.2.0", - "stylelint-config-recommended": "^14.0.0", + "stylelint": "^16.9.0", + "stylelint-config-recommended": "^14.0.1", "stylelint-config-recommended-vue": "^1.5.0", - "tailwindcss": "^3.4.1", + "tailwindcss": "^3.4.10", "tailwindcss-debug-screens": "^2.2.1", - "typescript": "^5.3.3", - "vite": "^5.0.12", + "typescript": "^5.5.4", + "vite": "^5.4.3", "vite-plugin-compression": "^0.5.1", "vite-plugin-eslint": "^1.8.1", "vite-plugin-favicon2": "^1.1.5", "vite-plugin-manifest-sri": "^0.2.0", - "vite-plugin-restart": "^0.4.0", - "vue-eslint-parser": "^9.4.2" + "vite-plugin-restart": "^0.4.1", + "vue-eslint-parser": "^9.4.3" }, "scripts": { "dev": "vite", From fda40ce39464ad8360000ef209978115cdea7d5a Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:17:54 +0200 Subject: [PATCH 34/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20V?= =?UTF-8?q?ite=204.0.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 249 +++++++++++++++++++++++++++++--------------------- 2 files changed, 144 insertions(+), 107 deletions(-) diff --git a/composer.json b/composer.json index c9663154..f5563f3e 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "nystudio107/craft-emptycoalesce": "4.0.0", "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.50", - "nystudio107/craft-vite": "4.0.9", + "nystudio107/craft-vite": "4.0.10", "putyourlightson/craft-blitz": "4.19.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.8.1", diff --git a/composer.lock b/composer.lock index c1017a51..fcca9883 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "879d52f8aae6a742e5d199c1a1139687", + "content-hash": "623c768d94991ed34f6489be7488c164", "packages": [ { "name": "amphp/amp", @@ -951,11 +951,11 @@ }, { "name": "composer/ca-bundle", - "version": "1.5.0", + "version": "1.5.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", - "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/063d9aa8696582f5a41dffbbaf3c81024f0a604a", + "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a", "shasum": "" }, "require": { @@ -992,7 +992,7 @@ "ssl", "tls" ], - "time": "2024-03-15T14:00:32+00:00" + "time": "2024-07-08T15:28:20+00:00" }, { "name": "composer/class-map-generator", @@ -1037,35 +1037,48 @@ }, { "name": "composer/composer", - "version": "2.7.7", + "version": "2.7.9", + "source": { + "type": "git", + "url": "https://github.com/composer/composer.git", + "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/291942978f39435cf904d33739f98d7d4eca7b23", - "reference": "291942978f39435cf904d33739f98d7d4eca7b23", + "url": "https://api.github.com/repos/composer/composer/zipball/e30ccdd665828ae66eb1be78f056e39e1d5f55ab", + "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab", "shasum": "" }, "require": { - "composer/ca-bundle": "^1.0", + "composer/ca-bundle": "^1.5", "composer/class-map-generator": "^1.3.3", "composer/metadata-minifier": "^1.0", - "composer/pcre": "^2.1 || ^3.1", + "composer/pcre": "^2.2 || ^3.2", "composer/semver": "^3.3", "composer/spdx-licenses": "^1.5.7", "composer/xdebug-handler": "^2.0.2 || ^3.0.3", - "justinrainbow/json-schema": "^5.2.11", + "justinrainbow/json-schema": "^5.3", "php": "^7.2.5 || ^8.0", "psr/log": "^1.0 || ^2.0 || ^3.0", - "react/promise": "^2.8 || ^3", + "react/promise": "^3.2", "seld/jsonlint": "^1.4", "seld/phar-utils": "^1.2", "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.11 || ^6.0.11 || ^7", - "symfony/filesystem": "^5.4 || ^6.0 || ^7", - "symfony/finder": "^5.4 || ^6.0 || ^7", + "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", "symfony/polyfill-php73": "^1.24", "symfony/polyfill-php80": "^1.24", "symfony/polyfill-php81": "^1.24", - "symfony/process": "^5.4 || ^6.0 || ^7" + "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpstan/phpstan-symfony": "^1.4.0", + "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" }, "suggest": { "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", @@ -1091,6 +1104,7 @@ "Composer\\": "src/Composer/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -1113,7 +1127,27 @@ "dependency", "package" ], - "time": "2024-06-10T20:11:12+00:00" + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.7.9" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-04T12:43:28+00:00" }, { "name": "composer/metadata-minifier", @@ -1157,20 +1191,28 @@ }, { "name": "composer/pcre", - "version": "3.1.4", + "version": "3.3.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24", - "reference": "04229f163664973f68f38f6f73d917799168ef24", + "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", "shasum": "" }, "require": { "php": "^7.4 || ^8.0" }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, "type": "library", "extra": { "branch-alias": { "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] } }, "autoload": { @@ -1195,15 +1237,15 @@ "regex", "regular expression" ], - "time": "2024-05-27T13:40:54+00:00" + "time": "2024-08-27T18:44:43+00:00" }, { "name": "composer/semver", - "version": "3.4.0", + "version": "3.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6", + "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6", "shasum": "" }, "require": { @@ -1247,7 +1289,7 @@ "validation", "versioning" ], - "time": "2023-08-31T09:50:34+00:00" + "time": "2024-07-12T11:35:52+00:00" }, { "name": "composer/spdx-licenses", @@ -2650,17 +2692,17 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.8.1", + "version": "7.9.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.1", - "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -2740,15 +2782,15 @@ "rest", "web service" ], - "time": "2023-12-03T20:35:24+00:00" + "time": "2024-07-24T11:22:20+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.2", + "version": "2.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", "shasum": "" }, "require": { @@ -2795,15 +2837,15 @@ "keywords": [ "promise" ], - "time": "2023-12-03T20:19:20+00:00" + "time": "2024-07-18T10:29:17+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.2", + "version": "2.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", "shasum": "" }, "require": { @@ -2882,7 +2924,7 @@ "uri", "url" ], - "time": "2023-12-03T20:05:35+00:00" + "time": "2024-07-18T11:15:46+00:00" }, { "name": "illuminate/collections", @@ -3068,25 +3110,20 @@ }, { "name": "justinrainbow/json-schema", - "version": "v5.2.13", + "version": "5.3.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", - "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "bin": [ "bin/validate-json" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.0.x-dev" - } - }, "autoload": { "psr-4": { "JsonSchema\\": "src/JsonSchema/" @@ -3119,7 +3156,7 @@ "json", "schema" ], - "time": "2023-09-26T02:20:38+00:00" + "time": "2024-07-06T21:00:26+00:00" }, { "name": "kelunik/certificate", @@ -3945,11 +3982,11 @@ }, { "name": "nystudio107/craft-plugin-vite", - "version": "4.0.11", + "version": "4.0.12", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/7eefbafeb07df455daecf7c16961fd5a47e55d29", - "reference": "7eefbafeb07df455daecf7c16961fd5a47e55d29", + "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/ddb7acea4506837928e19cd3e46e20f7ba5689d3", + "reference": "ddb7acea4506837928e19cd3e46e20f7ba5689d3", "shasum": "" }, "require": { @@ -3980,7 +4017,7 @@ "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v4/README.md", "issues": "https://github.com/nystudio107/craft-plugin-vite/issues" }, - "time": "2024-06-13T03:40:36+00:00" + "time": "2024-08-14T02:01:17+00:00" }, { "name": "nystudio107/craft-scripts", @@ -4089,16 +4126,16 @@ }, { "name": "nystudio107/craft-vite", - "version": "4.0.9", + "version": "4.0.10", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/de42712a3c68454c4b25a0d110b95eb6f7020993", - "reference": "de42712a3c68454c4b25a0d110b95eb6f7020993", + "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/a9069abffb8aafdb5245bd0b1ce8ef27845bd683", + "reference": "a9069abffb8aafdb5245bd0b1ce8ef27845bd683", "shasum": "" }, "require": { "craftcms/cms": "^4.0.0", - "nystudio107/craft-plugin-vite": "^4.0.10" + "nystudio107/craft-plugin-vite": "^4.0.12" }, "type": "craft-plugin", "extra": { @@ -4134,7 +4171,7 @@ "issues": "https://nystudio107.com/plugins/vite/support", "source": "https://github.com/nystudio107/craft-vite" }, - "time": "2024-03-02T05:11:19+00:00" + "time": "2024-08-14T02:04:28+00:00" }, { "name": "oscarotero/html-parser", @@ -4476,11 +4513,11 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.29.1", + "version": "1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4", - "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/5ceb0e384997db59f38774bf79c2a6134252c08f", + "reference": "5ceb0e384997db59f38774bf79c2a6134252c08f", "shasum": "" }, "require": { @@ -4498,7 +4535,7 @@ "MIT" ], "description": "PHPDoc parser with support for nullable, intersection and generic types", - "time": "2024-05-31T08:52:43+00:00" + "time": "2024-08-29T09:54:52+00:00" }, { "name": "pixelandtonic/imagine", @@ -4807,11 +4844,11 @@ }, { "name": "psr/log", - "version": "3.0.0", + "version": "3.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e", + "reference": "79dff0b268932c640297f5208d6298f71855c03e", "shasum": "" }, "require": { @@ -4844,7 +4881,7 @@ "psr", "psr-3" ], - "time": "2021-07-14T16:46:02+00:00" + "time": "2024-08-21T13:31:24+00:00" }, { "name": "psr/simple-cache", @@ -5379,11 +5416,11 @@ }, { "name": "seld/jsonlint", - "version": "1.10.2", + "version": "1.11.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259", - "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", "shasum": "" }, "require": { @@ -5415,7 +5452,7 @@ "parser", "validator" ], - "time": "2024-02-07T12:57:50+00:00" + "time": "2024-07-11T14:55:45+00:00" }, { "name": "seld/phar-utils", @@ -5661,11 +5698,11 @@ }, { "name": "symfony/console", - "version": "v6.4.9", + "version": "v6.4.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9", - "reference": "6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9", + "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998", + "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998", "shasum": "" }, "require": { @@ -5715,7 +5752,7 @@ "console", "terminal" ], - "time": "2024-06-28T09:49:33+00:00" + "time": "2024-08-15T22:48:29+00:00" }, { "name": "symfony/deprecation-contracts", @@ -5903,11 +5940,11 @@ }, { "name": "symfony/finder", - "version": "v7.1.1", + "version": "v7.1.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6", - "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6", + "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823", + "reference": "d95bbf319f7d052082fb7af147e0f835a695e823", "shasum": "" }, "require": { @@ -5937,15 +5974,15 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", - "time": "2024-05-31T14:57:53+00:00" + "time": "2024-08-13T14:28:19+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.9", + "version": "v6.4.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/6e9db0025db565bcf8f1d46ed734b549e51e6045", - "reference": "6e9db0025db565bcf8f1d46ed734b549e51e6045", + "url": "https://api.github.com/repos/symfony/http-client/zipball/4c92046bb788648ff1098cc66da69aa7eac8cb65", + "reference": "4c92046bb788648ff1098cc66da69aa7eac8cb65", "shasum": "" }, "require": { @@ -5992,7 +6029,7 @@ "keywords": [ "http" ], - "time": "2024-06-28T07:59:05+00:00" + "time": "2024-08-26T06:30:21+00:00" }, { "name": "symfony/http-client-contracts", @@ -6102,11 +6139,11 @@ }, { "name": "symfony/mime", - "version": "v7.1.2", + "version": "v7.1.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc", - "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc", + "url": "https://api.github.com/repos/symfony/mime/zipball/ccaa6c2503db867f472a587291e764d6a1e58758", + "reference": "ccaa6c2503db867f472a587291e764d6a1e58758", "shasum": "" }, "require": { @@ -6149,7 +6186,7 @@ "mime", "mime-type" ], - "time": "2024-06-28T10:03:55+00:00" + "time": "2024-08-13T14:28:19+00:00" }, { "name": "symfony/polyfill-ctype", @@ -6710,11 +6747,11 @@ }, { "name": "symfony/process", - "version": "v7.1.1", + "version": "v7.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028", - "reference": "febf90124323a093c7ee06fdb30e765ca3c20028", + "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca", + "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca", "shasum": "" }, "require": { @@ -6744,7 +6781,7 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "time": "2024-05-31T14:57:53+00:00" + "time": "2024-07-26T12:44:47+00:00" }, { "name": "symfony/service-contracts", @@ -6808,11 +6845,11 @@ }, { "name": "symfony/string", - "version": "v7.1.2", + "version": "v7.1.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/14221089ac66cf82e3cf3d1c1da65de305587ff8", - "reference": "14221089ac66cf82e3cf3d1c1da65de305587ff8", + "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b", + "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b", "shasum": "" }, "require": { @@ -6860,15 +6897,15 @@ "utf-8", "utf8" ], - "time": "2024-06-28T09:27:18+00:00" + "time": "2024-08-12T09:59:40+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.4.40", + "version": "v5.4.43", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af8868a6e9d6082dfca11f1a1f205ae93a8b6d93", - "reference": "af8868a6e9d6082dfca11f1a1f205ae93a8b6d93", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef", + "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef", "shasum": "" }, "require": { @@ -6918,15 +6955,15 @@ "debug", "dump" ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-08-30T16:01:46+00:00" }, { "name": "symfony/yaml", - "version": "v5.4.40", + "version": "v5.4.43", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/81cad0ceab3d61fe14fe941ff18a230ac9c80f83", - "reference": "81cad0ceab3d61fe14fe941ff18a230ac9c80f83", + "url": "https://api.github.com/repos/symfony/yaml/zipball/62f96e1cfd4cf518882a36bfedcf1fe4093c1299", + "reference": "62f96e1cfd4cf518882a36bfedcf1fe4093c1299", "shasum": "" }, "require": { @@ -6967,7 +7004,7 @@ ], "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-08-11T17:40:32+00:00" }, { "name": "theiconic/name-parser", @@ -7789,11 +7826,11 @@ }, { "name": "yiisoft/yii2", - "version": "2.0.50", + "version": "2.0.51", "dist": { "type": "zip", - "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/a90b6638cce84e78ed8f681a5cad4a14c76464b4", - "reference": "a90b6638cce84e78ed8f681a5cad4a14c76464b4", + "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/ea1f112f4dc9a9824e77b788019e2d53325d823c", + "reference": "ea1f112f4dc9a9824e77b788019e2d53325d823c", "shasum": "" }, "require": { @@ -7880,7 +7917,7 @@ "framework", "yii2" ], - "time": "2024-05-30T17:23:31+00:00" + "time": "2024-07-18T19:50:00+00:00" }, { "name": "yiisoft/yii2-composer", From 75a01607bee0b5c755f58ebad1c2cbd2af751d3d Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:20:00 +0200 Subject: [PATCH 35/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20S?= =?UTF-8?q?prig=202.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 28 ++++++++++++++-------------- config/project/project.yaml | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/composer.json b/composer.json index f5563f3e..2b73d33c 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "nystudio107/craft-vite": "4.0.10", "putyourlightson/craft-blitz": "4.19.0", "putyourlightson/craft-elements-panel": "2.0.0", - "putyourlightson/craft-sprig": "2.8.1", + "putyourlightson/craft-sprig": "2.13.0", "spacecatninja/imager-x": "4.4.1", "verbb/hyper": "1.1.32", "verbb/navigation": "2.0.28", diff --git a/composer.lock b/composer.lock index fcca9883..92107c21 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "623c768d94991ed34f6489be7488c164", + "content-hash": "c720f76280769297ccee38559df942fb", "packages": [ { "name": "amphp/amp", @@ -3838,11 +3838,11 @@ }, { "name": "nystudio107/craft-code-editor", - "version": "1.0.19", + "version": "1.0.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/a793406e62cd6c7d8e25ac5e0fb2208b4206815b", - "reference": "a793406e62cd6c7d8e25ac5e0fb2208b4206815b", + "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/4983704849f2c85ee7fc7d89145c074e770a00c8", + "reference": "4983704849f2c85ee7fc7d89145c074e770a00c8", "shasum": "" }, "require": { @@ -3880,7 +3880,7 @@ "markdown", "twig" ], - "time": "2024-04-15T16:35:48+00:00" + "time": "2024-08-22T02:10:56+00:00" }, { "name": "nystudio107/craft-code-field", @@ -5049,18 +5049,18 @@ }, { "name": "putyourlightson/craft-sprig", - "version": "2.8.1", + "version": "2.13.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/5c20473847cc344d14116145a2b85491e1a2d0f5", - "reference": "5c20473847cc344d14116145a2b85491e1a2d0f5", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/50de7c4c9132317e443318c781daa60111fc03ba", + "reference": "50de7c4c9132317e443318c781daa60111fc03ba", "shasum": "" }, "require": { "craftcms/cms": "^4.0", "nystudio107/craft-code-editor": "^1.0.0", "php": "^8.0.2", - "putyourlightson/craft-sprig-core": "^2.7.1" + "putyourlightson/craft-sprig-core": "^2.12.0" }, "type": "craft-plugin", "extra": { @@ -5086,15 +5086,15 @@ "source": "https://github.com/putyourlightson/craft-sprig", "issues": "https://github.com/putyourlightson/craft-sprig/issues" }, - "time": "2024-04-21T14:02:33+00:00" + "time": "2024-08-29T11:35:06+00:00" }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.7.4", + "version": "2.12.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/2de07775abe6f9f63358e2ac25fd3c30bca2e5f3", - "reference": "2de07775abe6f9f63358e2ac25fd3c30bca2e5f3", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/513f544110cabc41b28dfad2f31ca6bb6f77a27f", + "reference": "513f544110cabc41b28dfad2f31ca6bb6f77a27f", "shasum": "" }, "require": { @@ -5116,7 +5116,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2024-05-15T20:28:13+00:00" + "time": "2024-08-29T11:34:07+00:00" }, { "name": "ralouphie/getallheaders", diff --git a/config/project/project.yaml b/config/project/project.yaml index 7a04c981..6cc2908a 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1713561240 +dateModified: 1725477497 elementSources: craft\elements\Asset: - @@ -278,7 +278,7 @@ plugins: enabled: true schemaVersion: 1.0.0 system: - edition: solo + edition: pro live: true name: Baukasten retryDuration: null From d143daf20bd1190f944b7427c29229076649cfcd Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:21:06 +0200 Subject: [PATCH 36/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(cms):=204.12?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 54 ++++++++++++++++++++++++++++----------------------- 2 files changed, 31 insertions(+), 25 deletions(-) diff --git a/composer.json b/composer.json index 2b73d33c..f0945884 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "3.8.3", - "craftcms/cms": "4.10.4", + "craftcms/cms": "4.12.0", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", "mmikkel/cp-field-inspect": "^1.4.4", diff --git a/composer.lock b/composer.lock index 92107c21..21e29e02 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c720f76280769297ccee38559df942fb", + "content-hash": "6cb3f6d2b0eb2aba2276b177329cba4d", "packages": [ { "name": "amphp/amp", @@ -1432,11 +1432,11 @@ }, { "name": "craftcms/cms", - "version": "4.10.4", + "version": "4.12.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/3c6df36faf3d0592795c0817fe871dc7bf5004fa", - "reference": "3c6df36faf3d0592795c0817fe871dc7bf5004fa", + "url": "https://api.github.com/repos/craftcms/cms/zipball/b56c3d877633016f64ab1d123bc684886a21a12d", + "reference": "b56c3d877633016f64ab1d123bc684886a21a12d", "shasum": "" }, "require": { @@ -1446,7 +1446,7 @@ "craftcms/server-check": "~2.1.2", "creocoder/yii2-nested-sets": "~0.9.0", "elvanto/litemoji": "~4.3.0", - "enshrined/svg-sanitize": "~0.16.0", + "enshrined/svg-sanitize": "~0.19.0", "ext-bcmath": "*", "ext-curl": "*", "ext-dom": "*", @@ -1470,11 +1470,11 @@ "symfony/var-dumper": "^5.0|^6.0", "symfony/yaml": "^5.2.3", "theiconic/name-parser": "^1.2", - "twig/twig": "~3.8.0", + "twig/twig": "~3.12.0", "voku/stringy": "^6.4.0", "webonyx/graphql-php": "~14.11.5", - "yiisoft/yii2": "~2.0.50", - "yiisoft/yii2-debug": "~2.1.22.0", + "yiisoft/yii2": "~2.0.51.0", + "yiisoft/yii2-debug": "~2.1.25.0", "yiisoft/yii2-queue": "~2.3.2", "yiisoft/yii2-symfonymailer": "^2.0.0" }, @@ -1524,7 +1524,7 @@ "docs": "https://craftcms.com/docs/4.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-07-02T16:27:09+00:00" + "time": "2024-09-03T16:47:34+00:00" }, { "name": "craftcms/html-field", @@ -2199,17 +2199,16 @@ }, { "name": "enshrined/svg-sanitize", - "version": "0.16.0", + "version": "0.19.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/239e257605e2141265b429e40987b2ee51bba4b4", - "reference": "239e257605e2141265b429e40987b2ee51bba4b4", + "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/e95cd17be68e45f523cbfb0fe50cdd891b0cf20e", + "reference": "e95cd17be68e45f523cbfb0fe50cdd891b0cf20e", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", - "ezyang/htmlpurifier": "^4.16", "php": "^5.6 || ^7.0 || ^8.0" }, "type": "library", @@ -2228,7 +2227,7 @@ } ], "description": "An SVG sanitizer for PHP", - "time": "2023-03-20T10:51:12+00:00" + "time": "2024-06-18T10:27:15+00:00" }, { "name": "ezyang/htmlpurifier", @@ -7110,21 +7109,28 @@ }, { "name": "twig/twig", - "version": "v3.8.0", + "version": "v3.12.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/4d19472d4ac1838e0b1f0e029ce1fa4040eb34ea", + "reference": "4d19472d4ac1838e0b1f0e029ce1fa4040eb34ea", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.0.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php80": "^1.22" + "symfony/polyfill-php81": "^1.29" }, "type": "library", "autoload": { + "files": [ + "src/Resources/core.php", + "src/Resources/debug.php", + "src/Resources/escaper.php", + "src/Resources/string_loader.php" + ], "psr-4": { "Twig\\": "src/" } @@ -7154,7 +7160,7 @@ "keywords": [ "templating" ], - "time": "2023-11-21T18:54:41+00:00" + "time": "2024-08-29T09:51:12+00:00" }, { "name": "verbb/base", @@ -7966,11 +7972,11 @@ }, { "name": "yiisoft/yii2-debug", - "version": "2.1.22", + "version": "2.1.25", "dist": { "type": "zip", - "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/c0fa388c56b64edfb92987fdcc37d7a0243170d7", - "reference": "c0fa388c56b64edfb92987fdcc37d7a0243170d7", + "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/4d011b9bfc83bde71cde43c9f6837f5a74685ea7", + "reference": "4d011b9bfc83bde71cde43c9f6837f5a74685ea7", "shasum": "" }, "require": { @@ -8019,7 +8025,7 @@ "debugger", "yii2" ], - "time": "2022-11-18T17:29:27+00:00" + "time": "2023-09-26T15:50:00+00:00" }, { "name": "yiisoft/yii2-queue", From 76640184e9d62d50ec395bc700ebc3b0d1ae056c Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:22:34 +0200 Subject: [PATCH 37/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20B?= =?UTF-8?q?litz=204.23.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 22 +++++++++++----------- config/project/project.yaml | 4 ++-- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/composer.json b/composer.json index f0945884..12c58b07 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "nystudio107/craft-scripts": "^1.2.13", "nystudio107/craft-seomatic": "4.0.50", "nystudio107/craft-vite": "4.0.10", - "putyourlightson/craft-blitz": "4.19.0", + "putyourlightson/craft-blitz": "4.23.0", "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.13.0", "spacecatninja/imager-x": "4.4.1", diff --git a/composer.lock b/composer.lock index 21e29e02..da282a03 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6cb3f6d2b0eb2aba2276b177329cba4d", + "content-hash": "b0057d012aaba56d93e9bafd2aaa6a92", "packages": [ { "name": "amphp/amp", @@ -4461,11 +4461,11 @@ }, { "name": "phpoption/phpoption", - "version": "1.9.2", + "version": "1.9.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", - "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", "shasum": "" }, "require": { @@ -4475,7 +4475,7 @@ "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": true + "forward-command": false }, "branch-alias": { "dev-master": "1.9-dev" @@ -4508,7 +4508,7 @@ "php", "type" ], - "time": "2023-11-12T21:59:55+00:00" + "time": "2024-07-20T21:41:07+00:00" }, { "name": "phpstan/phpdoc-parser", @@ -4926,17 +4926,17 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.19.0", + "version": "4.23.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/24c665d0e6b04aaa1c10e70b4e37b87e9f878880", - "reference": "24c665d0e6b04aaa1c10e70b4e37b87e9f878880", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1c5289f4281e8b905cbfced538b31fa1803cf361", + "reference": "1c5289f4281e8b905cbfced538b31fa1803cf361", "shasum": "" }, "require": { "amphp/http-client": "^4.0", "amphp/parallel": "^1.0", - "craftcms/cms": "^4.4.7", + "craftcms/cms": "^4.5.11", "cypresslab/gitelephant": "^4.0", "php": "^8.0.2", "putyourlightson/craft-blitz-hints": "^1.2.2", @@ -4975,7 +4975,7 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-07-04T10:10:02+00:00" + "time": "2024-08-29T06:03:54+00:00" }, { "name": "putyourlightson/craft-blitz-hints", diff --git a/config/project/project.yaml b/config/project/project.yaml index 6cc2908a..5b8974e7 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1725477497 +dateModified: 1725477749 elementSources: craft\elements\Asset: - @@ -171,7 +171,7 @@ plugins: edition: standard enabled: true licenseKey: $PLUGIN_BLITZ - schemaVersion: 4.13.0 + schemaVersion: 4.23.0 settings: integrations: - putyourlightson\blitz\drivers\integrations\CommerceIntegration From d97001678ced5c8c71022f06269f15d84171cd6c Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:23:33 +0200 Subject: [PATCH 38/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20C?= =?UTF-8?q?KEditor=203.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 12c58b07..0ec06d67 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "require": { - "craftcms/ckeditor": "3.8.3", + "craftcms/ckeditor": "3.9.0", "craftcms/cms": "4.12.0", "dodecastudio/craft-blurhash": "3.0.0", "doublesecretagency/craft-cpcss": "2.6.0", diff --git a/composer.lock b/composer.lock index da282a03..676e901c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b0057d012aaba56d93e9bafd2aaa6a92", + "content-hash": "87b452c1345f92cbcfa03af43fdf16b9", "packages": [ { "name": "amphp/amp", @@ -1380,11 +1380,11 @@ }, { "name": "craftcms/ckeditor", - "version": "3.8.3", + "version": "3.9.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/2dada986452c8a403c3ca652e87fe3a440fe9bf5", - "reference": "2dada986452c8a403c3ca652e87fe3a440fe9bf5", + "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/ae2d92031a378c98d0e5d9bebd5d87b1cefded4e", + "reference": "ae2d92031a378c98d0e5d9bebd5d87b1cefded4e", "shasum": "" }, "require": { @@ -1428,7 +1428,7 @@ "docs": "https://github.com/craftcms/ckeditor/blob/master/README.md", "rss": "https://github.com/craftcms/ckeditor/commits/master.atom" }, - "time": "2024-03-28T19:52:16+00:00" + "time": "2024-08-15T15:03:38+00:00" }, { "name": "craftcms/cms", From cf58ec2d313728ff0bb0b829282f96ec8135cc5d Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:26:09 +0200 Subject: [PATCH 39/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20H?= =?UTF-8?q?yper=201.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 0ec06d67..287d2adc 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "putyourlightson/craft-elements-panel": "2.0.0", "putyourlightson/craft-sprig": "2.13.0", "spacecatninja/imager-x": "4.4.1", - "verbb/hyper": "1.1.32", + "verbb/hyper": "1.2.1", "verbb/navigation": "2.0.28", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" diff --git a/composer.lock b/composer.lock index 676e901c..f7dba281 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "87b452c1345f92cbcfa03af43fdf16b9", + "content-hash": "307ffd586c1a7288594b0659eba914af", "packages": [ { "name": "amphp/amp", @@ -2143,11 +2143,11 @@ }, { "name": "embed/embed", - "version": "v4.4.11", + "version": "v4.4.12", "dist": { "type": "zip", - "url": "https://api.github.com/repos/oscarotero/Embed/zipball/09a60be4f14fc60d063a8dba22594f7b43765958", - "reference": "09a60be4f14fc60d063a8dba22594f7b43765958", + "url": "https://api.github.com/repos/oscarotero/Embed/zipball/b0e1c0496e3707794e96d4eef53ffffd538b850a", + "reference": "b0e1c0496e3707794e96d4eef53ffffd538b850a", "shasum": "" }, "require": { @@ -2195,7 +2195,7 @@ "opengraph", "twitter cards" ], - "time": "2024-06-10T16:01:33+00:00" + "time": "2024-07-24T14:08:11+00:00" }, { "name": "enshrined/svg-sanitize", @@ -7195,11 +7195,11 @@ }, { "name": "verbb/hyper", - "version": "1.1.32", + "version": "1.2.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/bf90236521cdc41e3b271c06afc2998327b0ba1a", - "reference": "bf90236521cdc41e3b271c06afc2998327b0ba1a", + "url": "https://api.github.com/repos/verbb/hyper/zipball/18ce0a3585ba5e4f7e0e407068d2ff275838ce12", + "reference": "18ce0a3585ba5e4f7e0e407068d2ff275838ce12", "shasum": "" }, "require": { @@ -7245,7 +7245,7 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-06-15T04:52:50+00:00" + "time": "2024-08-08T05:20:16+00:00" }, { "name": "verbb/navigation", From 0b4dd31f75a37289146b6412baa190f9b841828f Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:27:27 +0200 Subject: [PATCH 40/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20N?= =?UTF-8?q?avigation=202.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 287d2adc..ca9ba9bf 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "putyourlightson/craft-sprig": "2.13.0", "spacecatninja/imager-x": "4.4.1", "verbb/hyper": "1.2.1", - "verbb/navigation": "2.0.28", + "verbb/navigation": "2.1.0", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" }, diff --git a/composer.lock b/composer.lock index f7dba281..cfb5d3b7 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "307ffd586c1a7288594b0659eba914af", + "content-hash": "b1f4c46db4ab23c101224ffa22182be1", "packages": [ { "name": "amphp/amp", @@ -7249,15 +7249,15 @@ }, { "name": "verbb/navigation", - "version": "2.0.28", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/navigation/zipball/9ada688f7ef323028aa1c14ecd7838b7ad4d5b4f", - "reference": "9ada688f7ef323028aa1c14ecd7838b7ad4d5b4f", + "url": "https://api.github.com/repos/verbb/navigation/zipball/278fd2cb7f6bea116ab44d84d06bac251df83f7e", + "reference": "278fd2cb7f6bea116ab44d84d06bac251df83f7e", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", + "craftcms/cms": "^4.5.0", "php": "^8.0.2", "verbb/base": "^2.0.0" }, @@ -7298,7 +7298,7 @@ "docs": "https://github.com/verbb/navigation", "rss": "https://github.com/verbb/navigation/commits/v2.atom" }, - "time": "2024-06-16T01:20:06+00:00" + "time": "2024-07-21T04:59:04+00:00" }, { "name": "vlucas/phpdotenv", From 4703ea4ae9165612ee5c52b17d5d984a27b093ad Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:30:36 +0200 Subject: [PATCH 41/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade(plugin):=20S?= =?UTF-8?q?EOmatic=204.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 +++++++++------- composer.json | 2 +- composer.lock | 10 +++++----- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f6ab1a9..6b6c7993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,16 +8,18 @@ - formie ### updated -- (cms): CraftCMS (4.10.4) -- (plugin): SEOmatic (4.0.50) +- (cms): CraftCMS (4.12.0) +- (plugin): SEOmatic (4.1.2) - (plugin): Image Resizer (3.0.11) - (plugin): Formie (2.1.3) -- (plugin): Blitz (4.19.0) +- (plugin): Blitz (4.23.0) - (plugin): ImagerX (4.4.1) -- (plugin): Navigation (2.0.28) -- (plugin): Hyper (1.1.32) -- (plugin): Vite (4.0.8) -- (plugin): CKEditor (3.7.1) +- (plugin): Navigation (2.1.0) +- (plugin): Hyper (1.2.1) +- (plugin): Vite (4.0.10) +- (plugin): Sprig (2.13.0) +- (plugin): CKEditor (3.9.0) +- (npm): Packages - (waypoints): Better waypoint target selection ### fixed diff --git a/composer.json b/composer.json index ca9ba9bf..ca5e944e 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "nystudio107/craft-code-field": "4.0.12", "nystudio107/craft-emptycoalesce": "4.0.0", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.0.50", + "nystudio107/craft-seomatic": "4.1.2", "nystudio107/craft-vite": "4.0.10", "putyourlightson/craft-blitz": "4.23.0", "putyourlightson/craft-elements-panel": "2.0.0", diff --git a/composer.lock b/composer.lock index cfb5d3b7..7862c843 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b1f4c46db4ab23c101224ffa22182be1", + "content-hash": "6b23234bb9d643b81189c5a71beff540", "packages": [ { "name": "amphp/amp", @@ -4065,11 +4065,11 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.0.50", + "version": "4.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/ecf8fb421ae1915f85e93132942d09dd80e31b2c", - "reference": "ecf8fb421ae1915f85e93132942d09dd80e31b2c", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/3a38942088d61c2b49267586ca4257b96cdf14d9", + "reference": "3a38942088d61c2b49267586ca4257b96cdf14d9", "shasum": "" }, "require": { @@ -4121,7 +4121,7 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2024-06-13T22:57:25+00:00" + "time": "2024-08-15T15:36:03+00:00" }, { "name": "nystudio107/craft-vite", From ca7861b29b19394c6bd72f546febf969dd722117 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:39:33 +0200 Subject: [PATCH 42/45] =?UTF-8?q?=F0=9F=8E=A8=20chore(config):=20rebuild?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml | 4 ++++ .../home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml | 4 ++++ ...efault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml | 1 + ...uilder--2f642060-4792-41cb-a427-083aabeba231.yaml | 1 + ...geNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml | 1 + ...yImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml | 11 ----------- ...kImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml | 11 ----------- ...Images--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml | 11 ----------- ...tImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml | 11 ----------- ...onMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml | 1 + config/project/project.yaml | 12 +----------- .../files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml | 1 + ...images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml | 1 + ...Images--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml | 1 + .../users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml | 1 + 15 files changed, 17 insertions(+), 55 deletions(-) diff --git a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml b/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml index 08fd0fcb..a1e812df 100644 --- a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml +++ b/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null @@ -91,6 +92,9 @@ handle: error hasTitleField: true name: Error section: e5172a18-ed16-4229-89ca-fc0dc776597a # Error Pages +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site sortOrder: 1 titleFormat: null titleTranslationKeyFormat: null diff --git a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml b/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml index 9b420323..df4b93d8 100644 --- a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml +++ b/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null @@ -109,6 +110,9 @@ handle: home hasTitleField: false name: Home section: 5d0f7961-203c-4008-a55a-6a7d35e7a37a # Home +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site sortOrder: 1 titleFormat: '{section.name|raw}' titleTranslationKeyFormat: null diff --git a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml b/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml index 44fdca16..ccce9136 100644 --- a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml +++ b/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml b/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml index 31a64911..40047cf9 100644 --- a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml +++ b/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml b/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml index e98c3f7a..eb6a8f32 100644 --- a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml +++ b/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml b/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml index 699ec13f..0781f96b 100644 --- a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml +++ b/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml @@ -24,17 +24,6 @@ settings: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images restrictedLocationSubpath: null - selectionCondition: - __assoc__: - - - - elementType - - craft\elements\Asset - - - - fieldContext - - global - - - - class - - craft\elements\conditions\assets\AssetCondition selectionLabel: null showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml b/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml index b0845cde..79be8bcd 100644 --- a/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml +++ b/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml @@ -135,17 +135,6 @@ fields: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files restrictedLocationSubpath: null - selectionCondition: - __assoc__: - - - - elementType - - craft\elements\Asset - - - - fieldContext - - global - - - - class - - craft\elements\conditions\assets\AssetCondition selectionLabel: null showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml b/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml index b5e135a8..bfc5cb56 100644 --- a/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml +++ b/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml @@ -168,17 +168,6 @@ fields: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files restrictedLocationSubpath: null - selectionCondition: - __assoc__: - - - - elementType - - craft\elements\Asset - - - - fieldContext - - global - - - - class - - craft\elements\conditions\assets\AssetCondition selectionLabel: null showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml b/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml index 7df772fa..3dfc734e 100644 --- a/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml +++ b/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml @@ -208,17 +208,6 @@ fields: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files restrictedLocationSubpath: null - selectionCondition: - __assoc__: - - - - elementType - - craft\elements\Asset - - - - fieldContext - - global - - - - class - - craft\elements\conditions\assets\AssetCondition selectionLabel: null showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml b/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml index aa68af2c..e36207bf 100644 --- a/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml +++ b/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml @@ -13,6 +13,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/project.yaml b/config/project/project.yaml index 5b8974e7..17bcd3a8 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1725477749 +dateModified: 1725478711 elementSources: craft\elements\Asset: - @@ -90,9 +90,7 @@ meta: 5c9f2ce6-f780-4ea6-a50c-539a252aec94: Images # Images 5d0f7961-203c-4008-a55a-6a7d35e7a37a: Home # Home 6a90dae3-938c-47e6-8e36-6b1d6be92d63: 'Show Image Caption' # Show Image Caption - 6b6fa06a-49a5-4d76-86c2-73025061e123: 'Image Columns' # Image Columns 6c5fc0dd-cf56-48d8-8af8-88abe763b970: Files # Files - 6cbf325a-fbae-41b4-bb85-feb5ead0849e: Test # Test 6d94dcc4-6ec1-45b4-8c86-e53cee842b11: 'Page News' # Page News 6f4a3e01-23de-4313-8109-00a430317d11: 'Rich Text Default' # Rich Text Default 7b3b13e0-e20d-4d51-b0ae-832300f45234: Text # Text @@ -115,11 +113,9 @@ meta: 75b6f580-613f-42ae-aa23-2d5fb22ff3da: 'Source Subline' # Source Subline 77c74b5c-6bbb-41a7-b166-c6b158a3cc7f: 'Template Images' # Template Images 81d0ea50-f7e1-4eff-8138-2a06ffbfae86: Home # Home - 88f5b6a1-8725-4770-b8df-f5f3c0d257d3: 'Section Width' # Section Width 98f7a455-6764-4b7d-8d19-405bdcc42228: 'Image Ratio' # Image Ratio 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82: 'Image Position' # Image Position 419ebfbb-8723-48db-ae89-10adf52cdf11: 'Text: Source' # Text: Source - 426b9c6d-ddd6-433e-a29d-8247cd9095ba: 'Text CK' # Text CK 1516a801-6243-468d-b8e2-479085458faa: 'Text: Title Overwrite' # Text: Title Overwrite 3497ad65-5e4c-43cb-b469-c3e4b3d80343: 'Text : Image' # Text : Image 3547e7b4-f3fb-4cf4-9d29-9f12dfa94594: News # News @@ -131,21 +127,17 @@ meta: 68109da0-245f-4b21-b040-b7f4385e618e: 'Video Width' # Video Width 75195ab8-b7c4-4dca-b807-ef8a042ef5a9: Images # Images 92963d20-e763-4d2e-a367-9e543dfde522: Spacer # Spacer - 231200a9-ef7d-4002-8155-54fcaf4f6e6c: 'Image Width' # Image Width 295738c1-951d-4b8c-b5cd-83d71a85d7e8: Image # Image 644167c0-ab2a-4f9d-9b2b-09f5a6556ef3: 'Public Schema' # Public Schema 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4: Text # Text 62883121-63a2-4e5c-a6f3-4855cf64df2c: 'Image Ratio' # Image Ratio - a2484323-15c1-4358-a188-d18a600c5958: Autoplay # Autoplay aa7883a4-2cce-4316-85f3-ec6ea59402ec: 'Section Padding Vertical' # Section Padding Vertical aac37142-e533-49aa-8665-b8cc6360e98b: 'Text: Caption' # Text: Caption b0207f48-be48-49ab-a759-1ff51f232df3: Pages # Pages b81cb731-dd6f-4055-9c6d-2f076a727a27: Image # Image b921eaa9-858e-4901-bbb9-15b70cac9a6e: Relations # Relations b3022ef5-7f1b-49d7-976d-5d5be501c1f1: Section # Section - b48826ad-7083-4a54-8082-52ede1c340b7: 'Video ID' # Video ID be45c3e2-5e9f-491e-a000-94d95c4fa20b: Snippet # Snippet - c6d6d63e-16f8-4450-a631-a9d6a37d2d88: 'Video Width' # Video Width c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0: Source # Source cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f: 'Snippet collapsed' # Snippet collapsed d4cabad1-1cae-4a1e-a914-c38d9f1a813a: Text # Text @@ -157,9 +149,7 @@ meta: e8b10d27-be46-4108-9bf5-3a8711280165: 'Rich Text Simple' # Rich Text Simple e11e03f7-19c1-45c3-935e-1994a7ce7d26: 'Source Url' # Source Url e5172a18-ed16-4229-89ca-fc0dc776597a: 'Error Pages' # Error Pages - e6857cd6-fc09-4396-93bd-3a9fc9011446: 'Snippet Language' # Snippet Language e9486b85-fd5e-40c8-851b-a6b0133e1f88: 'Video Id' # Video Id - e55876f6-9fe1-448f-b0bb-320990caabee: Loop # Loop f084e099-613d-4405-b600-f4be12d3509b: 'Divider Variant' # Divider Variant f1b38495-8096-48fa-9b78-0da345e3295c: Images # Images f3e1a215-a60f-4d6a-8897-e1a80a40c6cd: Code # Code diff --git a/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml b/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml index acb49a22..ec6a8025 100644 --- a/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml +++ b/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml b/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml index e2291213..16e29fa8 100644 --- a/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml +++ b/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml b/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml index c738e8a0..b65f71bc 100644 --- a/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml +++ b/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null diff --git a/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml b/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml index 2d287af7..6d58bc03 100644 --- a/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml +++ b/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml @@ -12,6 +12,7 @@ fieldLayouts: disabled: false elementCondition: null id: null + inputType: null instructions: null label: null max: null From eb2c75dd4da59113632e999c861383c9f95c3365 Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Wed, 4 Sep 2024 21:52:57 +0200 Subject: [PATCH 43/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20CraftCMS?= =?UTF-8?q?=205=20and=20Plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 34 +- composer.lock | 2975 ++++++++++------- ...-f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml | 69 + ...-e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml | 37 + ...-295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml | 85 + ...-5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml | 85 + ...-fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml | 85 + ...-b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml | 69 + ...-92963d20-e763-4d2e-a367-9e543dfde522.yaml | 37 + ...-7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml | 37 + ...-3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml | 101 + ...-7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml | 101 + ...-8ced5be5-13b2-483f-8db9-aab9757aad21.yaml | 1 - ...-81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml | 1 - ...-fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml | 1 - ...-2f642060-4792-41cb-a427-083aabeba231.yaml | 1 - ...-6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml | 1 - .../4267733c-fa2b-45f5-a3b6-8b56a1c56dc4.yaml | 1 - .../8512e79b-4bb8-4d2d-b731-5fa98546f2c9.yaml | 1 - .../b921eaa9-858e-4901-bbb9-15b70cac9a6e.yaml | 1 - .../d383bdc6-fcfa-4652-9155-d7ead2d89f29.yaml | 1 - .../dfb88745-e0f0-4c67-9781-f72dad33bf65.yaml | 1 - ...-0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml | 1 - ...-3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml | 12 + ...-74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml | 18 +- ...-f084e099-613d-4405-b600-f4be12d3509b.yaml | 65 + ...-b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml | 36 + ...-35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml | 36 + ...-210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml | 12 + ...-62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml | 54 + ...-98f7a455-6764-4b7d-8d19-405bdcc42228.yaml | 54 + ...-70bc887b-faf2-45c7-b4bc-4299acd343da.yaml | 54 + ...-1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml | 32 + ...-75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml | 36 + ...-4a25e574-679a-4d01-8e8b-d5927129ce33.yaml | 12 + ...-53f0660a-f06b-4b2d-b342-1869c5c65538.yaml | 21 + ...-9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml | 32 + ...-aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml | 76 + ...-d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml | 1 - ...-e0e9e510-46ff-45aa-aa46-700b325bb911.yaml | 12 + ...-6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml | 12 + ...-9b73b533-898f-4f77-a500-37ea0be0afc7.yaml | 12 + ...-be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml | 32 + ...-cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml | 12 + ...-9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml | 16 + ...-c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml | 16 + ...-75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml | 16 + ...-e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml | 12 + ...-74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml | 76 + ...-1b37c439-5a32-4e8f-8019-7f6a94593419.yaml | 65 + ...-d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml | 21 + ...-0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml | 21 + ...-aac37142-e533-49aa-8665-b8cc6360e98b.yaml | 1 - ...-45510f13-91d2-479f-9ff2-68dd09ab6643.yaml | 1 - ...-63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml | 1 - ...-1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml | 1 - ...-8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml | 1 - ...-419ebfbb-8723-48db-ae89-10adf52cdf11.yaml | 1 - ...-8780cb03-c9ea-4482-ab85-3e541453b50f.yaml | 1 - ...-1516a801-6243-468d-b8e2-479085458faa.yaml | 1 - ...-74c3cd4f-b565-4fb4-879e-72022774f93c.yaml | 80 + ...-e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml | 16 + ...-63bd200d-3882-4788-a8ba-528452521d6c.yaml | 32 + ...-68109da0-245f-4b21-b040-b7f4385e618e.yaml | 32 + .../644167c0-ab2a-4f9d-9b2b-09f5a6556ef3.yaml | 25 +- ...-f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml | 121 - ...-e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml | 95 - ...-295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml | 210 -- ...-5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml | 258 -- ...-fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml | 141 - ...-b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml | 246 -- ...-92963d20-e763-4d2e-a367-9e543dfde522.yaml | 95 - ...-7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml | 50 - ...-3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml | 225 -- ...-7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml | 196 -- config/project/project.yaml | 54 +- ...-e5172a18-ed16-4229-89ca-fc0dc776597a.yaml | 2 + ...-5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml | 2 + ...-3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml | 2 + ...-b0207f48-be48-49ab-a759-1ff51f232df3.yaml | 3 + 80 files changed, 3528 insertions(+), 2965 deletions(-) create mode 100644 config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml create mode 100644 config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml create mode 100644 config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml create mode 100644 config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml create mode 100644 config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml create mode 100644 config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml create mode 100644 config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml create mode 100644 config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml create mode 100644 config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml create mode 100644 config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml delete mode 100644 config/project/fieldGroups/4267733c-fa2b-45f5-a3b6-8b56a1c56dc4.yaml delete mode 100644 config/project/fieldGroups/8512e79b-4bb8-4d2d-b731-5fa98546f2c9.yaml delete mode 100644 config/project/fieldGroups/b921eaa9-858e-4901-bbb9-15b70cac9a6e.yaml delete mode 100644 config/project/fieldGroups/d383bdc6-fcfa-4652-9155-d7ead2d89f29.yaml delete mode 100644 config/project/fieldGroups/dfb88745-e0f0-4c67-9781-f72dad33bf65.yaml create mode 100644 config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml create mode 100644 config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml create mode 100644 config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml create mode 100644 config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml create mode 100644 config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml create mode 100644 config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml create mode 100644 config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml create mode 100644 config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml create mode 100644 config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml create mode 100644 config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml create mode 100644 config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml create mode 100644 config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml create mode 100644 config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml create mode 100644 config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml create mode 100644 config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml create mode 100644 config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml create mode 100644 config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml create mode 100644 config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml create mode 100644 config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml create mode 100644 config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml create mode 100644 config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml create mode 100644 config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml create mode 100644 config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml create mode 100644 config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml create mode 100644 config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml create mode 100644 config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml create mode 100644 config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml create mode 100644 config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml create mode 100644 config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml create mode 100644 config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml create mode 100644 config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml delete mode 100644 config/project/matrixBlockTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml delete mode 100644 config/project/matrixBlockTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml delete mode 100644 config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml delete mode 100644 config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml delete mode 100644 config/project/matrixBlockTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml delete mode 100644 config/project/matrixBlockTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml delete mode 100644 config/project/matrixBlockTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml delete mode 100644 config/project/matrixBlockTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml delete mode 100644 config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml delete mode 100644 config/project/matrixBlockTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml diff --git a/composer.json b/composer.json index ca5e944e..fded5c5d 100644 --- a/composer.json +++ b/composer.json @@ -1,26 +1,26 @@ { "require": { - "craftcms/ckeditor": "3.9.0", - "craftcms/cms": "4.12.0", - "dodecastudio/craft-blurhash": "3.0.0", - "doublesecretagency/craft-cpcss": "2.6.0", - "mmikkel/cp-field-inspect": "^1.4.4", - "nystudio107/craft-code-field": "4.0.12", - "nystudio107/craft-emptycoalesce": "4.0.0", + "craftcms/ckeditor": "4.2.0", + "craftcms/cms": "^5.0.0", + "dodecastudio/craft-blurhash": "^3.0.0", + "doublesecretagency/craft-cpcss": "^3.0.0", + "mmikkel/cp-field-inspect": "^2.0.2", + "nystudio107/craft-code-field": "^5.0.0", + "nystudio107/craft-emptycoalesce": "^5.0.0", "nystudio107/craft-scripts": "^1.2.13", - "nystudio107/craft-seomatic": "4.1.2", - "nystudio107/craft-vite": "4.0.10", - "putyourlightson/craft-blitz": "4.23.0", - "putyourlightson/craft-elements-panel": "2.0.0", - "putyourlightson/craft-sprig": "2.13.0", - "spacecatninja/imager-x": "4.4.1", - "verbb/hyper": "1.2.1", - "verbb/navigation": "2.1.0", + "nystudio107/craft-seomatic": "^5.0.0", + "nystudio107/craft-vite": "^5.0.0", + "putyourlightson/craft-blitz": "^5.7.1", + "putyourlightson/craft-elements-panel": "^3.0.0", + "putyourlightson/craft-sprig": "^3.5.0", + "spacecatninja/imager-x": "^5.0.0", + "verbb/hyper": "^2.0.0", + "verbb/navigation": "^3.0.0", "vlucas/phpdotenv": "^5.4", "yiisoft/yii2-redis": "^2.0.13" }, "require-dev": { - "craftcms/generator": "^1.6", + "craftcms/generator": "^2.0.0", "nystudio107/craft-autocomplete": "^1.0", "roave/security-advisories": "dev-latest", "yiisoft/yii2-shell": "^2.0.4" @@ -75,4 +75,4 @@ "canonical": false } ] -} \ No newline at end of file +} diff --git a/composer.lock b/composer.lock index 7862c843..796130ce 100644 --- a/composer.lock +++ b/composer.lock @@ -4,43 +4,36 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6b23234bb9d643b81189c5a71beff540", + "content-hash": "74f696d1efb35ac5d4782702843b65cc", "packages": [ { "name": "amphp/amp", - "version": "v2.6.4", + "version": "v3.0.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", - "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", + "url": "https://api.github.com/repos/amphp/amp/zipball/138801fb68cfc9c329da8a7b39d01ce7291ee4b0", + "reference": "138801fb68cfc9c329da8a7b39d01ce7291ee4b0", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, "autoload": { "files": [ - "lib/functions.php", - "lib/Internal/functions.php" + "src/functions.php", + "src/Future/functions.php", + "src/Internal/functions.php" ], "psr-4": { - "Amp\\": "lib" + "Amp\\": "src" } }, "license": [ "MIT" ], "authors": [ - { - "name": "Daniel Lowrey", - "email": "rdlowrey@php.net" - }, { "name": "Aaron Piotrowski", "email": "aaron@trowski.com" @@ -52,6 +45,10 @@ { "name": "Niklas Keller", "email": "me@kelunik.com" + }, + { + "name": "Daniel Lowrey", + "email": "rdlowrey@php.net" } ], "description": "A non-blocking concurrency framework for PHP applications.", @@ -67,28 +64,34 @@ "non-blocking", "promise" ], - "time": "2024-03-21T18:52:26+00:00" + "time": "2024-05-10T21:37:46+00:00" }, { "name": "amphp/byte-stream", - "version": "v1.8.2", + "version": "v2.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc", - "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc", + "url": "https://api.github.com/repos/amphp/byte-stream/zipball/daa00f2efdbd71565bf64ffefa89e37542addf93", + "reference": "daa00f2efdbd71565bf64ffefa89e37542addf93", "shasum": "" }, "require": { - "amphp/amp": "^2", - "php": ">=7.1" + "amphp/amp": "^3", + "amphp/parser": "^1.1", + "amphp/pipeline": "^1", + "amphp/serialization": "^1", + "amphp/sync": "^2", + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2.3" }, "type": "library", "autoload": { "files": [ - "lib/functions.php" + "src/functions.php", + "src/Internal/functions.php" ], "psr-4": { - "Amp\\ByteStream\\": "lib" + "Amp\\ByteStream\\": "src" } }, "license": [ @@ -114,30 +117,28 @@ "non-blocking", "stream" ], - "time": "2024-04-13T18:00:56+00:00" + "time": "2024-02-17T04:49:38+00:00" }, { "name": "amphp/cache", - "version": "v1.5.1", + "version": "v2.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/cache/zipball/fe78cfae2fb8c92735629b8cd1893029c73c9b63", - "reference": "fe78cfae2fb8c92735629b8cd1893029c73c9b63", + "url": "https://api.github.com/repos/amphp/cache/zipball/46912e387e6aa94933b61ea1ead9cf7540b7797c", + "reference": "46912e387e6aa94933b61ea1ead9cf7540b7797c", "shasum": "" }, "require": { - "amphp/amp": "^2", + "amphp/amp": "^3", "amphp/serialization": "^1", - "amphp/sync": "^1.2", - "php": ">=7.1" - }, - "conflict": { - "amphp/file": "<0.2 || >=3" + "amphp/sync": "^2", + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", "autoload": { "psr-4": { - "Amp\\Cache\\": "lib" + "Amp\\Cache\\": "src" } }, "license": [ @@ -148,42 +149,46 @@ "name": "Niklas Keller", "email": "me@kelunik.com" }, + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, { "name": "Daniel Lowrey", "email": "rdlowrey@php.net" } ], - "description": "A promise-aware caching API for Amp.", - "homepage": "https://github.com/amphp/cache", - "time": "2024-03-21T19:35:02+00:00" + "description": "A fiber-aware cache API based on Amp and Revolt.", + "homepage": "https://amphp.org/cache", + "time": "2024-04-19T03:38:06+00:00" }, { "name": "amphp/dns", - "version": "v1.2.3", + "version": "v2.2.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/dns/zipball/852292532294d7972c729a96b49756d781f7c59d", - "reference": "852292532294d7972c729a96b49756d781f7c59d", + "url": "https://api.github.com/repos/amphp/dns/zipball/758266b0ea7470e2e42cd098493bc6d6c7100cf7", + "reference": "758266b0ea7470e2e42cd098493bc6d6c7100cf7", "shasum": "" }, "require": { - "amphp/amp": "^2", - "amphp/byte-stream": "^1.1", - "amphp/cache": "^1.2", + "amphp/amp": "^3", + "amphp/byte-stream": "^2", + "amphp/cache": "^2", "amphp/parser": "^1", - "amphp/windows-registry": "^0.3", - "daverandom/libdns": "^2.0.1", + "amphp/windows-registry": "^1.0.1", + "daverandom/libdns": "^2.0.2", "ext-filter": "*", - "ext-json": "*", - "php": ">=7.0" + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", "autoload": { "files": [ - "lib/functions.php" + "src/functions.php" ], "psr-4": { - "Amp\\Dns\\": "lib" + "Amp\\Dns\\": "src" } }, "license": [ @@ -221,7 +226,7 @@ "dns", "resolve" ], - "time": "2020-07-21T19:04:57+00:00" + "time": "2024-06-02T19:54:12+00:00" }, { "name": "amphp/hpack", @@ -277,26 +282,25 @@ }, { "name": "amphp/http", - "version": "v1.7.3", + "version": "v2.1.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/http/zipball/3a33e68a3b53f7279217238e89748cf0cb30b8a6", - "reference": "3a33e68a3b53f7279217238e89748cf0cb30b8a6", + "url": "https://api.github.com/repos/amphp/http/zipball/fe6b4dd50c1e70caf823092398074b5082e1d6da", + "reference": "fe6b4dd50c1e70caf823092398074b5082e1d6da", "shasum": "" }, "require": { "amphp/hpack": "^3", - "php": ">=7.1" + "amphp/parser": "^1.1", + "league/uri-components": "^2.4.2 | ^7.1", + "php": ">=8.1", + "psr/http-message": "^1 | ^2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "files": [ - "src/functions.php" + "src/functions.php", + "src/Internal/constants.php" ], "psr-4": { "Amp\\Http\\": "src" @@ -309,33 +313,38 @@ { "name": "Niklas Keller", "email": "me@kelunik.com" + }, + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" } ], "description": "Basic HTTP primitives which can be shared by servers and clients.", - "time": "2024-04-03T17:45:14+00:00" + "time": "2024-04-03T18:00:53+00:00" }, { "name": "amphp/http-client", - "version": "v4.6.4", + "version": "v5.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/http-client/zipball/f607a33f81c7b3aafe80cf6c6ed438ca245bbbe3", - "reference": "f607a33f81c7b3aafe80cf6c6ed438ca245bbbe3", + "url": "https://api.github.com/repos/amphp/http-client/zipball/483df9a856625fe4406c7fb6a64d6787105bd184", + "reference": "483df9a856625fe4406c7fb6a64d6787105bd184", "shasum": "" }, "require": { - "amphp/amp": "^2.4", - "amphp/byte-stream": "^1.6", + "amphp/amp": "^3", + "amphp/byte-stream": "^2", "amphp/hpack": "^3", - "amphp/http": "^1.6", - "amphp/socket": "^1", - "amphp/sync": "^1.3", + "amphp/http": "^2", + "amphp/pipeline": "^1", + "amphp/socket": "^2", + "amphp/sync": "^2", "league/uri": "^6 | ^7", - "php": ">=7.2", - "psr/http-message": "^1 | ^2" - }, - "conflict": { - "amphp/file": "<0.2 || >=3" + "league/uri-components": "^2.4 | ^7", + "league/uri-interfaces": "^7.1", + "php": ">=8.1", + "psr/http-message": "^1 | ^2", + "revolt/event-loop": "^1" }, "suggest": { "amphp/file": "Required for file request bodies and HTTP archive logging", @@ -343,13 +352,9 @@ "ext-zlib": "Allows using compression for response bodies." }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.x-dev" - } - }, "autoload": { "files": [ + "src/functions.php", "src/Internal/functions.php" ], "psr-4": { @@ -373,8 +378,8 @@ "email": "aaron@trowski.com" } ], - "description": "Asynchronous concurrent HTTP/2 and HTTP/1.1 client built on the Amp concurrency framework", - "homepage": "https://github.com/amphp/http-client", + "description": "An advanced async HTTP client library for PHP, enabling efficient, non-blocking, and concurrent requests and responses.", + "homepage": "https://amphp.org/http-client", "keywords": [ "async", "client", @@ -383,35 +388,40 @@ "non-blocking", "rest" ], - "time": "2024-03-21T19:51:27+00:00" + "time": "2024-04-21T16:40:36+00:00" }, { "name": "amphp/parallel", - "version": "v1.4.3", + "version": "v2.2.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/parallel/zipball/3aac213ba7858566fd83d38ccb85b91b2d652cb0", - "reference": "3aac213ba7858566fd83d38ccb85b91b2d652cb0", + "url": "https://api.github.com/repos/amphp/parallel/zipball/73d293f1fc4df1bebc3c4fce1432e82dd7032238", + "reference": "73d293f1fc4df1bebc3c4fce1432e82dd7032238", "shasum": "" }, "require": { - "amphp/amp": "^2", - "amphp/byte-stream": "^1.6.1", + "amphp/amp": "^3", + "amphp/byte-stream": "^2", + "amphp/cache": "^2", "amphp/parser": "^1", - "amphp/process": "^1", + "amphp/pipeline": "^1", + "amphp/process": "^2", "amphp/serialization": "^1", - "amphp/sync": "^1.0.1", - "php": ">=7.1" + "amphp/socket": "^2", + "amphp/sync": "^2", + "php": ">=8.1", + "revolt/event-loop": "^1" }, "type": "library", "autoload": { "files": [ - "lib/Context/functions.php", - "lib/Sync/functions.php", - "lib/Worker/functions.php" + "src/Context/functions.php", + "src/Context/Internal/functions.php", + "src/Ipc/functions.php", + "src/Worker/functions.php" ], "psr-4": { - "Amp\\Parallel\\": "lib" + "Amp\\Parallel\\": "src" } }, "license": [ @@ -422,6 +432,10 @@ "name": "Aaron Piotrowski", "email": "aaron@trowski.com" }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + }, { "name": "Stephen Coakley", "email": "me@stephencoakley.com" @@ -436,7 +450,7 @@ "multi-processing", "multi-threading" ], - "time": "2023-03-23T08:04:23+00:00" + "time": "2024-03-24T18:27:44+00:00" }, { "name": "amphp/parser", @@ -479,27 +493,74 @@ ], "time": "2024-03-21T19:16:53+00:00" }, + { + "name": "amphp/pipeline", + "version": "v1.2.1", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/amphp/pipeline/zipball/66c095673aa5b6e689e63b52d19e577459129ab3", + "reference": "66c095673aa5b6e689e63b52d19e577459129ab3", + "shasum": "" + }, + "require": { + "amphp/amp": "^3", + "php": ">=8.1", + "revolt/event-loop": "^1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Amp\\Pipeline\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + } + ], + "description": "Asynchronous iterators and operators.", + "homepage": "https://amphp.org/pipeline", + "keywords": [ + "amp", + "amphp", + "async", + "io", + "iterator", + "non-blocking" + ], + "time": "2024-07-04T00:56:47+00:00" + }, { "name": "amphp/process", - "version": "v1.1.7", + "version": "v2.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/process/zipball/1949d85b6d71af2818ff68144304a98495628f19", - "reference": "1949d85b6d71af2818ff68144304a98495628f19", + "url": "https://api.github.com/repos/amphp/process/zipball/52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d", + "reference": "52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d", "shasum": "" }, "require": { - "amphp/amp": "^2", - "amphp/byte-stream": "^1.4", - "php": ">=7.1" + "amphp/amp": "^3", + "amphp/byte-stream": "^2", + "amphp/sync": "^2", + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", "autoload": { "files": [ - "lib/functions.php" + "src/functions.php" ], "psr-4": { - "Amp\\Process\\": "lib" + "Amp\\Process\\": "src" } }, "license": [ @@ -519,9 +580,9 @@ "email": "me@kelunik.com" } ], - "description": "Asynchronous process manager.", - "homepage": "https://github.com/amphp/process", - "time": "2024-04-19T03:00:28+00:00" + "description": "A fiber-aware process manager based on Amp and Revolt.", + "homepage": "https://amphp.org/process", + "time": "2024-04-19T03:13:44+00:00" }, { "name": "amphp/serialization", @@ -569,32 +630,30 @@ }, { "name": "amphp/socket", - "version": "v1.2.1", + "version": "v2.3.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/socket/zipball/b00528bd75548b7ae06a502358bb3ff8b106f5ab", - "reference": "b00528bd75548b7ae06a502358bb3ff8b106f5ab", + "url": "https://api.github.com/repos/amphp/socket/zipball/58e0422221825b79681b72c50c47a930be7bf1e1", + "reference": "58e0422221825b79681b72c50c47a930be7bf1e1", "shasum": "" }, "require": { - "amphp/amp": "^2", - "amphp/byte-stream": "^1.6", - "amphp/dns": "^1 || ^0.9", + "amphp/amp": "^3", + "amphp/byte-stream": "^2", + "amphp/dns": "^2", "ext-openssl": "*", "kelunik/certificate": "^1.1", - "league/uri-parser": "^1.4", - "php": ">=7.1" + "league/uri": "^6.5 | ^7", + "league/uri-interfaces": "^2.3 | ^7", + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "files": [ "src/functions.php", - "src/Internal/functions.php" + "src/Internal/functions.php", + "src/SocketAddress/functions.php" ], "psr-4": { "Amp\\Socket\\": "src" @@ -617,7 +676,7 @@ "email": "me@kelunik.com" } ], - "description": "Async socket connection / server tools for Amp.", + "description": "Non-blocking socket connection / server implementations based on Amp and Revolt.", "homepage": "https://github.com/amphp/socket", "keywords": [ "amp", @@ -628,26 +687,28 @@ "tcp", "tls" ], - "time": "2024-03-21T18:12:22+00:00" + "time": "2024-04-21T14:33:03+00:00" }, { "name": "amphp/sync", - "version": "v1.4.2", + "version": "v2.3.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/sync/zipball/85ab06764f4f36d63b1356b466df6111cf4b89cf", - "reference": "85ab06764f4f36d63b1356b466df6111cf4b89cf", + "url": "https://api.github.com/repos/amphp/sync/zipball/217097b785130d77cfcc58ff583cf26cd1770bf1", + "reference": "217097b785130d77cfcc58ff583cf26cd1770bf1", "shasum": "" }, "require": { - "amphp/amp": "^2.2", - "php": ">=7.1" + "amphp/amp": "^3", + "amphp/pipeline": "^1", + "amphp/serialization": "^1", + "php": ">=8.1", + "revolt/event-loop": "^1 || ^0.2" }, "type": "library", "autoload": { "files": [ - "src/functions.php", - "src/ConcurrentIterator/functions.php" + "src/functions.php" ], "psr-4": { "Amp\\Sync\\": "src" @@ -661,12 +722,16 @@ "name": "Aaron Piotrowski", "email": "aaron@trowski.com" }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" + }, { "name": "Stephen Coakley", "email": "me@stephencoakley.com" } ], - "description": "Mutex, Semaphore, and other synchronization tools for Amp.", + "description": "Non-blocking synchronization primitives for PHP based on Amp and Revolt.", "homepage": "https://github.com/amphp/sync", "keywords": [ "async", @@ -675,26 +740,26 @@ "semaphore", "synchronization" ], - "time": "2021-10-25T18:29:10+00:00" + "time": "2024-08-03T19:31:26+00:00" }, { "name": "amphp/windows-registry", - "version": "v0.3.3", + "version": "v1.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/amphp/windows-registry/zipball/0f56438b9197e224325e88f305346f0221df1f71", - "reference": "0f56438b9197e224325e88f305346f0221df1f71", + "url": "https://api.github.com/repos/amphp/windows-registry/zipball/0d569e8f256cca974e3842b6e78b4e434bf98306", + "reference": "0d569e8f256cca974e3842b6e78b4e434bf98306", "shasum": "" }, "require": { - "amphp/amp": "^2", - "amphp/byte-stream": "^1.4", - "amphp/process": "^1" + "amphp/byte-stream": "^2", + "amphp/process": "^2", + "php": ">=8.1" }, "type": "library", "autoload": { "psr-4": { - "Amp\\WindowsRegistry\\": "lib" + "Amp\\WindowsRegistry\\": "src" } }, "license": [ @@ -707,7 +772,7 @@ } ], "description": "Windows Registry Reader.", - "time": "2020-07-10T16:13:29+00:00" + "time": "2024-01-30T23:01:51+00:00" }, { "name": "aws/aws-crt-php", @@ -751,11 +816,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.315.5", + "version": "3.321.4", + "source": { + "type": "git", + "url": "https://github.com/aws/aws-sdk-php.git", + "reference": "986326efde1d0598ec9fc1b185716550be8ef522" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3e6d619d45d8e1a8681dd58de61ddfe90e8341e6", - "reference": "3e6d619d45d8e1a8681dd58de61ddfe90e8341e6", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/986326efde1d0598ec9fc1b185716550be8ef522", + "reference": "986326efde1d0598ec9fc1b185716550be8ef522", "shasum": "" }, "require": { @@ -770,6 +840,25 @@ "php": ">=7.2.5", "psr/http-message": "^1.0 || ^2.0" }, + "require-dev": { + "andrewsville/php-token-reflection": "^1.4", + "aws/aws-php-sns-message-validator": "~1.0", + "behat/behat": "~3.0", + "composer/composer": "^1.10.22", + "dms/phpunit-arraysubset-asserts": "^0.4.0", + "doctrine/cache": "~1.4", + "ext-dom": "*", + "ext-openssl": "*", + "ext-pcntl": "*", + "ext-sockets": "*", + "nette/neon": "^2.3", + "paragonie/random_compat": ">= 2", + "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5", + "psr/cache": "^1.0", + "psr/simple-cache": "^1.0", + "sebastian/comparator": "^1.2.3 || ^4.0", + "yoast/phpunit-polyfills": "^1.0" + }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", "doctrine/cache": "To use the DoctrineCacheAdapter", @@ -789,8 +878,12 @@ ], "psr-4": { "Aws\\": "src/" - } + }, + "exclude-from-classmap": [ + "src/data/" + ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "Apache-2.0" ], @@ -812,7 +905,50 @@ "s3", "sdk" ], - "time": "2024-07-03T18:12:51+00:00" + "support": { + "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", + "issues": "https://github.com/aws/aws-sdk-php/issues", + "source": "https://github.com/aws/aws-sdk-php/tree/3.321.4" + }, + "time": "2024-09-04T18:09:31+00:00" + }, + { + "name": "bacon/bacon-qr-code", + "version": "2.0.8", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22", + "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22", + "shasum": "" + }, + "require": { + "dasprid/enum": "^1.0.3", + "ext-iconv": "*", + "php": "^7.1 || ^8.0" + }, + "suggest": { + "ext-imagick": "to generate QR code images" + }, + "type": "library", + "autoload": { + "psr-4": { + "BaconQrCode\\": "src/" + } + }, + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Ben Scholzen 'DASPRiD'", + "email": "mail@dasprids.de", + "homepage": "https://dasprids.de/", + "role": "Developer" + } + ], + "description": "BaconQrCode is a QR code generator for PHP.", + "homepage": "https://github.com/Bacon/BaconQrCode", + "time": "2022-12-07T17:46:57+00:00" }, { "name": "brick/math", @@ -904,16 +1040,16 @@ }, { "name": "commerceguys/addressing", - "version": "v1.4.2", + "version": "v2.2.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/4d23e46ea32534268ea121453c93ceda2bc3ee69", + "reference": "4d23e46ea32534268ea121453c93ceda2bc3ee69", "shasum": "" }, "require": { - "doctrine/collections": "^1.2 || ^2.0", - "php": ">=7.3" + "doctrine/collections": "^1.6 || ^2.0", + "php": ">=8.0" }, "suggest": { "symfony/validator": "to validate addresses" @@ -921,7 +1057,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -947,7 +1083,7 @@ "localization", "postal" ], - "time": "2023-02-15T10:11:14+00:00" + "time": "2024-07-12T11:53:22+00:00" }, { "name": "composer/ca-bundle", @@ -995,455 +1131,124 @@ "time": "2024-07-08T15:28:20+00:00" }, { - "name": "composer/class-map-generator", - "version": "1.3.4", + "name": "composer/semver", + "version": "3.4.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", - "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", + "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6", + "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6", "shasum": "" }, "require": { - "composer/pcre": "^2.1 || ^3.1", - "php": "^7.2 || ^8.0", - "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { "psr-4": { - "Composer\\ClassMapGenerator\\": "src" + "Composer\\Semver\\": "src" } }, "license": [ "MIT" ], "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" } ], - "description": "Utilities to scan PHP code and generate class maps.", + "description": "Semver library that offers utilities, version constraint parsing and validation.", "keywords": [ - "classmap" + "semantic", + "semver", + "validation", + "versioning" ], - "time": "2024-06-12T14:13:04+00:00" + "time": "2024-07-12T11:35:52+00:00" }, { - "name": "composer/composer", - "version": "2.7.9", - "source": { - "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab" - }, + "name": "craftcms/ckeditor", + "version": "4.2.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/e30ccdd665828ae66eb1be78f056e39e1d5f55ab", - "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab", + "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/07d72b9d05c8f6383086c598c8d555752b72d797", + "reference": "07d72b9d05c8f6383086c598c8d555752b72d797", "shasum": "" }, "require": { - "composer/ca-bundle": "^1.5", - "composer/class-map-generator": "^1.3.3", - "composer/metadata-minifier": "^1.0", - "composer/pcre": "^2.2 || ^3.2", - "composer/semver": "^3.3", - "composer/spdx-licenses": "^1.5.7", - "composer/xdebug-handler": "^2.0.2 || ^3.0.3", - "justinrainbow/json-schema": "^5.3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "react/promise": "^3.2", - "seld/jsonlint": "^1.4", - "seld/phar-utils": "^1.2", - "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/polyfill-php73": "^1.24", - "symfony/polyfill-php80": "^1.24", - "symfony/polyfill-php81": "^1.24", - "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" - }, - "require-dev": { - "phpstan/phpstan": "^1.11.8", - "phpstan/phpstan-deprecation-rules": "^1.2.0", - "phpstan/phpstan-phpunit": "^1.4.0", - "phpstan/phpstan-strict-rules": "^1.6.0", - "phpstan/phpstan-symfony": "^1.4.0", - "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" - }, - "suggest": { - "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", - "ext-zip": "Enabling the zip extension allows you to unzip archives", - "ext-zlib": "Allow gzip compression of HTTP requests" + "craftcms/cms": "^5.3.0", + "craftcms/html-field": "^3.1.0", + "nystudio107/craft-code-editor": ">=1.0.8 <=1.0.13 || ^1.0.16", + "php": "^8.2" }, - "bin": [ - "bin/composer" - ], - "type": "library", + "type": "craft-plugin", "extra": { - "branch-alias": { - "dev-main": "2.7-dev" - }, - "phpstan": { - "includes": [ - "phpstan/rules.neon" - ] - } + "name": "CKEditor", + "handle": "ckeditor", + "documentationUrl": "https://github.com/craftcms/ckeditor/blob/master/README.md" }, "autoload": { "psr-4": { - "Composer\\": "src/Composer/" + "craft\\ckeditor\\": "src/" } }, - "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-3.0-or-later" ], "authors": [ { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "https://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" + "name": "Pixel & Tonic", + "homepage": "https://pixelandtonic.com/" } ], - "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", - "homepage": "https://getcomposer.org/", + "description": "Edit rich text content in Craft CMS using CKEditor.", "keywords": [ - "autoload", - "dependency", - "package" + "ckeditor", + "cms", + "craftcms", + "html", + "yii2" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.7.9" + "email": "support@craftcms.com", + "issues": "https://github.com/craftcms/ckeditor/issues?state=open", + "source": "https://github.com/craftcms/ckeditor", + "docs": "https://github.com/craftcms/ckeditor/blob/master/README.md", + "rss": "https://github.com/craftcms/ckeditor/commits/master.atom" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-09-04T12:43:28+00:00" + "time": "2024-08-15T15:05:08+00:00" }, { - "name": "composer/metadata-minifier", - "version": "1.0.0", + "name": "craftcms/cms", + "version": "5.4.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "url": "https://api.github.com/repos/craftcms/cms/zipball/658cc609cf3c9782d717d592a0eeb905cc2d333c", + "reference": "658cc609cf3c9782d717d592a0eeb905cc2d333c", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\MetadataMinifier\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Small utility library that handles metadata minification and expansion.", - "keywords": [ - "composer", - "compression" - ], - "time": "2021-04-07T13:37:33+00:00" - }, - { - "name": "composer/pcre", - "version": "3.3.1", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", - "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.x-dev" - }, - "phpstan": { - "includes": [ - "extension.neon" - ] - } - }, - "autoload": { - "psr-4": { - "Composer\\Pcre\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", - "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" - ], - "time": "2024-08-27T18:44:43+00:00" - }, - { - "name": "composer/semver", - "version": "3.4.2", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6", - "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Semver\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" - } - ], - "description": "Semver library that offers utilities, version constraint parsing and validation.", - "keywords": [ - "semantic", - "semver", - "validation", - "versioning" - ], - "time": "2024-07-12T11:35:52+00:00" - }, - { - "name": "composer/spdx-licenses", - "version": "1.5.8", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", - "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", - "shasum": "" - }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\Spdx\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" - } - ], - "description": "SPDX licenses list and validation library.", - "keywords": [ - "license", - "spdx", - "validator" - ], - "time": "2023-11-20T07:44:33+00:00" - }, - { - "name": "composer/xdebug-handler", - "version": "3.0.5", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", - "shasum": "" - }, - "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Composer\\XdebugHandler\\": "src" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" - } - ], - "description": "Restarts a process without Xdebug.", - "keywords": [ - "Xdebug", - "performance" - ], - "time": "2024-05-06T16:37:16+00:00" - }, - { - "name": "craftcms/ckeditor", - "version": "3.9.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/craftcms/ckeditor/zipball/ae2d92031a378c98d0e5d9bebd5d87b1cefded4e", - "reference": "ae2d92031a378c98d0e5d9bebd5d87b1cefded4e", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.5.0-beta.2", - "craftcms/html-field": "^2.0.0-alpha.2", - "nystudio107/craft-code-editor": ">=1.0.8 <=1.0.13 || ^1.0.16", - "php": "^8.0.2" - }, - "type": "craft-plugin", - "extra": { - "name": "CKEditor", - "handle": "ckeditor", - "documentationUrl": "https://github.com/craftcms/ckeditor/blob/master/README.md" - }, - "autoload": { - "psr-4": { - "craft\\ckeditor\\": "src/" - } - }, - "license": [ - "GPL-3.0-or-later" - ], - "authors": [ - { - "name": "Pixel & Tonic", - "homepage": "https://pixelandtonic.com/" - } - ], - "description": "Edit rich text content in Craft CMS using CKEditor.", - "keywords": [ - "ckeditor", - "cms", - "craftcms", - "html", - "yii2" - ], - "support": { - "email": "support@craftcms.com", - "issues": "https://github.com/craftcms/ckeditor/issues?state=open", - "source": "https://github.com/craftcms/ckeditor", - "docs": "https://github.com/craftcms/ckeditor/blob/master/README.md", - "rss": "https://github.com/craftcms/ckeditor/commits/master.atom" - }, - "time": "2024-08-15T15:03:38+00:00" - }, - { - "name": "craftcms/cms", - "version": "4.12.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/b56c3d877633016f64ab1d123bc684886a21a12d", - "reference": "b56c3d877633016f64ab1d123bc684886a21a12d", - "shasum": "" - }, - "require": { - "commerceguys/addressing": "^1.2", - "composer/composer": "^2.7.0", + "bacon/bacon-qr-code": "^2.0", + "commerceguys/addressing": "^2.1.1", + "composer/semver": "^3.3.2", "craftcms/plugin-installer": "~1.6.0", - "craftcms/server-check": "~2.1.2", + "craftcms/server-check": "~5.0.1", "creocoder/yii2-nested-sets": "~0.9.0", "elvanto/litemoji": "~4.3.0", "enshrined/svg-sanitize": "~0.19.0", @@ -1458,25 +1263,33 @@ "ext-pdo": "*", "ext-zip": "*", "guzzlehttp/guzzle": "^7.2.0", - "illuminate/collections": "^9.1.0", + "illuminate/collections": "^v10.42.0", "mikehaertl/php-shellcommand": "^1.6.3", "moneyphp/money": "^4.0", - "monolog/monolog": "^2.3", - "php": "^8.0.2", + "monolog/monolog": "^3.0", + "php": "^8.2", + "phpdocumentor/reflection-docblock": "^5.3", "pixelandtonic/imagine": "~1.3.3.1", + "pragmarx/google2fa": "^8.0", + "pragmarx/recovery": "^0.2.1", "samdark/yii2-psr-log-target": "^1.1.3", "seld/cli-prompt": "^1.0.4", + "symfony/filesystem": "^6.3", "symfony/http-client": "^6.0.3", + "symfony/property-access": "^7.0", + "symfony/property-info": "^7.0", + "symfony/serializer": "^6.4", "symfony/var-dumper": "^5.0|^6.0", "symfony/yaml": "^5.2.3", "theiconic/name-parser": "^1.2", "twig/twig": "~3.12.0", "voku/stringy": "^6.4.0", + "web-auth/webauthn-lib": "~4.9.0", "webonyx/graphql-php": "~14.11.5", "yiisoft/yii2": "~2.0.51.0", "yiisoft/yii2-debug": "~2.1.25.0", "yiisoft/yii2-queue": "~2.3.2", - "yiisoft/yii2-symfonymailer": "^2.0.0" + "yiisoft/yii2-symfonymailer": "^4.0.0" }, "conflict": { "webonyx/graphql-php": "14.11.7" @@ -1521,23 +1334,23 @@ "issues": "https://github.com/craftcms/cms/issues?state=open", "forum": "https://craftcms.stackexchange.com/", "source": "https://github.com/craftcms/cms", - "docs": "https://craftcms.com/docs/4.x/", + "docs": "https://craftcms.com/docs/5.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-09-03T16:47:34+00:00" + "time": "2024-09-03T18:26:18+00:00" }, { "name": "craftcms/html-field", - "version": "2.1.0", + "version": "3.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/html-field/zipball/80c232ef92960748553afd27c87f2c0ef4bd4d93", - "reference": "80c232ef92960748553afd27c87f2c0ef4bd4d93", + "url": "https://api.github.com/repos/craftcms/html-field/zipball/34a5796c74e22d4ae80709541367114d03d280ca", + "reference": "34a5796c74e22d4ae80709541367114d03d280ca", "shasum": "" }, "require": { - "craftcms/cms": "^4.2.0", - "php": "^8.0.2" + "craftcms/cms": "^5.0.0-beta.1", + "php": "^8.2" }, "type": "library", "autoload": { @@ -1562,7 +1375,7 @@ "docs": "https://github.com/craftcms/html-field/blob/main/README.md", "rss": "https://github.com/craftcms/html-field/commits/main.atom" }, - "time": "2024-03-06T18:13:29+00:00" + "time": "2024-06-11T14:58:59+00:00" }, { "name": "craftcms/plugin-installer", @@ -1602,11 +1415,11 @@ }, { "name": "craftcms/server-check", - "version": "2.1.8", + "version": "5.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/server-check/zipball/c86e8aeabc73333111e2bfb4483d7b5402232e48", - "reference": "c86e8aeabc73333111e2bfb4483d7b5402232e48", + "url": "https://api.github.com/repos/craftcms/server-check/zipball/72d674834520d339006d2a32e3a59ae14b3a0ff6", + "reference": "72d674834520d339006d2a32e3a59ae14b3a0ff6", "shasum": "" }, "type": "library", @@ -1626,7 +1439,7 @@ "requirements", "yii2" ], - "time": "2023-09-25T17:28:37+00:00" + "time": "2024-01-23T23:20:44+00:00" }, { "name": "creocoder/yii2-nested-sets", @@ -1700,6 +1513,42 @@ ], "time": "2022-10-08T12:56:52+00:00" }, + { + "name": "dasprid/enum", + "version": "1.0.6", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90", + "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90", + "shasum": "" + }, + "require": { + "php": ">=7.1 <9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "DASPRiD\\Enum\\": "src/" + } + }, + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Ben Scholzen 'DASPRiD'", + "email": "mail@dasprids.de", + "homepage": "https://dasprids.de/", + "role": "Developer" + } + ], + "description": "PHP 7.1 enum implementation", + "keywords": [ + "enum", + "map" + ], + "time": "2024-08-09T14:30:48+00:00" + }, { "name": "davechild/textstatistics", "version": "1.0.3", @@ -2017,15 +1866,15 @@ }, { "name": "doublesecretagency/craft-cpcss", - "version": "2.6.0", + "version": "3.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/doublesecretagency/craft-cpcss/zipball/d9f3a9f1f2fc30b78a64dfbab13c9ebc4fe9d801", - "reference": "d9f3a9f1f2fc30b78a64dfbab13c9ebc4fe9d801", + "url": "https://api.github.com/repos/doublesecretagency/craft-cpcss/zipball/36ecacb6eed97a452e52d6b321834ed6c0a59522", + "reference": "36ecacb6eed97a452e52d6b321834ed6c0a59522", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", + "craftcms/cms": "^5.0.0-beta", "nystudio107/craft-code-editor": "^1.0.7" }, "type": "craft-plugin", @@ -2033,7 +1882,7 @@ "name": "Control Panel CSS", "handle": "cp-css", "schemaVersion": "2.0.0", - "changelogUrl": "https://raw.githubusercontent.com/doublesecretagency/craft-cpcss/v2/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/doublesecretagency/craft-cpcss/v3/CHANGELOG.md", "class": "doublesecretagency\\cpcss\\CpCss" }, "autoload": { @@ -2060,10 +1909,10 @@ "css" ], "support": { - "docs": "https://github.com/doublesecretagency/craft-cpcss/blob/v2/README.md", + "docs": "https://github.com/doublesecretagency/craft-cpcss/blob/v3/README.md", "issues": "https://github.com/doublesecretagency/craft-cpcss/issues" }, - "time": "2022-12-16T05:29:18+00:00" + "time": "2024-02-21T03:01:11+00:00" }, { "name": "egulias/email-validator", @@ -2323,11 +2172,11 @@ }, { "name": "google/auth", - "version": "v1.40.0", + "version": "v1.42.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/bff9f2d01677e71a98394b5ac981b99523df5178", - "reference": "bff9f2d01677e71a98394b5ac981b99523df5178", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/0c25599a91530b5847f129b271c536f75a7563f5", + "reference": "0c25599a91530b5847f129b271c536f75a7563f5", "shasum": "" }, "require": { @@ -2357,15 +2206,15 @@ "google", "oauth2" ], - "time": "2024-05-31T19:16:15+00:00" + "time": "2024-08-26T18:33:48+00:00" }, { "name": "google/cloud-core", - "version": "v1.59.0", + "version": "v1.59.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/56d31be2663780a7ed0736bee60d01f047bf15c0", - "reference": "56d31be2663780a7ed0736bee60d01f047bf15c0", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/35aae23dc4d0b860b6c3733e5cf381a510b506d9", + "reference": "35aae23dc4d0b860b6c3733e5cf381a510b506d9", "shasum": "" }, "require": { @@ -2404,15 +2253,15 @@ "Apache-2.0" ], "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.", - "time": "2024-06-07T22:33:41+00:00" + "time": "2024-08-10T02:24:23+00:00" }, { "name": "google/cloud-storage", - "version": "v1.42.0", + "version": "v1.42.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/1c77f5882c30bec95ab2837b9534a946325d1c57", - "reference": "1c77f5882c30bec95ab2837b9534a946325d1c57", + "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/2a418cad887e44d08a86de19a878ea3607212edb", + "reference": "2a418cad887e44d08a86de19a878ea3607212edb", "shasum": "" }, "require": { @@ -2442,15 +2291,15 @@ "Apache-2.0" ], "description": "Cloud Storage Client for PHP", - "time": "2024-05-19T17:27:42+00:00" + "time": "2024-07-08T23:14:13+00:00" }, { "name": "google/common-protos", - "version": "v4.6.0", + "version": "v4.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/f8588298a0a204aef2db15ce501530e476ec883f", - "reference": "f8588298a0a204aef2db15ce501530e476ec883f", + "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/e58068776f57605c336e32c7db373f0a81da17b8", + "reference": "e58068776f57605c336e32c7db373f0a81da17b8", "shasum": "" }, "require": { @@ -2481,15 +2330,15 @@ "keywords": [ "google" ], - "time": "2024-04-03T19:11:54+00:00" + "time": "2024-07-25T20:20:43+00:00" }, { "name": "google/gax", - "version": "v1.34.0", + "version": "v1.34.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/gax-php/zipball/28aa3e95969a75b278606a88448992a6396a119e", - "reference": "28aa3e95969a75b278606a88448992a6396a119e", + "url": "https://api.github.com/repos/googleapis/gax-php/zipball/173f0a97323284f91fd453c4ed7ed8317ecf6cfa", + "reference": "173f0a97323284f91fd453c4ed7ed8317ecf6cfa", "shasum": "" }, "require": { @@ -2522,7 +2371,7 @@ "keywords": [ "google" ], - "time": "2024-05-30T00:35:13+00:00" + "time": "2024-08-15T18:00:58+00:00" }, { "name": "google/grpc-gcp", @@ -2588,11 +2437,11 @@ }, { "name": "google/protobuf", - "version": "v4.27.2", + "version": "v4.28.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/1b9bfead0ea8108e6ab411258fc38417b62d4bf6", - "reference": "1b9bfead0ea8108e6ab411258fc38417b62d4bf6", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/17e3d804bf6631c2744c99575698f9cd4878b84f", + "reference": "17e3d804bf6631c2744c99575698f9cd4878b84f", "shasum": "" }, "require": { @@ -2616,20 +2465,20 @@ "keywords": [ "proto" ], - "time": "2024-06-25T19:14:44+00:00" + "time": "2024-08-28T17:54:02+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.1.2", + "version": "v1.1.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", - "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2" + "phpoption/phpoption": "^1.9.3" }, "type": "library", "autoload": { @@ -2655,7 +2504,7 @@ "Result-Type", "result" ], - "time": "2023-11-12T22:16:48+00:00" + "time": "2024-07-20T21:45:45+00:00" }, { "name": "grpc/grpc", @@ -2927,26 +2776,26 @@ }, { "name": "illuminate/collections", - "version": "v9.52.16", + "version": "v10.48.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/d3710b0b244bfc62c288c1a87eaa62dd28352d1f", - "reference": "d3710b0b244bfc62c288c1a87eaa62dd28352d1f", + "url": "https://api.github.com/repos/illuminate/collections/zipball/37c863cffb345869dd134eff8e646bc82a19cc96", + "reference": "37c863cffb345869dd134eff8e646bc82a19cc96", "shasum": "" }, "require": { - "illuminate/conditionable": "^9.0", - "illuminate/contracts": "^9.0", - "illuminate/macroable": "^9.0", - "php": "^8.0.2" + "illuminate/conditionable": "^10.0", + "illuminate/contracts": "^10.0", + "illuminate/macroable": "^10.0", + "php": "^8.1" }, "suggest": { - "symfony/var-dumper": "Required to use the dump method (^6.0)." + "symfony/var-dumper": "Required to use the dump method (^6.2)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -2968,15 +2817,15 @@ ], "description": "The Illuminate Collections package.", "homepage": "https://laravel.com", - "time": "2023-06-11T21:17:10+00:00" + "time": "2024-06-19T14:25:05+00:00" }, { "name": "illuminate/conditionable", - "version": "v9.52.16", + "version": "v10.48.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/conditionable/zipball/bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364", - "reference": "bea24daa0fa84b7e7b0d5b84f62c71b7e2dc3364", + "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009", + "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009", "shasum": "" }, "require": { @@ -2985,7 +2834,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -3004,26 +2853,26 @@ ], "description": "The Illuminate Conditionable package.", "homepage": "https://laravel.com", - "time": "2023-02-01T21:42:32+00:00" + "time": "2023-02-03T08:06:17+00:00" }, { "name": "illuminate/contracts", - "version": "v9.52.16", + "version": "v10.48.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/44f65d723b13823baa02ff69751a5948bde60c22", - "reference": "44f65d723b13823baa02ff69751a5948bde60c22", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", + "reference": "8d7152c4a1f5d9cf7da3e8b71f23e4556f6138ac", "shasum": "" }, "require": { - "php": "^8.0.2", + "php": "^8.1", "psr/container": "^1.1.1|^2.0.1", "psr/simple-cache": "^1.0|^2.0|^3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -3042,24 +2891,24 @@ ], "description": "The Illuminate Contracts package.", "homepage": "https://laravel.com", - "time": "2023-02-08T14:36:30+00:00" + "time": "2024-01-15T18:52:32+00:00" }, { "name": "illuminate/macroable", - "version": "v9.52.16", + "version": "v10.48.20", "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/macroable/zipball/e3bfaf6401742a9c6abca61b9b10e998e5b6449a", - "reference": "e3bfaf6401742a9c6abca61b9b10e998e5b6449a", + "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27", + "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27", "shasum": "" }, "require": { - "php": "^8.0.2" + "php": "^8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -3078,7 +2927,7 @@ ], "description": "The Illuminate Macroable package.", "homepage": "https://laravel.com", - "time": "2022-08-09T13:29:29+00:00" + "time": "2023-06-05T12:46:42+00:00" }, { "name": "imgix/imgix-php", @@ -3107,56 +2956,6 @@ ], "time": "2021-03-25T15:10:34+00:00" }, - { - "name": "justinrainbow/json-schema", - "version": "5.3.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", - "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "bin": [ - "bin/validate-json" - ], - "type": "library", - "autoload": { - "psr-4": { - "JsonSchema\\": "src/JsonSchema/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bruno Prieto Reis", - "email": "bruno.p.reis@gmail.com" - }, - { - "name": "Justin Rainbow", - "email": "justin.rainbow@gmail.com" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - }, - { - "name": "Robert Schönthal", - "email": "seroscho@googlemail.com" - } - ], - "description": "A library to validate a json schema.", - "homepage": "https://github.com/justinrainbow/json-schema", - "keywords": [ - "json", - "schema" - ], - "time": "2024-07-06T21:00:26+00:00" - }, { "name": "kelunik/certificate", "version": "v1.1.3", @@ -3307,6 +3106,40 @@ ], "time": "2022-11-12T10:09:40+00:00" }, + { + "name": "lcobucci/clock", + "version": "3.2.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/6f28b826ea01306b07980cb8320ab30b966cd715", + "reference": "6f28b826ea01306b07980cb8320ab30b966cd715", + "shasum": "" + }, + "require": { + "php": "~8.2.0 || ~8.3.0", + "psr/clock": "^1.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Lcobucci\\Clock\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Luís Cobucci", + "email": "lcobucci@gmail.com" + } + ], + "description": "Yet another clock abstraction", + "time": "2023-11-17T17:00:27+00:00" + }, { "name": "league/uri", "version": "7.4.1", @@ -3380,24 +3213,25 @@ "time": "2024-03-23T07:42:40+00:00" }, { - "name": "league/uri-interfaces", + "name": "league/uri-components", "version": "7.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", - "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", + "url": "https://api.github.com/repos/thephpleague/uri-components/zipball/b94fe4097885f1b51c4c3fcb78025fbbabbb5d9d", + "reference": "b94fe4097885f1b51c4c3fcb78025fbbabbb5d9d", "shasum": "" }, "require": { - "ext-filter": "*", - "php": "^8.1", - "psr/http-factory": "^1", - "psr/http-message": "^1.1 || ^2.0" + "league/uri": "^7.3", + "php": "^8.1" }, "suggest": { "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", "ext-gmp": "to improve IPV4 host parsing", "ext-intl": "to handle IDN host with the best performance", + "ext-mbstring": "to use the sorting algorithm of URLSearchParams", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", "php-64bit": "to improve IPV4 host parsing", "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, @@ -3422,58 +3256,58 @@ "homepage": "https://nyamsprod.com" } ], - "description": "Common interfaces and classes for URI representation and interaction", - "homepage": "https://uri.thephpleague.com", + "description": "URI components manipulation library", + "homepage": "http://uri.thephpleague.com", "keywords": [ - "data-uri", - "file-uri", - "ftp", - "hostname", - "http", - "https", - "parse_str", - "parse_url", - "psr-7", - "query-string", - "querystring", + "authority", + "components", + "fragment", + "host", + "middleware", + "modifier", + "path", + "port", + "query", "rfc3986", - "rfc3987", - "rfc6570", + "scheme", "uri", "url", - "ws" + "userinfo" ], "time": "2024-03-23T07:42:40+00:00" }, { - "name": "league/uri-parser", - "version": "1.4.1", + "name": "league/uri-interfaces", + "version": "7.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", - "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718", + "reference": "8d43ef5c841032c87e2de015972c06f3865ef718", "shasum": "" }, "require": { - "php": ">=7.0.0" + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" }, "suggest": { - "ext-intl": "Allow parsing RFC3987 compliant hosts", - "league/uri-schemes": "Allow validating and normalizing URI parsing results" + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "League\\Uri\\": "src" - }, - "files": [ - "src/functions_include.php" - ] + "League\\Uri\\": "" + } }, "license": [ "MIT" @@ -3485,17 +3319,28 @@ "homepage": "https://nyamsprod.com" } ], - "description": "userland URI parser RFC 3986 compliant", - "homepage": "https://github.com/thephpleague/uri-parser", + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", "parse_url", - "parser", + "psr-7", + "query-string", + "querystring", "rfc3986", "rfc3987", + "rfc6570", "uri", - "url" + "url", + "ws" ], - "time": "2018-11-22T07:55:51+00:00" + "time": "2024-03-23T07:42:40+00:00" }, { "name": "mikehaertl/php-shellcommand", @@ -3612,16 +3457,16 @@ }, { "name": "mmikkel/cp-field-inspect", - "version": "1.4.4", + "version": "2.0.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/mmikkel/CpFieldInspect-Craft/zipball/cab2693eaad03f35192356d8971879e9b0a0e098", - "reference": "cab2693eaad03f35192356d8971879e9b0a0e098", + "url": "https://api.github.com/repos/mmikkel/CpFieldInspect-Craft/zipball/413884283874038ce53d59ded040d0d1e4e9de49", + "reference": "413884283874038ce53d59ded040d0d1e4e9de49", "shasum": "" }, "require": { - "craftcms/cms": "^3.7.0|^4.0.0", - "php": "^7.2.5|^8.0" + "craftcms/cms": "^5.0.0", + "php": "^8.2" }, "type": "craft-plugin", "extra": { @@ -3644,7 +3489,7 @@ "authors": [ { "name": "Mats Mikkel Rummelhoff", - "homepage": "http://mmikkel.no" + "homepage": "https://vaersaagod.no" } ], "description": "Inspect field handles and easily edit field and element source settings", @@ -3659,7 +3504,7 @@ "docs": "https://github.com/mmikkel/CpFieldInspect-Craft/blob/master/README.md", "issues": "https://github.com/mmikkel/CpFieldInspect-Craft/issues" }, - "time": "2022-05-07T15:24:35+00:00" + "time": "2024-08-05T07:41:21+00:00" }, { "name": "moneyphp/money", @@ -3723,19 +3568,19 @@ }, { "name": "monolog/monolog", - "version": "2.9.3", + "version": "3.7.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215", - "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8", + "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8", "shasum": "" }, "require": { - "php": ">=7.2", - "psr/log": "^1.0.1 || ^2.0 || ^3.0" + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" }, "provide": { - "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + "psr/log-implementation": "3.0.0" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", @@ -3756,7 +3601,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { @@ -3781,28 +3626,37 @@ "logging", "psr-3" ], - "time": "2024-04-12T20:52:51+00:00" + "time": "2024-06-28T09:40:51+00:00" }, { "name": "mtdowling/jmespath.php", - "version": "2.7.0", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/jmespath/jmespath.php.git", + "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc" + }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b", - "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc", + "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0", "symfony/polyfill-mbstring": "^1.17" }, + "require-dev": { + "composer/xdebug-handler": "^3.0.3", + "phpunit/phpunit": "^8.5.33" + }, "bin": [ "bin/jp.php" ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7-dev" + "dev-master": "2.8-dev" } }, "autoload": { @@ -3813,6 +3667,7 @@ "JmesPath\\": "src/" } }, + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -3833,7 +3688,11 @@ "json", "jsonpath" ], - "time": "2023-08-25T10:54:48+00:00" + "support": { + "issues": "https://github.com/jmespath/jmespath.php/issues", + "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0" + }, + "time": "2024-09-04T18:46:31+00:00" }, { "name": "nystudio107/craft-code-editor", @@ -3883,22 +3742,23 @@ }, { "name": "nystudio107/craft-code-field", - "version": "4.0.12", + "version": "5.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-code-field/zipball/c9b614594c5b5c09c8e17779aafaf0e835adae2f", - "reference": "c9b614594c5b5c09c8e17779aafaf0e835adae2f", + "url": "https://api.github.com/repos/nystudio107/craft-code-field/zipball/d3b6d2ca921bf3c3f80c2bb39a5727968f89145b", + "reference": "d3b6d2ca921bf3c3f80c2bb39a5727968f89145b", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", - "nystudio107/craft-code-editor": "^1.0.11" + "craftcms/cms": "^5.0.0", + "nystudio107/craft-code-editor": "^1.0.14", + "php": "^8.2" }, "type": "craft-plugin", "extra": { "name": "Code Field", "handle": "codefield", - "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-code-field/v4/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-code-field/v5/CHANGELOG.md", "class": "nystudio107\\codefield\\CodeField" }, "autoload": { @@ -3924,22 +3784,23 @@ "craftcms" ], "support": { - "docs": "https://github.com/nystudio107/craft-code-field/blob/v4/README.md", + "docs": "https://github.com/nystudio107/craft-code-field/blob/v5/README.md", "issues": "https://github.com/nystudio107/craft-code-field/issues" }, - "time": "2024-01-16T04:36:40+00:00" + "time": "2024-04-15T17:34:05+00:00" }, { "name": "nystudio107/craft-emptycoalesce", - "version": "4.0.0", + "version": "5.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-emptycoalesce/zipball/4c63741b2baef5ca032e441b022b4d19ff8089b8", - "reference": "4c63741b2baef5ca032e441b022b4d19ff8089b8", + "url": "https://api.github.com/repos/nystudio107/craft-emptycoalesce/zipball/a763fa66706444382f03cedcb6b5aa0ccb46430e", + "reference": "a763fa66706444382f03cedcb6b5aa0ccb46430e", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0-beta.1" + "craftcms/cms": "^5.0.0", + "php": "^8.2" }, "type": "craft-plugin", "extra": { @@ -3977,19 +3838,19 @@ "issues": "https://nystudio107.com/plugins/empty-coalesce/support", "source": "https://github.com/nystudio107/craft-emptycoalesce" }, - "time": "2022-08-05T15:55:28+00:00" + "time": "2024-04-13T19:01:43+00:00" }, { "name": "nystudio107/craft-plugin-vite", - "version": "4.0.12", + "version": "5.0.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/ddb7acea4506837928e19cd3e46e20f7ba5689d3", - "reference": "ddb7acea4506837928e19cd3e46e20f7ba5689d3", + "url": "https://api.github.com/repos/nystudio107/craft-plugin-vite/zipball/023ea9013f03ac8b15c9b800c66943ce4d02cf48", + "reference": "023ea9013f03ac8b15c9b800c66943ce4d02cf48", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0" + "craftcms/cms": "^5.0.0" }, "type": "library", "autoload": { @@ -4013,10 +3874,10 @@ "vite" ], "support": { - "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v4/README.md", + "docs": "https://github.com/nystudio107/craft-plugin-vite/blob/v5/README.md", "issues": "https://github.com/nystudio107/craft-plugin-vite/issues" }, - "time": "2024-08-14T02:01:17+00:00" + "time": "2024-08-14T02:02:01+00:00" }, { "name": "nystudio107/craft-scripts", @@ -4065,19 +3926,19 @@ }, { "name": "nystudio107/craft-seomatic", - "version": "4.1.2", + "version": "5.1.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/3a38942088d61c2b49267586ca4257b96cdf14d9", - "reference": "3a38942088d61c2b49267586ca4257b96cdf14d9", + "url": "https://api.github.com/repos/nystudio107/craft-seomatic/zipball/50a9bb7058cfb089758ca869b3096007eb222b94", + "reference": "50a9bb7058cfb089758ca869b3096007eb222b94", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", + "craftcms/cms": "^5.0.0", "davechild/textstatistics": "^1.0.3", - "nystudio107/craft-code-editor": "^1.0.0", - "nystudio107/craft-plugin-vite": "^4.0.7", - "php": "^8.0.2", + "nystudio107/craft-code-editor": "^1.0.14", + "nystudio107/craft-plugin-vite": "^5.0.0", + "php": "^8.2", "php-science/textrank": "^1.0.3", "sunra/php-simple-html-dom-parser": "^1.5.2" }, @@ -4101,7 +3962,7 @@ "homepage": "https://nystudio107.com" } ], - "description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 4. It is a turnkey SEO system that is comprehensive, powerful, and flexible.", + "description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 5. It is a turnkey SEO system that is comprehensive, powerful, and flexible.", "keywords": [ "cms", "craft", @@ -4121,24 +3982,25 @@ "issues": "https://nystudio107.com/plugins/seomatic/support", "source": "https://github.com/nystudio107/craft-seomatic" }, - "time": "2024-08-15T15:36:03+00:00" + "time": "2024-08-15T15:36:50+00:00" }, { "name": "nystudio107/craft-vite", - "version": "4.0.10", + "version": "5.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/a9069abffb8aafdb5245bd0b1ce8ef27845bd683", - "reference": "a9069abffb8aafdb5245bd0b1ce8ef27845bd683", + "url": "https://api.github.com/repos/nystudio107/craft-vite/zipball/a2eaa9beb4abf1add99e8fc7892e8df57c6b49e8", + "reference": "a2eaa9beb4abf1add99e8fc7892e8df57c6b49e8", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", - "nystudio107/craft-plugin-vite": "^4.0.12" + "craftcms/cms": "^5.0.0", + "nystudio107/craft-plugin-vite": "^5.0.2", + "php": "^8.2" }, "type": "craft-plugin", "extra": { - "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-vite/v4/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-vite/v5/CHANGELOG.md", "class": "nystudio107\\vite\\Vite", "handle": "vite", "name": "Vite" @@ -4170,7 +4032,7 @@ "issues": "https://nystudio107.com/plugins/vite/support", "source": "https://github.com/nystudio107/craft-vite" }, - "time": "2024-08-14T02:04:28+00:00" + "time": "2024-08-14T02:05:18+00:00" }, { "name": "oscarotero/html-parser", @@ -4210,6 +4072,58 @@ ], "time": "2023-11-29T20:28:41+00:00" }, + { + "name": "paragonie/constant_time_encoding", + "version": "v3.0.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", + "shasum": "" + }, + "require": { + "php": "^8" + }, + "type": "library", + "autoload": { + "psr-4": { + "ParagonIE\\ConstantTime\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com", + "role": "Maintainer" + }, + { + "name": "Steve 'Sc00bz' Thomas", + "email": "steve@tobtu.com", + "homepage": "https://www.tobtu.com", + "role": "Original Developer" + } + ], + "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", + "keywords": [ + "base16", + "base32", + "base32_decode", + "base32_encode", + "base64", + "base64_decode", + "base64_encode", + "bin2hex", + "encoding", + "hex", + "hex2bin", + "rfc4648" + ], + "time": "2024-05-08T12:36:18+00:00" + }, { "name": "paragonie/random_compat", "version": "v9.99.100", @@ -4585,6 +4499,163 @@ ], "time": "2023-01-03T19:18:06+00:00" }, + { + "name": "pragmarx/google2fa", + "version": "8.x-dev", + "source": { + "type": "git", + "url": "https://github.com/antonioribeiro/google2fa.git", + "reference": "825fb0614534fbaee742df30463297ac5ecf417e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/825fb0614534fbaee742df30463297ac5ecf417e", + "reference": "825fb0614534fbaee742df30463297ac5ecf417e", + "shasum": "" + }, + "require": { + "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0", + "php": "^7.1|^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^7.5.15|^8.5|^9.0" + }, + "default-branch": true, + "type": "library", + "autoload": { + "psr-4": { + "PragmaRX\\Google2FA\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "role": "Creator & Designer" + } + ], + "description": "A One Time Password Authentication package, compatible with Google Authenticator.", + "keywords": [ + "2fa", + "Authentication", + "Two Factor Authentication", + "google2fa" + ], + "support": { + "issues": "https://github.com/antonioribeiro/google2fa/issues", + "source": "https://github.com/antonioribeiro/google2fa/tree/8.x" + }, + "time": "2024-07-13T11:36:19+00:00" + }, + { + "name": "pragmarx/random", + "version": "v0.2.2", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/random/zipball/daf08a189c5d2d40d1a827db46364d3a741a51b7", + "reference": "daf08a189c5d2d40d1a827db46364d3a741a51b7", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "suggest": { + "fzaninotto/faker": "Allows you to get dozens of randomized types", + "pragmarx/trivia": "For the trivia database" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "PragmaRX\\Random\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "homepage": "https://antoniocarlosribeiro.com", + "role": "Developer" + } + ], + "description": "Create random chars, numbers, strings", + "homepage": "https://github.com/antonioribeiro/random", + "keywords": [ + "Randomize", + "faker", + "pragmarx", + "random", + "random number", + "random pattern", + "random string" + ], + "time": "2017-11-21T05:26:22+00:00" + }, + { + "name": "pragmarx/recovery", + "version": "v0.2.1", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/recovery/zipball/b5ce4082f059afac6761714a84497816f45271cc", + "reference": "b5ce4082f059afac6761714a84497816f45271cc", + "shasum": "" + }, + "require": { + "php": ">=7.0", + "pragmarx/random": "~0.1" + }, + "suggest": { + "tightenco/collect": "Allows to generate recovery codes as collections" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "PragmaRX\\Recovery\\": "src" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "homepage": "https://antoniocarlosribeiro.com", + "role": "Developer" + } + ], + "description": "Create recovery codes for two factor auth", + "homepage": "https://github.com/antonioribeiro/recovery", + "keywords": [ + "2fa", + "account recovery", + "auth", + "backup codes", + "google2fa", + "pragmarx", + "recovery", + "recovery codes", + "two factor auth" + ], + "time": "2021-08-15T12:26:51+00:00" + }, { "name": "psr/cache", "version": "3.0.0", @@ -4625,6 +4696,44 @@ ], "time": "2021-02-03T23:26:27+00:00" }, + { + "name": "psr/clock", + "version": "1.0.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "time": "2022-11-25T14:36:26+00:00" + }, { "name": "psr/container", "version": "2.0.2", @@ -4926,21 +5035,20 @@ }, { "name": "putyourlightson/craft-blitz", - "version": "4.23.0", + "version": "5.7.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/1c5289f4281e8b905cbfced538b31fa1803cf361", - "reference": "1c5289f4281e8b905cbfced538b31fa1803cf361", + "url": "https://api.github.com/repos/putyourlightson/craft-blitz/zipball/4d81357a4f0048c4ea19113c95d44dca2cc3bb99", + "reference": "4d81357a4f0048c4ea19113c95d44dca2cc3bb99", "shasum": "" }, "require": { - "amphp/http-client": "^4.0", - "amphp/parallel": "^1.0", - "craftcms/cms": "^4.5.11", + "amphp/http-client": "^5.0", + "amphp/parallel": "^2.0", + "craftcms/cms": "^5.0", "cypresslab/gitelephant": "^4.0", - "php": "^8.0.2", - "putyourlightson/craft-blitz-hints": "^1.2.2", - "putyourlightson/craft-sprig-core": "^2.7.3" + "php": "^8.2", + "putyourlightson/craft-sprig-core": "^3.0" }, "type": "craft-plugin", "extra": { @@ -4949,7 +5057,7 @@ "developer": "PutYourLightsOn", "developerUrl": "https://putyourlightson.com/", "documentationUrl": "https://putyourlightson.com/plugins/blitz", - "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-blitz/v4/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-blitz/develop/CHANGELOG.md", "class": "putyourlightson\\blitz\\Blitz" }, "autoload": { @@ -4975,50 +5083,20 @@ "source": "https://github.com/putyourlightson/craft-blitz", "issues": "https://github.com/putyourlightson/craft-blitz/issues" }, - "time": "2024-08-29T06:03:54+00:00" - }, - { - "name": "putyourlightson/craft-blitz-hints", - "version": "1.2.3", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-blitz-hints/zipball/a7a95485454ee61e7093a362f15c33d075fd2dd9", - "reference": "a7a95485454ee61e7093a362f15c33d075fd2dd9", - "shasum": "" - }, - "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" - }, - "type": "craft-module", - "autoload": { - "psr-4": { - "putyourlightson\\blitzhints\\": "src/" - } - }, - "license": [ - "mit" - ], - "description": "Provides templating performance hints.", - "support": { - "docs": "https://github.com/putyourlightson/craft-blitz-hints", - "source": "https://github.com/putyourlightson/craft-blitz-hints", - "issues": "https://github.com/putyourlightson/craft-blitz-hints/issues" - }, - "time": "2024-04-16T14:56:13+00:00" + "time": "2024-08-29T06:03:30+00:00" }, { "name": "putyourlightson/craft-elements-panel", - "version": "2.0.0", + "version": "3.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-elements-panel/zipball/7775c4fb0eb996544c6365863e14a986c0159592", - "reference": "7775c4fb0eb996544c6365863e14a986c0159592", + "url": "https://api.github.com/repos/putyourlightson/craft-elements-panel/zipball/4f9c9b7c42f09c374a1c70e15d0c98b149b90474", + "reference": "4f9c9b7c42f09c374a1c70e15d0c98b149b90474", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" + "craftcms/cms": "^5.0", + "php": "^8.2" }, "type": "craft-plugin", "extra": { @@ -5027,7 +5105,7 @@ "developer": "PutYourLightsOn", "developerUrl": "https://putyourlightson.com/", "documentationUrl": "https://putyourlightson.com/plugins/elements-panel", - "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-elements-panel/v2/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-elements-panel/develop/CHANGELOG.md", "class": "putyourlightson\\elementspanel\\ElementsPanel" }, "autoload": { @@ -5036,7 +5114,7 @@ } }, "license": [ - "mit" + "proprietary" ], "description": "Adds an Elements and an Eager-Loading panel to the debug toolbar.", "support": { @@ -5044,22 +5122,22 @@ "source": "https://github.com/putyourlightson/craft-elements-panel", "issues": "https://github.com/putyourlightson/craft-elements-panel/issues" }, - "time": "2022-05-04T18:44:34+00:00" + "time": "2024-04-08T13:58:30+00:00" }, { "name": "putyourlightson/craft-sprig", - "version": "2.13.0", + "version": "3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/50de7c4c9132317e443318c781daa60111fc03ba", - "reference": "50de7c4c9132317e443318c781daa60111fc03ba", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig/zipball/f54ad7f1126b9d9a5485599a1a594611b9f502ff", + "reference": "f54ad7f1126b9d9a5485599a1a594611b9f502ff", "shasum": "" }, "require": { - "craftcms/cms": "^4.0", - "nystudio107/craft-code-editor": "^1.0.0", - "php": "^8.0.2", - "putyourlightson/craft-sprig-core": "^2.12.0" + "craftcms/cms": "^5.0", + "nystudio107/craft-code-editor": "^1.0", + "php": "^8.2", + "putyourlightson/craft-sprig-core": "^3.5.0" }, "type": "craft-plugin", "extra": { @@ -5068,7 +5146,7 @@ "developer": "PutYourLightsOn", "developerUrl": "https://putyourlightson.com/", "documentationUrl": "https://putyourlightson.com/plugins/sprig", - "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-sprig/v2/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/putyourlightson/craft-sprig/develop/CHANGELOG.md", "class": "putyourlightson\\sprig\\plugin\\Sprig" }, "autoload": { @@ -5085,20 +5163,20 @@ "source": "https://github.com/putyourlightson/craft-sprig", "issues": "https://github.com/putyourlightson/craft-sprig/issues" }, - "time": "2024-08-29T11:35:06+00:00" + "time": "2024-08-29T11:37:35+00:00" }, { "name": "putyourlightson/craft-sprig-core", - "version": "2.12.0", + "version": "3.5.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/513f544110cabc41b28dfad2f31ca6bb6f77a27f", - "reference": "513f544110cabc41b28dfad2f31ca6bb6f77a27f", + "url": "https://api.github.com/repos/putyourlightson/craft-sprig-core/zipball/cdf6e056298a1229197b13edbaa2ad92810fe9c1", + "reference": "cdf6e056298a1229197b13edbaa2ad92810fe9c1", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" + "craftcms/cms": "^5.0", + "php": "^8.2" }, "type": "craft-module", "autoload": { @@ -5115,7 +5193,7 @@ "source": "https://github.com/putyourlightson/craft-sprig-core", "issues": "https://github.com/putyourlightson/craft-sprig-core/issues" }, - "time": "2024-08-29T11:34:07+00:00" + "time": "2024-08-29T07:36:29+00:00" }, { "name": "ralouphie/getallheaders", @@ -5245,24 +5323,26 @@ "time": "2024-04-27T21:32:50+00:00" }, { - "name": "react/promise", - "version": "v3.2.0", + "name": "revolt/event-loop", + "version": "v1.0.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", - "reference": "8a164643313c71354582dc850b42b33fa12a4b63", + "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/25de49af7223ba039f64da4ae9a28ec2d10d0254", + "reference": "25de49af7223ba039f64da4ae9a28ec2d10d0254", "shasum": "" }, "require": { - "php": ">=7.1.0" + "php": ">=8.1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { - "React\\Promise\\": "src/" + "Revolt\\": "src" } }, "license": [ @@ -5270,40 +5350,41 @@ ], "authors": [ { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" }, { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" + "name": "Cees-Jan Kiewiet", + "email": "ceesjank@gmail.com" }, { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" + "name": "Christian Lück", + "email": "christian@clue.engineering" }, { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" + "name": "Niklas Keller", + "email": "me@kelunik.com" } ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "description": "Rock-solid event loop for concurrent PHP applications.", "keywords": [ - "promise", - "promises" + "async", + "asynchronous", + "concurrency", + "event", + "event-loop", + "non-blocking", + "scheduler" ], - "time": "2024-05-24T10:39:05+00:00" + "time": "2023-11-30T05:34:44+00:00" }, { "name": "rize/uri-template", - "version": "0.3.6", + "version": "0.3.8", "dist": { "type": "zip", - "url": "https://api.github.com/repos/rize/UriTemplate/zipball/34efe65c79710eed0883884f2285ae6d4a0aad19", - "reference": "34efe65c79710eed0883884f2285ae6d4a0aad19", + "url": "https://api.github.com/repos/rize/UriTemplate/zipball/34a5b96d0b65a5dddb7d20f09b6527a43faede24", + "reference": "34a5b96d0b65a5dddb7d20f09b6527a43faede24", "shasum": "" }, "require": { @@ -5330,7 +5411,7 @@ "template", "uri" ], - "time": "2024-03-10T08:07:49+00:00" + "time": "2024-08-30T07:09:40+00:00" }, { "name": "samdark/yii2-psr-log-target", @@ -5414,104 +5495,92 @@ "time": "2020-12-15T21:32:01+00:00" }, { - "name": "seld/jsonlint", - "version": "1.11.0", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", - "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", - "shasum": "" - }, - "require": { - "php": "^5.3 || ^7.0 || ^8.0" - }, - "bin": [ - "bin/jsonlint" - ], - "type": "library", - "autoload": { - "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" - } - ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], - "time": "2024-07-11T14:55:45+00:00" - }, - { - "name": "seld/phar-utils", - "version": "1.2.1", + "name": "spacecatninja/imager-x", + "version": "5.0.2", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/5c130e07a519179dd8f29cda3b53986201017f7e", + "reference": "5c130e07a519179dd8f29cda3b53986201017f7e", "shasum": "" }, "require": { - "php": ">=5.3" + "aws/aws-sdk-php": "^3.0.0", + "craftcms/cms": "^5.0.0", + "google/cloud-storage": "~1.0", + "imgix/imgix-php": "^3.0", + "kornrunner/blurhash": "^1.1", + "kraken-io/kraken-php": "^1.2", + "ksubileau/color-thief-php": "^1.3|^2.0", + "mikehaertl/php-shellcommand": "^1.2", + "php": "^8.2", + "ssnepenthe/color-utils": "~0.4", + "tinify/tinify": ">=1.1.1" }, - "type": "library", + "type": "craft-plugin", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } + "name": "Imager X", + "handle": "imager-x", + "schemaVersion": "4.0.0", + "hasCpSettings": false, + "hasCpSection": false, + "changelogUrl": "https://raw.githubusercontent.com/spacecatninja/craft-imager-x/master/CHANGELOG.md", + "components": [], + "class": "spacecatninja\\imagerx\\ImagerX" }, "autoload": { "psr-4": { - "Seld\\PharUtils\\": "src/" + "spacecatninja\\imagerx\\": "src/" } }, "license": [ - "MIT" + "proprietary" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" + "name": "SPACECATNINJA", + "homepage": "https://www.spacecat.ninja" } ], - "description": "PHAR file format utilities, for when PHP phars you up", + "description": "Ninja powered image transforms.", "keywords": [ - "phar" + "cms", + "craft", + "craft-plugin", + "craftcms", + "image", + "picture", + "responsive", + "srcset", + "transform" ], - "time": "2022-08-31T10:31:18+00:00" + "support": { + "docs": "http://imager-x.spacecat.ninja/", + "issues": "https://github.com/spacecatninja/craft-imager-x/issues" + }, + "time": "2024-08-08T11:34:30+00:00" }, { - "name": "seld/signal-handler", - "version": "2.0.2", + "name": "spomky-labs/cbor-php", + "version": "3.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", - "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "url": "https://api.github.com/repos/Spomky-Labs/cbor-php/zipball/499d9bff0a6d59c4f1b813cc617fc3fd56d6dca4", + "reference": "499d9bff0a6d59c4f1b813cc617fc3fd56d6dca4", "shasum": "" }, "require": { - "php": ">=7.2.0" + "brick/math": "^0.9|^0.10|^0.11|^0.12", + "ext-mbstring": "*", + "php": ">=8.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.x-dev" - } + "suggest": { + "ext-bcmath": "GMP or BCMath extensions will drastically improve the library performance. BCMath extension needed to handle the Big Float and Decimal Fraction Tags", + "ext-gmp": "GMP or BCMath extensions will drastically improve the library performance" }, + "type": "library", "autoload": { "psr-4": { - "Seld\\Signal\\": "src/" + "CBOR\\": "src/" } }, "license": [ @@ -5519,85 +5588,92 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Florent Morselli", + "homepage": "https://github.com/Spomky" + }, + { + "name": "All contributors", + "homepage": "https://github.com/Spomky-Labs/cbor-php/contributors" } ], - "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", + "description": "CBOR Encoder/Decoder for PHP", "keywords": [ - "posix", - "sigint", - "signal", - "sigterm", - "unix" + "Concise Binary Object Representation", + "RFC7049", + "cbor" ], - "time": "2023-09-03T09:24:00+00:00" + "time": "2024-07-18T08:37:03+00:00" }, { - "name": "spacecatninja/imager-x", - "version": "4.4.1", + "name": "spomky-labs/pki-framework", + "version": "1.2.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/spacecatninja/craft-imager-x/zipball/cc7d1521366ff3c32067f3ab5e9b33a71a8848b1", - "reference": "cc7d1521366ff3c32067f3ab5e9b33a71a8848b1", + "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/0b10c8b53366729417d6226ae89a665f9e2d61b6", + "reference": "0b10c8b53366729417d6226ae89a665f9e2d61b6", "shasum": "" }, "require": { - "aws/aws-sdk-php": "^3.0.0", - "craftcms/cms": "^4.5.0", - "google/cloud-storage": "~1.0", - "imgix/imgix-php": "^3.0", - "kornrunner/blurhash": "^1.1", - "kraken-io/kraken-php": "^1.2", - "ksubileau/color-thief-php": "^1.3|^2.0", - "mikehaertl/php-shellcommand": "^1.2", - "php": "^8.0", - "ssnepenthe/color-utils": "~0.4", - "tinify/tinify": ">=1.1.1" + "brick/math": "^0.10|^0.11|^0.12", + "ext-mbstring": "*", + "php": ">=8.1" }, - "type": "craft-plugin", - "extra": { - "name": "Imager X", - "handle": "imager-x", - "schemaVersion": "4.0.0", - "hasCpSettings": false, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/spacecatninja/craft-imager-x/master/CHANGELOG.md", - "components": [], - "class": "spacecatninja\\imagerx\\ImagerX" + "suggest": { + "ext-bcmath": "For better performance (or GMP)", + "ext-gmp": "For better performance (or BCMath)", + "ext-openssl": "For OpenSSL based cyphering" }, + "type": "library", "autoload": { "psr-4": { - "spacecatninja\\imagerx\\": "src/" + "SpomkyLabs\\Pki\\": "src/" } }, "license": [ - "proprietary" + "MIT" ], "authors": [ { - "name": "SPACECATNINJA", - "homepage": "https://www.spacecat.ninja" + "name": "Joni Eskelinen", + "email": "jonieske@gmail.com", + "role": "Original developer" + }, + { + "name": "Florent Morselli", + "email": "florent.morselli@spomky-labs.com", + "role": "Spomky-Labs PKI Framework developer" } ], - "description": "Ninja powered image transforms.", + "description": "A PHP framework for managing Public Key Infrastructures. It comprises X.509 public key certificates, attribute certificates, certification requests and certification path validation.", + "homepage": "https://github.com/spomky-labs/pki-framework", "keywords": [ - "cms", - "craft", - "craft-plugin", - "craftcms", - "image", - "picture", - "responsive", - "srcset", - "transform" + "DER", + "Private Key", + "ac", + "algorithm identifier", + "asn.1", + "asn1", + "attribute certificate", + "certificate", + "certification request", + "cryptography", + "csr", + "decrypt", + "ec", + "encrypt", + "pem", + "pkcs", + "public key", + "rsa", + "sign", + "signature", + "verify", + "x.509", + "x.690", + "x509", + "x690" ], - "support": { - "docs": "http://imager-x.spacecat.ninja/", - "issues": "https://github.com/spacecatninja/craft-imager-x/issues" - }, - "time": "2024-06-24T20:31:41+00:00" + "time": "2024-03-30T18:03:49+00:00" }, { "name": "ssnepenthe/color-utils", @@ -5695,64 +5771,6 @@ ], "time": "2016-11-22T22:57:47+00:00" }, - { - "name": "symfony/console", - "version": "v6.4.11", - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998", - "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0|^7.0" - }, - "conflict": { - "symfony/dependency-injection": "<5.4", - "symfony/dotenv": "<5.4", - "symfony/event-dispatcher": "<5.4", - "symfony/lock": "<5.4", - "symfony/process": "<5.4" - }, - "provide": { - "psr/log-implementation": "1.0|2.0|3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Eases the creation of beautiful and testable command line interfaces", - "homepage": "https://symfony.com", - "keywords": [ - "cli", - "command-line", - "console", - "terminal" - ], - "time": "2024-08-15T22:48:29+00:00" - }, { "name": "symfony/deprecation-contracts", "version": "v3.5.0", @@ -5899,15 +5917,15 @@ }, { "name": "symfony/filesystem", - "version": "v7.1.2", + "version": "v6.4.9", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/92a91985250c251de9b947a14bb2c9390b1a562c", - "reference": "92a91985250c251de9b947a14bb2c9390b1a562c", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/b51ef8059159330b74a4d52f68e671033c0fe463", + "reference": "b51ef8059159330b74a4d52f68e671033c0fe463", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.1", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, @@ -5935,7 +5953,7 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2024-06-28T10:03:55+00:00" + "time": "2024-06-28T09:49:33+00:00" }, { "name": "symfony/finder", @@ -6582,12 +6600,12 @@ "time": "2024-06-19T12:30:46+00:00" }, { - "name": "symfony/polyfill-php73", + "name": "symfony/polyfill-php80", "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/ec444d3f3f6505bb28d11afa41e75faadebc10a1", - "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", + "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", "shasum": "" }, "require": { @@ -6605,7 +6623,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" + "Symfony\\Polyfill\\Php80\\": "" }, "classmap": [ "Resources/stubs" @@ -6615,6 +6633,10 @@ "MIT" ], "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -6624,7 +6646,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -6635,12 +6657,12 @@ "time": "2024-05-31T15:07:36+00:00" }, { - "name": "symfony/polyfill-php80", + "name": "symfony/polyfill-php81", "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", + "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", "shasum": "" }, "require": { @@ -6658,7 +6680,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" + "Symfony\\Polyfill\\Php81\\": "" }, "classmap": [ "Resources/stubs" @@ -6668,10 +6690,6 @@ "MIT" ], "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -6681,7 +6699,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -6689,20 +6707,26 @@ "portable", "shim" ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { - "name": "symfony/polyfill-php81", + "name": "symfony/polyfill-uuid", "version": "v1.30.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", - "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9", + "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9", "shasum": "" }, "require": { "php": ">=7.1" }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, "type": "library", "extra": { "thanks": { @@ -6711,14 +6735,151 @@ } }, "autoload": { - "files": [ - "bootstrap.php" - ], + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "time": "2024-05-31T15:07:36+00:00" + }, + { + "name": "symfony/process", + "version": "v7.1.3", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca", + "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "time": "2024-07-26T12:44:47+00:00" + }, + { + "name": "symfony/property-access", + "version": "v7.1.4", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/property-access/zipball/6c709f97103355016e5782d0622437ae381012ad", + "reference": "6c709f97103355016e5782d0622437ae381012ad", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/property-info": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\PropertyAccess\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides functions to read and write from/to an object or array using a simple string notation", + "homepage": "https://symfony.com", + "keywords": [ + "access", + "array", + "extraction", + "index", + "injection", + "object", + "property", + "property-path", + "reflection" + ], + "time": "2024-08-30T16:12:47+00:00" + }, + { + "name": "symfony/property-info", + "version": "v7.1.3", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/property-info/zipball/88a279df2db5b7919cac6f35d6a5d1d7147e6a9b", + "reference": "88a279df2db5b7919cac6f35d6a5d1d7147e6a9b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/string": "^6.4|^7.0", + "symfony/type-info": "^7.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<5.2", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/dependency-injection": "<6.4", + "symfony/serializer": "<6.4" + }, + "type": "library", + "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" + "Symfony\\Component\\PropertyInfo\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "license": [ @@ -6726,40 +6887,55 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Kévin Dunglas", + "email": "dunglas@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "description": "Extracts information about PHP class' properties using metadata of popular sources", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "doctrine", + "phpdoc", + "property", + "symfony", + "type", + "validator" ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-07-26T07:36:36+00:00" }, { - "name": "symfony/process", - "version": "v7.1.3", + "name": "symfony/serializer", + "version": "v6.4.11", "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca", - "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca", + "url": "https://api.github.com/repos/symfony/serializer/zipball/a75d03d7720417f8a654e73e8f02acdea8779cd0", + "reference": "a75d03d7720417f8a654e73e8f02acdea8779cd0", "shasum": "" }, "require": { - "php": ">=8.2" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/dependency-injection": "<5.4", + "symfony/property-access": "<5.4", + "symfony/property-info": "<5.4.24|>=6,<6.2.11", + "symfony/uid": "<5.4", + "symfony/validator": "<6.4", + "symfony/yaml": "<5.4" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Process\\": "" + "Symfony\\Component\\Serializer\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -6778,9 +6954,9 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Executes commands in sub-processes", + "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", - "time": "2024-07-26T12:44:47+00:00" + "time": "2024-08-17T07:51:47+00:00" }, { "name": "symfony/service-contracts", @@ -6898,6 +7074,108 @@ ], "time": "2024-08-12T09:59:40+00:00" }, + { + "name": "symfony/type-info", + "version": "v7.1.1", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/type-info/zipball/60b28eb733f1453287f1263ed305b96091e0d1dc", + "reference": "60b28eb733f1453287f1263ed305b96091e0d1dc", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "phpstan/phpdoc-parser": "<1.0", + "symfony/dependency-injection": "<6.4", + "symfony/property-info": "<6.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\TypeInfo\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathias Arlaud", + "email": "mathias.arlaud@gmail.com" + }, + { + "name": "Baptiste LEDUC", + "email": "baptiste.leduc@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Extracts PHP types information.", + "homepage": "https://symfony.com", + "keywords": [ + "PHPStan", + "phpdoc", + "symfony", + "type" + ], + "time": "2024-05-31T14:59:31+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.1.4", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/82177535395109075cdb45a70533aa3d7a521cdf", + "reference": "82177535395109075cdb45a70533aa3d7a521cdf", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "time": "2024-08-12T09:59:40+00:00" + }, { "name": "symfony/var-dumper", "version": "v5.4.43", @@ -7164,16 +7442,16 @@ }, { "name": "verbb/base", - "version": "2.0.8", + "version": "3.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/verbb-base/zipball/1445a89d7a360d3ba8bba97c47a10c6f1aa27307", - "reference": "1445a89d7a360d3ba8bba97c47a10c6f1aa27307", + "url": "https://api.github.com/repos/verbb/verbb-base/zipball/7ea47a8734a71fd852a49fa455d581dbcc5f08a7", + "reference": "7ea47a8734a71fd852a49fa455d581dbcc5f08a7", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", - "php": "^8.0.2" + "craftcms/cms": "^5.0.0", + "php": "^8.2" }, "type": "yii-module", "autoload": { @@ -7191,29 +7469,29 @@ } ], "description": "Common utilities and building-blocks for Verbb plugins for Craft CMS.", - "time": "2024-06-10T09:00:32+00:00" + "time": "2024-06-10T09:02:06+00:00" }, { "name": "verbb/hyper", - "version": "1.2.1", + "version": "2.0.4", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/18ce0a3585ba5e4f7e0e407068d2ff275838ce12", - "reference": "18ce0a3585ba5e4f7e0e407068d2ff275838ce12", + "url": "https://api.github.com/repos/verbb/hyper/zipball/2d797d7b4fe5121d6d4ea84a295e620a3ec44bf6", + "reference": "2d797d7b4fe5121d6d4ea84a295e620a3ec44bf6", "shasum": "" }, "require": { - "craftcms/cms": "^4.0.0", + "craftcms/cms": "^5.0.0", "embed/embed": "^3.0.0 || ^4.0.0", - "nystudio107/craft-plugin-vite": "^4.0.0", - "php": "^8.0.2", - "verbb/base": "^2.0.0" + "nystudio107/craft-plugin-vite": "^5.0.0", + "php": "^8.2", + "verbb/base": "^3.0.0" }, "type": "craft-plugin", "extra": { "name": "Hyper", "handle": "hyper", - "changelogUrl": "https://raw.githubusercontent.com/verbb/hyper/craft-4/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/verbb/hyper/craft-5/CHANGELOG.md", "class": "verbb\\hyper\\Hyper" }, "autoload": { @@ -7245,27 +7523,27 @@ "docs": "https://github.com/verbb/hyper", "rss": "https://github.com/verbb/hyper/commits/v2.atom" }, - "time": "2024-08-08T05:20:16+00:00" + "time": "2024-08-11T00:39:15+00:00" }, { "name": "verbb/navigation", - "version": "2.1.0", + "version": "3.0.3", "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/navigation/zipball/278fd2cb7f6bea116ab44d84d06bac251df83f7e", - "reference": "278fd2cb7f6bea116ab44d84d06bac251df83f7e", + "url": "https://api.github.com/repos/verbb/navigation/zipball/d923c228d252a0fb9a24ca9d7da398ee980bc5cb", + "reference": "d923c228d252a0fb9a24ca9d7da398ee980bc5cb", "shasum": "" }, "require": { - "craftcms/cms": "^4.5.0", - "php": "^8.0.2", - "verbb/base": "^2.0.0" + "craftcms/cms": "^5.0.0", + "php": "^8.2", + "verbb/base": "^3.0.0" }, "type": "craft-plugin", "extra": { "name": "Navigation", "handle": "navigation", - "changelogUrl": "https://raw.githubusercontent.com/verbb/navigation/craft-4/CHANGELOG.md", + "changelogUrl": "https://raw.githubusercontent.com/verbb/navigation/craft-5/CHANGELOG.md", "class": "verbb\\navigation\\Navigation" }, "autoload": { @@ -7298,22 +7576,22 @@ "docs": "https://github.com/verbb/navigation", "rss": "https://github.com/verbb/navigation/commits/v2.atom" }, - "time": "2024-07-21T04:59:04+00:00" + "time": "2024-07-21T05:00:40+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.0", + "version": "v5.6.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", - "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.2", + "graham-campbell/result-type": "^1.1.3", "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2", + "phpoption/phpoption": "^1.9.3", "symfony/polyfill-ctype": "^1.24", "symfony/polyfill-mbstring": "^1.24", "symfony/polyfill-php80": "^1.24" @@ -7325,7 +7603,7 @@ "extra": { "bamarni-bin": { "bin-links": true, - "forward-command": true + "forward-command": false }, "branch-alias": { "dev-master": "5.6-dev" @@ -7357,7 +7635,7 @@ "env", "environment" ], - "time": "2023-11-12T22:43:29+00:00" + "time": "2024-07-20T21:52:34+00:00" }, { "name": "voku/anti-xss", @@ -7750,6 +8028,124 @@ ], "time": "2022-01-24T19:08:46+00:00" }, + { + "name": "web-auth/cose-lib", + "version": "4.4.0", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/web-auth/cose-lib/zipball/2166016e48e0214f4f63320a7758a9386d14c92a", + "reference": "2166016e48e0214f4f63320a7758a9386d14c92a", + "shasum": "" + }, + "require": { + "brick/math": "^0.9|^0.10|^0.11|^0.12", + "ext-json": "*", + "ext-openssl": "*", + "php": ">=8.1", + "spomky-labs/pki-framework": "^1.0" + }, + "suggest": { + "ext-bcmath": "For better performance, please install either GMP (recommended) or BCMath extension", + "ext-gmp": "For better performance, please install either GMP (recommended) or BCMath extension" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cose\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Florent Morselli", + "homepage": "https://github.com/Spomky" + }, + { + "name": "All contributors", + "homepage": "https://github.com/web-auth/cose/contributors" + } + ], + "description": "CBOR Object Signing and Encryption (COSE) For PHP", + "homepage": "https://github.com/web-auth", + "keywords": [ + "COSE", + "RFC8152" + ], + "time": "2024-07-18T08:47:32+00:00" + }, + { + "name": "web-auth/webauthn-lib", + "version": "4.9.1", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/web-auth/webauthn-lib/zipball/fd7a0943c663b325e92ad562c2bcc943e77beeac", + "reference": "fd7a0943c663b325e92ad562c2bcc943e77beeac", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "lcobucci/clock": "^2.2|^3.0", + "paragonie/constant_time_encoding": "^2.6|^3.0", + "php": ">=8.1", + "psr/clock": "^1.0", + "psr/event-dispatcher": "^1.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "psr/log": "^1.0|^2.0|^3.0", + "spomky-labs/cbor-php": "^3.0", + "spomky-labs/pki-framework": "^1.0", + "symfony/deprecation-contracts": "^3.2", + "symfony/uid": "^6.1|^7.0", + "web-auth/cose-lib": "^4.2.3" + }, + "suggest": { + "phpdocumentor/reflection-docblock": "As of 4.5.x, the phpdocumentor/reflection-docblock component will become mandatory for converting objects such as the Metadata Statement", + "psr/clock-implementation": "As of 4.5.x, the PSR Clock implementation will replace lcobucci/clock", + "psr/log-implementation": "Recommended to receive logs from the library", + "symfony/event-dispatcher": "Recommended to use dispatched events", + "symfony/property-access": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", + "symfony/property-info": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", + "symfony/serializer": "As of 4.5.x, the symfony/serializer component will become mandatory for converting objects such as the Metadata Statement", + "web-token/jwt-library": "Mandatory for fetching Metadata Statement from distant sources" + }, + "type": "library", + "extra": { + "thanks": { + "name": "web-auth/webauthn-framework", + "url": "https://github.com/web-auth/webauthn-framework" + } + }, + "autoload": { + "psr-4": { + "Webauthn\\": "src/" + } + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Florent Morselli", + "homepage": "https://github.com/Spomky" + }, + { + "name": "All contributors", + "homepage": "https://github.com/web-auth/webauthn-library/contributors" + } + ], + "description": "FIDO2/Webauthn Support For PHP", + "homepage": "https://github.com/web-auth", + "keywords": [ + "FIDO2", + "fido", + "webauthn" + ], + "time": "2024-07-16T18:36:36+00:00" + }, { "name": "webmozart/assert", "version": "1.11.0", @@ -8151,23 +8547,29 @@ }, { "name": "yiisoft/yii2-symfonymailer", - "version": "2.0.4", + "version": "4.0.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/yiisoft/yii2-symfonymailer/zipball/82f5902551a160633c4734b5096977ce76a809d9", - "reference": "82f5902551a160633c4734b5096977ce76a809d9", + "url": "https://api.github.com/repos/yiisoft/yii2-symfonymailer/zipball/21f407239c51fc6d50d369e4469d006afa8c9b2c", + "reference": "21f407239c51fc6d50d369e4469d006afa8c9b2c", "shasum": "" }, "require": { - "php": ">=7.4.0", - "symfony/mailer": ">=5.4.0", + "php": ">=8.1", + "psr/event-dispatcher": "1.0.0", + "symfony/mailer": "^6.4 || ^7.0", + "symfony/mime": "^6.4 || ^7.0", "yiisoft/yii2": ">=2.0.4" }, + "suggest": { + "yiisoft/yii2-psr-log-source": "Allows routing transport logs to your Yii2 logger" + }, "type": "yii2-extension", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" - } + "dev-master": "3.0.x-dev" + }, + "sort-packages": true }, "autoload": { "psr-4": { @@ -8192,24 +8594,24 @@ "symfonymailer", "yii2" ], - "time": "2022-09-04T10:48:21+00:00" + "time": "2024-01-29T14:13:45+00:00" } ], "packages-dev": [ { "name": "craftcms/generator", - "version": "1.7.0", + "version": "2.1.0", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/generator/zipball/ef136309da97acc98a178c88b466c6d7dade1a32", - "reference": "ef136309da97acc98a178c88b466c6d7dade1a32", + "url": "https://api.github.com/repos/craftcms/generator/zipball/4ccc62474698905c252c3ddb3352c0a63fae9765", + "reference": "4ccc62474698905c252c3ddb3352c0a63fae9765", "shasum": "" }, "require": { - "craftcms/cms": "^4.4.11", + "craftcms/cms": "^5.0.0-beta.1", "nette/php-generator": "^4.0", "nikic/php-parser": "^4.15", - "php": "^8.0.2" + "php": "^8.2" }, "type": "yii2-extension", "extra": { @@ -8242,15 +8644,15 @@ "source": "https://github.com/craftcms/generator", "rss": "https://github.com/craftcms/generator/releases.atom" }, - "time": "2024-03-06T12:13:24+00:00" + "time": "2024-06-19T14:43:28+00:00" }, { "name": "nette/php-generator", - "version": "v4.1.4", + "version": "v4.1.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/php-generator/zipball/b135071d8da108445e4df2fc6a75522b23c0237d", - "reference": "b135071d8da108445e4df2fc6a75522b23c0237d", + "url": "https://api.github.com/repos/nette/php-generator/zipball/690b00d81d42d5633e4457c43ef9754573b6f9d6", + "reference": "690b00d81d42d5633e4457c43ef9754573b6f9d6", "shasum": "" }, "require": { @@ -8294,19 +8696,19 @@ "php", "scaffolding" ], - "time": "2024-03-07T23:06:26+00:00" + "time": "2024-05-12T17:31:02+00:00" }, { "name": "nette/utils", - "version": "v4.0.4", + "version": "v4.0.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", - "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", "shasum": "" }, "require": { - "php": ">=8.0 <8.4" + "php": "8.0 - 8.4" }, "conflict": { "nette/finder": "<3", @@ -8364,7 +8766,7 @@ "utility", "validation" ], - "time": "2024-01-17T16:50:36+00:00" + "time": "2024-08-07T15:39:19+00:00" }, { "name": "nikic/php-parser", @@ -8550,19 +8952,24 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "a6fb2a760c95f45ccb6a412599770061c330c624" + "reference": "f6547941a3b3a96c1b20b77c6ebf126b195f814e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a6fb2a760c95f45ccb6a412599770061c330c624", - "reference": "a6fb2a760c95f45ccb6a412599770061c330c624", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/f6547941a3b3a96c1b20b77c6ebf126b195f814e", + "reference": "f6547941a3b3a96c1b20b77c6ebf126b195f814e", "shasum": "" }, "conflict": { "3f/pygmentize": "<1.2", - "admidio/admidio": "<4.2.13", + "admidio/admidio": "<4.3.10", "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3", "aheinze/cockpit": "<2.2", + "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.04.6", + "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1", + "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7", + "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9", + "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7", "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5", "airesvsg/acf-to-rest-api": "<=3.1", "akaunting/akaunting": "<2.1.13", @@ -8587,11 +8994,13 @@ "athlon1600/php-proxy": "<=5.1", "athlon1600/php-proxy-app": "<=3", "austintoddj/canvas": "<=3.4.2", - "automad/automad": "<=1.10.9", + "auth0/wordpress": "<=4.6", + "automad/automad": "<2.0.0.0-alpha5", + "automattic/jetpack": "<9.8", "awesome-support/awesome-support": "<=6.0.7", "aws/aws-sdk-php": "<3.288.1", "azuracast/azuracast": "<0.18.3", - "backdrop/backdrop": "<1.24.2", + "backdrop/backdrop": "<1.27.3|>=1.28,<1.28.2", "backpack/crud": "<3.4.9", "bacula-web/bacula-web": "<8.0.0.0-RC2-dev", "badaso/core": "<2.7", @@ -8602,12 +9011,17 @@ "barzahlen/barzahlen-php": "<2.0.1", "baserproject/basercms": "<5.0.9", "bassjobsen/bootstrap-3-typeahead": ">4.0.2", + "bbpress/bbpress": "<2.6.5", + "bcosca/fatfree": "<3.7.2", + "bedita/bedita": "<4", "bigfork/silverstripe-form-capture": ">=3,<3.1.1", - "billz/raspap-webgui": "<2.9.5", + "billz/raspap-webgui": "<=3.1.4", "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3", + "blueimp/jquery-file-upload": "==6.4.4", "bmarshall511/wordpress_zero_spam": "<5.2.13", "bolt/bolt": "<3.7.2", "bolt/core": "<=4.2", + "born05/craft-twofactorauthentication": "<3.3.4", "bottelet/flarepoint": "<2.2.1", "bref/bref": "<2.1.17", "brightlocal/phpwhois": "<=4.2.5", @@ -8623,6 +9037,7 @@ "cardgate/magento2": "<2.0.33", "cardgate/woocommerce": "<=3.1.15", "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", + "cart2quote/module-quotation-encoded": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", "catfan/medoo": "<1.7.5", "causal/oidc": "<2.1", @@ -8632,57 +9047,61 @@ "chriskacerguis/codeigniter-restserver": "<=2.7.1", "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3", "ckeditor/ckeditor": "<4.24", - "cockpit-hq/cockpit": "<=2.6.3|==2.7", + "cockpit-hq/cockpit": "<2.7|==2.7", "codeception/codeception": "<3.1.3|>=4,<4.1.22", "codeigniter/framework": "<3.1.9", "codeigniter4/framework": "<4.4.7", "codeigniter4/shield": "<1.0.0.0-beta8", "codiad/codiad": "<=2.8.4", - "composer/composer": "<1.10.27|>=2,<2.2.23|>=2.3,<2.7", - "concrete5/concrete5": "<9.2.8", + "composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7", + "concrete5/concrete5": "<9.3.3", "concrete5/core": "<8.5.8|>=9,<9.1", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4", - "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4", - "contao/core": ">=2,<3.5.39", + "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4", + "contao/core": "<3.5.39", "contao/core-bundle": "<4.13.40|>=5,<5.3.4", - "contao/listing-bundle": ">=4,<4.4.8", + "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8", "contao/managed-edition": "<=1.5", "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", - "craftcms/cms": "<4.6.2", + "craftcms/cms": "<4.6.2|>=5.0.0.0-beta1,<=5.2.2", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czproject/git-php": "<4.0.3", + "dapphp/securimage": "<3.6.6", "darylldoyle/safe-svg": "<1.9.10", "datadog/dd-trace": ">=0.30,<0.30.2", "datatables/datatables": "<1.10.10", "david-garcia/phpwhois": "<=4.3.1", "dbrisinajumi/d2files": "<1", - "dcat/laravel-admin": "<=2.1.3.0-beta", + "dcat/laravel-admin": "<=2.1.3", "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3", "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4", "desperado/xml-bundle": "<=0.1.7", + "devgroup/dotplant": "<2020.09.14-dev", "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2", "doctrine/annotations": "<1.2.7", "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", "doctrine/common": "<2.4.3|>=2.5,<2.5.1", "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4", "doctrine/doctrine-bundle": "<1.5.2", - "doctrine/doctrine-module": "<=0.7.1", + "doctrine/doctrine-module": "<0.7.2", "doctrine/mongodb-odm": "<1.0.2", "doctrine/mongodb-odm-bundle": "<3.0.1", - "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4", - "dolibarr/dolibarr": "<=19", + "doctrine/orm": ">=1,<1.2.4|>=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4", + "dolibarr/dolibarr": "<19.0.2", "dompdf/dompdf": "<2.0.4", "doublethreedigital/guest-entries": "<3.1.2", - "drupal/core": ">=6,<6.38|>=7,<7.96|>=8,<10.1.8|>=10.2,<10.2.2", - "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4", + "drupal/core": ">=6,<6.38|>=7,<7.96|>=8,<10.1.8|>=10.2,<10.2.2|==11.9999999.9999999.9999999-dev", + "drupal/core-recommended": "==11.9999999.9999999.9999999-dev", + "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4|==11.9999999.9999999.9999999-dev", "duncanmcclean/guest-entries": "<3.1.2", "dweeves/magmi": "<=0.7.24", - "ec-cube/ec-cube": "<2.4.4", + "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2", "ecodev/newsletter": "<=4", "ectouch/ectouch": "<=2.7.2", + "egroupware/egroupware": "<23.1.20240624", "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", "elijaa/phpmemcacheadmin": "<=1.3", @@ -8700,29 +9119,34 @@ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev", "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev", "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26|>=3.3,<3.3.39", "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12", "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35", "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8", - "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev", + "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev|>=3.3,<3.3.40", "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15", "ezsystems/ezplatform-user": ">=1,<1.0.1", "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31", - "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.06,<=2019.03.5.1", + "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.03.5.1", "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3", "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15", "ezyang/htmlpurifier": "<4.1.1", "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2", "facturascripts/facturascripts": "<=2022.08", + "fastly/magento2": "<1.2.26", "feehi/cms": "<=2.1.1", "feehi/feehicms": "<=2.1.1", "fenom/fenom": "<=2.12.1", "filegator/filegator": "<7.8", + "filp/whoops": "<2.1.13", + "fineuploader/php-traditional-server": "<=1.2.2", "firebase/php-jwt": "<6", + "fisharebest/webtrees": "<=2.1.18", "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2", "fixpunkt/fp-newsletter": "<1.1.1|>=2,<2.1.2|>=2.2,<3.2.6", "flarum/core": "<1.8.5", + "flarum/flarum": "<0.1.0.0-beta8", "flarum/framework": "<1.8.5", "flarum/mentions": "<1.6.3", "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15", @@ -8739,31 +9163,33 @@ "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2", "friendsofsymfony/oauth2-php": "<1.3", "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", - "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", + "friendsofsymfony/user-bundle": ">=1,<1.3.5", "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5", - "friendsofsymfony1/symfony1": ">=1.1,<1.15.19", + "friendsofsymfony1/symfony1": ">=1.1,<1.5.19", "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6", "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.3", - "froxlor/froxlor": "<=2.1.1", + "froxlor/froxlor": "<=2.2.0.0-RC3", + "frozennode/administrator": "<=5.0.12", "fuel/core": "<1.8.1", "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3", "gaoming13/wechat-php-sdk": "<=1.10.2", "genix/cms": "<=1.1.11", - "getgrav/grav": "<1.7.45", - "getkirby/cms": "<4.1.1", + "getformwork/formwork": "<1.13.1|==2.0.0.0-beta1", + "getgrav/grav": "<1.7.46", + "getkirby/cms": "<=3.6.6.5|>=3.7,<=3.7.5.4|>=3.8,<=3.8.4.3|>=3.9,<=3.9.8.1|>=3.10,<=3.10.1|>=4,<=4.3", "getkirby/kirby": "<=2.5.12", "getkirby/panel": "<2.5.14", "getkirby/starterkit": "<=3.7.0.2", "gilacms/gila": "<=1.15.4", - "gleez/cms": "<=1.2|==2", + "gleez/cms": "<=1.3|==2", "globalpayments/php-sdk": "<2", "gogentooss/samlbase": "<1.2.7", "google/protobuf": "<3.15", "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", "gree/jose": "<2.2.1", "gregwar/rst": "<1.0.3", - "grumpydictator/firefly-iii": "<6.1.7", + "grumpydictator/firefly-iii": "<6.1.17", "gugoan/economizzer": "<=0.9.0.0-beta1", "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5", "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5", @@ -8777,8 +9203,9 @@ "hov/jobfair": "<1.0.13|>=2,<2.0.2", "httpsoft/http-message": "<1.0.12", "hyn/multi-tenant": ">=5.6,<5.7.2", - "ibexa/admin-ui": ">=4.2,<4.2.3", + "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6.0.0-beta1,<4.6.9", "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2", + "ibexa/fieldtype-richtext": ">=4.6,<4.6.10", "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3", "ibexa/post-install": "<=1.0.4", "ibexa/solr": ">=4.5,<4.5.4", @@ -8787,17 +9214,21 @@ "idno/known": "<=1.3.1", "ilicmiljan/secure-props": ">=1.2,<1.2.2", "illuminate/auth": "<5.5.10", - "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4", + "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<6.18.31|>=7,<7.22.4", "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40", "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75", + "imdbphp/imdbphp": "<=5.1.1", "impresscms/impresscms": "<=1.4.5", "impresspages/impresspages": "<=1.0.12", "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.2.3", "in2code/ipandlanguageredirect": "<5.1.2", "in2code/lux": "<17.6.1|>=18,<24.0.2", + "in2code/powermail": "<7.5|>=8,<8.5|>=9,<10.9|>=11,<12.4", "innologi/typo3-appointments": "<2.0.6", "intelliants/subrion": "<4.2.2", + "inter-mediator/inter-mediator": "==5.5", + "ipl/web": "<0.10.1", "islandora/islandora": ">=2,<2.4.1", "ivankristianto/phpwhois": "<=4.3", "jackalope/jackalope-doctrine-dbal": "<1.7.4", @@ -8818,51 +9249,57 @@ "jsdecena/laracom": "<2.0.9", "jsmitty12/phpwhois": "<5.1", "juzaweb/cms": "<=3.4", + "jweiland/events2": "<8.3.8|>=9,<9.0.6", "kazist/phpwhois": "<=4.2.6", "kelvinmo/simplexrd": "<3.1.1", "kevinpapst/kimai2": "<1.16.7", "khodakhah/nodcms": "<=3", - "kimai/kimai": "<2.13", + "kimai/kimai": "<2.16", "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4", "klaviyo/magento2-extension": ">=1,<3", "knplabs/knp-snappy": "<=1.4.2", "kohana/core": "<3.3.3", "krayin/laravel-crm": "<1.2.2", "kreait/firebase-php": ">=3.2,<3.8.1", + "kumbiaphp/kumbiapp": "<=1.1.1", "la-haute-societe/tcpdf": "<6.2.22", "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2", "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1", "laminas/laminas-http": "<2.14.2", "laravel/fortify": "<1.11.1", "laravel/framework": "<6.20.44|>=7,<7.30.6|>=8,<8.75", - "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", + "laravel/laravel": ">=5.4,<5.4.22", + "laravel/socialite": ">=1,<2.0.10", "latte/latte": "<2.10.8", - "lavalite/cms": "<=9", + "lavalite/cms": "<=9|==10.1", "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5", "league/commonmark": "<0.18.3", "league/flysystem": "<1.1.4|>=2,<2.1.1", "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3", "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3", + "libreform/libreform": ">=2,<=2.0.8", "librenms/librenms": "<2017.08.18", "liftkit/database": "<2.13.2", + "lightsaml/lightsaml": "<1.3.5", "limesurvey/limesurvey": "<3.27.19", "livehelperchat/livehelperchat": "<=3.91", "livewire/livewire": ">2.2.4,<2.2.6|>=3.3.5,<3.4.9", "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", "luyadev/yii-helpers": "<1.2.1", - "magento/community-edition": "<2.4.3.0-patch3|>=2.4.4,<2.4.5", + "magento/community-edition": "<2.4.5|==2.4.5|>=2.4.5.0-patch1,<2.4.5.0-patch8|==2.4.6|>=2.4.6.0-patch1,<2.4.6.0-patch6|==2.4.7", "magento/core": "<=1.9.4.5", "magento/magento1ce": "<1.9.4.3-dev", "magento/magento1ee": ">=1,<1.14.4.3-dev", - "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2.0-patch2", + "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1", "magneto/core": "<1.9.4.4-dev", "maikuolan/phpmussel": ">=1,<1.6", "mainwp/mainwp": "<=4.4.3.3", - "mantisbt/mantisbt": "<2.26.1", + "mantisbt/mantisbt": "<2.26.2", "marcwillmann/turn": "<0.3.3", "matyhtf/framework": "<3.0.6", "mautic/core": "<4.4.12|>=5.0.0.0-alpha,<5.0.4", + "mdanter/ecc": "<2", "mediawiki/core": "<1.36.2", "mediawiki/matomo": "<2.4.3", "mediawiki/semantic-media-wiki": "<4.0.2", @@ -8874,7 +9311,8 @@ "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1", "microsoft/microsoft-graph-beta": "<2.0.1", "microsoft/microsoft-graph-core": "<2.0.2", - "microweber/microweber": "<=2.0.4", + "microweber/microweber": "<=2.0.16", + "mikehaertl/php-shellcommand": "<1.6.1", "miniorange/miniorange-saml": "<1.4.3", "mittwald/typo3_forum": "<1.2.1", "mobiledetect/mobiledetectlib": "<2.8.32", @@ -8882,13 +9320,17 @@ "mojo42/jirafeau": "<4.4", "mongodb/mongodb": ">=1,<1.9.2", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<=4.3.3", + "moodle/moodle": "<4.3.5|>=4.4.0.0-beta,<4.4.1", "mos/cimage": "<0.7.19", "movim/moxl": ">=0.8,<=0.10", + "movingbytes/social-network": "<=1.2.1", "mpdf/mpdf": "<=7.1.7", "munkireport/comment": "<4.1", "munkireport/managedinstalls": "<2.6", + "munkireport/munki_facts": "<1.5", "munkireport/munkireport": ">=2.5.3,<5.6.3", + "munkireport/reportdata": "<3.5", + "munkireport/softwareupdate": "<1.6", "mustache/mustache": ">=2,<2.14.1", "namshi/jose": "<2.2", "neoan3-apps/template": "<1.1.1", @@ -8896,8 +9338,8 @@ "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3", "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9", - "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2", - "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5", + "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2", + "neos/swiftmailer": "<5.4.5", "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15", "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6", "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13", @@ -8905,22 +9347,25 @@ "nonfiction/nterchange": "<4.1.1", "notrinos/notrinos-erp": "<=0.7", "noumo/easyii": "<=0.9", + "novaksolutions/infusionsoft-php-sdk": "<1", "nukeviet/nukeviet": "<4.5.02", "nyholm/psr7": "<1.6.1", "nystudio107/craft-seomatic": "<3.4.12", + "nzedb/nzedb": "<0.8", "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1", "october/backend": "<1.1.2", "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1", "october/october": "<=3.4.4", "october/rain": "<1.0.472|>=1.1,<1.1.2", - "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2", + "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.15", "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5", "open-web-analytics/open-web-analytics": "<1.7.4", - "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev", + "opencart/opencart": ">=0", "openid/php-openid": "<2.3", - "openmage/magento-lts": "<20.5", + "openmage/magento-lts": "<20.10.1", + "opensolutions/vimbadmin": "<=3.0.15", "opensource-workshop/connect-cms": "<1.7.2|>=2,<2.3.2", "orchid/platform": ">=9,<9.4.4|>=14.0.0.0-alpha4,<14.5", "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1", @@ -8929,14 +9374,20 @@ "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1", "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3", "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3", + "oveleon/contao-cookiebar": "<1.16.3|>=2,<2.1.3", "oxid-esales/oxideshop-ce": "<4.5", + "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1", "packbackbooks/lti-1-3-php-library": "<5", "padraic/humbug_get_contents": "<1.1.2", "pagarme/pagarme-php": "<3", "pagekit/pagekit": "<=1.0.18", + "paragonie/ecc": "<2.0.1", "paragonie/random_compat": "<2", - "passbolt/passbolt_api": "<2.11", + "passbolt/passbolt_api": "<4.6.2", + "paypal/adaptivepayments-sdk-php": "<=3.9.2", + "paypal/invoice-sdk-php": "<=3.9", "paypal/merchant-sdk-php": "<3.12", + "paypal/permissions-sdk-php": "<=3.9.1", "pear/archive_tar": "<1.4.14", "pear/auth": "<1.2.4", "pear/crypt_gpg": "<1.6.7", @@ -8945,6 +9396,7 @@ "personnummer/personnummer": "<3.0.2", "phanan/koel": "<5.1.4", "phenx/php-svg-lib": "<0.5.2", + "php-censor/php-censor": "<2.0.13|>=2.1,<2.1.5", "php-mod/curl": "<2.3.2", "phpbb/phpbb": "<3.2.10|>=3.3,<3.3.1", "phpems/phpems": ">=6,<=6.1.3", @@ -8953,8 +9405,9 @@ "phpmussel/phpmussel": ">=1,<1.6", "phpmyadmin/phpmyadmin": "<5.2.1", "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5", + "phpoffice/common": "<0.2.9", "phpoffice/phpexcel": "<1.8", - "phpoffice/phpspreadsheet": "<1.16", + "phpoffice/phpspreadsheet": "<1.29.1|>=2,<2.2.1", "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", "phpservermon/phpservermon": "<3.6", "phpsysinfo/phpsysinfo": "<3.4.3", @@ -8963,13 +9416,14 @@ "phpxmlrpc/extras": "<0.6.1", "phpxmlrpc/phpxmlrpc": "<4.9.2", "pi/pi": "<=2.5", - "pimcore/admin-ui-classic-bundle": "<1.3.4", + "pimcore/admin-ui-classic-bundle": "<1.5.4", "pimcore/customer-management-framework-bundle": "<4.0.6", "pimcore/data-hub": "<1.2.4", + "pimcore/data-importer": "<1.8.9|>=1.9,<1.9.3", "pimcore/demo": "<10.3", "pimcore/ecommerce-framework-bundle": "<1.0.10", "pimcore/perspective-editor": "<1.5.1", - "pimcore/pimcore": "<11.1.6.1-dev|>=11.2,<11.2.2", + "pimcore/pimcore": "<11.2.4", "pixelfed/pixelfed": "<0.11.11", "plotly/plotly.js": "<2.25.2", "pocketmine/bedrock-protocol": "<8.0.2", @@ -8981,22 +9435,25 @@ "prestashop/blockwishlist": ">=2,<2.1.1", "prestashop/contactform": ">=1.0.1,<4.3", "prestashop/gamification": "<2.3.2", - "prestashop/prestashop": "<8.1.4", + "prestashop/prestashop": "<8.1.6", "prestashop/productcomments": "<5.0.2", "prestashop/ps_emailsubscription": "<2.6.1", "prestashop/ps_facetedsearch": "<3.4.1", "prestashop/ps_linklist": "<3.1", - "privatebin/privatebin": "<1.4", - "processwire/processwire": "<=3.0.210", + "privatebin/privatebin": "<1.4|>=1.5,<1.7.4", + "processwire/processwire": "<=3.0.229", "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7", "propel/propel1": ">=1,<=1.7.1", - "pterodactyl/panel": "<1.7", + "pterodactyl/panel": "<1.11.6", "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2", "ptrofimov/beanstalk_console": "<1.7.14", "pubnub/pubnub": "<6.1", "pusher/pusher-php-server": "<2.2.1", "pwweb/laravel-core": "<=0.3.6.0-beta", + "pxlrbt/filament-excel": "<2.3.3", "pyrocms/pyrocms": "<=3.9.1", + "qcubed/qcubed": "<=3.1.1", + "quickapps/cms": "<=2.0.0.0-beta2", "rainlab/blog-plugin": "<1.4.1", "rainlab/debugbar-plugin": "<3.1", "rainlab/user-plugin": "<=1.4.5", @@ -9021,29 +9478,30 @@ "serluck/phpwhois": "<=4.2.6", "sfroemken/url_redirect": "<=1.2.1", "sheng/yiicms": "<=1.2", - "shopware/core": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", - "shopware/platform": "<6.5.8.8-dev|>=6.6.0.0-RC1-dev,<6.6.1", + "shopware/core": "<=6.5.8.12|>=6.6,<=6.6.5", + "shopware/platform": "<=6.5.8.12|>=6.6,<=6.6.5", "shopware/production": "<=6.3.5.2", "shopware/shopware": "<=5.7.17", "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev", - "shopxo/shopxo": "<2.2.6", + "shopxo/shopxo": "<=6.1", "showdoc/showdoc": "<2.10.4", "silverstripe-australia/advancedreports": ">=1,<=2", "silverstripe/admin": "<1.13.19|>=2,<2.1.8", "silverstripe/assets": ">=1,<1.11.1", "silverstripe/cms": "<4.11.3", - "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", + "silverstripe/comments": ">=1.3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": "<4.13.39|>=5,<5.1.11", + "silverstripe/framework": "<5.2.16", "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3", "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1", "silverstripe/recipe-cms": ">=4.5,<4.5.3", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", - "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", + "silverstripe/reports": "<5.2.3", + "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2", "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1", "silverstripe/subsites": ">=2,<2.6.1", "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", - "silverstripe/userforms": "<3", + "silverstripe/userforms": "<3|>=5,<5.4.2", "silverstripe/versioned-admin": ">=1,<1.11.1", "simple-updates/phpwhois": "<=1", "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12", @@ -9058,34 +9516,37 @@ "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1", "slim/slim": "<2.6", "slub/slub-events": "<3.0.3", - "smarty/smarty": "<3.1.48|>=4,<4.3.1", - "snipe/snipe-it": "<=6.2.2", + "smarty/smarty": "<4.5.3|>=5,<5.1.1", + "snipe/snipe-it": "<6.4.2", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spatie/browsershot": "<3.57.4", + "spatie/image-optimizer": "<1.7.3", "spipu/html2pdf": "<5.2.8", "spoon/library": "<1.4.1", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", - "ssddanbrown/bookstack": "<22.02.3", - "statamic/cms": "<4.46", + "ssddanbrown/bookstack": "<24.05.1", + "statamic/cms": "<4.46|>=5.3,<5.6.2", "stormpath/sdk": "<9.9.99", - "studio-42/elfinder": "<2.1.62", + "studio-42/elfinder": "<=2.1.64", + "studiomitte/friendlycaptcha": "<0.1.4", "subhh/libconnect": "<7.0.8|>=8,<8.1", "sukohi/surpass": "<1", + "sulu/form-bundle": ">=2,<2.5.3", "sulu/sulu": "<1.6.44|>=2,<2.4.17|>=2.5,<2.5.13", "sumocoders/framework-user-bundle": "<1.4", "superbig/craft-audit": "<3.0.2", "swag/paypal": "<5.4.4", - "swiftmailer/swiftmailer": ">=4,<6.2.5", + "swiftmailer/swiftmailer": "<6.2.5", "swiftyedit/swiftyedit": "<1.2", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": "<1.10.1", "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1", "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", - "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2", - "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", + "sylius/sylius": "<1.12.19|>=1.13.0.0-alpha1,<1.13.4", + "symbiote/silverstripe-multivaluefield": ">=3,<3.1", "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4", "symbiote/silverstripe-seed": "<6.0.3", "symbiote/silverstripe-versionedfiles": "<=2.0.3", @@ -9132,26 +9593,27 @@ "thelia/backoffice-default-template": ">=2.1,<2.1.2", "thelia/thelia": ">=2.1,<2.1.3", "theonedemon/phpwhois": "<=4.2.5", - "thinkcmf/thinkcmf": "<=5.1.7", + "thinkcmf/thinkcmf": "<6.0.8", "thorsten/phpmyfaq": "<3.2.2", "tikiwiki/tiki-manager": "<=17.1", "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1", - "tinymce/tinymce": "<7", + "tinymce/tinymce": "<7.2", "tinymighty/wiki-seo": "<1.2.2", "titon/framework": "<9.9.99", "tobiasbg/tablepress": "<=2.0.0.0-RC1", - "topthink/framework": "<6.0.14", + "topthink/framework": "<6.0.17|>=6.1,<6.1.5|>=8,<8.0.4", "topthink/think": "<=6.1.1", "topthink/thinkphp": "<=3.2.3", - "torrentpier/torrentpier": "<=2.4.1", + "torrentpier/torrentpier": "<=2.4.3", "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2", - "tribalsystems/zenario": "<=9.4.59197", + "tribalsystems/zenario": "<9.5.60602", "truckersmp/phpwhois": "<=4.3.1", "ttskch/pagination-service-provider": "<1", + "twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2", "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3", "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", - "typo3/cms-core": "<=8.7.56|>=9,<=9.5.45|>=10,<=10.4.42|>=11,<=11.5.34|>=12,<=12.4.10|==13", + "typo3/cms-core": "<=8.7.56|>=9,<=9.5.47|>=10,<=10.4.44|>=11,<=11.5.36|>=12,<=12.4.14|>=13,<=13.1", "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1", "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1", "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1", @@ -9172,14 +9634,22 @@ "uvdesk/community-skeleton": "<=1.1.1", "uvdesk/core-framework": "<=1.1.1", "vanilla/safecurl": "<0.9.2", + "verbb/comments": "<1.5.5", + "verbb/formie": "<2.1.6", + "verbb/image-resizer": "<2.0.9", + "verbb/knock-knock": "<1.2.8", "verot/class.upload.php": "<=2.1.6", + "villagedefrance/opencart-overclocked": "<=1.11.1", "vova07/yii2-fileapi-widget": "<0.1.9", "vrana/adminer": "<4.8.1", + "vufind/vufind": ">=2,<9.1.1", "waldhacker/hcaptcha": "<2.1.2", "wallabag/tcpdf": "<6.2.22", "wallabag/wallabag": "<2.6.7", "wanglelecc/laracms": "<=1.0.3", - "web-auth/webauthn-framework": ">=3.3,<3.3.4", + "web-auth/webauthn-framework": ">=3.3,<3.3.4|>=4.5,<4.9", + "web-auth/webauthn-lib": ">=4.5,<4.9", + "web-feet/coastercms": "==5.5", "webbuilders-group/silverstripe-kapost-bridge": "<0.4", "webcoast/deferred-image-processing": "<1.0.2", "webklex/laravel-imap": "<5.3", @@ -9192,20 +9662,23 @@ "winter/wn-dusk-plugin": "<2.1", "winter/wn-system-module": "<1.2.4", "wintercms/winter": "<=1.2.3", - "woocommerce/woocommerce": "<6.6", + "woocommerce/woocommerce": "<6.6|>=8.8,<8.8.5|>=8.9,<8.9.3", "wp-cli/wp-cli": ">=0.12,<2.5", "wp-graphql/wp-graphql": "<=1.14.5", + "wp-premium/gravityforms": "<2.4.21", "wpanel/wpanel4-cms": "<=4.3.1", "wpcloud/wp-stateless": "<3.2", - "wwbn/avideo": "<=12.4", + "wpglobus/wpglobus": "<=1.9.6", + "wwbn/avideo": "<14.3", "xataface/xataface": "<3", "xpressengine/xpressengine": "<3.0.15", + "yab/quarx": "<2.4.5", "yeswiki/yeswiki": "<4.1", "yetiforce/yetiforce-crm": "<=6.4", "yidashi/yii2cmf": "<=2", "yii2mod/yii2-cms": "<1.9.2", "yiisoft/yii": "<1.1.29", - "yiisoft/yii2": "<2.0.38", + "yiisoft/yii2": "<2.0.49.4-dev", "yiisoft/yii2-authclient": "<2.2.15", "yiisoft/yii2-bootstrap": "<2.0.4", "yiisoft/yii2-dev": "<2.0.43", @@ -9230,9 +9703,9 @@ "zendframework/zend-http": "<2.8.1", "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6", "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3", - "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2", + "zendframework/zend-mail": "<2.4.11|>=2.5,<2.7.2", "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1", - "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4", + "zendframework/zend-session": ">=2,<2.2.9|>=2.3,<2.3.4", "zendframework/zend-validator": ">=2.3,<2.3.6", "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1", "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6", @@ -9291,7 +9764,65 @@ "type": "tidelift" } ], - "time": "2024-04-19T20:04:33+00:00" + "time": "2024-09-04T15:05:11+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.11", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/42686880adaacdad1835ee8fc2a9ec5b7bd63998", + "reference": "42686880adaacdad1835ee8fc2a9ec5b7bd63998", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "time": "2024-08-15T22:48:29+00:00" }, { "name": "yiisoft/yii2-shell", @@ -9352,5 +9883,5 @@ "platform-overrides": { "php": "8.2.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml b/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml new file mode 100644 index 00000000..a44ef169 --- /dev/null +++ b/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml @@ -0,0 +1,69 @@ +color: null +fieldLayouts: + 410c9682-a3f7-4475-9013-0453aac4635d: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba + handle: null + includeInCards: true + instructions: null + label: 'Snippet Name' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 17c573f3-0377-4ea8-834f-091f04d60568 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: be45c3e2-5e9f-491e-a000-94d95c4fa20b + handle: null + includeInCards: false + instructions: null + label: Snippet + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: d0187af9-ab3b-48cf-9fa9-8cfb76e48a9e + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f + handle: null + includeInCards: false + instructions: null + label: 'Snippet collapsed' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: db3144df-7836-499b-a09c-74aa13fe121c + userCondition: null + warning: null + width: 50 + name: Content + uid: c033e8a9-eab3-4bd0-bea5-4a8d2dcf5ad3 + userCondition: null +handle: blockCode +hasTitleField: false +icon: null +name: Code +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml b/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml new file mode 100644 index 00000000..0c0d8541 --- /dev/null +++ b/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml @@ -0,0 +1,37 @@ +color: null +fieldLayouts: + 4423c5be-938a-4871-bd99-52e14a8de079: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: f084e099-613d-4405-b600-f4be12d3509b + handle: null + includeInCards: true + instructions: null + label: 'Divider Variant' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: b37c0cae-90a6-44b1-95f1-c0fbb5c25213 + userCondition: null + warning: null + width: 100 + name: Content + uid: ae8f94aa-5f01-405e-9c05-1294f1d44a6a + userCondition: null +handle: blockDivider +hasTitleField: false +icon: null +name: Divider +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml b/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml new file mode 100644 index 00000000..5ec6c27b --- /dev/null +++ b/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml @@ -0,0 +1,85 @@ +color: null +fieldLayouts: + 58ddc97d-9694-4104-a136-b6344987e1b6: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 35b67fb3-4bdb-470f-a686-3d46c5cd5f96 + handle: image + includeInCards: false + instructions: null + label: Image + providesThumbs: true + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 0cd02812-349c-46d5-a4b7-57700a221566 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 9b73b533-898f-4f77-a500-37ea0be0afc7 + handle: showImageCaption + includeInCards: true + instructions: null + label: 'Show Image Caption' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 089ab2ac-9335-40c2-9827-f4dd1baca5dc + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 70bc887b-faf2-45c7-b4bc-4299acd343da + handle: imageRatio + includeInCards: false + instructions: null + label: 'Image Ratio' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: b0fb63ad-8f84-4caf-a7b6-c0e44deeae12 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 1be86da8-5273-40c6-ba88-718f5c32a6c3 + handle: null + includeInCards: false + instructions: null + label: 'Image Width' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 744a7c6f-6d25-4c12-8d70-9a8752b5f5f6 + userCondition: null + warning: null + width: 50 + name: Content + uid: 5e8a312e-45d0-491c-924d-84d96af3b270 + userCondition: null +handle: blockImage +hasTitleField: false +icon: null +name: Image +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml b/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml new file mode 100644 index 00000000..aa41212c --- /dev/null +++ b/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml @@ -0,0 +1,85 @@ +color: null +fieldLayouts: + 6c449cd7-ebc2-4ce6-be61-1e8c90cb176b: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 74c3cd4f-b565-4fb4-879e-72022774f93c + handle: null + includeInCards: true + instructions: null + label: Variant + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 11e9d4b4-edcc-4533-b7a1-8b07c6602017 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 75195ab8-b7c4-4dca-b807-ef8a042ef5a9 + handle: null + includeInCards: false + instructions: null + label: Images + providesThumbs: true + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: d10b279e-4bce-49cf-90fd-0a2fae06d537 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c + handle: null + includeInCards: false + instructions: null + label: 'Image Ratio' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 721a9d99-a7c1-4462-b772-b18fadab09e8 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: e0e9e510-46ff-45aa-aa46-700b325bb911 + handle: null + includeInCards: false + instructions: null + label: 'Show Image Caption' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 9eae0590-a0dc-4c71-8d19-af63a55af1bd + userCondition: null + warning: null + width: 50 + name: Content + uid: 56042e3e-7a7b-4a4c-9222-63e004682c9b + userCondition: null +handle: blockImages +hasTitleField: false +icon: null +name: Images +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml b/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml new file mode 100644 index 00000000..04dc163e --- /dev/null +++ b/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml @@ -0,0 +1,85 @@ +color: null +fieldLayouts: + e22d570c-156e-4591-a91a-2af67c7ed22b: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 53f0660a-f06b-4b2d-b342-1869c5c65538 + handle: null + includeInCards: true + instructions: null + label: Quote + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: bd2dc568-fec5-4384-b6d0-dc26b5dd7b34 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0 + handle: null + includeInCards: false + instructions: null + label: Source + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 9fcea238-ad3d-4958-9762-4a3f7c2cb1e9 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 75b6f580-613f-42ae-aa23-2d5fb22ff3da + handle: null + includeInCards: false + instructions: null + label: 'Source Subline' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 81e0a6bb-2f47-4d2f-b800-a0a2651a916f + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: e11e03f7-19c1-45c3-935e-1994a7ce7d26 + handle: null + includeInCards: false + instructions: null + label: 'Source Url' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 25bfda37-86b0-4276-ae59-e34d406c5eba + userCondition: null + warning: null + width: 50 + name: Content + uid: 8e061a5e-d78f-48e7-b026-09c9f9a49a67 + userCondition: null +handle: blockQuote +hasTitleField: false +icon: null +name: Quote +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml b/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml new file mode 100644 index 00000000..6cf06734 --- /dev/null +++ b/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml @@ -0,0 +1,69 @@ +color: null +fieldLayouts: + b5f39594-4dfb-477b-a358-ea2dac368b7b: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b + handle: null + includeInCards: true + instructions: null + label: 'Section Background Color' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 483ce826-3abf-48ac-8c95-5114bda99f30 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 74b87138-1475-47c2-a9dd-63baa78dd5f5 + handle: null + includeInCards: false + instructions: null + label: 'Space Between Blocks' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 16c62a98-e675-40ee-a4d0-8ca2543ed5de + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec + handle: null + includeInCards: false + instructions: null + label: 'Section Padding Vertical' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: d2acb96f-9f12-4449-ad76-d024ad3d28ab + userCondition: null + warning: null + width: 50 + name: Content + uid: 5cb029e3-a009-451e-8ab8-a2a2dec9a3f5 + userCondition: null +handle: blockSection +hasTitleField: false +icon: null +name: Section +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml b/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml new file mode 100644 index 00000000..18d97f48 --- /dev/null +++ b/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml @@ -0,0 +1,37 @@ +color: null +fieldLayouts: + a4335b2d-af34-4544-b20a-e4a928a3693c: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 1b37c439-5a32-4e8f-8019-7f6a94593419 + handle: null + includeInCards: true + instructions: null + label: 'Spacer Variant' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: c8ba7044-fa9a-4546-9493-16bccb73a76e + userCondition: null + warning: null + width: 100 + name: Content + uid: 1ce6448e-436d-4f3c-b18e-d4b338f00b99 + userCondition: null +handle: blockSpacer +hasTitleField: false +icon: null +name: Spacer +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml b/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml new file mode 100644 index 00000000..17d63cee --- /dev/null +++ b/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml @@ -0,0 +1,37 @@ +color: null +fieldLayouts: + 12757233-a8be-4796-bed0-bdaffeb488ae: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: d4cabad1-1cae-4a1e-a914-c38d9f1a813a + handle: null + includeInCards: true + instructions: null + label: Text + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 0b98c8af-6fb9-4a18-b577-3f75b079e8f2 + userCondition: null + warning: null + width: 100 + name: Content + uid: f371c36b-db60-4c3f-a1dc-a3e11244e2ca + userCondition: null +handle: blockText +hasTitleField: false +icon: null +name: Text +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml b/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml new file mode 100644 index 00000000..a4b60f9e --- /dev/null +++ b/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml @@ -0,0 +1,101 @@ +color: null +fieldLayouts: + 7b6ace88-ae82-4caf-afe4-1650ce6e7ce3: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 0a7dd988-f4db-40b7-8112-6f6fc7c4fb54 + handle: text + includeInCards: true + instructions: null + label: Text + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 51b01a52-b32f-4ffa-910d-ef9fe863f1ef + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 + handle: null + includeInCards: false + instructions: null + label: Image + providesThumbs: true + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: ab6dd79a-0d9c-4799-860a-01a7c242ba68 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 98f7a455-6764-4b7d-8d19-405bdcc42228 + handle: imageRatio + includeInCards: false + instructions: null + label: 'Image Ratio' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 04337482-6861-47b4-8a21-cd4447d746ab + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 6a90dae3-938c-47e6-8e36-6b1d6be92d63 + handle: showImageCaption + includeInCards: false + instructions: null + label: 'Show Image Caption' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 50f248bd-1435-4f9e-8225-ce71ceadbd90 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82 + handle: null + includeInCards: false + instructions: null + label: 'Image Position' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 1ce2335a-ddf7-4a2f-a788-0c629ecec74b + userCondition: null + warning: null + width: 50 + name: Content + uid: a7ac4d85-057b-421c-a16b-b382da491a30 + userCondition: null +handle: blockTextImage +hasTitleField: false +icon: null +name: 'Text : Image' +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml b/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml new file mode 100644 index 00000000..7d2cca90 --- /dev/null +++ b/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml @@ -0,0 +1,101 @@ +color: null +fieldLayouts: + 1abefa28-ba0b-4e7e-be2b-12835562bb01: + tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 63bd200d-3882-4788-a8ba-528452521d6c + handle: null + includeInCards: true + instructions: null + label: 'Video Provider' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 61617279-3f13-4142-9007-28c5defd3157 + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: e9486b85-fd5e-40c8-851b-a6b0133e1f88 + handle: null + includeInCards: false + instructions: null + label: 'Video Id' + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 209e0b27-694f-492c-8618-f97820ac8a2a + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0 + handle: null + includeInCards: false + instructions: null + label: Autoplay + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 85e4faf3-8c53-4926-9624-5ba7b9cca49b + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 4a25e574-679a-4d01-8e8b-d5927129ce33 + handle: null + includeInCards: false + instructions: null + label: Loop + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: ca8a500e-d6df-4d29-b957-9e9f7172facc + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T19:47:47+00:00' + elementCondition: null + fieldUid: 68109da0-245f-4b21-b040-b7f4385e618e + handle: null + includeInCards: false + instructions: null + label: 'Video Width' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 6b9c294a-c00e-4b45-b0e5-c0ff793155ac + userCondition: null + warning: null + width: 50 + name: Content + uid: bb2df4f8-8532-459f-ae5f-12b9013d58c0 + userCondition: null +handle: blockVideo +hasTitleField: false +icon: null +name: Video +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: null +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml b/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml index a1e812df..7f1873d3 100644 --- a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml +++ b/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml @@ -91,7 +91,6 @@ fieldLayouts: handle: error hasTitleField: true name: Error -section: e5172a18-ed16-4229-89ca-fc0dc776597a # Error Pages showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site diff --git a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml b/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml index df4b93d8..7370ee77 100644 --- a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml +++ b/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml @@ -109,7 +109,6 @@ fieldLayouts: handle: home hasTitleField: false name: Home -section: 5d0f7961-203c-4008-a55a-6a7d35e7a37a # Home showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site diff --git a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml b/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml index ccce9136..ff4f9792 100644 --- a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml +++ b/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml @@ -109,7 +109,6 @@ fieldLayouts: handle: newsDefault hasTitleField: true name: 'News Default' -section: 3547e7b4-f3fb-4cf4-9d29-9f12dfa94594 # News showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site diff --git a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml b/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml index 40047cf9..e359563c 100644 --- a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml +++ b/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml @@ -109,7 +109,6 @@ fieldLayouts: handle: pageContentBuilder hasTitleField: true name: 'Page Content Builder' -section: b0207f48-be48-49ab-a759-1ff51f232df3 # Pages showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site diff --git a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml b/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml index eb6a8f32..ef2df741 100644 --- a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml +++ b/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml @@ -91,7 +91,6 @@ fieldLayouts: handle: pageNews hasTitleField: true name: 'Page News' -section: b0207f48-be48-49ab-a759-1ff51f232df3 # Pages showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site diff --git a/config/project/fieldGroups/4267733c-fa2b-45f5-a3b6-8b56a1c56dc4.yaml b/config/project/fieldGroups/4267733c-fa2b-45f5-a3b6-8b56a1c56dc4.yaml deleted file mode 100644 index 6e532816..00000000 --- a/config/project/fieldGroups/4267733c-fa2b-45f5-a3b6-8b56a1c56dc4.yaml +++ /dev/null @@ -1 +0,0 @@ -name: Text diff --git a/config/project/fieldGroups/8512e79b-4bb8-4d2d-b731-5fa98546f2c9.yaml b/config/project/fieldGroups/8512e79b-4bb8-4d2d-b731-5fa98546f2c9.yaml deleted file mode 100644 index 7fee377f..00000000 --- a/config/project/fieldGroups/8512e79b-4bb8-4d2d-b731-5fa98546f2c9.yaml +++ /dev/null @@ -1 +0,0 @@ -name: Builders diff --git a/config/project/fieldGroups/b921eaa9-858e-4901-bbb9-15b70cac9a6e.yaml b/config/project/fieldGroups/b921eaa9-858e-4901-bbb9-15b70cac9a6e.yaml deleted file mode 100644 index 9d56045b..00000000 --- a/config/project/fieldGroups/b921eaa9-858e-4901-bbb9-15b70cac9a6e.yaml +++ /dev/null @@ -1 +0,0 @@ -name: Relations diff --git a/config/project/fieldGroups/d383bdc6-fcfa-4652-9155-d7ead2d89f29.yaml b/config/project/fieldGroups/d383bdc6-fcfa-4652-9155-d7ead2d89f29.yaml deleted file mode 100644 index 3aeac7d4..00000000 --- a/config/project/fieldGroups/d383bdc6-fcfa-4652-9155-d7ead2d89f29.yaml +++ /dev/null @@ -1 +0,0 @@ -name: Assets diff --git a/config/project/fieldGroups/dfb88745-e0f0-4c67-9781-f72dad33bf65.yaml b/config/project/fieldGroups/dfb88745-e0f0-4c67-9781-f72dad33bf65.yaml deleted file mode 100644 index f8eae03b..00000000 --- a/config/project/fieldGroups/dfb88745-e0f0-4c67-9781-f72dad33bf65.yaml +++ /dev/null @@ -1 +0,0 @@ -name: SEO diff --git a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml b/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml index 0781f96b..ee129a8f 100644 --- a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml +++ b/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml @@ -1,6 +1,5 @@ columnSuffix: null contentColumnType: string -fieldGroup: d383bdc6-fcfa-4652-9155-d7ead2d89f29 # Assets handle: assetEntryImage instructions: null name: 'Asset: Entry Image' diff --git a/config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml b/config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml new file mode 100644 index 00000000..032f2536 --- /dev/null +++ b/config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: autoplay +instructions: null +name: 'Builder: Content - Video - Autoplay' +searchable: false +settings: + default: false + offLabel: null + onLabel: null +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml b/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml index 99b46b36..158b3b5e 100644 --- a/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml +++ b/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml @@ -1,16 +1,26 @@ columnSuffix: null contentColumnType: string -fieldGroup: 8512e79b-4bb8-4d2d-b731-5fa98546f2c9 # Builders handle: builderContent instructions: null name: 'Builder: Content' searchable: true settings: - contentTable: '{{%matrixcontent_buildercontent}}' - maxBlocks: null - minBlocks: null + entryTypes: + - 5c9f2ce6-f780-4ea6-a50c-539a252aec94 + - 7b3b13e0-e20d-4d51-b0ae-832300f45234 + - 7b23a4a8-a6f8-43c4-b12c-326d089176ad + - 3497ad65-5e4c-43cb-b469-c3e4b3d80343 + - 92963d20-e763-4d2e-a367-9e543dfde522 + - 295738c1-951d-4b8c-b5cd-83d71a85d7e8 + - b3022ef5-7f1b-49d7-976d-5d5be501c1f1 + - e3c7bdf5-9e45-4977-ba11-1e2c4b57644e + - f3e1a215-a60f-4d6a-8897-e1a80a40c6cd + - fa02ff5a-1741-4417-8c8f-b72b954dd4fd + maxEntries: null + minEntries: null propagationKeyFormat: null propagationMethod: all + viewMode: blocks translationKeyFormat: null translationMethod: site type: craft\fields\Matrix diff --git a/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml b/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml new file mode 100644 index 00000000..5937cfc0 --- /dev/null +++ b/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml @@ -0,0 +1,65 @@ +columnSuffix: null +handle: dividerVariant +instructions: null +name: 'Builder: Content - Divider - Divider Variant' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - SM + - + - value + - sm + - + - default + - '1' + - + __assoc__: + - + - label + - MD + - + - value + - md + - + - default + - '' + - + __assoc__: + - + - label + - LG + - + - value + - lg + - + - default + - '' + - + __assoc__: + - + - label + - XL + - + - value + - xl + - + - default + - '' + - + __assoc__: + - + - label + - 2XL + - + - value + - 2xl + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml b/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml new file mode 100644 index 00000000..75abdfb1 --- /dev/null +++ b/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml @@ -0,0 +1,36 @@ +columnSuffix: null +handle: image +instructions: null +name: 'Builder: Content - Text : Image - Image' +searchable: false +settings: + allowSelfRelations: false + allowSubfolders: false + allowUploads: true + allowedKinds: + - image + branchLimit: null + defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + defaultUploadLocationSubpath: null + maintainHierarchy: false + maxRelations: 1 + minRelations: null + previewMode: full + restrictFiles: true + restrictLocation: false + restrictedDefaultUploadSubpath: null + restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files + restrictedLocationSubpath: null + selectionLabel: null + showCardsInGrid: false + showSiteMenu: true + showUnpermittedFiles: true + showUnpermittedVolumes: true + sources: + - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + targetSiteId: null + validateRelatedElements: true + viewMode: large +translationKeyFormat: null +translationMethod: none +type: craft\fields\Assets diff --git a/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml b/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml new file mode 100644 index 00000000..2a38cb1f --- /dev/null +++ b/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml @@ -0,0 +1,36 @@ +columnSuffix: null +handle: image2 +instructions: null +name: 'Builder: Content - Image - Image' +searchable: false +settings: + allowSelfRelations: false + allowSubfolders: false + allowUploads: true + allowedKinds: + - image + branchLimit: null + defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + defaultUploadLocationSubpath: null + maintainHierarchy: false + maxRelations: 1 + minRelations: null + previewMode: full + restrictFiles: true + restrictLocation: false + restrictedDefaultUploadSubpath: null + restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files + restrictedLocationSubpath: null + selectionLabel: null + showCardsInGrid: false + showSiteMenu: true + showUnpermittedFiles: true + showUnpermittedVolumes: true + sources: + - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + targetSiteId: null + validateRelatedElements: true + viewMode: large +translationKeyFormat: null +translationMethod: none +type: craft\fields\Assets diff --git a/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml b/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml new file mode 100644 index 00000000..6997d9da --- /dev/null +++ b/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: imagePosition +instructions: null +name: 'Builder: Content - Text : Image - Image Position' +searchable: false +settings: + default: false + offLabel: Left + onLabel: Right +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml b/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml new file mode 100644 index 00000000..ceaecb83 --- /dev/null +++ b/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml @@ -0,0 +1,54 @@ +columnSuffix: null +handle: imageRatio +instructions: 'Usable for: Grids (non calculated) / Sliders' +name: 'Builder: Content - Images - Image Ratio' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Landscape + - + - value + - aspect-landscape + - + - default + - '1' + - + __assoc__: + - + - label + - Square + - + - value + - aspect-square + - + - default + - '' + - + __assoc__: + - + - label + - Portrait + - + - value + - aspect-portrait + - + - default + - '' + - + __assoc__: + - + - label + - Auto + - + - value + - aspect-auto + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml b/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml new file mode 100644 index 00000000..009843ce --- /dev/null +++ b/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml @@ -0,0 +1,54 @@ +columnSuffix: null +handle: imageRatio2 +instructions: null +name: 'Builder: Content - Text : Image - Image Ratio' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Landscape + - + - value + - aspect-landscape + - + - default + - '1' + - + __assoc__: + - + - label + - Square + - + - value + - aspect-square + - + - default + - '' + - + __assoc__: + - + - label + - Portrait + - + - value + - aspect-portrait + - + - default + - '' + - + __assoc__: + - + - label + - Auto + - + - value + - aspect-auto + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml b/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml new file mode 100644 index 00000000..f3e15be9 --- /dev/null +++ b/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml @@ -0,0 +1,54 @@ +columnSuffix: null +handle: imageRatio3 +instructions: null +name: 'Builder: Content - Image - Image Ratio' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Landscape + - + - value + - aspect-landscape + - + - default + - '1' + - + __assoc__: + - + - label + - Square + - + - value + - aspect-square + - + - default + - '' + - + __assoc__: + - + - label + - Portrait + - + - value + - aspect-portrait + - + - default + - '' + - + __assoc__: + - + - label + - Auto + - + - value + - aspect-auto + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml b/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml new file mode 100644 index 00000000..8fc73123 --- /dev/null +++ b/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml @@ -0,0 +1,32 @@ +columnSuffix: null +handle: imageWidth +instructions: null +name: 'Builder: Content - Image - Image Width' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Wide + - + - value + - wide + - + - default + - '1' + - + __assoc__: + - + - label + - Narrow + - + - value + - narrow + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml b/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml new file mode 100644 index 00000000..e66b5737 --- /dev/null +++ b/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml @@ -0,0 +1,36 @@ +columnSuffix: null +handle: images +instructions: null +name: 'Builder: Content - Images - Images' +searchable: false +settings: + allowSelfRelations: false + allowSubfolders: false + allowUploads: true + allowedKinds: + - image + branchLimit: null + defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + defaultUploadLocationSubpath: null + maintainHierarchy: false + maxRelations: null + minRelations: null + previewMode: full + restrictFiles: true + restrictLocation: false + restrictedDefaultUploadSubpath: null + restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files + restrictedLocationSubpath: null + selectionLabel: null + showCardsInGrid: false + showSiteMenu: true + showUnpermittedFiles: true + showUnpermittedVolumes: true + sources: + - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images + targetSiteId: null + validateRelatedElements: true + viewMode: large +translationKeyFormat: null +translationMethod: none +type: craft\fields\Assets diff --git a/config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml b/config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml new file mode 100644 index 00000000..374796dc --- /dev/null +++ b/config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: loop +instructions: null +name: 'Builder: Content - Video - Loop' +searchable: false +settings: + default: false + offLabel: null + onLabel: null +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml b/config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml new file mode 100644 index 00000000..576367ea --- /dev/null +++ b/config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml @@ -0,0 +1,21 @@ +columnSuffix: null +handle: quote +instructions: null +name: 'Builder: Content - Quote - Quote' +searchable: true +settings: + availableTransforms: '' + availableVolumes: '' + ckeConfig: e8b10d27-be46-4108-9bf5-3a8711280165 # Rich Text Simple + createButtonLabel: null + defaultTransform: null + enableSourceEditingForNonAdmins: false + purifierConfig: null + purifyHtml: true + showUnpermittedFiles: false + showUnpermittedVolumes: false + showWordCount: true + wordLimit: null +translationKeyFormat: null +translationMethod: none +type: craft\ckeditor\Field diff --git a/config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml b/config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml new file mode 100644 index 00000000..e5e376ff --- /dev/null +++ b/config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml @@ -0,0 +1,32 @@ +columnSuffix: null +handle: sectionBackgroundColor +instructions: null +name: 'Builder: Content - Section - Section Background Color' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Transparent + - + - value + - transparent + - + - default + - '1' + - + __assoc__: + - + - label + - 'Light Gray' + - + - value + - light-gray + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml b/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml new file mode 100644 index 00000000..d68a97fa --- /dev/null +++ b/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml @@ -0,0 +1,76 @@ +columnSuffix: null +handle: sectionPaddingVertical +instructions: null +name: 'Builder: Content - Section - Section Padding Vertical' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Zero + - + - value + - zero + - + - default + - '1' + - + __assoc__: + - + - label + - SM + - + - value + - sm + - + - default + - '' + - + __assoc__: + - + - label + - MD + - + - value + - md + - + - default + - '' + - + __assoc__: + - + - label + - LG + - + - value + - lg + - + - default + - '' + - + __assoc__: + - + - label + - XL + - + - value + - xl + - + - default + - '' + - + __assoc__: + - + - label + - 2XL + - + - value + - 2xl + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml b/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml index 2c40fdda..d81df337 100644 --- a/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml +++ b/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml @@ -1,6 +1,5 @@ columnSuffix: ibratpfs contentColumnType: text -fieldGroup: dfb88745-e0f0-4c67-9781-f72dad33bf65 # SEO handle: seoSEOmatic instructions: null name: 'SEO: SEOmatic' diff --git a/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml b/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml new file mode 100644 index 00000000..7f07bf75 --- /dev/null +++ b/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: showImageCaption +instructions: 'Usable for: Grids' +name: 'Builder: Content - Images - Show Image Caption' +searchable: false +settings: + default: false + offLabel: null + onLabel: null +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml b/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml new file mode 100644 index 00000000..0c9d30c4 --- /dev/null +++ b/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: showImageCaption2 +instructions: null +name: 'Builder: Content - Text : Image - Show Image Caption' +searchable: false +settings: + default: false + offLabel: null + onLabel: null +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml b/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml new file mode 100644 index 00000000..f69ddd41 --- /dev/null +++ b/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: showImageCaption3 +instructions: null +name: 'Builder: Content - Image - Show Image Caption' +searchable: false +settings: + default: false + offLabel: null + onLabel: null +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml b/config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml new file mode 100644 index 00000000..233c553e --- /dev/null +++ b/config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml @@ -0,0 +1,32 @@ +columnSuffix: null +handle: snippet +instructions: null +name: 'Builder: Content - Code - Snippet' +searchable: false +settings: + availableLanguages: + - css + - graphql + - html + - javascript + - json + - markdown + - mysql + - php + - shell + - twig + - typescript + - yaml + codeFolding: true + defaultValue: '' + fontSize: 14 + language: javascript + lineNumbers: true + monacoEditorOptions: '' + placeholder: '' + showLanguageDropdown: true + singleLineEditor: false + theme: vs-dark +translationKeyFormat: null +translationMethod: none +type: nystudio107\codefield\fields\Code diff --git a/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml b/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml new file mode 100644 index 00000000..b51e242b --- /dev/null +++ b/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: snippetCollapsed +instructions: null +name: 'Builder: Content - Code - Snippet collapsed' +searchable: false +settings: + default: false + offLabel: 'False' + onLabel: 'True' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Lightswitch diff --git a/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml b/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml new file mode 100644 index 00000000..a6fcd9b0 --- /dev/null +++ b/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml @@ -0,0 +1,16 @@ +columnSuffix: null +handle: snippetName +instructions: null +name: 'Builder: Content - Code - Snippet Name' +searchable: false +settings: + byteLimit: null + charLimit: null + code: false + initialRows: 4 + multiline: false + placeholder: null + uiMode: normal +translationKeyFormat: null +translationMethod: none +type: craft\fields\PlainText diff --git a/config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml b/config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml new file mode 100644 index 00000000..03019cd1 --- /dev/null +++ b/config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml @@ -0,0 +1,16 @@ +columnSuffix: null +handle: source +instructions: null +name: 'Builder: Content - Quote - Source' +searchable: true +settings: + byteLimit: null + charLimit: null + code: false + initialRows: 4 + multiline: false + placeholder: null + uiMode: normal +translationKeyFormat: null +translationMethod: none +type: craft\fields\PlainText diff --git a/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml b/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml new file mode 100644 index 00000000..dfafd66d --- /dev/null +++ b/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml @@ -0,0 +1,16 @@ +columnSuffix: null +handle: sourceSubline +instructions: null +name: 'Builder: Content - Quote - Source Subline' +searchable: true +settings: + byteLimit: null + charLimit: null + code: false + initialRows: 4 + multiline: false + placeholder: null + uiMode: normal +translationKeyFormat: null +translationMethod: none +type: craft\fields\PlainText diff --git a/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml b/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml new file mode 100644 index 00000000..88d41c2e --- /dev/null +++ b/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml @@ -0,0 +1,12 @@ +columnSuffix: null +handle: sourceUrl +instructions: null +name: 'Builder: Content - Quote - Source Url' +searchable: false +settings: + maxLength: 255 + types: + - url +translationKeyFormat: null +translationMethod: none +type: craft\fields\Link diff --git a/config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml b/config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml new file mode 100644 index 00000000..cce273d2 --- /dev/null +++ b/config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml @@ -0,0 +1,76 @@ +columnSuffix: null +handle: spaceBetweenBlocks +instructions: null +name: 'Builder: Content - Section - Space Between Blocks' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Zero + - + - value + - zero + - + - default + - '' + - + __assoc__: + - + - label + - SM + - + - value + - sm + - + - default + - '' + - + __assoc__: + - + - label + - MD + - + - value + - md + - + - default + - '' + - + __assoc__: + - + - label + - LG + - + - value + - lg + - + - default + - '1' + - + __assoc__: + - + - label + - XL + - + - value + - xl + - + - default + - '' + - + __assoc__: + - + - label + - 2XL + - + - value + - 2xl + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml b/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml new file mode 100644 index 00000000..5b5e40be --- /dev/null +++ b/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml @@ -0,0 +1,65 @@ +columnSuffix: null +handle: spacerVariant +instructions: null +name: 'Builder: Content - Spacer - Spacer Variant' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - SM + - + - value + - sm + - + - default + - '1' + - + __assoc__: + - + - label + - MD + - + - value + - md + - + - default + - '' + - + __assoc__: + - + - label + - LG + - + - value + - lg + - + - default + - '' + - + __assoc__: + - + - label + - XL + - + - value + - xl + - + - default + - '' + - + __assoc__: + - + - label + - 2XL + - + - value + - 2xl + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml b/config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml new file mode 100644 index 00000000..84430917 --- /dev/null +++ b/config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml @@ -0,0 +1,21 @@ +columnSuffix: null +handle: text +instructions: null +name: 'Builder: Content - Text - Text' +searchable: true +settings: + availableTransforms: '' + availableVolumes: '' + ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default + createButtonLabel: null + defaultTransform: null + enableSourceEditingForNonAdmins: false + purifierConfig: null + purifyHtml: true + showUnpermittedFiles: false + showUnpermittedVolumes: false + showWordCount: true + wordLimit: null +translationKeyFormat: null +translationMethod: none +type: craft\ckeditor\Field diff --git a/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml b/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml new file mode 100644 index 00000000..2814596d --- /dev/null +++ b/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml @@ -0,0 +1,21 @@ +columnSuffix: null +handle: text2 +instructions: null +name: 'Builder: Content - Text : Image - Text' +searchable: true +settings: + availableTransforms: '' + availableVolumes: '' + ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default + createButtonLabel: null + defaultTransform: null + enableSourceEditingForNonAdmins: false + purifierConfig: null + purifyHtml: true + showUnpermittedFiles: false + showUnpermittedVolumes: false + showWordCount: true + wordLimit: null +translationKeyFormat: null +translationMethod: none +type: craft\ckeditor\Field diff --git a/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml b/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml index ef4c24c1..c4cfbb00 100644 --- a/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml +++ b/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml @@ -1,6 +1,5 @@ columnSuffix: mzlozibq contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textCaption instructions: null name: 'Text: Caption' diff --git a/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml b/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml index 31cd2696..be2b3294 100644 --- a/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml +++ b/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml @@ -1,6 +1,5 @@ columnSuffix: tfqyxyzy contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textDescription instructions: null name: 'Text: Description' diff --git a/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml b/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml index c6087c66..b5dfcdc4 100644 --- a/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml +++ b/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml @@ -1,6 +1,5 @@ columnSuffix: qhlkmili contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textEditorDefault instructions: null name: 'Text: Editor Default' diff --git a/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml b/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml index ed9e52fe..97f11860 100644 --- a/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml +++ b/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml @@ -1,6 +1,5 @@ columnSuffix: qywrnmby contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textEditorSimple instructions: null name: 'Text: Editor Simple' diff --git a/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml b/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml index 9e992b03..e5b2c26d 100644 --- a/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml +++ b/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml @@ -1,6 +1,5 @@ columnSuffix: kmnpmoky contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textLinks instructions: null name: 'Text: Links' diff --git a/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml b/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml index dce1d372..6c8b0ed8 100644 --- a/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml +++ b/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml @@ -1,6 +1,5 @@ columnSuffix: oexgxaui contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textSource instructions: null name: 'Text: Source' diff --git a/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml b/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml index c53fa40e..bc7a09d7 100644 --- a/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml +++ b/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml @@ -1,6 +1,5 @@ columnSuffix: xmuynimp contentColumnType: string(255) -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textSourceUrl instructions: null name: 'Text: Source Url' diff --git a/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml b/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml index a2d3c523..7c09f15f 100644 --- a/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml +++ b/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml @@ -1,6 +1,5 @@ columnSuffix: twbwiyps contentColumnType: text -fieldGroup: 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4 # Text handle: textTitleOverwrite instructions: null name: 'Text: Title Overwrite' diff --git a/config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml b/config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml new file mode 100644 index 00000000..b2207c29 --- /dev/null +++ b/config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml @@ -0,0 +1,80 @@ +columnSuffix: swaooeeb +handle: variant +instructions: null +name: 'Builder: Content - Images - Variant' +searchable: false +settings: + options: + - + __assoc__: + - + - optgroup + - Grid + - + __assoc__: + - + - label + - 'Grid (2 Cols)' + - + - value + - grid2Cols + - + - default + - '1' + - + __assoc__: + - + - label + - 'Grid (3 Cols)' + - + - value + - grid3Cols + - + - default + - '' + - + __assoc__: + - + - label + - 'Grid Calculated' + - + - value + - gridCalculated + - + - default + - '' + - + __assoc__: + - + - optgroup + - Gallery + - + __assoc__: + - + - label + - Gallery + - + - value + - gallery + - + - default + - '' + - + __assoc__: + - + - optgroup + - Slider + - + __assoc__: + - + - label + - Slider + - + - value + - slider + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml b/config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml new file mode 100644 index 00000000..afd45b08 --- /dev/null +++ b/config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml @@ -0,0 +1,16 @@ +columnSuffix: null +handle: videoId +instructions: null +name: 'Builder: Content - Video - Video Id' +searchable: true +settings: + byteLimit: null + charLimit: null + code: false + initialRows: 4 + multiline: false + placeholder: null + uiMode: normal +translationKeyFormat: null +translationMethod: none +type: craft\fields\PlainText diff --git a/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml b/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml new file mode 100644 index 00000000..47e3a488 --- /dev/null +++ b/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml @@ -0,0 +1,32 @@ +columnSuffix: msfzxjxb +handle: videoProvider +instructions: null +name: 'Builder: Content - Video - Video Provider' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Youtube + - + - value + - youtube + - + - default + - '1' + - + __assoc__: + - + - label + - Vimeo + - + - value + - vimeo + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml b/config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml new file mode 100644 index 00000000..62f0d210 --- /dev/null +++ b/config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml @@ -0,0 +1,32 @@ +columnSuffix: null +handle: videoWidth +instructions: null +name: 'Builder: Content - Video - Video Width' +searchable: false +settings: + options: + - + __assoc__: + - + - label + - Wide + - + - value + - wide + - + - default + - '1' + - + __assoc__: + - + - label + - Narrow + - + - value + - narrow + - + - default + - '' +translationKeyFormat: null +translationMethod: none +type: craft\fields\Dropdown diff --git a/config/project/graphql/schemas/644167c0-ab2a-4f9d-9b2b-09f5a6556ef3.yaml b/config/project/graphql/schemas/644167c0-ab2a-4f9d-9b2b-09f5a6556ef3.yaml index 7b5f5103..ae991a98 100644 --- a/config/project/graphql/schemas/644167c0-ab2a-4f9d-9b2b-09f5a6556ef3.yaml +++ b/config/project/graphql/schemas/644167c0-ab2a-4f9d-9b2b-09f5a6556ef3.yaml @@ -5,24 +5,19 @@ scope: - 'elements.drafts:read' - 'elements.revisions:read' - 'elements.inactive:read' - - 'sections.e5172a18-ed16-4229-89ca-fc0dc776597a:read' # Error Pages - - 'entrytypes.8ced5be5-13b2-483f-8db9-aab9757aad21:read' # Error - - 'sections.5d0f7961-203c-4008-a55a-6a7d35e7a37a:read' # Home - - 'entrytypes.81d0ea50-f7e1-4eff-8138-2a06ffbfae86:read' # Home - - 'sections.3547e7b4-f3fb-4cf4-9d29-9f12dfa94594:read' # News - - 'entrytypes.fb701216-3e80-4e6d-99d4-2e5f70561e22:read' # News Default - - 'sections.b0207f48-be48-49ab-a759-1ff51f232df3:read' # Pages - - 'entrytypes.2f642060-4792-41cb-a427-083aabeba231:read' # Page Content Builder - - 'entrytypes.6d94dcc4-6ec1-45b4-8c86-e53cee842b11:read' # Page News - 'volumes.6c5fc0dd-cf56-48d8-8af8-88abe763b970:read' # Files - 'volumes.f1b38495-8096-48fa-9b78-0da345e3295c:read' # Images - 'volumes.77c74b5c-6bbb-41a7-b166-c6b158a3cc7f:read' # Template Images - 'volumes.8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6:read' # Users - 'usergroups.everyone:read' - - 'formieForms.all:read' - - 'formieForms.56e2dea4-d25e-496d-b053-48387e824b07:read' - - 'formieSubmissions.all:read' - - 'formieSubmissions.56e2dea4-d25e-496d-b053-48387e824b07:read' - - 'navigationNavs.all:read' - - 'navigationNavs.7eb1a718-0679-4fda-b656-9bfdf55a2025:read' # Navigation Main + - 'formieforms.all:read' + - 'formieforms.56e2dea4-d25e-496d-b053-48387e824b07:read' + - 'formiesubmissions.all:read' + - 'formiesubmissions.56e2dea4-d25e-496d-b053-48387e824b07:read' + - 'navigationnavs.all:read' + - 'navigationnavs.7eb1a718-0679-4fda-b656-9bfdf55a2025:read' # Navigation Main - 'seomatic.all:read' + - 'sections.5d0f7961-203c-4008-a55a-6a7d35e7a37a:read' # Home + - 'sections.3547e7b4-f3fb-4cf4-9d29-9f12dfa94594:read' # News + - 'sections.b0207f48-be48-49ab-a759-1ff51f232df3:read' # Pages + - 'sections.e5172a18-ed16-4229-89ca-fc0dc776597a:read' # Error Pages diff --git a/config/project/matrixBlockTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml b/config/project/matrixBlockTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml deleted file mode 100644 index 1b4a3811..00000000 --- a/config/project/matrixBlockTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml +++ /dev/null @@ -1,121 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 410c9682-a3f7-4475-9013-0453aac4635d: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba # Snippet Name - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 17c573f3-0377-4ea8-834f-091f04d60568 - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: be45c3e2-5e9f-491e-a000-94d95c4fa20b # Snippet - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: d0187af9-ab3b-48cf-9fa9-8cfb76e48a9e - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f # Snippet collapsed - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: db3144df-7836-499b-a09c-74aa13fe121c - userCondition: null - warning: null - width: 50 - name: Content - uid: c033e8a9-eab3-4bd0-bea5-4a8d2dcf5ad3 - userCondition: null -fields: - 9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba: # Snippet Name - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: snippetName - instructions: null - name: 'Snippet Name' - searchable: false - settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal - translationKeyFormat: null - translationMethod: none - type: craft\fields\PlainText - be45c3e2-5e9f-491e-a000-94d95c4fa20b: # Snippet - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: snippet - instructions: null - name: Snippet - searchable: false - settings: - availableLanguages: - - css - - graphql - - html - - javascript - - json - - markdown - - mysql - - php - - shell - - twig - - typescript - - yaml - codeFolding: true - columnType: text - defaultValue: '' - fontSize: 14 - language: javascript - lineNumbers: true - monacoEditorOptions: '' - placeholder: '' - showLanguageDropdown: true - singleLineEditor: false - theme: vs-dark - translationKeyFormat: null - translationMethod: none - type: nystudio107\codefield\fields\Code - cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f: # Snippet collapsed - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: snippetCollapsed - instructions: null - name: 'Snippet collapsed' - searchable: false - settings: - default: false - offLabel: 'False' - onLabel: 'True' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch -handle: blockCode -name: Code -sortOrder: 10 diff --git a/config/project/matrixBlockTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml b/config/project/matrixBlockTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml deleted file mode 100644 index 0fdd8fea..00000000 --- a/config/project/matrixBlockTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml +++ /dev/null @@ -1,95 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 4423c5be-938a-4871-bd99-52e14a8de079: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: f084e099-613d-4405-b600-f4be12d3509b # Divider Variant - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: b37c0cae-90a6-44b1-95f1-c0fbb5c25213 - userCondition: null - warning: null - width: 100 - name: Content - uid: ae8f94aa-5f01-405e-9c05-1294f1d44a6a - userCondition: null -fields: - f084e099-613d-4405-b600-f4be12d3509b: # Divider Variant - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: dividerVariant - instructions: null - name: 'Divider Variant' - searchable: false - settings: - columnType: string - options: - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '1' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown -handle: blockDivider -name: Divider -sortOrder: 8 diff --git a/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml b/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml deleted file mode 100644 index 79be8bcd..00000000 --- a/config/project/matrixBlockTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml +++ /dev/null @@ -1,210 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 58ddc97d-9694-4104-a136-b6344987e1b6: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 35b67fb3-4bdb-470f-a686-3d46c5cd5f96 # Image - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 0cd02812-349c-46d5-a4b7-57700a221566 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 9b73b533-898f-4f77-a500-37ea0be0afc7 # Show Image Caption - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 089ab2ac-9335-40c2-9827-f4dd1baca5dc - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 70bc887b-faf2-45c7-b4bc-4299acd343da # Image Ratio - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: b0fb63ad-8f84-4caf-a7b6-c0e44deeae12 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 1be86da8-5273-40c6-ba88-718f5c32a6c3 # Image Width - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 744a7c6f-6d25-4c12-8d70-9a8752b5f5f6 - userCondition: null - warning: null - width: 50 - name: Content - uid: 5e8a312e-45d0-491c-924d-84d96af3b270 - userCondition: null -fields: - 1be86da8-5273-40c6-ba88-718f5c32a6c3: # Image Width - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: imageWidth - instructions: null - name: 'Image Width' - searchable: false - settings: - columnType: string - options: - - - __assoc__: - - - - label - - Wide - - - - value - - wide - - - - default - - '1' - - - __assoc__: - - - - label - - Narrow - - - - value - - narrow - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - 9b73b533-898f-4f77-a500-37ea0be0afc7: # Show Image Caption - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: showImageCaption - instructions: null - name: 'Show Image Caption' - searchable: false - settings: - default: false - offLabel: null - onLabel: null - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch - 35b67fb3-4bdb-470f-a686-3d46c5cd5f96: # Image - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: image - instructions: null - name: Image - searchable: false - settings: - allowSelfRelations: false - allowSubfolders: false - allowUploads: true - allowedKinds: - - image - branchLimit: null - defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - defaultUploadLocationSubpath: null - localizeRelations: false - maintainHierarchy: false - maxRelations: 1 - minRelations: null - previewMode: full - restrictFiles: true - restrictLocation: false - restrictedDefaultUploadSubpath: null - restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - restrictedLocationSubpath: null - selectionLabel: null - showSiteMenu: true - showUnpermittedFiles: true - showUnpermittedVolumes: true - sources: - - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - targetSiteId: null - validateRelatedElements: true - viewMode: large - translationKeyFormat: null - translationMethod: site - type: craft\fields\Assets - 70bc887b-faf2-45c7-b4bc-4299acd343da: # Image Ratio - columnSuffix: null - contentColumnType: string(16) - fieldGroup: null - handle: imageRatio - instructions: null - name: 'Image Ratio' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Landscape - - - - value - - aspect-landscape - - - - default - - '1' - - - __assoc__: - - - - label - - Square - - - - value - - aspect-square - - - - default - - '' - - - __assoc__: - - - - label - - Portrait - - - - value - - aspect-portrait - - - - default - - '' - - - __assoc__: - - - - label - - Auto - - - - value - - aspect-auto - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown -handle: blockImage -name: Image -sortOrder: 5 diff --git a/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml b/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml deleted file mode 100644 index bfc5cb56..00000000 --- a/config/project/matrixBlockTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml +++ /dev/null @@ -1,258 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 6c449cd7-ebc2-4ce6-be61-1e8c90cb176b: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 74c3cd4f-b565-4fb4-879e-72022774f93c # Variant - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 11e9d4b4-edcc-4533-b7a1-8b07c6602017 - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: 75195ab8-b7c4-4dca-b807-ef8a042ef5a9 # Images - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: d10b279e-4bce-49cf-90fd-0a2fae06d537 - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c # Image Ratio - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 721a9d99-a7c1-4462-b772-b18fadab09e8 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: e0e9e510-46ff-45aa-aa46-700b325bb911 # Show Image Caption - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 9eae0590-a0dc-4c71-8d19-af63a55af1bd - userCondition: null - warning: null - width: 50 - name: Content - uid: 56042e3e-7a7b-4a4c-9222-63e004682c9b - userCondition: null -fields: - 74c3cd4f-b565-4fb4-879e-72022774f93c: # Variant - columnSuffix: swaooeeb - contentColumnType: string(14) - fieldGroup: null - handle: variant - instructions: null - name: Variant - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - optgroup - - Grid - - - __assoc__: - - - - label - - 'Grid (2 Cols)' - - - - value - - grid2Cols - - - - default - - '1' - - - __assoc__: - - - - label - - 'Grid (3 Cols)' - - - - value - - grid3Cols - - - - default - - '' - - - __assoc__: - - - - label - - 'Grid Calculated' - - - - value - - gridCalculated - - - - default - - '' - - - __assoc__: - - - - optgroup - - Gallery - - - __assoc__: - - - - label - - Gallery - - - - value - - gallery - - - - default - - '' - - - __assoc__: - - - - optgroup - - Slider - - - __assoc__: - - - - label - - Slider - - - - value - - slider - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - 75195ab8-b7c4-4dca-b807-ef8a042ef5a9: # Images - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: images - instructions: null - name: Images - searchable: false - settings: - allowSelfRelations: false - allowSubfolders: false - allowUploads: true - allowedKinds: - - image - branchLimit: null - defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - defaultUploadLocationSubpath: null - localizeRelations: false - maintainHierarchy: false - maxRelations: null - minRelations: null - previewMode: full - restrictFiles: true - restrictLocation: false - restrictedDefaultUploadSubpath: null - restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - restrictedLocationSubpath: null - selectionLabel: null - showSiteMenu: true - showUnpermittedFiles: true - showUnpermittedVolumes: true - sources: - - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - targetSiteId: null - validateRelatedElements: true - viewMode: large - translationKeyFormat: null - translationMethod: site - type: craft\fields\Assets - 62883121-63a2-4e5c-a6f3-4855cf64df2c: # Image Ratio - columnSuffix: null - contentColumnType: string(16) - fieldGroup: null - handle: imageRatio - instructions: 'Usable for: Grids (non calculated) / Sliders' - name: 'Image Ratio' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Landscape - - - - value - - aspect-landscape - - - - default - - '1' - - - __assoc__: - - - - label - - Square - - - - value - - aspect-square - - - - default - - '' - - - __assoc__: - - - - label - - Portrait - - - - value - - aspect-portrait - - - - default - - '' - - - __assoc__: - - - - label - - Auto - - - - value - - aspect-auto - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - e0e9e510-46ff-45aa-aa46-700b325bb911: # Show Image Caption - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: showImageCaption - instructions: 'Usable for: Grids' - name: 'Show Image Caption' - searchable: false - settings: - default: false - offLabel: null - onLabel: null - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch -handle: blockImages -name: Images -sortOrder: 6 diff --git a/config/project/matrixBlockTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml b/config/project/matrixBlockTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml deleted file mode 100644 index 152e1c8a..00000000 --- a/config/project/matrixBlockTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml +++ /dev/null @@ -1,141 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - e22d570c-156e-4591-a91a-2af67c7ed22b: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 53f0660a-f06b-4b2d-b342-1869c5c65538 # Quote - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: bd2dc568-fec5-4384-b6d0-dc26b5dd7b34 - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0 # Source - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 9fcea238-ad3d-4958-9762-4a3f7c2cb1e9 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 75b6f580-613f-42ae-aa23-2d5fb22ff3da # Source Subline - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 81e0a6bb-2f47-4d2f-b800-a0a2651a916f - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: e11e03f7-19c1-45c3-935e-1994a7ce7d26 # Source Url - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 25bfda37-86b0-4276-ae59-e34d406c5eba - userCondition: null - warning: null - width: 50 - name: Content - uid: 8e061a5e-d78f-48e7-b026-09c9f9a49a67 - userCondition: null -fields: - 53f0660a-f06b-4b2d-b342-1869c5c65538: # Quote - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: quote - instructions: null - name: Quote - searchable: true - settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: e8b10d27-be46-4108-9bf5-3a8711280165 # Rich Text Simple - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null - translationKeyFormat: null - translationMethod: none - type: craft\ckeditor\Field - 75b6f580-613f-42ae-aa23-2d5fb22ff3da: # Source Subline - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: sourceSubline - instructions: null - name: 'Source Subline' - searchable: true - settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal - translationKeyFormat: null - translationMethod: none - type: craft\fields\PlainText - c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0: # Source - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: source - instructions: null - name: Source - searchable: true - settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal - translationKeyFormat: null - translationMethod: none - type: craft\fields\PlainText - e11e03f7-19c1-45c3-935e-1994a7ce7d26: # Source Url - columnSuffix: null - contentColumnType: string(255) - fieldGroup: null - handle: sourceUrl - instructions: null - name: 'Source Url' - searchable: false - settings: - maxLength: 255 - types: - - url - translationKeyFormat: null - translationMethod: none - type: craft\fields\Url -handle: blockQuote -name: Quote -sortOrder: 4 diff --git a/config/project/matrixBlockTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml b/config/project/matrixBlockTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml deleted file mode 100644 index 93fca197..00000000 --- a/config/project/matrixBlockTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml +++ /dev/null @@ -1,246 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - b5f39594-4dfb-477b-a358-ea2dac368b7b: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b # Section Background Color - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 483ce826-3abf-48ac-8c95-5114bda99f30 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 74b87138-1475-47c2-a9dd-63baa78dd5f5 # Space Between Blocks - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 16c62a98-e675-40ee-a4d0-8ca2543ed5de - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec # Section Padding Vertical - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: d2acb96f-9f12-4449-ad76-d024ad3d28ab - userCondition: null - warning: null - width: 50 - name: Content - uid: 5cb029e3-a009-451e-8ab8-a2a2dec9a3f5 - userCondition: null -fields: - 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b: # Section Background Color - columnSuffix: null - contentColumnType: string(11) - fieldGroup: null - handle: sectionBackgroundColor - instructions: null - name: 'Section Background Color' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Transparent - - - - value - - transparent - - - - default - - '1' - - - __assoc__: - - - - label - - 'Light Gray' - - - - value - - light-gray - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - 74b87138-1475-47c2-a9dd-63baa78dd5f5: # Space Between Blocks - columnSuffix: null - contentColumnType: string(4) - fieldGroup: null - handle: spaceBetweenBlocks - instructions: null - name: 'Space Between Blocks' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Zero - - - - value - - zero - - - - default - - '' - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '1' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - aa7883a4-2cce-4316-85f3-ec6ea59402ec: # Section Padding Vertical - columnSuffix: null - contentColumnType: string(4) - fieldGroup: null - handle: sectionPaddingVertical - instructions: null - name: 'Section Padding Vertical' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Zero - - - - value - - zero - - - - default - - '1' - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown -handle: blockSection -name: Section -sortOrder: 1 diff --git a/config/project/matrixBlockTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml b/config/project/matrixBlockTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml deleted file mode 100644 index 6c0af61e..00000000 --- a/config/project/matrixBlockTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml +++ /dev/null @@ -1,95 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - a4335b2d-af34-4544-b20a-e4a928a3693c: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 1b37c439-5a32-4e8f-8019-7f6a94593419 # Spacer Variant - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: c8ba7044-fa9a-4546-9493-16bccb73a76e - userCondition: null - warning: null - width: 100 - name: Content - uid: 1ce6448e-436d-4f3c-b18e-d4b338f00b99 - userCondition: null -fields: - 1b37c439-5a32-4e8f-8019-7f6a94593419: # Spacer Variant - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: spacerVariant - instructions: null - name: 'Spacer Variant' - searchable: false - settings: - columnType: string - options: - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '1' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown -handle: blockSpacer -name: Spacer -sortOrder: 9 diff --git a/config/project/matrixBlockTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml b/config/project/matrixBlockTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml deleted file mode 100644 index a93cf709..00000000 --- a/config/project/matrixBlockTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml +++ /dev/null @@ -1,50 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 12757233-a8be-4796-bed0-bdaffeb488ae: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: d4cabad1-1cae-4a1e-a914-c38d9f1a813a # Text - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 0b98c8af-6fb9-4a18-b577-3f75b079e8f2 - userCondition: null - warning: null - width: 100 - name: Content - uid: f371c36b-db60-4c3f-a1dc-a3e11244e2ca - userCondition: null -fields: - d4cabad1-1cae-4a1e-a914-c38d9f1a813a: # Text - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: text - instructions: null - name: Text - searchable: true - settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null - translationKeyFormat: null - translationMethod: none - type: craft\ckeditor\Field -handle: blockText -name: Text -sortOrder: 2 diff --git a/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml b/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml deleted file mode 100644 index 3dfc734e..00000000 --- a/config/project/matrixBlockTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml +++ /dev/null @@ -1,225 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 7b6ace88-ae82-4caf-afe4-1650ce6e7ce3: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 0a7dd988-f4db-40b7-8112-6f6fc7c4fb54 # Text - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 51b01a52-b32f-4ffa-910d-ef9fe863f1ef - userCondition: null - warning: null - width: 100 - - - elementCondition: null - fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: ab6dd79a-0d9c-4799-860a-01a7c242ba68 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 98f7a455-6764-4b7d-8d19-405bdcc42228 # Image Ratio - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 04337482-6861-47b4-8a21-cd4447d746ab - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 6a90dae3-938c-47e6-8e36-6b1d6be92d63 # Show Image Caption - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 50f248bd-1435-4f9e-8225-ce71ceadbd90 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82 # Image Position - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 1ce2335a-ddf7-4a2f-a788-0c629ecec74b - userCondition: null - warning: null - width: 50 - name: Content - uid: a7ac4d85-057b-421c-a16b-b382da491a30 - userCondition: null -fields: - 0a7dd988-f4db-40b7-8112-6f6fc7c4fb54: # Text - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: text - instructions: null - name: Text - searchable: true - settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null - translationKeyFormat: null - translationMethod: none - type: craft\ckeditor\Field - 6a90dae3-938c-47e6-8e36-6b1d6be92d63: # Show Image Caption - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: showImageCaption - instructions: null - name: 'Show Image Caption' - searchable: false - settings: - default: false - offLabel: null - onLabel: null - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch - 98f7a455-6764-4b7d-8d19-405bdcc42228: # Image Ratio - columnSuffix: null - contentColumnType: string(16) - fieldGroup: null - handle: imageRatio - instructions: null - name: 'Image Ratio' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Landscape - - - - value - - aspect-landscape - - - - default - - '1' - - - __assoc__: - - - - label - - Square - - - - value - - aspect-square - - - - default - - '' - - - __assoc__: - - - - label - - Portrait - - - - value - - aspect-portrait - - - - default - - '' - - - __assoc__: - - - - label - - Auto - - - - value - - aspect-auto - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82: # Image Position - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: imagePosition - instructions: null - name: 'Image Position' - searchable: false - settings: - default: false - offLabel: Left - onLabel: Right - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch - b81cb731-dd6f-4055-9c6d-2f076a727a27: # Image - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: image - instructions: null - name: Image - searchable: false - settings: - allowSelfRelations: false - allowSubfolders: false - allowUploads: true - allowedKinds: - - image - branchLimit: null - defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - defaultUploadLocationSubpath: null - localizeRelations: false - maintainHierarchy: false - maxRelations: 1 - minRelations: null - previewMode: full - restrictFiles: true - restrictLocation: false - restrictedDefaultUploadSubpath: null - restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - restrictedLocationSubpath: null - selectionLabel: null - showSiteMenu: true - showUnpermittedFiles: true - showUnpermittedVolumes: true - sources: - - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - targetSiteId: null - validateRelatedElements: true - viewMode: large - translationKeyFormat: null - translationMethod: site - type: craft\fields\Assets -handle: blockTextImage -name: 'Text : Image' -sortOrder: 3 diff --git a/config/project/matrixBlockTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml b/config/project/matrixBlockTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml deleted file mode 100644 index ab11755d..00000000 --- a/config/project/matrixBlockTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml +++ /dev/null @@ -1,196 +0,0 @@ -field: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content -fieldLayouts: - 1abefa28-ba0b-4e7e-be2b-12835562bb01: - tabs: - - - elementCondition: null - elements: - - - elementCondition: null - fieldUid: 63bd200d-3882-4788-a8ba-528452521d6c # Video Provider - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 61617279-3f13-4142-9007-28c5defd3157 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: e9486b85-fd5e-40c8-851b-a6b0133e1f88 # Video Id - instructions: null - label: null - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 209e0b27-694f-492c-8618-f97820ac8a2a - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0 # Autoplay - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 85e4faf3-8c53-4926-9624-5ba7b9cca49b - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 4a25e574-679a-4d01-8e8b-d5927129ce33 # Loop - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: ca8a500e-d6df-4d29-b957-9e9f7172facc - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 68109da0-245f-4b21-b040-b7f4385e618e # Video Width - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: 6b9c294a-c00e-4b45-b0e5-c0ff793155ac - userCondition: null - warning: null - width: 50 - name: Content - uid: bb2df4f8-8532-459f-ae5f-12b9013d58c0 - userCondition: null -fields: - 3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0: # Autoplay - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: autoplay - instructions: null - name: Autoplay - searchable: false - settings: - default: false - offLabel: null - onLabel: null - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch - 4a25e574-679a-4d01-8e8b-d5927129ce33: # Loop - columnSuffix: null - contentColumnType: boolean - fieldGroup: null - handle: loop - instructions: null - name: Loop - searchable: false - settings: - default: false - offLabel: null - onLabel: null - translationKeyFormat: null - translationMethod: none - type: craft\fields\Lightswitch - 63bd200d-3882-4788-a8ba-528452521d6c: # Video Provider - columnSuffix: msfzxjxb - contentColumnType: string(7) - fieldGroup: null - handle: videoProvider - instructions: null - name: 'Video Provider' - searchable: false - settings: - columnType: null - options: - - - __assoc__: - - - - label - - Youtube - - - - value - - youtube - - - - default - - '1' - - - __assoc__: - - - - label - - Vimeo - - - - value - - vimeo - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - 68109da0-245f-4b21-b040-b7f4385e618e: # Video Width - columnSuffix: null - contentColumnType: string - fieldGroup: null - handle: videoWidth - instructions: null - name: 'Video Width' - searchable: false - settings: - columnType: string - options: - - - __assoc__: - - - - label - - Wide - - - - value - - wide - - - - default - - '1' - - - __assoc__: - - - - label - - Narrow - - - - value - - narrow - - - - default - - '' - translationKeyFormat: null - translationMethod: none - type: craft\fields\Dropdown - e9486b85-fd5e-40c8-851b-a6b0133e1f88: # Video Id - columnSuffix: null - contentColumnType: text - fieldGroup: null - handle: videoId - instructions: null - name: 'Video Id' - searchable: true - settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal - translationKeyFormat: null - translationMethod: none - type: craft\fields\PlainText -handle: blockVideo -name: Video -sortOrder: 7 diff --git a/config/project/project.yaml b/config/project/project.yaml index 17bcd3a8..af9837a2 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1725478711 +dateModified: 1725479328 elementSources: craft\elements\Asset: - @@ -78,90 +78,44 @@ fs: url: '@assetsUrl/users/' meta: __names__: - 0a7dd988-f4db-40b7-8112-6f6fc7c4fb54: Text # Text 0dc851b0-a289-4c50-be8d-0c055b270ee8: 'Asset: Entry Image' # Asset: Entry Image - 1b37c439-5a32-4e8f-8019-7f6a94593419: 'Spacer Variant' # Spacer Variant - 1be86da8-5273-40c6-ba88-718f5c32a6c3: 'Image Width' # Image Width 1c94bbf7-46b0-46e4-a699-b4eef42994a0: 'Text: Editor Simple' # Text: Editor Simple 2bc1feee-cfc8-48ee-bace-f101e7f41ac9: Default # Default 2f642060-4792-41cb-a427-083aabeba231: 'Page Content Builder' # Page Content Builder - 3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0: Autoplay # Autoplay - 4a25e574-679a-4d01-8e8b-d5927129ce33: Loop # Loop - 5c9f2ce6-f780-4ea6-a50c-539a252aec94: Images # Images 5d0f7961-203c-4008-a55a-6a7d35e7a37a: Home # Home - 6a90dae3-938c-47e6-8e36-6b1d6be92d63: 'Show Image Caption' # Show Image Caption 6c5fc0dd-cf56-48d8-8af8-88abe763b970: Files # Files 6d94dcc4-6ec1-45b4-8c86-e53cee842b11: 'Page News' # Page News 6f4a3e01-23de-4313-8109-00a430317d11: 'Rich Text Default' # Rich Text Default - 7b3b13e0-e20d-4d51-b0ae-832300f45234: Text # Text - 7b23a4a8-a6f8-43c4-b12c-326d089176ad: Video # Video 7eb1a718-0679-4fda-b656-9bfdf55a2025: 'Navigation Main' # Navigation Main 8ced5be5-13b2-483f-8db9-aab9757aad21: Error # Error 8d272b11-c1b4-4fc3-95c8-9d94fa513795: 'Text: Links' # Text: Links 8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6: Users # Users - 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b: 'Section Background Color' # Section Background Color - 9b73b533-898f-4f77-a500-37ea0be0afc7: 'Show Image Caption' # Show Image Caption - 9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba: 'Snippet Name' # Snippet Name - 35b67fb3-4bdb-470f-a686-3d46c5cd5f96: Image # Image - 53f0660a-f06b-4b2d-b342-1869c5c65538: Quote # Quote - 63bd200d-3882-4788-a8ba-528452521d6c: 'Video Provider' # Video Provider 63e3914d-ee70-44c2-9dc3-91551f47c54f: 'Text: Editor Default' # Text: Editor Default - 70bc887b-faf2-45c7-b4bc-4299acd343da: 'Image Ratio' # Image Ratio - 74b87138-1475-47c2-a9dd-63baa78dd5f5: 'Space Between Blocks' # Space Between Blocks - 74c3cd4f-b565-4fb4-879e-72022774f93c: Variant # Variant 74eb36ae-7a26-4e7d-b454-990ec52617f0: 'Builder: Content' # Builder: Content - 75b6f580-613f-42ae-aa23-2d5fb22ff3da: 'Source Subline' # Source Subline 77c74b5c-6bbb-41a7-b166-c6b158a3cc7f: 'Template Images' # Template Images 81d0ea50-f7e1-4eff-8138-2a06ffbfae86: Home # Home - 98f7a455-6764-4b7d-8d19-405bdcc42228: 'Image Ratio' # Image Ratio - 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82: 'Image Position' # Image Position 419ebfbb-8723-48db-ae89-10adf52cdf11: 'Text: Source' # Text: Source 1516a801-6243-468d-b8e2-479085458faa: 'Text: Title Overwrite' # Text: Title Overwrite - 3497ad65-5e4c-43cb-b469-c3e4b3d80343: 'Text : Image' # Text : Image 3547e7b4-f3fb-4cf4-9d29-9f12dfa94594: News # News 8153a2df-373f-4aac-9a92-d52292c9f1aa: Baukasten # Baukasten - 8512e79b-4bb8-4d2d-b731-5fa98546f2c9: Builders # Builders 8780cb03-c9ea-4482-ab85-3e541453b50f: 'Text: Source Url' # Text: Source Url 9005a655-4d9f-46b4-8c33-aadba34b6112: 'Social Sharing Facebook' # Social Sharing Facebook 45510f13-91d2-479f-9ff2-68dd09ab6643: 'Text: Description' # Text: Description - 68109da0-245f-4b21-b040-b7f4385e618e: 'Video Width' # Video Width - 75195ab8-b7c4-4dca-b807-ef8a042ef5a9: Images # Images - 92963d20-e763-4d2e-a367-9e543dfde522: Spacer # Spacer - 295738c1-951d-4b8c-b5cd-83d71a85d7e8: Image # Image 644167c0-ab2a-4f9d-9b2b-09f5a6556ef3: 'Public Schema' # Public Schema - 4267733c-fa2b-45f5-a3b6-8b56a1c56dc4: Text # Text - 62883121-63a2-4e5c-a6f3-4855cf64df2c: 'Image Ratio' # Image Ratio - aa7883a4-2cce-4316-85f3-ec6ea59402ec: 'Section Padding Vertical' # Section Padding Vertical aac37142-e533-49aa-8665-b8cc6360e98b: 'Text: Caption' # Text: Caption b0207f48-be48-49ab-a759-1ff51f232df3: Pages # Pages - b81cb731-dd6f-4055-9c6d-2f076a727a27: Image # Image - b921eaa9-858e-4901-bbb9-15b70cac9a6e: Relations # Relations - b3022ef5-7f1b-49d7-976d-5d5be501c1f1: Section # Section - be45c3e2-5e9f-491e-a000-94d95c4fa20b: Snippet # Snippet - c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0: Source # Source - cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f: 'Snippet collapsed' # Snippet collapsed - d4cabad1-1cae-4a1e-a914-c38d9f1a813a: Text # Text d29e8520-ab62-4c8f-bda2-61868797c1ca: 'SEO: SEOmatic' # SEO: SEOmatic - d383bdc6-fcfa-4652-9155-d7ead2d89f29: Assets # Assets - dfb88745-e0f0-4c67-9781-f72dad33bf65: SEO # SEO - e0e9e510-46ff-45aa-aa46-700b325bb911: 'Show Image Caption' # Show Image Caption - e3c7bdf5-9e45-4977-ba11-1e2c4b57644e: Divider # Divider e8b10d27-be46-4108-9bf5-3a8711280165: 'Rich Text Simple' # Rich Text Simple - e11e03f7-19c1-45c3-935e-1994a7ce7d26: 'Source Url' # Source Url e5172a18-ed16-4229-89ca-fc0dc776597a: 'Error Pages' # Error Pages - e9486b85-fd5e-40c8-851b-a6b0133e1f88: 'Video Id' # Video Id - f084e099-613d-4405-b600-f4be12d3509b: 'Divider Variant' # Divider Variant f1b38495-8096-48fa-9b78-0da345e3295c: Images # Images - f3e1a215-a60f-4d6a-8897-e1a80a40c6cd: Code # Code f4959e03-fec0-4b1c-887e-5301a5f66742: 'Social Sharing Twitter' # Social Sharing Twitter - fa02ff5a-1741-4417-8c8f-b72b954dd4fd: Quote # Quote fb701216-3e80-4e6d-99d4-2e5f70561e22: 'News Default' # News Default plugins: blitz: edition: standard enabled: true licenseKey: $PLUGIN_BLITZ - schemaVersion: 4.23.0 + schemaVersion: 5.7.0.1 settings: integrations: - putyourlightson\blitz\drivers\integrations\CommerceIntegration @@ -210,7 +164,7 @@ plugins: edition: standard enabled: true licenseKey: $PLUGIN_NAVIGATION - schemaVersion: 2.0.7 + schemaVersion: 2.1.0 seomatic: edition: standard enabled: true @@ -272,7 +226,7 @@ system: live: true name: Baukasten retryDuration: null - schemaVersion: 4.5.3.0 + schemaVersion: 5.3.0.2 timeZone: Europe/Berlin users: allowPublicRegistration: false diff --git a/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml b/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml index f43fa9fe..a742cd56 100644 --- a/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml +++ b/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml @@ -1,5 +1,7 @@ defaultPlacement: end enableVersioning: false +entryTypes: + - 8ced5be5-13b2-483f-8db9-aab9757aad21 # Error handle: errorPages name: 'Error Pages' previewTargets: diff --git a/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml b/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml index 5fa20390..3c887865 100644 --- a/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml +++ b/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml @@ -1,5 +1,7 @@ defaultPlacement: end enableVersioning: true +entryTypes: + - 81d0ea50-f7e1-4eff-8138-2a06ffbfae86 # Home handle: home name: Home previewTargets: diff --git a/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml b/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml index e03a03e9..551c63f3 100644 --- a/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml +++ b/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml @@ -1,5 +1,7 @@ defaultPlacement: end enableVersioning: true +entryTypes: + - fb701216-3e80-4e6d-99d4-2e5f70561e22 # News Default handle: news name: News previewTargets: diff --git a/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml b/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml index 4f51b64c..35b7468a 100644 --- a/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml +++ b/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml @@ -1,5 +1,8 @@ defaultPlacement: end enableVersioning: true +entryTypes: + - 2f642060-4792-41cb-a427-083aabeba231 # Page Content Builder + - 6d94dcc4-6ec1-45b4-8c86-e53cee842b11 # Page News handle: pages name: Pages previewTargets: From fa7dc1eb6d7c5279f8a737913d6ce645266f670f Mon Sep 17 00:00:00 2001 From: David Hellmann Date: Thu, 5 Sep 2024 23:57:57 +0200 Subject: [PATCH 44/45] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20upgrade:=20All=20Tem?= =?UTF-8?q?plates=20etc.=20for=20C5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 7 +- composer.lock | 10 +- config/formie.php | 46 - config/general.php | 1 + config/imager-x.php | 4 +- config/palette.php | 23 - .../6f4a3e01-23de-4313-8109-00a430317d11.yaml | 5 +- .../e8b10d27-be46-4108-9bf5-3a8711280165.yaml | 1 + ...-f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml | 62 +- ...-e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml | 37 - ...-295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml | 82 +- ...-5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml | 68 +- ...-baf82dc6-9e5a-4933-aa96-15eed58c888f.yaml | 67 + ...-fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml | 78 +- ...-b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml | 84 +- ...-92963d20-e763-4d2e-a367-9e543dfde522.yaml | 48 +- ...-7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml | 42 +- ...-3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml | 82 +- ...-7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml | 72 +- ...2f642060-4792-41cb-a427-083aabeba231.yaml} | 53 +- ...8ced5be5-13b2-483f-8db9-aab9757aad21.yaml} | 45 +- ...81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml} | 55 +- ...6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml} | 47 +- ...fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml} | 55 +- ...-0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml | 36 - ...9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml} | 4 +- ...-74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml | 26 - ...-75f91f6f-fc53-49ad-bde0-365d6384b711.yaml | 20 + ...-87410aa7-3cd4-4961-9533-6d4f246113b5.yaml | 28 + ...be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml} | 6 +- ...-f084e099-613d-4405-b600-f4be12d3509b.yaml | 65 - ...-a3f76ec3-252e-4be6-8178-8f6b54acce19.yaml | 2475 +++++++++++++++++ ...c8a9d048-8e52-42a3-8e8a-44633a838802.yaml} | 1821 +++++------- ...-b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml | 6 +- ...-35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml | 36 - ...-210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml | 30 +- ...-62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml | 4 +- ...-98f7a455-6764-4b7d-8d19-405bdcc42228.yaml | 54 - ...-70bc887b-faf2-45c7-b4bc-4299acd343da.yaml | 54 - ...-1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml | 32 - ...-75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml | 6 +- ...74c3cd4f-b565-4fb4-879e-72022774f93c.yaml} | 6 +- ...31947efb-fa8c-473c-9b01-bd36c8d70b68.yaml} | 6 +- ...e01efe03-188f-486a-a2bd-b7c021ef142b.yaml} | 8 +- ...185fdccb-b242-4ff7-bf7f-a0f1e7e2987f.yaml} | 23 +- ...9add7508-89cd-4b19-b8e5-f6173a4ec371.yaml} | 8 +- ...5af0a821-fa33-490a-9439-3193f439dd06.yaml} | 4 +- ...-aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml | 76 - ...d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml} | 7 +- ...-e0e9e510-46ff-45aa-aa46-700b325bb911.yaml | 12 - ...-6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml | 12 - ...-9b73b533-898f-4f77-a500-37ea0be0afc7.yaml | 12 - ...-cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml | 12 - ...-9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml | 16 - ...-75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml | 16 - ...-e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml | 12 - ...-1b37c439-5a32-4e8f-8019-7f6a94593419.yaml | 65 - ...aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml} | 8 +- ...-0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml | 21 - ...-aac37142-e533-49aa-8665-b8cc6360e98b.yaml | 18 - ...-45510f13-91d2-479f-9ff2-68dd09ab6643.yaml | 22 - ...-63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml | 22 - ...-1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml | 22 - ...e884a8f9-92f0-48b3-a7e8-a6d95f47f6df.yaml} | 6 +- ...edfcb398-ef78-43ec-9434-d6405da2886e.yaml} | 4 +- ...-419ebfbb-8723-48db-ae89-10adf52cdf11.yaml | 18 - ...-8780cb03-c9ea-4482-ab85-3e541453b50f.yaml | 13 - ...-1516a801-6243-468d-b8e2-479085458faa.yaml | 18 - ...-63bd200d-3882-4788-a8ba-528452521d6c.yaml | 4 +- ...-7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml | 6 + config/project/project.yaml | 97 +- ...-e5172a18-ed16-4229-89ca-fc0dc776597a.yaml | 5 +- ...-5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml | 9 +- ...-3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml | 5 +- ...-b0207f48-be48-49ab-a759-1ff51f232df3.yaml | 7 +- .../d68cb5ea-4fb3-4661-8dc4-06d480a6990d.yaml | 130 + config/project/users/users.yaml | 8 + ...-6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml | 64 +- ...-f1b38495-8096-48fa-9b78-0da345e3295c.yaml | 57 +- ...-77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml | 57 +- ...-8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml | 55 +- ...m240904_201746_merge_image2_into_image.php | 15 + ...1752_merge_imageRatio2_into_imageRatio.php | 15 + ...1752_merge_imageRatio3_into_imageRatio.php | 15 + src/css/app.css | 3 +- src/public/css/controlPanelCss.css | 9 +- templates/.gitkeep | 0 .../_boilerplate/_layouts/layout-base.twig | 143 +- .../_layouts/layout-global-variables.twig | 21 - .../_boilerplate/_partials/head-meta.twig | 2 +- templates/_builders/_blocks.twig | 7 - templates/_builders/_builderContent.twig | 38 +- templates/_builders/blocks/blockSection.twig | 80 - templates/_components-sprig/paginateNews.twig | 2 +- templates/_components/button/button.twig | 6 +- templates/_components/caption/caption.twig | 7 +- templates/_components/card/cardNews.twig | 3 +- templates/_components/divider/divider.twig | 39 - templates/_components/gallery/images.twig | 6 +- templates/_components/grid/images.twig | 4 +- templates/_components/image/image.twig | 14 +- templates/_components/spacer/spacer.twig | 4 +- templates/_components/stacks/stackNews.twig | 4 +- templates/_components/text/code.twig | 13 +- templates/_components/text/plainText.css | 7 + .../text/{text.twig => plainText.twig} | 15 +- templates/_components/text/quote.twig | 6 +- .../text/{text.css => richText.css} | 2 +- .../text/richText.twig} | 23 +- .../fonts/fonts-default-preloading.twig | 36 +- templates/_layouts/layout-error.twig | 4 +- templates/_routerEntries.twig | 15 - templates/entry/pages/pageContentBuilder.twig | 29 - templates/entryTypes/_routerBlocks.twig | 6 + templates/entryTypes/_routerViews.twig | 13 + .../blocks/blockCode.twig | 11 +- .../blocks/blockImage.twig | 16 +- .../blocks/blockImages.twig | 47 +- templates/entryTypes/blocks/blockLinks.twig | 32 + .../blocks/blockQuote.twig | 4 +- templates/entryTypes/blocks/blockSection.twig | 79 + .../blocks/blockSpacer.twig | 5 +- .../blocks/blockText.twig | 7 +- .../blocks/blockTextImage.twig | 9 +- .../blocks/blockVideo.twig | 13 +- .../views/entryContentBuilder.twig} | 10 +- .../views/entryListNews.twig} | 2 +- .../entryTypes/views/entryNewsDetail.twig | 23 + .../hidden/patternlib/components/code.twig | 12 +- .../hidden/patternlib/components/text.twig | 7 +- web/transforms/.gitignore | 2 + 131 files changed, 4808 insertions(+), 2825 deletions(-) delete mode 100644 config/formie.php delete mode 100644 config/palette.php delete mode 100644 config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml create mode 100644 config/project/entryTypes/blockLinks--baf82dc6-9e5a-4933-aa96-15eed58c888f.yaml rename config/project/entryTypes/{pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml => entryContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml} (66%) rename config/project/entryTypes/{error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml => entryError--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml} (67%) rename config/project/entryTypes/{home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml => entryHome--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml} (66%) rename config/project/entryTypes/{pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml => entryListNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml} (66%) rename config/project/entryTypes/{newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml => entryNewsDetail--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml} (66%) delete mode 100644 config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml rename config/project/fields/{sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml => backgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml} (84%) delete mode 100644 config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml create mode 100644 config/project/fields/builderContent--75f91f6f-fc53-49ad-bde0-365d6384b711.yaml create mode 100644 config/project/fields/builderContentBlocks--87410aa7-3cd4-4961-9533-6d4f246113b5.yaml rename config/project/fields/{snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml => codeSnippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml} (87%) delete mode 100644 config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml create mode 100644 config/project/fields/hyperLink--a3f76ec3-252e-4be6-8178-8f6b54acce19.yaml rename config/project/fields/{textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml => hyperLinks--c8a9d048-8e52-42a3-8e8a-44633a838802.yaml} (71%) delete mode 100644 config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml delete mode 100644 config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml delete mode 100644 config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml delete mode 100644 config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml rename config/project/fields/{variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml => imagesViewMode--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml} (93%) rename config/project/fields/{loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml => lightswitchOff--31947efb-fa8c-473c-9b01-bd36c8d70b68.yaml} (71%) rename config/project/fields/{autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml => lightswitchOn--e01efe03-188f-486a-a2bd-b7c021ef142b.yaml} (62%) rename config/project/fields/{videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml => linkStyle--185fdccb-b242-4ff7-bf7f-a0f1e7e2987f.yaml} (58%) rename config/project/fields/{text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml => richText--9add7508-89cd-4b19-b8e5-f6173a4ec371.yaml} (73%) rename config/project/fields/{quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml => richTextSimple--5af0a821-fa33-490a-9439-3193f439dd06.yaml} (90%) delete mode 100644 config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml rename config/project/fields/{seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml => seomatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml} (86%) delete mode 100644 config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml delete mode 100644 config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml delete mode 100644 config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml delete mode 100644 config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml delete mode 100644 config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml delete mode 100644 config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml delete mode 100644 config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml delete mode 100644 config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml rename config/project/fields/{spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml => spacing--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml} (92%) delete mode 100644 config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml delete mode 100644 config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml delete mode 100644 config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml delete mode 100644 config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml delete mode 100644 config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml rename config/project/fields/{videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml => textMulti--e884a8f9-92f0-48b3-a7e8-a6d95f47f6df.yaml} (75%) rename config/project/fields/{source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml => textSingle--edfcb398-ef78-43ec-9434-d6405da2886e.yaml} (82%) delete mode 100644 config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml delete mode 100644 config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml delete mode 100644 config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml create mode 100644 config/project/users/fieldLayouts/d68cb5ea-4fb3-4661-8dc4-06d480a6990d.yaml create mode 100644 config/project/users/users.yaml create mode 100644 migrations/m240904_201746_merge_image2_into_image.php create mode 100644 migrations/m240904_201752_merge_imageRatio2_into_imageRatio.php create mode 100644 migrations/m240904_201752_merge_imageRatio3_into_imageRatio.php delete mode 100644 templates/.gitkeep delete mode 100644 templates/_boilerplate/_layouts/layout-global-variables.twig delete mode 100644 templates/_builders/_blocks.twig delete mode 100644 templates/_builders/blocks/blockSection.twig delete mode 100644 templates/_components/divider/divider.twig create mode 100644 templates/_components/text/plainText.css rename templates/_components/text/{text.twig => plainText.twig} (59%) rename templates/_components/text/{text.css => richText.css} (98%) rename templates/{_builders/blocks/blockDivider.twig => _components/text/richText.twig} (50%) delete mode 100644 templates/_routerEntries.twig delete mode 100755 templates/entry/pages/pageContentBuilder.twig create mode 100644 templates/entryTypes/_routerBlocks.twig create mode 100644 templates/entryTypes/_routerViews.twig rename templates/{_builders => entryTypes}/blocks/blockCode.twig (67%) rename templates/{_builders => entryTypes}/blocks/blockImage.twig (72%) rename templates/{_builders => entryTypes}/blocks/blockImages.twig (52%) create mode 100644 templates/entryTypes/blocks/blockLinks.twig rename templates/{_builders => entryTypes}/blocks/blockQuote.twig (86%) create mode 100644 templates/entryTypes/blocks/blockSection.twig rename templates/{_builders => entryTypes}/blocks/blockSpacer.twig (80%) rename templates/{_builders => entryTypes}/blocks/blockText.twig (82%) rename templates/{_builders => entryTypes}/blocks/blockTextImage.twig (85%) rename templates/{_builders => entryTypes}/blocks/blockVideo.twig (75%) rename templates/{entry/news/newsDefault.twig => entryTypes/views/entryContentBuilder.twig} (64%) rename templates/{entry/pages/pageNews.twig => entryTypes/views/entryListNews.twig} (79%) create mode 100755 templates/entryTypes/views/entryNewsDetail.twig create mode 100644 web/transforms/.gitignore diff --git a/composer.json b/composer.json index fded5c5d..5d103780 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "require": { "craftcms/ckeditor": "4.2.0", - "craftcms/cms": "^5.0.0", + "craftcms/cms": "5.4.1", "dodecastudio/craft-blurhash": "^3.0.0", "doublesecretagency/craft-cpcss": "^3.0.0", "mmikkel/cp-field-inspect": "^2.0.2", @@ -48,7 +48,8 @@ "mkdir -p ./storage", "mkdir -p ./config/project", "mkdir -p ./web/cpresources", - "mkdir -p ./web/assets" + "mkdir -p ./web/assets", + "mkdir -p ./web/transforms" ], "pre-craft-update": [ "@create-folders" @@ -75,4 +76,4 @@ "canonical": false } ] -} +} \ No newline at end of file diff --git a/composer.lock b/composer.lock index 796130ce..3493dca4 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "74f696d1efb35ac5d4782702843b65cc", + "content-hash": "49cd20c9387df6e120957c58b7a7b8de", "packages": [ { "name": "amphp/amp", @@ -1236,11 +1236,11 @@ }, { "name": "craftcms/cms", - "version": "5.4.0.1", + "version": "5.4.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/craftcms/cms/zipball/658cc609cf3c9782d717d592a0eeb905cc2d333c", - "reference": "658cc609cf3c9782d717d592a0eeb905cc2d333c", + "url": "https://api.github.com/repos/craftcms/cms/zipball/46c547fdaedab501c6b034eed46c197739a77abb", + "reference": "46c547fdaedab501c6b034eed46c197739a77abb", "shasum": "" }, "require": { @@ -1337,7 +1337,7 @@ "docs": "https://craftcms.com/docs/5.x/", "rss": "https://github.com/craftcms/cms/releases.atom" }, - "time": "2024-09-03T18:26:18+00:00" + "time": "2024-09-04T21:00:04+00:00" }, { "name": "craftcms/html-field", diff --git a/config/formie.php b/config/formie.php deleted file mode 100644 index c30b7c2a..00000000 --- a/config/formie.php +++ /dev/null @@ -1,46 +0,0 @@ - [ - 'pluginName' => 'Formie', - 'defaultPage' => 'forms', - 'enableGatsbyCompatibility' => false, - - // Forms - 'defaultFormTemplate' => '', - 'defaultEmailTemplate' => '', - 'enableUnloadWarning' => true, - 'ajaxTimeout' => 10, - - // General Fields - 'defaultLabelPosition' => 'above-input', - 'defaultInstructionsPosition' => 'below-input', - - // Fields - 'defaultFileUploadVolume' => '', - 'defaultDateDisplayType' => '', - 'defaultDateValueOption' => '', - 'defaultDateTime' => '', - - // Submissions - 'maxIncompleteSubmissionAge' => 30, - 'enableCsrfValidationForGuests' => true, - 'useQueueForNotifications' => true, - 'useQueueForIntegrations' => true, - - // Sent Notifications - 'maxSentNotificationsAge' => 30, - - // Spam - 'saveSpam' => true, - 'spamLimit' => 1000, - 'spamEmailNotifications' => false, - 'spamBehaviour' => 'showSuccess', - 'spamKeywords' => '', - 'spamBehaviourMessage' => '', - - // Alerts - 'sendEmailAlerts' => false, - 'alertEmails' => [], - ] -]; diff --git a/config/general.php b/config/general.php index 32c1ef07..f5b6bbb4 100644 --- a/config/general.php +++ b/config/general.php @@ -44,6 +44,7 @@ ->testToEmailAddress(App::env('TEST_MAIL') ?: null) ->aliases([ '@assetsUrl' => App::env('ASSETS_URL'), + '@transformsUrl' => App::env('TRANSFORMS_URL'), '@web' => App::env('SITE_URL'), '@webroot' => App::env('WEB_ROOT_PATH'), ]) diff --git a/config/imager-x.php b/config/imager-x.php index de9d13da..012f67cd 100644 --- a/config/imager-x.php +++ b/config/imager-x.php @@ -13,8 +13,8 @@ return [ '*' => [ 'transformer' => 'craft', - 'imagerSystemPath' => '@webroot/assets/transforms/imager/', - 'imagerUrl' => '/assets/transforms/imager/', + 'imagerSystemPath' => '@webroot/transforms/imager/', + 'imagerUrl' => '/transforms/imager/', 'filenamePattern' => '{basename}_{transformString}_{transformString|hash}.{extension}', 'cacheDuration' => 31536000, // 1 Year 'cacheDurationRemoteFiles' => 31536000, // 1 Year diff --git a/config/palette.php b/config/palette.php deleted file mode 100644 index 27613b46..00000000 --- a/config/palette.php +++ /dev/null @@ -1,23 +0,0 @@ - true, - - // If Palette should be enabled on the backend of the website - 'enableOnBackend' => true, -]; diff --git a/config/project/ckeditor/configs/6f4a3e01-23de-4313-8109-00a430317d11.yaml b/config/project/ckeditor/configs/6f4a3e01-23de-4313-8109-00a430317d11.yaml index 5836b908..70a09116 100644 --- a/config/project/ckeditor/configs/6f4a3e01-23de-4313-8109-00a430317d11.yaml +++ b/config/project/ckeditor/configs/6f4a3e01-23de-4313-8109-00a430317d11.yaml @@ -6,8 +6,10 @@ headingLevels: - 5 - 6 js: "return {\r\n style: {\r\n definitions: [\r\n { name: 'Looks like H2

', element: 'h2', classes: ['text-4xl'] },\r\n { name: 'Looks like H3

', element: 'h2', classes: ['text-3xl'] },\r\n { name: 'Looks like H4

', element: 'h2', classes: ['text-2xl'] },\r\n { name: 'Looks like H5

', element: 'h2', classes: ['text-xl'] },\r\n { name: 'Looks like H6

', element: 'h2', classes: ['text-lg'] },\r\n { name: 'Looks like H2

', element: 'h3', classes: ['text-4xl'] },\r\n { name: 'Looks like H3

', element: 'h3', classes: ['text-3xl'] },\r\n { name: 'Looks like H4

', element: 'h3', classes: ['text-2xl'] },\r\n { name: 'Looks like H5

', element: 'h3', classes: ['text-xl'] },\r\n { name: 'Looks like H6

', element: 'h3', classes: ['text-lg'] },\r\n { name: 'Looks like H2

', element: 'h4', classes: ['text-4xl'] },\r\n { name: 'Looks like H3

', element: 'h4', classes: ['text-3xl'] },\r\n { name: 'Looks like H4

', element: 'h4', classes: ['text-2xl'] },\r\n { name: 'Looks like H5

', element: 'h4', classes: ['text-xl'] },\r\n { name: 'Looks like H6

', element: 'h4', classes: ['text-lg'] },\r\n { name: 'Looks like H2

', element: 'h5', classes: ['text-4xl'] },\r\n { name: 'Looks like H3
', element: 'h5', classes: ['text-3xl'] },\r\n { name: 'Looks like H4
', element: 'h5', classes: ['text-2xl'] },\r\n { name: 'Looks like H5
', element: 'h5', classes: ['text-xl'] },\r\n { name: 'Looks like H6
', element: 'h5', classes: ['text-lg'] },\r\n { name: 'Looks like H2
', element: 'h6', classes: ['text-4xl'] },\r\n { name: 'Looks like H3
', element: 'h6', classes: ['text-3xl'] },\r\n { name: 'Looks like H4
', element: 'h6', classes: ['text-2xl'] },\r\n { name: 'Looks like H5
', element: 'h6', classes: ['text-xl'] },\r\n { name: 'Looks like H6
', element: 'h6', classes: ['text-lg'] },\r\n { name: 'Paragraph Small', element: 'p', classes: ['text-sm'] },\r\n { name: 'Paragraph Large', element: 'p', classes: ['text-lg'] },\r\n { name: 'Mark (red) ', element: 'mark', classes: ['red'] },\r\n { name: 'Mark (green) ', element: 'mark', classes: ['green'] },\r\n { name: 'Mark (yellow) ', element: 'mark', classes: ['yellow'] },\r\n { name: 'Keyboard Shortcut ', element: 'kbd', classes: ['light'] },\r\n { name: 'Keyboard Shortcut (dark) ', element: 'kbd', classes: ['dark'] },\r\n ],\r\n },\r\n};" -name: 'Rich Text Default' +name: 'Rich Text' toolbar: + - undo + - redo - heading - bold - italic @@ -19,6 +21,7 @@ toolbar: - code - '|' - link + - anchor - '|' - bulletedList - numberedList diff --git a/config/project/ckeditor/configs/e8b10d27-be46-4108-9bf5-3a8711280165.yaml b/config/project/ckeditor/configs/e8b10d27-be46-4108-9bf5-3a8711280165.yaml index 6a800290..d9c9e99b 100644 --- a/config/project/ckeditor/configs/e8b10d27-be46-4108-9bf5-3a8711280165.yaml +++ b/config/project/ckeditor/configs/e8b10d27-be46-4108-9bf5-3a8711280165.yaml @@ -12,5 +12,6 @@ toolbar: - superscript - '|' - link + - anchor - '|' - findAndReplace diff --git a/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml b/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml index a44ef169..87717e5a 100644 --- a/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml +++ b/config/project/entryTypes/blockCode--f3e1a215-a60f-4d6a-8897-e1a80a40c6cd.yaml @@ -1,4 +1,4 @@ -color: null +color: green fieldLayouts: 410c9682-a3f7-4475-9013-0453aac4635d: tabs: @@ -6,25 +6,39 @@ fieldLayouts: elementCondition: null elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T20:21:02+00:00' + disabled: false elementCondition: null - fieldUid: 9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba - handle: null - includeInCards: true + id: null + includeInCards: false + inputType: null instructions: null - label: 'Snippet Name' + label: null + max: null + min: null + name: null + orientation: null + placeholder: null providesThumbs: false - required: false + readonly: false + requirable: false + size: null + step: null tip: null - type: craft\fieldlayoutelements\CustomField - uid: 17c573f3-0377-4ea8-834f-091f04d60568 + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 54c40c44-8ca8-4511-b03a-e5e0f6ecd206 userCondition: null warning: null width: 100 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: be45c3e2-5e9f-491e-a000-94d95c4fa20b + fieldUid: be45c3e2-5e9f-491e-a000-94d95c4fa20b # Code Snippet handle: null includeInCards: false instructions: null @@ -38,18 +52,34 @@ fieldLayouts: warning: null width: 100 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T20:49:32+00:00' elementCondition: null - fieldUid: cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f - handle: null + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: codeSnippetName + includeInCards: true + instructions: null + label: 'Code Snippet Name' + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: e786a1d6-f10b-45b2-804f-06f9ae8ddabf + userCondition: null + warning: null + width: 50 + - + dateAdded: '2024-09-04T20:24:42+00:00' + elementCondition: null + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: collapsed includeInCards: false instructions: null - label: 'Snippet collapsed' + label: Collapsed providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: db3144df-7836-499b-a09c-74aa13fe121c + uid: 6c1d2950-2c47-4f4a-b714-7a3cb88712cf userCondition: null warning: null width: 50 @@ -58,7 +88,7 @@ fieldLayouts: userCondition: null handle: blockCode hasTitleField: false -icon: null +icon: code name: Code showSlugField: false showStatusField: true diff --git a/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml b/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml deleted file mode 100644 index 0c0d8541..00000000 --- a/config/project/entryTypes/blockDivider--e3c7bdf5-9e45-4977-ba11-1e2c4b57644e.yaml +++ /dev/null @@ -1,37 +0,0 @@ -color: null -fieldLayouts: - 4423c5be-938a-4871-bd99-52e14a8de079: - tabs: - - - elementCondition: null - elements: - - - dateAdded: '2024-09-04T19:47:47+00:00' - elementCondition: null - fieldUid: f084e099-613d-4405-b600-f4be12d3509b - handle: null - includeInCards: true - instructions: null - label: 'Divider Variant' - providesThumbs: false - required: true - tip: null - type: craft\fieldlayoutelements\CustomField - uid: b37c0cae-90a6-44b1-95f1-c0fbb5c25213 - userCondition: null - warning: null - width: 100 - name: Content - uid: ae8f94aa-5f01-405e-9c05-1294f1d44a6a - userCondition: null -handle: blockDivider -hasTitleField: false -icon: null -name: Divider -showSlugField: false -showStatusField: true -slugTranslationKeyFormat: null -slugTranslationMethod: site -titleFormat: null -titleTranslationKeyFormat: null -titleTranslationMethod: site diff --git a/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml b/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml index 5ec6c27b..5a5def95 100644 --- a/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml +++ b/config/project/entryTypes/blockImage--295738c1-951d-4b8c-b5cd-83d71a85d7e8.yaml @@ -1,15 +1,45 @@ -color: null +color: cyan fieldLayouts: 58ddc97d-9694-4104-a136-b6344987e1b6: tabs: - elementCondition: null elements: + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T20:16:46+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 382b79d3-4ec7-4960-b1e4-01ae81fda007 + userCondition: null + warning: null + width: 100 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 35b67fb3-4bdb-470f-a686-3d46c5cd5f96 - handle: image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null includeInCards: false instructions: null label: Image @@ -20,61 +50,67 @@ fieldLayouts: uid: 0cd02812-349c-46d5-a4b7-57700a221566 userCondition: null warning: null - width: 50 + width: 100 + name: Content + uid: 5e8a312e-45d0-491c-924d-84d96af3b270 + userCondition: null + - + elementCondition: null + elements: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 9b73b533-898f-4f77-a500-37ea0be0afc7 - handle: showImageCaption - includeInCards: true + fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c # Image Ratio + handle: null + includeInCards: false instructions: null - label: 'Show Image Caption' + label: 'Image Ratio' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 089ab2ac-9335-40c2-9827-f4dd1baca5dc + uid: b0fb63ad-8f84-4caf-a7b6-c0e44deeae12 userCondition: null warning: null width: 50 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 70bc887b-faf2-45c7-b4bc-4299acd343da - handle: imageRatio + fieldUid: 1be86da8-5273-40c6-ba88-718f5c32a6c3 + handle: null includeInCards: false instructions: null - label: 'Image Ratio' + label: null providesThumbs: false - required: true + required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: b0fb63ad-8f84-4caf-a7b6-c0e44deeae12 + uid: 744a7c6f-6d25-4c12-8d70-9a8752b5f5f6 userCondition: null warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T21:45:26+00:00' elementCondition: null - fieldUid: 1be86da8-5273-40c6-ba88-718f5c32a6c3 - handle: null - includeInCards: false + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: showCaption + includeInCards: true instructions: null - label: 'Image Width' + label: 'Show caption' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 744a7c6f-6d25-4c12-8d70-9a8752b5f5f6 + uid: bf115a81-cfa7-41f1-9c22-72b7b5939e55 userCondition: null warning: null width: 50 - name: Content - uid: 5e8a312e-45d0-491c-924d-84d96af3b270 + name: Settings + uid: 95b16a67-6431-4b73-9fe2-8cc156d078ee userCondition: null handle: blockImage hasTitleField: false -icon: null +icon: image name: Image showSlugField: false showStatusField: true diff --git a/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml b/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml index aa41212c..f5432731 100644 --- a/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml +++ b/config/project/entryTypes/blockImages--5c9f2ce6-f780-4ea6-a50c-539a252aec94.yaml @@ -1,18 +1,48 @@ -color: null +color: cyan fieldLayouts: 6c449cd7-ebc2-4ce6-be61-1e8c90cb176b: tabs: - elementCondition: null elements: + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T21:22:12+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: efef2748-d17e-44ad-adbe-2f2f8504dbc3 + userCondition: null + warning: null + width: 100 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 74c3cd4f-b565-4fb4-879e-72022774f93c + fieldUid: 74c3cd4f-b565-4fb4-879e-72022774f93c # Images View Mode handle: null includeInCards: true instructions: null - label: Variant + label: null providesThumbs: false required: false tip: null @@ -24,11 +54,11 @@ fieldLayouts: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 75195ab8-b7c4-4dca-b807-ef8a042ef5a9 + fieldUid: 75195ab8-b7c4-4dca-b807-ef8a042ef5a9 # Images handle: null - includeInCards: false + includeInCards: true instructions: null - label: Images + label: null providesThumbs: true required: true tip: null @@ -37,16 +67,22 @@ fieldLayouts: userCondition: null warning: null width: 100 + name: Content + uid: 56042e3e-7a7b-4a4c-9222-63e004682c9b + userCondition: null + - + elementCondition: null + elements: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c + fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c # Image Ratio handle: null includeInCards: false instructions: null label: 'Image Ratio' providesThumbs: false - required: true + required: false tip: null type: craft\fieldlayoutelements\CustomField uid: 721a9d99-a7c1-4462-b772-b18fadab09e8 @@ -54,27 +90,27 @@ fieldLayouts: warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T21:26:43+00:00' elementCondition: null - fieldUid: e0e9e510-46ff-45aa-aa46-700b325bb911 - handle: null + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: showCaption includeInCards: false instructions: null - label: 'Show Image Caption' + label: 'Show Caption' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 9eae0590-a0dc-4c71-8d19-af63a55af1bd + uid: 4c0afd85-25ca-4a2d-953e-ffdb72188d7a userCondition: null warning: null width: 50 - name: Content - uid: 56042e3e-7a7b-4a4c-9222-63e004682c9b + name: Settings + uid: 18bed5b9-f49a-469d-b58d-0258602e7466 userCondition: null handle: blockImages hasTitleField: false -icon: null +icon: images name: Images showSlugField: false showStatusField: true diff --git a/config/project/entryTypes/blockLinks--baf82dc6-9e5a-4933-aa96-15eed58c888f.yaml b/config/project/entryTypes/blockLinks--baf82dc6-9e5a-4933-aa96-15eed58c888f.yaml new file mode 100644 index 00000000..f829ad13 --- /dev/null +++ b/config/project/entryTypes/blockLinks--baf82dc6-9e5a-4933-aa96-15eed58c888f.yaml @@ -0,0 +1,67 @@ +color: green +fieldLayouts: + 653f85bd-d164-45dc-a6ee-74e19fcc7b3a: + tabs: + - + elementCondition: null + elements: + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T23:21:15+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 94eb125a-d1ca-4b86-bbd3-03c76a568398 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T23:22:44+00:00' + elementCondition: null + fieldUid: c8a9d048-8e52-42a3-8e8a-44633a838802 # Links + handle: null + includeInCards: false + instructions: null + label: null + providesThumbs: false + required: true + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 6de2b09f-32e0-430f-ab1d-f75ce0c64de7 + userCondition: null + warning: null + width: 100 + name: Content + uid: 29a34be1-ab6b-4e29-971e-d09803a47cfa + userCondition: null +handle: blockLinks +hasTitleField: false +icon: link +name: Links +showSlugField: false +showStatusField: true +slugTranslationKeyFormat: null +slugTranslationMethod: site +titleFormat: '' +titleTranslationKeyFormat: null +titleTranslationMethod: site diff --git a/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml b/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml index 04dc163e..db76db50 100644 --- a/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml +++ b/config/project/entryTypes/blockQuote--fa02ff5a-1741-4417-8c8f-b72b954dd4fd.yaml @@ -1,4 +1,4 @@ -color: null +color: green fieldLayouts: e22d570c-156e-4591-a91a-2af67c7ed22b: tabs: @@ -6,80 +6,94 @@ fieldLayouts: elementCondition: null elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T21:50:53+00:00' + disabled: false elementCondition: null - fieldUid: 53f0660a-f06b-4b2d-b342-1869c5c65538 - handle: null - includeInCards: true + id: null + includeInCards: false + inputType: null instructions: null - label: Quote + label: null + max: null + min: null + name: null + orientation: null + placeholder: null providesThumbs: false - required: true + readonly: false + requirable: false + size: null + step: null tip: null - type: craft\fieldlayoutelements\CustomField - uid: bd2dc568-fec5-4384-b6d0-dc26b5dd7b34 + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 21abcfb8-eef7-47d7-b8d4-c07dbb0e5c1b userCondition: null warning: null width: 100 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-05T21:01:42+00:00' elementCondition: null - fieldUid: c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0 - handle: null - includeInCards: false + fieldUid: e884a8f9-92f0-48b3-a7e8-a6d95f47f6df # Text Multi + handle: quote + includeInCards: true instructions: null - label: Source + label: Quote providesThumbs: false - required: false + required: true tip: null type: craft\fieldlayoutelements\CustomField - uid: 9fcea238-ad3d-4958-9762-4a3f7c2cb1e9 + uid: bbdc2ef0-cb88-420a-86a7-c25831e21b77 userCondition: null warning: null - width: 50 + width: 100 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-05T19:57:29+00:00' elementCondition: null - fieldUid: 75b6f580-613f-42ae-aa23-2d5fb22ff3da - handle: null + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: source includeInCards: false instructions: null - label: 'Source Subline' + label: Source providesThumbs: false required: false - tip: null + tip: 'Use this if you don''t need a linked source.' type: craft\fieldlayoutelements\CustomField - uid: 81e0a6bb-2f47-4d2f-b800-a0a2651a916f + uid: 6be08230-3b3c-4ebc-8a13-0511551e439d userCondition: null warning: null - width: 50 + width: 100 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T21:56:19+00:00' elementCondition: null - fieldUid: e11e03f7-19c1-45c3-935e-1994a7ce7d26 + fieldUid: a3f76ec3-252e-4be6-8178-8f6b54acce19 # Link handle: null includeInCards: false instructions: null - label: 'Source Url' + label: null providesThumbs: false required: false - tip: null + tip: 'Use this if you need a linked source.' type: craft\fieldlayoutelements\CustomField - uid: 25bfda37-86b0-4276-ae59-e34d406c5eba + uid: b5ae7482-d980-4d0a-9878-2924a100da73 userCondition: null warning: null - width: 50 + width: 100 name: Content uid: 8e061a5e-d78f-48e7-b026-09c9f9a49a67 userCondition: null handle: blockQuote hasTitleField: false -icon: null +icon: quote-right name: Quote showSlugField: false showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml b/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml index 6cf06734..cdc88bf3 100644 --- a/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml +++ b/config/project/entryTypes/blockSection--b3022ef5-7f1b-49d7-976d-5d5be501c1f1.yaml @@ -1,18 +1,70 @@ -color: null +color: pink fieldLayouts: b5f39594-4dfb-477b-a358-ea2dac368b7b: tabs: + - + elementCondition: null + elements: + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T21:18:34+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 477b807f-d946-4570-832f-1c86b7121be4 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T21:27:18+00:00' + elementCondition: null + fieldUid: 87410aa7-3cd4-4961-9533-6d4f246113b5 # Content Blocks + handle: null + includeInCards: false + instructions: null + label: null + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: c1c4a7a8-6e2a-4e29-8db6-6ca411465b04 + userCondition: null + warning: null + width: 100 + name: Content + uid: 5cb029e3-a009-451e-8ab8-a2a2dec9a3f5 + userCondition: null - elementCondition: null elements: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b + fieldUid: 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b # Background Color handle: null - includeInCards: true + includeInCards: false instructions: null - label: 'Section Background Color' + label: null providesThumbs: false required: false tip: null @@ -22,29 +74,29 @@ fieldLayouts: warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-05T06:03:05+00:00' elementCondition: null - fieldUid: 74b87138-1475-47c2-a9dd-63baa78dd5f5 - handle: null + fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec # Spacing + handle: spaceBetween includeInCards: false instructions: null - label: 'Space Between Blocks' + label: 'Space Between' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 16c62a98-e675-40ee-a4d0-8ca2543ed5de + uid: 83b19129-be5e-447a-b70a-07015f272028 userCondition: null warning: null width: 50 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec - handle: null + fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec # Spacing + handle: spacingYAxis includeInCards: false instructions: null - label: 'Section Padding Vertical' + label: 'Spacing Y-Axis' providesThumbs: false required: false tip: null @@ -53,17 +105,17 @@ fieldLayouts: userCondition: null warning: null width: 50 - name: Content - uid: 5cb029e3-a009-451e-8ab8-a2a2dec9a3f5 + name: Settings + uid: 0e25f530-3ed7-4487-844d-d44d5422df0c userCondition: null handle: blockSection hasTitleField: false -icon: null +icon: grid-2 name: Section showSlugField: false showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml b/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml index 18d97f48..f4a18a7f 100644 --- a/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml +++ b/config/project/entryTypes/blockSpacer--92963d20-e763-4d2e-a367-9e543dfde522.yaml @@ -1,4 +1,4 @@ -color: null +color: yellow fieldLayouts: a4335b2d-af34-4544-b20a-e4a928a3693c: tabs: @@ -6,18 +6,48 @@ fieldLayouts: elementCondition: null elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T21:50:31+00:00' + disabled: false elementCondition: null - fieldUid: 1b37c439-5a32-4e8f-8019-7f6a94593419 - handle: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 20b6ecbd-8965-418d-8577-a28920043388 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-05T06:05:04+00:00' + elementCondition: null + fieldUid: aa7883a4-2cce-4316-85f3-ec6ea59402ec # Spacing + handle: height includeInCards: true instructions: null - label: 'Spacer Variant' + label: Height providesThumbs: false - required: true + required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: c8ba7044-fa9a-4546-9493-16bccb73a76e + uid: d7ad081b-2e70-4b66-b2e3-1a730fcd83d7 userCondition: null warning: null width: 100 @@ -26,12 +56,12 @@ fieldLayouts: userCondition: null handle: blockSpacer hasTitleField: false -icon: null +icon: rectangle name: Spacer showSlugField: false showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml b/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml index 17d63cee..e795fc96 100644 --- a/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml +++ b/config/project/entryTypes/blockText--7b3b13e0-e20d-4d51-b0ae-832300f45234.yaml @@ -1,4 +1,4 @@ -color: null +color: green fieldLayouts: 12757233-a8be-4796-bed0-bdaffeb488ae: tabs: @@ -6,18 +6,48 @@ fieldLayouts: elementCondition: null elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T21:58:31+00:00' + disabled: false elementCondition: null - fieldUid: d4cabad1-1cae-4a1e-a914-c38d9f1a813a + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: a4b10418-acba-44de-8536-61c51d1e953c + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T22:00:02+00:00' + elementCondition: null + fieldUid: 9add7508-89cd-4b19-b8e5-f6173a4ec371 # Rich Text handle: null includeInCards: true instructions: null - label: Text + label: null providesThumbs: false required: true tip: null type: craft\fieldlayoutelements\CustomField - uid: 0b98c8af-6fb9-4a18-b577-3f75b079e8f2 + uid: f7c03fb7-5b14-4971-a490-60532f436e6c userCondition: null warning: null width: 100 @@ -26,7 +56,7 @@ fieldLayouts: userCondition: null handle: blockText hasTitleField: false -icon: null +icon: font-case name: Text showSlugField: false showStatusField: true diff --git a/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml b/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml index a4b60f9e..00c0917c 100644 --- a/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml +++ b/config/project/entryTypes/blockTextImage--3497ad65-5e4c-43cb-b469-c3e4b3d80343.yaml @@ -1,4 +1,4 @@ -color: null +color: green fieldLayouts: 7b6ace88-ae82-4caf-afe4-1650ce6e7ce3: tabs: @@ -6,25 +6,61 @@ fieldLayouts: elementCondition: null elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T20:16:52+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 7dfb8abd-71de-4d92-8b62-13b7a50ea2a6 + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-04T22:02:29+00:00' elementCondition: null - fieldUid: 0a7dd988-f4db-40b7-8112-6f6fc7c4fb54 - handle: text + fieldUid: 9add7508-89cd-4b19-b8e5-f6173a4ec371 # Rich Text + handle: null includeInCards: true instructions: null - label: Text + label: null providesThumbs: false required: true tip: null type: craft\fieldlayoutelements\CustomField - uid: 51b01a52-b32f-4ffa-910d-ef9fe863f1ef + uid: 243140b3-d692-4031-b56b-8a51521c3fae userCondition: null warning: null width: 100 + name: Text + uid: a7ac4d85-057b-421c-a16b-b382da491a30 + userCondition: null + - + elementCondition: null + elements: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image handle: null includeInCards: false instructions: null @@ -40,13 +76,13 @@ fieldLayouts: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 98f7a455-6764-4b7d-8d19-405bdcc42228 - handle: imageRatio + fieldUid: 62883121-63a2-4e5c-a6f3-4855cf64df2c # Image Ratio + handle: null includeInCards: false instructions: null label: 'Image Ratio' providesThumbs: false - required: true + required: false tip: null type: craft\fieldlayoutelements\CustomField uid: 04337482-6861-47b4-8a21-cd4447d746ab @@ -56,46 +92,46 @@ fieldLayouts: - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 6a90dae3-938c-47e6-8e36-6b1d6be92d63 - handle: showImageCaption + fieldUid: 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82 # Image Position + handle: null includeInCards: false instructions: null - label: 'Show Image Caption' + label: 'Image Position' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 50f248bd-1435-4f9e-8225-ce71ceadbd90 + uid: 1ce2335a-ddf7-4a2f-a788-0c629ecec74b userCondition: null warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T22:02:29+00:00' elementCondition: null - fieldUid: 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82 - handle: null + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: showCaption includeInCards: false instructions: null - label: 'Image Position' + label: 'Show Caption' providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 1ce2335a-ddf7-4a2f-a788-0c629ecec74b + uid: b5c87ad3-30a4-42d6-bf64-9fd21c1e7259 userCondition: null warning: null width: 50 - name: Content - uid: a7ac4d85-057b-421c-a16b-b382da491a30 + name: Image + uid: 7931c967-9547-46fa-99e4-270c687a7cb3 userCondition: null handle: blockTextImage hasTitleField: false -icon: null +icon: table-columns name: 'Text : Image' showSlugField: false showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml b/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml index 7d2cca90..596e63b8 100644 --- a/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml +++ b/config/project/entryTypes/blockVideo--7b23a4a8-a6f8-43c4-b12c-326d089176ad.yaml @@ -1,14 +1,44 @@ -color: null +color: cyan fieldLayouts: 1abefa28-ba0b-4e7e-be2b-12835562bb01: tabs: - elementCondition: null elements: + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T22:01:40+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\entries\EntryTitleField + uid: 7c34b185-3f40-46f6-a613-5417ba6cf832 + userCondition: null + warning: null + width: 100 - dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: 63bd200d-3882-4788-a8ba-528452521d6c + fieldUid: 63bd200d-3882-4788-a8ba-528452521d6c # Video Provider handle: null includeInCards: true instructions: null @@ -22,26 +52,32 @@ fieldLayouts: warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T22:05:07+00:00' elementCondition: null - fieldUid: e9486b85-fd5e-40c8-851b-a6b0133e1f88 - handle: null + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: videoId includeInCards: false instructions: null - label: 'Video Id' + label: 'Video ID' providesThumbs: false required: true tip: null type: craft\fieldlayoutelements\CustomField - uid: 209e0b27-694f-492c-8618-f97820ac8a2a + uid: 04a6c16d-18b1-4afd-8a03-65971db6bbe8 userCondition: null warning: null width: 50 + name: Content + uid: bb2df4f8-8532-459f-ae5f-12b9013d58c0 + userCondition: null + - + elementCondition: null + elements: - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T22:05:07+00:00' elementCondition: null - fieldUid: 3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0 - handle: null + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: autoplay includeInCards: false instructions: null label: Autoplay @@ -49,15 +85,15 @@ fieldLayouts: required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 85e4faf3-8c53-4926-9624-5ba7b9cca49b + uid: 262f674b-bfd8-4eed-9a47-76f110e7d909 userCondition: null warning: null width: 50 - - dateAdded: '2024-09-04T19:47:47+00:00' + dateAdded: '2024-09-04T22:05:07+00:00' elementCondition: null - fieldUid: 4a25e574-679a-4d01-8e8b-d5927129ce33 - handle: null + fieldUid: 31947efb-fa8c-473c-9b01-bd36c8d70b68 # Lightswitch OFF + handle: loop includeInCards: false instructions: null label: Loop @@ -65,7 +101,7 @@ fieldLayouts: required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: ca8a500e-d6df-4d29-b957-9e9f7172facc + uid: bda8d9c0-76a8-4405-b0c8-19b8d90a4c87 userCondition: null warning: null width: 50 @@ -85,12 +121,12 @@ fieldLayouts: userCondition: null warning: null width: 50 - name: Content - uid: bb2df4f8-8532-459f-ae5f-12b9013d58c0 + name: Settings + uid: 90b44b85-ac66-4f2d-b2a1-d39f9aa12ec8 userCondition: null handle: blockVideo hasTitleField: false -icon: null +icon: play name: Video showSlugField: false showStatusField: true diff --git a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml b/config/project/entryTypes/entryContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml similarity index 66% rename from config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml rename to config/project/entryTypes/entryContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml index e359563c..b8557793 100644 --- a/config/project/entryTypes/pageContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml +++ b/config/project/entryTypes/entryContentBuilder--2f642060-4792-41cb-a427-083aabeba231.yaml @@ -1,3 +1,4 @@ +color: red fieldLayouts: 4f9f544b-c770-4705-b052-b4a4512c58bd: tabs: @@ -9,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,38 +36,50 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T22:16:51+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: e8be7647-721c-4ff6-8284-cb8596d3434e + uid: 9f88ca34-5b3e-4677-8abe-858d8876ff5f userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T22:16:51+00:00' elementCondition: null - fieldUid: 45510f13-91d2-479f-9ff2-68dd09ab6643 # Text: Description + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: description + includeInCards: true instructions: null - label: null + label: Description + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 4464c485-2ddc-4509-af72-0da60a5b48a2 + uid: 56bf30d5-8ab8-49b9-8c94-2efaf637d5a1 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T22:16:51+00:00' elementCondition: null - fieldUid: 0dc851b0-a289-4c50-be8d-0c055b270ee8 # Asset: Entry Image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null + includeInCards: true instructions: null label: null + providesThumbs: true required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: bd8093f9-a064-4f9d-b0a7-92f2c11f9917 + uid: da530653-a779-49f0-9eca-68d64b4b28ae userCondition: null warning: null width: 100 @@ -74,14 +90,18 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T21:49:46+00:00' elementCondition: null - fieldUid: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content + fieldUid: 75f91f6f-fc53-49ad-bde0-365d6384b711 # Content + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: fbd64c43-4088-48c3-96a3-e2a9d56d5a8b + uid: a1522da2-022e-4f5b-b2b6-4311bf52c6f4 userCondition: null warning: null width: 100 @@ -92,10 +112,14 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEO: SEOmatic + fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEOmatic + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField @@ -106,13 +130,14 @@ fieldLayouts: name: SEO uid: c955cd25-d7c1-4287-a3b1-ba9aec3e0841 userCondition: null -handle: pageContentBuilder +handle: entryContentBuilder hasTitleField: true -name: 'Page Content Builder' +icon: memo +name: '_Content Builder' +showSlugField: true showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -sortOrder: 1 titleFormat: null titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml b/config/project/entryTypes/entryError--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml similarity index 67% rename from config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml rename to config/project/entryTypes/entryError--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml index 7f1873d3..6fc437d8 100644 --- a/config/project/entryTypes/error--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml +++ b/config/project/entryTypes/entryError--8ced5be5-13b2-483f-8db9-aab9757aad21.yaml @@ -1,3 +1,4 @@ +color: red fieldLayouts: 61f3d7e8-4728-49c4-bb2c-8e26fdff4b77: tabs: @@ -9,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,38 +36,50 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T21:04:13+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 345ba880-1f66-4738-b9a0-4eab0c46d609 + uid: 73022de9-d034-4014-9afe-cb6d6a6fa6d0 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:07:49+00:00' elementCondition: null - fieldUid: 45510f13-91d2-479f-9ff2-68dd09ab6643 # Text: Description + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: description + includeInCards: true instructions: null - label: null + label: Description + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: db927374-0d82-49c5-8192-6896430a5a68 + uid: 74881d73-e8c6-415a-9309-e3ada11466dd userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:07:49+00:00' elementCondition: null - fieldUid: 0dc851b0-a289-4c50-be8d-0c055b270ee8 # Asset: Entry Image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null + includeInCards: true instructions: null label: null + providesThumbs: true required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 133d098f-83d3-4997-b4ba-9d6cfe395432 + uid: 2d409ba3-96db-4630-9bcf-0db8e03898a9 userCondition: null warning: null width: 100 @@ -74,10 +90,14 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEO: SEOmatic + fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEOmatic + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField @@ -88,13 +108,14 @@ fieldLayouts: name: SEO uid: 3edcce5a-c1c4-43cc-aeca-62382f35261b userCondition: null -handle: error +handle: entryError hasTitleField: true -name: Error +icon: memo +name: _Error +showSlugField: true showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -sortOrder: 1 titleFormat: null titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml b/config/project/entryTypes/entryHome--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml similarity index 66% rename from config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml rename to config/project/entryTypes/entryHome--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml index 7370ee77..986b67f3 100644 --- a/config/project/entryTypes/home--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml +++ b/config/project/entryTypes/entryHome--81d0ea50-f7e1-4eff-8138-2a06ffbfae86.yaml @@ -1,3 +1,4 @@ +color: red fieldLayouts: be62de4f-cc21-4603-aab3-8623d43b46ad: tabs: @@ -9,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,38 +36,50 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T21:13:37+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 8930f333-8bbf-4d59-8b78-632ff5d5e709 + uid: c65cf828-a7a0-48ce-bd9f-2a985d1ae412 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:13:37+00:00' elementCondition: null - fieldUid: 45510f13-91d2-479f-9ff2-68dd09ab6643 # Text: Description + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: description + includeInCards: true instructions: null - label: null + label: Description + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 71881212-33f8-4422-b14e-bd3a2f053d1f + uid: f674d204-6152-4ea6-8ffa-d252102a6225 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:13:37+00:00' elementCondition: null - fieldUid: 0dc851b0-a289-4c50-be8d-0c055b270ee8 # Asset: Entry Image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null + includeInCards: true instructions: null label: null + providesThumbs: true required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 73d71fe2-8149-4c20-8744-5dfda0d2e742 + uid: 3f06d8ad-dd7d-41a7-ae4a-8c9ec302a246 userCondition: null warning: null width: 100 @@ -74,14 +90,18 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T21:18:11+00:00' elementCondition: null - fieldUid: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content + fieldUid: 75f91f6f-fc53-49ad-bde0-365d6384b711 # Content + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 6d136a36-b3d5-4fd6-acb4-ab5de0228a26 + uid: 500cdedc-3d17-48dc-bc17-e290b0969045 userCondition: null warning: null width: 100 @@ -92,10 +112,14 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEO: SEOmatic + fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEOmatic + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField @@ -106,13 +130,14 @@ fieldLayouts: name: SEO uid: c7d4e6c6-adcf-499a-97b1-2006cda02e10 userCondition: null -handle: home -hasTitleField: false -name: Home +handle: entryHome +hasTitleField: true +icon: memo +name: _Home +showSlugField: true showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -sortOrder: 1 titleFormat: '{section.name|raw}' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml b/config/project/entryTypes/entryListNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml similarity index 66% rename from config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml rename to config/project/entryTypes/entryListNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml index ef2df741..f90082c8 100644 --- a/config/project/entryTypes/pageNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml +++ b/config/project/entryTypes/entryListNews--6d94dcc4-6ec1-45b4-8c86-e53cee842b11.yaml @@ -1,3 +1,4 @@ +color: red fieldLayouts: 39b9e1a8-a9fe-46a4-aad9-966389ae8743: tabs: @@ -9,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,38 +36,50 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T22:19:05+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 7871ee59-389b-4aea-a495-9f9760c83be4 + uid: 51e17a0f-d990-4fc4-b066-fc90727cabee userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T22:19:05+00:00' elementCondition: null - fieldUid: 45510f13-91d2-479f-9ff2-68dd09ab6643 # Text: Description + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: description + includeInCards: true instructions: null - label: null + label: Description + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: e249e650-b151-4cd9-aabb-a505665947c5 + uid: cfc6688b-27f5-4967-9f56-17c7e81901d2 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T22:19:05+00:00' elementCondition: null - fieldUid: 0dc851b0-a289-4c50-be8d-0c055b270ee8 # Asset: Entry Image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null + includeInCards: true instructions: null label: null + providesThumbs: true required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: fd27b23d-962d-4454-a2ad-8d680b53033c + uid: f78c1709-24f1-4f7a-b5b1-da663254f24b userCondition: null warning: null width: 100 @@ -74,10 +90,14 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEO: SEOmatic + fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEOmatic + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField @@ -88,13 +108,14 @@ fieldLayouts: name: SEO uid: 19225308-28cc-46b1-8075-f4dc542c6c81 userCondition: null -handle: pageNews +handle: entryListNews hasTitleField: true -name: 'Page News' +icon: memo +name: '_List: News' +showSlugField: true showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -sortOrder: 2 -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml b/config/project/entryTypes/entryNewsDetail--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml similarity index 66% rename from config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml rename to config/project/entryTypes/entryNewsDetail--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml index ff4f9792..0da7ecf1 100644 --- a/config/project/entryTypes/newsDefault--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml +++ b/config/project/entryTypes/entryNewsDetail--fb701216-3e80-4e6d-99d4-2e5f70561e22.yaml @@ -1,3 +1,4 @@ +color: red fieldLayouts: d9e47404-d530-49be-957f-79a2ee567d15: tabs: @@ -9,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,38 +36,50 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T21:49:33+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: b019ef81-df83-478c-9b5b-7ced45fae63b + uid: abdec6db-b69b-4442-a975-f3914939eed0 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:49:33+00:00' elementCondition: null - fieldUid: 45510f13-91d2-479f-9ff2-68dd09ab6643 # Text: Description + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: description + includeInCards: true instructions: null - label: null + label: Description + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: ba38993b-650f-4cad-bb0e-0f7997b75f78 + uid: 52a340af-509e-4a53-a463-4b9979951c92 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T21:49:33+00:00' elementCondition: null - fieldUid: 0dc851b0-a289-4c50-be8d-0c055b270ee8 # Asset: Entry Image + fieldUid: b81cb731-dd6f-4055-9c6d-2f076a727a27 # Image + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 24cac873-2dcb-4442-8f4e-35145299398c + uid: 7f8401b2-798f-4371-b0c0-4319dcaa9e6e userCondition: null warning: null width: 100 @@ -74,14 +90,18 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T21:49:33+00:00' elementCondition: null - fieldUid: 74eb36ae-7a26-4e7d-b454-990ec52617f0 # Builder: Content + fieldUid: 75f91f6f-fc53-49ad-bde0-365d6384b711 # Content + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 35aeceb5-c17c-4f03-885d-98ae21012fbe + uid: 59d3d0c6-9239-4811-be11-feddc828af1a userCondition: null warning: null width: 100 @@ -92,10 +112,14 @@ fieldLayouts: elementCondition: null elements: - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null - fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEO: SEOmatic + fieldUid: d29e8520-ab62-4c8f-bda2-61868797c1ca # SEOmatic + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField @@ -106,13 +130,14 @@ fieldLayouts: name: SEO uid: 1f04ebd9-d50b-4ebb-b0a1-3e175abc5c8b userCondition: null -handle: newsDefault +handle: entryNewsDetail hasTitleField: true -name: 'News Default' +icon: memo +name: '_News Detail' +showSlugField: true showStatusField: true slugTranslationKeyFormat: null slugTranslationMethod: site -sortOrder: 1 -titleFormat: null +titleFormat: '' titleTranslationKeyFormat: null titleTranslationMethod: site diff --git a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml b/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml deleted file mode 100644 index ee129a8f..00000000 --- a/config/project/fields/assetEntryImage--0dc851b0-a289-4c50-be8d-0c055b270ee8.yaml +++ /dev/null @@ -1,36 +0,0 @@ -columnSuffix: null -contentColumnType: string -handle: assetEntryImage -instructions: null -name: 'Asset: Entry Image' -searchable: false -settings: - allowSelfRelations: false - allowSubfolders: true - allowUploads: false - allowedKinds: - - image - branchLimit: null - defaultUploadLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - defaultUploadLocationSubpath: null - localizeRelations: false - maintainHierarchy: false - maxRelations: 1 - minRelations: null - previewMode: full - restrictFiles: true - restrictLocation: true - restrictedDefaultUploadSubpath: null - restrictedLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - restrictedLocationSubpath: null - selectionLabel: null - showSiteMenu: true - showUnpermittedFiles: true - showUnpermittedVolumes: true - sources: '*' - targetSiteId: null - validateRelatedElements: true - viewMode: large -translationKeyFormat: null -translationMethod: site -type: craft\fields\Assets diff --git a/config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml b/config/project/fields/backgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml similarity index 84% rename from config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml rename to config/project/fields/backgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml index e5e376ff..ece531c0 100644 --- a/config/project/fields/sectionBackgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml +++ b/config/project/fields/backgroundColor--9a8fffce-3c28-4326-8f7a-e31d2f6cc04b.yaml @@ -1,7 +1,7 @@ columnSuffix: null -handle: sectionBackgroundColor +handle: backgroundColor instructions: null -name: 'Builder: Content - Section - Section Background Color' +name: 'Background Color' searchable: false settings: options: diff --git a/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml b/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml deleted file mode 100644 index 158b3b5e..00000000 --- a/config/project/fields/builderContent--74eb36ae-7a26-4e7d-b454-990ec52617f0.yaml +++ /dev/null @@ -1,26 +0,0 @@ -columnSuffix: null -contentColumnType: string -handle: builderContent -instructions: null -name: 'Builder: Content' -searchable: true -settings: - entryTypes: - - 5c9f2ce6-f780-4ea6-a50c-539a252aec94 - - 7b3b13e0-e20d-4d51-b0ae-832300f45234 - - 7b23a4a8-a6f8-43c4-b12c-326d089176ad - - 3497ad65-5e4c-43cb-b469-c3e4b3d80343 - - 92963d20-e763-4d2e-a367-9e543dfde522 - - 295738c1-951d-4b8c-b5cd-83d71a85d7e8 - - b3022ef5-7f1b-49d7-976d-5d5be501c1f1 - - e3c7bdf5-9e45-4977-ba11-1e2c4b57644e - - f3e1a215-a60f-4d6a-8897-e1a80a40c6cd - - fa02ff5a-1741-4417-8c8f-b72b954dd4fd - maxEntries: null - minEntries: null - propagationKeyFormat: null - propagationMethod: all - viewMode: blocks -translationKeyFormat: null -translationMethod: site -type: craft\fields\Matrix diff --git a/config/project/fields/builderContent--75f91f6f-fc53-49ad-bde0-365d6384b711.yaml b/config/project/fields/builderContent--75f91f6f-fc53-49ad-bde0-365d6384b711.yaml new file mode 100644 index 00000000..59285ee6 --- /dev/null +++ b/config/project/fields/builderContent--75f91f6f-fc53-49ad-bde0-365d6384b711.yaml @@ -0,0 +1,20 @@ +columnSuffix: null +handle: builderContent +instructions: null +name: Content +searchable: true +settings: + createButtonLabel: 'Add block' + entryTypes: + - b3022ef5-7f1b-49d7-976d-5d5be501c1f1 # Section + includeTableView: false + maxEntries: null + minEntries: null + pageSize: null + propagationKeyFormat: null + propagationMethod: all + showCardsInGrid: true + viewMode: blocks +translationKeyFormat: null +translationMethod: site +type: craft\fields\Matrix diff --git a/config/project/fields/builderContentBlocks--87410aa7-3cd4-4961-9533-6d4f246113b5.yaml b/config/project/fields/builderContentBlocks--87410aa7-3cd4-4961-9533-6d4f246113b5.yaml new file mode 100644 index 00000000..d6da30d2 --- /dev/null +++ b/config/project/fields/builderContentBlocks--87410aa7-3cd4-4961-9533-6d4f246113b5.yaml @@ -0,0 +1,28 @@ +columnSuffix: null +handle: builderContentBlocks +instructions: null +name: 'Content Blocks' +searchable: true +settings: + createButtonLabel: 'Add block' + entryTypes: + - f3e1a215-a60f-4d6a-8897-e1a80a40c6cd # Code + - 295738c1-951d-4b8c-b5cd-83d71a85d7e8 # Image + - 5c9f2ce6-f780-4ea6-a50c-539a252aec94 # Images + - baf82dc6-9e5a-4933-aa96-15eed58c888f # Links + - fa02ff5a-1741-4417-8c8f-b72b954dd4fd # Quote + - 92963d20-e763-4d2e-a367-9e543dfde522 # Spacer + - 7b3b13e0-e20d-4d51-b0ae-832300f45234 # Text + - 3497ad65-5e4c-43cb-b469-c3e4b3d80343 # Text : Image + - 7b23a4a8-a6f8-43c4-b12c-326d089176ad # Video + includeTableView: false + maxEntries: null + minEntries: null + pageSize: null + propagationKeyFormat: null + propagationMethod: all + showCardsInGrid: false + viewMode: blocks +translationKeyFormat: null +translationMethod: site +type: craft\fields\Matrix diff --git a/config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml b/config/project/fields/codeSnippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml similarity index 87% rename from config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml rename to config/project/fields/codeSnippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml index 233c553e..a0347648 100644 --- a/config/project/fields/snippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml +++ b/config/project/fields/codeSnippet--be45c3e2-5e9f-491e-a000-94d95c4fa20b.yaml @@ -1,8 +1,8 @@ columnSuffix: null -handle: snippet +handle: codeSnippet instructions: null -name: 'Builder: Content - Code - Snippet' -searchable: false +name: 'Code Snippet' +searchable: true settings: availableLanguages: - css diff --git a/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml b/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml deleted file mode 100644 index 5937cfc0..00000000 --- a/config/project/fields/dividerVariant--f084e099-613d-4405-b600-f4be12d3509b.yaml +++ /dev/null @@ -1,65 +0,0 @@ -columnSuffix: null -handle: dividerVariant -instructions: null -name: 'Builder: Content - Divider - Divider Variant' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '1' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/hyperLink--a3f76ec3-252e-4be6-8178-8f6b54acce19.yaml b/config/project/fields/hyperLink--a3f76ec3-252e-4be6-8178-8f6b54acce19.yaml new file mode 100644 index 00000000..b4bf2503 --- /dev/null +++ b/config/project/fields/hyperLink--a3f76ec3-252e-4be6-8178-8f6b54acce19.yaml @@ -0,0 +1,2475 @@ +columnSuffix: null +handle: hyperLink +instructions: null +name: Link +searchable: true +settings: + defaultLinkType: default-verbb-hyper-links-entry + defaultNewWindow: false + fieldLayoutId: null + linkTypes: + - + __assoc__: + - + - type + - verbb\hyper\links\Asset + - + - label + - Asset + - + - handle + - default-verbb-hyper-links-asset + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - 48c78b9b-83ad-4c76-9602-c28d3cfe46be + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - eef92d77-36c7-462e-8ab7-4d0c6872b638 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:29:56+00:00' + - + - uid + - a86691ec-18bb-410f-95ef-5a07d569c0bd + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:29:56+00:00' + - + - uid + - 1dbac86b-ff95-4f23-9dc8-6fa0deb9790e + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - 5451a679-ea99-46f1-925e-02a76269fbc9 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - fa5cd0bb-c43f-4a8f-9b72-1fa8ec61d150 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - cf761a62-1870-43b5-a9ba-7903a89057cc + - + - sources + - + - 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files + - + __assoc__: + - + - type + - verbb\hyper\links\Category + - + - label + - Category + - + - handle + - default-verbb-hyper-links-category + - + - enabled + - false + - + - isCustom + - false + - + - layoutUid + - 27f34d6c-d239-4a2e-9afe-e79383b3f756 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 2f07cbeb-e16c-46e5-9d46-faf15db90774 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - f22c2a04-628b-4441-8e3e-1602d0c93a6c + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - f68fb173-4d84-4cb0-9fe6-11977e46624d + - + __assoc__: + - + - name + - Advanced + - + - uid + - 9ee14145-6993-446b-b10b-5735f4325cf7 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTitleField + - + - attribute + - linkTitle + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - f5a47c32-af23-4b1d-b68a-541098cc3025 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\ClassesField + - + - attribute + - classes + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - aa9c8d3a-6db7-4ece-9c3f-351add670341 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\CustomAttributesField + - + - attribute + - customAttributes + - + - requirable + - true + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 163b5f8c-629f-4a5c-916d-3c9f76c3d33a + - + - sources + - '*' + - + __assoc__: + - + - type + - verbb\hyper\links\Custom + - + - label + - Custom + - + - handle + - default-verbb-hyper-links-custom + - + - enabled + - false + - + - isCustom + - false + - + - layoutUid + - e1a1b315-f3eb-43a5-80f1-bf020da5b79d + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - ca8222a2-5315-4e80-8875-02e79c688738 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:13+00:00' + - + - uid + - b7594b39-1e77-42a5-b88f-f7cf982b56f5 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:13+00:00' + - + - uid + - 4031fb95-893b-468b-9616-42acfb9cfe8d + - + __assoc__: + - + - name + - Advanced + - + - uid + - 17d32d09-87d0-4fc4-81ad-1e56a597cbb4 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 007abd00-c4ec-4809-8ca5-15ef9461c2a5 + - + __assoc__: + - + - type + - verbb\hyper\links\Email + - + - label + - Email + - + - handle + - default-verbb-hyper-links-email + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - e3a37d3e-3736-4ea6-83cb-6d934ba72bc9 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 85fe6bc4-ce98-44b7-888b-b8ff689b98b5 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:23+00:00' + - + - uid + - e402dd69-aa78-4894-840f-fc277c148f66 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:23+00:00' + - + - uid + - 8c264730-865e-40d7-8927-9f5a4d534bd2 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - 5d6c2489-f62e-4ee1-9038-91a77ae950db + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 8a912b2e-dc7f-4d8d-b8df-d75a5071e8e4 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 76a5f057-9e35-4adc-9916-2c4bff6ddc63 + - + __assoc__: + - + - type + - verbb\hyper\links\Embed + - + - label + - Embed + - + - handle + - default-verbb-hyper-links-embed + - + - enabled + - false + - + - isCustom + - false + - + - layoutUid + - 8fe03f67-a21a-4f32-b79e-4ee5059518b7 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 5f33fa29-27c6-4e98-9eb9-c6437549bae1 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:30+00:00' + - + - uid + - 95deaba5-90e7-4df2-a77c-660e3645b099 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:30+00:00' + - + - uid + - 1c357c3d-7f89-4259-a05e-b932c5f3cde8 + - + __assoc__: + - + - name + - Advanced + - + - uid + - 275f31bc-0e41-40f2-b279-820f5cb63347 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 423d7d32-e0d0-4b29-bcfb-e54f04d15070 + - + __assoc__: + - + - type + - verbb\hyper\links\Entry + - + - label + - Entry + - + - handle + - default-verbb-hyper-links-entry + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - c79e8fd2-47b3-4f3d-bbe6-f410f2344284 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - e6d20965-7dc8-41df-bd61-c98462dc834c + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:37+00:00' + - + - uid + - 55995ae6-df13-4ad7-a193-7e5adfa43cb2 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:37+00:00' + - + - uid + - dbf8744e-81a6-4fb2-b58b-157cfcfa305b + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - a2dd02f8-f45f-4c87-a20b-2e2729753ec7 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - aefdf9b5-16c2-44a5-acf0-fb64834ea600 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 6a5ce111-be2b-4079-9abd-2e37623fa051 + - + - sources + - '*' + - + __assoc__: + - + - type + - verbb\hyper\links\Phone + - + - label + - Phone + - + - handle + - default-verbb-hyper-links-phone + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - 23f1b57a-b432-4bca-b2ca-964a4e85f36c + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 5d5a993d-dfdc-48af-9373-288813e00068 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:51+00:00' + - + - uid + - d8c26f6b-ee3a-4770-94f0-0ac8ec98614a + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:51+00:00' + - + - uid + - 8eb6894d-229b-4c0f-9fc0-7c0d2035a014 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - 73d7032e-d6b1-4446-b95c-3d09dfa2038b + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - fde95787-c2dd-47c9-85c3-6503c3bad791 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 712257fe-4997-485b-8dc0-cdb62bc98bfb + - + __assoc__: + - + - type + - verbb\hyper\links\Site + - + - label + - Site + - + - handle + - default-verbb-hyper-links-site + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - fa011d60-30eb-4e1d-8beb-6a917418da08 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 2a4a0211-f22e-4648-a4a4-7f9898a5eb95 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 4208c50f-6274-41f3-8f85-9e316e534cd7 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - e5487472-4d47-4353-9c9c-f45a1fc76eb2 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - 00063493-7fe5-4811-848e-0da4a235cb6f + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 6af961eb-986c-439c-9226-5602974383fd + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T21:31:58+00:00' + - + - uid + - 25266123-2764-4dff-84b1-251b116eb867 + - + - sites + - '*' + - + __assoc__: + - + - type + - verbb\hyper\links\Url + - + - label + - URL + - + - handle + - default-verbb-hyper-links-url + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - 6b4a6247-e196-4963-98c4-7e6fa6ea79b3 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - ee78b391-9fca-4d78-9ec8-4d390f224c9a + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:58+00:00' + - + - uid + - d618ebe2-f3d7-4646-9ced-a36aea92e11a + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:30:58+00:00' + - + - uid + - e5c91946-a66c-480f-8411-c4d028a07bb3 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:32:08+02:00' + - + - uid + - c1315b99-5a40-4b25-bb0f-de291416d21b + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 0fae4374-b5c5-4f3f-8048-06005033aae1 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField + - + - attribute + - urlSuffix + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-04T23:31:12+00:00' + - + - uid + - 2988c2ce-2373-4383-bb5d-edc87cc68b5d + - + __assoc__: + - + - type + - verbb\hyper\links\User + - + - label + - User + - + - handle + - default-verbb-hyper-links-user + - + - enabled + - false + - + - isCustom + - false + - + - layoutUid + - bd534d08-0c79-4dea-acdb-08d922d99a5d + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 71d4762b-b889-4e4e-9beb-fe906d6c78d7 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkField + - + - attribute + - linkValue + - + - mandatory + - true + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 97db7d0b-ef1b-483c-a36c-384928581e71 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTextField + - + - attribute + - linkText + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - placeholder + - 'e.g. Read more' + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 57e710d0-c8d9-4ed5-9a1b-fae55ff0b9ba + - + __assoc__: + - + - name + - Advanced + - + - uid + - 3f9e554d-e135-41fa-be85-bb61b25caddd + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\LinkTitleField + - + - attribute + - linkTitle + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 0835484d-3075-44f7-a4fd-d08363eff307 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\ClassesField + - + - attribute + - classes + - + - requirable + - true + - + - autocomplete + - false + - + - autofocus + - false + - + - autocorrect + - true + - + - autocapitalize + - true + - + - disabled + - false + - + - readonly + - false + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 1849c6d2-fac6-485a-a7e6-581524014505 + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\CustomAttributesField + - + - attribute + - customAttributes + - + - requirable + - true + - + - mandatory + - false + - + - translatable + - false + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 100 + - + - dateAdded + - '2024-09-05T01:31:12+02:00' + - + - uid + - 188a2148-8b16-4dc7-bf03-892ca320b113 + - + - sources + - '*' + maxLinks: null + minLinks: null + multipleLinks: false + newWindow: true +translationKeyFormat: null +translationMethod: none +type: verbb\hyper\fields\HyperField diff --git a/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml b/config/project/fields/hyperLinks--c8a9d048-8e52-42a3-8e8a-44633a838802.yaml similarity index 71% rename from config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml rename to config/project/fields/hyperLinks--c8a9d048-8e52-42a3-8e8a-44633a838802.yaml index e5b2c26d..96a031ff 100644 --- a/config/project/fields/textLinks--8d272b11-c1b4-4fc3-95c8-9d94fa513795.yaml +++ b/config/project/fields/hyperLinks--c8a9d048-8e52-42a3-8e8a-44633a838802.yaml @@ -1,11 +1,9 @@ -columnSuffix: kmnpmoky -contentColumnType: text -handle: textLinks +columnSuffix: null +handle: hyperLinks instructions: null -name: 'Text: Links' +name: Links searchable: true settings: - columnType: text defaultLinkType: default-verbb-hyper-links-entry defaultNewWindow: false fieldLayoutId: null @@ -29,7 +27,7 @@ settings: - false - - layoutUid - - 92e919df-8d25-4cde-9358-65dcb549dfe0 + - 00e61faa-63f4-4556-93d4-8abddbb52e2f - - layoutConfig - @@ -44,7 +42,7 @@ settings: - Content - - uid - - 32d22251-52a8-4147-8096-7073f3cb3747 + - 12ad55a0-fb21-4a73-bc61-9dc4fc34b301 - - elements - @@ -59,6 +57,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -77,21 +78,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - 984e4fea-f3f9-4f4a-80b0-3ddd722a4c51 + - c0199e71-ccdc-437d-8c9c-be7125a76a4e - __assoc__: - @@ -134,162 +141,65 @@ settings: - required - false - - - width - - 50 - - - - uid - - 46e1e81b-2a0c-45fd-bf2b-b2f6c5403d15 - - - __assoc__: - - - - name - - Advanced - - - - uid - - ae00ef13-68f8-4a68-b96c-6ab395bb4d1c - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\UrlSuffixField - - - - attribute - - urlSuffix - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - - 100 - - - - uid - - cf5849d3-5e05-465e-bab1-5d619ee6dfac - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\AriaLabelField - - - - attribute - - ariaLabel - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable - - false - - - - required - - false + - 50 - - - width - - 100 + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - b714be61-39aa-4f99-a3a6-bc90bdf89ac2 + - 78c2675f-a55c-4476-a814-f5930eea5630 - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField - - - - attribute - - linkTitle - - - - requirable - - true - - - - autocomplete - - false + - craft\fieldlayoutelements\CustomField - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory + - required - false - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - 0d72a1dd-c330-4344-bcda-00736f1bde6f + - 36a5bb7b-916c-4ffb-9564-71358e650c0c + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 5b16771b-bd1b-4def-9578-17f426609f22 + - + - elements + - - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\ClassesField + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - classes + - urlSuffix - - requirable - true @@ -321,45 +231,24 @@ settings: - required - false - - - width - - 100 - - - - uid - - cdb16754-2b0a-412a-9f7b-325c1f08b3a4 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - 100 + - + - dateAdded + - '2024-09-04T23:29:16+00:00' - - uid - - 9eab4877-a6ea-436c-9cfc-966b03c0b9c6 + - 0e5bcbfe-3d5a-477d-bad4-33ea3aa7be05 - - sources - - 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - - - - selectionLabel - - 'Choose an Asset' - __assoc__: - @@ -379,7 +268,7 @@ settings: - false - - layoutUid - - e08b9cf3-a7ee-42b3-9993-d65601c0b15d + - f1ba3076-7336-438f-8bc3-892b553958e5 - - layoutConfig - @@ -394,7 +283,7 @@ settings: - Content - - uid - - e3ed8419-6379-4231-91bc-73a5852b858d + - 4b07cf5b-fee2-4b78-83ef-f3e57a759f49 - - elements - @@ -409,6 +298,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -427,21 +319,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 8bed0c07-4d7e-4498-8924-4d00849b63d1 + - 7de015db-b81a-4e4a-b8e9-3bb3225b752e - __assoc__: - @@ -483,12 +381,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - c84bb811-80b7-4357-99fd-a65eb647ca37 + - 9860e305-e934-4cec-8742-7184b13d3234 - __assoc__: - @@ -496,7 +403,7 @@ settings: - Advanced - - uid - - 88b780c7-b025-4573-9042-802461ac54d4 + - 2dc05e25-0a5b-403b-980b-383a17973019 - - elements - @@ -538,12 +445,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 47392c29-de14-4c45-9aee-99297d963de5 + - a4c38ba3-e5f8-48e0-bf0c-f9f3e98721d6 - __assoc__: - @@ -582,12 +498,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - e3e05c0b-5607-4370-9b43-87085d3793f6 + - 59d9ef98-eaff-4c1b-9870-224d70248988 - __assoc__: - @@ -608,12 +533,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - f9ee96bd-61a0-4393-ba42-1188f0e3f1ea + - b3c6c138-e658-4f16-ae70-ff0d950a0dc6 - - sources - '*' @@ -636,7 +570,7 @@ settings: - false - - layoutUid - - d63c3ee6-881e-4a38-90a9-deb18cafd9df + - 8933886c-39ef-4b5c-a4b5-b7f01ccd3460 - - layoutConfig - @@ -651,7 +585,7 @@ settings: - Content - - uid - - 221be9da-8f78-44e7-8e9a-359caa032063 + - dc0a93b2-fa84-4de7-86b5-066ee5152aa7 - - elements - @@ -666,6 +600,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -684,21 +621,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - d792ae5f-4693-49b3-bf7e-dbbefea6322a + - 383bce60-970d-4b13-887e-672505a6e941 - __assoc__: - @@ -740,12 +683,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - ae85a507-d09b-4871-94e6-c4f7a6088866 + - 07d35288-bbbe-4850-81be-4094652071fa - __assoc__: - @@ -753,7 +705,7 @@ settings: - Advanced - - uid - - eb8511e3-ab93-433b-b72c-6e7fe61ffb52 + - e8866ba5-d56d-4b26-9109-9ced489b24bc - - elements - @@ -761,10 +713,10 @@ settings: __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - linkTitle + - urlSuffix - - requirable - true @@ -796,81 +748,20 @@ settings: - required - false - - - width - - 100 - - - - uid - - 63895592-d77f-4924-b37e-058fdc292977 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\ClassesField - - - - attribute - - classes - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus + - providesThumbs - false - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled + - includeInCards - false - - - readonly - - false + - width + - 100 - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - 3a4f344b-a649-4499-81f2-652203b7f7f6 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 + - dateAdded + - '2024-09-04T23:27:45+00:00' - - uid - - 830fad44-f7d5-4059-ace2-41eb8ea9d25b + - ff3f75bf-582e-4b7c-a91d-abc8b3d1a993 - __assoc__: - @@ -890,7 +781,7 @@ settings: - false - - layoutUid - - 569d4a39-217d-452b-a53a-70a07de6caab + - a535d681-fd5a-4f74-8bea-7b247a5dc414 - - layoutConfig - @@ -905,7 +796,7 @@ settings: - Content - - uid - - c5a252a1-c70b-433a-ba52-65d21a096a56 + - 7e007022-e464-40ba-8b69-3d4b9eb77b82 - - elements - @@ -920,6 +811,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -938,21 +832,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - 76b8b3ff-c0db-4616-9768-6a58a668f808 + - 49a487bd-e4da-47fe-9129-0c9f6155c744 - __assoc__: - @@ -994,12 +894,47 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' + - + - uid + - 842c21b8-0496-43cb-a003-eb738dc7d4da + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - 04b86e24-31dc-436b-af2e-2e60eeeccf26 + - 9138e346-30ee-4398-952d-1bc8bbaebff4 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style - __assoc__: - @@ -1007,7 +942,7 @@ settings: - Advanced - - uid - - 91c5c516-3ecb-42d2-bf4b-aed5324fe5e0 + - 7351c472-7059-45a9-b2ec-e27c53854463 - - elements - @@ -1049,20 +984,70 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-04T23:29:16+00:00' - - uid - - aae952f4-b670-4897-92fe-242ee737e4f7 + - 369ed282-0e08-491b-85b2-d87113a8c35c + - + __assoc__: + - + - type + - verbb\hyper\links\Embed + - + - label + - Embed + - + - handle + - default-verbb-hyper-links-embed + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - e64660a5-fe3a-4253-841b-a1f03d96ab97 + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - 20865034-8669-48e6-9acc-43a306fac3d4 + - + - elements + - - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\AriaLabelField + - verbb\hyper\fieldlayoutelements\LinkField - - attribute - - ariaLabel + - linkValue + - + - mandatory + - true - - requirable - true @@ -1084,29 +1069,35 @@ settings: - - readonly - false - - - - mandatory - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - 5f7b1d40-6376-42ee-b0c5-10ddecb26d7a + - bcf91b02-142e-41b4-8552-c9d4fe758218 - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField + - verbb\hyper\fieldlayoutelements\LinkTextField - - attribute - - linkTitle + - linkText - - requirable - true @@ -1128,6 +1119,9 @@ settings: - - readonly - false + - + - placeholder + - 'e.g. Read more' - - mandatory - false @@ -1137,20 +1131,66 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - 6183e65d-d22f-4cdd-aca6-2e48b549ff54 + - 4e963195-cca3-4c08-8210-b808b9068acf - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\ClassesField + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' + - + - uid + - bbac15e9-90a5-4e62-9b42-6f6d62f37860 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 3cfe0426-b141-4612-b62d-6bd6d8ecfac7 + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - classes + - urlSuffix - - requirable - true @@ -1182,57 +1222,40 @@ settings: - required - false - - - width - - 100 - - - - uid - - ec4e4ee3-2621-4ea6-b4d4-bf430fa7cc94 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - 100 + - + - dateAdded + - '2024-09-04T23:29:16+00:00' - - uid - - 13c0a75f-cb6d-4763-b1ad-3bc59cf31dad + - e38d9734-64f7-44d1-a248-9872d166efcc - __assoc__: - - type - - verbb\hyper\links\Embed + - verbb\hyper\links\Entry - - label - - Embed + - Entry - - handle - - default-verbb-hyper-links-embed + - default-verbb-hyper-links-entry - - enabled - - false + - true - - isCustom - false - - layoutUid - - 3176769f-46cb-4272-b5b4-71fe44bec95d + - daa8d5a6-4325-4e76-aa7d-5f542d58986c - - layoutConfig - @@ -1247,7 +1270,7 @@ settings: - Content - - uid - - 9842017c-cb69-4316-8105-d0958d0bac8f + - bceb106c-969e-468c-aa07-3b2b188e701b - - elements - @@ -1262,6 +1285,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -1280,21 +1306,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - 76bdf041-b52f-4ab8-b108-296011d380ef + - 607151e5-6065-41f1-98fd-38c776146397 - __assoc__: - @@ -1336,12 +1368,47 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' + - + - uid + - a7159dad-3cdb-4557-b665-bb007c345795 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - e79cdeb5-add0-48cd-93d7-0c3213d00f11 + - a88a7ea3-055b-47e3-91ac-b36b99329cb9 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style - __assoc__: - @@ -1349,7 +1416,7 @@ settings: - Advanced - - uid - - 43abde8e-96af-42db-b5a9-88eeae69cead + - 644f99e2-0af4-48f2-9b5a-1a03f1ed7153 - - elements - @@ -1357,10 +1424,10 @@ settings: __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - linkTitle + - urlSuffix - - requirable - true @@ -1392,92 +1459,34 @@ settings: - required - false - - - width - - 100 - - - - uid - - 87e9a0cd-9d4b-40a6-8993-98d677b3132d - - - __assoc__: + - providesThumbs + - false - - - type - - verbb\hyper\fieldlayoutelements\ClassesField + - includeInCards + - false - - - attribute - - classes + - width + - 100 - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - 81785002-eb20-444d-ad66-38e2f1626b68 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 + - dateAdded + - '2024-09-04T23:28:59+00:00' - - uid - - 54e1edee-0011-4dae-a9a3-364d26fd94f9 + - dffdbbed-3b48-40aa-b4c7-a895d650cc63 + - + - sources + - '*' - __assoc__: - - type - - verbb\hyper\links\Entry + - verbb\hyper\links\Phone - - label - - Entry + - Phone - - handle - - default-verbb-hyper-links-entry + - default-verbb-hyper-links-phone - - enabled - true @@ -1486,7 +1495,7 @@ settings: - false - - layoutUid - - 068accf0-9da9-425c-8f88-7996f565857f + - 593b4311-2c4b-49b2-9f4d-a7fa8458daa6 - - layoutConfig - @@ -1501,7 +1510,7 @@ settings: - Content - - uid - - 27cb8099-e9b7-4b34-ab95-7c4856f95713 + - bd8b8f23-31b6-4c7c-97a6-309db74b997a - - elements - @@ -1516,47 +1525,6 @@ settings: - - mandatory - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - requirable - - false - - - - translatable - - false - - - - required - - false - - - - width - - 50 - - - - uid - - ce02f530-28ed-4c1f-85c5-a5e3439eb00a - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkTextField - - - - attribute - - linkText - - requirable - true @@ -1578,12 +1546,6 @@ settings: - - readonly - false - - - - placeholder - - 'e.g. Read more' - - - - mandatory - - false - - translatable - false @@ -1591,118 +1553,28 @@ settings: - required - false - - - width - - 50 - - - - uid - - e52dcd79-9a85-4792-b2d0-e97793446449 - - - __assoc__: - - - - name - - Advanced - - - - uid - - c9879b9d-af13-4d7b-98c9-d9d200ca3ce7 - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\UrlSuffixField - - - - attribute - - urlSuffix - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - - 100 - - - - uid - - f10bf46b-388d-4d53-be4f-8ad44e53b376 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\AriaLabelField - - - - attribute - - ariaLabel - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable - - false - - - - required - - false + - 50 - - - width - - 100 + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - c3996f6b-6a1e-4c79-addd-a79131326ea9 + - 7f117f0a-7770-4df9-bd8a-bdda01053505 - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField + - verbb\hyper\fieldlayoutelements\LinkTextField - - attribute - - linkTitle + - linkText - - requirable - true @@ -1725,49 +1597,8 @@ settings: - readonly - false - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - 7b7dbba0-c30e-42bd-9fbc-f1f6ac202cbd - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\ClassesField - - - - attribute - - classes - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false + - placeholder + - 'e.g. Read more' - - mandatory - false @@ -1778,489 +1609,65 @@ settings: - required - false - - - width - - 100 - - - - uid - - 0fc85357-3a7a-495c-b366-1c3f295aed08 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - 8543eb99-3301-428f-b92f-789156eace4e - - - - sources - - '*' - - - - selectionLabel - - 'Choose an Entry' - - - __assoc__: - - - - type - - verbb\hyper\links\Phone - - - - label - - Phone - - - - handle - - default-verbb-hyper-links-phone - - - - enabled - - false - - - - isCustom - - false - - - - layoutUid - - 8c0056bd-7e5b-484a-8979-2f91898c232a - - - - layoutConfig - - - __assoc__: - - - - tabs - - - - - __assoc__: - - - - name - - Content - - - - uid - - 394f043e-5243-4b59-a18d-7f896f61bef9 - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkField - - - - attribute - - linkValue - - - - mandatory - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - requirable - - false - - - - translatable - - false - - - - required - - false - - - - width - - 50 - - - - uid - - 5aec50a9-f723-4719-b829-4c3306f6d480 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkTextField - - - - attribute - - linkText - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - placeholder - - 'e.g. Read more' - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 50 - - - - uid - - bb3e5f53-ead2-4457-8783-52f2f2c495b3 - - - __assoc__: - - - - name - - Advanced - - - - uid - - 0eb05f7e-3d27-4375-8de9-3a97d6659c7d - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField - - - - attribute - - linkTitle - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - c92ed067-09cf-495b-a937-ca325dc64063 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\ClassesField - - - - attribute - - classes - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - ad79c7bb-fa10-45a9-9091-5db93ff28331 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 100 - - - - uid - - eacff86c-6f64-4d3c-99a8-85ab40209e0a - - - __assoc__: - - - - type - - verbb\hyper\links\Site - - - - label - - Site - - - - handle - - default-verbb-hyper-links-site - - - - enabled - - false - - - - isCustom - - false - - - - layoutUid - - 5bea0bcd-8559-443f-8829-530c663ff496 - - - - layoutConfig - - - __assoc__: - - - - tabs - - - - - __assoc__: - - - - name - - Content - - - - uid - - 982d5194-e2e8-43dd-bcd4-045db71c82fd - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkField - - - - attribute - - linkValue - - - - mandatory - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - requirable - - false - - - - translatable - - false - - - - required - - false - - - - width - - 50 - - - - uid - - 8236874b-2730-4826-bbeb-b988d654e622 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkTextField - - - - attribute - - linkText - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled - - false - - - - readonly - - false - - - - placeholder - - 'e.g. Read more' - - - - mandatory - - false - - - - translatable - - false - - - - required - - false - - - - width - - 50 - - - - uid - - 85226c20-a2d1-4820-9809-f4ff23fca4d6 - - - __assoc__: - - - - name - - Advanced - - - - uid - - d95a736f-e927-42f6-b969-f69b2502d6c9 - - - - elements - - - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField - - - - attribute - - linkTitle - - - - requirable - - true - - - - autocomplete - - false - - - - autofocus - - false - - - - autocorrect - - true - - - - autocapitalize - - true - - - - disabled + - providesThumbs - false - - - readonly + - includeInCards - false - - - mandatory + - width + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' + - + - uid + - 8ee86d34-5f8b-40ce-be2c-8bbaa9beb1ee + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required - false - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - 425f8124-6dbc-4f5d-bd96-53fc36d79aea + - c630d9c0-2153-4f75-af80-e0e84133140d + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 033e957c-f8c9-41fe-ae91-6675d88c76ab + - + - elements + - - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\ClassesField + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - classes + - urlSuffix - - requirable - true @@ -2292,51 +1699,31 @@ settings: - required - false - - - width - - 100 - - - - uid - - 796c2e3d-d0ff-45d2-ae53-8f03b5e6badb - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - 100 + - + - dateAdded + - '2024-09-04T23:29:16+00:00' - - uid - - 73f0a0c2-ba34-4cdc-8895-a381a14ef6e1 - - - - sites - - '*' + - dbcbbca4-1005-44db-b86e-1fd9d6777b9e - __assoc__: - - type - - verbb\hyper\links\Url + - verbb\hyper\links\Site - - label - - URL + - Site - - handle - - default-verbb-hyper-links-url + - default-verbb-hyper-links-site - - enabled - true @@ -2345,7 +1732,7 @@ settings: - false - - layoutUid - - 881faf90-ed08-4fc6-9b0e-034dde30e3f8 + - 71416cf0-9311-4065-b18a-9366b924f66d - - layoutConfig - @@ -2360,7 +1747,7 @@ settings: - Content - - uid - - 34c4e674-cac2-4be8-b7be-7f4aaf137945 + - b5aed554-5371-4dd6-99ee-f5ae19d890f3 - - elements - @@ -2375,6 +1762,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -2393,21 +1783,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - b4954d28-231d-49c5-afab-dc8490721a11 + - cb1c2648-c15d-4791-8369-61f26adef72a - __assoc__: - @@ -2449,12 +1845,47 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' + - + - uid + - 4168e608-2d05-49bb-b7c2-48b6544e4af1 + - + __assoc__: + - + - type + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - 19ecee91-e81d-4e0c-a045-65b68bd004a5 + - d4e1e688-a440-4cde-9bad-7d6af79f6500 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style - __assoc__: - @@ -2462,7 +1893,7 @@ settings: - Advanced - - uid - - e8e2058a-4dbc-4b88-99ea-1aba22152706 + - 917511f0-73f7-4fe4-a21c-f1d058edce50 - - elements - @@ -2504,20 +1935,73 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' - - uid - - f9e417d9-041b-45b9-ad24-d7dc8d0c1c0c + - d71107e3-15e8-4075-9123-0c8fa82267a3 + - + - sites + - '*' + - + __assoc__: + - + - type + - verbb\hyper\links\Url + - + - label + - URL + - + - handle + - default-verbb-hyper-links-url + - + - enabled + - true + - + - isCustom + - false + - + - layoutUid + - 059a531a-18fb-4fc8-b864-4da458dd9dfa + - + - layoutConfig + - + __assoc__: + - + - tabs + - + - + __assoc__: + - + - name + - Content + - + - uid + - c0f345c0-f891-44eb-9eba-43abaeb0b416 + - + - elements + - - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\AriaLabelField + - verbb\hyper\fieldlayoutelements\LinkField - - attribute - - ariaLabel + - linkValue + - + - mandatory + - true - - requirable - true @@ -2539,29 +2023,35 @@ settings: - - readonly - false - - - - mandatory - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - ee3367d6-35c5-44d8-b6f0-d0b3682f01d9 + - 599aaa73-bec5-48c2-b4f3-73a324bc5d73 - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\LinkTitleField + - verbb\hyper\fieldlayoutelements\LinkTextField - - attribute - - linkTitle + - linkText - - requirable - true @@ -2583,6 +2073,9 @@ settings: - - readonly - false + - + - placeholder + - 'e.g. Read more' - - mandatory - false @@ -2592,20 +2085,66 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - - 100 + - 50 + - + - dateAdded + - '2024-09-04T23:19:35+00:00' - - uid - - c51f792c-e185-4f91-9a16-0f55fb0b7c37 + - 5e54c9a1-a28d-40bd-b108-d738e7a7db4d - __assoc__: - - type - - verbb\hyper\fieldlayoutelements\ClassesField + - craft\fieldlayoutelements\CustomField + - + - required + - false + - + - providesThumbs + - false + - + - includeInCards + - false + - + - width + - 50 + - + - dateAdded + - '2024-09-05T23:33:15+02:00' + - + - uid + - 16c2e9a6-1f2d-4b2e-9366-2e9abb4a44c5 + - + - fieldUid + - 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f # Link Style + - + __assoc__: + - + - name + - Advanced + - + - uid + - 4dab6947-cf36-4f82-986e-edf0be8d99ad + - + - elements + - + - + __assoc__: + - + - type + - verbb\hyper\fieldlayoutelements\UrlSuffixField - - attribute - - classes + - urlSuffix - - requirable - true @@ -2637,37 +2176,20 @@ settings: - required - false - - - width - - 100 - - - - uid - - 5402d893-d1c7-4469-9a55-a196ce8ae0f6 - - - __assoc__: - - - - type - - verbb\hyper\fieldlayoutelements\CustomAttributesField - - - - attribute - - customAttributes - - - - requirable - - true - - - - mandatory - - false - - - - translatable + - providesThumbs - false - - - required + - includeInCards - false - - width - 100 + - + - dateAdded + - '2024-09-04T23:29:16+00:00' - - uid - - fed3e37b-b371-46d9-982c-c28b056a2c5d + - 1c23fd5f-6ff8-488b-9e4a-242949d2881f - __assoc__: - @@ -2687,7 +2209,7 @@ settings: - false - - layoutUid - - 22a4c418-ec1a-4e04-bd5f-362169c01adf + - 1f4668bf-73bb-49dd-9631-35a0e65cb28f - - layoutConfig - @@ -2702,7 +2224,7 @@ settings: - Content - - uid - - 15d8329b-09b5-4c46-b65e-3b3c86071c83 + - 69950954-b1ce-4483-b7f5-156eb7983d38 - - elements - @@ -2717,6 +2239,9 @@ settings: - - mandatory - true + - + - requirable + - true - - autocomplete - false @@ -2735,21 +2260,27 @@ settings: - - readonly - false - - - - requirable - - false - - translatable - false - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 4d851e9b-59c2-4554-a746-b3a8cc963239 + - d053ed70-2d9e-4308-9a33-29d58a5c308b - __assoc__: - @@ -2791,12 +2322,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 50 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 9021204d-a791-45d9-8753-ee026ed5a8b7 + - 802bce85-ebdd-488f-8711-0a6c2d05930a - __assoc__: - @@ -2804,7 +2344,7 @@ settings: - Advanced - - uid - - 5c5d845f-38cf-4c29-958b-c98726426883 + - d0fa5e62-acab-469f-85e9-fdf7e7c8c7cf - - elements - @@ -2846,12 +2386,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 0ba8d0a9-6b33-4386-b2f2-66e865595951 + - 5e43cb7f-d2f3-48d4-b415-132677a2ab52 - __assoc__: - @@ -2890,12 +2439,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - db47690d-658b-4fed-834f-fe4cffaccaad + - 95b80ef4-e3ac-48ef-a1fa-7d9b52df3cad - __assoc__: - @@ -2916,12 +2474,21 @@ settings: - - required - false + - + - providesThumbs + - false + - + - includeInCards + - false - - width - 100 + - + - dateAdded + - '2024-09-05T01:19:35+02:00' - - uid - - 0f380586-4c66-43f9-9331-9cbe798e37f8 + - e19355f7-ef0c-4ace-9aec-f0599b8bd312 - - sources - '*' diff --git a/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml b/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml index 75abdfb1..737a2348 100644 --- a/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml +++ b/config/project/fields/image--b81cb731-dd6f-4055-9c6d-2f076a727a27.yaml @@ -1,8 +1,8 @@ columnSuffix: null handle: image instructions: null -name: 'Builder: Content - Text : Image - Image' -searchable: false +name: Image +searchable: true settings: allowSelfRelations: false allowSubfolders: false @@ -21,7 +21,7 @@ settings: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files restrictedLocationSubpath: null - selectionLabel: null + selectionLabel: 'Add an image' showCardsInGrid: false showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml b/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml deleted file mode 100644 index 2a38cb1f..00000000 --- a/config/project/fields/image2--35b67fb3-4bdb-470f-a686-3d46c5cd5f96.yaml +++ /dev/null @@ -1,36 +0,0 @@ -columnSuffix: null -handle: image2 -instructions: null -name: 'Builder: Content - Image - Image' -searchable: false -settings: - allowSelfRelations: false - allowSubfolders: false - allowUploads: true - allowedKinds: - - image - branchLimit: null - defaultUploadLocationSource: 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - defaultUploadLocationSubpath: null - maintainHierarchy: false - maxRelations: 1 - minRelations: null - previewMode: full - restrictFiles: true - restrictLocation: false - restrictedDefaultUploadSubpath: null - restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files - restrictedLocationSubpath: null - selectionLabel: null - showCardsInGrid: false - showSiteMenu: true - showUnpermittedFiles: true - showUnpermittedVolumes: true - sources: - - 'volume:f1b38495-8096-48fa-9b78-0da345e3295c' # Images - targetSiteId: null - validateRelatedElements: true - viewMode: large -translationKeyFormat: null -translationMethod: none -type: craft\fields\Assets diff --git a/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml b/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml index 6997d9da..ade72e4e 100644 --- a/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml +++ b/config/project/fields/imagePosition--210de09a-f6c8-42dd-b4d6-c1c00e7d0b82.yaml @@ -1,12 +1,32 @@ columnSuffix: null handle: imagePosition instructions: null -name: 'Builder: Content - Text : Image - Image Position' +name: 'Image Position' searchable: false settings: - default: false - offLabel: Left - onLabel: Right + options: + - + __assoc__: + - + - label + - Left + - + - value + - left + - + - default + - '1' + - + __assoc__: + - + - label + - Right + - + - value + - right + - + - default + - '' translationKeyFormat: null translationMethod: none -type: craft\fields\Lightswitch +type: craft\fields\Dropdown diff --git a/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml b/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml index ceaecb83..8692095e 100644 --- a/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml +++ b/config/project/fields/imageRatio--62883121-63a2-4e5c-a6f3-4855cf64df2c.yaml @@ -1,7 +1,7 @@ columnSuffix: null handle: imageRatio -instructions: 'Usable for: Grids (non calculated) / Sliders' -name: 'Builder: Content - Images - Image Ratio' +instructions: null +name: 'Image Ratio' searchable: false settings: options: diff --git a/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml b/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml deleted file mode 100644 index 009843ce..00000000 --- a/config/project/fields/imageRatio2--98f7a455-6764-4b7d-8d19-405bdcc42228.yaml +++ /dev/null @@ -1,54 +0,0 @@ -columnSuffix: null -handle: imageRatio2 -instructions: null -name: 'Builder: Content - Text : Image - Image Ratio' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - Landscape - - - - value - - aspect-landscape - - - - default - - '1' - - - __assoc__: - - - - label - - Square - - - - value - - aspect-square - - - - default - - '' - - - __assoc__: - - - - label - - Portrait - - - - value - - aspect-portrait - - - - default - - '' - - - __assoc__: - - - - label - - Auto - - - - value - - aspect-auto - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml b/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml deleted file mode 100644 index f3e15be9..00000000 --- a/config/project/fields/imageRatio3--70bc887b-faf2-45c7-b4bc-4299acd343da.yaml +++ /dev/null @@ -1,54 +0,0 @@ -columnSuffix: null -handle: imageRatio3 -instructions: null -name: 'Builder: Content - Image - Image Ratio' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - Landscape - - - - value - - aspect-landscape - - - - default - - '1' - - - __assoc__: - - - - label - - Square - - - - value - - aspect-square - - - - default - - '' - - - __assoc__: - - - - label - - Portrait - - - - value - - aspect-portrait - - - - default - - '' - - - __assoc__: - - - - label - - Auto - - - - value - - aspect-auto - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml b/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml deleted file mode 100644 index 8fc73123..00000000 --- a/config/project/fields/imageWidth--1be86da8-5273-40c6-ba88-718f5c32a6c3.yaml +++ /dev/null @@ -1,32 +0,0 @@ -columnSuffix: null -handle: imageWidth -instructions: null -name: 'Builder: Content - Image - Image Width' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - Wide - - - - value - - wide - - - - default - - '1' - - - __assoc__: - - - - label - - Narrow - - - - value - - narrow - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml b/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml index e66b5737..d5188a4b 100644 --- a/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml +++ b/config/project/fields/images--75195ab8-b7c4-4dca-b807-ef8a042ef5a9.yaml @@ -1,8 +1,8 @@ columnSuffix: null handle: images instructions: null -name: 'Builder: Content - Images - Images' -searchable: false +name: Images +searchable: true settings: allowSelfRelations: false allowSubfolders: false @@ -21,7 +21,7 @@ settings: restrictedDefaultUploadSubpath: null restrictedLocationSource: 'volume:6c5fc0dd-cf56-48d8-8af8-88abe763b970' # Files restrictedLocationSubpath: null - selectionLabel: null + selectionLabel: 'Add images' showCardsInGrid: false showSiteMenu: true showUnpermittedFiles: true diff --git a/config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml b/config/project/fields/imagesViewMode--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml similarity index 93% rename from config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml rename to config/project/fields/imagesViewMode--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml index b2207c29..0627ce76 100644 --- a/config/project/fields/variant--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml +++ b/config/project/fields/imagesViewMode--74c3cd4f-b565-4fb4-879e-72022774f93c.yaml @@ -1,8 +1,8 @@ columnSuffix: swaooeeb -handle: variant +handle: imagesViewMode instructions: null -name: 'Builder: Content - Images - Variant' -searchable: false +name: 'Images View Mode' +searchable: true settings: options: - diff --git a/config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml b/config/project/fields/lightswitchOff--31947efb-fa8c-473c-9b01-bd36c8d70b68.yaml similarity index 71% rename from config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml rename to config/project/fields/lightswitchOff--31947efb-fa8c-473c-9b01-bd36c8d70b68.yaml index 374796dc..f1d53b3a 100644 --- a/config/project/fields/loop--4a25e574-679a-4d01-8e8b-d5927129ce33.yaml +++ b/config/project/fields/lightswitchOff--31947efb-fa8c-473c-9b01-bd36c8d70b68.yaml @@ -1,8 +1,8 @@ columnSuffix: null -handle: loop +handle: lightswitchOff instructions: null -name: 'Builder: Content - Video - Loop' -searchable: false +name: 'Lightswitch OFF' +searchable: true settings: default: false offLabel: null diff --git a/config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml b/config/project/fields/lightswitchOn--e01efe03-188f-486a-a2bd-b7c021ef142b.yaml similarity index 62% rename from config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml rename to config/project/fields/lightswitchOn--e01efe03-188f-486a-a2bd-b7c021ef142b.yaml index 032f2536..7571410b 100644 --- a/config/project/fields/autoplay--3ac3bfdf-e50b-46e3-abb9-cef4bffab4a0.yaml +++ b/config/project/fields/lightswitchOn--e01efe03-188f-486a-a2bd-b7c021ef142b.yaml @@ -1,10 +1,10 @@ columnSuffix: null -handle: autoplay +handle: lightswitchOn instructions: null -name: 'Builder: Content - Video - Autoplay' -searchable: false +name: 'Lightswitch ON' +searchable: true settings: - default: false + default: true offLabel: null onLabel: null translationKeyFormat: null diff --git a/config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml b/config/project/fields/linkStyle--185fdccb-b242-4ff7-bf7f-a0f1e7e2987f.yaml similarity index 58% rename from config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml rename to config/project/fields/linkStyle--185fdccb-b242-4ff7-bf7f-a0f1e7e2987f.yaml index 62f0d210..0da1f2e9 100644 --- a/config/project/fields/videoWidth--68109da0-245f-4b21-b040-b7f4385e618e.yaml +++ b/config/project/fields/linkStyle--185fdccb-b242-4ff7-bf7f-a0f1e7e2987f.yaml @@ -1,7 +1,7 @@ columnSuffix: null -handle: videoWidth +handle: linkStyle instructions: null -name: 'Builder: Content - Video - Video Width' +name: 'Link Style' searchable: false settings: options: @@ -9,10 +9,10 @@ settings: __assoc__: - - label - - Wide + - Primary - - value - - wide + - primary - - default - '1' @@ -20,10 +20,21 @@ settings: __assoc__: - - label - - Narrow + - Secondary - - value - - narrow + - secondary + - + - default + - '' + - + __assoc__: + - + - label + - Outlined + - + - value + - outlined - - default - '' diff --git a/config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml b/config/project/fields/richText--9add7508-89cd-4b19-b8e5-f6173a4ec371.yaml similarity index 73% rename from config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml rename to config/project/fields/richText--9add7508-89cd-4b19-b8e5-f6173a4ec371.yaml index 84430917..a4c26abb 100644 --- a/config/project/fields/text--d4cabad1-1cae-4a1e-a914-c38d9f1a813a.yaml +++ b/config/project/fields/richText--9add7508-89cd-4b19-b8e5-f6173a4ec371.yaml @@ -1,13 +1,13 @@ columnSuffix: null -handle: text +handle: richText instructions: null -name: 'Builder: Content - Text - Text' +name: 'Rich Text' searchable: true settings: availableTransforms: '' availableVolumes: '' - ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default - createButtonLabel: null + ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text + createButtonLabel: Blocks defaultTransform: null enableSourceEditingForNonAdmins: false purifierConfig: null diff --git a/config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml b/config/project/fields/richTextSimple--5af0a821-fa33-490a-9439-3193f439dd06.yaml similarity index 90% rename from config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml rename to config/project/fields/richTextSimple--5af0a821-fa33-490a-9439-3193f439dd06.yaml index 576367ea..fb109e00 100644 --- a/config/project/fields/quote--53f0660a-f06b-4b2d-b342-1869c5c65538.yaml +++ b/config/project/fields/richTextSimple--5af0a821-fa33-490a-9439-3193f439dd06.yaml @@ -1,7 +1,7 @@ columnSuffix: null -handle: quote +handle: richTextSimple instructions: null -name: 'Builder: Content - Quote - Quote' +name: 'Rich Text Simple' searchable: true settings: availableTransforms: '' diff --git a/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml b/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml deleted file mode 100644 index d68a97fa..00000000 --- a/config/project/fields/sectionPaddingVertical--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml +++ /dev/null @@ -1,76 +0,0 @@ -columnSuffix: null -handle: sectionPaddingVertical -instructions: null -name: 'Builder: Content - Section - Section Padding Vertical' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - Zero - - - - value - - zero - - - - default - - '1' - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml b/config/project/fields/seomatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml similarity index 86% rename from config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml rename to config/project/fields/seomatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml index d81df337..c486f517 100644 --- a/config/project/fields/seoSEOmatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml +++ b/config/project/fields/seomatic--d29e8520-ab62-4c8f-bda2-61868797c1ca.yaml @@ -1,9 +1,8 @@ columnSuffix: ibratpfs -contentColumnType: text -handle: seoSEOmatic +handle: seomatic instructions: null -name: 'SEO: SEOmatic' -searchable: false +name: SEOmatic +searchable: true settings: elementDisplayPreviewType: google facebookEnabledFields: '' diff --git a/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml b/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml deleted file mode 100644 index 7f07bf75..00000000 --- a/config/project/fields/showImageCaption--e0e9e510-46ff-45aa-aa46-700b325bb911.yaml +++ /dev/null @@ -1,12 +0,0 @@ -columnSuffix: null -handle: showImageCaption -instructions: 'Usable for: Grids' -name: 'Builder: Content - Images - Show Image Caption' -searchable: false -settings: - default: false - offLabel: null - onLabel: null -translationKeyFormat: null -translationMethod: none -type: craft\fields\Lightswitch diff --git a/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml b/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml deleted file mode 100644 index 0c9d30c4..00000000 --- a/config/project/fields/showImageCaption2--6a90dae3-938c-47e6-8e36-6b1d6be92d63.yaml +++ /dev/null @@ -1,12 +0,0 @@ -columnSuffix: null -handle: showImageCaption2 -instructions: null -name: 'Builder: Content - Text : Image - Show Image Caption' -searchable: false -settings: - default: false - offLabel: null - onLabel: null -translationKeyFormat: null -translationMethod: none -type: craft\fields\Lightswitch diff --git a/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml b/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml deleted file mode 100644 index f69ddd41..00000000 --- a/config/project/fields/showImageCaption3--9b73b533-898f-4f77-a500-37ea0be0afc7.yaml +++ /dev/null @@ -1,12 +0,0 @@ -columnSuffix: null -handle: showImageCaption3 -instructions: null -name: 'Builder: Content - Image - Show Image Caption' -searchable: false -settings: - default: false - offLabel: null - onLabel: null -translationKeyFormat: null -translationMethod: none -type: craft\fields\Lightswitch diff --git a/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml b/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml deleted file mode 100644 index b51e242b..00000000 --- a/config/project/fields/snippetCollapsed--cf5b11e3-a6d6-430f-991f-9b78f9e4dd7f.yaml +++ /dev/null @@ -1,12 +0,0 @@ -columnSuffix: null -handle: snippetCollapsed -instructions: null -name: 'Builder: Content - Code - Snippet collapsed' -searchable: false -settings: - default: false - offLabel: 'False' - onLabel: 'True' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Lightswitch diff --git a/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml b/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml deleted file mode 100644 index a6fcd9b0..00000000 --- a/config/project/fields/snippetName--9cb7ea0d-8dd4-4298-ac6c-ab6c0efbe6ba.yaml +++ /dev/null @@ -1,16 +0,0 @@ -columnSuffix: null -handle: snippetName -instructions: null -name: 'Builder: Content - Code - Snippet Name' -searchable: false -settings: - byteLimit: null - charLimit: null - code: false - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal -translationKeyFormat: null -translationMethod: none -type: craft\fields\PlainText diff --git a/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml b/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml deleted file mode 100644 index dfafd66d..00000000 --- a/config/project/fields/sourceSubline--75b6f580-613f-42ae-aa23-2d5fb22ff3da.yaml +++ /dev/null @@ -1,16 +0,0 @@ -columnSuffix: null -handle: sourceSubline -instructions: null -name: 'Builder: Content - Quote - Source Subline' -searchable: true -settings: - byteLimit: null - charLimit: null - code: false - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal -translationKeyFormat: null -translationMethod: none -type: craft\fields\PlainText diff --git a/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml b/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml deleted file mode 100644 index 88d41c2e..00000000 --- a/config/project/fields/sourceUrl--e11e03f7-19c1-45c3-935e-1994a7ce7d26.yaml +++ /dev/null @@ -1,12 +0,0 @@ -columnSuffix: null -handle: sourceUrl -instructions: null -name: 'Builder: Content - Quote - Source Url' -searchable: false -settings: - maxLength: 255 - types: - - url -translationKeyFormat: null -translationMethod: none -type: craft\fields\Link diff --git a/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml b/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml deleted file mode 100644 index 5b5e40be..00000000 --- a/config/project/fields/spacerVariant--1b37c439-5a32-4e8f-8019-7f6a94593419.yaml +++ /dev/null @@ -1,65 +0,0 @@ -columnSuffix: null -handle: spacerVariant -instructions: null -name: 'Builder: Content - Spacer - Spacer Variant' -searchable: false -settings: - options: - - - __assoc__: - - - - label - - SM - - - - value - - sm - - - - default - - '1' - - - __assoc__: - - - - label - - MD - - - - value - - md - - - - default - - '' - - - __assoc__: - - - - label - - LG - - - - value - - lg - - - - default - - '' - - - __assoc__: - - - - label - - XL - - - - value - - xl - - - - default - - '' - - - __assoc__: - - - - label - - 2XL - - - - value - - 2xl - - - - default - - '' -translationKeyFormat: null -translationMethod: none -type: craft\fields\Dropdown diff --git a/config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml b/config/project/fields/spacing--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml similarity index 92% rename from config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml rename to config/project/fields/spacing--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml index cce273d2..600c6350 100644 --- a/config/project/fields/spaceBetweenBlocks--74b87138-1475-47c2-a9dd-63baa78dd5f5.yaml +++ b/config/project/fields/spacing--aa7883a4-2cce-4316-85f3-ec6ea59402ec.yaml @@ -1,7 +1,7 @@ columnSuffix: null -handle: spaceBetweenBlocks +handle: spacing instructions: null -name: 'Builder: Content - Section - Space Between Blocks' +name: Spacing searchable: false settings: options: @@ -15,7 +15,7 @@ settings: - zero - - default - - '' + - '1' - __assoc__: - @@ -48,7 +48,7 @@ settings: - lg - - default - - '1' + - '' - __assoc__: - diff --git a/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml b/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml deleted file mode 100644 index 2814596d..00000000 --- a/config/project/fields/text2--0a7dd988-f4db-40b7-8112-6f6fc7c4fb54.yaml +++ /dev/null @@ -1,21 +0,0 @@ -columnSuffix: null -handle: text2 -instructions: null -name: 'Builder: Content - Text : Image - Text' -searchable: true -settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default - createButtonLabel: null - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null -translationKeyFormat: null -translationMethod: none -type: craft\ckeditor\Field diff --git a/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml b/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml deleted file mode 100644 index c4cfbb00..00000000 --- a/config/project/fields/textCaption--aac37142-e533-49aa-8665-b8cc6360e98b.yaml +++ /dev/null @@ -1,18 +0,0 @@ -columnSuffix: mzlozibq -contentColumnType: text -handle: textCaption -instructions: null -name: 'Text: Caption' -searchable: true -settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: true - placeholder: null - uiMode: normal -translationKeyFormat: null -translationMethod: none -type: craft\fields\PlainText diff --git a/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml b/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml deleted file mode 100644 index be2b3294..00000000 --- a/config/project/fields/textDescription--45510f13-91d2-479f-9ff2-68dd09ab6643.yaml +++ /dev/null @@ -1,22 +0,0 @@ -columnSuffix: tfqyxyzy -contentColumnType: text -handle: textDescription -instructions: null -name: 'Text: Description' -searchable: true -settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: e8b10d27-be46-4108-9bf5-3a8711280165 # Rich Text Simple - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null -translationKeyFormat: null -translationMethod: none -type: craft\ckeditor\Field diff --git a/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml b/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml deleted file mode 100644 index b5dfcdc4..00000000 --- a/config/project/fields/textEditorDefault--63e3914d-ee70-44c2-9dc3-91551f47c54f.yaml +++ /dev/null @@ -1,22 +0,0 @@ -columnSuffix: qhlkmili -contentColumnType: text -handle: textEditorDefault -instructions: null -name: 'Text: Editor Default' -searchable: true -settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: 6f4a3e01-23de-4313-8109-00a430317d11 # Rich Text Default - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null -translationKeyFormat: null -translationMethod: none -type: craft\ckeditor\Field diff --git a/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml b/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml deleted file mode 100644 index 97f11860..00000000 --- a/config/project/fields/textEditorSimple--1c94bbf7-46b0-46e4-a699-b4eef42994a0.yaml +++ /dev/null @@ -1,22 +0,0 @@ -columnSuffix: qywrnmby -contentColumnType: text -handle: textEditorSimple -instructions: null -name: 'Text: Editor Simple' -searchable: true -settings: - availableTransforms: '' - availableVolumes: '' - ckeConfig: e8b10d27-be46-4108-9bf5-3a8711280165 # Rich Text Simple - columnType: text - defaultTransform: null - enableSourceEditingForNonAdmins: false - purifierConfig: null - purifyHtml: true - showUnpermittedFiles: false - showUnpermittedVolumes: false - showWordCount: true - wordLimit: null -translationKeyFormat: null -translationMethod: none -type: craft\ckeditor\Field diff --git a/config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml b/config/project/fields/textMulti--e884a8f9-92f0-48b3-a7e8-a6d95f47f6df.yaml similarity index 75% rename from config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml rename to config/project/fields/textMulti--e884a8f9-92f0-48b3-a7e8-a6d95f47f6df.yaml index afd45b08..e69b57e0 100644 --- a/config/project/fields/videoId--e9486b85-fd5e-40c8-851b-a6b0133e1f88.yaml +++ b/config/project/fields/textMulti--e884a8f9-92f0-48b3-a7e8-a6d95f47f6df.yaml @@ -1,14 +1,14 @@ columnSuffix: null -handle: videoId +handle: textMulti instructions: null -name: 'Builder: Content - Video - Video Id' +name: 'Text Multi' searchable: true settings: byteLimit: null charLimit: null code: false initialRows: 4 - multiline: false + multiline: true placeholder: null uiMode: normal translationKeyFormat: null diff --git a/config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml b/config/project/fields/textSingle--edfcb398-ef78-43ec-9434-d6405da2886e.yaml similarity index 82% rename from config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml rename to config/project/fields/textSingle--edfcb398-ef78-43ec-9434-d6405da2886e.yaml index 03019cd1..54b32a4e 100644 --- a/config/project/fields/source--c40b8b5e-0ccb-4d0d-9eee-bd24ac9209b0.yaml +++ b/config/project/fields/textSingle--edfcb398-ef78-43ec-9434-d6405da2886e.yaml @@ -1,7 +1,7 @@ columnSuffix: null -handle: source +handle: textSingle instructions: null -name: 'Builder: Content - Quote - Source' +name: 'Text Single' searchable: true settings: byteLimit: null diff --git a/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml b/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml deleted file mode 100644 index 6c8b0ed8..00000000 --- a/config/project/fields/textSource--419ebfbb-8723-48db-ae89-10adf52cdf11.yaml +++ /dev/null @@ -1,18 +0,0 @@ -columnSuffix: oexgxaui -contentColumnType: text -handle: textSource -instructions: null -name: 'Text: Source' -searchable: true -settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal -translationKeyFormat: null -translationMethod: none -type: craft\fields\PlainText diff --git a/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml b/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml deleted file mode 100644 index bc7a09d7..00000000 --- a/config/project/fields/textSourceUrl--8780cb03-c9ea-4482-ab85-3e541453b50f.yaml +++ /dev/null @@ -1,13 +0,0 @@ -columnSuffix: xmuynimp -contentColumnType: string(255) -handle: textSourceUrl -instructions: null -name: 'Text: Source Url' -searchable: true -settings: - maxLength: 255 - types: - - url -translationKeyFormat: null -translationMethod: none -type: craft\fields\Url diff --git a/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml b/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml deleted file mode 100644 index 7c09f15f..00000000 --- a/config/project/fields/textTitleOverwrite--1516a801-6243-468d-b8e2-479085458faa.yaml +++ /dev/null @@ -1,18 +0,0 @@ -columnSuffix: twbwiyps -contentColumnType: text -handle: textTitleOverwrite -instructions: null -name: 'Text: Title Overwrite' -searchable: true -settings: - byteLimit: null - charLimit: null - code: false - columnType: null - initialRows: 4 - multiline: false - placeholder: null - uiMode: normal -translationKeyFormat: null -translationMethod: none -type: craft\fields\PlainText diff --git a/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml b/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml index 47e3a488..90e0306c 100644 --- a/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml +++ b/config/project/fields/videoProvider--63bd200d-3882-4788-a8ba-528452521d6c.yaml @@ -1,8 +1,8 @@ columnSuffix: msfzxjxb handle: videoProvider instructions: null -name: 'Builder: Content - Video - Video Provider' -searchable: false +name: 'Video Provider' +searchable: true settings: options: - diff --git a/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml b/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml index e36207bf..3e7f85e8 100644 --- a/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml +++ b/config/project/navigation/navs/navigationMain--7eb1a718-0679-4fda-b656-9bfdf55a2025.yaml @@ -10,9 +10,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -21,6 +23,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -33,9 +36,12 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T19:47:47+00:00' elementCondition: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: verbb\navigation\fieldlayoutelements\NodeTypeElements diff --git a/config/project/project.yaml b/config/project/project.yaml index af9837a2..3b864560 100644 --- a/config/project/project.yaml +++ b/config/project/project.yaml @@ -1,4 +1,4 @@ -dateModified: 1725479328 +dateModified: 1725573188 elementSources: craft\elements\Asset: - @@ -41,75 +41,74 @@ email: command: '' transportType: craft\mail\transportadapters\Sendmail fs: - files: + assets: hasUrls: true - name: Files + name: Assets settings: - path: '@webroot/assets/files' + path: '@webroot/assets' type: craft\fs\Local - url: '@assetsUrl/files/' - images: - hasUrls: true - name: Images - settings: - path: '@webroot/assets/images' - type: craft\fs\Local - url: '@assetsUrl/images/' - templateImages: - hasUrls: true - name: 'Template Images' - settings: - path: '@webroot/assets/templateImages' - type: craft\fs\Local - url: '@assetsUrl/templateImages/' + url: '@assetsUrl' transforms: hasUrls: true name: Transforms settings: - path: '@webroot/assets/transforms' - type: craft\fs\Local - url: '@assetsUrl/transforms/' - users: - hasUrls: true - name: Users - settings: - path: '@webroot/assets/users' + path: '@webroot/transforms' type: craft\fs\Local - url: '@assetsUrl/users/' + url: '@transformsUrl' meta: __names__: - 0dc851b0-a289-4c50-be8d-0c055b270ee8: 'Asset: Entry Image' # Asset: Entry Image - 1c94bbf7-46b0-46e4-a699-b4eef42994a0: 'Text: Editor Simple' # Text: Editor Simple 2bc1feee-cfc8-48ee-bace-f101e7f41ac9: Default # Default - 2f642060-4792-41cb-a427-083aabeba231: 'Page Content Builder' # Page Content Builder + 2f642060-4792-41cb-a427-083aabeba231: '_Content Builder' # _Content Builder + 5af0a821-fa33-490a-9439-3193f439dd06: 'Rich Text Simple' # Rich Text Simple + 5c9f2ce6-f780-4ea6-a50c-539a252aec94: Images # Images 5d0f7961-203c-4008-a55a-6a7d35e7a37a: Home # Home 6c5fc0dd-cf56-48d8-8af8-88abe763b970: Files # Files - 6d94dcc4-6ec1-45b4-8c86-e53cee842b11: 'Page News' # Page News - 6f4a3e01-23de-4313-8109-00a430317d11: 'Rich Text Default' # Rich Text Default + 6d94dcc4-6ec1-45b4-8c86-e53cee842b11: '_List: News' # _List: News + 6f4a3e01-23de-4313-8109-00a430317d11: 'Rich Text' # Rich Text + 7b3b13e0-e20d-4d51-b0ae-832300f45234: Text # Text + 7b23a4a8-a6f8-43c4-b12c-326d089176ad: Video # Video 7eb1a718-0679-4fda-b656-9bfdf55a2025: 'Navigation Main' # Navigation Main - 8ced5be5-13b2-483f-8db9-aab9757aad21: Error # Error - 8d272b11-c1b4-4fc3-95c8-9d94fa513795: 'Text: Links' # Text: Links + 8ced5be5-13b2-483f-8db9-aab9757aad21: _Error # _Error 8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6: Users # Users - 63e3914d-ee70-44c2-9dc3-91551f47c54f: 'Text: Editor Default' # Text: Editor Default - 74eb36ae-7a26-4e7d-b454-990ec52617f0: 'Builder: Content' # Builder: Content + 9a8fffce-3c28-4326-8f7a-e31d2f6cc04b: 'Background Color' # Background Color + 9add7508-89cd-4b19-b8e5-f6173a4ec371: 'Rich Text' # Rich Text + 63bd200d-3882-4788-a8ba-528452521d6c: 'Video Provider' # Video Provider + 74c3cd4f-b565-4fb4-879e-72022774f93c: 'Images View Mode' # Images View Mode + 75f91f6f-fc53-49ad-bde0-365d6384b711: Content # Content 77c74b5c-6bbb-41a7-b166-c6b158a3cc7f: 'Template Images' # Template Images - 81d0ea50-f7e1-4eff-8138-2a06ffbfae86: Home # Home - 419ebfbb-8723-48db-ae89-10adf52cdf11: 'Text: Source' # Text: Source - 1516a801-6243-468d-b8e2-479085458faa: 'Text: Title Overwrite' # Text: Title Overwrite + 81d0ea50-f7e1-4eff-8138-2a06ffbfae86: _Home # _Home + 185fdccb-b242-4ff7-bf7f-a0f1e7e2987f: 'Link Style' # Link Style + 210de09a-f6c8-42dd-b4d6-c1c00e7d0b82: 'Image Position' # Image Position + 3497ad65-5e4c-43cb-b469-c3e4b3d80343: 'Text : Image' # Text : Image 3547e7b4-f3fb-4cf4-9d29-9f12dfa94594: News # News 8153a2df-373f-4aac-9a92-d52292c9f1aa: Baukasten # Baukasten - 8780cb03-c9ea-4482-ab85-3e541453b50f: 'Text: Source Url' # Text: Source Url 9005a655-4d9f-46b4-8c33-aadba34b6112: 'Social Sharing Facebook' # Social Sharing Facebook - 45510f13-91d2-479f-9ff2-68dd09ab6643: 'Text: Description' # Text: Description + 31947efb-fa8c-473c-9b01-bd36c8d70b68: 'Lightswitch OFF' # Lightswitch OFF + 75195ab8-b7c4-4dca-b807-ef8a042ef5a9: Images # Images + 87410aa7-3cd4-4961-9533-6d4f246113b5: 'Content Blocks' # Content Blocks + 92963d20-e763-4d2e-a367-9e543dfde522: Spacer # Spacer + 295738c1-951d-4b8c-b5cd-83d71a85d7e8: Image # Image 644167c0-ab2a-4f9d-9b2b-09f5a6556ef3: 'Public Schema' # Public Schema - aac37142-e533-49aa-8665-b8cc6360e98b: 'Text: Caption' # Text: Caption + 62883121-63a2-4e5c-a6f3-4855cf64df2c: 'Image Ratio' # Image Ratio + a3f76ec3-252e-4be6-8178-8f6b54acce19: Link # Link + aa7883a4-2cce-4316-85f3-ec6ea59402ec: Spacing # Spacing b0207f48-be48-49ab-a759-1ff51f232df3: Pages # Pages - d29e8520-ab62-4c8f-bda2-61868797c1ca: 'SEO: SEOmatic' # SEO: SEOmatic + b81cb731-dd6f-4055-9c6d-2f076a727a27: Image # Image + b3022ef5-7f1b-49d7-976d-5d5be501c1f1: Section # Section + baf82dc6-9e5a-4933-aa96-15eed58c888f: Links # Links + be45c3e2-5e9f-491e-a000-94d95c4fa20b: 'Code Snippet' # Code Snippet + c8a9d048-8e52-42a3-8e8a-44633a838802: Links # Links + d29e8520-ab62-4c8f-bda2-61868797c1ca: SEOmatic # SEOmatic + e01efe03-188f-486a-a2bd-b7c021ef142b: 'Lightswitch ON' # Lightswitch ON e8b10d27-be46-4108-9bf5-3a8711280165: 'Rich Text Simple' # Rich Text Simple + e884a8f9-92f0-48b3-a7e8-a6d95f47f6df: 'Text Multi' # Text Multi e5172a18-ed16-4229-89ca-fc0dc776597a: 'Error Pages' # Error Pages + edfcb398-ef78-43ec-9434-d6405da2886e: 'Text Single' # Text Single f1b38495-8096-48fa-9b78-0da345e3295c: Images # Images + f3e1a215-a60f-4d6a-8897-e1a80a40c6cd: Code # Code f4959e03-fec0-4b1c-887e-5301a5f66742: 'Social Sharing Twitter' # Social Sharing Twitter - fb701216-3e80-4e6d-99d4-2e5f70561e22: 'News Default' # News Default + fa02ff5a-1741-4417-8c8f-b72b954dd4fd: Quote # Quote + fb701216-3e80-4e6d-99d4-2e5f70561e22: '_News Detail' # _News Detail plugins: blitz: edition: standard @@ -228,11 +227,3 @@ system: retryDuration: null schemaVersion: 5.3.0.2 timeZone: Europe/Berlin -users: - allowPublicRegistration: false - deactivateByDefault: false - defaultGroup: '' - photoSubpath: '{username}' - photoVolumeUid: 8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6 # Users - requireEmailVerification: true - validateOnPublicRegistration: false diff --git a/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml b/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml index a742cd56..8f7be470 100644 --- a/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml +++ b/config/project/sections/errorPages--e5172a18-ed16-4229-89ca-fc0dc776597a.yaml @@ -1,8 +1,9 @@ defaultPlacement: end enableVersioning: false entryTypes: - - 8ced5be5-13b2-483f-8db9-aab9757aad21 # Error + - 8ced5be5-13b2-483f-8db9-aab9757aad21 # _Error handle: errorPages +maxAuthors: 1 name: 'Error Pages' previewTargets: - @@ -21,6 +22,6 @@ siteSettings: 8153a2df-373f-4aac-9a92-d52292c9f1aa: # Baukasten enabledByDefault: true hasUrls: true - template: _routerErrors + template: entryTypes/_routerViews.twig uriFormat: 'error/{slug}' type: channel diff --git a/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml b/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml index 3c887865..ba12e401 100644 --- a/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml +++ b/config/project/sections/home--5d0f7961-203c-4008-a55a-6a7d35e7a37a.yaml @@ -1,8 +1,9 @@ defaultPlacement: end enableVersioning: true entryTypes: - - 81d0ea50-f7e1-4eff-8138-2a06ffbfae86 # Home + - 81d0ea50-f7e1-4eff-8138-2a06ffbfae86 # _Home handle: home +maxAuthors: 1 name: Home previewTargets: - @@ -10,12 +11,12 @@ previewTargets: - - label - 'Primary entry page' - - - - urlFormat - - '{url}' - - refresh - '1' + - + - urlFormat + - '{url}' propagationMethod: all siteSettings: 8153a2df-373f-4aac-9a92-d52292c9f1aa: # Baukasten diff --git a/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml b/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml index 551c63f3..be2db0d2 100644 --- a/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml +++ b/config/project/sections/news--3547e7b4-f3fb-4cf4-9d29-9f12dfa94594.yaml @@ -1,8 +1,9 @@ defaultPlacement: end enableVersioning: true entryTypes: - - fb701216-3e80-4e6d-99d4-2e5f70561e22 # News Default + - fb701216-3e80-4e6d-99d4-2e5f70561e22 # _News Detail handle: news +maxAuthors: 1 name: News previewTargets: - @@ -21,6 +22,6 @@ siteSettings: 8153a2df-373f-4aac-9a92-d52292c9f1aa: # Baukasten enabledByDefault: true hasUrls: true - template: _routerEntries + template: entryTypes/_routerViews.twig uriFormat: 'news/{slug}' type: channel diff --git a/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml b/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml index 35b7468a..c13318e5 100644 --- a/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml +++ b/config/project/sections/pages--b0207f48-be48-49ab-a759-1ff51f232df3.yaml @@ -1,9 +1,10 @@ defaultPlacement: end enableVersioning: true entryTypes: - - 2f642060-4792-41cb-a427-083aabeba231 # Page Content Builder - - 6d94dcc4-6ec1-45b4-8c86-e53cee842b11 # Page News + - 2f642060-4792-41cb-a427-083aabeba231 # _Content Builder + - 6d94dcc4-6ec1-45b4-8c86-e53cee842b11 # _List: News handle: pages +maxAuthors: 1 name: Pages previewTargets: - @@ -22,7 +23,7 @@ siteSettings: 8153a2df-373f-4aac-9a92-d52292c9f1aa: # Baukasten enabledByDefault: true hasUrls: true - template: _routerEntries + template: entryTypes/_routerViews.twig uriFormat: '{parent.uri}/{slug}' structure: maxLevels: 3 diff --git a/config/project/users/fieldLayouts/d68cb5ea-4fb3-4661-8dc4-06d480a6990d.yaml b/config/project/users/fieldLayouts/d68cb5ea-4fb3-4661-8dc4-06d480a6990d.yaml new file mode 100644 index 00000000..d3305fb6 --- /dev/null +++ b/config/project/users/fieldLayouts/d68cb5ea-4fb3-4661-8dc4-06d480a6990d.yaml @@ -0,0 +1,130 @@ +tabs: + - + elementCondition: null + elements: + - + dateAdded: '2024-09-04T22:41:51+00:00' + elementCondition: null + id: null + includeInCards: false + instructions: null + label: null + orientation: null + providesThumbs: false + requirable: false + tip: null + type: craft\fieldlayoutelements\users\PhotoField + uid: f6b06fae-549d-4b55-9a3d-4579abba6792 + userCondition: null + warning: null + width: 50 + - + attribute: fullName + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T22:41:51+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: true + required: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\users\FullNameField + uid: 5111b90b-dcc6-4693-85ad-c7496b4125b2 + userCondition: null + warning: null + width: 50 + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T22:41:51+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\users\UsernameField + uid: aa74d74f-04c1-4751-b345-5ab3b44a8c09 + userCondition: null + warning: null + width: 50 + - + autocapitalize: true + autocomplete: false + autocorrect: true + class: null + dateAdded: '2024-09-04T22:41:51+00:00' + disabled: false + elementCondition: null + id: null + includeInCards: false + inputType: null + instructions: null + label: null + max: null + min: null + name: null + orientation: null + placeholder: null + providesThumbs: false + readonly: false + requirable: false + size: null + step: null + tip: null + title: null + type: craft\fieldlayoutelements\users\EmailField + uid: 35c1ebee-ce7c-45ba-984d-9761c5079039 + userCondition: null + width: 50 + - + dateAdded: '2024-09-04T22:45:07+00:00' + elementCondition: null + fieldUid: 6f921e8c-e284-45b5-b4a8-850b384649c0 + handle: null + includeInCards: false + instructions: null + label: null + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 3ccd6e62-366c-4de3-93db-327689e9aa3c + userCondition: null + warning: null + width: 100 + name: Content + uid: bd7982fb-78f6-4c0c-9942-4d20add61eae + userCondition: null diff --git a/config/project/users/users.yaml b/config/project/users/users.yaml new file mode 100644 index 00000000..e024a7e1 --- /dev/null +++ b/config/project/users/users.yaml @@ -0,0 +1,8 @@ +allowPublicRegistration: false +deactivateByDefault: false +defaultGroup: '' +photoSubpath: '{username}-{id}' +photoVolumeUid: 8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6 # Users +require2fa: false +requireEmailVerification: true +validateOnPublicRegistration: false diff --git a/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml b/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml index ec6a8025..6be52537 100644 --- a/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml +++ b/config/project/volumes/files--6c5fc0dd-cf56-48d8-8af8-88abe763b970.yaml @@ -1,3 +1,5 @@ +altTranslationKeyFormat: null +altTranslationMethod: none fieldLayouts: 2ffc1297-6481-42bf-8cba-e3bc0fde84c2: tabs: @@ -9,9 +11,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +24,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,37 +37,78 @@ fieldLayouts: warning: null width: 50 - + dateAdded: '2024-09-04T22:33:47+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: b4d2577f-6732-42fd-ac37-ac7b1c8dd18a + uid: d2923525-110f-4683-87dc-42c95d3b693a userCondition: null warning: null - width: 50 + width: 100 + - + dateAdded: '2024-09-04T22:34:56+00:00' + elementCondition: null + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: caption + includeInCards: false + instructions: null + label: Caption + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 2477b056-b17c-4169-b4b4-a2695bec998b + userCondition: null + warning: null + width: 100 + - + dateAdded: '2024-09-05T21:52:28+00:00' + elementCondition: null + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: source + includeInCards: false + instructions: null + label: Source + providesThumbs: false + required: false + tip: null + type: craft\fieldlayoutelements\CustomField + uid: 016b74f1-44be-413c-a68b-c5107b149ad5 + userCondition: null + warning: null + width: 100 - + dateAdded: '2024-09-05T21:52:28+00:00' elementCondition: null - fieldUid: aac37142-e533-49aa-8665-b8cc6360e98b # Text: Caption + fieldUid: a3f76ec3-252e-4be6-8178-8f6b54acce19 # Link + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 97b047e1-8f88-4f78-94bb-7473324b0235 + uid: 5857c49d-820a-4b3e-8192-09d5a808dbe9 userCondition: null warning: null width: 100 name: Content uid: 03e36f1a-9425-43d4-9fea-59f3f9190e6e userCondition: null -fs: files +fs: assets handle: files name: Files sortOrder: 1 +subpath: files titleTranslationKeyFormat: null titleTranslationMethod: site -transformFs: '' -transformSubpath: '' +transformFs: transforms +transformSubpath: craft/files diff --git a/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml b/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml index 16e29fa8..b520db00 100644 --- a/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml +++ b/config/project/volumes/images--f1b38495-8096-48fa-9b78-0da345e3295c.yaml @@ -1,3 +1,5 @@ +altTranslationKeyFormat: null +altTranslationMethod: none fieldLayouts: 0a4045e3-76db-4cd4-8347-e2eab25d0bd1: tabs: @@ -9,9 +11,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +24,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,29 +37,36 @@ fieldLayouts: warning: null width: 50 - + dateAdded: '2024-09-04T22:37:25+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 7c0fd1ef-397e-44f0-8712-e185c9f4d918 + uid: dd6bed42-a944-49bc-86f0-65be94f2b3af userCondition: null warning: null - width: 50 + width: 100 - attribute: alt class: null cols: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: true instructions: null label: null name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: true required: false @@ -67,49 +79,62 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T22:37:25+00:00' elementCondition: null - fieldUid: aac37142-e533-49aa-8665-b8cc6360e98b # Text: Caption + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: caption + includeInCards: false instructions: null - label: null + label: Caption + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: dc9d4562-974b-4af0-b234-d24d1162cdfa + uid: 769bfcb9-d78c-4a0a-9d00-132942489632 userCondition: null warning: null width: 100 - + dateAdded: '2024-09-05T21:52:46+00:00' elementCondition: null - fieldUid: 419ebfbb-8723-48db-ae89-10adf52cdf11 # Text: Source + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: source + includeInCards: false instructions: null - label: null + label: Source + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: f6dd6ce4-f0ce-4c5f-99fe-c1bf7d423b60 + uid: 25032eaf-a68e-4bae-a892-52e4b1ad8d6c userCondition: null warning: null - width: 50 + width: 100 - + dateAdded: '2024-09-04T22:37:25+00:00' elementCondition: null - fieldUid: 8780cb03-c9ea-4482-ab85-3e541453b50f # Text: Source Url + fieldUid: a3f76ec3-252e-4be6-8178-8f6b54acce19 # Link + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 965a2160-44cc-416d-a8dd-b648efa3ca13 + uid: 0ba2f1b5-41e1-4a8b-b55a-e6a4226242fb userCondition: null warning: null - width: 50 + width: 100 name: Content uid: 17490b94-d86a-40c5-bc48-932d8c81319f userCondition: null -fs: images +fs: assets handle: images name: Images sortOrder: 2 +subpath: images titleTranslationKeyFormat: null titleTranslationMethod: site transformFs: transforms -transformSubpath: craft-transforms/images +transformSubpath: craft/images diff --git a/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml b/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml index b65f71bc..0aed8640 100644 --- a/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml +++ b/config/project/volumes/templateImages--77c74b5c-6bbb-41a7-b166-c6b158a3cc7f.yaml @@ -1,3 +1,5 @@ +altTranslationKeyFormat: null +altTranslationMethod: none fieldLayouts: 38d718c0-a8fd-4a1e-8136-9daf72525bd7: tabs: @@ -9,9 +11,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +24,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,29 +37,36 @@ fieldLayouts: warning: null width: 50 - + dateAdded: '2024-09-04T22:39:04+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: d0bd6183-760a-4b3a-a0dc-890d9372af0c + uid: 0c5c6086-e8b7-4294-940f-368cb4f4b881 userCondition: null warning: null - width: 50 + width: 100 - attribute: alt class: null cols: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: true instructions: null label: null name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: true required: false @@ -67,49 +79,62 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T22:39:04+00:00' elementCondition: null - fieldUid: aac37142-e533-49aa-8665-b8cc6360e98b # Text: Caption + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: caption + includeInCards: false instructions: null - label: null + label: Caption + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 4e12b584-9c3e-4c85-8577-6ca6ca65f5f6 + uid: 9b6aba33-b636-4d64-b2ee-16e3ac6079da userCondition: null warning: null width: 100 - + dateAdded: '2024-09-05T21:53:08+00:00' elementCondition: null - fieldUid: 419ebfbb-8723-48db-ae89-10adf52cdf11 # Text: Source + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: source + includeInCards: false instructions: null - label: null + label: Source + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 8a8109f1-1145-4234-bf4d-4506458a7b50 + uid: b71ac302-2d59-4f6e-85e6-95e062a42bbb userCondition: null warning: null - width: 50 + width: 100 - + dateAdded: '2024-09-04T22:39:04+00:00' elementCondition: null - fieldUid: 8780cb03-c9ea-4482-ab85-3e541453b50f # Text: Source Url + fieldUid: a3f76ec3-252e-4be6-8178-8f6b54acce19 # Link + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: dfa095c2-b25d-4775-b3c6-cd2b72777b21 + uid: 0ef7b879-c203-4abb-b9a6-bf34314d6115 userCondition: null warning: null - width: 50 + width: 100 name: Content uid: a335ade1-e2fd-4066-8c0c-764bb223afa4 userCondition: null -fs: templateImages +fs: assets handle: templateImages name: 'Template Images' sortOrder: 3 +subpath: template-images titleTranslationKeyFormat: null titleTranslationMethod: site transformFs: transforms -transformSubpath: craft-transforms/templateImages +transformSubpath: craft/template-images diff --git a/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml b/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml index 6d58bc03..a9405d3b 100644 --- a/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml +++ b/config/project/volumes/users--8dda1580-81a2-49f5-9dd2-ed1e2eb03fc6.yaml @@ -1,3 +1,5 @@ +altTranslationKeyFormat: null +altTranslationMethod: none fieldLayouts: 1c050c97-46a7-44da-8b07-841009d282f4: tabs: @@ -9,9 +11,11 @@ fieldLayouts: autocomplete: false autocorrect: true class: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: false inputType: null instructions: null label: null @@ -20,6 +24,7 @@ fieldLayouts: name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: false size: null @@ -32,29 +37,36 @@ fieldLayouts: warning: null width: 50 - + dateAdded: '2024-09-04T22:40:12+00:00' elementCondition: null - fieldUid: 1516a801-6243-468d-b8e2-479085458faa # Text: Title Overwrite + fieldUid: edfcb398-ef78-43ec-9434-d6405da2886e # Text Single + handle: customTitle + includeInCards: true instructions: null - label: null + label: 'Custom Title' + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: f9ac3637-99ff-4db2-8b7a-79c4415f181c + uid: 04b3690b-c1ac-4adb-a336-aafdb037d243 userCondition: null warning: null - width: 50 + width: 100 - attribute: alt class: null cols: null + dateAdded: '2024-09-04T19:47:47+00:00' disabled: false elementCondition: null id: null + includeInCards: true instructions: null label: null name: null orientation: null placeholder: null + providesThumbs: false readonly: false requirable: true required: false @@ -67,49 +79,46 @@ fieldLayouts: warning: null width: 100 - + dateAdded: '2024-09-04T22:40:12+00:00' elementCondition: null - fieldUid: aac37142-e533-49aa-8665-b8cc6360e98b # Text: Caption + fieldUid: 5af0a821-fa33-490a-9439-3193f439dd06 # Rich Text Simple + handle: caption + includeInCards: false instructions: null - label: null + label: Caption + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: 3cc5b53e-0cd2-49da-8c61-cc39d3cbb1c0 + uid: f22df577-47b2-4226-92eb-175d23a6af2b userCondition: null warning: null width: 100 - + dateAdded: '2024-09-04T22:40:12+00:00' elementCondition: null - fieldUid: 419ebfbb-8723-48db-ae89-10adf52cdf11 # Text: Source - instructions: null - label: null - required: false - tip: null - type: craft\fieldlayoutelements\CustomField - uid: e0324cf8-4bb0-4eae-ae10-820e7fbb69a2 - userCondition: null - warning: null - width: 50 - - - elementCondition: null - fieldUid: 8780cb03-c9ea-4482-ab85-3e541453b50f # Text: Source Url + fieldUid: a3f76ec3-252e-4be6-8178-8f6b54acce19 # Link + handle: null + includeInCards: false instructions: null label: null + providesThumbs: false required: false tip: null type: craft\fieldlayoutelements\CustomField - uid: ceafbea2-4ca5-409e-91b4-8b1bfbbae6ea + uid: e25489fd-2750-4bf0-b0b4-94ef99377eb1 userCondition: null warning: null width: 50 name: Content uid: 7fa2cead-3f59-4c5b-8562-8ee83d4acf7b userCondition: null -fs: users +fs: assets handle: users name: Users sortOrder: 4 +subpath: users titleTranslationKeyFormat: null titleTranslationMethod: site transformFs: transforms -transformSubpath: craft-transforms/users +transformSubpath: craft/users diff --git a/migrations/m240904_201746_merge_image2_into_image.php b/migrations/m240904_201746_merge_image2_into_image.php new file mode 100644 index 00000000..07f54323 --- /dev/null +++ b/migrations/m240904_201746_merge_image2_into_image.php @@ -0,0 +1,15 @@ +>> Render block app #} -{% block blockApp %} - - - - {# >>> Render block head meta #} - {{ include("_boilerplate/_partials/head-meta.twig", {}, withContext = true) }} - {% block blockHeadMeta %} - - {% endblock %} - - {% block blockHeadFavicons %} - - {% endblock %} - - {# >>> Render block head js #} - {{ include("_boilerplate/_partials/head-js.twig", {}, withContext = true) }} - {% block blockHeadJs %} - - {% endblock %} - - {# >>> Render block head fonts #} - {% block blockHeadFonts %} - - {% endblock %} - - {# >>> Render block head css #} - {% block blockHeadCss %} - - {% endblock %} - - {{ - include( - "_boilerplate/_partials/head-critical-css.twig", - { - criticalPath: templatePath|default("") - }, - withContext = true - ) - }} - - {# >>> Include RSS feeds #} - {{ include("_boilerplate/_partials/head-rss-feeds.twig", {}, withContext = true) }} - - {# >>> Render block app head #} - {% block blockAppHead %} - - {% endblock %} - - - - {# >>> Render block app body #} - {% block blockAppBody %} - - {% endblock %} - - {# >>> Render block app footer #} - {{ include("_boilerplate/_partials/footer-global.twig", {}, withContext = true) }} - {% block blockAppFooter %} - - {% endblock %} - - -{% endblock %} +{% do _globals.set('prefetchUrls', [alias("@assetsUrl")]) %} +{% do _globals.set('baseUrl', alias("@web") ~ "/") %} + + + + + {# >>> Render block head meta #} + {{ include("_boilerplate/_partials/head-meta.twig", {}, withContext = true) }} + {% block blockHeadMeta %} + + {% endblock %} + + {% block blockHeadFavicons %} + + {% endblock %} + + {# >>> Render block head js #} + {{ include("_boilerplate/_partials/head-js.twig", {}, withContext = true) }} + {% block blockHeadJs %} + + {% endblock %} + + {# >>> Render block head fonts #} + {% block blockHeadFonts %} + + {% endblock %} + + {# >>> Render block head css #} + {% block blockHeadCss %} + + {% endblock %} + + {{ + include( + "_boilerplate/_partials/head-critical-css.twig", + { + criticalPath: templatePath|default("") + }, + withContext = true + ) + }} + + {# >>> Include RSS feeds #} + {{ include("_boilerplate/_partials/head-rss-feeds.twig", {}, withContext = true) }} + + {# >>> Render block app head #} + {% block blockAppHead %} + + {% endblock %} + + + {# >>> Render block app body #} + {% block blockAppBody %} + + {% endblock %} + + {# >>> Render block app footer #} + {{ include("_boilerplate/_partials/footer-global.twig", {}, withContext = true) }} + {% block blockAppFooter %} + + {% endblock %} + + diff --git a/templates/_boilerplate/_layouts/layout-global-variables.twig b/templates/_boilerplate/_layouts/layout-global-variables.twig deleted file mode 100644 index 5b63da89..00000000 --- a/templates/_boilerplate/_layouts/layout-global-variables.twig +++ /dev/null @@ -1,21 +0,0 @@ -{# >>> Prefetch links #} -{% set prefetchUrls = [alias("@assetsUrl")] %} - -{# >>> Glabal variables #} -{% set baseUrl = alias("@web") ~ "/" %} -{% set eagerLoading = { - builderContent: [ - "builderContent", - "builderContent.blockImage:image", - "builderContent.blockImageGallery:images", - "builderContent.blockImageGrid:images", - "builderContent.blockImageGridCalculated:images", - "builderContent.blockImageSlider:images", - "builderContent.blockTextImage:image" - ] -} %} - -{# >>> Render block App #} -{% block blockApp %} - -{% endblock %} diff --git a/templates/_boilerplate/_partials/head-meta.twig b/templates/_boilerplate/_partials/head-meta.twig index fe3a4719..a42b5330 100755 --- a/templates/_boilerplate/_partials/head-meta.twig +++ b/templates/_boilerplate/_partials/head-meta.twig @@ -5,7 +5,7 @@ {# -- Prefetch & preconnect headers and links -- #} {% set headerLink = "Link: " %} -{% for url in prefetchUrls %} +{% for url in _globals.get('prefetchUrls') %} {% set headerLink = headerLink ~ "<#{url}>; rel=dns-prefetch;," %} {% set headerLink = headerLink ~ "<#{url}>; rel=preconnect; crossorigin;" %} {% if not loop.last %} diff --git a/templates/_builders/_blocks.twig b/templates/_builders/_blocks.twig deleted file mode 100644 index 9cb953e0..00000000 --- a/templates/_builders/_blocks.twig +++ /dev/null @@ -1,7 +0,0 @@ -{{ include('_builders/blocks/' ~ block.type.handle ~ '.twig', { - data: { - block: block ??? null, - blockNumber: blockNumber ??? null, - closeCurrentSection: closeCurrentSection ??? 1 - } -}, withContext = false) }} diff --git a/templates/_builders/_builderContent.twig b/templates/_builders/_builderContent.twig index ea4a9fce..2f173f80 100644 --- a/templates/_builders/_builderContent.twig +++ b/templates/_builders/_builderContent.twig @@ -1,8 +1,8 @@ {# >>> Comp Defaults #} {% set compDefaults = { data: { - name: 'c-contentBuilder', - contentBuilder: null, + name: 'c-builderContent', + builderContent: null, }, classes: { root: '', @@ -16,36 +16,12 @@ classes: classes is defined and classes is iterable ? compDefaults.classes | merge(classes) : compDefaults.classes, } %} -{% if props.data.contentBuilder %} +{% if props.data.builderContent %}
- {% for block in props.data.contentBuilder %} - - {# Create Section if first block is not a section #} - {% if loop.first and block.type.handle != 'blockSection' %} - - {# Create Section #} - {{ include('_builders/blocks/blockSection.twig', { - block: block ??? null, - closeCurrentSection: 0 - }, withContext = false) }} - - {# Create First Block #} - {{ include('_builders/_blocks.twig', { - block: block ??? null, - blockNumber: loop.index, - closeCurrentSection: 0 - }, withContext = false) }} - - {% else %} - {# Create block elements and close section if it's loop.first #} - {{ include('_builders/_blocks.twig', { - block: block ??? null, - blockNumber: loop.index, - closeCurrentSection: loop.first ? 0 : 1, - }, withContext = false) }} - {% endif %} + {% for block in props.data.builderContent %} + {{ include('entryTypes/_routerBlocks.twig', { + block: block ??? null, + }, withContext = false) }} {% endfor %} - {# Close Last Section #} -
{% endif %} diff --git a/templates/_builders/blocks/blockSection.twig b/templates/_builders/blocks/blockSection.twig deleted file mode 100644 index 986f9e32..00000000 --- a/templates/_builders/blocks/blockSection.twig +++ /dev/null @@ -1,80 +0,0 @@ -{# >>> Comp Defaults #} -{% set compDefaults = { - data: { - name: 'c-blockSection', - block: null, - blockNumber: null, - closeCurrentSection: null - }, - classes: { - root: '', - custom: '', - }, -} %} - -{# >>> Merge data / classes / variants (optional) #} -{% set props = { - data: data is defined and data is iterable ? compDefaults.data | merge(data) : compDefaults.data, - classes: classes is defined and classes is iterable ? compDefaults.classes | merge(classes) : compDefaults.classes, -} %} - -{% if props.data.block ??? null %} - {% if props.data.closeCurrentSection ??? null %} - - {% endif %} - - {# >>> Set BG Color #} - {% switch props.data.block.sectionBackgroundColor %} - {% case "light-gray" %} - {% set sectionBGColorClass = 'bg-gray-100' %} - - {% default %} - {% set sectionBGColorClass = 'transparent' %} - {% endswitch %} - - {# >>> Set Padding #} - {% switch props.data.block.sectionPaddingVertical %} - {% case "sm" %} - {% set sectionPaddingVerticalClass = 'py-2 md:py-4' %} - - {% case "md" %} - {% set sectionPaddingVerticalClass = 'py-4 md:py-8' %} - - {% case "lg" %} - {% set sectionPaddingVerticalClass = 'py-8 md:py-16' %} - - {% case "xl" %} - {% set sectionPaddingVerticalClass = 'py-16 md:py-32' %} - - {% case "2xl" %} - {% set sectionPaddingVerticalClass = 'py-32 md:py-64' %} - - {% default %} - {% set sectionPaddingVerticalClass = '' %} - {% endswitch %} - - {# >>> Set Space Between #} - {% switch props.data.block.spaceBetweenBlocks %} - {% case "sm" %} - {% set sectionSpaceBetweenClass = 'space-y-2 md:space-y-4' %} - - {% case "md" %} - {% set sectionSpaceBetweenClass = 'space-y-4 md:space-y-8' %} - - {% case "lg" %} - {% set sectionSpaceBetweenClass = 'space-y-8 md:space-y-16' %} - - {% case "xl" %} - {% set sectionSpaceBetweenClass = 'space-y-16 md:space-y-32' %} - - {% case "2xl" %} - {% set sectionSpaceBetweenClass = 'space-y-32 md:space-y-64' %} - - {% default %} - {% set sectionSpaceBetweenClass = 'space-y-8 md:space-y-16' %} - {% endswitch %} - - -
- {% endif %} diff --git a/templates/_components-sprig/paginateNews.twig b/templates/_components-sprig/paginateNews.twig index 823b77c5..4decbfca 100644 --- a/templates/_components-sprig/paginateNews.twig +++ b/templates/_components-sprig/paginateNews.twig @@ -1,7 +1,7 @@ {# Sets a default value if not defined by `s-val:*` on the clicked element #} {% set page = page ??? craft.app.request.pageNum ??? 1 %} -{% cache using key craft.app.request.pathInfo ~ 'overviewNews-' ~ section ~ '-' ~ page %} +{% cache using key craft.app.request.pathInfo ~ 'listNews-' ~ section ~ '-' ~ page %} {% set entryQuery = craft.entries .section(section) .with(['assetEntryImage']) diff --git a/templates/_components/button/button.twig b/templates/_components/button/button.twig index 373dd1cd..229bc388 100644 --- a/templates/_components/button/button.twig +++ b/templates/_components/button/button.twig @@ -17,7 +17,8 @@ root: 'a11y-keyboard-focus items-center font-bold', custom: '', display: 'inline-flex', - rounded: 'rounded-md' + rounded: 'rounded-md', + enlargeClickArea: 'enlarge-click-area' }, variants: { style: { @@ -25,7 +26,6 @@ secondary: 'text-secondary-900 border border-transparent bg-secondary-300 hover:bg-secondary-400 group-hover:bg-secondary-400', outlined: 'text-gray-900 border border-transparent border-gray-200 bg-white hover:bg-gray-50 group-hover:bg-gray-50', overflowNav: 'text-gray-900 border-b-2 border-b-transparent hover:border-b-gray-900 !rounded-none', - enlargeClickArea: 'enlarge-click-area' }, size: { sm: 'px-2.5 py-1.5 gap-2 text-xs', @@ -48,7 +48,7 @@ {% set attr = props.data.url ? 'href=' ~ props.data.url : 'type=' ~ props.data.buttonType %} <{{ tag }} {{ attr }} {{ props.data.url and props.data.target ? 'target=' ~ props.data.target : '' }} - class="{{ props.data.name }} {{ props.classes.root }} {{ props.classes.rounded }} {{ props.classes.display }} {{ props.variants.style[props.data.variantStyle] }} {{ props.variants.size[props.data.variantSize] }} {{ props.classes.custom }} {{ props.data.enlargeClickArea ? props.classes.enlargeClickArea : '' }}"> + class="{{ props.data.name }} {{ props.classes.root }} {{ props.classes.rounded }} {{ props.classes.display }} {{ props.variants.style[props.data.variantStyle] }} {{ props.variants.size[props.data.variantSize] }} {{ props.classes.custom }} {{ props.data.enlargeClickArea ? props.classes.enlargeClickArea : '' }}"> {# >>> If icon exists #} {% if props.data.icon %} diff --git a/templates/_components/caption/caption.twig b/templates/_components/caption/caption.twig index ef3511de..0c4a05c4 100644 --- a/templates/_components/caption/caption.twig +++ b/templates/_components/caption/caption.twig @@ -29,9 +29,12 @@ {% endif %} {# Caption #} + {{ include('_components/text/richText.twig', { + data: { + html: props.data.block.text ??? null, + }, + }, withContext = false) }}

- {{ props.data.text | nl2br }} - {% if props.data.source and props.data.sourceUrl %} — {{ props.data.source }} {% elseif props.data.source ?? null %} diff --git a/templates/_components/card/cardNews.twig b/templates/_components/card/cardNews.twig index b34ecccd..7113045d 100644 --- a/templates/_components/card/cardNews.twig +++ b/templates/_components/card/cardNews.twig @@ -66,9 +66,8 @@ {# >>> Render text #} {% if props.data.text ??? null %}

- {{ include('_components/text/text.twig', { + {{ include('_components/text/plainText.twig', { data: { - richText: false, text: props.data.text ??? null, } }, withContext = false) }} diff --git a/templates/_components/divider/divider.twig b/templates/_components/divider/divider.twig deleted file mode 100644 index d63dc229..00000000 --- a/templates/_components/divider/divider.twig +++ /dev/null @@ -1,39 +0,0 @@ -{# >>> Comp Defaults #} -{% set compDefaults = { - data: { - name: "c-divider", - variantSize: "sm", - label: null - }, - classes: { - root: "flex items-center relative", - hr: "border-0 bg-gray-200 h-px w-full absolute top-1/2", - label: "text-xs bg-white relative z-10 pr-4 text-gray-700", - custom: "" - }, - variants: { - size: { - sm: "mt-2 mb-2", - md: "mt-4 mb-4", - lg: "mt-8 mb-8", - xl: "mt-16 mb-16", - "2xl": "mt-32 mb-32" - } - } -} %} - -{# >>> Merge data / classes / variants (optional) #} -{% set props = { - data: data is defined and data is iterable ? compDefaults.data|merge(data) : compDefaults.data, - classes: classes is defined and classes is iterable ? compDefaults.classes|merge(classes) : compDefaults.classes, - variants: compDefaults.variants -} %} - -

-
- {% if props.data.label %} - {{ props.data.label }} - {% endif %} -
diff --git a/templates/_components/gallery/images.twig b/templates/_components/gallery/images.twig index 2336ccc5..185539b1 100644 --- a/templates/_components/gallery/images.twig +++ b/templates/_components/gallery/images.twig @@ -29,10 +29,10 @@ {% if props.data.images ??? null %} {% set dynamicData = [] %} {% for image in props.data.images %} - {% set title = image.textTitleOverwrite ??? '' %} + {% set title = image.customTitle ??? '' %} {% set caption = '' %} - {% if image.textCaption %} - {% set caption = image.textCaption %} + {% if image.caption %} + {% set caption = image.caption %} {% endif %} {% set dynamicData = dynamicData|merge([{ "src": image.url, diff --git a/templates/_components/grid/images.twig b/templates/_components/grid/images.twig index 28e9aa3f..896c5916 100644 --- a/templates/_components/grid/images.twig +++ b/templates/_components/grid/images.twig @@ -6,7 +6,7 @@ lazy: true, caption: null, aspectRatio: 'aspect-landscape', - variantColumns: 2, + columns: 2, }, classes: { root: 'grid grid-cols-1 gap-4 md:gap-8', @@ -30,7 +30,7 @@ {# Modul #} {% if props.data.images ??? null %} -
+
{% for image in props.data.images %} {{ include('_components/image/image.twig', { data: { diff --git a/templates/_components/image/image.twig b/templates/_components/image/image.twig index 71948eca..8e547dcf 100644 --- a/templates/_components/image/image.twig +++ b/templates/_components/image/image.twig @@ -106,8 +106,8 @@ Art Direction {# Focal Point / Title / URL #} {% set title = props.data.image.title %} - {% if props.data.image.textTitleOverwrite %} - {% set title = props.data.image.textTitleOverwrite %} + {% if props.data.image.customTitle %} + {% set title = props.data.image.customTitle %} {% endif %} @@ -122,7 +122,7 @@ Art Direction {# Dominant Color / Placeholder #} {% set dominantColor = craft.app.config.custom.dominantColor ??? 'transparent' %} {% if props.data.calcDominantColor - and not craft.app.config.general.custom.localDevPerformance + and not craft.app.config.custom.localDevPerformance and isTranformable and transforms is defined and extension != 'png' %} @@ -134,10 +134,10 @@ Art Direction {% set caption = null %} {% if props.data.caption %} {% set caption = { - 'title': props.data.image.textTitleOve ??? null, - 'text': props.data.image.textCaption ??? null, - 'source': props.data.image.textSource ??? null, - 'sourceUrl': props.data.image.textSourceUrl ??? null, + 'title': props.data.image.customTitle ??? null, + 'text': props.data.image.caption ??? null, + 'source': props.data.image.source ??? null, + 'sourceUrl': props.data.image.hyperLink.url ??? null, } %} {% endif %} diff --git a/templates/_components/spacer/spacer.twig b/templates/_components/spacer/spacer.twig index 22f88984..599a6de1 100644 --- a/templates/_components/spacer/spacer.twig +++ b/templates/_components/spacer/spacer.twig @@ -2,7 +2,7 @@ {% set compDefaults = { data: { name: "c-spacer", - variantSize: "sm", + height: "sm", visible: false }, classes: { @@ -28,7 +28,7 @@ variants: compDefaults.variants } %} -
props.data.noLazyImageLoadingCount } diff --git a/templates/_components/text/code.twig b/templates/_components/text/code.twig index 35f3b517..94104c7f 100644 --- a/templates/_components/text/code.twig +++ b/templates/_components/text/code.twig @@ -1,9 +1,10 @@ {# Set Defaults #} + {% set compDefaults = { data: { name: 'c-code', - snippet: null, - snippetName: '…', + codeSnippet: null, + codeSnippetName: '…', language: 'txt', collapsed: true, textShow: 'translate.component.code.textShow' | t, @@ -30,7 +31,7 @@ } %} {# Modul #} -{% if props.data.snippet %} +{% if props.data.codeSnippet %}
- {{- props.data.snippet -}} + {{- props.data.codeSnippet -}}
- {{ props.data.snippetName }} + {{ props.data.codeSnippetName }}