From f48dc2416212f829b350b3d4cd37b6ef75e7d66e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2024 15:12:59 +0000 Subject: [PATCH 01/29] Bump axios in /tests/codeception/_data/themes/custom_twentytwenty Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.7.7. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.6.5...v1.7.7) --- updated-dependencies: - dependency-name: axios dependency-type: indirect ... Signed-off-by: dependabot[bot] --- .../_data/themes/custom_twentytwenty/package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json b/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json index 83445133..d4e75fa5 100644 --- a/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json +++ b/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json @@ -4111,12 +4111,12 @@ "dev": true }, "axios": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz", - "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==", + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", "dev": true, "requires": { - "follow-redirects": "^1.15.4", + "follow-redirects": "^1.15.6", "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } From 4679a1148059591f82790ca26d201297f512d162 Mon Sep 17 00:00:00 2001 From: dvlop Date: Mon, 21 Oct 2024 13:20:03 +0300 Subject: [PATCH 02/29] Prevented mid-word cuts for readability Prevented cutting words in the middle when limiting the text length. Instead of a hard character limit, the string is now truncated at the first space after reaching the limit, ensuring a more natural text display. --- src/core/Classes/Utils.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/core/Classes/Utils.php b/src/core/Classes/Utils.php index 70e26492..7849f958 100644 --- a/src/core/Classes/Utils.php +++ b/src/core/Classes/Utils.php @@ -946,10 +946,8 @@ public static function ppma_article_excerpt($limit, $source = null, $echo = fals $excerpt = strip_shortcodes($excerpt); $excerpt = wp_strip_all_tags($excerpt); - if (strlen($excerpt) > $limit) { - // truncate excerpt - $excerpt = substr($excerpt, 0, $limit); - } + // If the string length exceeds $limit, we look for the nearest space + $excerpt = strlen($excerpt) > $limit ? substr($excerpt, 0, strpos($excerpt . ' ', ' ', $limit)) : $excerpt; if (!empty($author_post_excerpt_ellipsis) && !empty(trim($excerpt))) { $excerpt .= $author_post_excerpt_ellipsis; From 3522d34b0aecf7ebc4cd8c8db1af199673feab43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 20:37:02 +0000 Subject: [PATCH 03/29] Bump symfony/process from 5.4.40 to 5.4.46 Bumps [symfony/process](https://github.com/symfony/process) from 5.4.40 to 5.4.46. - [Release notes](https://github.com/symfony/process/releases) - [Changelog](https://github.com/symfony/process/blob/7.1/CHANGELOG.md) - [Commits](https://github.com/symfony/process/compare/v5.4.40...v5.4.46) --- updated-dependencies: - dependency-name: symfony/process dependency-type: indirect ... Signed-off-by: dependabot[bot] --- composer.lock | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/composer.lock b/composer.lock index 114c7913..da50318e 100644 --- a/composer.lock +++ b/composer.lock @@ -8081,20 +8081,20 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433", - "reference": "77fa7995ac1b21ab60769b7323d600a991a90433", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { @@ -8141,7 +8141,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -8157,7 +8157,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php81", @@ -8237,16 +8237,16 @@ }, { "name": "symfony/process", - "version": "v5.4.40", + "version": "v5.4.46", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046" + "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/deedcb3bb4669cae2148bc920eafd2b16dc7c046", - "reference": "deedcb3bb4669cae2148bc920eafd2b16dc7c046", + "url": "https://api.github.com/repos/symfony/process/zipball/01906871cb9b5e3cf872863b91aba4ec9767daf4", + "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4", "shasum": "" }, "require": { @@ -8279,7 +8279,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.40" + "source": "https://github.com/symfony/process/tree/v5.4.46" }, "funding": [ { @@ -8295,7 +8295,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-11-06T09:18:28+00:00" }, { "name": "symfony/service-contracts", From 3727f86e1a113eecae87dc0240a6ac6a4bcc4b1e Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 2 Dec 2024 12:20:39 +0100 Subject: [PATCH 04/29] Moving Authors to new category is not reflecting after saving and reloading post #1932 --- src/core/Classes/Post_Editor.php | 10 ++++++++++ src/core/Classes/Utils.php | 1 + src/modules/author-categories/author-categories.php | 11 +++++++++++ 3 files changed, 22 insertions(+) diff --git a/src/core/Classes/Post_Editor.php b/src/core/Classes/Post_Editor.php index 862d5b6b..7e941994 100644 --- a/src/core/Classes/Post_Editor.php +++ b/src/core/Classes/Post_Editor.php @@ -762,10 +762,20 @@ public static function flush_cache($post_id) { if (empty($post_id)) { wp_cache_flush_group('get_post_authors'); + wp_cache_flush_group('author_categories_relation_cache'); return; } + // author categories relation for the post + $args = [ + 'post_id' => $post_id, + 'author_term_id' => '' + ]; + $cache_key = 'author_categories_relation_' . md5(serialize($args)); + wp_cache_delete($cache_key, 'author_categories_relation_cache'); + + // post authors wp_cache_delete($post_id, 'get_post_authors:authors'); } } diff --git a/src/core/Classes/Utils.php b/src/core/Classes/Utils.php index 70e26492..76c01f72 100644 --- a/src/core/Classes/Utils.php +++ b/src/core/Classes/Utils.php @@ -229,6 +229,7 @@ public static function updatePostAuthorCategory($post_id, $authors, $post_author } } } + do_action('publishpress_authors_flush_cache', $post_id); } public static function detect_author_slug_mismatch() diff --git a/src/modules/author-categories/author-categories.php b/src/modules/author-categories/author-categories.php index dc3afa04..8d9f0144 100644 --- a/src/modules/author-categories/author-categories.php +++ b/src/modules/author-categories/author-categories.php @@ -104,6 +104,7 @@ public function init() add_action('wp_ajax_reorder_ppma_author_category', [$this, 'handleReOrderCategory']); add_filter('removable_query_args', [$this, 'removableQueryArgs']); add_action('delete_post', [$this, 'deleteAuthorCategoryRelation']); + add_action('publishpress_author_categories_flush_cache', [$this, 'flush_cache'], 15); } /** @@ -173,6 +174,13 @@ public function removableQueryArgs($args) { } + /** + * Flush author category cache + */ + public function flush_cache($category_id) { + wp_cache_flush_group('author_categories_results_cache'); + } + /** * Add the admin submenu. */ @@ -432,6 +440,7 @@ private function addAuthorCategory($insert_args) { foreach ($meta_data as $meta_data_key => $meta_data_value) { self::updateAuthorCategoryMeta($category_id, $meta_data_key, $meta_data_value); } + do_action('publishpress_author_categories_flush_cache', $category_id); return get_ppma_author_categories(['id' => $category_id]); } else { return false; @@ -473,6 +482,8 @@ private function editAuthorCategory($edit_args, $id) { self::updateAuthorCategoryMeta($id, $meta_data_key, $meta_data_value); } + do_action('publishpress_author_categories_flush_cache', $id); + return get_ppma_author_categories(['id' => $id]); } From c1d548d7be09bf6d218f10e5d3a0fce7f0afdb70 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 08:32:29 +0100 Subject: [PATCH 05/29] Authors FREE Translation Updates v.4.7.1 #1874 --- languages/publishpress-authors-es_ES.mo | Bin 82279 -> 83016 bytes languages/publishpress-authors-es_ES.po | 783 ++++++++++++----------- languages/publishpress-authors-fr_FR.mo | Bin 89340 -> 90213 bytes languages/publishpress-authors-fr_FR.po | 791 +++++++++++++----------- languages/publishpress-authors-it_IT.mo | Bin 81513 -> 82243 bytes languages/publishpress-authors-it_IT.po | 781 ++++++++++++----------- 6 files changed, 1270 insertions(+), 1085 deletions(-) diff --git a/languages/publishpress-authors-es_ES.mo b/languages/publishpress-authors-es_ES.mo index 23b43d557e908b0c41675224c65a1e577a0651c6..29416896a12b2170a39576b98ef621bc1bfdf742 100644 GIT binary patch delta 19491 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 diff --git a/languages/publishpress-authors-es_ES.po b/languages/publishpress-authors-es_ES.po index 8fbc93fa..3855276d 100644 --- a/languages/publishpress-authors-es_ES.po +++ b/languages/publishpress-authors-es_ES.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: Plugins - Co-Authors, Multiple Authors and Guest Authors " "in an Author Box with PublishPress Authors - Stable (latest release)\n" -"POT-Creation-Date: 2024-06-20 12:41+0000\n" -"PO-Revision-Date: 2024-06-23 23:59+0200\n" +"POT-Creation-Date: 2024-07-10 07:21+0000\n" +"PO-Revision-Date: 2024-07-10 20:08+0200\n" "Last-Translator: \n" "Language-Team: Spanish (Spain)\n" "Language: es_ES\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Poedit 3.4.4\n" -#: src/functions/template-tags.php:794 src/functions/template-tags.php:1415 +#: src/functions/template-tags.php:795 src/functions/template-tags.php:1416 msgid " and " msgstr " y " @@ -124,7 +124,7 @@ msgstr "Valor prefijo del %1s" msgid "%1s Weight" msgstr "Peso del %1s" -#: src/functions/template-tags.php:642 +#: src/functions/template-tags.php:643 #, php-format msgid "%1sView all posts%2s by %3s" msgstr "%1sVer todas las entradas%2s de %3s" @@ -184,7 +184,7 @@ msgstr "" "Gravatar si no se ha cargado el avatar por defecto en los ajustes de los " "autores)" -#: src/functions/template-tags.php:1416 +#: src/functions/template-tags.php:1417 msgid ", and " msgstr ", y " @@ -292,11 +292,11 @@ msgstr "[]" msgid "About" msgstr "Acerca de" -#: src/modules/multiple-authors/multiple-authors.php:3494 +#: src/modules/multiple-authors/multiple-authors.php:3497 msgid "Access denied" msgstr "Acceso denegado" -#: src/modules/author-boxes/author-boxes.php:2060 +#: src/modules/author-boxes/author-boxes.php:2046 msgid "Action" msgstr "Acción" @@ -305,7 +305,7 @@ msgstr "Acción" msgid "Active" msgstr "Activo" -#: src/modules/author-boxes/author-boxes.php:2090 +#: src/modules/author-boxes/author-boxes.php:2074 msgid "Add" msgstr "Añadir" @@ -330,7 +330,7 @@ msgstr "Añade autor" msgid "Add Author Category" msgstr "Add Author Category" -#: src/modules/author-list/author-list.php:661 +#: src/modules/author-list/author-list.php:689 msgid "Add Author List" msgstr "Añade lista de autor" @@ -401,7 +401,7 @@ msgstr "Añadir la opción de migración para Byline" msgid "Add migration option for Bylines" msgstr "Añadir la opción de migración para Bylines" -#: src/modules/author-list/author-list.php:263 +#: src/modules/author-list/author-list.php:279 msgid "Add New" msgstr "Añadir nuevo" @@ -423,7 +423,7 @@ msgstr "Añade nuevos campos de autor" msgid "Add or remove authors" msgstr "Añadir o eliminar autores" -#: src/modules/author-list/author-list.php:406 +#: src/modules/author-list/author-list.php:422 msgid "Add Search Box to Author Lists" msgstr "Añadir caja de búsqueda a las listas de autores" @@ -437,8 +437,8 @@ msgstr "Añadir compatibilidad con las cajas de autor." msgid "Add support for author categories." msgstr "Añadir compatibilidad con las categorías de autores." -#: src/modules/author-list/author-list.php:57 -#: src/modules/author-list/author-list.php:61 +#: src/modules/author-list/author-list.php:65 +#: src/modules/author-list/author-list.php:69 msgid "Add support for author list." msgstr "Añadir compatibilidad con la lista de autores." @@ -457,11 +457,11 @@ msgstr "" msgid "Adding the author term %d to the post %d" msgstr "Añadiendo el término de autor %d a la entrada %d" -#: src/modules/multiple-authors/multiple-authors.php:2905 +#: src/modules/multiple-authors/multiple-authors.php:2908 msgid "Advanced" msgstr "Avanzado" -#: src/modules/author-boxes/author-boxes.php:2050 +#: src/modules/author-boxes/author-boxes.php:2036 msgid "After All Authors" msgstr "Después todos los autores" @@ -469,20 +469,27 @@ msgstr "Después todos los autores" msgid "After Avatar" msgstr "Después del avatar" -#: src/modules/author-boxes/author-boxes.php:2049 +#: src/modules/author-boxes/author-boxes.php:2035 msgid "After Biographical Info Row" msgstr "Después de la fila de información biográfica" -#: src/modules/author-boxes/author-boxes.php:2048 +#: src/modules/author-boxes/author-boxes.php:2034 msgid "After Name Row" msgstr "Después de la fila del nombre" -#: src/modules/author-boxes/author-boxes.php:2047 +#: src/modules/author-boxes/author-boxes.php:2033 msgid "After View all posts Row" msgstr "Después de la fila de «Ver todas las entradas»" +#: src/modules/author-list/classes/AuthorListTable.php:64 +#, php-format +msgid "All %s" +msgid_plural "All %s" +msgstr[0] "Todos %s" +msgstr[1] "Todos %s" + #: src/core/Authors_Widget.php:181 src/core/Authors_Widget.php:412 -#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:504 +#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:509 msgid "All Authors" msgstr "Todos los autores" @@ -498,15 +505,15 @@ msgstr "Todo está listo. No se necesita actualizar ningún autor" msgid "All is set. No posts need to be updated" msgstr "Todo está listo. No se necesita actualizar ninguna entrada" -#: src/modules/multiple-authors/multiple-authors.php:1733 +#: src/modules/multiple-authors/multiple-authors.php:1736 msgid "Allow authors to be created without a mapped user." msgstr "Permite crear autores sin un usuario asignado." -#: src/modules/multiple-authors/multiple-authors.php:1710 +#: src/modules/multiple-authors/multiple-authors.php:1713 msgid "Allow authors to be created without a real user account." msgstr "Permitir crear autores sin una cuenta de usuario real." -#: src/modules/multiple-authors/multiple-authors.php:1967 +#: src/modules/multiple-authors/multiple-authors.php:1970 msgid "Allow User to Choose" msgstr "Permite al usuario elegir" @@ -525,7 +532,7 @@ msgstr "Un autor con el nombre proporcionado ya existe." #: src/modules/author-categories/author-categories.php:366 #: src/modules/author-categories/author-categories.php:374 #: src/modules/author-custom-fields/author-custom-fields.php:998 -#: src/modules/author-list/author-list.php:1068 +#: src/modules/author-list/author-list.php:1101 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:34 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:82 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:124 @@ -593,13 +600,13 @@ msgstr "Autor" msgid "Author Bio" msgstr "Biografía del autor" -#: src/modules/multiple-authors/multiple-authors.php:797 +#: src/modules/multiple-authors/multiple-authors.php:800 msgid "Author bio layout:" msgstr "Diseño de biografía del autor:" #: src/modules/author-boxes/author-boxes.php:397 #: src/modules/author-boxes/author-boxes.php:499 -#: src/modules/author-boxes/author-boxes.php:2577 +#: src/modules/author-boxes/author-boxes.php:2561 msgid "Author Box" msgstr "Caja de autor" @@ -719,7 +726,7 @@ msgstr "Ancho de la caja de autor (%)" #: src/modules/author-boxes/author-boxes.php:456 #: src/modules/author-boxes/author-boxes.php:457 #: src/modules/author-boxes/author-boxes.php:500 -#: src/modules/multiple-authors/multiple-authors.php:2900 +#: src/modules/multiple-authors/multiple-authors.php:2903 msgid "Author Boxes" msgstr "Cajas de autor" @@ -839,7 +846,7 @@ msgstr "Campos de autor" msgid "Author Grouping Title Option" msgstr "Opción del título de la agrupación de autores" -#: src/modules/author-list/author-list.php:497 +#: src/modules/author-list/author-list.php:513 msgid "Author Index List" msgstr "Lista de índice de autores" @@ -847,19 +854,27 @@ msgstr "Lista de índice de autores" msgid "Author inline display" msgstr "Visualización integrada del autor" -#: src/modules/author-list/author-list.php:56 -#: src/modules/author-list/author-list.php:631 +#: src/modules/author-list/author-list.php:64 +#: src/modules/author-list/author-list.php:659 msgid "Author List" msgstr "Lista de autores" -#: src/modules/author-list/author-list.php:235 +#: src/modules/author-list/author-list.php:243 msgid "Author List deleted successfully." msgstr "Lista de autores borrada correctamente." -#: src/modules/author-list/author-list.php:188 -#: src/modules/author-list/author-list.php:189 -#: src/modules/author-list/author-list.php:257 -#: src/modules/author-list/author-list.php:676 +#: src/modules/author-list/author-list.php:251 +msgid "Author List moved to the Trash." +msgstr "Lista de autores movida a la papelera." + +#: src/modules/author-list/author-list.php:247 +msgid "Author List restored from the Trash." +msgstr "Lista de autores restaurada de la papelera." + +#: src/modules/author-list/author-list.php:196 +#: src/modules/author-list/author-list.php:197 +#: src/modules/author-list/author-list.php:273 +#: src/modules/author-list/author-list.php:704 msgid "Author Lists" msgstr "Listas de autores" @@ -874,32 +889,41 @@ msgstr "Título de la página de autor" #: src/modules/author-pages/author-pages.php:56 #: src/modules/author-pages/author-pages.php:102 #: src/modules/author-pages/author-pages.php:103 -#: src/modules/multiple-authors/multiple-authors.php:2902 +#: src/modules/multiple-authors/multiple-authors.php:2905 msgid "Author Pages" msgstr "Páginas de autor" -#: src/modules/multiple-authors/multiple-authors.php:816 +#: src/modules/multiple-authors/multiple-authors.php:819 msgid "Author pages excerpt ellipsis:" msgstr "Páginas de autor elipsis de extracto:" -#: src/modules/multiple-authors/multiple-authors.php:764 +#: src/modules/multiple-authors/multiple-authors.php:767 msgid "Author pages layout:" msgstr "Diseño de páginas de autor:" -#: src/modules/multiple-authors/multiple-authors.php:753 +#: src/modules/multiple-authors/multiple-authors.php:756 msgid "Author pages posts limit:" msgstr "Límite de entradas en las páginas de autor:" -#: src/modules/multiple-authors/multiple-authors.php:827 +#: src/modules/multiple-authors/multiple-authors.php:830 msgid "Author pages title header:" msgstr "Cabecera de las páginas del autor:" -#: src/modules/multiple-authors/multiple-authors.php:835 +#: src/modules/multiple-authors/multiple-authors.php:838 msgid "Author post title header:" msgstr "Cabecera del título de la entrada del autor:" -#: src/modules/multiple-authors/multiple-authors.php:334 -#: src/modules/multiple-authors/multiple-authors.php:335 +#: src/modules/author-list/author-list.php:423 +msgid "" +"Author Pro allows you to add a search box to the Authors List. You can also " +"show a dropdown menu that allows users to search on specific author fields." +msgstr "" +"«Author Pro» te permite añadir un cuadro de búsqueda a la lista de autores. " +"También puedes mostrar un menú desplegable que permite a los usuarios buscar " +"en campos específicos del autor." + +#: src/modules/multiple-authors/multiple-authors.php:337 +#: src/modules/multiple-authors/multiple-authors.php:338 msgid "Author Profile" msgstr "Perfil del autor" @@ -911,11 +935,11 @@ msgstr "Perfil del autor borrado." msgid "Author profile updated." msgstr "Perfil del autor actualizado." -#: src/modules/multiple-authors/multiple-authors.php:2901 +#: src/modules/multiple-authors/multiple-authors.php:2904 msgid "Author Profiles" msgstr "Perfiles de autor" -#: src/modules/multiple-authors/multiple-authors.php:1666 +#: src/modules/multiple-authors/multiple-authors.php:1669 msgid "" "Author profiles can be mapped to WordPress user accounts. This option allows " "you to automatically create author profiles when users are created in these " @@ -928,7 +952,7 @@ msgstr "" "los usuarios existentes haciendo clic en el botón «Crear autores que faltan " "desde el perfil» en la pestaña de mantenimiento." -#: src/modules/author-list/author-list.php:453 +#: src/modules/author-list/author-list.php:469 msgid "Author Recent List" msgstr "Lista de autores recientes" @@ -949,13 +973,13 @@ msgid "Author Separator" msgstr "Separador de autores" #: src/core/Classes/Author_Editor.php:49 -#: src/modules/author-list/author-list.php:380 -#: src/modules/author-list/author-list.php:385 +#: src/modules/author-list/author-list.php:396 +#: src/modules/author-list/author-list.php:401 msgid "Author Type" msgstr "Tipo de autor" #: src/core/Classes/Term_Editor.php:79 -#: src/modules/multiple-authors/multiple-authors.php:2993 +#: src/modules/multiple-authors/multiple-authors.php:2996 msgid "Author URL" msgstr "URL del autor" @@ -969,9 +993,8 @@ msgstr "" "Campo de la caja de búsqueda del autor (separa varios campos con una " "coma(','))" -#: src/modules/author-list/classes/AuthorListTable.php:32 -#: src/modules/author-list/classes/AuthorListTable.php:33 -#| msgid "Authors List" +#: src/modules/author-list/classes/AuthorListTable.php:40 +#: src/modules/author-list/classes/AuthorListTable.php:41 msgid "AuthorList" msgstr "AuthorList" @@ -979,14 +1002,14 @@ msgstr "AuthorList" #: src/core/Classes/Post_Editor.php:94 src/core/Classes/Post_Editor.php:206 #: src/core/Traits/Author_box.php:189 #: src/modules/author-categories/author-categories.php:624 -#: src/modules/author-list/author-list.php:386 +#: src/modules/author-list/author-list.php:402 #: src/modules/editflow-integration/editflow-integration.php:114 -#: src/modules/multiple-authors/multiple-authors.php:319 -#: src/modules/multiple-authors/multiple-authors.php:320 -#: src/modules/multiple-authors/multiple-authors.php:368 -#: src/modules/multiple-authors/multiple-authors.php:369 -#: src/modules/multiple-authors/multiple-authors.php:388 -#: src/modules/multiple-authors/multiple-authors.php:1228 +#: src/modules/multiple-authors/multiple-authors.php:322 +#: src/modules/multiple-authors/multiple-authors.php:323 +#: src/modules/multiple-authors/multiple-authors.php:371 +#: src/modules/multiple-authors/multiple-authors.php:372 +#: src/modules/multiple-authors/multiple-authors.php:391 +#: src/modules/multiple-authors/multiple-authors.php:1231 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:82 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:161 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:342 @@ -996,11 +1019,11 @@ msgstr "AuthorList" msgid "Authors" msgstr "Autores" -#: src/modules/multiple-authors/multiple-authors.php:1261 +#: src/modules/multiple-authors/multiple-authors.php:1264 msgid "Authors Box" msgstr "Caja de autores" -#: src/modules/multiple-authors/multiple-authors.php:1342 +#: src/modules/multiple-authors/multiple-authors.php:1345 msgid "Authors Data" msgstr "Datos de los autores" @@ -1017,27 +1040,18 @@ msgid "Authors Index" msgstr "Índice de autores" #: src/core/Authors_Widget.php:23 -#: src/modules/multiple-authors/multiple-authors.php:1411 +#: src/modules/multiple-authors/multiple-authors.php:1414 msgid "Authors List" msgstr "Lista de autores" -#: src/modules/author-list/author-list.php:397 +#: src/modules/author-list/author-list.php:413 msgid "" -"Authors Pro allows you to set Author Lists pagination using number of " -"authors to show per page, ability to show or hide authors without without " -"any posts, order authors by their published post counts, names and limit the " -"author results to users with a published post within a specific time." +"Authors Pro allows you to add extra features to the Authors List. These " +"features include pagination, choose the order of authors, and much more." msgstr "" -"Autores Pro te permite añadir características extra a la «Lista de Autores». " -"Estas características incluyen la paginación, elegir el orden de los " -"autores, y mucho más." - -#: src/modules/author-list/author-list.php:407 -msgid "" -"Authors Pro allows you to show search box and search through author fields." -msgstr "" -"Autores Pro te permite mostrar la caja de búsqueda y buscar a través de los " -"campos de autor." +"Autores Pro te permite añadir características adicionales a la lista de " +"autores. Estas características incluyen la paginación, elegir el orden de " +"los autores, y mucho más." #: src/modules/default-layouts/default-layouts.php:126 msgid "Authors Recent" @@ -1047,7 +1061,7 @@ msgstr "Autores recientes" msgid "Authors Settings" msgstr "Ajustes de autores" -#: src/modules/multiple-authors/multiple-authors.php:598 +#: src/modules/multiple-authors/multiple-authors.php:601 msgid "Automatically create author profiles:" msgstr "Crear automáticamente perfiles de autor:" @@ -1221,7 +1235,7 @@ msgstr "En cajas" msgid "Boxed (Categories)" msgstr "En cajas (categorías)" -#: src/modules/multiple-authors/multiple-authors.php:1062 +#: src/modules/multiple-authors/multiple-authors.php:1065 msgid "Boxed legacy layout Author Box:" msgstr "Diseño encajonado de la caja de autor heredada:" @@ -1271,11 +1285,11 @@ msgstr "Centro" msgid "Centered" msgstr "Centrado" -#: src/modules/multiple-authors/multiple-authors.php:1070 +#: src/modules/multiple-authors/multiple-authors.php:1073 msgid "Centered legacy layout Author Box:" msgstr "Diseño centrado heredado de la caja de autor:" -#: src/modules/author-boxes/author-boxes.php:2314 +#: src/modules/author-boxes/author-boxes.php:2298 #, php-format msgid "Change %1s" msgstr "Cambiar %1s" @@ -1288,6 +1302,10 @@ msgstr "Haciendo trampas, ¿eh?" msgid "Choose from the most used Authors" msgstr "Elige entre los autores más utilizados" +#: src/modules/author-pages/author-pages.php:165 +msgid "Click here for more details." +msgstr "Haz clic aquí para más detalles." + #: src/modules/modules-settings/modules-settings.php:313 msgid "Click here to install PublishPress Blocks" msgstr "Haz clic aquí para instalar PublishPress Blocks" @@ -1304,7 +1322,7 @@ msgstr "" "Haz clic en un autor para cambiarlo. Arrastra para cambiar su orden. Haz " "clic en Eliminar para eliminarlos." -#: src/modules/author-boxes/author-boxes.php:2175 +#: src/modules/author-boxes/author-boxes.php:2159 msgid "" "Click the \"Generate Template\" button under the text area. Wait for the " "code to be generated." @@ -1316,12 +1334,12 @@ msgstr "" msgid "Click to change this author, or drag to change their position" msgstr "Haz clic para cambiar este autor o arrastra para cambiar su posición" -#: src/modules/multiple-authors/multiple-authors.php:1592 -#: src/modules/multiple-authors/multiple-authors.php:1593 +#: src/modules/multiple-authors/multiple-authors.php:1595 +#: src/modules/multiple-authors/multiple-authors.php:1596 msgid "Click To Copy!" msgstr "¡Haz clic para copiar!" -#: src/modules/multiple-authors/multiple-authors.php:4392 +#: src/modules/multiple-authors/multiple-authors.php:4395 msgid "Click to run the update now" msgstr "Haz clic para ejecutar la actualización ahora" @@ -1340,16 +1358,16 @@ msgstr "Coautores" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3858 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Collecting data for the migration..." msgstr "Recogiendo datos para la migración…" -#: src/modules/multiple-authors/multiple-authors.php:3790 -#: src/modules/multiple-authors/multiple-authors.php:3821 +#: src/modules/multiple-authors/multiple-authors.php:3793 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Collecting data..." msgstr "Recogiendo los datos…" -#: src/modules/multiple-authors/multiple-authors.php:698 +#: src/modules/multiple-authors/multiple-authors.php:701 msgid "Color scheme:" msgstr "Esquema de color:" @@ -1362,11 +1380,11 @@ msgstr "Recuento de comentarios" msgid "Configure" msgstr "Configurar" -#: src/modules/author-list/author-list.php:396 +#: src/modules/author-list/author-list.php:412 msgid "Configure Author List Options" msgstr "Configurar las opciones de la lista de autores" -#: src/modules/author-boxes/author-boxes.php:2178 +#: src/modules/author-boxes/author-boxes.php:2162 msgid "" "Congratulations. Your can now choose your template inside the PublishPress " "Authors Settings." @@ -1379,15 +1397,15 @@ msgid "Contact" msgstr "Contacto" #: src/core/Classes/Author_Editor.php:809 -msgid "Convert into guest author" -msgstr "Convertir en autor invitado" +msgid "Convert into Guest Author With User Account" +msgstr "Convertir en autor invitado con cuenta de usuario" -#: src/modules/author-boxes/author-boxes.php:2147 -#: src/modules/author-boxes/author-boxes.php:2219 +#: src/modules/author-boxes/author-boxes.php:2131 +#: src/modules/author-boxes/author-boxes.php:2203 msgid "Copied to Clipboard!" msgstr "Copiado en el portapapeles." -#: src/modules/multiple-authors/multiple-authors.php:1591 +#: src/modules/multiple-authors/multiple-authors.php:1594 msgid "Copied!" msgstr "¡Copiado!" @@ -1401,26 +1419,26 @@ msgstr "Copiar los datos de Byline" msgid "Copy Bylines Data" msgstr "Copiar los datos de Bylines" -#: src/modules/multiple-authors/multiple-authors.php:2694 +#: src/modules/multiple-authors/multiple-authors.php:2697 msgid "Copy Co-Authors Plus Data" msgstr "Copiar los datos de Co-Authors Plus" -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Copy Co-Authors Plus data" msgstr "Copiar los datos de Co-Authors Plus" -#: src/modules/author-boxes/author-boxes.php:2177 +#: src/modules/author-boxes/author-boxes.php:2161 msgid "Copy the generated code and paste it inside the newly created file." msgstr "Copia el código generado y pégalo dentro del archivo recién creado." -#: src/modules/author-boxes/author-boxes.php:2143 -#: src/modules/author-boxes/author-boxes.php:2214 +#: src/modules/author-boxes/author-boxes.php:2127 +#: src/modules/author-boxes/author-boxes.php:2198 msgid "Copy to Clipboard" msgstr "Copia en el portapapeles" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Copying authors' data..." msgstr "Copiando los datos del autor…" @@ -1453,7 +1471,7 @@ msgstr "" "ligera pero puede tener problemas de compatibilidad con otros temas y " "plugins." -#: src/modules/author-boxes/author-boxes.php:2176 +#: src/modules/author-boxes/author-boxes.php:2160 #, php-format msgid "" "Create an empty php template file with your desired file slug in the %1s /" @@ -1468,7 +1486,7 @@ msgstr "" "nombre-del-tema%6s/publishpress-authors/author-boxes/mi-primera-plantilla-" "autor-personalizada.php %7s ." -#: src/core/Classes/Utils.php:1126 +#: src/core/Classes/Utils.php:1127 msgid "Create Author Boxes with authors organized in categories" msgstr "Crea cajas de autores con los autores organizados en categorías" @@ -1476,20 +1494,20 @@ msgstr "Crea cajas de autores con los autores organizados en categorías" msgid "Create Author Profile" msgstr "Crear un perfil de autor" -#: src/modules/multiple-authors/multiple-authors.php:2663 +#: src/modules/multiple-authors/multiple-authors.php:2666 msgid "Create missing PublishPress Authors profiles" msgstr "Crea los perfiles de PublishPress Authors que faltan" -#: src/modules/multiple-authors/multiple-authors.php:2669 +#: src/modules/multiple-authors/multiple-authors.php:2672 msgid "Create PublishPress Authors profiles" msgstr "Crea los perfiles de PublishPress Authors" -#: src/modules/multiple-authors/multiple-authors.php:2661 +#: src/modules/multiple-authors/multiple-authors.php:2664 msgid "Create PublishPress Authors Profiles for all post authors" msgstr "" "Crea los perfiles de PublishPress Authors para todos los autores de entradas" -#: src/modules/multiple-authors/multiple-authors.php:2667 +#: src/modules/multiple-authors/multiple-authors.php:2670 msgid "Create PublishPress Authors Profiles for all users in a role" msgstr "" "Crea los perfiles de PublishPress Authors para todos los usuarios en un " @@ -1499,7 +1517,7 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "Creando el término de autor para el usuario %d" -#: src/modules/multiple-authors/multiple-authors.php:3860 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Creating missed post authors...." msgstr "Creación de autores de entradas faltantes…" @@ -1573,7 +1591,7 @@ msgstr "Desactivar Byline" msgid "Deactivate Bylines" msgstr "Desactivar Bylines" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3869 msgid "Deactivate Co-Authors Plus" msgstr "Desactivar Co-Authors Plus" @@ -1585,7 +1603,7 @@ msgstr "Desactivando Byline…" msgid "Deactivating Bylines..." msgstr "Desactivando Bylines…" -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivating Co-uthors Plus..." msgstr "Desactivando Co-Authors Plus…" @@ -1633,12 +1651,12 @@ msgstr "Por defecto" msgid "Default Author Box" msgstr "Caja de autor por defecto" -#: src/modules/multiple-authors/multiple-authors.php:620 +#: src/modules/multiple-authors/multiple-authors.php:623 msgid "Default author for new posts:" msgstr "Autor por defecto para las nuevas entradas:" #: src/core/Classes/Author_Editor.php:379 -#: src/modules/multiple-authors/multiple-authors.php:1051 +#: src/modules/multiple-authors/multiple-authors.php:1054 msgid "Default Avatar" msgstr "Avatar por defecto" @@ -1650,30 +1668,33 @@ msgstr "Diseños por defecto" msgid "Default Search" msgstr "Buscador por defecto" -#: src/modules/author-boxes/author-boxes.php:2089 -#: src/modules/author-boxes/author-boxes.php:2118 +#: src/modules/author-boxes/author-boxes.php:2073 +#: src/modules/author-boxes/author-boxes.php:2102 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:125 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:373 -#: src/modules/author-list/classes/AuthorListTable.php:292 msgid "Delete" msgstr "Borrar" -#: src/modules/multiple-authors/multiple-authors.php:2704 +#: src/modules/multiple-authors/multiple-authors.php:2707 msgid "Delete all authors mapped to users" msgstr "Borrar todos los autores asignados a los usuarios" -#: src/modules/multiple-authors/multiple-authors.php:2711 +#: src/modules/multiple-authors/multiple-authors.php:2714 msgid "Delete all guest authors" msgstr "Borrar todos los autores invitados" -#: src/modules/multiple-authors/multiple-authors.php:2709 +#: src/modules/multiple-authors/multiple-authors.php:2712 msgid "Delete Guest Authors" msgstr "Borrar los autores invitados" -#: src/modules/multiple-authors/multiple-authors.php:2702 +#: src/modules/multiple-authors/multiple-authors.php:2705 msgid "Delete Mapped Authors" msgstr "Borrar los autores asignados" +#: src/modules/author-list/classes/AuthorListTable.php:384 +msgid "Delete Permanently" +msgstr "Borrar permanentemente" + #: src/core/Authors_Widget.php:187 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1227 msgid "Descending" @@ -1683,7 +1704,7 @@ msgstr "Descendente" msgid "Description" msgstr "Descripción" -#: src/core/Classes/Utils.php:1155 +#: src/core/Classes/Utils.php:1156 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Una documentación detallada está también disponible en la web del plugin." @@ -1696,11 +1717,11 @@ msgstr "Detalles" msgid "Disable Categories" msgstr "Desactiva las categorías" -#: src/modules/multiple-authors/multiple-authors.php:674 +#: src/modules/multiple-authors/multiple-authors.php:677 msgid "Disable the \"Authors\" box when using \"Quick Edit\":" msgstr "Desactiva la caja «Autores» cuando utilizas la «Edición rápida»:" -#: src/core/Classes/Post_Editor.php:446 +#: src/core/Classes/Post_Editor.php:451 msgid "Disable the default author display under this post" msgstr "Desactivar la visualización del autor por defecto bajo esta entrada" @@ -1710,7 +1731,7 @@ msgstr "Desactivar la visualización del autor por defecto bajo esta entrada" msgid "Disabled" msgstr "Desactivado" -#: src/modules/multiple-authors/multiple-authors.php:1189 +#: src/modules/multiple-authors/multiple-authors.php:1192 #: src/modules/settings/settings.php:275 #, php-format msgid "" @@ -1720,8 +1741,8 @@ msgstr "" "Desactivado porque add_post_type_support('%1$s', '%2$s') está incluido en un " "archivo cargado." -#: src/modules/multiple-authors/multiple-authors.php:4324 -#: src/modules/multiple-authors/multiple-authors.php:4398 +#: src/modules/multiple-authors/multiple-authors.php:4327 +#: src/modules/multiple-authors/multiple-authors.php:4401 msgid "Dismiss" msgstr "Descartar" @@ -1739,7 +1760,7 @@ msgid "Display authors list." msgstr "Mostrar la lista de autores." #: src/modules/author-boxes/author-boxes.php:1018 -#: src/modules/multiple-authors/multiple-authors.php:1040 +#: src/modules/multiple-authors/multiple-authors.php:1043 msgid "Display Name" msgstr "Nombre visible" @@ -1809,7 +1830,7 @@ msgstr "Integración de Divi" msgid "Documentation" msgstr "Documentación" -#: src/modules/author-boxes/author-boxes.php:2183 +#: src/modules/author-boxes/author-boxes.php:2167 msgid "documentation page" msgstr "páginas de documentación" @@ -1817,11 +1838,11 @@ msgstr "páginas de documentación" msgid "dofollow" msgstr "dofollow" -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Done! %d authors were updated." msgstr "¡Hecho! Se han actualizado %d autores." -#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Done! %d posts were updated." msgstr "¡Hecho! Se han actualizado %d entradas." @@ -1843,11 +1864,11 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "¡Hecho! Bylines está desactivado." -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3870 msgid "Done! Co-Authors Plus data was copied." msgstr "¡Hecho! Los datos de Co-Authors Plus han sido copiados." -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus is deactivated." msgstr "¡Hecho! Co-Authors Plus está desactivado." @@ -1863,12 +1884,12 @@ msgstr "Punteado" msgid "Double" msgstr "Doble" -#: src/modules/author-list/author-list.php:755 +#: src/modules/author-list/author-list.php:783 msgid "Dynamic Shortcode" msgstr "Shortcode dinámico" #: src/core/Plugin.php:1492 -#: src/modules/author-list/classes/AuthorListTable.php:280 +#: src/modules/author-list/classes/AuthorListTable.php:344 msgid "Edit" msgstr "Editar" @@ -1882,7 +1903,7 @@ msgstr "Editar %1$s" msgid "Edit Author" msgstr "Editar el autor" -#: src/modules/author-list/author-list.php:661 +#: src/modules/author-list/author-list.php:689 msgid "Edit Author List" msgstr "Editar lista de autores" @@ -1930,7 +1951,7 @@ msgstr "Dirección de correo electrónico" msgid "Enable Author Grouping" msgstr "Activar la agrupación de autores" -#: src/modules/multiple-authors/multiple-authors.php:742 +#: src/modules/multiple-authors/multiple-authors.php:745 msgid "Enable author pages:" msgstr "Activar las páginas de autor:" @@ -1948,15 +1969,15 @@ msgstr "Activar las categorías" msgid "Enable Category" msgstr "Activar la categoría" -#: src/modules/multiple-authors/multiple-authors.php:1018 +#: src/modules/multiple-authors/multiple-authors.php:1021 msgid "Enable Guest Author With No User Account" msgstr "Activa autor invitado sin cuenta de usuario" -#: src/modules/multiple-authors/multiple-authors.php:1029 +#: src/modules/multiple-authors/multiple-authors.php:1032 msgid "Enable Guest Author With User Account" msgstr "Activa autor invitado con cuenta de usuario" -#: src/modules/multiple-authors/multiple-authors.php:582 +#: src/modules/multiple-authors/multiple-authors.php:585 msgid "Enable PublishPress Authors for these post types:" msgstr "Activar PublishPress Autores para estos tipos de contenido:" @@ -2033,13 +2054,13 @@ msgstr "Error al actualizar el perfil de autor." msgid "Error updating category data." msgstr "Error al actualizar los datos de la categoría." -#: src/modules/multiple-authors/multiple-authors.php:3659 +#: src/modules/multiple-authors/multiple-authors.php:3662 msgid "Error. Author terms could not be reseted." msgstr "Error. No se han podido restablecer los términos del autor." #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3859 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Error: " msgstr "Error: " @@ -2052,23 +2073,27 @@ msgstr "Cajas de autor existentes" msgid "Export" msgstr "Exportar" -#: src/modules/author-boxes/author-boxes.php:2132 +#: src/modules/author-boxes/author-boxes.php:2116 msgid "Export Editor Settings" msgstr "Exportar los ajustes del editor" -#: src/modules/multiple-authors/multiple-authors.php:631 +#: src/core/Classes/Utils.php:1126 +msgid "Extra features for Author Lists" +msgstr "Características adicionales para listas de autores" + +#: src/modules/multiple-authors/multiple-authors.php:634 msgid "Fallback user for Guest Authors:" msgstr "Usuario de respaldo para los autores invitados:" -#: src/core/Classes/Utils.php:1129 +#: src/core/Classes/Utils.php:1130 msgid "Fast, professional support" msgstr "Soporte rápido y profesional" -#: src/modules/multiple-authors/multiple-authors.php:865 +#: src/modules/multiple-authors/multiple-authors.php:868 msgid "Featured image custom height:" msgstr "Altura personalizada de la imagen destacada:" -#: src/modules/multiple-authors/multiple-authors.php:854 +#: src/modules/multiple-authors/multiple-authors.php:857 msgid "Featured image custom width:" msgstr "Ancho personalizado de la imagen destacada:" @@ -2139,18 +2164,18 @@ msgstr "Campo valor" msgid "Filter %2$s list" msgstr "Filtrar la lista %2$s" -#: src/modules/multiple-authors/multiple-authors.php:3791 -#: src/modules/multiple-authors/multiple-authors.php:3822 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 msgid "Finishing the process..." msgstr "Finalizando el proceso…" #: src/core/Authors_Widget.php:192 src/core/Classes/Author_Editor.php:358 #: src/modules/author-custom-fields/author-custom-fields.php:890 -#: src/modules/multiple-authors/multiple-authors.php:1970 +#: src/modules/multiple-authors/multiple-authors.php:1973 msgid "First Name" msgstr "Nombre" -#: src/modules/multiple-authors/multiple-authors.php:1968 +#: src/modules/multiple-authors/multiple-authors.php:1971 msgid "First Name Last Name" msgstr "Nombre y apellidos" @@ -2159,11 +2184,11 @@ msgstr "Nombre y apellidos" msgid "Flex" msgstr "Flex" -#: src/modules/multiple-authors/multiple-authors.php:723 +#: src/modules/multiple-authors/multiple-authors.php:726 msgid "Font Awesome icons:" msgstr "Iconos de Font Awesome:" -#: src/modules/multiple-authors/multiple-authors.php:1490 +#: src/modules/multiple-authors/multiple-authors.php:1493 #, php-format msgid "" "For authors_index layout, you can group user by profile field by using %1$s ." @@ -2171,7 +2196,7 @@ msgstr "" "Para authors_index layout, puedes agrupar usuarios por campo de perfil " "usando %1$s ." -#: src/modules/author-list/author-list.php:368 +#: src/modules/author-list/author-list.php:384 msgid "For authors_index layout, you can group user by profile fields." msgstr "" "Para authors_index layout, puedes agrupar a los usuarios por campos de " @@ -2189,13 +2214,13 @@ msgstr "" "entrada. Puedes leer más %1$s en esta guía.%2$s" #: src/core/Classes/Author_Editor.php:313 -#: src/modules/author-list/author-list.php:300 +#: src/modules/author-list/author-list.php:316 #: src/modules/author-pages/author-pages.php:113 -#: src/modules/multiple-authors/multiple-authors.php:2899 +#: src/modules/multiple-authors/multiple-authors.php:2902 msgid "General" msgstr "General" -#: src/modules/author-boxes/author-boxes.php:2208 +#: src/modules/author-boxes/author-boxes.php:2192 msgid "Generate Template" msgstr "Genera la plantilla" @@ -2212,11 +2237,11 @@ msgstr "Integración de Generatepress" msgid "Genesis Integration" msgstr "Integración de Genesis" -#: src/modules/multiple-authors/multiple-authors.php:1795 +#: src/modules/multiple-authors/multiple-authors.php:1798 msgid "Grid" msgstr "Cuadrícula" -#: src/modules/multiple-authors/multiple-authors.php:775 +#: src/modules/multiple-authors/multiple-authors.php:778 msgid "Grid layout column:" msgstr "Columna de diseño de la cuadrícula:" @@ -2226,23 +2251,23 @@ msgstr "Columna de diseño de la cuadrícula:" msgid "Groove" msgstr "Acanalado" -#: src/modules/author-list/author-list.php:367 +#: src/modules/author-list/author-list.php:383 msgid "Group By" msgstr "Agrupar por" -#: src/modules/multiple-authors/multiple-authors.php:4783 +#: src/modules/multiple-authors/multiple-authors.php:4786 msgid "Guest Author cannot login on the site." msgstr "El autor invitado no puede acceder al sitio." #: src/core/Classes/Author_Editor.php:121 #: src/core/Classes/Author_Editor.php:710 -#: src/modules/author-list/author-list.php:947 +#: src/modules/author-list/author-list.php:979 msgid "Guest Author With No User Account" msgstr "Autor invitado sin cuenta de usuario" #: src/core/Classes/Author_Editor.php:117 #: src/core/Classes/Author_Editor.php:703 -#: src/modules/author-list/author-list.php:946 +#: src/modules/author-list/author-list.php:978 msgid "Guest Author With User Account" msgstr "Autor invitado con cuenta de usuario" @@ -2250,8 +2275,8 @@ msgstr "Autor invitado con cuenta de usuario" msgid "Guest Authors" msgstr "Autores invitados" -#: src/modules/multiple-authors/multiple-authors.php:1823 -#: src/modules/multiple-authors/multiple-authors.php:1855 +#: src/modules/multiple-authors/multiple-authors.php:1826 +#: src/modules/multiple-authors/multiple-authors.php:1858 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:152 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:384 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:520 @@ -2262,8 +2287,8 @@ msgstr "Autores invitados" msgid "H1" msgstr "H1" -#: src/modules/multiple-authors/multiple-authors.php:1824 -#: src/modules/multiple-authors/multiple-authors.php:1856 +#: src/modules/multiple-authors/multiple-authors.php:1827 +#: src/modules/multiple-authors/multiple-authors.php:1859 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:153 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:385 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:521 @@ -2274,8 +2299,8 @@ msgstr "H1" msgid "H2" msgstr "H2" -#: src/modules/multiple-authors/multiple-authors.php:1825 -#: src/modules/multiple-authors/multiple-authors.php:1857 +#: src/modules/multiple-authors/multiple-authors.php:1828 +#: src/modules/multiple-authors/multiple-authors.php:1860 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:154 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:386 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:522 @@ -2286,8 +2311,8 @@ msgstr "H2" msgid "H3" msgstr "H3" -#: src/modules/multiple-authors/multiple-authors.php:1826 -#: src/modules/multiple-authors/multiple-authors.php:1858 +#: src/modules/multiple-authors/multiple-authors.php:1829 +#: src/modules/multiple-authors/multiple-authors.php:1861 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:155 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:387 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:523 @@ -2298,8 +2323,8 @@ msgstr "H3" msgid "H4" msgstr "H4" -#: src/modules/multiple-authors/multiple-authors.php:1827 -#: src/modules/multiple-authors/multiple-authors.php:1859 +#: src/modules/multiple-authors/multiple-authors.php:1830 +#: src/modules/multiple-authors/multiple-authors.php:1862 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:156 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:388 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:524 @@ -2310,8 +2335,8 @@ msgstr "H4" msgid "H5" msgstr "H5" -#: src/modules/multiple-authors/multiple-authors.php:1828 -#: src/modules/multiple-authors/multiple-authors.php:1860 +#: src/modules/multiple-authors/multiple-authors.php:1831 +#: src/modules/multiple-authors/multiple-authors.php:1863 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:157 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:389 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:525 @@ -2331,7 +2356,7 @@ msgstr "Oculta %1s" msgid "Hide Title" msgstr "Ocultar el título" -#: src/modules/author-boxes/author-boxes.php:2172 +#: src/modules/author-boxes/author-boxes.php:2156 msgid "How to generate and use a theme template file" msgstr "Cómo generar y utilizar un archivo de plantilla de tema" @@ -2347,7 +2372,7 @@ msgstr "https://es.wordpress.org/plugins/publishpress-authors/" msgid "ID" msgstr "ID" -#: src/modules/multiple-authors/multiple-authors.php:1757 +#: src/modules/multiple-authors/multiple-authors.php:1760 msgid "" "If enabled, PublishPress Authors will replace the default WordPress author " "pages." @@ -2355,7 +2380,7 @@ msgstr "" "Si lo activas, PublishPress Authors reemplazará las páginas de autor por " "defecto de WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1687 +#: src/modules/multiple-authors/multiple-authors.php:1690 msgid "" "If the Author is mapped to a WordPress user, this will display the authors' " "\"Display name\" and their \"Username\". The default is to show only the " @@ -2367,7 +2392,7 @@ msgstr "" "mostrar solo el «Nombre a mostrar». Mostrar el «Nombre de usuario» es útil " "si tienes varios autores con nombres similares." -#: src/modules/multiple-authors/multiple-authors.php:1313 +#: src/modules/multiple-authors/multiple-authors.php:1316 #, php-format msgid "" "If you are having problems showing PublishPress Authors on author profile " @@ -2380,7 +2405,7 @@ msgstr "" "obliga al plugin a recuperar el autor de la página de perfil y no cualquier " "otra entrada en la misma pantalla." -#: src/modules/multiple-authors/multiple-authors.php:1480 +#: src/modules/multiple-authors/multiple-authors.php:1483 #, php-format msgid "" "If you are using the authors_recent layout, you can define the number of " @@ -2399,13 +2424,13 @@ msgstr "Si %1$s te gusta, por favor, déjanos una valoración de %2$s. ¡Gracias msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Si %s te gusta, por favor, déjanos una valoración de %s. ¡Gracias!" -#: src/core/Classes/Utils.php:1144 +#: src/core/Classes/Utils.php:1145 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si necesitas ayuda o tienes una petición de nueva característica, háznoslo " "saber." -#: src/modules/multiple-authors/multiple-authors.php:2566 +#: src/modules/multiple-authors/multiple-authors.php:2569 msgid "" "If you only have Guest Authors selected for a post, this user may be used as " "a fallback. WordPress sometimes requires a WordPress user to be assigned to " @@ -2421,11 +2446,11 @@ msgstr "" msgid "Import" msgstr "Importar" -#: src/modules/author-boxes/author-boxes.php:2163 +#: src/modules/author-boxes/author-boxes.php:2147 msgid "Import Data" msgstr "Importar datos" -#: src/modules/author-boxes/author-boxes.php:2152 +#: src/modules/author-boxes/author-boxes.php:2136 msgid "Import Editor Settings" msgstr "Importar los ajustes del editor" @@ -2439,7 +2464,7 @@ msgstr "Delante de avatar" msgid "Inline" msgstr "Integrado" -#: src/modules/multiple-authors/multiple-authors.php:1086 +#: src/modules/multiple-authors/multiple-authors.php:1089 msgid "Inline avatar legacy layout Author Box:" msgstr "Diseño integrado heredado de la caja de autor con avatar:" @@ -2447,7 +2472,7 @@ msgstr "Diseño integrado heredado de la caja de autor con avatar:" msgid "Inline Grouping" msgstr "Agrupación integrada" -#: src/modules/multiple-authors/multiple-authors.php:1078 +#: src/modules/multiple-authors/multiple-authors.php:1081 msgid "Inline legacy layout Author Box:" msgstr "Diseño integrado heredado de la caja de autor:" @@ -2465,11 +2490,11 @@ msgstr "Hundido" msgid "Install this plugin to showcase content by your Authors." msgstr "Instala este plugin para mostrar el contenido de tus autores." -#: src/modules/author-boxes/author-boxes.php:2162 +#: src/modules/author-boxes/author-boxes.php:2146 msgid "Invalid data" msgstr "Datos no validos" -#: src/modules/author-list/author-list.php:1081 +#: src/modules/author-list/author-list.php:1114 msgid "Invalid form" msgstr "Formulario no valido" @@ -2477,7 +2502,7 @@ msgstr "Formulario no valido" msgid "Invalid form data." msgstr "Datos del formulario no validos." -#: src/modules/multiple-authors/multiple-authors.php:3490 +#: src/modules/multiple-authors/multiple-authors.php:3493 msgid "Invalid nonce" msgstr "Nonce no válido" @@ -2485,7 +2510,7 @@ msgstr "Nonce no válido" msgid "is required" msgstr "Es obligatorio" -#: src/modules/multiple-authors/multiple-authors.php:4318 +#: src/modules/multiple-authors/multiple-authors.php:4321 msgid "It looks like you have Co-Authors Plus installed." msgstr "Parece que tienes instalado Co-Authors Plus." @@ -2513,22 +2538,22 @@ msgstr "Justificado" #: src/core/Authors_Widget.php:193 src/core/Classes/Author_Editor.php:363 #: src/modules/author-custom-fields/author-custom-fields.php:898 -#: src/modules/multiple-authors/multiple-authors.php:1971 +#: src/modules/multiple-authors/multiple-authors.php:1974 msgid "Last Name" msgstr "Apellidos" -#: src/modules/multiple-authors/multiple-authors.php:1969 +#: src/modules/multiple-authors/multiple-authors.php:1972 msgid "Last Name First Name" msgstr "Apellidos y nombre" #: src/core/Authors_Widget.php:131 src/core/Widget.php:123 -#: src/modules/author-list/author-list.php:347 +#: src/modules/author-list/author-list.php:363 #: src/modules/author-pages/author-pages.php:114 -#: src/modules/author-list/classes/AuthorListTable.php:88 +#: src/modules/author-list/classes/AuthorListTable.php:151 msgid "Layout" msgstr "Diseño" -#: src/modules/author-list/author-list.php:357 +#: src/modules/author-list/author-list.php:373 msgid "Layout Columns" msgstr "Columnas del diseño" @@ -2540,7 +2565,7 @@ msgstr "Slug del diseño" msgid "Layout Wrapper Class Name" msgstr "Nombre de la clase de envoltura de diseño" -#: src/modules/multiple-authors/multiple-authors.php:682 +#: src/modules/multiple-authors/multiple-authors.php:685 msgid "Layout:" msgstr "Diseño:" @@ -2582,7 +2607,7 @@ msgstr "Enlace de avatar" msgid "Link Rel" msgstr "Relación del enlace" -#: src/modules/multiple-authors/multiple-authors.php:1794 +#: src/modules/multiple-authors/multiple-authors.php:1797 msgid "List" msgstr "Listado" @@ -2603,11 +2628,11 @@ msgstr "Listado de autores integrado (categorías)" msgid "Lowercase" msgstr "Minúsculo" -#: src/modules/multiple-authors/multiple-authors.php:2904 +#: src/modules/multiple-authors/multiple-authors.php:2907 msgid "Maintenance" msgstr "Mantenimiento" -#: src/modules/multiple-authors/multiple-authors.php:3670 +#: src/modules/multiple-authors/multiple-authors.php:3673 msgid "Maintenance completed successfully." msgstr "El mantenimiento se ha completado correctamente." @@ -2652,7 +2677,7 @@ msgstr "Nombre" msgid "Name Row" msgstr "Fila del nombre" -#: src/core/Classes/Utils.php:1139 +#: src/core/Classes/Utils.php:1140 msgid "Need PublishPress Authors Support?" msgstr "¿Necesitas soporte para PublishPress Authors?" @@ -2676,7 +2701,7 @@ msgstr "Nuevo autor" msgid "New author added." msgstr "Nuevo autor añadido." -#: src/modules/author-boxes/author-boxes.php:2514 +#: src/modules/author-boxes/author-boxes.php:2498 msgid "New Author Categories Box" msgstr "Nueva caja de categorías de autores" @@ -2709,9 +2734,9 @@ msgstr "No se encontraron %2$s en la papelera" msgid "No author categories." msgstr "No hay categorías." -#: src/modules/author-list/classes/AuthorListTable.php:111 -msgid "No author list avaliable." -msgstr "No hay lista de autores disponible." +#: src/modules/author-list/classes/AuthorListTable.php:174 +msgid "No author list avaliable in the selected view." +msgstr "No hay lista de autores disponible en la vista seleccionada." #: src/core/Classes/Post_Editor.php:170 msgid "No author term" @@ -2741,7 +2766,7 @@ msgstr "" msgid "No posts without author terms were found" msgstr "No se han encontrado entradas sin términos de autor" -#: src/modules/author-boxes/author-boxes.php:1852 +#: src/modules/author-boxes/author-boxes.php:1838 msgid "No Recent Posts by this Author" msgstr "No hay entradas recientes de este autor" @@ -2802,7 +2827,7 @@ msgid "Number of comments" msgstr "Número de comentarios" #: src/modules/author-categories/author-categories.php:204 -#: src/modules/author-list/author-list.php:209 +#: src/modules/author-list/author-list.php:217 msgid "Number of items per page" msgstr "Número de elementos por página" @@ -2824,7 +2849,7 @@ msgstr "Abrir enlace en una nueva pestaña" msgid "Optional" msgstr "Opcional" -#: src/modules/author-list/author-list.php:308 +#: src/modules/author-list/author-list.php:324 msgid "Options" msgstr "Opciones" @@ -2877,11 +2902,11 @@ msgstr "Autor principal" msgid "Parent Author:" msgstr "Autor principal:" -#: src/modules/author-boxes/author-boxes.php:2153 +#: src/modules/author-boxes/author-boxes.php:2137 msgid "Paste the editor data from the \"Export\" tab on another site." msgstr "Pega los datos del editor desde la pestaña «Exportar» en otro sitio." -#: src/modules/multiple-authors/multiple-authors.php:2717 +#: src/modules/multiple-authors/multiple-authors.php:2720 msgid "" "Please be careful clicking these buttons. Before clicking, we recommend " "taking a site backup in case anything goes wrong." @@ -2890,7 +2915,7 @@ msgstr "" "recomendamos hacer una copia de seguridad del sitio para el caso de que algo " "vaya mal." -#: src/modules/multiple-authors/multiple-authors.php:4319 +#: src/modules/multiple-authors/multiple-authors.php:4322 msgid "Please click here and read this guide!" msgstr "¡Por favor, haz clic aquí y lee esta guía!" @@ -2915,13 +2940,13 @@ msgstr "" #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3793 -#: src/modules/multiple-authors/multiple-authors.php:3824 -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3796 +#: src/modules/multiple-authors/multiple-authors.php:3827 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Please, wait..." msgstr "Por favor, espera…" -#: src/modules/multiple-authors/multiple-authors.php:1241 +#: src/modules/multiple-authors/multiple-authors.php:1244 msgid "Plural" msgstr "Plural" @@ -2949,7 +2974,7 @@ msgstr "Integración de Polylang" msgid "Popular Authors" msgstr "Autores populares" -#: src/modules/author-boxes/author-boxes.php:2059 +#: src/modules/author-boxes/author-boxes.php:2045 msgid "Position" msgstr "Posición" @@ -2970,11 +2995,11 @@ msgstr "La entrada no existe" msgid "Post not found for the author" msgstr "No se ha encontrado la entrada del autor" -#: src/modules/author-boxes/author-boxes.php:1519 +#: src/modules/author-boxes/author-boxes.php:1505 msgid "Post preview" msgstr "Vista previa de la entrada" -#: src/modules/multiple-authors/multiple-authors.php:590 +#: src/modules/multiple-authors/multiple-authors.php:593 msgid "Post types to display on the author's profile page:" msgstr "Tipos de contenido a mostrar en la página de perfil del autor:" @@ -2984,12 +3009,12 @@ msgid "Posts" msgstr "Entradas" #. Posts by a given author. -#: src/functions/template-tags.php:1330 +#: src/functions/template-tags.php:1331 #, php-format msgid "Posts by %1$s" msgstr "Entradas de %1$s" -#: src/functions/template-tags.php:945 +#: src/functions/template-tags.php:946 #, php-format msgid "Posts by %s" msgstr "Entradas de %s" @@ -2999,8 +3024,8 @@ msgstr "Entradas de %s" msgid "Prev" msgstr "Anterior" -#: src/modules/author-list/author-list.php:296 -#: src/modules/author-list/author-list.php:415 +#: src/modules/author-list/author-list.php:312 +#: src/modules/author-list/author-list.php:431 msgid "Preview" msgstr "Vista previa" @@ -3032,14 +3057,14 @@ msgstr "" "PublishPress Authors te permite añadir múltiples autores y autores invitados " "a las entradas de WordPress" -#: src/modules/multiple-authors/multiple-authors.php:4391 +#: src/modules/multiple-authors/multiple-authors.php:4394 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" "PublishPress Authors necesita una actualización de la base de datos para la " "integración de Permissions." -#: src/modules/author-boxes/author-boxes.php:2522 +#: src/modules/author-boxes/author-boxes.php:2506 msgid "" "PublishPress Authors Pro allows you to unlock the full potential of Author " "Categories." @@ -3170,7 +3195,7 @@ msgstr "Recomendaciones para ti" #: src/core/Classes/Author_Editor.php:119 #: src/core/Classes/Author_Editor.php:697 -#: src/modules/author-list/author-list.php:945 +#: src/modules/author-list/author-list.php:977 msgid "Registered Author With User Account" msgstr "Autor registrado con cuenta de usuario" @@ -3180,30 +3205,30 @@ msgstr "Autor registrado con cuenta de usuario" msgid "Remove %1$s Image" msgstr "Elimina imagen %1$s" -#: src/modules/author-boxes/author-boxes.php:2315 +#: src/modules/author-boxes/author-boxes.php:2299 #, php-format msgid "Remove %1s" msgstr "Eliminar %1s" -#: src/core/Classes/Utils.php:1128 +#: src/core/Classes/Utils.php:1129 msgid "Remove PublishPress ads and branding" msgstr "Eliminar los anuncios y la marca de PublishPress" -#: src/modules/multiple-authors/multiple-authors.php:642 +#: src/modules/multiple-authors/multiple-authors.php:645 msgid "Remove single author map restriction:" msgstr "Eliminar la restricción de asignación única de autor: " #: src/core/Classes/Author_Editor.php:470 #: src/core/Classes/Author_Editor.php:519 -#: src/modules/multiple-authors/multiple-authors.php:2008 +#: src/modules/multiple-authors/multiple-authors.php:2011 msgid "Remove this image" msgstr "Eliminar esta imagen" -#: src/modules/author-boxes/author-boxes.php:2264 +#: src/modules/author-boxes/author-boxes.php:2248 msgid "Reorder Fields" msgstr "Reordenar los campos" -#: src/modules/author-boxes/author-boxes.php:2272 +#: src/modules/author-boxes/author-boxes.php:2256 msgid "" "Reorder the fields by dragging them to the correct position and saving your " "changes." @@ -3215,7 +3240,7 @@ msgstr "" msgid "Request status." msgstr "Estado de la solicitud." -#: src/core/Classes/Utils.php:1146 +#: src/core/Classes/Utils.php:1147 msgid "Request Support" msgstr "Solicitar soporte" @@ -3237,6 +3262,10 @@ msgstr "API REST" msgid "Rest API support" msgstr "Compatibilidad con la API REST" +#: src/modules/author-list/classes/AuthorListTable.php:372 +msgid "Restore" +msgstr "Restablecer" + #: src/modules/author-categories/author-categories.php:641 #: src/modules/author-categories/author-categories.php:643 msgid "Reviewer" @@ -3265,20 +3294,20 @@ msgstr "Crestas" msgid "Right" msgstr "Derecha" -#: src/modules/author-list/author-list.php:384 +#: src/modules/author-list/author-list.php:400 msgid "Roles" msgstr "Perfiles" -#: src/modules/author-list/author-list.php:732 -#: src/modules/author-list/author-list.php:739 +#: src/modules/author-list/author-list.php:760 +#: src/modules/author-list/author-list.php:767 msgid "Save Changes" msgstr "Guardar cambios" -#: src/modules/author-boxes/author-boxes.php:2290 +#: src/modules/author-boxes/author-boxes.php:2274 msgid "Save for All Author Boxes" msgstr "Guardar para «Todas las cajas de autor»" -#: src/modules/author-boxes/author-boxes.php:2286 +#: src/modules/author-boxes/author-boxes.php:2270 msgid "Save for Current Author Box" msgstr "Guardar para «Caja de autor actual»" @@ -3288,11 +3317,11 @@ msgstr "Guardar para «Caja de autor actual»" msgid "Schema Property" msgstr "Propiedad de schema" -#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:312 +#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:328 msgid "Search" msgstr "Buscar" -#: src/modules/author-boxes/author-boxes.php:2342 +#: src/modules/author-boxes/author-boxes.php:2326 #, php-format msgid "Search %1s Icon" msgstr "Icono de búsqueda de %1s" @@ -3307,7 +3336,7 @@ msgstr "Busca %2$s" msgid "Search Author Categories" msgstr "Buscar categorías de autores" -#: src/modules/author-list/author-list.php:277 +#: src/modules/author-list/author-list.php:293 msgid "Search Author Lists" msgstr "Buscar listas de autores" @@ -3323,12 +3352,12 @@ msgstr "Caja de búsqueda" msgid "Search for an author" msgstr "Buscar un autor" -#: src/core/Classes/Post_Editor.php:462 +#: src/core/Classes/Post_Editor.php:467 msgid "Search for an user" msgstr "Buscar un usuario" #. %s: search keywords -#: src/modules/author-list/author-list.php:268 +#: src/modules/author-list/author-list.php:284 #, php-format msgid "Search results for “%s”" msgstr "Resultados de la búsqueda de “%s”" @@ -3337,7 +3366,7 @@ msgstr "Resultados de la búsqueda de “%s”" #: src/modules/author-categories/author-categories.php:228 #: src/modules/author-categories/author-categories.php:311 #: src/modules/author-custom-fields/author-custom-fields.php:1005 -#: src/modules/author-list/author-list.php:1075 +#: src/modules/author-list/author-list.php:1108 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:41 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:89 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:131 @@ -3351,7 +3380,7 @@ msgid "Security error. Kindly reload this page and try again." msgstr "" "Error de seguridad. Por favor, recarga esta página e inténtalo de nuevo" -#: src/modules/author-boxes/author-boxes.php:2313 +#: src/modules/author-boxes/author-boxes.php:2297 #, php-format msgid "Select %1s" msgstr "Seleccionar %1s" @@ -3360,22 +3389,22 @@ msgstr "Seleccionar %1s" msgid "Select a user" msgstr "Selecciona un usuario" -#: src/modules/author-boxes/author-boxes.php:2578 +#: src/modules/author-boxes/author-boxes.php:2562 msgid "Select an author box" msgstr "Selecciona una caja de autor" #: src/core/CustomFieldsModel.php:115 -#: src/modules/author-list/author-list.php:330 +#: src/modules/author-list/author-list.php:346 msgid "Select an option" msgstr "Selecciona una opción" -#: src/modules/author-list/author-list.php:381 +#: src/modules/author-list/author-list.php:397 msgid "" -"Select an option to limit the results to selected user roles, author type or " -"specific authors." +"Select an option to limit the results to selected user roles, author types " +"or specific authors." msgstr "" "Selecciona una opción para limitar los resultados a los perfiles de usuario " -"seleccionados, al tipo de autor o a autores específicos." +"seleccionados, a los tipos de autor o a autores específicos." #: src/core/Classes/Author_Editor.php:742 msgid "Select Author Account" @@ -3383,23 +3412,23 @@ msgstr "Selecciona una cuenta de autor" #: src/core/Classes/Author_Editor.php:466 #: src/core/Classes/Author_Editor.php:515 -#: src/modules/multiple-authors/multiple-authors.php:2004 +#: src/modules/multiple-authors/multiple-authors.php:2007 msgid "Select image" msgstr "Selecciona una imagen" -#: src/modules/multiple-authors/multiple-authors.php:2096 -#: src/modules/multiple-authors/multiple-authors.php:2133 -#: src/modules/multiple-authors/multiple-authors.php:2170 -#: src/modules/multiple-authors/multiple-authors.php:2207 -#: src/modules/multiple-authors/multiple-authors.php:2244 +#: src/modules/multiple-authors/multiple-authors.php:2099 +#: src/modules/multiple-authors/multiple-authors.php:2136 +#: src/modules/multiple-authors/multiple-authors.php:2173 +#: src/modules/multiple-authors/multiple-authors.php:2210 +#: src/modules/multiple-authors/multiple-authors.php:2247 msgid "Select option" msgstr "Seleccionar una opción" -#: src/modules/author-boxes/author-boxes.php:1528 +#: src/modules/author-boxes/author-boxes.php:1514 msgid "Select Preview Post" msgstr "Selecciona la vista previa de la entrada" -#: src/modules/author-list/author-list.php:969 +#: src/modules/author-list/author-list.php:1001 msgid "Select Users" msgstr "Selecciona usuarios" @@ -3421,26 +3450,26 @@ msgstr "Separa los autores con comas" msgid "Set %1$s Image" msgstr "Establece la imagen %1$s" -#: src/modules/multiple-authors/multiple-authors.php:389 +#: src/modules/multiple-authors/multiple-authors.php:392 #: src/modules/settings/settings.php:105 msgid "Settings" msgstr "Ajustes" -#: src/modules/author-boxes/author-boxes.php:2162 -#: src/modules/author-boxes/author-boxes.php:2167 +#: src/modules/author-boxes/author-boxes.php:2146 +#: src/modules/author-boxes/author-boxes.php:2151 msgid "Settings Imported Successfully!" msgstr "¡Ajustes importados correctamente!" -#: src/modules/author-list/author-list.php:231 +#: src/modules/author-list/author-list.php:239 msgid "Settings updated successfully." msgstr "¡Ajustes actualizados correctamente!" #: src/modules/author-boxes/author-boxes.php:199 #: src/modules/author-boxes/author-boxes.php:973 -#: src/modules/author-boxes/author-boxes.php:2058 -#: src/modules/author-boxes/author-boxes.php:2071 -#: src/modules/author-list/author-list.php:749 -#: src/modules/author-list/classes/AuthorListTable.php:89 +#: src/modules/author-boxes/author-boxes.php:2044 +#: src/modules/author-boxes/author-boxes.php:2055 +#: src/modules/author-list/author-list.php:777 +#: src/modules/author-list/classes/AuthorListTable.php:152 msgid "Shortcode" msgstr "Shortcode" @@ -3449,7 +3478,7 @@ msgid "Shortcode documentation." msgstr "Documentación del shortcode." #: src/modules/author-boxes/author-boxes.php:1038 -#: src/modules/multiple-authors/multiple-authors.php:2903 +#: src/modules/multiple-authors/multiple-authors.php:2906 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1565 msgid "Shortcodes" msgstr "Shortcodes" @@ -3466,7 +3495,7 @@ msgstr "Muestra después" msgid "Show after an individual author" msgstr "Muestra después de un autor individual" -#: src/modules/multiple-authors/multiple-authors.php:786 +#: src/modules/multiple-authors/multiple-authors.php:789 msgid "Show author bio:" msgstr "Mostrar la biografía del autor:" @@ -3475,11 +3504,11 @@ msgstr "Mostrar la biografía del autor:" msgid "Show Author Categories" msgstr "Muestra categorías de autores" -#: src/modules/multiple-authors/multiple-authors.php:805 +#: src/modules/multiple-authors/multiple-authors.php:808 msgid "Show author page title:" msgstr "Mostrar el título de la página del autor:" -#: src/modules/multiple-authors/multiple-authors.php:887 +#: src/modules/multiple-authors/multiple-authors.php:890 msgid "Show authors:" msgstr "Mostrar los autores:" @@ -3495,7 +3524,7 @@ msgstr "Muestra antes de un autor individual" msgid "Show before author group" msgstr "Muestra antes de un grupo de autores" -#: src/modules/multiple-authors/multiple-authors.php:666 +#: src/modules/multiple-authors/multiple-authors.php:669 msgid "Show below the content:" msgstr "Mostrar debajo del contenido:" @@ -3507,11 +3536,11 @@ msgstr "Mostrar información biográfica" msgid "Show Box Title" msgstr "Mostrar título de la caja" -#: src/modules/multiple-authors/multiple-authors.php:920 +#: src/modules/multiple-authors/multiple-authors.php:923 msgid "Show category:" msgstr "Mostrar las categorías:" -#: src/modules/multiple-authors/multiple-authors.php:909 +#: src/modules/multiple-authors/multiple-authors.php:912 msgid "Show comment counts:" msgstr "Mostrar el recuento de comentarios:" @@ -3519,7 +3548,7 @@ msgstr "Mostrar el recuento de comentarios:" msgid "Show Display Name" msgstr "Mostrar el nombre a mostrar" -#: src/modules/multiple-authors/multiple-authors.php:707 +#: src/modules/multiple-authors/multiple-authors.php:710 msgid "Show email link:" msgstr "Mostrar el enlace del correo electrónico:" @@ -3527,19 +3556,19 @@ msgstr "Mostrar el enlace del correo electrónico:" msgid "Show Even if No Recent Post" msgstr "Muestra incluso si no hay entradas recientes" -#: src/modules/multiple-authors/multiple-authors.php:876 +#: src/modules/multiple-authors/multiple-authors.php:879 msgid "Show excerpt:" msgstr "Mostrar el extracto:" -#: src/modules/multiple-authors/multiple-authors.php:843 +#: src/modules/multiple-authors/multiple-authors.php:846 msgid "Show featured image:" msgstr "Mostrar la imagen destacada:" -#: src/modules/multiple-authors/multiple-authors.php:898 +#: src/modules/multiple-authors/multiple-authors.php:901 msgid "Show post date:" msgstr "Mostrar la fecha de publicación:" -#: src/modules/multiple-authors/multiple-authors.php:942 +#: src/modules/multiple-authors/multiple-authors.php:945 msgid "Show read more link:" msgstr "Mostrar el enlace para leer más:" @@ -3551,15 +3580,15 @@ msgstr "Muestra las entradas recientes" msgid "Show Recent Posts Title" msgstr "Mostrar título de las entradas recientes" -#: src/modules/multiple-authors/multiple-authors.php:715 +#: src/modules/multiple-authors/multiple-authors.php:718 msgid "Show site link:" msgstr "Mostrar el enlace del sitio:" -#: src/modules/multiple-authors/multiple-authors.php:931 +#: src/modules/multiple-authors/multiple-authors.php:934 msgid "Show tags:" msgstr "Mostrar las etiquetas:" -#: src/modules/multiple-authors/multiple-authors.php:609 +#: src/modules/multiple-authors/multiple-authors.php:612 msgid "Show username in the search field:" msgstr "Mostrar el nombre de usuario en el campo de búsqueda:" @@ -3571,7 +3600,7 @@ msgstr "Muestra tus autores con PublishPress Blocks" msgid "Simple List" msgstr "Lista simple" -#: src/modules/multiple-authors/multiple-authors.php:1094 +#: src/modules/multiple-authors/multiple-authors.php:1097 msgid "Simple list legacy layout Author Box:" msgstr "Diseño sencillo de lista heredada de la caja de autor:" @@ -3583,7 +3612,7 @@ msgstr "Nombre simple de autores en bloque (categorías)" msgid "Simple Name Authors Inline (Categories)" msgstr "Nombre simple de autores integrado (categorías)" -#: src/modules/multiple-authors/multiple-authors.php:1234 +#: src/modules/multiple-authors/multiple-authors.php:1237 msgid "Single" msgstr "Singular" @@ -3653,7 +3682,7 @@ msgstr "" msgid "span" msgstr "span" -#: src/modules/author-list/author-list.php:757 +#: src/modules/author-list/author-list.php:785 msgid "Static Shortcode" msgstr "Shortcode estático" @@ -3661,24 +3690,24 @@ msgstr "Shortcode estático" msgid "Status" msgstr "Estado" -#: src/core/Classes/Utils.php:1127 +#: src/core/Classes/Utils.php:1128 msgid "Support for Polylang" msgstr "Compatibile con Polylang" #: src/core/Classes/Author_Editor.php:805 -#: src/modules/multiple-authors/multiple-authors.php:3789 +#: src/modules/multiple-authors/multiple-authors.php:3792 msgid "Sync author and user fields" msgstr "Sincroniza los campos de autor y usuario" -#: src/modules/multiple-authors/multiple-authors.php:3820 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Sync author and user URLs" msgstr "Sincroniza las URL de autor y de usuario" -#: src/modules/multiple-authors/multiple-authors.php:2673 +#: src/modules/multiple-authors/multiple-authors.php:2676 msgid "Synchronize PublishPress Authors Fields and user profile fields" msgstr "Sincronizar los campos de PublishPress Authors y el perfil del usuario" -#: src/modules/multiple-authors/multiple-authors.php:2680 +#: src/modules/multiple-authors/multiple-authors.php:2683 msgid "Synchronize the author and user URLs" msgstr "Sincroniza las URL de autor y de usuario" @@ -3692,7 +3721,7 @@ msgctxt "taxonomy singular name" msgid "Author" msgstr "Autor" -#: src/modules/author-boxes/author-boxes.php:2222 +#: src/modules/author-boxes/author-boxes.php:2206 msgid "Template generated successfuly!" msgstr "¡La plantilla ha sido generada correctamente!" @@ -3700,7 +3729,7 @@ msgstr "¡La plantilla ha sido generada correctamente!" msgid "Text" msgstr "Texto" -#: src/modules/multiple-authors/multiple-authors.php:1351 +#: src/modules/multiple-authors/multiple-authors.php:1354 #, php-format msgid "" "The authors data shortcode accepts field parameter such as: %1$s %2$s %3$s " @@ -3731,7 +3760,7 @@ msgstr "Tema" msgid "There are no PublishPress modules registered" msgstr "No hay módulos de PublishPress registrados" -#: src/modules/multiple-authors/multiple-authors.php:1323 +#: src/modules/multiple-authors/multiple-authors.php:1326 #, php-format msgid "" "There is one final option to mention. This is mostly useful if you're using " @@ -3746,7 +3775,7 @@ msgstr "" "siguiente shortcode en la página de autores para mostrar el perfil del autor " "actual. Solo tienes que añadir el parámetro %s." -#: src/modules/multiple-authors/multiple-authors.php:2017 +#: src/modules/multiple-authors/multiple-authors.php:2020 msgid "" "This avatar will be used as default avatar instead of gravatar where no " "custom avatar is added to profile." @@ -3785,7 +3814,7 @@ msgstr "" "usuario asignado, esta URL se obtiene de la cuenta del usuario y no se puede " "modificar." -#: src/modules/author-list/author-list.php:1010 +#: src/modules/author-list/author-list.php:1042 msgid "" "This is a quick preview of this Author List. Test on frontend pages to see " "exactly how it looks with your theme." @@ -3793,11 +3822,11 @@ msgstr "" "Esta es una vista previa rápida de esta «Lista de autores». Pruébalo en las " "páginas de la vista pública para ver exactamente cómo se ve con tu tema." -#: src/modules/multiple-authors/multiple-authors.php:2108 -#: src/modules/multiple-authors/multiple-authors.php:2145 -#: src/modules/multiple-authors/multiple-authors.php:2182 -#: src/modules/multiple-authors/multiple-authors.php:2219 -#: src/modules/multiple-authors/multiple-authors.php:2256 +#: src/modules/multiple-authors/multiple-authors.php:2111 +#: src/modules/multiple-authors/multiple-authors.php:2148 +#: src/modules/multiple-authors/multiple-authors.php:2185 +#: src/modules/multiple-authors/multiple-authors.php:2222 +#: src/modules/multiple-authors/multiple-authors.php:2259 #, php-format msgid "This is useful if you use legacy shortcode %s" msgstr "Esto es útil si utilizas el shortcode heredado %s" @@ -3819,7 +3848,7 @@ msgstr "" "Este nombre se usa en varias visualizaciones por defecto y algunas " "integraciones con motores de búsqueda." -#: src/core/Classes/Post_Editor.php:454 +#: src/core/Classes/Post_Editor.php:459 msgid "" "This option is showing because you do not have a WordPress user selected as " "an author. For some tasks, it can be helpful to have a user selected here. " @@ -3833,13 +3862,13 @@ msgstr "" msgid "This plugin can be deleted." msgstr "Este plugin puede ser borrado." -#: src/modules/multiple-authors/multiple-authors.php:2530 +#: src/modules/multiple-authors/multiple-authors.php:2533 msgid "This setting may be disabled for users who can not edit others posts." msgstr "" "Este ajuste puede estar desactivado para los usuarios que no pueden editar " "las entradas de otros." -#: src/modules/multiple-authors/multiple-authors.php:2348 +#: src/modules/multiple-authors/multiple-authors.php:2351 msgid "" "This will allows you map a WordPress user to more than one author. Don't use " "this feature unless requested to do so by the PublishPress team. This plugin " @@ -3857,89 +3886,89 @@ msgstr "" "Esto mostrará al autor en un formato integrado, uno al lado del otro, en " "lugar del formato de bloque." -#: src/modules/multiple-authors/multiple-authors.php:2300 +#: src/modules/multiple-authors/multiple-authors.php:2303 msgid "This will display author page title." msgstr "Esto mostrará el título de la página del autor." -#: src/modules/multiple-authors/multiple-authors.php:2039 +#: src/modules/multiple-authors/multiple-authors.php:2042 msgid "This will display the author bio." msgstr "Esto mostrará la biografía del autor." -#: src/modules/multiple-authors/multiple-authors.php:1209 +#: src/modules/multiple-authors/multiple-authors.php:1212 msgid "This will display the authors box at the end of the content." msgstr "Esto mostrará la caja de autores al final del contenido." -#: src/modules/multiple-authors/multiple-authors.php:2584 +#: src/modules/multiple-authors/multiple-authors.php:2587 msgid "This will display the authors email in the author box." msgstr "Esto mostrará el correo electrónico del autor en la caja de autor." -#: src/modules/multiple-authors/multiple-authors.php:2604 +#: src/modules/multiple-authors/multiple-authors.php:2607 msgid "This will display the authors site in the author box." msgstr "Esto mostrará el sitio del autor en la caja de autor." -#: src/modules/multiple-authors/multiple-authors.php:2372 +#: src/modules/multiple-authors/multiple-authors.php:2375 msgid "This will display the authors." msgstr "Esto mostrará los autores." -#: src/modules/multiple-authors/multiple-authors.php:2444 +#: src/modules/multiple-authors/multiple-authors.php:2447 msgid "This will display the categories." msgstr "Esto mostrará las categorías." -#: src/modules/multiple-authors/multiple-authors.php:2420 +#: src/modules/multiple-authors/multiple-authors.php:2423 msgid "This will display the comment count." msgstr "Esto mostrará el recuento de comentarios." -#: src/modules/multiple-authors/multiple-authors.php:2324 +#: src/modules/multiple-authors/multiple-authors.php:2327 msgid "This will display the excerpt." msgstr "Esto mostrará el extracto." -#: src/modules/multiple-authors/multiple-authors.php:2276 +#: src/modules/multiple-authors/multiple-authors.php:2279 msgid "This will display the featured image." msgstr "Esto mostrará la imagen destacada." -#: src/modules/multiple-authors/multiple-authors.php:2396 +#: src/modules/multiple-authors/multiple-authors.php:2399 msgid "This will display the published date." msgstr "Esto mostrará la fecha de publicación." -#: src/modules/multiple-authors/multiple-authors.php:2492 +#: src/modules/multiple-authors/multiple-authors.php:2495 msgid "This will display the read more link." msgstr "Esto mostrará el enlace para leer más." -#: src/modules/multiple-authors/multiple-authors.php:2468 +#: src/modules/multiple-authors/multiple-authors.php:2471 msgid "This will display the tags." msgstr "Esto mostrará las etiquetas." -#: src/modules/multiple-authors/multiple-authors.php:2624 +#: src/modules/multiple-authors/multiple-authors.php:2627 msgid "This will load Font Awesome icons for use in Author Boxes." msgstr "" "Esto cargará los iconos de Font Awesome para usarlos en las cajas de autor." -#: src/modules/multiple-authors/multiple-authors.php:2642 +#: src/modules/multiple-authors/multiple-authors.php:2645 msgid "This will remove the Authors Box in \"Quick Edit\"." msgstr "Esto eliminará la caja de autores en «Edición rápida»." -#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:338 +#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:354 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1214 -#: src/modules/author-list/classes/AuthorListTable.php:87 +#: src/modules/author-list/classes/AuthorListTable.php:150 msgid "Title" msgstr "Título" -#: src/modules/multiple-authors/multiple-authors.php:690 +#: src/modules/multiple-authors/multiple-authors.php:693 msgid "Title for the author box:" msgstr "Título para la caja del autor:" -#: src/modules/multiple-authors/multiple-authors.php:1524 +#: src/modules/multiple-authors/multiple-authors.php:1527 #, php-format msgid "To display a search box for authors, use %1$s ." msgstr "Para mostrar una caja de búsqueda de autores, utiliza %1$s ." -#: src/modules/multiple-authors/multiple-authors.php:1513 +#: src/modules/multiple-authors/multiple-authors.php:1516 #, php-format msgid "To further customize the order of results, use %1$s or %2$s ." msgstr "" "Para personalizar aún más el orden de los resultados, utiliza %1$s o %2$s ." -#: src/modules/multiple-authors/multiple-authors.php:1500 +#: src/modules/multiple-authors/multiple-authors.php:1503 #, php-format msgid "" "To order the results based on post count, use %1$s . To order the results by " @@ -3950,6 +3979,17 @@ msgstr "" "Para ordenar los resultados por nombre, utiliza %2$s. También puedes ordenar " "por campos del perfil como %3$s, %4$s, etc" +#: src/modules/author-list/classes/AuthorListTable.php:356 +msgid "Trash" +msgstr "Papelera" + +#: src/modules/author-list/classes/AuthorListTable.php:65 +#, php-format +msgid "Trash %s" +msgid_plural "Trash %s" +msgstr[0] "Papelera %s" +msgstr[1] "Papelera %s" + #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:577 msgid "Two Columns (Categories)" msgstr "Dos columnas (categorías)" @@ -3991,26 +4031,26 @@ msgstr "Actualizar el recuento de entradas" msgid "Updated %d authors" msgstr "Actualizado(s) %d autor(es)" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3829 msgid "Updated %d of %d authors..." msgstr "Actualizado %d de %d autores..." -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3798 msgid "Updated %d of %d posts..." msgstr "Actualizado %d de %d entradas…" -#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3797 msgid "Updating author field on posts..." msgstr "Actualizando el campo de autor en las entradas…" -#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3828 msgid "Updating authors slug..." msgstr "Actualizando el slug de los autores…" -#: includes.php:63 src/core/Classes/Utils.php:1132 -#: src/modules/author-boxes/author-boxes.php:2527 +#: includes.php:63 src/core/Classes/Utils.php:1133 +#: src/modules/author-boxes/author-boxes.php:2511 #: src/modules/author-custom-fields/author-custom-fields.php:951 -#: src/modules/author-list/author-list.php:1033 +#: src/modules/author-list/author-list.php:1065 msgid "Upgrade to Pro" msgstr "Actualizar a Pro" @@ -4040,7 +4080,7 @@ msgstr "" "Utiliza el bloque de visualización de contenidos para mostrar tus " "publicaciones en muchos y hermosos diseños." -#: src/modules/author-list/author-list.php:304 +#: src/modules/author-list/author-list.php:320 msgid "Users" msgstr "Usuarios" @@ -4062,8 +4102,8 @@ msgstr "Muestra %1$s" msgid "View All Posts" msgstr "Ver todas las entradas" -#: src/modules/author-boxes/author-boxes.php:1825 -#: src/modules/author-boxes/author-boxes.php:1826 +#: src/modules/author-boxes/author-boxes.php:1811 +#: src/modules/author-boxes/author-boxes.php:1812 #: src/modules/default-layouts/default-layouts.php:105 msgid "View all posts" msgstr "Ver todas las entradas" @@ -4120,20 +4160,20 @@ msgstr "Fila de «Ver todas las entradas»" msgid "View Author" msgstr "Ver el autor" -#: src/modules/multiple-authors/multiple-authors.php:1773 -msgid "View Author Page" -msgstr "Ver página del autor" - -#: src/core/Classes/Utils.php:1157 +#: src/core/Classes/Utils.php:1158 msgid "View Knowledge Base" msgstr "Ver la base de conocimientos" +#: src/modules/multiple-authors/multiple-authors.php:1776 +msgid "View sample Author Page" +msgstr "Ver página de autor de muestra" + #: src/core/Classes/Author_Editor.php:394 #: src/modules/author-custom-fields/author-custom-fields.php:914 msgid "Website" msgstr "Web" -#: src/modules/multiple-authors/multiple-authors.php:1262 +#: src/modules/multiple-authors/multiple-authors.php:1265 msgid "" "With this shortcode you can display the author box in any part of the " "content. " @@ -4141,7 +4181,7 @@ msgstr "" "Con este shortcode puedes mostrar la caja de autor en cualquier parte del " "contenido. " -#: src/modules/multiple-authors/multiple-authors.php:1343 +#: src/modules/multiple-authors/multiple-authors.php:1346 msgid "" "With this shortcode you can display the author names or any profile field in " "any part of the content." @@ -4149,7 +4189,7 @@ msgstr "" "Con este shortcode puedes mostrar los nombres de los autores o cualquier " "campo del perfil en cualquier parte del contenido." -#: src/modules/multiple-authors/multiple-authors.php:1412 +#: src/modules/multiple-authors/multiple-authors.php:1415 msgid "" "With this shortcode, you can show all the authors together in a single " "display." @@ -4173,7 +4213,7 @@ msgstr "Sí, esto es un perfil social" msgid "Yoast SEO Integration" msgstr "Integración de Yoast SEO" -#: src/modules/multiple-authors/multiple-authors.php:1390 +#: src/modules/multiple-authors/multiple-authors.php:1393 #, php-format msgid "" "You can also decide to return an array list of authors by using " @@ -4185,7 +4225,7 @@ msgstr "" "un array. Puedes consultar todos los detalles y ejemplos de uso %2$s en esta " "guía%3$s." -#: src/modules/multiple-authors/multiple-authors.php:1281 +#: src/modules/multiple-authors/multiple-authors.php:1284 #, php-format msgid "" "You can also decide whether or not to show the main title, using %1$s or " @@ -4194,7 +4234,7 @@ msgstr "" "También puedes decidir si mostrar o no el título principal, utilizando %1$s " "o %2$s." -#: src/modules/multiple-authors/multiple-authors.php:1534 +#: src/modules/multiple-authors/multiple-authors.php:1537 #, php-format msgid "" "You can also show a dropdown menu that allows users to search on specific " @@ -4205,14 +4245,14 @@ msgstr "" "campos específicos del autor. Puedes añadir campos al desplegable usando " "%1$s . Esto requiere que la caja de búsqueda esté activa." -#: src/modules/multiple-authors/multiple-authors.php:1368 +#: src/modules/multiple-authors/multiple-authors.php:1371 msgid "" "You can also specify the separator to be used for mulitple authors data." msgstr "" "También puedes especificar el separador a usar para los datos de autores " "múltiples." -#: src/modules/multiple-authors/multiple-authors.php:1445 +#: src/modules/multiple-authors/multiple-authors.php:1448 #, php-format msgid "" "You can choose the number of authors per page using %1$s . %2$s Pagination " @@ -4221,13 +4261,13 @@ msgstr "" "Puedes elegir el número de autores por página usando %1$s . %2$s La " "paginación se añadirá automáticamente si es necesario." -#: src/modules/author-boxes/author-boxes.php:2524 +#: src/modules/author-boxes/author-boxes.php:2508 msgid "" "You can create Author Boxes where Authors are grouped into their categories." msgstr "" "Puedes crear cajas de autor con los autores agrupados en sus categorías." -#: src/modules/multiple-authors/multiple-authors.php:1435 +#: src/modules/multiple-authors/multiple-authors.php:1438 #, php-format msgid "" "You can define the number of layout columns by using %1$s to show authors in " @@ -4236,7 +4276,7 @@ msgstr "" "Puedes definir el número de columnas del diseño usando %1$s para mostrar los " "autores en 2 columnas." -#: src/modules/multiple-authors/multiple-authors.php:1544 +#: src/modules/multiple-authors/multiple-authors.php:1547 #, php-format msgid "" "You can limit the author list to users with a published post within a " @@ -4247,7 +4287,7 @@ msgstr "" "durante un periodo específico usando %1$s. Esto acepta valores de datos en " "inglés, como «1 week ago», «1 month ago», «6 months ago», «1 year ago» , etc." -#: src/modules/multiple-authors/multiple-authors.php:1456 +#: src/modules/multiple-authors/multiple-authors.php:1459 #, php-format msgid "" "You can limit the result to only authors who are assigned to posts by using " @@ -4258,7 +4298,7 @@ msgstr "" "entradas utilizando %1$s . %2$s Alternativamente, usa %3$s para mostrar " "todos los autores, incluyendo los que no tienen ninguna entrada." -#: src/modules/multiple-authors/multiple-authors.php:1468 +#: src/modules/multiple-authors/multiple-authors.php:1471 #, php-format msgid "" "You can limit the result to only guest authors by using %1$s . %2$s " @@ -4267,7 +4307,7 @@ msgstr "" "Puedes limitar el resultado a solo los autores invitados usando %1$s . %2$s " "Alternativamente, %3$s mostrará solo los autores con una cuenta de WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1332 +#: src/modules/multiple-authors/multiple-authors.php:1335 msgid "" "You can load the authors belonging to a specific author categories by " "providing the category slug or slugs separated by comma for more than one " @@ -4277,7 +4317,7 @@ msgstr "" "proporcionando el slug de la categoría o slugs separados por comas para más " "de una categoría." -#: src/modules/multiple-authors/multiple-authors.php:1305 +#: src/modules/multiple-authors/multiple-authors.php:1308 msgid "" "You can load the authors for a specific author by providing the author term " "id for both guest and user author. For example, this shortcode will load the " @@ -4287,8 +4327,8 @@ msgstr "" "término autor tanto para el autor invitado como para el autor usuario. Por " "ejemplo, este shortcode cargará el autor con el término id de 32" -#: src/modules/multiple-authors/multiple-authors.php:1291 -#: src/modules/multiple-authors/multiple-authors.php:1375 +#: src/modules/multiple-authors/multiple-authors.php:1294 +#: src/modules/multiple-authors/multiple-authors.php:1378 msgid "" "You can load the authors for a specific post, even if you are not in that " "post currently. For example, this shortcode will load the authors for the " @@ -4298,7 +4338,7 @@ msgstr "" "esa entrada en ese momento. Por ejemplo, este shortcode cargará los autores " "de la entrada con el ID 32." -#: src/modules/multiple-authors/multiple-authors.php:1298 +#: src/modules/multiple-authors/multiple-authors.php:1301 msgid "" "You can load the authors for a specific user by providing the user id. For " "example, this shortcode will load the author with user id of 32" @@ -4307,7 +4347,7 @@ msgstr "" "usuario. Por ejemplo, este shortcode cargará el autor con el ID de usuario " "de 32" -#: src/modules/multiple-authors/multiple-authors.php:1382 +#: src/modules/multiple-authors/multiple-authors.php:1385 msgid "" "You can retrieve a specific author by providing the author's term ID. For " "example, this shortcode will load the author with the term ID of 102." @@ -4315,7 +4355,7 @@ msgstr "" "Puedes recuperar un autor específico proporcionando el ID del término del " "autor. Por ejemplo, este shortcode cargará el autor con el término ID 102." -#: src/modules/multiple-authors/multiple-authors.php:1401 +#: src/modules/multiple-authors/multiple-authors.php:1404 msgid "" "You can retrieve authors belonging to a specific Author Category by " "providing the category slug or slugs. Separate multiple slugs with a comma." @@ -4332,7 +4372,7 @@ msgstr "" "Puedes especificar un separador como `,` para separar autores. Este campo " "acepta HTML básico." -#: src/modules/multiple-authors/multiple-authors.php:1270 +#: src/modules/multiple-authors/multiple-authors.php:1273 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4342,7 +4382,7 @@ msgstr "" "autor. Puedes ver todos los detalles de cada opción de diseño %1$s en esta " "guía %2$s." -#: src/modules/multiple-authors/multiple-authors.php:1420 +#: src/modules/multiple-authors/multiple-authors.php:1423 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4354,11 +4394,12 @@ msgstr "" "guía %2$s. %3$s %4$s Este shortcode también proporciona dos diseños " "personalizados: %5$s %6$s." -#: src/modules/author-boxes/author-boxes.php:2128 +#: src/modules/author-boxes/author-boxes.php:2112 #, php-format -msgid "You can use basic html as prefixes in short code, for example: %1s." +msgid "You can use basic HTML in this field. For example: Read Time %1s." msgstr "" -"Puede utilizar HTML básico como prefijos en shortcode, por ejemplo: %1s." +"Puedes utilizar HTML básico en este campo. Por ejemplo: Tiempo de lectura " +"%1s." #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:858 #, php-format @@ -4374,7 +4415,7 @@ msgid "You can use multiple class names. Leave a space between each class." msgstr "" "Puedes utilizar varios nombres de clase. Deja un espacio entre cada clase." -#: src/modules/author-boxes/author-boxes.php:2133 +#: src/modules/author-boxes/author-boxes.php:2117 msgid "" "You can use this data to export your author box design and import it to a " "new site." @@ -4408,6 +4449,26 @@ msgstr "" "Estás usando PublishPress Authors Free. La versión Pro tiene más funciones y " "soporte. %sMejorar a Pro%s" +#~ msgid "" +#~ "Authors Pro allows you to set Author Lists pagination using number of " +#~ "authors to show per page, ability to show or hide authors without without " +#~ "any posts, order authors by their published post counts, names and limit " +#~ "the author results to users with a published post within a specific time." +#~ msgstr "" +#~ "Autores Pro te permite añadir características extra a la «Lista de " +#~ "Autores». Estas características incluyen la paginación, elegir el orden " +#~ "de los autores, y mucho más." + +#~ msgid "" +#~ "Authors Pro allows you to show search box and search through author " +#~ "fields." +#~ msgstr "" +#~ "Autores Pro te permite mostrar la caja de búsqueda y buscar a través de " +#~ "los campos de autor." + +#~ msgid "Convert into guest author" +#~ msgstr "Convertir en autor invitado" + #~ msgid "Border color" #~ msgstr "Color del borde" diff --git a/languages/publishpress-authors-fr_FR.mo b/languages/publishpress-authors-fr_FR.mo index ba11b0e822f6bbb68731474342da934c061030c8..db1bec5217daa58124c5c7b5e3d7a33903b914dd 100644 GIT binary patch delta 19705 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 1;\n" "X-Generator: Poedit 3.4.4\n" -#: src/functions/template-tags.php:794 src/functions/template-tags.php:1415 +#: src/functions/template-tags.php:795 src/functions/template-tags.php:1416 msgid " and " msgstr " et " @@ -124,7 +124,7 @@ msgstr "Valeur préfixe %1s" msgid "%1s Weight" msgstr "Poids du %1s" -#: src/functions/template-tags.php:642 +#: src/functions/template-tags.php:643 #, php-format msgid "%1sView all posts%2s by %3s" msgstr "%1sVoir toutes les publications%2s de %3s" @@ -184,7 +184,7 @@ msgstr "" "(Utilise le champ %1s E-mail %2s pour trouver le compte Gravatar si l’avatar " "par défaut n’est pas téléchargé dans les réglages des auteurs/autrices)" -#: src/functions/template-tags.php:1416 +#: src/functions/template-tags.php:1417 msgid ", and " msgstr ", et " @@ -292,12 +292,11 @@ msgstr "[]" msgid "About" msgstr "À propos" -#: src/modules/multiple-authors/multiple-authors.php:3494 +#: src/modules/multiple-authors/multiple-authors.php:3497 msgid "Access denied" msgstr "Accès refusé" -#: src/modules/author-boxes/author-boxes.php:2060 -#| msgid "Active" +#: src/modules/author-boxes/author-boxes.php:2046 msgid "Action" msgstr "Action" @@ -306,7 +305,7 @@ msgstr "Action" msgid "Active" msgstr "Actif" -#: src/modules/author-boxes/author-boxes.php:2090 +#: src/modules/author-boxes/author-boxes.php:2074 msgid "Add" msgstr "Ajouter" @@ -331,7 +330,7 @@ msgstr "Ajouter auteur/autrice" msgid "Add Author Category" msgstr "Ajouter une catégorie d’auteur/autrice" -#: src/modules/author-list/author-list.php:661 +#: src/modules/author-list/author-list.php:689 msgid "Add Author List" msgstr "Ajouter liste d’auteur/autrice" @@ -403,7 +402,7 @@ msgstr "Ajouter une option de migration pour Byline" msgid "Add migration option for Bylines" msgstr "Ajouter une option de migration pour Bylines" -#: src/modules/author-list/author-list.php:263 +#: src/modules/author-list/author-list.php:279 msgid "Add New" msgstr "Ajouter" @@ -425,7 +424,7 @@ msgstr "Ajoutez des nouveaux champs d’auteur/autrice" msgid "Add or remove authors" msgstr "Ajouter ou supprimer des auteurs/autrices" -#: src/modules/author-list/author-list.php:406 +#: src/modules/author-list/author-list.php:422 msgid "Add Search Box to Author Lists" msgstr "Ajouter un champ de recherche aux listes d’auteurs/autrices" @@ -439,8 +438,8 @@ msgstr "Ajoutez la prise en charge des boîtes d’auteur/autrice." msgid "Add support for author categories." msgstr "Ajoutez la prise en charge des catégories d’auteur/autrice." -#: src/modules/author-list/author-list.php:57 -#: src/modules/author-list/author-list.php:61 +#: src/modules/author-list/author-list.php:65 +#: src/modules/author-list/author-list.php:69 msgid "Add support for author list." msgstr "Ajouter la prise en charge des listes d’auteur/autrice." @@ -460,11 +459,11 @@ msgstr "" msgid "Adding the author term %d to the post %d" msgstr "Ajout du terme auteur ou autrice %d à la publication %d" -#: src/modules/multiple-authors/multiple-authors.php:2905 +#: src/modules/multiple-authors/multiple-authors.php:2908 msgid "Advanced" msgstr "Avancé" -#: src/modules/author-boxes/author-boxes.php:2050 +#: src/modules/author-boxes/author-boxes.php:2036 msgid "After All Authors" msgstr "Après tous les auteurs/autrices" @@ -472,20 +471,27 @@ msgstr "Après tous les auteurs/autrices" msgid "After Avatar" msgstr "Après l’avatar" -#: src/modules/author-boxes/author-boxes.php:2049 +#: src/modules/author-boxes/author-boxes.php:2035 msgid "After Biographical Info Row" msgstr "Après la ligne d’information biographique" -#: src/modules/author-boxes/author-boxes.php:2048 +#: src/modules/author-boxes/author-boxes.php:2034 msgid "After Name Row" msgstr "Après la ligne du nom" -#: src/modules/author-boxes/author-boxes.php:2047 +#: src/modules/author-boxes/author-boxes.php:2033 msgid "After View all posts Row" msgstr "Après la ligne de « Voir toutes les publications »" +#: src/modules/author-list/classes/AuthorListTable.php:64 +#, php-format +msgid "All %s" +msgid_plural "All %s" +msgstr[0] "Tous %s" +msgstr[1] "Tous %s" + #: src/core/Authors_Widget.php:181 src/core/Authors_Widget.php:412 -#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:504 +#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:509 msgid "All Authors" msgstr "Tous les auteurs et autrices" @@ -501,17 +507,17 @@ msgstr "Tout est réglé. Aucun auteur ou autrice n’a besoin d’être mis à msgid "All is set. No posts need to be updated" msgstr "Tout est réglé. Aucun publication ne doit être mise à jour" -#: src/modules/multiple-authors/multiple-authors.php:1733 +#: src/modules/multiple-authors/multiple-authors.php:1736 msgid "Allow authors to be created without a mapped user." msgstr "Vous permet de créer des auteurs sans utilisateur/utilisatrice mappé." -#: src/modules/multiple-authors/multiple-authors.php:1710 +#: src/modules/multiple-authors/multiple-authors.php:1713 msgid "Allow authors to be created without a real user account." msgstr "" "Permettre la création d’auteurs/autrices sans compte d’utilisateur/" "utilisatrices réel." -#: src/modules/multiple-authors/multiple-authors.php:1967 +#: src/modules/multiple-authors/multiple-authors.php:1970 msgid "Allow User to Choose" msgstr "Permettre à l’utilisateur de choisir" @@ -530,7 +536,7 @@ msgstr "Un compte avec le nom fourni existe déjà." #: src/modules/author-categories/author-categories.php:366 #: src/modules/author-categories/author-categories.php:374 #: src/modules/author-custom-fields/author-custom-fields.php:998 -#: src/modules/author-list/author-list.php:1068 +#: src/modules/author-list/author-list.php:1101 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:34 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:82 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:124 @@ -603,13 +609,13 @@ msgstr "Auteur/Autrice" msgid "Author Bio" msgstr "Biographie de l’auteur ou autrice" -#: src/modules/multiple-authors/multiple-authors.php:797 +#: src/modules/multiple-authors/multiple-authors.php:800 msgid "Author bio layout:" msgstr "Mise en page de la bio de l’auteur ou autrice :" #: src/modules/author-boxes/author-boxes.php:397 #: src/modules/author-boxes/author-boxes.php:499 -#: src/modules/author-boxes/author-boxes.php:2577 +#: src/modules/author-boxes/author-boxes.php:2561 msgid "Author Box" msgstr "Boîte d’auteur" @@ -729,7 +735,7 @@ msgstr "Largeur de la boîte d’auteur/autrice (%)" #: src/modules/author-boxes/author-boxes.php:456 #: src/modules/author-boxes/author-boxes.php:457 #: src/modules/author-boxes/author-boxes.php:500 -#: src/modules/multiple-authors/multiple-authors.php:2900 +#: src/modules/multiple-authors/multiple-authors.php:2903 msgid "Author Boxes" msgstr "Boîtes d’auteurs et autrices" @@ -851,7 +857,7 @@ msgstr "Champs d’auteurs ou autrices" msgid "Author Grouping Title Option" msgstr "Option du titre du regroupement d’auteurs/autrices" -#: src/modules/author-list/author-list.php:497 +#: src/modules/author-list/author-list.php:513 msgid "Author Index List" msgstr "Liste d’index des auteurs/autrices" @@ -859,19 +865,27 @@ msgstr "Liste d’index des auteurs/autrices" msgid "Author inline display" msgstr "Affichage de l’auteur en ligne" -#: src/modules/author-list/author-list.php:56 -#: src/modules/author-list/author-list.php:631 +#: src/modules/author-list/author-list.php:64 +#: src/modules/author-list/author-list.php:659 msgid "Author List" msgstr "Liste des auteurs/autrices" -#: src/modules/author-list/author-list.php:235 +#: src/modules/author-list/author-list.php:243 msgid "Author List deleted successfully." msgstr "La liste des auteurs/autrices a bien été supprimée." -#: src/modules/author-list/author-list.php:188 -#: src/modules/author-list/author-list.php:189 -#: src/modules/author-list/author-list.php:257 -#: src/modules/author-list/author-list.php:676 +#: src/modules/author-list/author-list.php:251 +msgid "Author List moved to the Trash." +msgstr "Liste d’auteurs mise à la corbeille." + +#: src/modules/author-list/author-list.php:247 +msgid "Author List restored from the Trash." +msgstr "Liste d’auteurs restaurée de la corbeille." + +#: src/modules/author-list/author-list.php:196 +#: src/modules/author-list/author-list.php:197 +#: src/modules/author-list/author-list.php:273 +#: src/modules/author-list/author-list.php:704 msgid "Author Lists" msgstr "Listes des auteurs/autrices" @@ -886,32 +900,42 @@ msgstr "Titre de la page de l’auteur/autrice" #: src/modules/author-pages/author-pages.php:56 #: src/modules/author-pages/author-pages.php:102 #: src/modules/author-pages/author-pages.php:103 -#: src/modules/multiple-authors/multiple-authors.php:2902 +#: src/modules/multiple-authors/multiple-authors.php:2905 msgid "Author Pages" msgstr "Pages des auteurs et autrices" -#: src/modules/multiple-authors/multiple-authors.php:816 +#: src/modules/multiple-authors/multiple-authors.php:819 msgid "Author pages excerpt ellipsis:" msgstr "Ellipses d’extraits de pages d’auteur·ice·s :" -#: src/modules/multiple-authors/multiple-authors.php:764 +#: src/modules/multiple-authors/multiple-authors.php:767 msgid "Author pages layout:" msgstr "Mises en page des auteurs et autrices :" -#: src/modules/multiple-authors/multiple-authors.php:753 +#: src/modules/multiple-authors/multiple-authors.php:756 msgid "Author pages posts limit:" msgstr "Limite des publications des pages d’auteur :" -#: src/modules/multiple-authors/multiple-authors.php:827 +#: src/modules/multiple-authors/multiple-authors.php:830 msgid "Author pages title header:" msgstr "En-tête de titre des pages de l’auteur ou autrice :" -#: src/modules/multiple-authors/multiple-authors.php:835 +#: src/modules/multiple-authors/multiple-authors.php:838 msgid "Author post title header:" msgstr "En-tête du titre de la publication de l’auteur ou autrice :" -#: src/modules/multiple-authors/multiple-authors.php:334 -#: src/modules/multiple-authors/multiple-authors.php:335 +#: src/modules/author-list/author-list.php:423 +msgid "" +"Author Pro allows you to add a search box to the Authors List. You can also " +"show a dropdown menu that allows users to search on specific author fields." +msgstr "" +"Author Pro vous permet d’ajouter un champ de recherche à la liste des " +"auteurs/autrices. Vous pouvez également afficher un menu déroulant qui " +"permet aux internautes d’effectuer une recherche sur des champs spécifiques " +"de l’auteur/autrice." + +#: src/modules/multiple-authors/multiple-authors.php:337 +#: src/modules/multiple-authors/multiple-authors.php:338 msgid "Author Profile" msgstr "Profil de l’auteur/autrice" @@ -923,11 +947,11 @@ msgstr "Le profil de l’auteur/autrice a bien été supprimé." msgid "Author profile updated." msgstr "Le profil de l’auteur/autrice a bien été mis à jour." -#: src/modules/multiple-authors/multiple-authors.php:2901 +#: src/modules/multiple-authors/multiple-authors.php:2904 msgid "Author Profiles" msgstr "Profils d’auteur/autrice" -#: src/modules/multiple-authors/multiple-authors.php:1666 +#: src/modules/multiple-authors/multiple-authors.php:1669 msgid "" "Author profiles can be mapped to WordPress user accounts. This option allows " "you to automatically create author profiles when users are created in these " @@ -941,7 +965,7 @@ msgstr "" "cliquant sur le bouton « Créer les auteurs ou les autrices manqués à partir " "du rôle » dans l’onglet Maintenance." -#: src/modules/author-list/author-list.php:453 +#: src/modules/author-list/author-list.php:469 msgid "Author Recent List" msgstr "Liste des publications récentes de l’auteur/autrice" @@ -962,13 +986,13 @@ msgid "Author Separator" msgstr "Séparateur d’auteurs/autrice" #: src/core/Classes/Author_Editor.php:49 -#: src/modules/author-list/author-list.php:380 -#: src/modules/author-list/author-list.php:385 +#: src/modules/author-list/author-list.php:396 +#: src/modules/author-list/author-list.php:401 msgid "Author Type" msgstr "Type d’auteur/autrice" #: src/core/Classes/Term_Editor.php:79 -#: src/modules/multiple-authors/multiple-authors.php:2993 +#: src/modules/multiple-authors/multiple-authors.php:2996 msgid "Author URL" msgstr "URL de l’auteur/autrice" @@ -982,8 +1006,8 @@ msgstr "" "Champ de la boîte de recherche de l’auteur et autrice (séparez plusieurs " "champs par une virgule (’,’))" -#: src/modules/author-list/classes/AuthorListTable.php:32 -#: src/modules/author-list/classes/AuthorListTable.php:33 +#: src/modules/author-list/classes/AuthorListTable.php:40 +#: src/modules/author-list/classes/AuthorListTable.php:41 msgid "AuthorList" msgstr "AuthorList" @@ -991,14 +1015,14 @@ msgstr "AuthorList" #: src/core/Classes/Post_Editor.php:94 src/core/Classes/Post_Editor.php:206 #: src/core/Traits/Author_box.php:189 #: src/modules/author-categories/author-categories.php:624 -#: src/modules/author-list/author-list.php:386 +#: src/modules/author-list/author-list.php:402 #: src/modules/editflow-integration/editflow-integration.php:114 -#: src/modules/multiple-authors/multiple-authors.php:319 -#: src/modules/multiple-authors/multiple-authors.php:320 -#: src/modules/multiple-authors/multiple-authors.php:368 -#: src/modules/multiple-authors/multiple-authors.php:369 -#: src/modules/multiple-authors/multiple-authors.php:388 -#: src/modules/multiple-authors/multiple-authors.php:1228 +#: src/modules/multiple-authors/multiple-authors.php:322 +#: src/modules/multiple-authors/multiple-authors.php:323 +#: src/modules/multiple-authors/multiple-authors.php:371 +#: src/modules/multiple-authors/multiple-authors.php:372 +#: src/modules/multiple-authors/multiple-authors.php:391 +#: src/modules/multiple-authors/multiple-authors.php:1231 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:82 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:161 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:342 @@ -1008,11 +1032,11 @@ msgstr "AuthorList" msgid "Authors" msgstr "Auteurs/autrices" -#: src/modules/multiple-authors/multiple-authors.php:1261 +#: src/modules/multiple-authors/multiple-authors.php:1264 msgid "Authors Box" msgstr "Boîte d’auteur/autrice" -#: src/modules/multiple-authors/multiple-authors.php:1342 +#: src/modules/multiple-authors/multiple-authors.php:1345 msgid "Authors Data" msgstr "Les données d’auteurs/autrices" @@ -1029,27 +1053,19 @@ msgid "Authors Index" msgstr "Index des auteurs/autrices" #: src/core/Authors_Widget.php:23 -#: src/modules/multiple-authors/multiple-authors.php:1411 +#: src/modules/multiple-authors/multiple-authors.php:1414 msgid "Authors List" msgstr "Liste des auteurs/autrices" -#: src/modules/author-list/author-list.php:397 +#: src/modules/author-list/author-list.php:413 msgid "" -"Authors Pro allows you to set Author Lists pagination using number of " -"authors to show per page, ability to show or hide authors without without " -"any posts, order authors by their published post counts, names and limit the " -"author results to users with a published post within a specific time." +"Authors Pro allows you to add extra features to the Authors List. These " +"features include pagination, choose the order of authors, and much more." msgstr "" -"Authors Pro vous permet d’ajouter des fonctionnalités supplémentaires à la " -"liste des auteurs/autrices. Ces fonctionnalités incluent la pagination, le " -"choix de l’ordre des auteurs/autrices, et bien plus encore." - -#: src/modules/author-list/author-list.php:407 -msgid "" -"Authors Pro allows you to show search box and search through author fields." -msgstr "" -"Authors Pro vous permet d’afficher la boîte de recherche et de rechercher " -"dans les champs de l’auteur/autrice." +"Author Pro vous permet d’ajouter un champ de recherche à la liste des " +"auteurs/autrices. Vous pouvez également afficher un menu déroulant qui " +"permet aux internautes d’effectuer une recherche sur des champs spécifiques " +"de l’auteur/autrice." #: src/modules/default-layouts/default-layouts.php:126 msgid "Authors Recent" @@ -1059,7 +1075,7 @@ msgstr "Auteurs/autrices récents" msgid "Authors Settings" msgstr "Réglages des auteurs ou autrices" -#: src/modules/multiple-authors/multiple-authors.php:598 +#: src/modules/multiple-authors/multiple-authors.php:601 msgid "Automatically create author profiles:" msgstr "Créez automatiquement des profils d’auteur ou d’autrice :" @@ -1233,7 +1249,7 @@ msgstr "Encadré" msgid "Boxed (Categories)" msgstr "Encadré (catégories)" -#: src/modules/multiple-authors/multiple-authors.php:1062 +#: src/modules/multiple-authors/multiple-authors.php:1065 msgid "Boxed legacy layout Author Box:" msgstr "Mise en page ancienne encadrée de la boîte d’auteur/autrice :" @@ -1283,11 +1299,11 @@ msgstr "Centré" msgid "Centered" msgstr "Centrée" -#: src/modules/multiple-authors/multiple-authors.php:1070 +#: src/modules/multiple-authors/multiple-authors.php:1073 msgid "Centered legacy layout Author Box:" msgstr "Mise en page ancienne centrée de la boîte d’auteur/autrice :" -#: src/modules/author-boxes/author-boxes.php:2314 +#: src/modules/author-boxes/author-boxes.php:2298 #, php-format msgid "Change %1s" msgstr "Modifier %1s" @@ -1300,6 +1316,10 @@ msgstr "Une mauvaise manipulation ?" msgid "Choose from the most used Authors" msgstr "Choisissez parmi les auteurs et autrices les plus utilisés" +#: src/modules/author-pages/author-pages.php:165 +msgid "Click here for more details." +msgstr "Cliquer ici pour plus de détails." + #: src/modules/modules-settings/modules-settings.php:313 msgid "Click here to install PublishPress Blocks" msgstr "Cliquez ici pour installer PublishPress Blocks" @@ -1318,7 +1338,7 @@ msgstr "" "Cliquez sur un auteur ou une autrice pour les modifier. Glissez pour changer " "leur ordre. Cliquez sur Supprimer pour les supprimer." -#: src/modules/author-boxes/author-boxes.php:2175 +#: src/modules/author-boxes/author-boxes.php:2159 msgid "" "Click the \"Generate Template\" button under the text area. Wait for the " "code to be generated." @@ -1332,12 +1352,12 @@ msgstr "" "Cliquez pour changer cet auteur ou autrice, ou glissez pour changer sa " "position" -#: src/modules/multiple-authors/multiple-authors.php:1592 -#: src/modules/multiple-authors/multiple-authors.php:1593 +#: src/modules/multiple-authors/multiple-authors.php:1595 +#: src/modules/multiple-authors/multiple-authors.php:1596 msgid "Click To Copy!" msgstr "Cliquez pour copier !" -#: src/modules/multiple-authors/multiple-authors.php:4392 +#: src/modules/multiple-authors/multiple-authors.php:4395 msgid "Click to run the update now" msgstr "Cliquez pour exécuter la mise à jour maintenant" @@ -1356,16 +1376,16 @@ msgstr "Coauteurs/coautrices" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3858 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Collecting data for the migration..." msgstr "Collecte des données pour la migration…" -#: src/modules/multiple-authors/multiple-authors.php:3790 -#: src/modules/multiple-authors/multiple-authors.php:3821 +#: src/modules/multiple-authors/multiple-authors.php:3793 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Collecting data..." msgstr "Collecte des données…" -#: src/modules/multiple-authors/multiple-authors.php:698 +#: src/modules/multiple-authors/multiple-authors.php:701 msgid "Color scheme:" msgstr "Jeu de couleurs :" @@ -1378,11 +1398,11 @@ msgstr "Nombre de commentaires" msgid "Configure" msgstr "Configurer" -#: src/modules/author-list/author-list.php:396 +#: src/modules/author-list/author-list.php:412 msgid "Configure Author List Options" msgstr "Configurer les options de la liste d’auteurs/autrices" -#: src/modules/author-boxes/author-boxes.php:2178 +#: src/modules/author-boxes/author-boxes.php:2162 msgid "" "Congratulations. Your can now choose your template inside the PublishPress " "Authors Settings." @@ -1395,15 +1415,16 @@ msgid "Contact" msgstr "Contact" #: src/core/Classes/Author_Editor.php:809 -msgid "Convert into guest author" -msgstr "Convertir en auteur/autrice invité(e)" +msgid "Convert into Guest Author With User Account" +msgstr "" +"Convertir en auteur/autrice invité avec un compte d’utilisateur/utilisatrice" -#: src/modules/author-boxes/author-boxes.php:2147 -#: src/modules/author-boxes/author-boxes.php:2219 +#: src/modules/author-boxes/author-boxes.php:2131 +#: src/modules/author-boxes/author-boxes.php:2203 msgid "Copied to Clipboard!" msgstr "Copié dans le presse-papiers !" -#: src/modules/multiple-authors/multiple-authors.php:1591 +#: src/modules/multiple-authors/multiple-authors.php:1594 msgid "Copied!" msgstr "Copié !" @@ -1417,26 +1438,26 @@ msgstr "Copier les données de Byline" msgid "Copy Bylines Data" msgstr "Copier les données de Bylines" -#: src/modules/multiple-authors/multiple-authors.php:2694 +#: src/modules/multiple-authors/multiple-authors.php:2697 msgid "Copy Co-Authors Plus Data" msgstr "Copier les données de Co-Authors Plus" -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Copy Co-Authors Plus data" msgstr "Copier les données de Co-Authors Plus" -#: src/modules/author-boxes/author-boxes.php:2177 +#: src/modules/author-boxes/author-boxes.php:2161 msgid "Copy the generated code and paste it inside the newly created file." msgstr "Copiez le code généré et collez-le dans le nouveau fichier créé." -#: src/modules/author-boxes/author-boxes.php:2143 -#: src/modules/author-boxes/author-boxes.php:2214 +#: src/modules/author-boxes/author-boxes.php:2127 +#: src/modules/author-boxes/author-boxes.php:2198 msgid "Copy to Clipboard" msgstr "Copier dans le presse-papiers" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Copying authors' data..." msgstr "Copie des données des auteurs/autrices…" @@ -1470,7 +1491,7 @@ msgstr "" "Cette option est légère mais peut poser des problèmes de prise en charge par " "d’autres thèmes et extensions." -#: src/modules/author-boxes/author-boxes.php:2176 +#: src/modules/author-boxes/author-boxes.php:2160 #, php-format msgid "" "Create an empty php template file with your desired file slug in the %1s /" @@ -1485,7 +1506,7 @@ msgstr "" "theme-name%6s/publishpress-authors/author-boxes/my-first-custom-author-" "template.php %7s ." -#: src/core/Classes/Utils.php:1126 +#: src/core/Classes/Utils.php:1127 msgid "Create Author Boxes with authors organized in categories" msgstr "" "Créez des boîtes d’auteurs/autrices avec les auteurs//autrices organisés en " @@ -1495,21 +1516,21 @@ msgstr "" msgid "Create Author Profile" msgstr "Créer le profil de l’auteur ou de l‘autrice" -#: src/modules/multiple-authors/multiple-authors.php:2663 +#: src/modules/multiple-authors/multiple-authors.php:2666 msgid "Create missing PublishPress Authors profiles" msgstr "Créer les profils de PublishPress Authors manquants" -#: src/modules/multiple-authors/multiple-authors.php:2669 +#: src/modules/multiple-authors/multiple-authors.php:2672 msgid "Create PublishPress Authors profiles" msgstr "Créer les profils de PublishPress Authors" -#: src/modules/multiple-authors/multiple-authors.php:2661 +#: src/modules/multiple-authors/multiple-authors.php:2664 msgid "Create PublishPress Authors Profiles for all post authors" msgstr "" "Créer des profils PublishPress Authors pour tous les auteurs/autrices de " "publications" -#: src/modules/multiple-authors/multiple-authors.php:2667 +#: src/modules/multiple-authors/multiple-authors.php:2670 msgid "Create PublishPress Authors Profiles for all users in a role" msgstr "" "Créer des profils PublishPress Authors pour tous les utilisateurs/" @@ -1519,7 +1540,7 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "Création d’un terme d’auteur ou autrice pour le compte %d" -#: src/modules/multiple-authors/multiple-authors.php:3860 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Creating missed post authors...." msgstr "Création d’auteurs/autrices des publications manquées…" @@ -1593,7 +1614,7 @@ msgstr "Désactiver Byline" msgid "Deactivate Bylines" msgstr "Désactiver Bylines" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3869 msgid "Deactivate Co-Authors Plus" msgstr "Désactiver Co-Authors Plus" @@ -1605,7 +1626,7 @@ msgstr "Désactivation de Byline…" msgid "Deactivating Bylines..." msgstr "Désactivation de Bylines…" -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivating Co-uthors Plus..." msgstr "Désactivation de Co-uthors Plus…" @@ -1653,12 +1674,12 @@ msgstr "Par défaut" msgid "Default Author Box" msgstr "Boîte d’auteur/autrice par défaut" -#: src/modules/multiple-authors/multiple-authors.php:620 +#: src/modules/multiple-authors/multiple-authors.php:623 msgid "Default author for new posts:" msgstr "Auteur ou autrice par défaut pour les nouvelles publications :" #: src/core/Classes/Author_Editor.php:379 -#: src/modules/multiple-authors/multiple-authors.php:1051 +#: src/modules/multiple-authors/multiple-authors.php:1054 msgid "Default Avatar" msgstr "Avatar par défaut" @@ -1670,33 +1691,36 @@ msgstr "Mises en page par défaut" msgid "Default Search" msgstr "Recherche par défaut" -#: src/modules/author-boxes/author-boxes.php:2089 -#: src/modules/author-boxes/author-boxes.php:2118 +#: src/modules/author-boxes/author-boxes.php:2073 +#: src/modules/author-boxes/author-boxes.php:2102 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:125 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:373 -#: src/modules/author-list/classes/AuthorListTable.php:292 msgid "Delete" msgstr "Supprimer" -#: src/modules/multiple-authors/multiple-authors.php:2704 +#: src/modules/multiple-authors/multiple-authors.php:2707 msgid "Delete all authors mapped to users" msgstr "" "Supprimer tous les auteurs ou autrices associées aux utilisateurs ou " "utilisatrices" -#: src/modules/multiple-authors/multiple-authors.php:2711 +#: src/modules/multiple-authors/multiple-authors.php:2714 msgid "Delete all guest authors" msgstr "Supprimer tous les auteurs ou autrices invitées" -#: src/modules/multiple-authors/multiple-authors.php:2709 +#: src/modules/multiple-authors/multiple-authors.php:2712 msgid "Delete Guest Authors" msgstr "Supprimer les auteurs ou autrices invitées" -#: src/modules/multiple-authors/multiple-authors.php:2702 +#: src/modules/multiple-authors/multiple-authors.php:2705 msgid "Delete Mapped Authors" msgstr "" "Supprimer les auteurs ou autrices associées aux utilisateurs ou utilisatrices" +#: src/modules/author-list/classes/AuthorListTable.php:384 +msgid "Delete Permanently" +msgstr "Supprimer définitivement" + #: src/core/Authors_Widget.php:187 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1227 msgid "Descending" @@ -1706,7 +1730,7 @@ msgstr "Décroissant" msgid "Description" msgstr "Description" -#: src/core/Classes/Utils.php:1155 +#: src/core/Classes/Utils.php:1156 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Une documentation détaillée est également disponible sur le site de " @@ -1720,13 +1744,13 @@ msgstr "Détails" msgid "Disable Categories" msgstr "Désactiver les catégories" -#: src/modules/multiple-authors/multiple-authors.php:674 +#: src/modules/multiple-authors/multiple-authors.php:677 msgid "Disable the \"Authors\" box when using \"Quick Edit\":" msgstr "" "Désactiver la case « Auteurs et autrices » lors de l’utilisation de " "« Modification rapide » :" -#: src/core/Classes/Post_Editor.php:446 +#: src/core/Classes/Post_Editor.php:451 msgid "Disable the default author display under this post" msgstr "" "Désactiver l’affichage par défaut de l’auteur/autrice sous cette publication" @@ -1737,7 +1761,7 @@ msgstr "" msgid "Disabled" msgstr "Désactivé" -#: src/modules/multiple-authors/multiple-authors.php:1189 +#: src/modules/multiple-authors/multiple-authors.php:1192 #: src/modules/settings/settings.php:275 #, php-format msgid "" @@ -1747,8 +1771,8 @@ msgstr "" "Désactivé car add_post_type_support (’%1$s’, ’%2$s’) est inclus dans un " "fichier chargé." -#: src/modules/multiple-authors/multiple-authors.php:4324 -#: src/modules/multiple-authors/multiple-authors.php:4398 +#: src/modules/multiple-authors/multiple-authors.php:4327 +#: src/modules/multiple-authors/multiple-authors.php:4401 msgid "Dismiss" msgstr "Ignorer" @@ -1768,7 +1792,7 @@ msgid "Display authors list." msgstr "Affichez la liste des auteurs/autrices." #: src/modules/author-boxes/author-boxes.php:1018 -#: src/modules/multiple-authors/multiple-authors.php:1040 +#: src/modules/multiple-authors/multiple-authors.php:1043 msgid "Display Name" msgstr "Afficher le prénom" @@ -1838,7 +1862,7 @@ msgstr "Intégration Divi" msgid "Documentation" msgstr "Documentation" -#: src/modules/author-boxes/author-boxes.php:2183 +#: src/modules/author-boxes/author-boxes.php:2167 msgid "documentation page" msgstr "page de documentation" @@ -1846,11 +1870,11 @@ msgstr "page de documentation" msgid "dofollow" msgstr "dofollow" -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Done! %d authors were updated." msgstr "Terminé ! %d auteurs/autrices ont été mis à jour." -#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Done! %d posts were updated." msgstr "Terminé ! %d publications ont été mises à jour." @@ -1874,11 +1898,11 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "Terminé ! Bylines a été désactivée." -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3870 msgid "Done! Co-Authors Plus data was copied." msgstr "Terminé ! Les données de Co-Authors Plus ont été copiées." -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus is deactivated." msgstr "Terminé ! Co-Authors Plus a été désactivée." @@ -1894,12 +1918,12 @@ msgstr "Pointillés" msgid "Double" msgstr "Double" -#: src/modules/author-list/author-list.php:755 +#: src/modules/author-list/author-list.php:783 msgid "Dynamic Shortcode" msgstr "Code court dynamique" #: src/core/Plugin.php:1492 -#: src/modules/author-list/classes/AuthorListTable.php:280 +#: src/modules/author-list/classes/AuthorListTable.php:344 msgid "Edit" msgstr "Modifier" @@ -1913,7 +1937,7 @@ msgstr "Modifier %1$s" msgid "Edit Author" msgstr "Modifier l’auteur/autrice" -#: src/modules/author-list/author-list.php:661 +#: src/modules/author-list/author-list.php:689 msgid "Edit Author List" msgstr "Modifier la liste d’auteur/autrice" @@ -1961,7 +1985,7 @@ msgstr "Adresse e-mail" msgid "Enable Author Grouping" msgstr "Activer le regroupement d’auteurs/autrices" -#: src/modules/multiple-authors/multiple-authors.php:742 +#: src/modules/multiple-authors/multiple-authors.php:745 msgid "Enable author pages:" msgstr "Activer les pages d’auteur/autrices :" @@ -1979,15 +2003,15 @@ msgstr "Activer les catégories" msgid "Enable Category" msgstr "Activer la catégorie" -#: src/modules/multiple-authors/multiple-authors.php:1018 +#: src/modules/multiple-authors/multiple-authors.php:1021 msgid "Enable Guest Author With No User Account" msgstr "Activer l’auteur/autrice invité sans un compte" -#: src/modules/multiple-authors/multiple-authors.php:1029 +#: src/modules/multiple-authors/multiple-authors.php:1032 msgid "Enable Guest Author With User Account" msgstr "Activer l’auteur/autrice invité avec un compte" -#: src/modules/multiple-authors/multiple-authors.php:582 +#: src/modules/multiple-authors/multiple-authors.php:585 msgid "Enable PublishPress Authors for these post types:" msgstr "Activer PublishPress Authors pour ces types de publication :" @@ -2067,14 +2091,14 @@ msgstr "Erreur lors de la mis à jour du compte d’auteur/autrice." msgid "Error updating category data." msgstr "Erreur lors de la mis à jour de les données de la catégorie." -#: src/modules/multiple-authors/multiple-authors.php:3659 +#: src/modules/multiple-authors/multiple-authors.php:3662 msgid "Error. Author terms could not be reseted." msgstr "" "Erreur. Les termes de l’auteur ou autrice n’ont pas pu être réinitialisés." #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3859 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Error: " msgstr "Erreur : " @@ -2087,25 +2111,29 @@ msgstr "Boîtes d’auteurs/autrices existantes" msgid "Export" msgstr "Exporter" -#: src/modules/author-boxes/author-boxes.php:2132 +#: src/modules/author-boxes/author-boxes.php:2116 msgid "Export Editor Settings" msgstr "Exporter les réglages de l’éditeur" -#: src/modules/multiple-authors/multiple-authors.php:631 +#: src/core/Classes/Utils.php:1126 +msgid "Extra features for Author Lists" +msgstr "Fonctionnalités supplémentaires pour les listes d’auteurs" + +#: src/modules/multiple-authors/multiple-authors.php:634 msgid "Fallback user for Guest Authors:" msgstr "" "Utilisateur alternatif ou utilisatrice alternative pour les auteurs ou " "autrices invités :" -#: src/core/Classes/Utils.php:1129 +#: src/core/Classes/Utils.php:1130 msgid "Fast, professional support" msgstr "Un support rapide et professionnel" -#: src/modules/multiple-authors/multiple-authors.php:865 +#: src/modules/multiple-authors/multiple-authors.php:868 msgid "Featured image custom height:" msgstr "Hauteur personnalisée de l’image mise en avant :" -#: src/modules/multiple-authors/multiple-authors.php:854 +#: src/modules/multiple-authors/multiple-authors.php:857 msgid "Featured image custom width:" msgstr "Largeur personnalisée de l’image mise en avant :" @@ -2178,18 +2206,18 @@ msgstr "Champ valeur" msgid "Filter %2$s list" msgstr "Filtrer la liste des %2$s" -#: src/modules/multiple-authors/multiple-authors.php:3791 -#: src/modules/multiple-authors/multiple-authors.php:3822 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 msgid "Finishing the process..." msgstr "En cours de finaliser le processus…" #: src/core/Authors_Widget.php:192 src/core/Classes/Author_Editor.php:358 #: src/modules/author-custom-fields/author-custom-fields.php:890 -#: src/modules/multiple-authors/multiple-authors.php:1970 +#: src/modules/multiple-authors/multiple-authors.php:1973 msgid "First Name" msgstr "Prénom" -#: src/modules/multiple-authors/multiple-authors.php:1968 +#: src/modules/multiple-authors/multiple-authors.php:1971 msgid "First Name Last Name" msgstr "Prénom et nom" @@ -2198,11 +2226,11 @@ msgstr "Prénom et nom" msgid "Flex" msgstr "Flex" -#: src/modules/multiple-authors/multiple-authors.php:723 +#: src/modules/multiple-authors/multiple-authors.php:726 msgid "Font Awesome icons:" msgstr "Icônes Font Awesome :" -#: src/modules/multiple-authors/multiple-authors.php:1490 +#: src/modules/multiple-authors/multiple-authors.php:1493 #, php-format msgid "" "For authors_index layout, you can group user by profile field by using %1$s ." @@ -2210,7 +2238,7 @@ msgstr "" "Pour la mise en page authors_index, vous pouvez regrouper les utilisateurs " "et utilisatrices par champ de profil en utilisant %1$s." -#: src/modules/author-list/author-list.php:368 +#: src/modules/author-list/author-list.php:384 msgid "For authors_index layout, you can group user by profile fields." msgstr "" "Pour la mise en page authors_index, vous pouvez regrouper les utilisateurs/" @@ -2228,13 +2256,13 @@ msgstr "" "de la publication. Vous pouvez en savoir plus %1$s dans ce guide.%2$s" #: src/core/Classes/Author_Editor.php:313 -#: src/modules/author-list/author-list.php:300 +#: src/modules/author-list/author-list.php:316 #: src/modules/author-pages/author-pages.php:113 -#: src/modules/multiple-authors/multiple-authors.php:2899 +#: src/modules/multiple-authors/multiple-authors.php:2902 msgid "General" msgstr "Général" -#: src/modules/author-boxes/author-boxes.php:2208 +#: src/modules/author-boxes/author-boxes.php:2192 msgid "Generate Template" msgstr "Générer le modèle" @@ -2251,11 +2279,11 @@ msgstr "Intégration Generatepress" msgid "Genesis Integration" msgstr "Intégration Genesis" -#: src/modules/multiple-authors/multiple-authors.php:1795 +#: src/modules/multiple-authors/multiple-authors.php:1798 msgid "Grid" msgstr "Grille" -#: src/modules/multiple-authors/multiple-authors.php:775 +#: src/modules/multiple-authors/multiple-authors.php:778 msgid "Grid layout column:" msgstr "Colonne de mise en page de la grille :" @@ -2265,23 +2293,23 @@ msgstr "Colonne de mise en page de la grille :" msgid "Groove" msgstr "Rainure" -#: src/modules/author-list/author-list.php:367 +#: src/modules/author-list/author-list.php:383 msgid "Group By" msgstr "Grouper par" -#: src/modules/multiple-authors/multiple-authors.php:4783 +#: src/modules/multiple-authors/multiple-authors.php:4786 msgid "Guest Author cannot login on the site." msgstr "L’auteur/autrice invité(e) ne peut pas se connecter sur le site." #: src/core/Classes/Author_Editor.php:121 #: src/core/Classes/Author_Editor.php:710 -#: src/modules/author-list/author-list.php:947 +#: src/modules/author-list/author-list.php:979 msgid "Guest Author With No User Account" msgstr "Auteur/autrice invité(e) sans aucun compte d’utilisateur/utilisatrice" #: src/core/Classes/Author_Editor.php:117 #: src/core/Classes/Author_Editor.php:703 -#: src/modules/author-list/author-list.php:946 +#: src/modules/author-list/author-list.php:978 msgid "Guest Author With User Account" msgstr "Auteur/autrice invité(e) avec un compte d’utilisateur/utilisatrice" @@ -2289,8 +2317,8 @@ msgstr "Auteur/autrice invité(e) avec un compte d’utilisateur/utilisatrice" msgid "Guest Authors" msgstr "Auteurs et autrices invitées" -#: src/modules/multiple-authors/multiple-authors.php:1823 -#: src/modules/multiple-authors/multiple-authors.php:1855 +#: src/modules/multiple-authors/multiple-authors.php:1826 +#: src/modules/multiple-authors/multiple-authors.php:1858 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:152 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:384 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:520 @@ -2301,8 +2329,8 @@ msgstr "Auteurs et autrices invitées" msgid "H1" msgstr "H1" -#: src/modules/multiple-authors/multiple-authors.php:1824 -#: src/modules/multiple-authors/multiple-authors.php:1856 +#: src/modules/multiple-authors/multiple-authors.php:1827 +#: src/modules/multiple-authors/multiple-authors.php:1859 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:153 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:385 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:521 @@ -2313,8 +2341,8 @@ msgstr "H1" msgid "H2" msgstr "H2" -#: src/modules/multiple-authors/multiple-authors.php:1825 -#: src/modules/multiple-authors/multiple-authors.php:1857 +#: src/modules/multiple-authors/multiple-authors.php:1828 +#: src/modules/multiple-authors/multiple-authors.php:1860 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:154 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:386 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:522 @@ -2325,8 +2353,8 @@ msgstr "H2" msgid "H3" msgstr "H3" -#: src/modules/multiple-authors/multiple-authors.php:1826 -#: src/modules/multiple-authors/multiple-authors.php:1858 +#: src/modules/multiple-authors/multiple-authors.php:1829 +#: src/modules/multiple-authors/multiple-authors.php:1861 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:155 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:387 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:523 @@ -2337,8 +2365,8 @@ msgstr "H3" msgid "H4" msgstr "H4" -#: src/modules/multiple-authors/multiple-authors.php:1827 -#: src/modules/multiple-authors/multiple-authors.php:1859 +#: src/modules/multiple-authors/multiple-authors.php:1830 +#: src/modules/multiple-authors/multiple-authors.php:1862 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:156 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:388 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:524 @@ -2349,8 +2377,8 @@ msgstr "H4" msgid "H5" msgstr "H5" -#: src/modules/multiple-authors/multiple-authors.php:1828 -#: src/modules/multiple-authors/multiple-authors.php:1860 +#: src/modules/multiple-authors/multiple-authors.php:1831 +#: src/modules/multiple-authors/multiple-authors.php:1863 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:157 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:389 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:525 @@ -2370,7 +2398,7 @@ msgstr "Masquer %1s" msgid "Hide Title" msgstr "Masquer le titre" -#: src/modules/author-boxes/author-boxes.php:2172 +#: src/modules/author-boxes/author-boxes.php:2156 msgid "How to generate and use a theme template file" msgstr "Comment générer et utiliser un fichier de modèle de thème" @@ -2386,7 +2414,7 @@ msgstr "https://wordpress.org/plugins/publishpress-authors/" msgid "ID" msgstr "ID" -#: src/modules/multiple-authors/multiple-authors.php:1757 +#: src/modules/multiple-authors/multiple-authors.php:1760 msgid "" "If enabled, PublishPress Authors will replace the default WordPress author " "pages." @@ -2394,7 +2422,7 @@ msgstr "" "Si elle est activée, PublishPress Authors remplacera les pages d’auteur et " "autrices par défaut de WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1687 +#: src/modules/multiple-authors/multiple-authors.php:1690 msgid "" "If the Author is mapped to a WordPress user, this will display the authors' " "\"Display name\" and their \"Username\". The default is to show only the " @@ -2407,7 +2435,7 @@ msgstr "" "compte » est utile si vous avez plusieurs auteurs ou autrices avec des noms " "similaires." -#: src/modules/multiple-authors/multiple-authors.php:1313 +#: src/modules/multiple-authors/multiple-authors.php:1316 #, php-format msgid "" "If you are having problems showing PublishPress Authors on author profile " @@ -2420,7 +2448,7 @@ msgstr "" "dessous. L’argument %s force l’extension à récupérer l’auteur ou l’autrice " "dans la page de profil et non dans les autres publications du même écran." -#: src/modules/multiple-authors/multiple-authors.php:1480 +#: src/modules/multiple-authors/multiple-authors.php:1483 #, php-format msgid "" "If you are using the authors_recent layout, you can define the number of " @@ -2440,13 +2468,13 @@ msgstr "" msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Si vous appréciez %s, veuillez nous laisser une note de %s. Merci !" -#: src/core/Classes/Utils.php:1144 +#: src/core/Classes/Utils.php:1145 msgid "If you need help or have a new feature request, let us know." msgstr "" "Si vous avez besoin d’aide ou si vous avez une nouvelle demande de " "fonctionnalité, faites-le nous savoir." -#: src/modules/multiple-authors/multiple-authors.php:2566 +#: src/modules/multiple-authors/multiple-authors.php:2569 msgid "" "If you only have Guest Authors selected for a post, this user may be used as " "a fallback. WordPress sometimes requires a WordPress user to be assigned to " @@ -2463,11 +2491,11 @@ msgstr "" msgid "Import" msgstr "Importer" -#: src/modules/author-boxes/author-boxes.php:2163 +#: src/modules/author-boxes/author-boxes.php:2147 msgid "Import Data" msgstr "Importer les données" -#: src/modules/author-boxes/author-boxes.php:2152 +#: src/modules/author-boxes/author-boxes.php:2136 msgid "Import Editor Settings" msgstr "Importer les réglages de l’éditeur" @@ -2481,7 +2509,7 @@ msgstr "Devant l’avatar" msgid "Inline" msgstr "En ligne" -#: src/modules/multiple-authors/multiple-authors.php:1086 +#: src/modules/multiple-authors/multiple-authors.php:1089 msgid "Inline avatar legacy layout Author Box:" msgstr "" "Mise en page de l’ancien avatar en ligne de la boîte d’auteur/autrice :" @@ -2490,7 +2518,7 @@ msgstr "" msgid "Inline Grouping" msgstr "Regroupement en ligne" -#: src/modules/multiple-authors/multiple-authors.php:1078 +#: src/modules/multiple-authors/multiple-authors.php:1081 msgid "Inline legacy layout Author Box:" msgstr "Mise en page en ligne de l’ancien boîte d’auteur/autrice :" @@ -2510,11 +2538,11 @@ msgstr "" "Installez cette extension pour mettre en valeur le contenu de vos auteurs/" "autrices." -#: src/modules/author-boxes/author-boxes.php:2162 +#: src/modules/author-boxes/author-boxes.php:2146 msgid "Invalid data" msgstr "Données invalides" -#: src/modules/author-list/author-list.php:1081 +#: src/modules/author-list/author-list.php:1114 msgid "Invalid form" msgstr "Formulaire invalide" @@ -2522,7 +2550,7 @@ msgstr "Formulaire invalide" msgid "Invalid form data." msgstr "Données du formulaire invalides." -#: src/modules/multiple-authors/multiple-authors.php:3490 +#: src/modules/multiple-authors/multiple-authors.php:3493 msgid "Invalid nonce" msgstr "Nonce invalide" @@ -2530,7 +2558,7 @@ msgstr "Nonce invalide" msgid "is required" msgstr "Est obligatoire" -#: src/modules/multiple-authors/multiple-authors.php:4318 +#: src/modules/multiple-authors/multiple-authors.php:4321 msgid "It looks like you have Co-Authors Plus installed." msgstr "Il semble que vous ayez installé Co-Authors Plus." @@ -2558,22 +2586,22 @@ msgstr "Justifié" #: src/core/Authors_Widget.php:193 src/core/Classes/Author_Editor.php:363 #: src/modules/author-custom-fields/author-custom-fields.php:898 -#: src/modules/multiple-authors/multiple-authors.php:1971 +#: src/modules/multiple-authors/multiple-authors.php:1974 msgid "Last Name" msgstr "Nom" -#: src/modules/multiple-authors/multiple-authors.php:1969 +#: src/modules/multiple-authors/multiple-authors.php:1972 msgid "Last Name First Name" msgstr "Nom et prénom" #: src/core/Authors_Widget.php:131 src/core/Widget.php:123 -#: src/modules/author-list/author-list.php:347 +#: src/modules/author-list/author-list.php:363 #: src/modules/author-pages/author-pages.php:114 -#: src/modules/author-list/classes/AuthorListTable.php:88 +#: src/modules/author-list/classes/AuthorListTable.php:151 msgid "Layout" msgstr "Mise en page" -#: src/modules/author-list/author-list.php:357 +#: src/modules/author-list/author-list.php:373 msgid "Layout Columns" msgstr "Colonnes de mise en page" @@ -2585,7 +2613,7 @@ msgstr "Slug de mise en page" msgid "Layout Wrapper Class Name" msgstr "Nom de la classe du conteneur de mise en page" -#: src/modules/multiple-authors/multiple-authors.php:682 +#: src/modules/multiple-authors/multiple-authors.php:685 msgid "Layout:" msgstr "Mise en page :" @@ -2627,7 +2655,7 @@ msgstr "Lien d’avatar" msgid "Link Rel" msgstr "Attribut « Rel » du lien" -#: src/modules/multiple-authors/multiple-authors.php:1794 +#: src/modules/multiple-authors/multiple-authors.php:1797 msgid "List" msgstr "Liste" @@ -2648,11 +2676,11 @@ msgstr "Liste d’auteurs/autrices en ligne (catégories)" msgid "Lowercase" msgstr "Minuscules" -#: src/modules/multiple-authors/multiple-authors.php:2904 +#: src/modules/multiple-authors/multiple-authors.php:2907 msgid "Maintenance" msgstr "Maintenance" -#: src/modules/multiple-authors/multiple-authors.php:3670 +#: src/modules/multiple-authors/multiple-authors.php:3673 msgid "Maintenance completed successfully." msgstr "La maintenance a bien été terminé." @@ -2697,7 +2725,7 @@ msgstr "Nom" msgid "Name Row" msgstr "Ligne du nom" -#: src/core/Classes/Utils.php:1139 +#: src/core/Classes/Utils.php:1140 msgid "Need PublishPress Authors Support?" msgstr "Vous avez besoin du support de PublishPress Authors ?" @@ -2721,7 +2749,7 @@ msgstr "Nouveau auteur/autrice" msgid "New author added." msgstr "Nouveau auteur/autrice ajouté." -#: src/modules/author-boxes/author-boxes.php:2514 +#: src/modules/author-boxes/author-boxes.php:2498 msgid "New Author Categories Box" msgstr "Nouvelle boîte de catégorie d’auteur/autrice" @@ -2754,9 +2782,10 @@ msgstr "Aucun %2$s trouvé dans la corbeille" msgid "No author categories." msgstr "Aucune catégorie d’auteur/autrice." -#: src/modules/author-list/classes/AuthorListTable.php:111 -msgid "No author list avaliable." -msgstr "Aucune liste d’auteur/autrice disponible." +#: src/modules/author-list/classes/AuthorListTable.php:174 +msgid "No author list avaliable in the selected view." +msgstr "" +"Aucune liste d’auteurs/autrices n’est disponible dans la vue sélectionnée." #: src/core/Classes/Post_Editor.php:170 msgid "No author term" @@ -2787,7 +2816,7 @@ msgstr "" msgid "No posts without author terms were found" msgstr "Aucun publication sans terme d’auteur ou d’autrice n’a été trouvé" -#: src/modules/author-boxes/author-boxes.php:1852 +#: src/modules/author-boxes/author-boxes.php:1838 msgid "No Recent Posts by this Author" msgstr "Aucune publication récente de cet auteur ou autrice" @@ -2848,7 +2877,7 @@ msgid "Number of comments" msgstr "Nombre de commentaires" #: src/modules/author-categories/author-categories.php:204 -#: src/modules/author-list/author-list.php:209 +#: src/modules/author-list/author-list.php:217 msgid "Number of items per page" msgstr "Nombre des éléments par page" @@ -2870,8 +2899,7 @@ msgstr "Ouvrir le lien dans un nouvel onglet" msgid "Optional" msgstr "Facultatif" -#: src/modules/author-list/author-list.php:308 -#| msgid "Optional" +#: src/modules/author-list/author-list.php:324 msgid "Options" msgstr "Options" @@ -2924,12 +2952,12 @@ msgstr "Auteur/autrice principal" msgid "Parent Author:" msgstr "Auteur/autrice principal :" -#: src/modules/author-boxes/author-boxes.php:2153 +#: src/modules/author-boxes/author-boxes.php:2137 msgid "Paste the editor data from the \"Export\" tab on another site." msgstr "" "Collez les données de l’éditeur de l’onglet « Exporter » sur un autre site." -#: src/modules/multiple-authors/multiple-authors.php:2717 +#: src/modules/multiple-authors/multiple-authors.php:2720 msgid "" "Please be careful clicking these buttons. Before clicking, we recommend " "taking a site backup in case anything goes wrong." @@ -2938,7 +2966,7 @@ msgstr "" "vous recommandons de faire une sauvegarde du site au cas où quelque chose ne " "fonctionnerait pas." -#: src/modules/multiple-authors/multiple-authors.php:4319 +#: src/modules/multiple-authors/multiple-authors.php:4322 msgid "Please click here and read this guide!" msgstr "Veuillez cliquer ici et lire ce guide !" @@ -2962,13 +2990,13 @@ msgstr "" #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3793 -#: src/modules/multiple-authors/multiple-authors.php:3824 -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3796 +#: src/modules/multiple-authors/multiple-authors.php:3827 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Please, wait..." msgstr "Veuillez attendre…" -#: src/modules/multiple-authors/multiple-authors.php:1241 +#: src/modules/multiple-authors/multiple-authors.php:1244 msgid "Plural" msgstr "Pluriel" @@ -2996,8 +3024,7 @@ msgstr "Intégration de Polylang" msgid "Popular Authors" msgstr "Les auteurs/autrices populaires" -#: src/modules/author-boxes/author-boxes.php:2059 -#| msgid "Description" +#: src/modules/author-boxes/author-boxes.php:2045 msgid "Position" msgstr "Position" @@ -3018,11 +3045,11 @@ msgstr "La publication n’existe pas" msgid "Post not found for the author" msgstr "Publication non trouvée pour l’auteur ou l’autrice" -#: src/modules/author-boxes/author-boxes.php:1519 +#: src/modules/author-boxes/author-boxes.php:1505 msgid "Post preview" msgstr "Aperçu de la publication" -#: src/modules/multiple-authors/multiple-authors.php:590 +#: src/modules/multiple-authors/multiple-authors.php:593 msgid "Post types to display on the author's profile page:" msgstr "" "Types de publications à afficher sur la page de profil de l’auteur ou " @@ -3034,12 +3061,12 @@ msgid "Posts" msgstr "Publications" #. Posts by a given author. -#: src/functions/template-tags.php:1330 +#: src/functions/template-tags.php:1331 #, php-format msgid "Posts by %1$s" msgstr "Publications de %1$s" -#: src/functions/template-tags.php:945 +#: src/functions/template-tags.php:946 #, php-format msgid "Posts by %s" msgstr "Publications de %s" @@ -3049,8 +3076,8 @@ msgstr "Publications de %s" msgid "Prev" msgstr "Précédent" -#: src/modules/author-list/author-list.php:296 -#: src/modules/author-list/author-list.php:415 +#: src/modules/author-list/author-list.php:312 +#: src/modules/author-list/author-list.php:431 msgid "Preview" msgstr "Aperçu" @@ -3082,14 +3109,14 @@ msgstr "" "PublishPress Authors vous permet d’ajouter plusieurs auteurs ou autrices et " "auteurs ou autrices invités aux publications WordPress" -#: src/modules/multiple-authors/multiple-authors.php:4391 +#: src/modules/multiple-authors/multiple-authors.php:4394 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" "PublishPress Authors a besoin d’une mise à jour de la base de données pour " "l’intégration de droits." -#: src/modules/author-boxes/author-boxes.php:2522 +#: src/modules/author-boxes/author-boxes.php:2506 msgid "" "PublishPress Authors Pro allows you to unlock the full potential of Author " "Categories." @@ -3220,7 +3247,7 @@ msgstr "Des recommandations pour vous" #: src/core/Classes/Author_Editor.php:119 #: src/core/Classes/Author_Editor.php:697 -#: src/modules/author-list/author-list.php:945 +#: src/modules/author-list/author-list.php:977 msgid "Registered Author With User Account" msgstr "Auteur/autrice enregistré(e) avec un compte d’utilisateur/utilisatrice" @@ -3230,30 +3257,30 @@ msgstr "Auteur/autrice enregistré(e) avec un compte d’utilisateur/utilisatric msgid "Remove %1$s Image" msgstr "Supprimer l’image %1$s" -#: src/modules/author-boxes/author-boxes.php:2315 +#: src/modules/author-boxes/author-boxes.php:2299 #, php-format msgid "Remove %1s" msgstr "Retirer %1s" -#: src/core/Classes/Utils.php:1128 +#: src/core/Classes/Utils.php:1129 msgid "Remove PublishPress ads and branding" msgstr "Retirez les publicités et l’image de marque de PublishPress" -#: src/modules/multiple-authors/multiple-authors.php:642 +#: src/modules/multiple-authors/multiple-authors.php:645 msgid "Remove single author map restriction:" msgstr "Retirer la restriction d’association d’un seul auteur ou autrice :" #: src/core/Classes/Author_Editor.php:470 #: src/core/Classes/Author_Editor.php:519 -#: src/modules/multiple-authors/multiple-authors.php:2008 +#: src/modules/multiple-authors/multiple-authors.php:2011 msgid "Remove this image" msgstr "Supprimer cette image" -#: src/modules/author-boxes/author-boxes.php:2264 +#: src/modules/author-boxes/author-boxes.php:2248 msgid "Reorder Fields" msgstr "Réordonner les champs" -#: src/modules/author-boxes/author-boxes.php:2272 +#: src/modules/author-boxes/author-boxes.php:2256 msgid "" "Reorder the fields by dragging them to the correct position and saving your " "changes." @@ -3265,7 +3292,7 @@ msgstr "" msgid "Request status." msgstr "État de la demande." -#: src/core/Classes/Utils.php:1146 +#: src/core/Classes/Utils.php:1147 msgid "Request Support" msgstr "Demande de support" @@ -3287,6 +3314,10 @@ msgstr "API Rest" msgid "Rest API support" msgstr "Prise en charge de l’API Rest" +#: src/modules/author-list/classes/AuthorListTable.php:372 +msgid "Restore" +msgstr "Restaurer" + #: src/modules/author-categories/author-categories.php:641 #: src/modules/author-categories/author-categories.php:643 msgid "Reviewer" @@ -3315,20 +3346,20 @@ msgstr "Crête" msgid "Right" msgstr "Droite" -#: src/modules/author-list/author-list.php:384 +#: src/modules/author-list/author-list.php:400 msgid "Roles" msgstr "Rôles" -#: src/modules/author-list/author-list.php:732 -#: src/modules/author-list/author-list.php:739 +#: src/modules/author-list/author-list.php:760 +#: src/modules/author-list/author-list.php:767 msgid "Save Changes" msgstr "Enregistrer les modifications" -#: src/modules/author-boxes/author-boxes.php:2290 +#: src/modules/author-boxes/author-boxes.php:2274 msgid "Save for All Author Boxes" msgstr "Enregistrer pour toutes les boîtes d’auteur/autrice" -#: src/modules/author-boxes/author-boxes.php:2286 +#: src/modules/author-boxes/author-boxes.php:2270 msgid "Save for Current Author Box" msgstr "Enregistrer pour la boîte d’auteur/autrice actuelle" @@ -3338,11 +3369,11 @@ msgstr "Enregistrer pour la boîte d’auteur/autrice actuelle" msgid "Schema Property" msgstr "Propriété Schema" -#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:312 +#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:328 msgid "Search" msgstr "Rechercher" -#: src/modules/author-boxes/author-boxes.php:2342 +#: src/modules/author-boxes/author-boxes.php:2326 #, php-format msgid "Search %1s Icon" msgstr "Icône de recherche %1s" @@ -3357,7 +3388,7 @@ msgstr "Rechercher %2$s" msgid "Search Author Categories" msgstr "Rechercher des catégories d’auteurs/autrices" -#: src/modules/author-list/author-list.php:277 +#: src/modules/author-list/author-list.php:293 msgid "Search Author Lists" msgstr "Rechercher des listes d’auteurs/autrices" @@ -3373,12 +3404,12 @@ msgstr "Boîte de recherche" msgid "Search for an author" msgstr "Rechercher un auteur/autrice" -#: src/core/Classes/Post_Editor.php:462 +#: src/core/Classes/Post_Editor.php:467 msgid "Search for an user" msgstr "Rechercher un utilisateur ou une utilisatrice" #. %s: search keywords -#: src/modules/author-list/author-list.php:268 +#: src/modules/author-list/author-list.php:284 #, php-format msgid "Search results for “%s”" msgstr "Résultats de la recherche pour « %s »" @@ -3387,7 +3418,7 @@ msgstr "Résultats de la recherche pour « %s »" #: src/modules/author-categories/author-categories.php:228 #: src/modules/author-categories/author-categories.php:311 #: src/modules/author-custom-fields/author-custom-fields.php:1005 -#: src/modules/author-list/author-list.php:1075 +#: src/modules/author-list/author-list.php:1108 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:41 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:89 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:131 @@ -3399,7 +3430,7 @@ msgstr "Erreur de sécurité. Veuillez recharger cette page et réessayer" msgid "Security error. Kindly reload this page and try again." msgstr "Erreur de sécurité. Veuillez recharger cette page et réessayer." -#: src/modules/author-boxes/author-boxes.php:2313 +#: src/modules/author-boxes/author-boxes.php:2297 #, php-format msgid "Select %1s" msgstr "Sélectionner %1s" @@ -3408,22 +3439,23 @@ msgstr "Sélectionner %1s" msgid "Select a user" msgstr "Veuillez sélectionner un utilisateur/une utilisatrice" -#: src/modules/author-boxes/author-boxes.php:2578 +#: src/modules/author-boxes/author-boxes.php:2562 msgid "Select an author box" msgstr "Sélectionner une boîte d’auteur/autrice" #: src/core/CustomFieldsModel.php:115 -#: src/modules/author-list/author-list.php:330 +#: src/modules/author-list/author-list.php:346 msgid "Select an option" msgstr "Sélectionner une option" -#: src/modules/author-list/author-list.php:381 +#: src/modules/author-list/author-list.php:397 msgid "" -"Select an option to limit the results to selected user roles, author type or " -"specific authors." +"Select an option to limit the results to selected user roles, author types " +"or specific authors." msgstr "" "Sélectionner une option pour limiter les résultats aux rôles du compte " -"sélectionnés, au type d’auteur/autrice ou à des auteurs/autrices spécifiques." +"sélectionnés, aux types d’auteur/autrice ou à des auteurs/autrices " +"spécifiques." #: src/core/Classes/Author_Editor.php:742 msgid "Select Author Account" @@ -3431,23 +3463,23 @@ msgstr "Sélectionner un compte d’auteur/autrice" #: src/core/Classes/Author_Editor.php:466 #: src/core/Classes/Author_Editor.php:515 -#: src/modules/multiple-authors/multiple-authors.php:2004 +#: src/modules/multiple-authors/multiple-authors.php:2007 msgid "Select image" msgstr "Selectionner une image" -#: src/modules/multiple-authors/multiple-authors.php:2096 -#: src/modules/multiple-authors/multiple-authors.php:2133 -#: src/modules/multiple-authors/multiple-authors.php:2170 -#: src/modules/multiple-authors/multiple-authors.php:2207 -#: src/modules/multiple-authors/multiple-authors.php:2244 +#: src/modules/multiple-authors/multiple-authors.php:2099 +#: src/modules/multiple-authors/multiple-authors.php:2136 +#: src/modules/multiple-authors/multiple-authors.php:2173 +#: src/modules/multiple-authors/multiple-authors.php:2210 +#: src/modules/multiple-authors/multiple-authors.php:2247 msgid "Select option" msgstr "Sélectionner une option" -#: src/modules/author-boxes/author-boxes.php:1528 +#: src/modules/author-boxes/author-boxes.php:1514 msgid "Select Preview Post" msgstr "Selectionner l’aperçu de la publication" -#: src/modules/author-list/author-list.php:969 +#: src/modules/author-list/author-list.php:1001 msgid "Select Users" msgstr "Sélectionner les utilisateurs/utilisatrices" @@ -3469,26 +3501,26 @@ msgstr "Séparez les auteurs et autrices par des virgules" msgid "Set %1$s Image" msgstr "Définir l’image %1$s" -#: src/modules/multiple-authors/multiple-authors.php:389 +#: src/modules/multiple-authors/multiple-authors.php:392 #: src/modules/settings/settings.php:105 msgid "Settings" msgstr "Réglages" -#: src/modules/author-boxes/author-boxes.php:2162 -#: src/modules/author-boxes/author-boxes.php:2167 +#: src/modules/author-boxes/author-boxes.php:2146 +#: src/modules/author-boxes/author-boxes.php:2151 msgid "Settings Imported Successfully!" msgstr "Les réglages ont été importés correctement !" -#: src/modules/author-list/author-list.php:231 +#: src/modules/author-list/author-list.php:239 msgid "Settings updated successfully." msgstr "Les réglages ont été mises à jour correctement." #: src/modules/author-boxes/author-boxes.php:199 #: src/modules/author-boxes/author-boxes.php:973 -#: src/modules/author-boxes/author-boxes.php:2058 -#: src/modules/author-boxes/author-boxes.php:2071 -#: src/modules/author-list/author-list.php:749 -#: src/modules/author-list/classes/AuthorListTable.php:89 +#: src/modules/author-boxes/author-boxes.php:2044 +#: src/modules/author-boxes/author-boxes.php:2055 +#: src/modules/author-list/author-list.php:777 +#: src/modules/author-list/classes/AuthorListTable.php:152 msgid "Shortcode" msgstr "Code court" @@ -3497,7 +3529,7 @@ msgid "Shortcode documentation." msgstr "Documentation du code court." #: src/modules/author-boxes/author-boxes.php:1038 -#: src/modules/multiple-authors/multiple-authors.php:2903 +#: src/modules/multiple-authors/multiple-authors.php:2906 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1565 msgid "Shortcodes" msgstr "Codes courts" @@ -3514,7 +3546,7 @@ msgstr "Afficher après" msgid "Show after an individual author" msgstr "Afficher après un auteur/autrice individuel" -#: src/modules/multiple-authors/multiple-authors.php:786 +#: src/modules/multiple-authors/multiple-authors.php:789 msgid "Show author bio:" msgstr "Afficher la bio de l’auteur ou autrice :" @@ -3523,11 +3555,11 @@ msgstr "Afficher la bio de l’auteur ou autrice :" msgid "Show Author Categories" msgstr "Afficher les catégories d’auteurs/autrices" -#: src/modules/multiple-authors/multiple-authors.php:805 +#: src/modules/multiple-authors/multiple-authors.php:808 msgid "Show author page title:" msgstr "Afficher le titre de la page de l’auteur ou autrice :" -#: src/modules/multiple-authors/multiple-authors.php:887 +#: src/modules/multiple-authors/multiple-authors.php:890 msgid "Show authors:" msgstr "Afficher les auteurs et autrices :" @@ -3543,7 +3575,7 @@ msgstr "Afficher avant de un auteur/autrice individuel" msgid "Show before author group" msgstr "Afficher avant de un groupe d’auteur/autrice" -#: src/modules/multiple-authors/multiple-authors.php:666 +#: src/modules/multiple-authors/multiple-authors.php:669 msgid "Show below the content:" msgstr "Afficher en dessous du contenu :" @@ -3555,11 +3587,11 @@ msgstr "Afficher les renseignements biographiques" msgid "Show Box Title" msgstr "Afficher le titre de la boîte" -#: src/modules/multiple-authors/multiple-authors.php:920 +#: src/modules/multiple-authors/multiple-authors.php:923 msgid "Show category:" msgstr "Afficher les catégories :" -#: src/modules/multiple-authors/multiple-authors.php:909 +#: src/modules/multiple-authors/multiple-authors.php:912 msgid "Show comment counts:" msgstr "Afficher le nombre de commentaires :" @@ -3567,7 +3599,7 @@ msgstr "Afficher le nombre de commentaires :" msgid "Show Display Name" msgstr "Afficher le nom d’affichage" -#: src/modules/multiple-authors/multiple-authors.php:707 +#: src/modules/multiple-authors/multiple-authors.php:710 msgid "Show email link:" msgstr "Afficher le lien e-mail :" @@ -3575,19 +3607,19 @@ msgstr "Afficher le lien e-mail :" msgid "Show Even if No Recent Post" msgstr "Afficher même si il n’y a aucune publication récente" -#: src/modules/multiple-authors/multiple-authors.php:876 +#: src/modules/multiple-authors/multiple-authors.php:879 msgid "Show excerpt:" msgstr "Afficher l’extrait :" -#: src/modules/multiple-authors/multiple-authors.php:843 +#: src/modules/multiple-authors/multiple-authors.php:846 msgid "Show featured image:" msgstr "Afficher l’image mise en avant :" -#: src/modules/multiple-authors/multiple-authors.php:898 +#: src/modules/multiple-authors/multiple-authors.php:901 msgid "Show post date:" msgstr "Afficher la date de publication :" -#: src/modules/multiple-authors/multiple-authors.php:942 +#: src/modules/multiple-authors/multiple-authors.php:945 msgid "Show read more link:" msgstr "Afficher le lien lire la suite :" @@ -3599,15 +3631,15 @@ msgstr "Afficher les publications récentes" msgid "Show Recent Posts Title" msgstr "Afficher le titre des publications récentes" -#: src/modules/multiple-authors/multiple-authors.php:715 +#: src/modules/multiple-authors/multiple-authors.php:718 msgid "Show site link:" msgstr "Afficher le lien du site :" -#: src/modules/multiple-authors/multiple-authors.php:931 +#: src/modules/multiple-authors/multiple-authors.php:934 msgid "Show tags:" msgstr "Afficher les étiquettes :" -#: src/modules/multiple-authors/multiple-authors.php:609 +#: src/modules/multiple-authors/multiple-authors.php:612 msgid "Show username in the search field:" msgstr "" "Affichez l’identifiant de un utilisateur/une utilisatrice dans le champ de " @@ -3621,7 +3653,7 @@ msgstr "Mettez vos auteurs/autrices en valeur avec PublishPress Blocks" msgid "Simple List" msgstr "Liste simple" -#: src/modules/multiple-authors/multiple-authors.php:1094 +#: src/modules/multiple-authors/multiple-authors.php:1097 msgid "Simple list legacy layout Author Box:" msgstr "Mise en page simple de l’ancienne liste de la boîte d’auteur/autrice :" @@ -3633,7 +3665,7 @@ msgstr "Bloc de noms simples des auteurs/autrices (catégories)" msgid "Simple Name Authors Inline (Categories)" msgstr "Noms simples des auteurs/autrices en ligne (catégories)" -#: src/modules/multiple-authors/multiple-authors.php:1234 +#: src/modules/multiple-authors/multiple-authors.php:1237 msgid "Single" msgstr "Unique" @@ -3704,7 +3736,7 @@ msgstr "" msgid "span" msgstr "span" -#: src/modules/author-list/author-list.php:757 +#: src/modules/author-list/author-list.php:785 msgid "Static Shortcode" msgstr "Code court statique" @@ -3712,26 +3744,26 @@ msgstr "Code court statique" msgid "Status" msgstr "État" -#: src/core/Classes/Utils.php:1127 +#: src/core/Classes/Utils.php:1128 msgid "Support for Polylang" msgstr "Prendre en charge Polylang" #: src/core/Classes/Author_Editor.php:805 -#: src/modules/multiple-authors/multiple-authors.php:3789 +#: src/modules/multiple-authors/multiple-authors.php:3792 msgid "Sync author and user fields" msgstr "Synchroniser les champs de l’auteur/autrice et du compte" -#: src/modules/multiple-authors/multiple-authors.php:3820 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Sync author and user URLs" msgstr "Synchroniser les URL des auteurs/autrices et des comptes" -#: src/modules/multiple-authors/multiple-authors.php:2673 +#: src/modules/multiple-authors/multiple-authors.php:2676 msgid "Synchronize PublishPress Authors Fields and user profile fields" msgstr "" "Synchronisez les champs de PublishPress Authors et le champs du profil de " "l’utilisateur/utilisatrice" -#: src/modules/multiple-authors/multiple-authors.php:2680 +#: src/modules/multiple-authors/multiple-authors.php:2683 msgid "Synchronize the author and user URLs" msgstr "Synchroniser les URL des auteurs/autrices et des comptes" @@ -3745,7 +3777,7 @@ msgctxt "taxonomy singular name" msgid "Author" msgstr "Auteur/autrice" -#: src/modules/author-boxes/author-boxes.php:2222 +#: src/modules/author-boxes/author-boxes.php:2206 msgid "Template generated successfuly!" msgstr "Le modèle a été généré correctement !" @@ -3753,7 +3785,7 @@ msgstr "Le modèle a été généré correctement !" msgid "Text" msgstr "Texte" -#: src/modules/multiple-authors/multiple-authors.php:1351 +#: src/modules/multiple-authors/multiple-authors.php:1354 #, php-format msgid "" "The authors data shortcode accepts field parameter such as: %1$s %2$s %3$s " @@ -3785,7 +3817,7 @@ msgstr "Thème" msgid "There are no PublishPress modules registered" msgstr "Aucun de modules PublishPress enregistrés" -#: src/modules/multiple-authors/multiple-authors.php:1323 +#: src/modules/multiple-authors/multiple-authors.php:1326 #, php-format msgid "" "There is one final option to mention. This is mostly useful if you're using " @@ -3801,7 +3833,7 @@ msgstr "" "auteurs/autrices pour afficher le profil de l’auteur/autrice actuel. Il vous " "suffit d’ajouter le paramètre %s." -#: src/modules/multiple-authors/multiple-authors.php:2017 +#: src/modules/multiple-authors/multiple-authors.php:2020 msgid "" "This avatar will be used as default avatar instead of gravatar where no " "custom avatar is added to profile." @@ -3842,7 +3874,7 @@ msgstr "" "cette URL provient du compte de l’utilisateur ou de l’utilisatrice et ne " "peut être modifiée." -#: src/modules/author-list/author-list.php:1010 +#: src/modules/author-list/author-list.php:1042 msgid "" "This is a quick preview of this Author List. Test on frontend pages to see " "exactly how it looks with your theme." @@ -3850,11 +3882,11 @@ msgstr "" "Ceci est un aperçu rapide de cette liste d’auteurs. Testez-la sur les pages " "de l’interface publique pour voir comment elle s’intègre dans votre thème." -#: src/modules/multiple-authors/multiple-authors.php:2108 -#: src/modules/multiple-authors/multiple-authors.php:2145 -#: src/modules/multiple-authors/multiple-authors.php:2182 -#: src/modules/multiple-authors/multiple-authors.php:2219 -#: src/modules/multiple-authors/multiple-authors.php:2256 +#: src/modules/multiple-authors/multiple-authors.php:2111 +#: src/modules/multiple-authors/multiple-authors.php:2148 +#: src/modules/multiple-authors/multiple-authors.php:2185 +#: src/modules/multiple-authors/multiple-authors.php:2222 +#: src/modules/multiple-authors/multiple-authors.php:2259 #, php-format msgid "This is useful if you use legacy shortcode %s" msgstr "Ceci est utile si vous utilisez l’ancien code court %s" @@ -3876,7 +3908,7 @@ msgstr "" "Ce nom est utilisé dans plusieurs affichages par défaut et dans certaines " "intégrations de moteurs de recherche." -#: src/core/Classes/Post_Editor.php:454 +#: src/core/Classes/Post_Editor.php:459 msgid "" "This option is showing because you do not have a WordPress user selected as " "an author. For some tasks, it can be helpful to have a user selected here. " @@ -3891,13 +3923,13 @@ msgstr "" msgid "This plugin can be deleted." msgstr "Cette extension peut être supprimée." -#: src/modules/multiple-authors/multiple-authors.php:2530 +#: src/modules/multiple-authors/multiple-authors.php:2533 msgid "This setting may be disabled for users who can not edit others posts." msgstr "" "Ce réglage peut être désactivé pour les utilisateurs ou les utilisatrices " "qui ne peuvent pas modifier les publications des autres." -#: src/modules/multiple-authors/multiple-authors.php:2348 +#: src/modules/multiple-authors/multiple-authors.php:2351 msgid "" "This will allows you map a WordPress user to more than one author. Don't use " "this feature unless requested to do so by the PublishPress team. This plugin " @@ -3917,97 +3949,97 @@ msgstr "" "Ceci affichera l’auteur/autrice dans un format en ligne côte à côte au lieu " "d’un format en bloc." -#: src/modules/multiple-authors/multiple-authors.php:2300 +#: src/modules/multiple-authors/multiple-authors.php:2303 msgid "This will display author page title." msgstr "Cela affichera le titre de la page de l’auteur ou autrice." -#: src/modules/multiple-authors/multiple-authors.php:2039 +#: src/modules/multiple-authors/multiple-authors.php:2042 msgid "This will display the author bio." msgstr "Cela affichera la bio de l’auteur ou de l’autrice." -#: src/modules/multiple-authors/multiple-authors.php:1209 +#: src/modules/multiple-authors/multiple-authors.php:1212 msgid "This will display the authors box at the end of the content." msgstr "" "Cela permettra d’afficher la boîte des auteurs ou autrices à la fin du " "contenu." -#: src/modules/multiple-authors/multiple-authors.php:2584 +#: src/modules/multiple-authors/multiple-authors.php:2587 msgid "This will display the authors email in the author box." msgstr "" "Cela affichera l’e-mail de l’auteur/autrice dans la boîte de l’auteur/" "autrice." -#: src/modules/multiple-authors/multiple-authors.php:2604 +#: src/modules/multiple-authors/multiple-authors.php:2607 msgid "This will display the authors site in the author box." msgstr "" "Cela affichera le site de l’auteur ou autrice dans la boîte de l’auteur ou " "de l’autrice." -#: src/modules/multiple-authors/multiple-authors.php:2372 +#: src/modules/multiple-authors/multiple-authors.php:2375 msgid "This will display the authors." msgstr "Cela affichera les auteurs et les autrices." -#: src/modules/multiple-authors/multiple-authors.php:2444 +#: src/modules/multiple-authors/multiple-authors.php:2447 msgid "This will display the categories." msgstr "Cela affichera les catégories." -#: src/modules/multiple-authors/multiple-authors.php:2420 +#: src/modules/multiple-authors/multiple-authors.php:2423 msgid "This will display the comment count." msgstr "Cela affichera le nombre de commentaires." -#: src/modules/multiple-authors/multiple-authors.php:2324 +#: src/modules/multiple-authors/multiple-authors.php:2327 msgid "This will display the excerpt." msgstr "Cela affichera l’extrait." -#: src/modules/multiple-authors/multiple-authors.php:2276 +#: src/modules/multiple-authors/multiple-authors.php:2279 msgid "This will display the featured image." msgstr "Cela affichera l’image mise en avant." -#: src/modules/multiple-authors/multiple-authors.php:2396 +#: src/modules/multiple-authors/multiple-authors.php:2399 msgid "This will display the published date." msgstr "Cela affichera la date de publication." -#: src/modules/multiple-authors/multiple-authors.php:2492 +#: src/modules/multiple-authors/multiple-authors.php:2495 msgid "This will display the read more link." msgstr "Cela affichera le lien « Lire la suite »." -#: src/modules/multiple-authors/multiple-authors.php:2468 +#: src/modules/multiple-authors/multiple-authors.php:2471 msgid "This will display the tags." msgstr "Cela affichera les étiquettes." -#: src/modules/multiple-authors/multiple-authors.php:2624 +#: src/modules/multiple-authors/multiple-authors.php:2627 msgid "This will load Font Awesome icons for use in Author Boxes." msgstr "" "Cela chargera les icônes Font Awesome à utiliser dans les boîtes d’autor·ice." -#: src/modules/multiple-authors/multiple-authors.php:2642 +#: src/modules/multiple-authors/multiple-authors.php:2645 msgid "This will remove the Authors Box in \"Quick Edit\"." msgstr "Cela supprimera la boîte des auteurs dans « Modification rapide »." -#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:338 +#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:354 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1214 -#: src/modules/author-list/classes/AuthorListTable.php:87 +#: src/modules/author-list/classes/AuthorListTable.php:150 msgid "Title" msgstr "Titre" -#: src/modules/multiple-authors/multiple-authors.php:690 +#: src/modules/multiple-authors/multiple-authors.php:693 msgid "Title for the author box:" msgstr "Titre pour la boîte de l’auteur/autrice :" -#: src/modules/multiple-authors/multiple-authors.php:1524 +#: src/modules/multiple-authors/multiple-authors.php:1527 #, php-format msgid "To display a search box for authors, use %1$s ." msgstr "" "Pour afficher une boîte de recherche pour les auteurs et autrices, utilisez " "%1$s ." -#: src/modules/multiple-authors/multiple-authors.php:1513 +#: src/modules/multiple-authors/multiple-authors.php:1516 #, php-format msgid "To further customize the order of results, use %1$s or %2$s ." msgstr "" "Pour personnaliser davantage le tri des résultats, utilisez %1$s ou %2$s ." -#: src/modules/multiple-authors/multiple-authors.php:1500 +#: src/modules/multiple-authors/multiple-authors.php:1503 #, php-format msgid "" "To order the results based on post count, use %1$s . To order the results by " @@ -4018,6 +4050,17 @@ msgstr "" "trier les résultats par nom, utilisez %2$s . Vous pouvez également trier les " "résultats par champs de profil comme %3$s, %4$s, etc" +#: src/modules/author-list/classes/AuthorListTable.php:356 +msgid "Trash" +msgstr "Mettre à la corbeille" + +#: src/modules/author-list/classes/AuthorListTable.php:65 +#, php-format +msgid "Trash %s" +msgid_plural "Trash %s" +msgstr[0] "Mettre %s à la corbeille" +msgstr[1] "Mettre %s à la corbeille" + #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:577 msgid "Two Columns (Categories)" msgstr "Deux colonnes (catégories)" @@ -4059,26 +4102,26 @@ msgstr "Mettre à jour le nombre de publications" msgid "Updated %d authors" msgstr "%d auteurs et autrices ont été mis à jour" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3829 msgid "Updated %d of %d authors..." msgstr "%d de %d auteurs/autrices a été mis à jour…" -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3798 msgid "Updated %d of %d posts..." msgstr "Mise à jour de %d de %d publications…" -#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3797 msgid "Updating author field on posts..." msgstr "Mise à jour du champ auteur ou autrice sur les publications…" -#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3828 msgid "Updating authors slug..." msgstr "En cours de mettre à jour le slug des auteurs/autrices…" -#: includes.php:63 src/core/Classes/Utils.php:1132 -#: src/modules/author-boxes/author-boxes.php:2527 +#: includes.php:63 src/core/Classes/Utils.php:1133 +#: src/modules/author-boxes/author-boxes.php:2511 #: src/modules/author-custom-fields/author-custom-fields.php:951 -#: src/modules/author-list/author-list.php:1033 +#: src/modules/author-list/author-list.php:1065 msgid "Upgrade to Pro" msgstr "Passez à la version Pro" @@ -4108,7 +4151,7 @@ msgstr "" "Utilisez le bloc d’affichage du contenu pour présenter vos publications dans " "de nombreuses mises en page magnifiques." -#: src/modules/author-list/author-list.php:304 +#: src/modules/author-list/author-list.php:320 msgid "Users" msgstr "Comptes" @@ -4130,8 +4173,8 @@ msgstr "Voir %1$s" msgid "View All Posts" msgstr "Voir toutes les publications" -#: src/modules/author-boxes/author-boxes.php:1825 -#: src/modules/author-boxes/author-boxes.php:1826 +#: src/modules/author-boxes/author-boxes.php:1811 +#: src/modules/author-boxes/author-boxes.php:1812 #: src/modules/default-layouts/default-layouts.php:105 msgid "View all posts" msgstr "Voir toutes les publications" @@ -4188,20 +4231,20 @@ msgstr "Ligne de « Voir toutes les publications »" msgid "View Author" msgstr "Voir l’auteur/autrice" -#: src/modules/multiple-authors/multiple-authors.php:1773 -msgid "View Author Page" -msgstr "Voir la page d’auteur/autrice" - -#: src/core/Classes/Utils.php:1157 +#: src/core/Classes/Utils.php:1158 msgid "View Knowledge Base" msgstr "Voir la base de connaissances" +#: src/modules/multiple-authors/multiple-authors.php:1776 +msgid "View sample Author Page" +msgstr "Voir l’exemple de page d’auteur/autrice" + #: src/core/Classes/Author_Editor.php:394 #: src/modules/author-custom-fields/author-custom-fields.php:914 msgid "Website" msgstr "SIte" -#: src/modules/multiple-authors/multiple-authors.php:1262 +#: src/modules/multiple-authors/multiple-authors.php:1265 msgid "" "With this shortcode you can display the author box in any part of the " "content. " @@ -4209,7 +4252,7 @@ msgstr "" "Avec le code court, vous pouvez afficher la boîte de l’auteur ou de " "l’autrice dans n’importe quelle partie du contenu." -#: src/modules/multiple-authors/multiple-authors.php:1343 +#: src/modules/multiple-authors/multiple-authors.php:1346 msgid "" "With this shortcode you can display the author names or any profile field in " "any part of the content." @@ -4217,7 +4260,7 @@ msgstr "" "Avec le code court, vous pouvez afficher les noms des auteurs et autrices ou " "tout autre champ de profil dans n’importe quelle partie du contenu." -#: src/modules/multiple-authors/multiple-authors.php:1412 +#: src/modules/multiple-authors/multiple-authors.php:1415 msgid "" "With this shortcode, you can show all the authors together in a single " "display." @@ -4241,7 +4284,7 @@ msgstr "Oui, il est un profil social" msgid "Yoast SEO Integration" msgstr "Intégration Yoast SEO" -#: src/modules/multiple-authors/multiple-authors.php:1390 +#: src/modules/multiple-authors/multiple-authors.php:1393 #, php-format msgid "" "You can also decide to return an array list of authors by using " @@ -4253,7 +4296,7 @@ msgstr "" "les données de l’objet auteur sous forme de tableau. Vous pouvez consulter " "tous les détails et les exemples d’utilisation %2$s dans ce guide%3$s." -#: src/modules/multiple-authors/multiple-authors.php:1281 +#: src/modules/multiple-authors/multiple-authors.php:1284 #, php-format msgid "" "You can also decide whether or not to show the main title, using %1$s or " @@ -4262,7 +4305,7 @@ msgstr "" "Vous pouvez également décider d’afficher ou non le titre principal, en " "utilisant %1$s ou %2$s ." -#: src/modules/multiple-authors/multiple-authors.php:1534 +#: src/modules/multiple-authors/multiple-authors.php:1537 #, php-format msgid "" "You can also show a dropdown menu that allows users to search on specific " @@ -4274,14 +4317,14 @@ msgstr "" "pouvez ajouter des champs à la liste déroulante en utilisant %1$s. Pour " "cela, il faut que la boîte de recherche soit active." -#: src/modules/multiple-authors/multiple-authors.php:1368 +#: src/modules/multiple-authors/multiple-authors.php:1371 msgid "" "You can also specify the separator to be used for mulitple authors data." msgstr "" "Vous pouvez également spécifier le séparateur à utiliser pour les données " "concernant plusieurs auteurs ou autrices." -#: src/modules/multiple-authors/multiple-authors.php:1445 +#: src/modules/multiple-authors/multiple-authors.php:1448 #, php-format msgid "" "You can choose the number of authors per page using %1$s . %2$s Pagination " @@ -4290,14 +4333,14 @@ msgstr "" "Vous pouvez choisir le nombre d’auteurs ou autrices par page en utilisant " "%1$s . %2$s La pagination sera automatiquement ajoutée si nécessaire." -#: src/modules/author-boxes/author-boxes.php:2524 +#: src/modules/author-boxes/author-boxes.php:2508 msgid "" "You can create Author Boxes where Authors are grouped into their categories." msgstr "" "Vous pouvez créer des boîtes d’auteurs/autrices dans lesquelles les auteurs/" "autrices sont regroupés par catégories." -#: src/modules/multiple-authors/multiple-authors.php:1435 +#: src/modules/multiple-authors/multiple-authors.php:1438 #, php-format msgid "" "You can define the number of layout columns by using %1$s to show authors in " @@ -4306,7 +4349,7 @@ msgstr "" "Vous pouvez définir le nombre de colonnes de mise en page en utilisant %1$s " "pour afficher les auteurs/autrices en 2 colonnes." -#: src/modules/multiple-authors/multiple-authors.php:1544 +#: src/modules/multiple-authors/multiple-authors.php:1547 #, php-format msgid "" "You can limit the author list to users with a published post within a " @@ -4318,7 +4361,7 @@ msgstr "" "utilisant %1$s . Ceci accepte une valeur de date anglaise comme il y a 1 " "semaine, 1 mois, 6 mois, 1 an, etc." -#: src/modules/multiple-authors/multiple-authors.php:1456 +#: src/modules/multiple-authors/multiple-authors.php:1459 #, php-format msgid "" "You can limit the result to only authors who are assigned to posts by using " @@ -4330,7 +4373,7 @@ msgstr "" "utiliser %3$s pour afficher tous les auteurs/autrices, y compris ceux qui " "n’ont pas de publications." -#: src/modules/multiple-authors/multiple-authors.php:1468 +#: src/modules/multiple-authors/multiple-authors.php:1471 #, php-format msgid "" "You can limit the result to only guest authors by using %1$s . %2$s " @@ -4340,7 +4383,7 @@ msgstr "" "%1$s . %2$s Alternativement, %3$s ne montrera que les auteurs/autrices ayant " "un compte WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1332 +#: src/modules/multiple-authors/multiple-authors.php:1335 msgid "" "You can load the authors belonging to a specific author categories by " "providing the category slug or slugs separated by comma for more than one " @@ -4350,7 +4393,7 @@ msgstr "" "d’auteurs/autrices spécifique en fournissant le ou les slugs de la catégorie " "séparés par une virgule pour plus d’une catégorie." -#: src/modules/multiple-authors/multiple-authors.php:1305 +#: src/modules/multiple-authors/multiple-authors.php:1308 msgid "" "You can load the authors for a specific author by providing the author term " "id for both guest and user author. For example, this shortcode will load the " @@ -4361,8 +4404,8 @@ msgstr "" "autrice invité que pour l’auteur/autrice du compte. Par exemple, ce code " "court chargera l’auteur/autrice avec l’id de terme de 32" -#: src/modules/multiple-authors/multiple-authors.php:1291 -#: src/modules/multiple-authors/multiple-authors.php:1375 +#: src/modules/multiple-authors/multiple-authors.php:1294 +#: src/modules/multiple-authors/multiple-authors.php:1378 msgid "" "You can load the authors for a specific post, even if you are not in that " "post currently. For example, this shortcode will load the authors for the " @@ -4372,7 +4415,7 @@ msgstr "" "si vous n’êtes pas dans cette publication. Par exemple, ce code court " "chargera les auteurs/autrices de l’article dont l’ID est 32." -#: src/modules/multiple-authors/multiple-authors.php:1298 +#: src/modules/multiple-authors/multiple-authors.php:1301 msgid "" "You can load the authors for a specific user by providing the user id. For " "example, this shortcode will load the author with user id of 32" @@ -4381,7 +4424,7 @@ msgstr "" "spécifique en fournissant l’identifiant de l’utilisateur/utilisatrice. Par " "exemple, ce code court chargera l’auteur/autrice avec l’id de terme de 32" -#: src/modules/multiple-authors/multiple-authors.php:1382 +#: src/modules/multiple-authors/multiple-authors.php:1385 msgid "" "You can retrieve a specific author by providing the author's term ID. For " "example, this shortcode will load the author with the term ID of 102." @@ -4390,7 +4433,7 @@ msgstr "" "l’identifiant du terme de l’auteur/autrice. Par exemple, ce code court " "chargera l’auteur/autrice dont l’ID de terme est 102." -#: src/modules/multiple-authors/multiple-authors.php:1401 +#: src/modules/multiple-authors/multiple-authors.php:1404 msgid "" "You can retrieve authors belonging to a specific Author Category by " "providing the category slug or slugs. Separate multiple slugs with a comma." @@ -4407,7 +4450,7 @@ msgstr "" "Vous pouvez spécifier un séparateur tel que ’,’ pour séparer les auteurs/" "autrices. Ce champ accepte le HTML de base." -#: src/modules/multiple-authors/multiple-authors.php:1270 +#: src/modules/multiple-authors/multiple-authors.php:1273 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4417,7 +4460,7 @@ msgstr "" "des boîtes d’auteur/autrice. Vous trouverez tous les détails de chaque " "option de mise en page %1$s dans ce guide %2$s." -#: src/modules/multiple-authors/multiple-authors.php:1420 +#: src/modules/multiple-authors/multiple-authors.php:1423 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4429,12 +4472,12 @@ msgstr "" "option de mise en page %1$s dans ce guide %2$s. %3$s %4$s Ce code court vous " "fournit également deux mises en page personnalisées : %5$s %6$s." -#: src/modules/author-boxes/author-boxes.php:2128 +#: src/modules/author-boxes/author-boxes.php:2112 #, php-format -msgid "You can use basic html as prefixes in short code, for example: %1s." +msgid "You can use basic HTML in this field. For example: Read Time %1s." msgstr "" -"Vous pouvez utiliser les HTML de base comme préfixes dans un code court, par " -"exemple : %1s." +"Vous pouvez utiliser du HTML de base dans ce champ. Par exemple : Temps de " +"lecture %1s." #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:858 #, php-format @@ -4451,7 +4494,7 @@ msgstr "" "Vous pouvez utiliser plusieurs noms de classe. Laissez un espace entre " "chaque classe." -#: src/modules/author-boxes/author-boxes.php:2133 +#: src/modules/author-boxes/author-boxes.php:2117 msgid "" "You can use this data to export your author box design and import it to a " "new site." @@ -4485,6 +4528,26 @@ msgstr "" "Vous utilisez PublishPress Authors Free. La version Pro offre plus de " "fonctionnalités et de support. %sPasser à la version Pro%s" +#~ msgid "" +#~ "Authors Pro allows you to set Author Lists pagination using number of " +#~ "authors to show per page, ability to show or hide authors without without " +#~ "any posts, order authors by their published post counts, names and limit " +#~ "the author results to users with a published post within a specific time." +#~ msgstr "" +#~ "Authors Pro vous permet d’ajouter des fonctionnalités supplémentaires à " +#~ "la liste des auteurs/autrices. Ces fonctionnalités incluent la " +#~ "pagination, le choix de l’ordre des auteurs/autrices, et bien plus encore." + +#~ msgid "" +#~ "Authors Pro allows you to show search box and search through author " +#~ "fields." +#~ msgstr "" +#~ "Authors Pro vous permet d’afficher la boîte de recherche et de rechercher " +#~ "dans les champs de l’auteur/autrice." + +#~ msgid "Convert into guest author" +#~ msgstr "Convertir en auteur/autrice invité(e)" + #~ msgid "Border color" #~ msgstr "Coluleur de la bordure" diff --git a/languages/publishpress-authors-it_IT.mo b/languages/publishpress-authors-it_IT.mo index 32e0dd409662a2128a82ff8aaa674ab0aba3587c..71f9e7caa125449c0f0540bfabf888ff417ed83d 100644 GIT binary patch delta 19496 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 c=wy$XDl=2@3GT#Rimuovi per " "rimuoverli." -#: src/modules/author-boxes/author-boxes.php:2175 +#: src/modules/author-boxes/author-boxes.php:2159 msgid "" "Click the \"Generate Template\" button under the text area. Wait for the " "code to be generated." @@ -1315,12 +1333,12 @@ msgstr "" "Fai click per modificare questo autore li, oppure puoi anche trascinarlo per " "cambiarne la posizione" -#: src/modules/multiple-authors/multiple-authors.php:1592 -#: src/modules/multiple-authors/multiple-authors.php:1593 +#: src/modules/multiple-authors/multiple-authors.php:1595 +#: src/modules/multiple-authors/multiple-authors.php:1596 msgid "Click To Copy!" msgstr "Fai clic per copiare!" -#: src/modules/multiple-authors/multiple-authors.php:4392 +#: src/modules/multiple-authors/multiple-authors.php:4395 msgid "Click to run the update now" msgstr "Fai clic per avviare adesso l'aggiornamento" @@ -1339,16 +1357,16 @@ msgstr "Coautori" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3858 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Collecting data for the migration..." msgstr "Raccogliendo i dati per la migrazione…" -#: src/modules/multiple-authors/multiple-authors.php:3790 -#: src/modules/multiple-authors/multiple-authors.php:3821 +#: src/modules/multiple-authors/multiple-authors.php:3793 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Collecting data..." msgstr "Raccogliendo i dati…" -#: src/modules/multiple-authors/multiple-authors.php:698 +#: src/modules/multiple-authors/multiple-authors.php:701 msgid "Color scheme:" msgstr "Schema dei colori:" @@ -1361,11 +1379,11 @@ msgstr "Conteggio commenti" msgid "Configure" msgstr "Configura" -#: src/modules/author-list/author-list.php:396 +#: src/modules/author-list/author-list.php:412 msgid "Configure Author List Options" msgstr "Configurazione delle opzioni dell'elenco degli autori" -#: src/modules/author-boxes/author-boxes.php:2178 +#: src/modules/author-boxes/author-boxes.php:2162 msgid "" "Congratulations. Your can now choose your template inside the PublishPress " "Authors Settings." @@ -1378,15 +1396,15 @@ msgid "Contact" msgstr "Contatto" #: src/core/Classes/Author_Editor.php:809 -msgid "Convert into guest author" -msgstr "Converti in autore ospite" +msgid "Convert into Guest Author With User Account" +msgstr "Convertire in autore ospite con account utente" -#: src/modules/author-boxes/author-boxes.php:2147 -#: src/modules/author-boxes/author-boxes.php:2219 +#: src/modules/author-boxes/author-boxes.php:2131 +#: src/modules/author-boxes/author-boxes.php:2203 msgid "Copied to Clipboard!" msgstr "Copiato negli appunti!" -#: src/modules/multiple-authors/multiple-authors.php:1591 +#: src/modules/multiple-authors/multiple-authors.php:1594 msgid "Copied!" msgstr "Copiato!" @@ -1400,26 +1418,26 @@ msgstr "Copia dati info autore" msgid "Copy Bylines Data" msgstr "Copiare i dati info autori" -#: src/modules/multiple-authors/multiple-authors.php:2694 +#: src/modules/multiple-authors/multiple-authors.php:2697 msgid "Copy Co-Authors Plus Data" msgstr "Copia i dati Co-Authors Plus" -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Copy Co-Authors Plus data" msgstr "Copia i dati Co-Authors Plus" -#: src/modules/author-boxes/author-boxes.php:2177 +#: src/modules/author-boxes/author-boxes.php:2161 msgid "Copy the generated code and paste it inside the newly created file." msgstr "Copia il codice generato e incollalo nel file appena creato." -#: src/modules/author-boxes/author-boxes.php:2143 -#: src/modules/author-boxes/author-boxes.php:2214 +#: src/modules/author-boxes/author-boxes.php:2127 +#: src/modules/author-boxes/author-boxes.php:2198 msgid "Copy to Clipboard" msgstr "Copia negli appunti" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Copying authors' data..." msgstr "Copiando i dati degli autori…" @@ -1451,7 +1469,7 @@ msgstr "" "Crea un profilo autore senza account utente collegato. Questa opzione è " "leggera, ma può avere problemi di compatibilità con altri temi e plugin." -#: src/modules/author-boxes/author-boxes.php:2176 +#: src/modules/author-boxes/author-boxes.php:2160 #, php-format msgid "" "Create an empty php template file with your desired file slug in the %1s /" @@ -1466,7 +1484,7 @@ msgstr "" "name%6s/publishpress-authors/author-boxes/my-first-custom-author-template." "php %7s ." -#: src/core/Classes/Utils.php:1126 +#: src/core/Classes/Utils.php:1127 msgid "Create Author Boxes with authors organized in categories" msgstr "Crea riquadri di autori con autori organizzati in categorie" @@ -1474,19 +1492,19 @@ msgstr "Crea riquadri di autori con autori organizzati in categorie" msgid "Create Author Profile" msgstr "Crea il profilo autore" -#: src/modules/multiple-authors/multiple-authors.php:2663 +#: src/modules/multiple-authors/multiple-authors.php:2666 msgid "Create missing PublishPress Authors profiles" msgstr "Crea i profili mancanti di PublishPress Authors" -#: src/modules/multiple-authors/multiple-authors.php:2669 +#: src/modules/multiple-authors/multiple-authors.php:2672 msgid "Create PublishPress Authors profiles" msgstr "Crea i profili di PublishPress Authors" -#: src/modules/multiple-authors/multiple-authors.php:2661 +#: src/modules/multiple-authors/multiple-authors.php:2664 msgid "Create PublishPress Authors Profiles for all post authors" msgstr "Crea i profili di PublishPress Authors per tutti gli autori" -#: src/modules/multiple-authors/multiple-authors.php:2667 +#: src/modules/multiple-authors/multiple-authors.php:2670 msgid "Create PublishPress Authors Profiles for all users in a role" msgstr "" "Crea i profili di PublishPress Authors per tutti gli utenti di un ruolo" @@ -1495,7 +1513,7 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "Creando il termine autore per l'utente %d" -#: src/modules/multiple-authors/multiple-authors.php:3860 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Creating missed post authors...." msgstr "Creazione degli autori degli articoli mancanti in corso…" @@ -1569,7 +1587,7 @@ msgstr "Disattivare Byline" msgid "Deactivate Bylines" msgstr "Disattivare Bylines" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3869 msgid "Deactivate Co-Authors Plus" msgstr "Disattivare Co-Authors Plus" @@ -1581,7 +1599,7 @@ msgstr "Disattivando Byline…" msgid "Deactivating Bylines..." msgstr "Disattivando Bylines…" -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivating Co-uthors Plus..." msgstr "Disattivando Co-Authors Plus…" @@ -1629,12 +1647,12 @@ msgstr "Predefinito" msgid "Default Author Box" msgstr "Riquadro autore predefinito" -#: src/modules/multiple-authors/multiple-authors.php:620 +#: src/modules/multiple-authors/multiple-authors.php:623 msgid "Default author for new posts:" msgstr "Autore predefinito per i nuovi articoli:" #: src/core/Classes/Author_Editor.php:379 -#: src/modules/multiple-authors/multiple-authors.php:1051 +#: src/modules/multiple-authors/multiple-authors.php:1054 msgid "Default Avatar" msgstr "Avatar predefinito" @@ -1646,30 +1664,33 @@ msgstr "Layout predefiniti" msgid "Default Search" msgstr "Ricerca predefinita" -#: src/modules/author-boxes/author-boxes.php:2089 -#: src/modules/author-boxes/author-boxes.php:2118 +#: src/modules/author-boxes/author-boxes.php:2073 +#: src/modules/author-boxes/author-boxes.php:2102 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:125 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:373 -#: src/modules/author-list/classes/AuthorListTable.php:292 msgid "Delete" msgstr "Elimina" -#: src/modules/multiple-authors/multiple-authors.php:2704 +#: src/modules/multiple-authors/multiple-authors.php:2707 msgid "Delete all authors mapped to users" msgstr "Elimina tutti gli autori mappati come utenti" -#: src/modules/multiple-authors/multiple-authors.php:2711 +#: src/modules/multiple-authors/multiple-authors.php:2714 msgid "Delete all guest authors" msgstr "Elimina tutti gli autori ospiti" -#: src/modules/multiple-authors/multiple-authors.php:2709 +#: src/modules/multiple-authors/multiple-authors.php:2712 msgid "Delete Guest Authors" msgstr "Elimina gli autori ospiti" -#: src/modules/multiple-authors/multiple-authors.php:2702 +#: src/modules/multiple-authors/multiple-authors.php:2705 msgid "Delete Mapped Authors" msgstr "Elimina tutti gli autori mappati" +#: src/modules/author-list/classes/AuthorListTable.php:384 +msgid "Delete Permanently" +msgstr "Elimina definitivamente" + #: src/core/Authors_Widget.php:187 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1227 msgid "Descending" @@ -1679,7 +1700,7 @@ msgstr "Discendente" msgid "Description" msgstr "Descrizione" -#: src/core/Classes/Utils.php:1155 +#: src/core/Classes/Utils.php:1156 msgid "Detailed documentation is also available on the plugin website." msgstr "" "Una documentazione dettagliata è disponibile anche sul sito web del plugin." @@ -1692,11 +1713,11 @@ msgstr "Dettagli" msgid "Disable Categories" msgstr "Disabilita le categorie" -#: src/modules/multiple-authors/multiple-authors.php:674 +#: src/modules/multiple-authors/multiple-authors.php:677 msgid "Disable the \"Authors\" box when using \"Quick Edit\":" msgstr "Disabilita la casella \"Autori\" quando si usa la \"Modifica rapida\":" -#: src/core/Classes/Post_Editor.php:446 +#: src/core/Classes/Post_Editor.php:451 msgid "Disable the default author display under this post" msgstr "" "Disabilitare la visualizzazione dell'autore predefinito sotto questo articolo" @@ -1707,7 +1728,7 @@ msgstr "" msgid "Disabled" msgstr "Disattivato" -#: src/modules/multiple-authors/multiple-authors.php:1189 +#: src/modules/multiple-authors/multiple-authors.php:1192 #: src/modules/settings/settings.php:275 #, php-format msgid "" @@ -1717,8 +1738,8 @@ msgstr "" "Disabilitato perché add_post_type_support('%1$s', '%2$s') è incluso in un " "file già caricato." -#: src/modules/multiple-authors/multiple-authors.php:4324 -#: src/modules/multiple-authors/multiple-authors.php:4398 +#: src/modules/multiple-authors/multiple-authors.php:4327 +#: src/modules/multiple-authors/multiple-authors.php:4401 msgid "Dismiss" msgstr "Ignora" @@ -1737,7 +1758,7 @@ msgid "Display authors list." msgstr "Visualizza lista autori." #: src/modules/author-boxes/author-boxes.php:1018 -#: src/modules/multiple-authors/multiple-authors.php:1040 +#: src/modules/multiple-authors/multiple-authors.php:1043 msgid "Display Name" msgstr "Visualizza nome" @@ -1807,7 +1828,7 @@ msgstr "Integrazione Divi" msgid "Documentation" msgstr "Documentazione" -#: src/modules/author-boxes/author-boxes.php:2183 +#: src/modules/author-boxes/author-boxes.php:2167 msgid "documentation page" msgstr "pagina della documentazione" @@ -1815,11 +1836,11 @@ msgstr "pagina della documentazione" msgid "dofollow" msgstr "dofollow" -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Done! %d authors were updated." msgstr "Fatto! %d autori sono stati aggiornati." -#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Done! %d posts were updated." msgstr "Fatto! %d articoli sono stati aggiornati." @@ -1841,11 +1862,11 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "Fatto! Bylines è stato disattivato." -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3870 msgid "Done! Co-Authors Plus data was copied." msgstr "Fatto! I dati di Co-Authors Plus sono stati copiati." -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus is deactivated." msgstr "Fatto! Co-Authors Plus è stato disattivato." @@ -1861,12 +1882,12 @@ msgstr "Punteggiato" msgid "Double" msgstr "Doppio" -#: src/modules/author-list/author-list.php:755 +#: src/modules/author-list/author-list.php:783 msgid "Dynamic Shortcode" msgstr "Shortcode dinamico" #: src/core/Plugin.php:1492 -#: src/modules/author-list/classes/AuthorListTable.php:280 +#: src/modules/author-list/classes/AuthorListTable.php:344 msgid "Edit" msgstr "Modifica" @@ -1880,7 +1901,7 @@ msgstr "Modifica %1$s" msgid "Edit Author" msgstr "Modifica autore" -#: src/modules/author-list/author-list.php:661 +#: src/modules/author-list/author-list.php:689 msgid "Edit Author List" msgstr "Modifica elenco autori" @@ -1928,7 +1949,7 @@ msgstr "Indirizzo email" msgid "Enable Author Grouping" msgstr "Abilita il raggruppamento degli autori" -#: src/modules/multiple-authors/multiple-authors.php:742 +#: src/modules/multiple-authors/multiple-authors.php:745 msgid "Enable author pages:" msgstr "Abilita le pagine degli autori:" @@ -1946,15 +1967,15 @@ msgstr "Abilita le categorie" msgid "Enable Category" msgstr "Abilita la categoria" -#: src/modules/multiple-authors/multiple-authors.php:1018 +#: src/modules/multiple-authors/multiple-authors.php:1021 msgid "Enable Guest Author With No User Account" msgstr "Attiva autori ospiti senza account utente" -#: src/modules/multiple-authors/multiple-authors.php:1029 +#: src/modules/multiple-authors/multiple-authors.php:1032 msgid "Enable Guest Author With User Account" msgstr "Attiva autori ospiti con account utente" -#: src/modules/multiple-authors/multiple-authors.php:582 +#: src/modules/multiple-authors/multiple-authors.php:585 msgid "Enable PublishPress Authors for these post types:" msgstr "Abilita PublishPress Authors per questi tipi di contenuto:" @@ -2033,13 +2054,13 @@ msgstr "Errore durante l'aggiornamento del profilo autore." msgid "Error updating category data." msgstr "Errore durante l'aggiornamento dei dati della categoria." -#: src/modules/multiple-authors/multiple-authors.php:3659 +#: src/modules/multiple-authors/multiple-authors.php:3662 msgid "Error. Author terms could not be reseted." msgstr "Errore. Impossibile reimpostare i termini dell'autore." #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3859 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Error: " msgstr "Errore: " @@ -2052,23 +2073,27 @@ msgstr "Riquadri autore esistenti" msgid "Export" msgstr "Esporta" -#: src/modules/author-boxes/author-boxes.php:2132 +#: src/modules/author-boxes/author-boxes.php:2116 msgid "Export Editor Settings" msgstr "Impostazioni dell'editor di esportazione" -#: src/modules/multiple-authors/multiple-authors.php:631 +#: src/core/Classes/Utils.php:1126 +msgid "Extra features for Author Lists" +msgstr "Caratteristiche extra per gli elenchi autori" + +#: src/modules/multiple-authors/multiple-authors.php:634 msgid "Fallback user for Guest Authors:" msgstr "Utente alternativo per autori ospiti:" -#: src/core/Classes/Utils.php:1129 +#: src/core/Classes/Utils.php:1130 msgid "Fast, professional support" msgstr "Assistenza rapida e professionale." -#: src/modules/multiple-authors/multiple-authors.php:865 +#: src/modules/multiple-authors/multiple-authors.php:868 msgid "Featured image custom height:" msgstr "Altezza personalizzata dell'immagine in evidenza:" -#: src/modules/multiple-authors/multiple-authors.php:854 +#: src/modules/multiple-authors/multiple-authors.php:857 msgid "Featured image custom width:" msgstr "Larghezza personalizzata dell'immagine in evidenza:" @@ -2139,18 +2164,18 @@ msgstr "Campo valore" msgid "Filter %2$s list" msgstr "Filtra elenco %2$s" -#: src/modules/multiple-authors/multiple-authors.php:3791 -#: src/modules/multiple-authors/multiple-authors.php:3822 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 msgid "Finishing the process..." msgstr "Ultimando il processo…" #: src/core/Authors_Widget.php:192 src/core/Classes/Author_Editor.php:358 #: src/modules/author-custom-fields/author-custom-fields.php:890 -#: src/modules/multiple-authors/multiple-authors.php:1970 +#: src/modules/multiple-authors/multiple-authors.php:1973 msgid "First Name" msgstr "Nome" -#: src/modules/multiple-authors/multiple-authors.php:1968 +#: src/modules/multiple-authors/multiple-authors.php:1971 msgid "First Name Last Name" msgstr "Nome e Cognome" @@ -2159,11 +2184,11 @@ msgstr "Nome e Cognome" msgid "Flex" msgstr "Flex" -#: src/modules/multiple-authors/multiple-authors.php:723 +#: src/modules/multiple-authors/multiple-authors.php:726 msgid "Font Awesome icons:" msgstr "Icone Font Awesome:" -#: src/modules/multiple-authors/multiple-authors.php:1490 +#: src/modules/multiple-authors/multiple-authors.php:1493 #, php-format msgid "" "For authors_index layout, you can group user by profile field by using %1$s ." @@ -2171,7 +2196,7 @@ msgstr "" "Per authors_index layout, puoi raggruppare gli utenti dal campo profilo " "utilizzando %1$s ." -#: src/modules/author-list/author-list.php:368 +#: src/modules/author-list/author-list.php:384 msgid "For authors_index layout, you can group user by profile fields." msgstr "" "Per authors_index layout, puoi raggruppare gli utenti per campi del profilo." @@ -2188,13 +2213,13 @@ msgstr "" "degli articoli. Puoi leggere tutto %1$s in questa guida.%2$s" #: src/core/Classes/Author_Editor.php:313 -#: src/modules/author-list/author-list.php:300 +#: src/modules/author-list/author-list.php:316 #: src/modules/author-pages/author-pages.php:113 -#: src/modules/multiple-authors/multiple-authors.php:2899 +#: src/modules/multiple-authors/multiple-authors.php:2902 msgid "General" msgstr "Generale" -#: src/modules/author-boxes/author-boxes.php:2208 +#: src/modules/author-boxes/author-boxes.php:2192 msgid "Generate Template" msgstr "Genera template" @@ -2211,11 +2236,11 @@ msgstr "Integrazione di Generatepress" msgid "Genesis Integration" msgstr "Integrazione Genesis" -#: src/modules/multiple-authors/multiple-authors.php:1795 +#: src/modules/multiple-authors/multiple-authors.php:1798 msgid "Grid" msgstr "Griglia" -#: src/modules/multiple-authors/multiple-authors.php:775 +#: src/modules/multiple-authors/multiple-authors.php:778 msgid "Grid layout column:" msgstr "Layout delle colonne della griglia:" @@ -2225,23 +2250,23 @@ msgstr "Layout delle colonne della griglia:" msgid "Groove" msgstr "Scanalatura" -#: src/modules/author-list/author-list.php:367 +#: src/modules/author-list/author-list.php:383 msgid "Group By" msgstr "Raggruppa per" -#: src/modules/multiple-authors/multiple-authors.php:4783 +#: src/modules/multiple-authors/multiple-authors.php:4786 msgid "Guest Author cannot login on the site." msgstr "L'autore ospite non può accedere al sito." #: src/core/Classes/Author_Editor.php:121 #: src/core/Classes/Author_Editor.php:710 -#: src/modules/author-list/author-list.php:947 +#: src/modules/author-list/author-list.php:979 msgid "Guest Author With No User Account" msgstr "Autore ospite senza account utente" #: src/core/Classes/Author_Editor.php:117 #: src/core/Classes/Author_Editor.php:703 -#: src/modules/author-list/author-list.php:946 +#: src/modules/author-list/author-list.php:978 msgid "Guest Author With User Account" msgstr "Autore ospite con account utente" @@ -2249,8 +2274,8 @@ msgstr "Autore ospite con account utente" msgid "Guest Authors" msgstr "Autori ospiti" -#: src/modules/multiple-authors/multiple-authors.php:1823 -#: src/modules/multiple-authors/multiple-authors.php:1855 +#: src/modules/multiple-authors/multiple-authors.php:1826 +#: src/modules/multiple-authors/multiple-authors.php:1858 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:152 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:384 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:520 @@ -2261,8 +2286,8 @@ msgstr "Autori ospiti" msgid "H1" msgstr "H1" -#: src/modules/multiple-authors/multiple-authors.php:1824 -#: src/modules/multiple-authors/multiple-authors.php:1856 +#: src/modules/multiple-authors/multiple-authors.php:1827 +#: src/modules/multiple-authors/multiple-authors.php:1859 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:153 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:385 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:521 @@ -2273,8 +2298,8 @@ msgstr "H1" msgid "H2" msgstr "H2" -#: src/modules/multiple-authors/multiple-authors.php:1825 -#: src/modules/multiple-authors/multiple-authors.php:1857 +#: src/modules/multiple-authors/multiple-authors.php:1828 +#: src/modules/multiple-authors/multiple-authors.php:1860 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:154 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:386 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:522 @@ -2285,8 +2310,8 @@ msgstr "H2" msgid "H3" msgstr "H3" -#: src/modules/multiple-authors/multiple-authors.php:1826 -#: src/modules/multiple-authors/multiple-authors.php:1858 +#: src/modules/multiple-authors/multiple-authors.php:1829 +#: src/modules/multiple-authors/multiple-authors.php:1861 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:155 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:387 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:523 @@ -2297,8 +2322,8 @@ msgstr "H3" msgid "H4" msgstr "H4" -#: src/modules/multiple-authors/multiple-authors.php:1827 -#: src/modules/multiple-authors/multiple-authors.php:1859 +#: src/modules/multiple-authors/multiple-authors.php:1830 +#: src/modules/multiple-authors/multiple-authors.php:1862 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:156 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:388 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:524 @@ -2309,8 +2334,8 @@ msgstr "H4" msgid "H5" msgstr "H5" -#: src/modules/multiple-authors/multiple-authors.php:1828 -#: src/modules/multiple-authors/multiple-authors.php:1860 +#: src/modules/multiple-authors/multiple-authors.php:1831 +#: src/modules/multiple-authors/multiple-authors.php:1863 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:157 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:389 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:525 @@ -2330,7 +2355,7 @@ msgstr "Nascondi %1s" msgid "Hide Title" msgstr "Nascondi il titolo" -#: src/modules/author-boxes/author-boxes.php:2172 +#: src/modules/author-boxes/author-boxes.php:2156 msgid "How to generate and use a theme template file" msgstr "Come generare e usare un file template per il tema" @@ -2346,7 +2371,7 @@ msgstr "https://wordpress.org/plugins/publishpress-authors/" msgid "ID" msgstr "ID" -#: src/modules/multiple-authors/multiple-authors.php:1757 +#: src/modules/multiple-authors/multiple-authors.php:1760 msgid "" "If enabled, PublishPress Authors will replace the default WordPress author " "pages." @@ -2354,7 +2379,7 @@ msgstr "" "Se abilitato, PublishPress Authors sostituirà le pagine autore predefinite " "di WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1687 +#: src/modules/multiple-authors/multiple-authors.php:1690 msgid "" "If the Author is mapped to a WordPress user, this will display the authors' " "\"Display name\" and their \"Username\". The default is to show only the " @@ -2366,7 +2391,7 @@ msgstr "" "predefinita è mostrare solo il «Nome visualizzato». La visualizzazione del " "«Nome utente» è utile se hai più autori con nomi simili." -#: src/modules/multiple-authors/multiple-authors.php:1313 +#: src/modules/multiple-authors/multiple-authors.php:1316 #, php-format msgid "" "If you are having problems showing PublishPress Authors on author profile " @@ -2379,7 +2404,7 @@ msgstr "" "plugin a recuperare l'autore dalla pagina del profilo e non da altri " "articoli nella stessa schermata." -#: src/modules/multiple-authors/multiple-authors.php:1480 +#: src/modules/multiple-authors/multiple-authors.php:1483 #, php-format msgid "" "If you are using the authors_recent layout, you can define the number of " @@ -2399,13 +2424,13 @@ msgstr "" msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "Se sei soddisfatto di %s, lasciaci una valutazione di %s!" -#: src/core/Classes/Utils.php:1144 +#: src/core/Classes/Utils.php:1145 msgid "If you need help or have a new feature request, let us know." msgstr "" "Se hai bisogno di assistenza o vuoi fare una richiesta per una nuova " "caratteristica, faccelo sapere." -#: src/modules/multiple-authors/multiple-authors.php:2566 +#: src/modules/multiple-authors/multiple-authors.php:2569 msgid "" "If you only have Guest Authors selected for a post, this user may be used as " "a fallback. WordPress sometimes requires a WordPress user to be assigned to " @@ -2421,11 +2446,11 @@ msgstr "" msgid "Import" msgstr "Importa" -#: src/modules/author-boxes/author-boxes.php:2163 +#: src/modules/author-boxes/author-boxes.php:2147 msgid "Import Data" msgstr "Importa i dati" -#: src/modules/author-boxes/author-boxes.php:2152 +#: src/modules/author-boxes/author-boxes.php:2136 msgid "Import Editor Settings" msgstr "Importazione delle impostazioni dell'editor" @@ -2439,7 +2464,7 @@ msgstr "Davanti all'avatar" msgid "Inline" msgstr "In linea" -#: src/modules/multiple-authors/multiple-authors.php:1086 +#: src/modules/multiple-authors/multiple-authors.php:1089 msgid "Inline avatar legacy layout Author Box:" msgstr "Layout in linea dell'avatar legacy del riquadro autore:" @@ -2447,7 +2472,7 @@ msgstr "Layout in linea dell'avatar legacy del riquadro autore:" msgid "Inline Grouping" msgstr "Raggruppamento inline" -#: src/modules/multiple-authors/multiple-authors.php:1078 +#: src/modules/multiple-authors/multiple-authors.php:1081 msgid "Inline legacy layout Author Box:" msgstr "Layout in linea legacy del riquadro autore:" @@ -2465,11 +2490,11 @@ msgstr "Interno" msgid "Install this plugin to showcase content by your Authors." msgstr "Installa questo plugin per mostrare i contenuti dei tuoi autori." -#: src/modules/author-boxes/author-boxes.php:2162 +#: src/modules/author-boxes/author-boxes.php:2146 msgid "Invalid data" msgstr "Dati non validi" -#: src/modules/author-list/author-list.php:1081 +#: src/modules/author-list/author-list.php:1114 msgid "Invalid form" msgstr "Modulo non valido" @@ -2477,7 +2502,7 @@ msgstr "Modulo non valido" msgid "Invalid form data." msgstr "Dati del modulo non validi." -#: src/modules/multiple-authors/multiple-authors.php:3490 +#: src/modules/multiple-authors/multiple-authors.php:3493 msgid "Invalid nonce" msgstr "Nonce invalido" @@ -2485,7 +2510,7 @@ msgstr "Nonce invalido" msgid "is required" msgstr "è obbligatorio" -#: src/modules/multiple-authors/multiple-authors.php:4318 +#: src/modules/multiple-authors/multiple-authors.php:4321 msgid "It looks like you have Co-Authors Plus installed." msgstr "Sembra che tu hai installato anche Co-Authors Plus." @@ -2513,22 +2538,22 @@ msgstr "Giustifica" #: src/core/Authors_Widget.php:193 src/core/Classes/Author_Editor.php:363 #: src/modules/author-custom-fields/author-custom-fields.php:898 -#: src/modules/multiple-authors/multiple-authors.php:1971 +#: src/modules/multiple-authors/multiple-authors.php:1974 msgid "Last Name" msgstr "Cognome" -#: src/modules/multiple-authors/multiple-authors.php:1969 +#: src/modules/multiple-authors/multiple-authors.php:1972 msgid "Last Name First Name" msgstr "Cognome e Nome" #: src/core/Authors_Widget.php:131 src/core/Widget.php:123 -#: src/modules/author-list/author-list.php:347 +#: src/modules/author-list/author-list.php:363 #: src/modules/author-pages/author-pages.php:114 -#: src/modules/author-list/classes/AuthorListTable.php:88 +#: src/modules/author-list/classes/AuthorListTable.php:151 msgid "Layout" msgstr "Layout" -#: src/modules/author-list/author-list.php:357 +#: src/modules/author-list/author-list.php:373 msgid "Layout Columns" msgstr "Colonne layout" @@ -2540,7 +2565,7 @@ msgstr "Slug layout" msgid "Layout Wrapper Class Name" msgstr "Nome del layout del wrapper della classe" -#: src/modules/multiple-authors/multiple-authors.php:682 +#: src/modules/multiple-authors/multiple-authors.php:685 msgid "Layout:" msgstr "Layout:" @@ -2582,7 +2607,7 @@ msgstr "Link avatar" msgid "Link Rel" msgstr "Link rel" -#: src/modules/multiple-authors/multiple-authors.php:1794 +#: src/modules/multiple-authors/multiple-authors.php:1797 msgid "List" msgstr "Elenco" @@ -2603,11 +2628,11 @@ msgstr "Elenco autori inline (categorie)" msgid "Lowercase" msgstr "Minuscolo" -#: src/modules/multiple-authors/multiple-authors.php:2904 +#: src/modules/multiple-authors/multiple-authors.php:2907 msgid "Maintenance" msgstr "Manutenzione" -#: src/modules/multiple-authors/multiple-authors.php:3670 +#: src/modules/multiple-authors/multiple-authors.php:3673 msgid "Maintenance completed successfully." msgstr "La manutenzione è stata completata con successo." @@ -2652,7 +2677,7 @@ msgstr "Nome" msgid "Name Row" msgstr "Riga del nome" -#: src/core/Classes/Utils.php:1139 +#: src/core/Classes/Utils.php:1140 msgid "Need PublishPress Authors Support?" msgstr "Hai bisogno del supporto di PublishPress Authors?" @@ -2676,7 +2701,7 @@ msgstr "Nuovo autore" msgid "New author added." msgstr "Nuovo autore aggiunto." -#: src/modules/author-boxes/author-boxes.php:2514 +#: src/modules/author-boxes/author-boxes.php:2498 msgid "New Author Categories Box" msgstr "Nuovo riquadro di categorie di autori" @@ -2709,9 +2734,9 @@ msgstr "Nessun %2$s trovato nel cestino" msgid "No author categories." msgstr "Non ci sono categorie di autori." -#: src/modules/author-list/classes/AuthorListTable.php:111 -msgid "No author list avaliable." -msgstr "Nessun elenco autore disponibile." +#: src/modules/author-list/classes/AuthorListTable.php:174 +msgid "No author list avaliable in the selected view." +msgstr "Nessun elenco di autori disponibile nella vista selezionata." #: src/core/Classes/Post_Editor.php:170 msgid "No author term" @@ -2741,7 +2766,7 @@ msgstr "" msgid "No posts without author terms were found" msgstr "Non sono stati trovati articoli senza termini autore" -#: src/modules/author-boxes/author-boxes.php:1852 +#: src/modules/author-boxes/author-boxes.php:1838 msgid "No Recent Posts by this Author" msgstr "Nessun articolo recente per questo autore" @@ -2802,7 +2827,7 @@ msgid "Number of comments" msgstr "Numero di commenti" #: src/modules/author-categories/author-categories.php:204 -#: src/modules/author-list/author-list.php:209 +#: src/modules/author-list/author-list.php:217 msgid "Number of items per page" msgstr "Numero di elementi per pagina" @@ -2824,7 +2849,7 @@ msgstr "Apri il ink in una nuova finestra" msgid "Optional" msgstr "Facoltativo" -#: src/modules/author-list/author-list.php:308 +#: src/modules/author-list/author-list.php:324 msgid "Options" msgstr "Opzioni" @@ -2877,12 +2902,12 @@ msgstr "Autore genitore" msgid "Parent Author:" msgstr "Autore genitore:" -#: src/modules/author-boxes/author-boxes.php:2153 +#: src/modules/author-boxes/author-boxes.php:2137 msgid "Paste the editor data from the \"Export\" tab on another site." msgstr "" "Incolla i dati dall'editor dalla scheda \"Esportazione\" su un altro sito." -#: src/modules/multiple-authors/multiple-authors.php:2717 +#: src/modules/multiple-authors/multiple-authors.php:2720 msgid "" "Please be careful clicking these buttons. Before clicking, we recommend " "taking a site backup in case anything goes wrong." @@ -2891,7 +2916,7 @@ msgstr "" "consigliamo di eseguire un backup del sito nel caso in cui qualcosa possa " "andare storto." -#: src/modules/multiple-authors/multiple-authors.php:4319 +#: src/modules/multiple-authors/multiple-authors.php:4322 msgid "Please click here and read this guide!" msgstr "Fai clic qui e leggi questa guida!" @@ -2910,13 +2935,13 @@ msgstr "Prendi nota che questa caratteristica non funziona con tutti i temi." #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3793 -#: src/modules/multiple-authors/multiple-authors.php:3824 -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3796 +#: src/modules/multiple-authors/multiple-authors.php:3827 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Please, wait..." msgstr "Attendere prego…" -#: src/modules/multiple-authors/multiple-authors.php:1241 +#: src/modules/multiple-authors/multiple-authors.php:1244 msgid "Plural" msgstr "Plurale" @@ -2944,7 +2969,7 @@ msgstr "Integrazione con Polylang" msgid "Popular Authors" msgstr "Autori popolari" -#: src/modules/author-boxes/author-boxes.php:2059 +#: src/modules/author-boxes/author-boxes.php:2045 msgid "Position" msgstr "Posizione" @@ -2965,11 +2990,11 @@ msgstr "L'articolo non esiste" msgid "Post not found for the author" msgstr "Articolo non trovato per l'autore" -#: src/modules/author-boxes/author-boxes.php:1519 +#: src/modules/author-boxes/author-boxes.php:1505 msgid "Post preview" msgstr "Anteprima dell'articolo" -#: src/modules/multiple-authors/multiple-authors.php:590 +#: src/modules/multiple-authors/multiple-authors.php:593 msgid "Post types to display on the author's profile page:" msgstr "Tipi di contenuto da mostrare nella pagina del profilo autore:" @@ -2979,12 +3004,12 @@ msgid "Posts" msgstr "Articoli" #. Posts by a given author. -#: src/functions/template-tags.php:1330 +#: src/functions/template-tags.php:1331 #, php-format msgid "Posts by %1$s" msgstr "Articoli da %1$s" -#: src/functions/template-tags.php:945 +#: src/functions/template-tags.php:946 #, php-format msgid "Posts by %s" msgstr "Articoli da %s" @@ -2994,8 +3019,8 @@ msgstr "Articoli da %s" msgid "Prev" msgstr "Precedente" -#: src/modules/author-list/author-list.php:296 -#: src/modules/author-list/author-list.php:415 +#: src/modules/author-list/author-list.php:312 +#: src/modules/author-list/author-list.php:431 msgid "Preview" msgstr "Anteprima" @@ -3027,14 +3052,14 @@ msgstr "" "PublishPress Authors ti permette di aggiungere autori multipli e autori " "ospiti agli articoli di WordPress" -#: src/modules/multiple-authors/multiple-authors.php:4391 +#: src/modules/multiple-authors/multiple-authors.php:4394 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" "PublishPress Authors deve aggiornare il database per l'integrazione con il " "plugin Permissions." -#: src/modules/author-boxes/author-boxes.php:2522 +#: src/modules/author-boxes/author-boxes.php:2506 msgid "" "PublishPress Authors Pro allows you to unlock the full potential of Author " "Categories." @@ -3165,7 +3190,7 @@ msgstr "Raccomandazioni per te" #: src/core/Classes/Author_Editor.php:119 #: src/core/Classes/Author_Editor.php:697 -#: src/modules/author-list/author-list.php:945 +#: src/modules/author-list/author-list.php:977 msgid "Registered Author With User Account" msgstr "Autore registrato con account utente" @@ -3175,30 +3200,30 @@ msgstr "Autore registrato con account utente" msgid "Remove %1$s Image" msgstr "Rimuovi immagine %1$s" -#: src/modules/author-boxes/author-boxes.php:2315 +#: src/modules/author-boxes/author-boxes.php:2299 #, php-format msgid "Remove %1s" msgstr "Rimuovi %1s" -#: src/core/Classes/Utils.php:1128 +#: src/core/Classes/Utils.php:1129 msgid "Remove PublishPress ads and branding" msgstr "Rimuovi le pubblicità ed il marchio PublishPress" -#: src/modules/multiple-authors/multiple-authors.php:642 +#: src/modules/multiple-authors/multiple-authors.php:645 msgid "Remove single author map restriction:" msgstr "Rimuovere la restrizione della mappatura per il singolo autore:" #: src/core/Classes/Author_Editor.php:470 #: src/core/Classes/Author_Editor.php:519 -#: src/modules/multiple-authors/multiple-authors.php:2008 +#: src/modules/multiple-authors/multiple-authors.php:2011 msgid "Remove this image" msgstr "Rimuovi questa immagine" -#: src/modules/author-boxes/author-boxes.php:2264 +#: src/modules/author-boxes/author-boxes.php:2248 msgid "Reorder Fields" msgstr "Riordina i campi" -#: src/modules/author-boxes/author-boxes.php:2272 +#: src/modules/author-boxes/author-boxes.php:2256 msgid "" "Reorder the fields by dragging them to the correct position and saving your " "changes." @@ -3210,7 +3235,7 @@ msgstr "" msgid "Request status." msgstr "Stato della richiesta." -#: src/core/Classes/Utils.php:1146 +#: src/core/Classes/Utils.php:1147 msgid "Request Support" msgstr "Richiedi assistenza" @@ -3232,6 +3257,10 @@ msgstr "Rest API" msgid "Rest API support" msgstr "Supporto Rest API" +#: src/modules/author-list/classes/AuthorListTable.php:372 +msgid "Restore" +msgstr "Ripristina" + #: src/modules/author-categories/author-categories.php:641 #: src/modules/author-categories/author-categories.php:643 msgid "Reviewer" @@ -3260,20 +3289,20 @@ msgstr "Cresta" msgid "Right" msgstr "Destra" -#: src/modules/author-list/author-list.php:384 +#: src/modules/author-list/author-list.php:400 msgid "Roles" msgstr "Ruoli" -#: src/modules/author-list/author-list.php:732 -#: src/modules/author-list/author-list.php:739 +#: src/modules/author-list/author-list.php:760 +#: src/modules/author-list/author-list.php:767 msgid "Save Changes" msgstr "Salva modifiche" -#: src/modules/author-boxes/author-boxes.php:2290 +#: src/modules/author-boxes/author-boxes.php:2274 msgid "Save for All Author Boxes" msgstr "Salva tutti i riquadri autore" -#: src/modules/author-boxes/author-boxes.php:2286 +#: src/modules/author-boxes/author-boxes.php:2270 msgid "Save for Current Author Box" msgstr "Salva il riquadro autore attuale" @@ -3283,11 +3312,11 @@ msgstr "Salva il riquadro autore attuale" msgid "Schema Property" msgstr "Proprietà Schema" -#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:312 +#: src/core/Authors_Widget.php:384 src/modules/author-list/author-list.php:328 msgid "Search" msgstr "Cerca" -#: src/modules/author-boxes/author-boxes.php:2342 +#: src/modules/author-boxes/author-boxes.php:2326 #, php-format msgid "Search %1s Icon" msgstr "Icona di ricerca %1s" @@ -3302,7 +3331,7 @@ msgstr "Cerca %2$s" msgid "Search Author Categories" msgstr "Cerca categorie di autori" -#: src/modules/author-list/author-list.php:277 +#: src/modules/author-list/author-list.php:293 msgid "Search Author Lists" msgstr "Cerca elenchi autori" @@ -3318,12 +3347,12 @@ msgstr "Casella di ricerca" msgid "Search for an author" msgstr "Cerca un autore" -#: src/core/Classes/Post_Editor.php:462 +#: src/core/Classes/Post_Editor.php:467 msgid "Search for an user" msgstr "Cerca l'utente" #. %s: search keywords -#: src/modules/author-list/author-list.php:268 +#: src/modules/author-list/author-list.php:284 #, php-format msgid "Search results for “%s”" msgstr "Risultati della ricerca per “%s”" @@ -3332,7 +3361,7 @@ msgstr "Risultati della ricerca per “%s”" #: src/modules/author-categories/author-categories.php:228 #: src/modules/author-categories/author-categories.php:311 #: src/modules/author-custom-fields/author-custom-fields.php:1005 -#: src/modules/author-list/author-list.php:1075 +#: src/modules/author-list/author-list.php:1108 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:41 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:89 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:131 @@ -3344,7 +3373,7 @@ msgstr "Errore di sicurezza. Ricarica la pagina e riprova" msgid "Security error. Kindly reload this page and try again." msgstr "Errore di sicurezza. Ricarica la pagina e riprova" -#: src/modules/author-boxes/author-boxes.php:2313 +#: src/modules/author-boxes/author-boxes.php:2297 #, php-format msgid "Select %1s" msgstr "Seleziona %1s" @@ -3353,22 +3382,22 @@ msgstr "Seleziona %1s" msgid "Select a user" msgstr "Seleziona un utente" -#: src/modules/author-boxes/author-boxes.php:2578 +#: src/modules/author-boxes/author-boxes.php:2562 msgid "Select an author box" msgstr "Seleziona un riquadro autore" #: src/core/CustomFieldsModel.php:115 -#: src/modules/author-list/author-list.php:330 +#: src/modules/author-list/author-list.php:346 msgid "Select an option" msgstr "Seleziona una opzione" -#: src/modules/author-list/author-list.php:381 +#: src/modules/author-list/author-list.php:397 msgid "" -"Select an option to limit the results to selected user roles, author type or " -"specific authors." +"Select an option to limit the results to selected user roles, author types " +"or specific authors." msgstr "" "Seleziona un'opzione per limitare i risultati ai ruoli utente selezionati, " -"al tipo di autore o a specifici autori." +"ai tipi di autore o a specifici autori." #: src/core/Classes/Author_Editor.php:742 msgid "Select Author Account" @@ -3376,23 +3405,23 @@ msgstr "Seleziona un account autore" #: src/core/Classes/Author_Editor.php:466 #: src/core/Classes/Author_Editor.php:515 -#: src/modules/multiple-authors/multiple-authors.php:2004 +#: src/modules/multiple-authors/multiple-authors.php:2007 msgid "Select image" msgstr "Seleziona immagine" -#: src/modules/multiple-authors/multiple-authors.php:2096 -#: src/modules/multiple-authors/multiple-authors.php:2133 -#: src/modules/multiple-authors/multiple-authors.php:2170 -#: src/modules/multiple-authors/multiple-authors.php:2207 -#: src/modules/multiple-authors/multiple-authors.php:2244 +#: src/modules/multiple-authors/multiple-authors.php:2099 +#: src/modules/multiple-authors/multiple-authors.php:2136 +#: src/modules/multiple-authors/multiple-authors.php:2173 +#: src/modules/multiple-authors/multiple-authors.php:2210 +#: src/modules/multiple-authors/multiple-authors.php:2247 msgid "Select option" msgstr "Selezionare una opzione" -#: src/modules/author-boxes/author-boxes.php:1528 +#: src/modules/author-boxes/author-boxes.php:1514 msgid "Select Preview Post" msgstr "Seleziona l'anteprima dell'articolo" -#: src/modules/author-list/author-list.php:969 +#: src/modules/author-list/author-list.php:1001 msgid "Select Users" msgstr "Seleziona utenti" @@ -3414,26 +3443,26 @@ msgstr "Separare gli autori con virgole" msgid "Set %1$s Image" msgstr "Imposta l'immagine %1$s" -#: src/modules/multiple-authors/multiple-authors.php:389 +#: src/modules/multiple-authors/multiple-authors.php:392 #: src/modules/settings/settings.php:105 msgid "Settings" msgstr "Impostazioni" -#: src/modules/author-boxes/author-boxes.php:2162 -#: src/modules/author-boxes/author-boxes.php:2167 +#: src/modules/author-boxes/author-boxes.php:2146 +#: src/modules/author-boxes/author-boxes.php:2151 msgid "Settings Imported Successfully!" msgstr "Le impostazioni sono state importate correttamente!" -#: src/modules/author-list/author-list.php:231 +#: src/modules/author-list/author-list.php:239 msgid "Settings updated successfully." msgstr "Le impostazioni sono state aggiornate correttamente." #: src/modules/author-boxes/author-boxes.php:199 #: src/modules/author-boxes/author-boxes.php:973 -#: src/modules/author-boxes/author-boxes.php:2058 -#: src/modules/author-boxes/author-boxes.php:2071 -#: src/modules/author-list/author-list.php:749 -#: src/modules/author-list/classes/AuthorListTable.php:89 +#: src/modules/author-boxes/author-boxes.php:2044 +#: src/modules/author-boxes/author-boxes.php:2055 +#: src/modules/author-list/author-list.php:777 +#: src/modules/author-list/classes/AuthorListTable.php:152 msgid "Shortcode" msgstr "Shortcode" @@ -3442,7 +3471,7 @@ msgid "Shortcode documentation." msgstr "Shortcode per la documentazione." #: src/modules/author-boxes/author-boxes.php:1038 -#: src/modules/multiple-authors/multiple-authors.php:2903 +#: src/modules/multiple-authors/multiple-authors.php:2906 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1565 msgid "Shortcodes" msgstr "Shortcode" @@ -3459,7 +3488,7 @@ msgstr "Mostra dopo" msgid "Show after an individual author" msgstr "Mostra dopo un singolo autore" -#: src/modules/multiple-authors/multiple-authors.php:786 +#: src/modules/multiple-authors/multiple-authors.php:789 msgid "Show author bio:" msgstr "Mostra la biografia dell'autore:" @@ -3468,11 +3497,11 @@ msgstr "Mostra la biografia dell'autore:" msgid "Show Author Categories" msgstr "Mostra le categorie degli autori" -#: src/modules/multiple-authors/multiple-authors.php:805 +#: src/modules/multiple-authors/multiple-authors.php:808 msgid "Show author page title:" msgstr "Mostra il titolo della pagina dell'autore:" -#: src/modules/multiple-authors/multiple-authors.php:887 +#: src/modules/multiple-authors/multiple-authors.php:890 msgid "Show authors:" msgstr "Mostra gli autori:" @@ -3488,7 +3517,7 @@ msgstr "Mostra prima di un autore singolo" msgid "Show before author group" msgstr "Mostra prima del gruppo di autori" -#: src/modules/multiple-authors/multiple-authors.php:666 +#: src/modules/multiple-authors/multiple-authors.php:669 msgid "Show below the content:" msgstr "Mostra sotto al contenuto:" @@ -3500,11 +3529,11 @@ msgstr "Mostra la biografia" msgid "Show Box Title" msgstr "Mostra titolo riquadro" -#: src/modules/multiple-authors/multiple-authors.php:920 +#: src/modules/multiple-authors/multiple-authors.php:923 msgid "Show category:" msgstr "Mostra le categorie:" -#: src/modules/multiple-authors/multiple-authors.php:909 +#: src/modules/multiple-authors/multiple-authors.php:912 msgid "Show comment counts:" msgstr "Mostra conteggio commenti:" @@ -3512,7 +3541,7 @@ msgstr "Mostra conteggio commenti:" msgid "Show Display Name" msgstr "Mostra visualizza il nome" -#: src/modules/multiple-authors/multiple-authors.php:707 +#: src/modules/multiple-authors/multiple-authors.php:710 msgid "Show email link:" msgstr "Mostra link email:" @@ -3520,19 +3549,19 @@ msgstr "Mostra link email:" msgid "Show Even if No Recent Post" msgstr "Mostra anche se non ci sono articoli recenti" -#: src/modules/multiple-authors/multiple-authors.php:876 +#: src/modules/multiple-authors/multiple-authors.php:879 msgid "Show excerpt:" msgstr "Mostra il riassunto:" -#: src/modules/multiple-authors/multiple-authors.php:843 +#: src/modules/multiple-authors/multiple-authors.php:846 msgid "Show featured image:" msgstr "Mostra l'immagine in evidenza:" -#: src/modules/multiple-authors/multiple-authors.php:898 +#: src/modules/multiple-authors/multiple-authors.php:901 msgid "Show post date:" msgstr "Mostra data di pubblicazione:" -#: src/modules/multiple-authors/multiple-authors.php:942 +#: src/modules/multiple-authors/multiple-authors.php:945 msgid "Show read more link:" msgstr "Mostra il link \"leggi tutto\":" @@ -3544,15 +3573,15 @@ msgstr "Mostra articoli recenti" msgid "Show Recent Posts Title" msgstr "Mostra titolo articoli recenti" -#: src/modules/multiple-authors/multiple-authors.php:715 +#: src/modules/multiple-authors/multiple-authors.php:718 msgid "Show site link:" msgstr "Mostra link del sito:" -#: src/modules/multiple-authors/multiple-authors.php:931 +#: src/modules/multiple-authors/multiple-authors.php:934 msgid "Show tags:" msgstr "Mostra i tag:" -#: src/modules/multiple-authors/multiple-authors.php:609 +#: src/modules/multiple-authors/multiple-authors.php:612 msgid "Show username in the search field:" msgstr "Mostra il nome utente nel campo di ricerca:" @@ -3564,7 +3593,7 @@ msgstr "Mostra i tuoi autori con PublishPress Blocks" msgid "Simple List" msgstr "Elenco semplice" -#: src/modules/multiple-authors/multiple-authors.php:1094 +#: src/modules/multiple-authors/multiple-authors.php:1097 msgid "Simple list legacy layout Author Box:" msgstr "Semplice layout dell'elenco legacy del riquadro autore:" @@ -3576,7 +3605,7 @@ msgstr "Blocco nome semplice degli autori (categorie)" msgid "Simple Name Authors Inline (Categories)" msgstr "Nome semplice degli autori inline (categorie)" -#: src/modules/multiple-authors/multiple-authors.php:1234 +#: src/modules/multiple-authors/multiple-authors.php:1237 msgid "Single" msgstr "Singolare" @@ -3647,7 +3676,7 @@ msgstr "" msgid "span" msgstr "span" -#: src/modules/author-list/author-list.php:757 +#: src/modules/author-list/author-list.php:785 msgid "Static Shortcode" msgstr "Shortcode statico" @@ -3655,25 +3684,25 @@ msgstr "Shortcode statico" msgid "Status" msgstr "Stato" -#: src/core/Classes/Utils.php:1127 +#: src/core/Classes/Utils.php:1128 msgid "Support for Polylang" msgstr "Compatibile con Polylang" #: src/core/Classes/Author_Editor.php:805 -#: src/modules/multiple-authors/multiple-authors.php:3789 +#: src/modules/multiple-authors/multiple-authors.php:3792 msgid "Sync author and user fields" msgstr "Sincronizza i campi autore e utente" -#: src/modules/multiple-authors/multiple-authors.php:3820 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Sync author and user URLs" msgstr "Sincronizza l'autore e gli URL utente" -#: src/modules/multiple-authors/multiple-authors.php:2673 +#: src/modules/multiple-authors/multiple-authors.php:2676 msgid "Synchronize PublishPress Authors Fields and user profile fields" msgstr "" "Sincronizza i campi di PublishPress Authors con i campi del profilo utente" -#: src/modules/multiple-authors/multiple-authors.php:2680 +#: src/modules/multiple-authors/multiple-authors.php:2683 msgid "Synchronize the author and user URLs" msgstr "Sincronizza gli URL dell'autore e dell'utente" @@ -3687,7 +3716,7 @@ msgctxt "taxonomy singular name" msgid "Author" msgstr "Autore" -#: src/modules/author-boxes/author-boxes.php:2222 +#: src/modules/author-boxes/author-boxes.php:2206 msgid "Template generated successfuly!" msgstr "Il template è stato creato correttamente!" @@ -3695,7 +3724,7 @@ msgstr "Il template è stato creato correttamente!" msgid "Text" msgstr "Testo" -#: src/modules/multiple-authors/multiple-authors.php:1351 +#: src/modules/multiple-authors/multiple-authors.php:1354 #, php-format msgid "" "The authors data shortcode accepts field parameter such as: %1$s %2$s %3$s " @@ -3726,7 +3755,7 @@ msgstr "Tema" msgid "There are no PublishPress modules registered" msgstr "Non ci sono moduli di PublishPress registrati" -#: src/modules/multiple-authors/multiple-authors.php:1323 +#: src/modules/multiple-authors/multiple-authors.php:1326 #, php-format msgid "" "There is one final option to mention. This is mostly useful if you're using " @@ -3741,7 +3770,7 @@ msgstr "" "il seguente shortcode nella pagina degli autori per visualizzare il profilo " "dell'autore attuale. È sufficiente aggiungere il parametro %s." -#: src/modules/multiple-authors/multiple-authors.php:2017 +#: src/modules/multiple-authors/multiple-authors.php:2020 msgid "" "This avatar will be used as default avatar instead of gravatar where no " "custom avatar is added to profile." @@ -3781,7 +3810,7 @@ msgstr "" "utente mappato, questo URL viene preso dall'account dell'utente e non può " "essere modificato." -#: src/modules/author-list/author-list.php:1010 +#: src/modules/author-list/author-list.php:1042 msgid "" "This is a quick preview of this Author List. Test on frontend pages to see " "exactly how it looks with your theme." @@ -3789,11 +3818,11 @@ msgstr "" "Questa è una rapida anteprima di questo elenco di autori. Testalo sulle " "pagine del frontend per vedere esattamente come appare con il tuo tema." -#: src/modules/multiple-authors/multiple-authors.php:2108 -#: src/modules/multiple-authors/multiple-authors.php:2145 -#: src/modules/multiple-authors/multiple-authors.php:2182 -#: src/modules/multiple-authors/multiple-authors.php:2219 -#: src/modules/multiple-authors/multiple-authors.php:2256 +#: src/modules/multiple-authors/multiple-authors.php:2111 +#: src/modules/multiple-authors/multiple-authors.php:2148 +#: src/modules/multiple-authors/multiple-authors.php:2185 +#: src/modules/multiple-authors/multiple-authors.php:2222 +#: src/modules/multiple-authors/multiple-authors.php:2259 #, php-format msgid "This is useful if you use legacy shortcode %s" msgstr "Questo è utile se usi lo shortcode legacy %s" @@ -3815,7 +3844,7 @@ msgstr "" "Questo nome è utilizzato in diverse visualizzazioni predefinite e in alcune " "integrazioni dei motori di ricerca." -#: src/core/Classes/Post_Editor.php:454 +#: src/core/Classes/Post_Editor.php:459 msgid "" "This option is showing because you do not have a WordPress user selected as " "an author. For some tasks, it can be helpful to have a user selected here. " @@ -3830,13 +3859,13 @@ msgstr "" msgid "This plugin can be deleted." msgstr "Questo plugin può essere eliminato." -#: src/modules/multiple-authors/multiple-authors.php:2530 +#: src/modules/multiple-authors/multiple-authors.php:2533 msgid "This setting may be disabled for users who can not edit others posts." msgstr "" "Questa impostazione può essere disabilitata per gli utenti che non possono " "modificare gli articoli degli altri." -#: src/modules/multiple-authors/multiple-authors.php:2348 +#: src/modules/multiple-authors/multiple-authors.php:2351 msgid "" "This will allows you map a WordPress user to more than one author. Don't use " "this feature unless requested to do so by the PublishPress team. This plugin " @@ -3855,92 +3884,92 @@ msgstr "" "Questo visualizzerà l'autore in un formato inline affiancato invece che in " "un formato a blocchi." -#: src/modules/multiple-authors/multiple-authors.php:2300 +#: src/modules/multiple-authors/multiple-authors.php:2303 msgid "This will display author page title." msgstr "Questo visualizzerà il titolo della pagina dell'autore." -#: src/modules/multiple-authors/multiple-authors.php:2039 +#: src/modules/multiple-authors/multiple-authors.php:2042 msgid "This will display the author bio." msgstr "Questo visualizzerà la biografia dell'autore." -#: src/modules/multiple-authors/multiple-authors.php:1209 +#: src/modules/multiple-authors/multiple-authors.php:1212 msgid "This will display the authors box at the end of the content." msgstr "Questo visualizzerà il riquadro degli autori alla fine del contenuto." -#: src/modules/multiple-authors/multiple-authors.php:2584 +#: src/modules/multiple-authors/multiple-authors.php:2587 msgid "This will display the authors email in the author box." msgstr "" "Questo visualizzerà l'indirizzo email degli autori nel riquadro dell'autore." -#: src/modules/multiple-authors/multiple-authors.php:2604 +#: src/modules/multiple-authors/multiple-authors.php:2607 msgid "This will display the authors site in the author box." msgstr "Questo visualizzerà il sito degli autori nel riquadro dell'autore." -#: src/modules/multiple-authors/multiple-authors.php:2372 +#: src/modules/multiple-authors/multiple-authors.php:2375 msgid "This will display the authors." msgstr "Questo visualizzerà gli autori." -#: src/modules/multiple-authors/multiple-authors.php:2444 +#: src/modules/multiple-authors/multiple-authors.php:2447 msgid "This will display the categories." msgstr "Questo visualizzerà le categorie." -#: src/modules/multiple-authors/multiple-authors.php:2420 +#: src/modules/multiple-authors/multiple-authors.php:2423 msgid "This will display the comment count." msgstr "Questo visualizzerà il conteggio dei commenti." -#: src/modules/multiple-authors/multiple-authors.php:2324 +#: src/modules/multiple-authors/multiple-authors.php:2327 msgid "This will display the excerpt." msgstr "Questo visualizzerà il riassunto." -#: src/modules/multiple-authors/multiple-authors.php:2276 +#: src/modules/multiple-authors/multiple-authors.php:2279 msgid "This will display the featured image." msgstr "Questo visualizzerà l'immagine in evidenza." -#: src/modules/multiple-authors/multiple-authors.php:2396 +#: src/modules/multiple-authors/multiple-authors.php:2399 msgid "This will display the published date." msgstr "Questo visualizzerà la data di pubblicazione." -#: src/modules/multiple-authors/multiple-authors.php:2492 +#: src/modules/multiple-authors/multiple-authors.php:2495 msgid "This will display the read more link." msgstr "Questo visualizzerà il link \"leggi tutto\"." -#: src/modules/multiple-authors/multiple-authors.php:2468 +#: src/modules/multiple-authors/multiple-authors.php:2471 msgid "This will display the tags." msgstr "Questo visualizzerà i tag." -#: src/modules/multiple-authors/multiple-authors.php:2624 +#: src/modules/multiple-authors/multiple-authors.php:2627 msgid "This will load Font Awesome icons for use in Author Boxes." msgstr "" "Questo ti consente di caricare le icone Font Awesome da usare nei riquadri " "autore." -#: src/modules/multiple-authors/multiple-authors.php:2642 +#: src/modules/multiple-authors/multiple-authors.php:2645 msgid "This will remove the Authors Box in \"Quick Edit\"." msgstr "In questo modo si rimuove la casella Autori in \"Modifica rapida\"." -#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:338 +#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:354 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1214 -#: src/modules/author-list/classes/AuthorListTable.php:87 +#: src/modules/author-list/classes/AuthorListTable.php:150 msgid "Title" msgstr "Titolo" -#: src/modules/multiple-authors/multiple-authors.php:690 +#: src/modules/multiple-authors/multiple-authors.php:693 msgid "Title for the author box:" msgstr "Titolo del riquadro autore:" -#: src/modules/multiple-authors/multiple-authors.php:1524 +#: src/modules/multiple-authors/multiple-authors.php:1527 #, php-format msgid "To display a search box for authors, use %1$s ." msgstr "Per visualizzare una casella di ricerca per gli autori, usa %1$s." -#: src/modules/multiple-authors/multiple-authors.php:1513 +#: src/modules/multiple-authors/multiple-authors.php:1516 #, php-format msgid "To further customize the order of results, use %1$s or %2$s ." msgstr "" "Per personalizzare ulteriormente l'ordine dei risultati, puoi usare %1$s o " "%2$s ." -#: src/modules/multiple-authors/multiple-authors.php:1500 +#: src/modules/multiple-authors/multiple-authors.php:1503 #, php-format msgid "" "To order the results based on post count, use %1$s . To order the results by " @@ -3951,6 +3980,17 @@ msgstr "" "ordinare i risultati in base al nome, usa %2$s. In alternativa, puoi " "ordinare i risultati in base ai campi del profilo, come %3$s, %4$s, ecc." +#: src/modules/author-list/classes/AuthorListTable.php:356 +msgid "Trash" +msgstr "Cestina" + +#: src/modules/author-list/classes/AuthorListTable.php:65 +#, php-format +msgid "Trash %s" +msgid_plural "Trash %s" +msgstr[0] "Cestina %s" +msgstr[1] "Cestina %s" + #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:577 msgid "Two Columns (Categories)" msgstr "Due colonne (categorie)" @@ -3992,26 +4032,26 @@ msgstr "Aggiorna conteggio articoli" msgid "Updated %d authors" msgstr "Aggiorna %d autori" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3829 msgid "Updated %d of %d authors..." msgstr "Aggiornato %d di %d autori…" -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3798 msgid "Updated %d of %d posts..." msgstr "Aggiornato %d di %d articoli…" -#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3797 msgid "Updating author field on posts..." msgstr "Aggiornamento dei campi autore negli articoli…" -#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3828 msgid "Updating authors slug..." msgstr "Aggiornamento dello slug dell'autore…" -#: includes.php:63 src/core/Classes/Utils.php:1132 -#: src/modules/author-boxes/author-boxes.php:2527 +#: includes.php:63 src/core/Classes/Utils.php:1133 +#: src/modules/author-boxes/author-boxes.php:2511 #: src/modules/author-custom-fields/author-custom-fields.php:951 -#: src/modules/author-list/author-list.php:1033 +#: src/modules/author-list/author-list.php:1065 msgid "Upgrade to Pro" msgstr "Aggiorna a Pro" @@ -4041,7 +4081,7 @@ msgstr "" "Utilizza il blocco \"Visualizzazione di contenuti\" per mostrare i tuoi " "articoli in molti fantastici layout." -#: src/modules/author-list/author-list.php:304 +#: src/modules/author-list/author-list.php:320 msgid "Users" msgstr "Utenti" @@ -4063,8 +4103,8 @@ msgstr "Visualizza %1$s" msgid "View All Posts" msgstr "Visualizza tutti gli articoli" -#: src/modules/author-boxes/author-boxes.php:1825 -#: src/modules/author-boxes/author-boxes.php:1826 +#: src/modules/author-boxes/author-boxes.php:1811 +#: src/modules/author-boxes/author-boxes.php:1812 #: src/modules/default-layouts/default-layouts.php:105 msgid "View all posts" msgstr "Visualizza tutti gli articoli" @@ -4122,20 +4162,20 @@ msgstr "Riga di \"Vedi tutti gli articoli\"" msgid "View Author" msgstr "Visualizza autore" -#: src/modules/multiple-authors/multiple-authors.php:1773 -msgid "View Author Page" -msgstr "Visualizza pagina dell'autore" - -#: src/core/Classes/Utils.php:1157 +#: src/core/Classes/Utils.php:1158 msgid "View Knowledge Base" msgstr "Vedi la documentazione di base" +#: src/modules/multiple-authors/multiple-authors.php:1776 +msgid "View sample Author Page" +msgstr "Visualizza la pagina dell'autore di esempio" + #: src/core/Classes/Author_Editor.php:394 #: src/modules/author-custom-fields/author-custom-fields.php:914 msgid "Website" msgstr "Sito web" -#: src/modules/multiple-authors/multiple-authors.php:1262 +#: src/modules/multiple-authors/multiple-authors.php:1265 msgid "" "With this shortcode you can display the author box in any part of the " "content. " @@ -4143,7 +4183,7 @@ msgstr "" "Con lo shortcode puoi visualizzare il riquadro autore in qualsiasi parte del " "contenuto. " -#: src/modules/multiple-authors/multiple-authors.php:1343 +#: src/modules/multiple-authors/multiple-authors.php:1346 msgid "" "With this shortcode you can display the author names or any profile field in " "any part of the content." @@ -4151,7 +4191,7 @@ msgstr "" "Usando lo shortcode puoi visualizzare i nomi degli autori o un altro campo " "del profilo in qualsiasi parte del contenuto." -#: src/modules/multiple-authors/multiple-authors.php:1412 +#: src/modules/multiple-authors/multiple-authors.php:1415 msgid "" "With this shortcode, you can show all the authors together in a single " "display." @@ -4175,7 +4215,7 @@ msgstr "Sì, questo è un profilo social" msgid "Yoast SEO Integration" msgstr "Integrazione Yoast SEO" -#: src/modules/multiple-authors/multiple-authors.php:1390 +#: src/modules/multiple-authors/multiple-authors.php:1393 #, php-format msgid "" "You can also decide to return an array list of authors by using " @@ -4187,7 +4227,7 @@ msgstr "" "array. Puoi trovare tutti i dettagli e gli esempi di utilizzo %2$s in questa " "guida%3$s." -#: src/modules/multiple-authors/multiple-authors.php:1281 +#: src/modules/multiple-authors/multiple-authors.php:1284 #, php-format msgid "" "You can also decide whether or not to show the main title, using %1$s or " @@ -4196,7 +4236,7 @@ msgstr "" "Puoi anche scegliere se mostrare o meno il titolo principale, usando %1$s o " "%2$s." -#: src/modules/multiple-authors/multiple-authors.php:1534 +#: src/modules/multiple-authors/multiple-authors.php:1537 #, php-format msgid "" "You can also show a dropdown menu that allows users to search on specific " @@ -4208,14 +4248,14 @@ msgstr "" "campi al menu a tendina utilizzando %1$s. Ciò richiede che la casella di " "ricerca sia attiva." -#: src/modules/multiple-authors/multiple-authors.php:1368 +#: src/modules/multiple-authors/multiple-authors.php:1371 msgid "" "You can also specify the separator to be used for mulitple authors data." msgstr "" "Puoi anche specificare il separatore da usare per i dati degli autori " "multipli." -#: src/modules/multiple-authors/multiple-authors.php:1445 +#: src/modules/multiple-authors/multiple-authors.php:1448 #, php-format msgid "" "You can choose the number of authors per page using %1$s . %2$s Pagination " @@ -4224,13 +4264,13 @@ msgstr "" "Puoi scegliere il numero di autori per pagina usando %1$s . %2$s La " "paginazione verrà aggiunta automaticamente se necessaria." -#: src/modules/author-boxes/author-boxes.php:2524 +#: src/modules/author-boxes/author-boxes.php:2508 msgid "" "You can create Author Boxes where Authors are grouped into their categories." msgstr "" "You can create Author Boxes where Authors are grouped into their categories." -#: src/modules/multiple-authors/multiple-authors.php:1435 +#: src/modules/multiple-authors/multiple-authors.php:1438 #, php-format msgid "" "You can define the number of layout columns by using %1$s to show authors in " @@ -4239,7 +4279,7 @@ msgstr "" "Puoi definire un numero di colonne del layout utilizzando %1$s per mostrare " "gli autori su due colonne." -#: src/modules/multiple-authors/multiple-authors.php:1544 +#: src/modules/multiple-authors/multiple-authors.php:1547 #, php-format msgid "" "You can limit the author list to users with a published post within a " @@ -4250,7 +4290,7 @@ msgstr "" "articolo entro un periodo specifico usando %1$s. Questo accetta un valore di " "data inglese come 1 settimana fa, 1 mese fa, 6 mesi fa, 1 anno fa, ecc." -#: src/modules/multiple-authors/multiple-authors.php:1456 +#: src/modules/multiple-authors/multiple-authors.php:1459 #, php-format msgid "" "You can limit the result to only authors who are assigned to posts by using " @@ -4261,7 +4301,7 @@ msgstr "" "utilizzando %1$s . %2$s In alternativa, puoi usare %3$s per mostrare tutti " "gli autori, incluso quelli senza articoli." -#: src/modules/multiple-authors/multiple-authors.php:1468 +#: src/modules/multiple-authors/multiple-authors.php:1471 #, php-format msgid "" "You can limit the result to only guest authors by using %1$s . %2$s " @@ -4271,7 +4311,7 @@ msgstr "" "alternativa,%3$s verranno mostrati solo gli autori che hanno un account " "WordPress." -#: src/modules/multiple-authors/multiple-authors.php:1332 +#: src/modules/multiple-authors/multiple-authors.php:1335 msgid "" "You can load the authors belonging to a specific author categories by " "providing the category slug or slugs separated by comma for more than one " @@ -4281,7 +4321,7 @@ msgstr "" "fornendo lo slug della categoria o gli slug separati da una virgola per più " "di una categoria." -#: src/modules/multiple-authors/multiple-authors.php:1305 +#: src/modules/multiple-authors/multiple-authors.php:1308 msgid "" "You can load the authors for a specific author by providing the author term " "id for both guest and user author. For example, this shortcode will load the " @@ -4291,8 +4331,8 @@ msgstr "" "dell'autore sia per l'autore ospite che per l'autore utente. Ad esempio, " "questo shortcode caricherà l'autore con l'id del termine 32" -#: src/modules/multiple-authors/multiple-authors.php:1291 -#: src/modules/multiple-authors/multiple-authors.php:1375 +#: src/modules/multiple-authors/multiple-authors.php:1294 +#: src/modules/multiple-authors/multiple-authors.php:1378 msgid "" "You can load the authors for a specific post, even if you are not in that " "post currently. For example, this shortcode will load the authors for the " @@ -4302,7 +4342,7 @@ msgstr "" "sei su quell'articolo. Ad esempio, questo shortcode caricherà gli autori per " "l'articolo con l'ID 32." -#: src/modules/multiple-authors/multiple-authors.php:1298 +#: src/modules/multiple-authors/multiple-authors.php:1301 msgid "" "You can load the authors for a specific user by providing the user id. For " "example, this shortcode will load the author with user id of 32" @@ -4311,7 +4351,7 @@ msgstr "" "dell'utente. Ad esempio, questo shortcode caricherà l'autore con l'id utente " "32" -#: src/modules/multiple-authors/multiple-authors.php:1382 +#: src/modules/multiple-authors/multiple-authors.php:1385 msgid "" "You can retrieve a specific author by providing the author's term ID. For " "example, this shortcode will load the author with the term ID of 102." @@ -4319,7 +4359,7 @@ msgstr "" "Puoi recuperare un autore specifico fornendo l'ID del termine dell'autore. " "Ad esempio, questo shortcode caricherà l'autore con l'ID del termine 102." -#: src/modules/multiple-authors/multiple-authors.php:1401 +#: src/modules/multiple-authors/multiple-authors.php:1404 msgid "" "You can retrieve authors belonging to a specific Author Category by " "providing the category slug or slugs. Separate multiple slugs with a comma." @@ -4336,7 +4376,7 @@ msgstr "" "Puoi specificare un separatore tipo ',' per separare gli autori. Il campo " "accetta anche HTML base." -#: src/modules/multiple-authors/multiple-authors.php:1270 +#: src/modules/multiple-authors/multiple-authors.php:1273 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4346,7 +4386,7 @@ msgstr "" "Puoi conoscere i dettagli di ciascuna opzione del layout %1$s in questa " "guida %2$s." -#: src/modules/multiple-authors/multiple-authors.php:1420 +#: src/modules/multiple-authors/multiple-authors.php:1423 #, php-format msgid "" "You can specify layout by using author boxes layout slug. You can see full " @@ -4358,11 +4398,12 @@ msgstr "" "guida %2$s. %3$s %4$s Questo shortcode genera anche due layouts " "personalizzati: %5$s %6$s." -#: src/modules/author-boxes/author-boxes.php:2128 +#: src/modules/author-boxes/author-boxes.php:2112 #, php-format -msgid "You can use basic html as prefixes in short code, for example: %1s." +msgid "You can use basic HTML in this field. For example: Read Time %1s." msgstr "" -"Puoi utilizzare HTML di base come prefissi negli shortcode, ad esempio: %1s." +"In questo campo puoi utilizzare l'HTML di base. Ad esempio: Tempo di lettura " +"%1s." #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:858 #, php-format @@ -4378,7 +4419,7 @@ msgid "You can use multiple class names. Leave a space between each class." msgstr "" "Puoi usare più nomi di classe. Lascia uno spazio tra una classe e l'altra." -#: src/modules/author-boxes/author-boxes.php:2133 +#: src/modules/author-boxes/author-boxes.php:2117 msgid "" "You can use this data to export your author box design and import it to a " "new site." @@ -4411,6 +4452,26 @@ msgstr "" "Stai usando la versione gratuita di PublishPress Authors. La versione Pro ha " "più funzionalità e supporto. %sAggiorna a Pro%s" +#~ msgid "" +#~ "Authors Pro allows you to set Author Lists pagination using number of " +#~ "authors to show per page, ability to show or hide authors without without " +#~ "any posts, order authors by their published post counts, names and limit " +#~ "the author results to users with a published post within a specific time." +#~ msgstr "" +#~ "Authors Pro ti permette di aggiungere ulteriori funzioni all'elenco degli " +#~ "autori. Queste caratteristiche includono la paginazione, la scelta " +#~ "dell'ordine degli autori e molto altro ancora." + +#~ msgid "" +#~ "Authors Pro allows you to show search box and search through author " +#~ "fields." +#~ msgstr "" +#~ "Authors Pro ti permette di mostrare la casella di ricerca e di cercare " +#~ "tra i campi dell'autore." + +#~ msgid "Convert into guest author" +#~ msgstr "Converti in autore ospite" + #~ msgid "Border color" #~ msgstr "Colore bordo" From e33b0339c854e0143d30b1e8b4a0fa7e752985d9 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 08:38:37 +0100 Subject: [PATCH 06/29] Authors FREE Translation Updates v.4.7.2 #1919 --- languages/publishpress-authors-es_ES.mo | Bin 83016 -> 83008 bytes languages/publishpress-authors-es_ES.po | 120 +++++++++++------------ languages/publishpress-authors-fr_FR.mo | Bin 90213 -> 90212 bytes languages/publishpress-authors-fr_FR.po | 123 ++++++++++++------------ languages/publishpress-authors-it_IT.mo | Bin 82243 -> 82250 bytes languages/publishpress-authors-it_IT.po | 114 +++++++++++----------- 6 files changed, 178 insertions(+), 179 deletions(-) diff --git a/languages/publishpress-authors-es_ES.mo b/languages/publishpress-authors-es_ES.mo index 29416896a12b2170a39576b98ef621bc1bfdf742..4b555ce8b9b38393af82e146bd71b151dc357758 100644 GIT binary patch delta 11663 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 b?4f5X__}Td)ZZ*eoHuiO# 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 diff --git a/languages/publishpress-authors-es_ES.po b/languages/publishpress-authors-es_ES.po index 3855276d..f7ea4076 100644 --- a/languages/publishpress-authors-es_ES.po +++ b/languages/publishpress-authors-es_ES.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: Plugins - Co-Authors, Multiple Authors and Guest Authors " "in an Author Box with PublishPress Authors - Stable (latest release)\n" -"POT-Creation-Date: 2024-07-10 07:21+0000\n" -"PO-Revision-Date: 2024-07-10 20:08+0200\n" +"POT-Creation-Date: 2024-10-14 09:25+0000\n" +"PO-Revision-Date: 2024-10-16 14:21+0200\n" "Last-Translator: \n" "Language-Team: Spanish (Spain)\n" "Language: es_ES\n" @@ -517,14 +517,14 @@ msgstr "Permitir crear autores sin una cuenta de usuario real." msgid "Allow User to Choose" msgstr "Permite al usuario elegir" -#: src/core/Classes/Author_Editor.php:978 +#: src/core/Classes/Author_Editor.php:1007 msgid "An author email is required when creating new User Author." msgstr "" "El correo electrónico del autor es obligatorio cuando se crea un nuevo " "usuario autor." -#: src/core/Classes/Author_Editor.php:948 -#: src/core/Classes/Author_Editor.php:966 +#: src/core/Classes/Author_Editor.php:977 +#: src/core/Classes/Author_Editor.php:995 msgid "An author with the name provided already exists." msgstr "Un autor con el nombre proporcionado ya existe." @@ -826,7 +826,7 @@ msgstr "Peso de la categoría de autor" msgid "Author category with this name already exist." msgstr "Una categoría de autor con este nombre ya existe." -#: src/core/Classes/Author_Editor.php:730 +#: src/core/Classes/Author_Editor.php:759 msgid "Author Email" msgstr "Correo electrónico del autor" @@ -869,7 +869,7 @@ msgstr "Lista de autores movida a la papelera." #: src/modules/author-list/author-list.php:247 msgid "Author List restored from the Trash." -msgstr "Lista de autores restaurada de la papelera." +msgstr "Lista de autores restaurada de la papelera" #: src/modules/author-list/author-list.php:196 #: src/modules/author-list/author-list.php:197 @@ -918,7 +918,7 @@ msgid "" "Author Pro allows you to add a search box to the Authors List. You can also " "show a dropdown menu that allows users to search on specific author fields." msgstr "" -"«Author Pro» te permite añadir un cuadro de búsqueda a la lista de autores. " +"Author Pro te permite añadir un cuadro de búsqueda a la lista de autores. " "También puedes mostrar un menú desplegable que permite a los usuarios buscar " "en campos específicos del autor." @@ -1000,7 +1000,7 @@ msgstr "AuthorList" #: src/core/Authors_Widget.php:138 src/core/Plugin.php:856 #: src/core/Classes/Post_Editor.php:94 src/core/Classes/Post_Editor.php:206 -#: src/core/Traits/Author_box.php:189 +#: src/core/Traits/Author_box.php:193 #: src/modules/author-categories/author-categories.php:624 #: src/modules/author-list/author-list.php:402 #: src/modules/editflow-integration/editflow-integration.php:114 @@ -1049,9 +1049,9 @@ msgid "" "Authors Pro allows you to add extra features to the Authors List. These " "features include pagination, choose the order of authors, and much more." msgstr "" -"Autores Pro te permite añadir características adicionales a la lista de " -"autores. Estas características incluyen la paginación, elegir el orden de " -"los autores, y mucho más." +"Authors Pro te permite añadir características extra a la «Lista de Autores». " +"Estas características incluyen la paginación, elegir el orden de los " +"autores, y mucho más." #: src/modules/default-layouts/default-layouts.php:126 msgid "Authors Recent" @@ -1339,7 +1339,7 @@ msgstr "Haz clic para cambiar este autor o arrastra para cambiar su posición" msgid "Click To Copy!" msgstr "¡Haz clic para copiar!" -#: src/modules/multiple-authors/multiple-authors.php:4395 +#: src/modules/multiple-authors/multiple-authors.php:4393 msgid "Click to run the update now" msgstr "Haz clic para ejecutar la actualización ahora" @@ -1358,12 +1358,12 @@ msgstr "Coautores" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3859 msgid "Collecting data for the migration..." msgstr "Recogiendo datos para la migración…" -#: src/modules/multiple-authors/multiple-authors.php:3793 -#: src/modules/multiple-authors/multiple-authors.php:3824 +#: src/modules/multiple-authors/multiple-authors.php:3791 +#: src/modules/multiple-authors/multiple-authors.php:3822 msgid "Collecting data..." msgstr "Recogiendo los datos…" @@ -1396,9 +1396,9 @@ msgstr "" msgid "Contact" msgstr "Contacto" -#: src/core/Classes/Author_Editor.php:809 -msgid "Convert into Guest Author With User Account" -msgstr "Convertir en autor invitado con cuenta de usuario" +#: src/core/Classes/Author_Editor.php:838 +msgid "Convert to Registered Author With User Account" +msgstr "Convertir en autor registrado con cuenta de usuario" #: src/modules/author-boxes/author-boxes.php:2131 #: src/modules/author-boxes/author-boxes.php:2203 @@ -1423,7 +1423,7 @@ msgstr "Copiar los datos de Bylines" msgid "Copy Co-Authors Plus Data" msgstr "Copiar los datos de Co-Authors Plus" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Copy Co-Authors Plus data" msgstr "Copiar los datos de Co-Authors Plus" @@ -1438,11 +1438,11 @@ msgstr "Copia en el portapapeles" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Copying authors' data..." msgstr "Copiando los datos del autor…" -#: src/core/Classes/Author_Editor.php:704 +#: src/core/Classes/Author_Editor.php:733 msgid "" "Create an author profile and a linked user account. This account will be in " "the \"Guest Author\" role and will not be able to login to the WordPress " @@ -1452,7 +1452,7 @@ msgstr "" "tendrá el perfil de «Autor invitado» y no podrá iniciar sesión en el " "escritorio de WordPress ni actualizar su perfil." -#: src/core/Classes/Author_Editor.php:698 +#: src/core/Classes/Author_Editor.php:727 msgid "" "Create an author profile for a current user account. You can select users " "who are allowed to edit posts. This user will be able to update their " @@ -1462,7 +1462,7 @@ msgstr "" "seleccionar usuarios con permiso para editar entradas. Este usuario podrá " "actualizar su perfil." -#: src/core/Classes/Author_Editor.php:711 +#: src/core/Classes/Author_Editor.php:740 msgid "" "Create an author profile with no linked user account. This option is " "lightweight but may have compatibility issues with other themes and plugins." @@ -1517,7 +1517,7 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "Creando el término de autor para el usuario %d" -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Creating missed post authors...." msgstr "Creación de autores de entradas faltantes…" @@ -1591,7 +1591,7 @@ msgstr "Desactivar Byline" msgid "Deactivate Bylines" msgstr "Desactivar Bylines" -#: src/modules/multiple-authors/multiple-authors.php:3869 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivate Co-Authors Plus" msgstr "Desactivar Co-Authors Plus" @@ -1603,7 +1603,7 @@ msgstr "Desactivando Byline…" msgid "Deactivating Bylines..." msgstr "Desactivando Bylines…" -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Deactivating Co-uthors Plus..." msgstr "Desactivando Co-Authors Plus…" @@ -1741,8 +1741,8 @@ msgstr "" "Desactivado porque add_post_type_support('%1$s', '%2$s') está incluido en un " "archivo cargado." -#: src/modules/multiple-authors/multiple-authors.php:4327 -#: src/modules/multiple-authors/multiple-authors.php:4401 +#: src/modules/multiple-authors/multiple-authors.php:4325 +#: src/modules/multiple-authors/multiple-authors.php:4399 msgid "Dismiss" msgstr "Descartar" @@ -1838,11 +1838,11 @@ msgstr "páginas de documentación" msgid "dofollow" msgstr "dofollow" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Done! %d authors were updated." msgstr "¡Hecho! Se han actualizado %d autores." -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3793 msgid "Done! %d posts were updated." msgstr "¡Hecho! Se han actualizado %d entradas." @@ -1864,11 +1864,11 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "¡Hecho! Bylines está desactivado." -#: src/modules/multiple-authors/multiple-authors.php:3870 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus data was copied." msgstr "¡Hecho! Los datos de Co-Authors Plus han sido copiados." -#: src/modules/multiple-authors/multiple-authors.php:3868 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Done! Co-Authors Plus is deactivated." msgstr "¡Hecho! Co-Authors Plus está desactivado." @@ -2060,7 +2060,7 @@ msgstr "Error. No se han podido restablecer los términos del autor." #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3860 msgid "Error: " msgstr "Error: " @@ -2164,8 +2164,8 @@ msgstr "Campo valor" msgid "Filter %2$s list" msgstr "Filtrar la lista %2$s" -#: src/modules/multiple-authors/multiple-authors.php:3794 -#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Finishing the process..." msgstr "Finalizando el proceso…" @@ -2255,18 +2255,18 @@ msgstr "Acanalado" msgid "Group By" msgstr "Agrupar por" -#: src/modules/multiple-authors/multiple-authors.php:4786 +#: src/modules/multiple-authors/multiple-authors.php:4784 msgid "Guest Author cannot login on the site." msgstr "El autor invitado no puede acceder al sitio." #: src/core/Classes/Author_Editor.php:121 -#: src/core/Classes/Author_Editor.php:710 +#: src/core/Classes/Author_Editor.php:739 #: src/modules/author-list/author-list.php:979 msgid "Guest Author With No User Account" msgstr "Autor invitado sin cuenta de usuario" #: src/core/Classes/Author_Editor.php:117 -#: src/core/Classes/Author_Editor.php:703 +#: src/core/Classes/Author_Editor.php:732 #: src/modules/author-list/author-list.php:978 msgid "Guest Author With User Account" msgstr "Autor invitado con cuenta de usuario" @@ -2510,7 +2510,7 @@ msgstr "Nonce no válido" msgid "is required" msgstr "Es obligatorio" -#: src/modules/multiple-authors/multiple-authors.php:4321 +#: src/modules/multiple-authors/multiple-authors.php:4319 msgid "It looks like you have Co-Authors Plus installed." msgstr "Parece que tienes instalado Co-Authors Plus." @@ -2640,7 +2640,7 @@ msgstr "El mantenimiento se ha completado correctamente." msgid "Mapped User" msgstr "Usuario asignado" -#: src/core/Classes/Admin_Ajax.php:346 src/core/Classes/Author_Editor.php:1014 +#: src/core/Classes/Admin_Ajax.php:346 src/core/Classes/Author_Editor.php:1043 msgid "Mapped user is required." msgstr "El usuario asignado es obligatorio." @@ -2746,7 +2746,7 @@ msgstr "No hay término de autor" msgid "No authors found." msgstr "No se han encontrado autores." -#: src/core/Classes/Author_Editor.php:878 +#: src/core/Classes/Author_Editor.php:907 msgid "No authors were updated" msgstr "No se ha actualizado ningún autor" @@ -2915,7 +2915,7 @@ msgstr "" "recomendamos hacer una copia de seguridad del sitio para el caso de que algo " "vaya mal." -#: src/modules/multiple-authors/multiple-authors.php:4322 +#: src/modules/multiple-authors/multiple-authors.php:4320 msgid "Please click here and read this guide!" msgstr "¡Por favor, haz clic aquí y lee esta guía!" @@ -2940,9 +2940,9 @@ msgstr "" #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3796 -#: src/modules/multiple-authors/multiple-authors.php:3827 -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Please, wait..." msgstr "Por favor, espera…" @@ -3057,7 +3057,7 @@ msgstr "" "PublishPress Authors te permite añadir múltiples autores y autores invitados " "a las entradas de WordPress" -#: src/modules/multiple-authors/multiple-authors.php:4394 +#: src/modules/multiple-authors/multiple-authors.php:4392 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" @@ -3194,7 +3194,7 @@ msgid "Recommendations for you" msgstr "Recomendaciones para ti" #: src/core/Classes/Author_Editor.php:119 -#: src/core/Classes/Author_Editor.php:697 +#: src/core/Classes/Author_Editor.php:726 #: src/modules/author-list/author-list.php:977 msgid "Registered Author With User Account" msgstr "Autor registrado con cuenta de usuario" @@ -3404,9 +3404,9 @@ msgid "" "or specific authors." msgstr "" "Selecciona una opción para limitar los resultados a los perfiles de usuario " -"seleccionados, a los tipos de autor o a autores específicos." +"seleccionados, tipos de autor o a autores específicos." -#: src/core/Classes/Author_Editor.php:742 +#: src/core/Classes/Author_Editor.php:771 msgid "Select Author Account" msgstr "Selecciona una cuenta de autor" @@ -3664,7 +3664,7 @@ msgstr "Continuo" msgid "Sorry, the request returned an error." msgstr "Lo siento, la solicitud ha devuelto un error." -#: src/core/Classes/Admin_Ajax.php:334 src/core/Classes/Author_Editor.php:922 +#: src/core/Classes/Admin_Ajax.php:334 src/core/Classes/Author_Editor.php:951 msgid "" "Sorry, this WordPress user is already mapped to another Author. By default, " "each user can only be connected to one Author profile." @@ -3694,12 +3694,12 @@ msgstr "Estado" msgid "Support for Polylang" msgstr "Compatibile con Polylang" -#: src/core/Classes/Author_Editor.php:805 -#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/core/Classes/Author_Editor.php:834 +#: src/modules/multiple-authors/multiple-authors.php:3790 msgid "Sync author and user fields" msgstr "Sincroniza los campos de autor y usuario" -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3821 msgid "Sync author and user URLs" msgstr "Sincroniza las URL de autor y de usuario" @@ -4023,27 +4023,27 @@ msgstr "Actualizar" msgid "Update Author" msgstr "Actualizar el autor" -#: src/core/Classes/Author_Editor.php:813 +#: src/core/Classes/Author_Editor.php:842 msgid "Update post count" msgstr "Actualizar el recuento de entradas" -#: src/core/Classes/Author_Editor.php:881 +#: src/core/Classes/Author_Editor.php:910 msgid "Updated %d authors" msgstr "Actualizado(s) %d autor(es)" -#: src/modules/multiple-authors/multiple-authors.php:3829 +#: src/modules/multiple-authors/multiple-authors.php:3827 msgid "Updated %d of %d authors..." msgstr "Actualizado %d de %d autores..." -#: src/modules/multiple-authors/multiple-authors.php:3798 +#: src/modules/multiple-authors/multiple-authors.php:3796 msgid "Updated %d of %d posts..." msgstr "Actualizado %d de %d entradas…" -#: src/modules/multiple-authors/multiple-authors.php:3797 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Updating author field on posts..." msgstr "Actualizando el campo de autor en las entradas…" -#: src/modules/multiple-authors/multiple-authors.php:3828 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Updating authors slug..." msgstr "Actualizando el slug de los autores…" diff --git a/languages/publishpress-authors-fr_FR.mo b/languages/publishpress-authors-fr_FR.mo index db1bec5217daa58124c5c7b5e3d7a33903b914dd..59112b4c1135c765c0e8a799a4c1a8f6c1c41f44 100644 GIT binary patch delta 11703 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 Kl3;(?;{O3!s{3aE delta 11611 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 M+K#t_9S0Kr4+~Y^GXMYp delta 11654 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 diff --git a/languages/publishpress-authors-it_IT.po b/languages/publishpress-authors-it_IT.po index b042e896..610090db 100644 --- a/languages/publishpress-authors-it_IT.po +++ b/languages/publishpress-authors-it_IT.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: Plugins - Co-Authors, Multiple Authors and Guest Authors " "in an Author Box with PublishPress Authors - Stable (latest release)\n" -"POT-Creation-Date: 2024-07-10 07:21+0000\n" -"PO-Revision-Date: 2024-07-10 20:03+0200\n" +"POT-Creation-Date: 2024-10-14 09:25+0000\n" +"PO-Revision-Date: 2024-10-16 14:11+0200\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -483,7 +483,7 @@ msgstr "Dopo la riga di \"Vedi tutti gli articoli\"" #, php-format msgid "All %s" msgid_plural "All %s" -msgstr[0] "Tutto %s" +msgstr[0] "Tutti %s" msgstr[1] "Tutti %s" #: src/core/Authors_Widget.php:181 src/core/Authors_Widget.php:412 @@ -515,13 +515,13 @@ msgstr "Permette di creare autore senza un vero account utente." msgid "Allow User to Choose" msgstr "Consente all'utente di scegliere" -#: src/core/Classes/Author_Editor.php:978 +#: src/core/Classes/Author_Editor.php:1007 msgid "An author email is required when creating new User Author." msgstr "" "L'email dell'autore è obbligatoria quando si crea un nuovo utente autore." -#: src/core/Classes/Author_Editor.php:948 -#: src/core/Classes/Author_Editor.php:966 +#: src/core/Classes/Author_Editor.php:977 +#: src/core/Classes/Author_Editor.php:995 msgid "An author with the name provided already exists." msgstr "Un autore con questo nome esiste già." @@ -821,7 +821,7 @@ msgstr "Weight della categoria d'autore" msgid "Author category with this name already exist." msgstr "Una categoria autore con questo nome esiste già." -#: src/core/Classes/Author_Editor.php:730 +#: src/core/Classes/Author_Editor.php:759 msgid "Author Email" msgstr "Email dell'autore" @@ -995,7 +995,7 @@ msgstr "AuthorList" #: src/core/Authors_Widget.php:138 src/core/Plugin.php:856 #: src/core/Classes/Post_Editor.php:94 src/core/Classes/Post_Editor.php:206 -#: src/core/Traits/Author_box.php:189 +#: src/core/Traits/Author_box.php:193 #: src/modules/author-categories/author-categories.php:624 #: src/modules/author-list/author-list.php:402 #: src/modules/editflow-integration/editflow-integration.php:114 @@ -1044,7 +1044,7 @@ msgid "" "Authors Pro allows you to add extra features to the Authors List. These " "features include pagination, choose the order of authors, and much more." msgstr "" -"Authors Pro ti permette di aggiungere ulteriori funzionalità all'elenco " +"Authors Pro ti permette di aggiungere ulteriori caratteristiche all'elenco " "degli autori. Queste caratteristiche includono la paginazione, la scelta " "dell'ordine degli autori e molto altro ancora." @@ -1338,7 +1338,7 @@ msgstr "" msgid "Click To Copy!" msgstr "Fai clic per copiare!" -#: src/modules/multiple-authors/multiple-authors.php:4395 +#: src/modules/multiple-authors/multiple-authors.php:4393 msgid "Click to run the update now" msgstr "Fai clic per avviare adesso l'aggiornamento" @@ -1357,12 +1357,12 @@ msgstr "Coautori" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3859 msgid "Collecting data for the migration..." msgstr "Raccogliendo i dati per la migrazione…" -#: src/modules/multiple-authors/multiple-authors.php:3793 -#: src/modules/multiple-authors/multiple-authors.php:3824 +#: src/modules/multiple-authors/multiple-authors.php:3791 +#: src/modules/multiple-authors/multiple-authors.php:3822 msgid "Collecting data..." msgstr "Raccogliendo i dati…" @@ -1395,9 +1395,9 @@ msgstr "" msgid "Contact" msgstr "Contatto" -#: src/core/Classes/Author_Editor.php:809 -msgid "Convert into Guest Author With User Account" -msgstr "Convertire in autore ospite con account utente" +#: src/core/Classes/Author_Editor.php:838 +msgid "Convert to Registered Author With User Account" +msgstr "Converti in autore registrato con account utente" #: src/modules/author-boxes/author-boxes.php:2131 #: src/modules/author-boxes/author-boxes.php:2203 @@ -1422,7 +1422,7 @@ msgstr "Copiare i dati info autori" msgid "Copy Co-Authors Plus Data" msgstr "Copia i dati Co-Authors Plus" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Copy Co-Authors Plus data" msgstr "Copia i dati Co-Authors Plus" @@ -1437,11 +1437,11 @@ msgstr "Copia negli appunti" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Copying authors' data..." msgstr "Copiando i dati degli autori…" -#: src/core/Classes/Author_Editor.php:704 +#: src/core/Classes/Author_Editor.php:733 msgid "" "Create an author profile and a linked user account. This account will be in " "the \"Guest Author\" role and will not be able to login to the WordPress " @@ -1451,7 +1451,7 @@ msgstr "" "ruolo di \"Autore ospite\" e non potrà accedere alla bacheca di WordPress o " "aggiornare il proprio profilo." -#: src/core/Classes/Author_Editor.php:698 +#: src/core/Classes/Author_Editor.php:727 msgid "" "Create an author profile for a current user account. You can select users " "who are allowed to edit posts. This user will be able to update their " @@ -1461,7 +1461,7 @@ msgstr "" "utenti che sono autorizzati a modificare gli articoli. Questo utente potrà " "aggiornare il proprio profilo." -#: src/core/Classes/Author_Editor.php:711 +#: src/core/Classes/Author_Editor.php:740 msgid "" "Create an author profile with no linked user account. This option is " "lightweight but may have compatibility issues with other themes and plugins." @@ -1513,7 +1513,7 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "Creando il termine autore per l'utente %d" -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Creating missed post authors...." msgstr "Creazione degli autori degli articoli mancanti in corso…" @@ -1587,7 +1587,7 @@ msgstr "Disattivare Byline" msgid "Deactivate Bylines" msgstr "Disattivare Bylines" -#: src/modules/multiple-authors/multiple-authors.php:3869 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivate Co-Authors Plus" msgstr "Disattivare Co-Authors Plus" @@ -1599,7 +1599,7 @@ msgstr "Disattivando Byline…" msgid "Deactivating Bylines..." msgstr "Disattivando Bylines…" -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Deactivating Co-uthors Plus..." msgstr "Disattivando Co-Authors Plus…" @@ -1738,8 +1738,8 @@ msgstr "" "Disabilitato perché add_post_type_support('%1$s', '%2$s') è incluso in un " "file già caricato." -#: src/modules/multiple-authors/multiple-authors.php:4327 -#: src/modules/multiple-authors/multiple-authors.php:4401 +#: src/modules/multiple-authors/multiple-authors.php:4325 +#: src/modules/multiple-authors/multiple-authors.php:4399 msgid "Dismiss" msgstr "Ignora" @@ -1836,11 +1836,11 @@ msgstr "pagina della documentazione" msgid "dofollow" msgstr "dofollow" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Done! %d authors were updated." msgstr "Fatto! %d autori sono stati aggiornati." -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3793 msgid "Done! %d posts were updated." msgstr "Fatto! %d articoli sono stati aggiornati." @@ -1862,11 +1862,11 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "Fatto! Bylines è stato disattivato." -#: src/modules/multiple-authors/multiple-authors.php:3870 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus data was copied." msgstr "Fatto! I dati di Co-Authors Plus sono stati copiati." -#: src/modules/multiple-authors/multiple-authors.php:3868 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Done! Co-Authors Plus is deactivated." msgstr "Fatto! Co-Authors Plus è stato disattivato." @@ -2060,7 +2060,7 @@ msgstr "Errore. Impossibile reimpostare i termini dell'autore." #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3860 msgid "Error: " msgstr "Errore: " @@ -2164,8 +2164,8 @@ msgstr "Campo valore" msgid "Filter %2$s list" msgstr "Filtra elenco %2$s" -#: src/modules/multiple-authors/multiple-authors.php:3794 -#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Finishing the process..." msgstr "Ultimando il processo…" @@ -2254,18 +2254,18 @@ msgstr "Scanalatura" msgid "Group By" msgstr "Raggruppa per" -#: src/modules/multiple-authors/multiple-authors.php:4786 +#: src/modules/multiple-authors/multiple-authors.php:4784 msgid "Guest Author cannot login on the site." msgstr "L'autore ospite non può accedere al sito." #: src/core/Classes/Author_Editor.php:121 -#: src/core/Classes/Author_Editor.php:710 +#: src/core/Classes/Author_Editor.php:739 #: src/modules/author-list/author-list.php:979 msgid "Guest Author With No User Account" msgstr "Autore ospite senza account utente" #: src/core/Classes/Author_Editor.php:117 -#: src/core/Classes/Author_Editor.php:703 +#: src/core/Classes/Author_Editor.php:732 #: src/modules/author-list/author-list.php:978 msgid "Guest Author With User Account" msgstr "Autore ospite con account utente" @@ -2510,7 +2510,7 @@ msgstr "Nonce invalido" msgid "is required" msgstr "è obbligatorio" -#: src/modules/multiple-authors/multiple-authors.php:4321 +#: src/modules/multiple-authors/multiple-authors.php:4319 msgid "It looks like you have Co-Authors Plus installed." msgstr "Sembra che tu hai installato anche Co-Authors Plus." @@ -2640,7 +2640,7 @@ msgstr "La manutenzione è stata completata con successo." msgid "Mapped User" msgstr "Utente mappato" -#: src/core/Classes/Admin_Ajax.php:346 src/core/Classes/Author_Editor.php:1014 +#: src/core/Classes/Admin_Ajax.php:346 src/core/Classes/Author_Editor.php:1043 msgid "Mapped user is required." msgstr "L'utente mappato è obbligatorio." @@ -2746,7 +2746,7 @@ msgstr "Nessun termine autore" msgid "No authors found." msgstr "Nessun autore trovato." -#: src/core/Classes/Author_Editor.php:878 +#: src/core/Classes/Author_Editor.php:907 msgid "No authors were updated" msgstr "Nessun autore è stato aggiornato" @@ -2916,7 +2916,7 @@ msgstr "" "consigliamo di eseguire un backup del sito nel caso in cui qualcosa possa " "andare storto." -#: src/modules/multiple-authors/multiple-authors.php:4322 +#: src/modules/multiple-authors/multiple-authors.php:4320 msgid "Please click here and read this guide!" msgstr "Fai clic qui e leggi questa guida!" @@ -2935,9 +2935,9 @@ msgstr "Prendi nota che questa caratteristica non funziona con tutti i temi." #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3796 -#: src/modules/multiple-authors/multiple-authors.php:3827 -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Please, wait..." msgstr "Attendere prego…" @@ -3052,7 +3052,7 @@ msgstr "" "PublishPress Authors ti permette di aggiungere autori multipli e autori " "ospiti agli articoli di WordPress" -#: src/modules/multiple-authors/multiple-authors.php:4394 +#: src/modules/multiple-authors/multiple-authors.php:4392 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" @@ -3189,7 +3189,7 @@ msgid "Recommendations for you" msgstr "Raccomandazioni per te" #: src/core/Classes/Author_Editor.php:119 -#: src/core/Classes/Author_Editor.php:697 +#: src/core/Classes/Author_Editor.php:726 #: src/modules/author-list/author-list.php:977 msgid "Registered Author With User Account" msgstr "Autore registrato con account utente" @@ -3397,9 +3397,9 @@ msgid "" "or specific authors." msgstr "" "Seleziona un'opzione per limitare i risultati ai ruoli utente selezionati, " -"ai tipi di autore o a specifici autori." +"al tipo di autore o a specifici autori." -#: src/core/Classes/Author_Editor.php:742 +#: src/core/Classes/Author_Editor.php:771 msgid "Select Author Account" msgstr "Seleziona un account autore" @@ -3657,7 +3657,7 @@ msgstr "Solido" msgid "Sorry, the request returned an error." msgstr "Spiacenti, la richiesta ha restituito un errore." -#: src/core/Classes/Admin_Ajax.php:334 src/core/Classes/Author_Editor.php:922 +#: src/core/Classes/Admin_Ajax.php:334 src/core/Classes/Author_Editor.php:951 msgid "" "Sorry, this WordPress user is already mapped to another Author. By default, " "each user can only be connected to one Author profile." @@ -3688,12 +3688,12 @@ msgstr "Stato" msgid "Support for Polylang" msgstr "Compatibile con Polylang" -#: src/core/Classes/Author_Editor.php:805 -#: src/modules/multiple-authors/multiple-authors.php:3792 +#: src/core/Classes/Author_Editor.php:834 +#: src/modules/multiple-authors/multiple-authors.php:3790 msgid "Sync author and user fields" msgstr "Sincronizza i campi autore e utente" -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3821 msgid "Sync author and user URLs" msgstr "Sincronizza l'autore e gli URL utente" @@ -4024,27 +4024,27 @@ msgstr "Aggiorna" msgid "Update Author" msgstr "Aggiorna autore" -#: src/core/Classes/Author_Editor.php:813 +#: src/core/Classes/Author_Editor.php:842 msgid "Update post count" msgstr "Aggiorna conteggio articoli" -#: src/core/Classes/Author_Editor.php:881 +#: src/core/Classes/Author_Editor.php:910 msgid "Updated %d authors" msgstr "Aggiorna %d autori" -#: src/modules/multiple-authors/multiple-authors.php:3829 +#: src/modules/multiple-authors/multiple-authors.php:3827 msgid "Updated %d of %d authors..." msgstr "Aggiornato %d di %d autori…" -#: src/modules/multiple-authors/multiple-authors.php:3798 +#: src/modules/multiple-authors/multiple-authors.php:3796 msgid "Updated %d of %d posts..." msgstr "Aggiornato %d di %d articoli…" -#: src/modules/multiple-authors/multiple-authors.php:3797 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Updating author field on posts..." msgstr "Aggiornamento dei campi autore negli articoli…" -#: src/modules/multiple-authors/multiple-authors.php:3828 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Updating authors slug..." msgstr "Aggiornamento dello slug dell'autore…" From 511a35a2df65aabfc217763da30db589096cf85c Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 17:11:01 +0100 Subject: [PATCH 07/29] Can't change the layout for new Author Lists #1892 --- src/functions/template-tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions/template-tags.php b/src/functions/template-tags.php index b240517f..98b5e624 100644 --- a/src/functions/template-tags.php +++ b/src/functions/template-tags.php @@ -1604,7 +1604,7 @@ function ppma_get_grouped_post_authors($post = 0, $authors = false, $author_cate $post_id = (int)$post; - if (empty($post_id) ) { + if (empty($post_id) && !$authors ) { return []; } From 0119c892e0d5768b2ce74513a5c10879bdb9a72e Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 17:17:36 +0100 Subject: [PATCH 08/29] Add margin to warnings on the Authors screen #1909 --- src/core/Classes/Author_Editor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Classes/Author_Editor.php b/src/core/Classes/Author_Editor.php index a6ba5383..c955bab4 100644 --- a/src/core/Classes/Author_Editor.php +++ b/src/core/Classes/Author_Editor.php @@ -901,7 +901,7 @@ public static function admin_notices() if (!empty($_REQUEST['bulk_update_author'])) { $count = (int)$_REQUEST['bulk_update_author']; - echo '
'; + echo '

'; if (empty($count)) { esc_html__('No authors were updated', 'publishpress-authors'); @@ -912,7 +912,7 @@ public static function admin_notices() ); } - echo '

'; + echo '

'; } } From 6fd4f9482fcedbbb1d6b1135dbf18e0dfd9e2201 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 17:21:15 +0100 Subject: [PATCH 09/29] Small typo with the Display Name #1895 --- src/modules/author-boxes/classes/AuthorBoxesEditorFields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php b/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php index d33c1131..c2bfdb14 100644 --- a/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php +++ b/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php @@ -271,7 +271,7 @@ public static function getNameFields($fields, $post) 'sanitize' => 'sanitize_text_field', 'options' => [ 'after_avatar' => esc_html__('After Avatar', 'publishpress-authors'), - 'infront_of_avatar' => esc_html__('Infront of Avatar', 'publishpress-authors'), + 'infront_of_avatar' => esc_html__('In front of Avatar', 'publishpress-authors'), ], 'tab' => 'name', ]; From 746c973022ae8dd1e881c60d73e9a8bbc8c68098 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Tue, 10 Dec 2024 17:26:17 +0100 Subject: [PATCH 10/29] =?UTF-8?q?stevejburge=20opened=20this=20issue=20on?= =?UTF-8?q?=20Aug=2015=20=C2=B7=200=20comments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/author-pages/author-pages.php | 2 +- src/modules/multiple-authors/multiple-authors.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/author-pages/author-pages.php b/src/modules/author-pages/author-pages.php index fb44486d..8adb1dc3 100644 --- a/src/modules/author-pages/author-pages.php +++ b/src/modules/author-pages/author-pages.php @@ -162,7 +162,7 @@ public function manageAuthorPages() 'active_tabs' => '.ppma-author-pages-tab-general', ]; - $page_description = esc_html__('Please note this feature will not work for all themes.', 'publishpress-authors') . ' '. esc_html__('Click here for more details.', 'publishpress-authors') .''; + $page_description = ''; $this->print_default_header($ppma_custom_settings['modules'][$this->module_name], $page_description); diff --git a/src/modules/multiple-authors/multiple-authors.php b/src/modules/multiple-authors/multiple-authors.php index e5d71ec9..68bafccd 100644 --- a/src/modules/multiple-authors/multiple-authors.php +++ b/src/modules/multiple-authors/multiple-authors.php @@ -1761,6 +1761,8 @@ public function settings_enable_plugin_author_pages($args = []) 'If enabled, PublishPress Authors will replace the default WordPress author pages.', 'publishpress-authors' ) + . ' ' + . esc_html__('Please note this feature will not work for all themes.', 'publishpress-authors') . ' '. esc_html__('Click here for more details.', 'publishpress-authors') .'' . ''; From 968a08a7bbe32054e1df470a562b02a21acb8984 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Thu, 12 Dec 2024 07:26:10 +0100 Subject: [PATCH 11/29] Deprecated: Dynamic properties MA_Author_Pages::$module_url and $module #1946 --- src/modules/author-pages/author-pages.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/author-pages/author-pages.php b/src/modules/author-pages/author-pages.php index 8adb1dc3..7a6d3556 100644 --- a/src/modules/author-pages/author-pages.php +++ b/src/modules/author-pages/author-pages.php @@ -31,6 +31,10 @@ class MA_Author_Pages extends Module { + public $module; + + public $module_url; + public $module_name = 'author_pages'; public $viewsPath; From 9a84e4e5e5bd8eee28ed99759d5c00e1f272441b Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Thu, 12 Dec 2024 08:00:45 +0100 Subject: [PATCH 12/29] Add option for hyperlink in author bio box #1938 --- src/modules/author-boxes/assets/js/author-boxes-editor.js | 1 + src/modules/author-boxes/author-boxes.php | 6 ++++++ src/modules/author-boxes/classes/AuthorBoxesAjax.php | 2 ++ src/modules/author-boxes/classes/AuthorBoxesDefault.php | 3 +++ .../author-boxes/classes/AuthorBoxesEditorFields.php | 6 ++++++ 5 files changed, 18 insertions(+) diff --git a/src/modules/author-boxes/assets/js/author-boxes-editor.js b/src/modules/author-boxes/assets/js/author-boxes-editor.js index 976ddc50..e4673c8f 100644 --- a/src/modules/author-boxes/assets/js/author-boxes-editor.js +++ b/src/modules/author-boxes/assets/js/author-boxes-editor.js @@ -615,6 +615,7 @@ ]; var bio_refresh_trigger = [ 'author_bio_show', + 'author_bio_link', 'author_bio_limit' ]; var avatar_refresh_trigger = [ diff --git a/src/modules/author-boxes/author-boxes.php b/src/modules/author-boxes/author-boxes.php index d1f5d5f7..ff18be12 100644 --- a/src/modules/author-boxes/author-boxes.php +++ b/src/modules/author-boxes/author-boxes.php @@ -1801,7 +1801,13 @@ class="authors-select2 ppma-authors-post-search" < class="pp-author-boxes-description multiple-authors-description author-description-"> + + + get_description($args['author_bio_limit']['value']); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> + + + > diff --git a/src/modules/author-boxes/classes/AuthorBoxesAjax.php b/src/modules/author-boxes/classes/AuthorBoxesAjax.php index e3a331f1..bb417c3a 100644 --- a/src/modules/author-boxes/classes/AuthorBoxesAjax.php +++ b/src/modules/author-boxes/classes/AuthorBoxesAjax.php @@ -539,7 +539,9 @@ public static function handle_author_boxes_editor_get_template() < class="pp-author-boxes-description multiple-authors-description author-description-"> + get_description(); ?> + > diff --git a/src/modules/author-boxes/classes/AuthorBoxesDefault.php b/src/modules/author-boxes/classes/AuthorBoxesDefault.php index 15649e4c..a050e45c 100644 --- a/src/modules/author-boxes/classes/AuthorBoxesDefault.php +++ b/src/modules/author-boxes/classes/AuthorBoxesDefault.php @@ -91,6 +91,7 @@ public static function getAuthorBoxesBoxedEditorData() $editor_data['name_html_tag'] = 'div'; //bio default $editor_data['author_bio_show'] = 1; + $editor_data['author_bio_link'] = 0; $editor_data['author_bio_html_tag'] = 'p'; //meta default $editor_data['meta_view_all_show'] = 1; @@ -175,6 +176,7 @@ public static function getAuthorBoxesBoxedRightEditorData() $editor_data['name_color'] = '#000000'; $editor_data['name_html_tag'] = 'p'; //bio default + $editor_data['avatar_border_radius'] = 50; $editor_data['author_bio_show'] = 1; $editor_data['author_bio_html_tag'] = 'p'; // email default @@ -350,6 +352,7 @@ public static function getAuthorBoxesCenteredEditorData() $editor_data['name_show'] = 1; $editor_data['name_html_tag'] = 'div'; //bio default + $editor_data['avatar_border_radius'] = 50; $editor_data['author_bio_show'] = 1; $editor_data['author_bio_html_tag'] = 'p'; //meta default diff --git a/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php b/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php index c2bfdb14..b6b456ed 100644 --- a/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php +++ b/src/modules/author-boxes/classes/AuthorBoxesEditorFields.php @@ -1019,6 +1019,12 @@ public static function getBioFields($fields, $post) 'sanitize' => 'absint', 'tab' => 'author_bio', ]; + $fields['author_bio_link'] = [ + 'label' => esc_html__('Enable Biographical Link', 'publishpress-authors'), + 'type' => 'checkbox', + 'sanitize' => 'absint', + 'tab' => 'author_bio', + ]; $fields['author_bio_limit'] = [ 'label' => esc_html__('Biographical Info Character Limit', 'publishpress-authors'), 'min' => 0, From cc1c449dea8a93353e71c0679d3b96a4fca0fa8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 07:10:33 +0000 Subject: [PATCH 13/29] Bump webpack from 5.92.0 to 5.97.1 Bumps [webpack](https://github.com/webpack/webpack) from 5.92.0 to 5.97.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.92.0...v5.97.1) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 530 +++++++++++++++++++++++----------------------- package.json | 2 +- 2 files changed, 266 insertions(+), 266 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0d721445..6024a48c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,7 +21,7 @@ "codeceptjs": "^3.6.7", "cross-env": "^5.2.1", "playwright": "^1.13.0", - "webpack": "5.92.0", + "webpack": "5.97.1", "webpack-cli": "5.1.4" } }, @@ -3801,9 +3801,9 @@ } }, "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "node_modules/@types/istanbul-lib-coverage": { @@ -4053,148 +4053,148 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -4353,15 +4353,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "dev": true, - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-loose": { "version": "8.4.0", "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", @@ -5723,9 +5714,9 @@ "dev": true }, "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.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "funding": [ { @@ -5742,10 +5733,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.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" @@ -6084,9 +6075,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001627", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz", - "integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true, "funding": [ { @@ -8577,9 +8568,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.788", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.788.tgz", - "integrity": "sha512-ubp5+Ev/VV8KuRoWnfP2QF2Bg+O2ZFdb49DiiNbz2VmgkIqrnyYaqIOqj8A6K/3p1xV0QcU5hBQ1+BmB6ot1OA==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "node_modules/electron/node_modules/@types/node": { @@ -8767,9 +8758,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", - "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -8952,9 +8943,9 @@ "optional": true }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" @@ -14214,9 +14205,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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "node_modules/node-stream-zip": { @@ -15211,9 +15202,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "node_modules/picomatch": { @@ -17842,9 +17833,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "funding": [ { @@ -17861,8 +17852,8 @@ } ], "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -18131,21 +18122,20 @@ "dev": true }, "node_modules/webpack": { - "version": "5.92.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.92.0.tgz", - "integrity": "sha512-Bsw2X39MYIgxouNATyVpCNVWBCuUwDgWtN78g6lSdPJRLaQ/PUVm/oXcaRAyY/sMFoKFQrsPeqvTizWtq7QPCA==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", @@ -18329,6 +18319,18 @@ "node": ">=0.10.0" } }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -21714,9 +21716,9 @@ } }, "@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "@types/istanbul-lib-coverage": { @@ -21928,148 +21930,148 @@ } }, "@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "dev": true }, "@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true }, "@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -22173,13 +22175,6 @@ "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true }, - "acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "dev": true, - "requires": {} - }, "acorn-loose": { "version": "8.4.0", "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", @@ -23435,15 +23430,15 @@ "dev": true }, "browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "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.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "bser": { @@ -23681,9 +23676,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001627", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz", - "integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "centra": { @@ -25628,9 +25623,9 @@ } }, "electron-to-chromium": { - "version": "1.4.788", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.788.tgz", - "integrity": "sha512-ubp5+Ev/VV8KuRoWnfP2QF2Bg+O2ZFdb49DiiNbz2VmgkIqrnyYaqIOqj8A6K/3p1xV0QcU5hBQ1+BmB6ot1OA==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "emoji-regex": { @@ -25746,9 +25741,9 @@ } }, "enhanced-resolve": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", - "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, "requires": { "graceful-fs": "^4.2.4", @@ -25888,9 +25883,9 @@ "optional": true }, "escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true }, "escape-html": { @@ -29865,9 +29860,9 @@ } }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "node-stream-zip": { @@ -30627,9 +30622,9 @@ } }, "picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "picomatch": { @@ -32710,13 +32705,13 @@ "dev": true }, "update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "requires": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" } }, "uri-js": { @@ -32922,21 +32917,20 @@ "dev": true }, "webpack": { - "version": "5.92.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.92.0.tgz", - "integrity": "sha512-Bsw2X39MYIgxouNATyVpCNVWBCuUwDgWtN78g6lSdPJRLaQ/PUVm/oXcaRAyY/sMFoKFQrsPeqvTizWtq7QPCA==", - "dev": true, - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", @@ -32953,6 +32947,12 @@ "webpack-sources": "^3.2.3" }, "dependencies": { + "acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", diff --git a/package.json b/package.json index e4e203a2..4642f7c3 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "codeceptjs": "^3.6.7", "cross-env": "^5.2.1", "playwright": "^1.13.0", - "webpack": "5.92.0", + "webpack": "5.97.1", "webpack-cli": "5.1.4" }, "browser": {}, From 957179290a7cc259012227a54e51317a6898d107 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 07:11:50 +0000 Subject: [PATCH 14/29] Bump cookie and @wordpress/scripts Removes [cookie](https://github.com/jshttp/cookie). It's no longer used after updating ancestor dependency [@wordpress/scripts](https://github.com/WordPress/gutenberg/tree/HEAD/packages/scripts). These dependencies need to be updated together. Removes `cookie` Updates `@wordpress/scripts` from 26.19.0 to 30.7.0 - [Release notes](https://github.com/WordPress/gutenberg/releases) - [Changelog](https://github.com/WordPress/gutenberg/blob/trunk/packages/scripts/CHANGELOG.md) - [Commits](https://github.com/WordPress/gutenberg/commits/@wordpress/scripts@30.7.0/packages/scripts) --- updated-dependencies: - dependency-name: cookie dependency-type: indirect - dependency-name: "@wordpress/scripts" dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- .../custom_twentytwenty/package-lock.json | 8930 ++++++++--------- .../themes/custom_twentytwenty/package.json | 2 +- 2 files changed, 4456 insertions(+), 4476 deletions(-) diff --git a/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json b/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json index d4e75fa5..5d61b7bd 100644 --- a/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json +++ b/tests/codeception/_data/themes/custom_twentytwenty/package-lock.json @@ -4,20 +4,14 @@ "lockfileVersion": 1, "requires": true, "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true - }, "@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, "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" } }, "@babel/code-frame": { @@ -30,27 +24,27 @@ } }, "@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.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", "dev": true }, "@babel/core": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.7.tgz", - "integrity": "sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.7.tgz", + "integrity": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==", "dev": true, "requires": { "@ampproject/remapping": "^2.2.0", - "@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.7", - "@babel/parser": "^7.23.6", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.7", - "@babel/types": "^7.23.6", + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-module-transforms": "^7.25.7", + "@babel/helpers": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/template": "^7.25.7", + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -59,49 +53,28 @@ }, "dependencies": { "@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.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" } }, "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true - }, - "@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==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } } } }, "@babel/eslint-parser": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", - "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.7.tgz", + "integrity": "sha512-B+BO9x86VYsQHimucBAL1fxTJKF4wyKY6ZVzee9QgzdZOUfs3BaR6AQrgoGrRI+7IFS1wUz/VyQ+SoBcSpdPbw==", "dev": true, "requires": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", @@ -110,112 +83,102 @@ } }, "@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", "dev": true, "requires": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" } }, "@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==", - "dev": true, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "requires": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.25.9" } }, "@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.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "@babel/helper-create-class-features-plugin": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.7.tgz", - "integrity": "sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==", - "dev": true, - "requires": { - "@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.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", "semver": "^6.3.1" } }, "@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.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", "semver": "^6.3.1" } }, "@babel/helper-define-polyfill-provider": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", - "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", + "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", "dev": true, "requires": { "@babel/helper-compilation-targets": "^7.22.6", @@ -225,138 +188,96 @@ "resolve": "^1.14.2" } }, - "@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 - }, - "@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, - "requires": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - } - }, - "@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, - "requires": { - "@babel/types": "^7.22.5" - } - }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dev": true, "requires": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dev": true, "requires": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@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.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dev": true, "requires": { - "@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.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "dependencies": { "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true } } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "dev": true, "requires": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", "dev": true }, "@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.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "dev": true, "requires": { - "@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.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@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==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" - } - }, - "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", "dev": true, "requires": { - "@babel/types": "^7.22.5" + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@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, - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "dev": true, "requires": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "dev": true }, "@babel/helper-validator-identifier": { @@ -366,31 +287,30 @@ "dev": true }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "dev": true }, "@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.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@babel/helpers": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.8.tgz", - "integrity": "sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", "dev": true, "requires": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.7", - "@babel/types": "^7.23.6" + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" } }, "@babel/highlight": { @@ -418,39 +338,61 @@ } }, "@babel/parser": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", - "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", - "dev": true + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "dev": true, + "requires": { + "@babel/types": "^7.26.3" + } + }, + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + } + }, + "@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.25.9" + } }, "@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.25.9", + "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.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dev": true, "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@babel/plugin-proposal-private-property-in-object": { @@ -514,21 +456,21 @@ } }, "@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.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-syntax-import-meta": { @@ -550,12 +492,12 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-syntax-logical-assignment-operators": { @@ -631,12 +573,12 @@ } }, "@babel/plugin-syntax-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", - "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-syntax-unicode-sets-regex": { @@ -650,658 +592,651 @@ } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-async-generator-functions": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz", - "integrity": "sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", "dev": true, "requires": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "dev": true, "requires": { - "@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-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", "globals": "^11.1.0" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.25.9" + } + }, + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "dev": true, "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "dev": true, "requires": { - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "dependencies": { "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true } } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "dev": true, "requires": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dev": true, "requires": { - "@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/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-react-constant-elements": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", - "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz", + "integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-react-display-name": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", - "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", - "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/types": "^7.23.4" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" } }, "@babel/plugin-transform-react-jsx-development": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", - "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", "dev": true, "requires": { - "@babel/plugin-transform-react-jsx": "^7.22.5" + "@babel/plugin-transform-react-jsx": "^7.25.9" } }, "@babel/plugin-transform-react-pure-annotations": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", - "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.25.9", "regenerator-transform": "^0.15.2" } }, + "@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + } + }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-runtime": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.7.tgz", - "integrity": "sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.7.tgz", + "integrity": "sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.7", - "babel-plugin-polyfill-corejs3": "^0.8.7", - "babel-plugin-polyfill-regenerator": "^0.5.4", + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/plugin-transform-typescript": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", - "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz", + "integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.23.6", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.23.3" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@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.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" } }, "@babel/preset-env": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.8.tgz", - "integrity": "sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==", - "dev": true, - "requires": { - "@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.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", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", "@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-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", "@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.7", - "@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.3", - "@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.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-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.7", - "babel-plugin-polyfill-corejs3": "^0.8.7", - "babel-plugin-polyfill-regenerator": "^0.5.4", - "core-js-compat": "^3.31.0", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", "semver": "^6.3.1" } }, @@ -1317,171 +1252,119 @@ } }, "@babel/preset-react": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", - "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-transform-react-display-name": "^7.23.3", - "@babel/plugin-transform-react-jsx": "^7.22.15", - "@babel/plugin-transform-react-jsx-development": "^7.22.5", - "@babel/plugin-transform-react-pure-annotations": "^7.23.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" } }, "@babel/preset-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", - "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-typescript": "^7.25.9" } }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, "@babel/runtime": { - "version": "7.23.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", - "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", + "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", "dev": true, "requires": { "regenerator-runtime": "^0.14.0" } }, "@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "dev": true, "requires": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" }, "dependencies": { "@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.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" } }, "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true - }, - "@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==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } } } }, "@babel/traverse": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", - "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", - "dev": true, - "requires": { - "@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.6", - "@babel/types": "^7.23.6", + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.3", "debug": "^4.3.1", "globals": "^11.1.0" }, "dependencies": { "@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.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" } }, "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true - }, - "@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==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } } } }, "@babel/types": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", - "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" }, "dependencies": { "@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==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true } } @@ -1492,10 +1375,28 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "@csstools/css-parser-algorithms": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", + "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", + "dev": true + }, + "@csstools/css-tokenizer": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", + "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", + "dev": true + }, + "@csstools/media-query-list-parser": { + "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 + }, "@csstools/selector-specificity": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", - "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", "dev": true }, "@discoveryjs/json-ext": { @@ -1504,6 +1405,12 @@ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "dev": true }, + "@dual-bundle/import-meta-resolve": { + "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 + }, "@es-joy/jsdoccomment": { "version": "0.41.0", "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz", @@ -1516,12 +1423,12 @@ } }, "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", "dev": true, "requires": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "dependencies": { "eslint-visitor-keys": { @@ -1533,9 +1440,9 @@ } }, "@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true }, "@eslint/eslintrc": { @@ -1555,6 +1462,18 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1575,9 +1494,15 @@ } }, "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "minimatch": { @@ -1592,11 +1517,102 @@ } }, "@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.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true }, + "@formatjs/ecma402-abstract": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.1.tgz", + "integrity": "sha512-Ip9uV+/MpLXWRk03U/GzeJMuPeOXpJBSB5V1tjA6kJhvqssye5J5LoYLc7Z5IAHb7nR62sRoguzrFiVCP/hnzw==", + "dev": true, + "requires": { + "@formatjs/fast-memoize": "2.2.5", + "@formatjs/intl-localematcher": "0.5.9", + "decimal.js": "10", + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } + } + }, + "@formatjs/fast-memoize": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.5.tgz", + "integrity": "sha512-6PoewUMrrcqxSoBXAOJDiW1m+AmkrAj0RiXnOMD59GRaswjXhm3MDhgepXPBgonc09oSirAJTsAggzAGQf6A6g==", + "dev": true, + "requires": { + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } + } + }, + "@formatjs/icu-messageformat-parser": { + "version": "2.9.7", + "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.9.7.tgz", + "integrity": "sha512-cuEHyRM5VqLQobANOjtjlgU7+qmk9Q3fDQuBiRRJ3+Wp3ZoZhpUPtUfuimZXsir6SaI2TaAJ+SLo9vLnV5QcbA==", + "dev": true, + "requires": { + "@formatjs/ecma402-abstract": "2.3.1", + "@formatjs/icu-skeleton-parser": "1.8.11", + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } + } + }, + "@formatjs/icu-skeleton-parser": { + "version": "1.8.11", + "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.11.tgz", + "integrity": "sha512-8LlHHE/yL/zVJZHAX3pbKaCjZKmBIO6aJY1mkVh4RMSEu/2WRZ4Ysvv3kKXJ9M8RJLBHdnk1/dUQFdod1Dt7Dw==", + "dev": true, + "requires": { + "@formatjs/ecma402-abstract": "2.3.1", + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } + } + }, + "@formatjs/intl-localematcher": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.9.tgz", + "integrity": "sha512-8zkGu/sv5euxbjfZ/xmklqLyDGQSxsLqg8XOq88JW3cmJtzhCP8EtSJXlaKZnVO4beEaoiT9wj4eIoCQ9smwxA==", + "dev": true, + "requires": { + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } + } + }, "@hapi/hoek": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", @@ -1613,13 +1629,13 @@ } }, "@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.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "dev": true, "requires": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", "minimatch": "^3.0.5" }, "dependencies": { @@ -1651,9 +1667,9 @@ "dev": true }, "@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 }, "@istanbuljs/load-nyc-config": { @@ -1684,16 +1700,6 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, - "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, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, "js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", @@ -1704,33 +1710,6 @@ "esprima": "^4.0.0" } }, - "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, - "requires": { - "p-locate": "^4.1.0" - } - }, - "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, - "requires": { - "p-try": "^2.0.0" - } - }, - "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, - "requires": { - "p-limit": "^2.2.0" - } - }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -1808,12 +1787,12 @@ "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -1921,40 +1900,22 @@ "dev": true }, "istanbul-lib-instrument": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", - "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", "istanbul-lib-coverage": "^3.2.0", "semver": "^7.5.4" } }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } @@ -2049,12 +2010,12 @@ "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -2091,48 +2052,48 @@ } }, "@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.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "dev": true, "requires": { - "@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" } }, "@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true }, "@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==", "dev": true }, "@jridgewell/source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "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, "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "@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==", "dev": true }, "@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "requires": { "@jridgewell/resolve-uri": "^3.1.0", @@ -2140,9 +2101,9 @@ } }, "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "dev": true }, "@nicolo-ribaudo/eslint-scope-5-internals": { @@ -2180,164 +2141,281 @@ "fastq": "^1.6.0" } }, + "@parcel/watcher": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", + "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "dev": true, + "optional": true, + "requires": { + "@parcel/watcher-android-arm64": "2.5.0", + "@parcel/watcher-darwin-arm64": "2.5.0", + "@parcel/watcher-darwin-x64": "2.5.0", + "@parcel/watcher-freebsd-x64": "2.5.0", + "@parcel/watcher-linux-arm-glibc": "2.5.0", + "@parcel/watcher-linux-arm-musl": "2.5.0", + "@parcel/watcher-linux-arm64-glibc": "2.5.0", + "@parcel/watcher-linux-arm64-musl": "2.5.0", + "@parcel/watcher-linux-x64-glibc": "2.5.0", + "@parcel/watcher-linux-x64-musl": "2.5.0", + "@parcel/watcher-win32-arm64": "2.5.0", + "@parcel/watcher-win32-ia32": "2.5.0", + "@parcel/watcher-win32-x64": "2.5.0", + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "dependencies": { + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "optional": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "optional": true + } + } + }, + "@parcel/watcher-android-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz", + "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==", + "dev": true, + "optional": true + }, + "@parcel/watcher-darwin-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz", + "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==", + "dev": true, + "optional": true + }, + "@parcel/watcher-darwin-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz", + "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-freebsd-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz", + "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz", + "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz", + "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz", + "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-arm64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz", + "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-x64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz", + "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==", + "dev": true, + "optional": true + }, + "@parcel/watcher-linux-x64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz", + "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz", + "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-ia32": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz", + "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==", + "dev": true, + "optional": true + }, + "@parcel/watcher-win32-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz", + "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==", + "dev": true, + "optional": true + }, + "@paulirish/trace_engine": { + "version": "0.0.32", + "resolved": "https://registry.npmjs.org/@paulirish/trace_engine/-/trace_engine-0.0.32.tgz", + "integrity": "sha512-KxWFdRNbv13U8bhYaQvH6gLG9CVEt2jKeosyOOYILVntWEVWhovbgDrbOiZ12pJO3vjZs0Zgbd3/Zgde98woEA==", + "dev": true + }, "@pkgr/core": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.0.tgz", - "integrity": "sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==", + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true }, "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", - "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz", + "integrity": "sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==", "dev": true, "requires": { - "ansi-html-community": "^0.0.8", - "common-path-prefix": "^3.0.0", + "ansi-html": "^0.0.9", "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", - "find-up": "^5.0.0", "html-entities": "^2.1.0", "loader-utils": "^2.0.4", - "schema-utils": "^3.0.0", + "schema-utils": "^4.2.0", "source-map": "^0.7.3" } }, "@polka/url": { - "version": "1.0.0-next.24", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", - "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", + "version": "1.0.0-next.28", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", "dev": true }, "@puppeteer/browsers": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", - "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.6.1.tgz", + "integrity": "sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==", "dev": true, "requires": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.0", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.1" + "debug": "^4.4.0", + "extract-zip": "^2.0.1", + "progress": "^2.0.3", + "proxy-agent": "^6.5.0", + "semver": "^7.6.3", + "tar-fs": "^3.0.6", + "unbzip2-stream": "^1.4.3", + "yargs": "^17.7.2" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true - }, - "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, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "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, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", - "dev": true, - "requires": { - "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" - } } } }, - "@sentry/core": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", - "integrity": "sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==", + "@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true + }, + "@sentry-internal/tracing": { + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.120.1.tgz", + "integrity": "sha512-MwZlhQY27oM4V05m2Q46WB2F7jqFu8fewg14yRcjCuK3tdxvQoLsXOEPMZxLxpoXPTqPCm3Ig7mA4GwdlCL41w==", "dev": true, "requires": { - "@sentry/hub": "6.19.7", - "@sentry/minimal": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" + "@sentry/core": "7.120.1", + "@sentry/types": "7.120.1", + "@sentry/utils": "7.120.1" } }, - "@sentry/hub": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", - "integrity": "sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==", + "@sentry/core": { + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.120.1.tgz", + "integrity": "sha512-tXpJlf/8ngsSCpcRD+4DDvh4TqUbY0MlvE9Mpc/jO5GgYl/goAH2H1COw6W/UNfkr/l80P2jejS0HLPk0moi0A==", "dev": true, "requires": { - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" + "@sentry/types": "7.120.1", + "@sentry/utils": "7.120.1" } }, - "@sentry/minimal": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", - "integrity": "sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==", + "@sentry/integrations": { + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.120.1.tgz", + "integrity": "sha512-dshhLZUN+pYpyZiS5QRYKaYSqvWYtmsbwmBlH4SCGOnN9sbY4nZn0h8njr+xKT8UFnPxoTlbZmkcrVY3qPVMfg==", "dev": true, "requires": { - "@sentry/hub": "6.19.7", - "@sentry/types": "6.19.7", - "tslib": "^1.9.3" + "@sentry/core": "7.120.1", + "@sentry/types": "7.120.1", + "@sentry/utils": "7.120.1", + "localforage": "^1.8.1" } }, "@sentry/node": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-6.19.7.tgz", - "integrity": "sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==", + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.120.1.tgz", + "integrity": "sha512-YF/TDUCtUOQeUMwL4vcUWGNv/8Qz9624xBnaL8nXW888xNBoSRr2vH/zMrmTup5zfmWAh9lVbp98BZFF6F0WJg==", "dev": true, "requires": { - "@sentry/core": "6.19.7", - "@sentry/hub": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "cookie": "^0.4.1", - "https-proxy-agent": "^5.0.0", - "lru_map": "^0.3.3", - "tslib": "^1.9.3" + "@sentry-internal/tracing": "7.120.1", + "@sentry/core": "7.120.1", + "@sentry/integrations": "7.120.1", + "@sentry/types": "7.120.1", + "@sentry/utils": "7.120.1" } }, "@sentry/types": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", - "integrity": "sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==", + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.120.1.tgz", + "integrity": "sha512-f/WT7YUH8SA2Jhez/hYz/dA351AJqr1Eht/URUdYsqMFecXr/blAcNKRVFccSsvQeTqWVV9HVQ9BXUSjPJOvFA==", "dev": true }, "@sentry/utils": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz", - "integrity": "sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==", + "version": "7.120.1", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.120.1.tgz", + "integrity": "sha512-4boeo5Y3zw3gFrWZmPHsYOIlTh//eBaGBgWL25FqLbLObO23gFE86G6O6knP1Gamm1DGX2IWH7w4MChYuBm6tA==", "dev": true, "requires": { - "@sentry/types": "6.19.7", - "tslib": "^1.9.3" + "@sentry/types": "7.120.1" } }, "@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, "requires": { "@hapi/hoek": "^9.0.0" @@ -2362,9 +2440,9 @@ "dev": true }, "@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "requires": { "type-detect": "4.0.8" @@ -2379,6 +2457,30 @@ "@sinonjs/commons": "^3.0.0" } }, + "@stylistic/stylelint-plugin": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@stylistic/stylelint-plugin/-/stylelint-plugin-3.1.1.tgz", + "integrity": "sha512-XagAHHIa528EvyGybv8EEYGK5zrVW74cHpsjhtovVATbhDRuJYfE+X4HCaAieW9lCkwbX6L+X0I4CiUG3w/hFw==", + "dev": true, + "requires": { + "@csstools/css-parser-algorithms": "^3.0.1", + "@csstools/css-tokenizer": "^3.0.1", + "@csstools/media-query-list-parser": "^3.0.1", + "is-plain-object": "^5.0.0", + "postcss-selector-parser": "^6.1.2", + "postcss-value-parser": "^4.2.0", + "style-search": "^0.1.0", + "stylelint": "^16.8.2" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + } + } + }, "@svgr/babel-plugin-add-jsx-attribute": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", @@ -2533,37 +2635,6 @@ "@svgr/plugin-svgo": "8.1.0" } }, - "@tannin/compile": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz", - "integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==", - "dev": true, - "requires": { - "@tannin/evaluate": "^1.2.0", - "@tannin/postfix": "^1.1.0" - } - }, - "@tannin/evaluate": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz", - "integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg==", - "dev": true - }, - "@tannin/plural-forms": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz", - "integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==", - "dev": true, - "requires": { - "@tannin/compile": "^1.1.0" - } - }, - "@tannin/postfix": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz", - "integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw==", - "dev": true - }, "@tootallnate/once": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", @@ -2615,9 +2686,9 @@ } }, "@types/babel__traverse": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", - "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, "requires": { "@babel/types": "^7.20.7" @@ -2661,10 +2732,30 @@ "@types/node": "*" } }, + "@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, "@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "@types/express": { @@ -2677,12 +2768,26 @@ "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" + }, + "dependencies": { + "@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + } } }, "@types/express-serve-static-core": { - "version": "4.17.41", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", - "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz", + "integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==", "dev": true, "requires": { "@types/node": "*", @@ -2717,9 +2822,9 @@ "dev": true }, "@types/http-proxy": { - "version": "1.17.14", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", - "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", "dev": true, "requires": { "@types/node": "*" @@ -2791,12 +2896,12 @@ "dev": true }, "@types/node": { - "version": "20.10.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.8.tgz", - "integrity": "sha512-f8nQs3cLxbAFc00vEU59yf9UyGUftkPaLGfvbVOIDdx2i1b8epBqj2aNGyP19fiyXWvlmZ7qC1XLjAzw/OKIeA==", + "version": "22.10.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz", + "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", "dev": true, "requires": { - "undici-types": "~5.26.4" + "undici-types": "~6.20.0" } }, "@types/node-forge": { @@ -2821,9 +2926,9 @@ "dev": true }, "@types/qs": { - "version": "6.9.11", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz", - "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==", + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", "dev": true }, "@types/range-parser": { @@ -2839,9 +2944,9 @@ "dev": true }, "@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 }, "@types/send": { @@ -2864,14 +2969,14 @@ } }, "@types/serve-static": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", - "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, "requires": { "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@types/node": "*", + "@types/send": "*" } }, "@types/sockjs": { @@ -2908,9 +3013,9 @@ "dev": true }, "@types/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.5.tgz", + "integrity": "sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==", "dev": true, "requires": { "source-map": "^0.6.1" @@ -2925,9 +3030,9 @@ } }, "@types/webpack": { - "version": "4.41.38", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", - "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", + "version": "4.41.40", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz", + "integrity": "sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==", "dev": true, "requires": { "@types/node": "*", @@ -2958,18 +3063,18 @@ } }, "@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", "dev": true, "requires": { "@types/node": "*" } }, "@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "dev": true, "requires": { "@types/yargs-parser": "*" @@ -2992,16 +3097,16 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.18.1.tgz", - "integrity": "sha512-nISDRYnnIpk7VCFrGcu1rnZfM1Dh9LRHnfgdkjcbi/l7g16VYRri3TjXi9Ir4lOZSw5N/gnV/3H7jIPQ8Q4daA==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", "dev": true, "requires": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.18.1", - "@typescript-eslint/type-utils": "6.18.1", - "@typescript-eslint/utils": "6.18.1", - "@typescript-eslint/visitor-keys": "6.18.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -3011,86 +3116,68 @@ }, "dependencies": { "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } }, "@typescript-eslint/parser": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.18.1.tgz", - "integrity": "sha512-zct/MdJnVaRRNy9e84XnVtRv9Vf91/qqe+hZJtKanjojud4wAVy/7lXxJmMyX6X6J+xc6c//YEWvpeif8cAhWA==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "6.18.1", - "@typescript-eslint/types": "6.18.1", - "@typescript-eslint/typescript-estree": "6.18.1", - "@typescript-eslint/visitor-keys": "6.18.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.18.1.tgz", - "integrity": "sha512-BgdBwXPFmZzaZUuw6wKiHKIovms97a7eTImjkXCZE04TGHysG+0hDQPmygyvgtkoB/aOQwSM/nWv3LzrOIQOBw==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", "dev": true, "requires": { - "@typescript-eslint/types": "6.18.1", - "@typescript-eslint/visitor-keys": "6.18.1" + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" } }, "@typescript-eslint/type-utils": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.18.1.tgz", - "integrity": "sha512-wyOSKhuzHeU/5pcRDP2G2Ndci+4g653V43gXTpt4nbyoIOAASkGDA9JIAgbQCdCkcr1MvpSYWzxTz0olCn8+/Q==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "6.18.1", - "@typescript-eslint/utils": "6.18.1", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" } }, "@typescript-eslint/types": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.18.1.tgz", - "integrity": "sha512-4TuMAe+tc5oA7wwfqMtB0Y5OrREPF1GeJBAjqwgZh1lEMH5PJQgWgHGfYufVB51LtjD+peZylmeyxUXPfENLCw==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.18.1.tgz", - "integrity": "sha512-fv9B94UAhywPRhUeeV/v+3SBDvcPiLxRZJw/xZeeGgRLQZ6rLMG+8krrJUyIf6s1ecWTzlsbp0rlw7n9sjufHA==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", "dev": true, "requires": { - "@typescript-eslint/types": "6.18.1", - "@typescript-eslint/visitor-keys": "6.18.1", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -3127,9 +3214,9 @@ } }, "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, "is-glob": { @@ -3141,22 +3228,13 @@ "is-extglob": "^2.1.1" } }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -3167,70 +3245,43 @@ "dev": true }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } }, "@typescript-eslint/utils": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.18.1.tgz", - "integrity": "sha512-zZmTuVZvD1wpoceHvoQpOiewmWu3uP9FuTWo8vqpy2ffsmfCE8mklRPi+vmnIYAIk9t/4kOThri2QCDgor+OpQ==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.18.1", - "@typescript-eslint/types": "6.18.1", - "@typescript-eslint/typescript-estree": "6.18.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", "semver": "^7.5.4" }, "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } }, "@typescript-eslint/visitor-keys": { - "version": "6.18.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.18.1.tgz", - "integrity": "sha512-/kvt0C5lRqGoCfsbmm7/CwMqoSkY3zzHLIjdhHZQW3VFrnz7ATecOHR7nb7V+xn4286MBxfnQfQhAmCI0u+bJA==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", "dev": true, "requires": { - "@typescript-eslint/types": "6.18.1", + "@typescript-eslint/types": "6.21.0", "eslint-visitor-keys": "^3.4.1" }, "dependencies": { @@ -3243,64 +3294,157 @@ } }, "@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", + "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", "dev": true }, + "@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true }, + "@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, "@webpack-cli/configtest": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", @@ -3319,85 +3463,187 @@ "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", "dev": true }, - "@wordpress/api-fetch": { - "version": "6.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.45.0.tgz", - "integrity": "sha512-87GhllJcdlxqLugQUx/hL+PE4z7Aqf+AFs8CgzN5/V7INq9IFlIjcbm5TpI4WrGVDSa2puA0tMrjhR/FWXF3NQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^4.48.0", - "@wordpress/url": "^3.49.0" - } - }, - "@wordpress/babel-plugin-import-jsx-pragma": { - "version": "4.31.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-4.31.0.tgz", - "integrity": "sha512-WlHCRCLBft3bSqE7FLB09w1gHG6QUQ7WAQpSDdcn6wRuLX45ZeMeT6YDqUdJdlYPRBx6Ke9WzrmAT7PrGLZi1Q==", - "dev": true - }, "@wordpress/babel-preset-default": { - "version": "7.32.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-7.32.0.tgz", - "integrity": "sha512-B1S+JujsX3kZWp1jnSuvUu+hlJhp9j1TSlOmar+yuVCjH0vx/aW/58onKvCFNPTy3gJ00bSsYa3BctoCHs456A==", - "dev": true, - "requires": { - "@babel/core": "^7.16.0", - "@babel/plugin-transform-react-jsx": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.0", - "@babel/preset-env": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.0", - "@wordpress/babel-plugin-import-jsx-pragma": "^4.31.0", - "@wordpress/browserslist-config": "^5.31.0", - "@wordpress/warning": "^2.48.0", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.14.0.tgz", + "integrity": "sha512-p7XtDRfuHtUjzz+k3YTqC/T2yzcgN+pFs7TFoXTZQQ/ZygmdXGzekZ10XcZc5aqJ5Kb5YvNv2jJlaBIlAYP7Qg==", + "dev": true, + "requires": { + "@babel/core": "7.25.7", + "@babel/plugin-transform-react-jsx": "7.25.7", + "@babel/plugin-transform-runtime": "7.25.7", + "@babel/preset-env": "7.25.7", + "@babel/preset-typescript": "7.25.7", + "@babel/runtime": "7.25.7", + "@wordpress/browserslist-config": "*", + "@wordpress/warning": "*", "browserslist": "^4.21.10", "core-js": "^3.31.0", - "react": "^18.2.0" - }, - "dependencies": { - "@wordpress/browserslist-config": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.31.0.tgz", - "integrity": "sha512-fjglKNuqMKfGXrxuqea8ndTLkga9MfnyBBYuniGZ7cQo3iOhOn6ZqlfKygZdAuZ19FOwQWaQ+9W9MpOtU/4oCA==", - "dev": true + "react": "^18.3.0" + }, + "dependencies": { + "@babel/plugin-transform-react-jsx": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.7.tgz", + "integrity": "sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/types": "^7.25.7" + } + }, + "@babel/preset-env": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.7.tgz", + "integrity": "sha512-Gibz4OUdyNqqLj+7OAvBZxOD7CklCtMA5/j0JgUEwOnaRULsPDXmic2iKxL2DX2vQduPR5wH2hjZas/Vr/Oc0g==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.7", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.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", + "@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.25.7", + "@babel/plugin-syntax-import-attributes": "^7.25.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", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@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.25.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.7", + "@babel/plugin-transform-async-to-generator": "^7.25.7", + "@babel/plugin-transform-block-scoped-functions": "^7.25.7", + "@babel/plugin-transform-block-scoping": "^7.25.7", + "@babel/plugin-transform-class-properties": "^7.25.7", + "@babel/plugin-transform-class-static-block": "^7.25.7", + "@babel/plugin-transform-classes": "^7.25.7", + "@babel/plugin-transform-computed-properties": "^7.25.7", + "@babel/plugin-transform-destructuring": "^7.25.7", + "@babel/plugin-transform-dotall-regex": "^7.25.7", + "@babel/plugin-transform-duplicate-keys": "^7.25.7", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.7", + "@babel/plugin-transform-dynamic-import": "^7.25.7", + "@babel/plugin-transform-exponentiation-operator": "^7.25.7", + "@babel/plugin-transform-export-namespace-from": "^7.25.7", + "@babel/plugin-transform-for-of": "^7.25.7", + "@babel/plugin-transform-function-name": "^7.25.7", + "@babel/plugin-transform-json-strings": "^7.25.7", + "@babel/plugin-transform-literals": "^7.25.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.7", + "@babel/plugin-transform-member-expression-literals": "^7.25.7", + "@babel/plugin-transform-modules-amd": "^7.25.7", + "@babel/plugin-transform-modules-commonjs": "^7.25.7", + "@babel/plugin-transform-modules-systemjs": "^7.25.7", + "@babel/plugin-transform-modules-umd": "^7.25.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.7", + "@babel/plugin-transform-new-target": "^7.25.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.7", + "@babel/plugin-transform-numeric-separator": "^7.25.7", + "@babel/plugin-transform-object-rest-spread": "^7.25.7", + "@babel/plugin-transform-object-super": "^7.25.7", + "@babel/plugin-transform-optional-catch-binding": "^7.25.7", + "@babel/plugin-transform-optional-chaining": "^7.25.7", + "@babel/plugin-transform-parameters": "^7.25.7", + "@babel/plugin-transform-private-methods": "^7.25.7", + "@babel/plugin-transform-private-property-in-object": "^7.25.7", + "@babel/plugin-transform-property-literals": "^7.25.7", + "@babel/plugin-transform-regenerator": "^7.25.7", + "@babel/plugin-transform-reserved-words": "^7.25.7", + "@babel/plugin-transform-shorthand-properties": "^7.25.7", + "@babel/plugin-transform-spread": "^7.25.7", + "@babel/plugin-transform-sticky-regex": "^7.25.7", + "@babel/plugin-transform-template-literals": "^7.25.7", + "@babel/plugin-transform-typeof-symbol": "^7.25.7", + "@babel/plugin-transform-unicode-escapes": "^7.25.7", + "@babel/plugin-transform-unicode-property-regex": "^7.25.7", + "@babel/plugin-transform-unicode-regex": "^7.25.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + } + }, + "@babel/preset-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz", + "integrity": "sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/plugin-transform-modules-commonjs": "^7.25.7", + "@babel/plugin-transform-typescript": "^7.25.7" + } + }, + "@babel/runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } }, "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "@wordpress/base-styles": { - "version": "4.39.0", - "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.39.0.tgz", - "integrity": "sha512-Obc6fKAnqzuWQSLgoce2yxhwMLd0nu4j7k3pVkBSzuitPw1LokmzHcHWPpgpMGR1T8CzKuj0Wsybcr2n3Xtyug==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.14.0.tgz", + "integrity": "sha512-VvWe/eq7g/CmICeHWjRPUkeRLEXo7TF9A7sh636KopCRkdzGtbBcNCDh7y+GusL6hF78Kfc+H6L8QUdYkMUb7A==", "dev": true }, "@wordpress/browserslist-config": { @@ -3407,47 +3653,51 @@ "dev": true }, "@wordpress/dependency-extraction-webpack-plugin": { - "version": "4.31.0", - "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-4.31.0.tgz", - "integrity": "sha512-Xpm8EEhi6e8GL1juYh/70AFbcE/ZVXJ3p47KMkkEsn5t+hG9QHjKe2lTj98v2r3rB+ampoK+whdV1w6gItXYpw==", + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.14.0.tgz", + "integrity": "sha512-gLiY07oJT5ejkQwca9kni+iamiWIKF+iadIrzfCTB+34jc8xXVT3ENmydLPcAY5toAejwJ+UmlCxCV8kXFatmA==", "dev": true, "requires": { - "json2php": "^0.0.7", - "webpack-sources": "^3.2.2" + "json2php": "^0.0.7" + }, + "dependencies": { + "json2php": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", + "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "dev": true + } } }, "@wordpress/e2e-test-utils-playwright": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.16.0.tgz", - "integrity": "sha512-CktRj5/Cc/pAvTHXIAPIMrmmnb0VjtXbTGSjYG6pW/JI2YAmpwY2yBA+DlHJjqOIpcjDDj+sSsJomRSxT2chwQ==", + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.14.0.tgz", + "integrity": "sha512-G9r3ZysgzAmUbR4bjGAEEP6P2RCIAG8uMU7yyzxOAHegINSbF3shEZKvVNBeKxNwHKAVa9koh/niGN3U4Kr6Rw==", "dev": true, "requires": { - "@wordpress/api-fetch": "^6.45.0", - "@wordpress/keycodes": "^3.48.0", - "@wordpress/url": "^3.49.0", "change-case": "^4.1.2", "form-data": "^4.0.0", "get-port": "^5.1.1", - "lighthouse": "^10.4.0", + "lighthouse": "^12.2.2", "mime": "^3.0.0", - "web-vitals": "^3.5.0" + "web-vitals": "^4.2.1" } }, "@wordpress/eslint-plugin": { - "version": "17.5.0", - "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-17.5.0.tgz", - "integrity": "sha512-wwg4NTMSdiDbkJCFNirn1Oq+Q6wKKWXXmuhsRvK4KsIkayqHavmebnE9bctAiz4ZXI5+URpj8w/IdxYev8acYw==", + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-22.0.0.tgz", + "integrity": "sha512-Hh1sO9UV0IYI7D+F6EQnhvs2HAv4H0iBVZikXZKcPmQudlwgV2OWdNprdSe8IoRmpMqmhQ+gkaj9Gwk6NReGHQ==", "dev": true, "requires": { - "@babel/eslint-parser": "^7.16.0", + "@babel/eslint-parser": "7.25.7", "@typescript-eslint/eslint-plugin": "^6.4.1", "@typescript-eslint/parser": "^6.4.1", - "@wordpress/babel-preset-default": "^7.32.0", - "@wordpress/prettier-config": "^3.5.0", + "@wordpress/babel-preset-default": "*", + "@wordpress/prettier-config": "*", "cosmiconfig": "^7.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.2", - "eslint-plugin-jest": "^27.2.3", + "eslint-plugin-jest": "^27.4.3", "eslint-plugin-jsdoc": "^46.4.6", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-playwright": "^0.15.3", @@ -3469,109 +3719,87 @@ } } }, - "@wordpress/hooks": { - "version": "3.48.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.48.0.tgz", - "integrity": "sha512-vFmjpq/XN2bYgz67BS2ZC0n4P1FZUi0UPv8PTMKK+dzCPhQRYrJb8DRhBafwu2mXRzw4rO7vmVTCNJQM6xVObQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.16.0" - } - }, - "@wordpress/i18n": { - "version": "4.48.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.48.0.tgz", - "integrity": "sha512-CEaBkh1o1lArLqSv9misdmu4hNhs15Fc1tu9t/CzVWPhm7JkkZUi/+mfdAsQmMuON4lJLZKfOjjcRIfTq9YHhA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^3.48.0", - "gettext-parser": "^1.3.1", - "memize": "^2.1.0", - "sprintf-js": "^1.1.1", - "tannin": "^1.2.0" - } - }, "@wordpress/jest-console": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.19.0.tgz", - "integrity": "sha512-x35izGNCLo7xoK770I7O/+m6sE/a9lmo6QqyDoR1AZaUwk0PAY35EGrbbi3FfXeReTXBRNJ1MpnQyvskg8o/Gw==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.14.0.tgz", + "integrity": "sha512-IFl9QJfGZegkwQ2gp26UMaQ0RL1yNj5BZsDBh3dGSkE9TTWm9ngrVms8ppHZ6EDA1v92z30VcKdB7rOmWXrk1w==", "dev": true, "requires": { - "@babel/runtime": "^7.16.0", + "@babel/runtime": "7.25.7", "jest-matcher-utils": "^29.6.2" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } + } } }, "@wordpress/jest-preset-default": { - "version": "11.19.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.19.0.tgz", - "integrity": "sha512-9BbUDZaa6Cg9dz+JyfOe30C8JJrhCkyaFqCqSNJEcyB4KK83qp2QRkblVXABmHarw4oPfg+OJLLALIAA045a0w==", - "dev": true, - "requires": { - "@wordpress/jest-console": "^7.19.0", - "babel-jest": "^29.6.2" - } - }, - "@wordpress/keycodes": { - "version": "3.48.0", - "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.48.0.tgz", - "integrity": "sha512-VhNsfx5h1haKafyiXNW8o+goVLq2mLNhZUTwk3qc07dLfwW/kg6h2zrdWyYYJzRb2UhLd+DXbBcvukRnFUm3Aw==", + "version": "12.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.14.0.tgz", + "integrity": "sha512-YYfJ+hafo9/wMRBWhHt95eeUU1T6iptdHwfhpn6ZLtxFkq5YtNolgOLT7e7hdjsg+rS49gKBclDI80i/r0DFeA==", "dev": true, "requires": { - "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^4.48.0" + "@wordpress/jest-console": "*", + "babel-jest": "29.7.0" } }, "@wordpress/npm-package-json-lint-config": { - "version": "4.33.0", - "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.33.0.tgz", - "integrity": "sha512-GBVGcn6xAqrWQueSlMVMHoebGsHvildWwcJ/lIpxh7i7V/VBoc9Z8rdUEKAip6lTjZx+mCmzXQH4hU3QdNA/RA==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.14.0.tgz", + "integrity": "sha512-URZoTCrOfDEH1eo4yND0ASJAi73facDy2DKQmuHQXO07I98stoHAxXr7WCZJh3DatOaOR0QdlteiCAiMf8YBVA==", "dev": true }, "@wordpress/postcss-plugins-preset": { - "version": "4.32.0", - "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.32.0.tgz", - "integrity": "sha512-+4+chYW8pRd7Irzm8lXom5Axs765q4me1mT+FBskfotUroAvoJtmfAybmyhIvTirTwLaN7ugOYiSBjAD6M7+rg==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.14.0.tgz", + "integrity": "sha512-K9Ob4ILtvVyWKbXDZuFvAgyZbCoFVYxrv1HaEx+ir6Ct6Tdltuv9e9WzH0mOfhFi5IDR72gmOFllhjzo7FCmaw==", "dev": true, "requires": { - "@wordpress/base-styles": "^4.39.0", + "@wordpress/base-styles": "*", "autoprefixer": "^10.2.5" } }, "@wordpress/prettier-config": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-3.5.0.tgz", - "integrity": "sha512-Nzp6TWu+nx1fzgqqa34/MdBiRDT/Yoqo8jFHBrYhx1kV3BPg8m5lvyGxNmzqoR3hZQatGkBJYdFlLs0WeAGGDQ==", + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.14.0.tgz", + "integrity": "sha512-DZuASK64Jr8ycj9uaSlwsTURiaQ0sgQnu9ThgSK196jcDF1jxTll8JGoVIXgxhKgo3mFFjdtkNeBZ38DT5z6/g==", "dev": true }, "@wordpress/scripts": { - "version": "26.19.0", - "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-26.19.0.tgz", - "integrity": "sha512-m3QYlgpWRfIqCfU4jWKwGeA12Qkt6d9CMewEIxIBGVlEGd/sL5rU1fM7LKNBEbSPQpaOTWJApNGWPcW75Fwp+w==", + "version": "30.7.0", + "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-30.7.0.tgz", + "integrity": "sha512-vwrf6Xo1GXV2ug4xdYMgZ2CVpNNfArOEJyX6w9CafIRmLOm8GkVGSza0VlEoOh1BTqQPv/awq6uiOKVMbVNB5Q==", "dev": true, "requires": { - "@babel/core": "^7.16.0", + "@babel/core": "7.25.7", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", "@svgr/webpack": "^8.0.1", - "@wordpress/babel-preset-default": "^7.32.0", - "@wordpress/browserslist-config": "^5.31.0", - "@wordpress/dependency-extraction-webpack-plugin": "^4.31.0", - "@wordpress/e2e-test-utils-playwright": "^0.16.0", - "@wordpress/eslint-plugin": "^17.5.0", - "@wordpress/jest-preset-default": "^11.19.0", - "@wordpress/npm-package-json-lint-config": "^4.33.0", - "@wordpress/postcss-plugins-preset": "^4.32.0", - "@wordpress/prettier-config": "^3.5.0", - "@wordpress/stylelint-config": "^21.31.0", + "@wordpress/babel-preset-default": "*", + "@wordpress/browserslist-config": "*", + "@wordpress/dependency-extraction-webpack-plugin": "*", + "@wordpress/e2e-test-utils-playwright": "*", + "@wordpress/eslint-plugin": "*", + "@wordpress/jest-preset-default": "*", + "@wordpress/npm-package-json-lint-config": "*", + "@wordpress/postcss-plugins-preset": "*", + "@wordpress/prettier-config": "*", + "@wordpress/stylelint-config": "*", "adm-zip": "^0.5.9", - "babel-jest": "^29.6.2", - "babel-loader": "^8.2.3", + "babel-jest": "29.7.0", + "babel-loader": "9.2.1", "browserslist": "^4.21.10", "chalk": "^4.0.0", "check-node-version": "^4.1.0", "clean-webpack-plugin": "^3.0.0", "copy-webpack-plugin": "^10.2.0", - "cross-spawn": "^5.1.0", + "cross-spawn": "^7.0.6", "css-loader": "^6.2.0", "cssnano": "^6.0.1", "cwd": "^0.10.0", @@ -3581,63 +3809,59 @@ "fast-glob": "^3.2.7", "filenamify": "^4.2.0", "jest": "^29.6.2", - "jest-dev-server": "^9.0.1", + "jest-dev-server": "^10.1.4", "jest-environment-jsdom": "^29.6.2", "jest-environment-node": "^29.6.2", + "json2php": "^0.0.9", "markdownlint-cli": "^0.31.1", "merge-deep": "^3.0.3", - "mini-css-extract-plugin": "^2.5.1", + "mini-css-extract-plugin": "^2.9.2", "minimist": "^1.2.0", "npm-package-json-lint": "^6.4.0", "npm-packlist": "^3.0.0", - "playwright-core": "1.39.0", "postcss": "^8.4.5", "postcss-loader": "^6.2.1", "prettier": "npm:wp-prettier@3.0.3", - "puppeteer-core": "^13.2.0", + "puppeteer-core": "^23.10.1", "react-refresh": "^0.14.0", "read-pkg-up": "^7.0.1", "resolve-bin": "^0.4.0", - "sass": "^1.35.2", - "sass-loader": "^12.1.0", + "rtlcss-webpack-plugin": "^4.0.7", + "sass": "^1.50.1", + "sass-loader": "^16.0.3", + "schema-utils": "^4.2.0", "source-map-loader": "^3.0.0", - "stylelint": "^14.2.0", - "terser-webpack-plugin": "^5.3.9", + "stylelint": "^16.8.2", + "terser-webpack-plugin": "^5.3.10", "url-loader": "^4.1.1", - "webpack": "^5.88.2", + "webpack": "^5.97.0", "webpack-bundle-analyzer": "^4.9.1", "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1" }, "dependencies": { - "@wordpress/browserslist-config": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.31.0.tgz", - "integrity": "sha512-fjglKNuqMKfGXrxuqea8ndTLkga9MfnyBBYuniGZ7cQo3iOhOn6ZqlfKygZdAuZ19FOwQWaQ+9W9MpOtU/4oCA==", - "dev": true - }, "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "fast-glob": { @@ -3654,19 +3878,19 @@ } }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "picomatch": { @@ -3678,29 +3902,20 @@ } }, "@wordpress/stylelint-config": { - "version": "21.31.0", - "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.31.0.tgz", - "integrity": "sha512-rorpVMYfFaNWYzg4psfUMpWLkxhD3uwWip6mf96mo/i8De4wxAz6DwKlCPIa4j74SLTiIMrdwXb2qJFNQcjQng==", - "dev": true, - "requires": { - "stylelint-config-recommended": "^6.0.0", - "stylelint-config-recommended-scss": "^5.0.2" - } - }, - "@wordpress/url": { - "version": "3.49.0", - "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.49.0.tgz", - "integrity": "sha512-AARE9FMGEf3bf/EKb+OhFivgps38s5fRGFMqeHImP8JvKAt6xc7Q6IrpFOTXkI2BOWA4ERK//PAygR8PR5bgVA==", + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-23.6.0.tgz", + "integrity": "sha512-vi0Uz/CFt3FHWpXpVFTulSWdHRa3WaiCo1qX58cG3Z31bs1bgqUT3pOpW/4pfLQACdYZS8YpOKRidbFSmfc6og==", "dev": true, "requires": { - "@babel/runtime": "^7.16.0", - "remove-accents": "^0.5.0" + "@stylistic/stylelint-plugin": "^3.0.1", + "stylelint-config-recommended": "^14.0.1", + "stylelint-config-recommended-scss": "^14.1.0" } }, "@wordpress/warning": { - "version": "2.48.0", - "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.48.0.tgz", - "integrity": "sha512-M8KB8OdxHHxLDPy/1DuSi4SKYrR4/LL2jLWS9GkTa0eSe7PKxIscXH3Q0giFwcREkz80J0rFuADCInCuyIr5Kg==", + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.14.0.tgz", + "integrity": "sha512-Jt9OIE0W9121HUDZXBSgqPXF93OZ9C+5ubUnMlG9ResJGMHa/1ABY2Wnc5vQRm5LE6d7/y2ySq3D/6+NoJHDjw==", "dev": true }, "@xtuc/ieee754": { @@ -3729,12 +3944,20 @@ "requires": { "mime-types": "~2.1.34", "negotiator": "0.6.3" + }, + "dependencies": { + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + } } }, "acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true }, "acorn-globals": { @@ -3747,12 +3970,6 @@ "acorn-walk": "^8.0.2" } }, - "acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "dev": true - }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -3760,36 +3977,36 @@ "dev": true }, "acorn-walk": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", - "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", - "dev": true + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "requires": { + "acorn": "^8.11.0" + } }, "adm-zip": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", - "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.16.tgz", + "integrity": "sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==", "dev": true }, "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "dev": true }, "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" } }, "ajv-errors": { @@ -3805,33 +4022,16 @@ "dev": true, "requires": { "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } } }, "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } }, "ansi-colors": { "version": "4.1.3", @@ -3856,10 +4056,10 @@ } } }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", "dev": true }, "ansi-regex": { @@ -3900,13 +4100,10 @@ "dev": true }, "aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "requires": { - "dequal": "^2.0.3" - } + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true }, "arr-union": { "version": "3.1.0", @@ -3915,13 +4112,13 @@ "dev": true }, "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, "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" } }, "array-flatten": { @@ -3931,15 +4128,16 @@ "dev": true }, "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, "requires": { - "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" } }, @@ -3955,17 +4153,32 @@ "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", "dev": true }, + "array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "requires": { + "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" + } + }, "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, "requires": { - "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" } }, "array.prototype.flat": { @@ -3993,30 +4206,31 @@ } }, "array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, "requires": { - "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.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" } }, "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, "requires": { - "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" } }, @@ -4036,9 +4250,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -4055,15 +4269,6 @@ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true }, - "asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.3" - } - }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -4099,21 +4304,24 @@ } }, "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==", - "dev": true + "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, + "requires": { + "possible-typed-array-names": "^1.0.0" + } }, "axe-core": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", - "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz", + "integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==", "dev": true }, "axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", + "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", "dev": true, "requires": { "follow-redirects": "^1.15.6", @@ -4122,18 +4330,15 @@ } }, "axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dev": true, - "requires": { - "dequal": "^2.0.3" - } + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true }, "b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", "dev": true }, "babel-jest": { @@ -4160,28 +4365,13 @@ } }, "babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "dev": true, "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" } }, "babel-plugin-istanbul": { @@ -4210,53 +4400,56 @@ } }, "babel-plugin-polyfill-corejs2": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", - "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", + "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", "dev": true, "requires": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.4", + "@babel/helper-define-polyfill-provider": "^0.6.3", "semver": "^6.3.1" } }, "babel-plugin-polyfill-corejs3": { - "version": "0.8.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", - "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", + "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, "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.4", - "core-js-compat": "^3.33.1" + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" } }, "babel-plugin-polyfill-regenerator": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", - "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", + "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.4" + "@babel/helper-define-polyfill-provider": "^0.6.3" } }, "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "dev": true, "requires": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@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.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" } }, "babel-preset-jest": { @@ -4269,12 +4462,82 @@ "babel-preset-current-node-syntax": "^1.0.0" } }, + "babel-runtime": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz", + "integrity": "sha512-zeCYxDePWYAT/DfmQWIHsMSFW2vv45UIwIAMjGvQVsTd47RwsiRH0uK1yzyWZ7LDBKdhnGDPM6NYEO5CZyhPrg==", + "dev": true, + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.10.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "dev": true + }, + "regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", + "dev": true + } + } + }, "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 }, + "bare-events": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", + "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", + "dev": true, + "optional": true + }, + "bare-fs": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", + "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", + "dev": true, + "optional": true, + "requires": { + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^2.0.0" + } + }, + "bare-os": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", + "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", + "dev": true, + "optional": true + }, + "bare-path": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", + "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", + "dev": true, + "optional": true, + "requires": { + "bare-os": "^2.1.0" + } + }, + "bare-stream": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.5.2.tgz", + "integrity": "sha512-QK6bePvszntxgPKdVXciYzjlWv2Ry1mQuUqyUUzd27G7eLupl6d0K5AGJfnfyFAdgy5tRolHP/zbaUMslLceOg==", + "dev": true, + "optional": true, + "requires": { + "streamx": "^2.21.0" + } + }, "base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -4282,9 +4545,9 @@ "dev": true }, "basic-ftp": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz", - "integrity": "sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", "dev": true }, "batch": { @@ -4305,17 +4568,6 @@ "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, "body-parser": { "version": "1.20.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", @@ -4336,25 +4588,6 @@ "unpipe": "1.0.0" }, "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, - "call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - } - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4364,45 +4597,6 @@ "ms": "2.0.0" } }, - "define-data-property": { - "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, - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - } - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - } - }, - "has-property-descriptors": { - "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, - "requires": { - "es-define-property": "^1.0.0" - } - }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -4417,48 +4611,13 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "dev": true, - "requires": { - "side-channel": "^1.0.6" - } - }, - "set-function-length": { - "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, - "requires": { - "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.2" - } - }, - "side-channel": { - "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, - "requires": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - } } } }, "bonjour-service": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", - "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "dev": true, "requires": { "fast-deep-equal": "^3.1.3", @@ -4558,56 +4717,32 @@ "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "dev": true }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "requires": { - "semver": "^7.0.0" - }, - "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true }, "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.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, "requires": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + } + }, + "call-bind-apply-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "dependencies": { "function-bind": { @@ -4618,6 +4753,16 @@ } } }, + "call-bound": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.2.tgz", + "integrity": "sha512-0lk0PHFe/uz0vl527fG9CgdE9WdafjDbCXvBbs+LUv000TVt2Jjhqbs4Jwm8gz070w8xXyEAxrPOMullsxXeGg==", + "dev": true, + "requires": { + "call-bind": "^1.0.8", + "get-intrinsic": "^1.2.5" + } + }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -4635,9 +4780,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -4697,9 +4842,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -4776,9 +4921,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -4870,22 +5015,16 @@ "readdirp": "~3.5.0" } }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, "chrome-launcher": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", - "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-1.1.2.tgz", + "integrity": "sha512-YclTJey34KUm5jB1aEJCq807bSievi7Nb/TU4Gu504fUYi3jw3KCIaH6L7nFWQhdEgH3V+wCh+kKD1P5cXnfxw==", "dev": true, "requires": { "@types/node": "*", "escape-string-regexp": "^4.0.0", "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" + "lighthouse-logger": "^2.0.1" }, "dependencies": { "escape-string-regexp": { @@ -4897,18 +5036,20 @@ } }, "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true }, "chromium-bidi": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", - "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.8.0.tgz", + "integrity": "sha512-uJydbGdTw0DEUjhoogGveneJVWX/9YuqkWePzMmkBYwtdAqo5d3J/ovNKFr+/2hWXYmYCr6it8mSSTIj6SS6Ug==", "dev": true, "requires": { - "mitt": "3.0.0" + "mitt": "3.0.1", + "urlpattern-polyfill": "10.0.0", + "zod": "3.23.8" } }, "ci-info": { @@ -4918,9 +5059,9 @@ "dev": true }, "cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", + "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", "dev": true }, "clean-webpack-plugin": { @@ -4972,6 +5113,26 @@ "kind-of": "^3.0.2", "lazy-cache": "^1.0.3", "shallow-clone": "^0.1.2" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "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==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "co": { @@ -5040,12 +5201,6 @@ "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, "compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -5056,17 +5211,17 @@ } }, "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", "dev": true, "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", + "negotiator": "~0.6.4", "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "dependencies": { @@ -5084,12 +5239,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true } } }, @@ -5256,9 +5405,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -5285,9 +5434,9 @@ "dev": true }, "cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true }, "cookie-signature": { @@ -5310,27 +5459,6 @@ "serialize-javascript": "^6.0.0" }, "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, "array-union": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", @@ -5396,24 +5524,18 @@ } }, "ignore": { - "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 - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -5423,18 +5545,6 @@ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } - }, "slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", @@ -5444,56 +5554,56 @@ } }, "core-js": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.0.tgz", - "integrity": "sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz", + "integrity": "sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==", "dev": true }, "core-js-compat": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.0.tgz", - "integrity": "sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", "dev": true, "requires": { - "browserslist": "^4.22.2" + "browserslist": "^4.24.2" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "core-js-pure": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.35.0.tgz", - "integrity": "sha512-f+eRYmkou59uh7BPcyJ8MC76DiGhspj1KMxVIcF24tzP8NA9HVa1uC7BTW2tgx7E1QVCzDzsgp7kArrzhlz8Ew==", + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz", + "integrity": "sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==", "dev": true }, "core-util-is": { @@ -5538,41 +5648,25 @@ } } }, - "cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dev": true, - "requires": { - "node-fetch": "^2.6.12" - } - }, "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "dependencies": { - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "isexe": "^2.0.0" } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true } } }, @@ -5589,40 +5683,54 @@ "dev": true }, "css-declaration-sorter": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", - "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", "dev": true }, "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.3", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz", + "integrity": "sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==", "dev": true }, "css-loader": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.9.0.tgz", - "integrity": "sha512-3I5Nu4ytWlHvOP6zItjiHlefBNtrH+oehq8tnQa2kO305qpVyx9XNIT1CXIj5bgCJs7qICBCkgCYxQLKPANoLA==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "dev": true, "requires": { "icss-utils": "^5.1.0", - "postcss": "^8.4.31", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.3", - "postcss-modules-scope": "^3.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", "semver": "^7.5.4" }, "dependencies": { - "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==", + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", "dev": true, "requires": { - "yallist": "^4.0.0" + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" } }, "postcss-value-parser": { @@ -5632,18 +5740,9 @@ "dev": true }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } @@ -5684,56 +5783,89 @@ "dev": true }, "cssnano": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", - "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", + "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", "dev": true, "requires": { - "cssnano-preset-default": "^6.0.3", - "lilconfig": "^3.0.0" + "cssnano-preset-default": "^6.1.2", + "lilconfig": "^3.1.1" } }, "cssnano-preset-default": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", - "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", + "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", "dev": true, "requires": { - "css-declaration-sorter": "^7.1.1", - "cssnano-utils": "^4.0.1", + "browserslist": "^4.23.0", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^4.0.2", "postcss-calc": "^9.0.1", - "postcss-colormin": "^6.0.2", - "postcss-convert-values": "^6.0.2", - "postcss-discard-comments": "^6.0.1", - "postcss-discard-duplicates": "^6.0.1", - "postcss-discard-empty": "^6.0.1", - "postcss-discard-overridden": "^6.0.1", - "postcss-merge-longhand": "^6.0.2", - "postcss-merge-rules": "^6.0.3", - "postcss-minify-font-values": "^6.0.1", - "postcss-minify-gradients": "^6.0.1", - "postcss-minify-params": "^6.0.2", - "postcss-minify-selectors": "^6.0.2", - "postcss-normalize-charset": "^6.0.1", - "postcss-normalize-display-values": "^6.0.1", - "postcss-normalize-positions": "^6.0.1", - "postcss-normalize-repeat-style": "^6.0.1", - "postcss-normalize-string": "^6.0.1", - "postcss-normalize-timing-functions": "^6.0.1", - "postcss-normalize-unicode": "^6.0.2", - "postcss-normalize-url": "^6.0.1", - "postcss-normalize-whitespace": "^6.0.1", - "postcss-ordered-values": "^6.0.1", - "postcss-reduce-initial": "^6.0.2", - "postcss-reduce-transforms": "^6.0.1", - "postcss-svgo": "^6.0.2", - "postcss-unique-selectors": "^6.0.2" + "postcss-colormin": "^6.1.0", + "postcss-convert-values": "^6.1.0", + "postcss-discard-comments": "^6.0.2", + "postcss-discard-duplicates": "^6.0.3", + "postcss-discard-empty": "^6.0.3", + "postcss-discard-overridden": "^6.0.2", + "postcss-merge-longhand": "^6.0.5", + "postcss-merge-rules": "^6.1.1", + "postcss-minify-font-values": "^6.1.0", + "postcss-minify-gradients": "^6.0.3", + "postcss-minify-params": "^6.1.0", + "postcss-minify-selectors": "^6.0.4", + "postcss-normalize-charset": "^6.0.2", + "postcss-normalize-display-values": "^6.0.2", + "postcss-normalize-positions": "^6.0.2", + "postcss-normalize-repeat-style": "^6.0.2", + "postcss-normalize-string": "^6.0.2", + "postcss-normalize-timing-functions": "^6.0.2", + "postcss-normalize-unicode": "^6.1.0", + "postcss-normalize-url": "^6.0.2", + "postcss-normalize-whitespace": "^6.0.2", + "postcss-ordered-values": "^6.0.2", + "postcss-reduce-initial": "^6.1.0", + "postcss-reduce-transforms": "^6.0.2", + "postcss-svgo": "^6.0.3", + "postcss-unique-selectors": "^6.0.4" + }, + "dependencies": { + "browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + } + }, + "caniuse-lite": { + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", + "dev": true + }, + "node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true + } } }, "cssnano-utils": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", - "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", + "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", "dev": true }, "csso": { @@ -5803,9 +5935,9 @@ "dev": true }, "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==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", "dev": true }, "data-urls": { @@ -5817,33 +5949,39 @@ "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0" - }, - "dependencies": { - "tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, - "webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true - }, - "whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, - "requires": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - } - } + } + }, + "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, + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "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, + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "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, + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" } }, "date-fns": { @@ -5859,12 +5997,12 @@ "dev": true }, "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "requires": { - "ms": "2.1.2" + "ms": "^2.1.3" } }, "decamelize": { @@ -5898,9 +6036,9 @@ "dev": true }, "dedent": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true }, "deep-extend": { @@ -5931,14 +6069,14 @@ } }, "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, "requires": { - "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" } }, "define-lazy-prop": { @@ -6040,18 +6178,19 @@ "integrity": "sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==", "dev": true }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true - }, "destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "optional": true + }, "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -6065,9 +6204,9 @@ "dev": true }, "devtools-protocol": { - "version": "0.0.1155343", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1155343.tgz", - "integrity": "sha512-oD9vGBV2wTc7fAzAM6KC0chSgs234V8+qDEeK+mcbRj2UvcuA7lgBztGi/opj/iahcXD3BSj8Ymvib628yy9FA==", + "version": "0.0.1312386", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1312386.tgz", + "integrity": "sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA==", "dev": true }, "diff-sequences": { @@ -6127,14 +6266,6 @@ "dev": true, "requires": { "webidl-conversions": "^7.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true - } } }, "domhandler": { @@ -6168,9 +6299,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -6184,6 +6315,17 @@ "is-obj": "^2.0.0" } }, + "dunder-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.0.tgz", + "integrity": "sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==", + "dev": true, + "requires": { + "call-bind-apply-helpers": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, "duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", @@ -6220,14 +6362,11 @@ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "requires": { - "iconv-lite": "^0.6.2" - } + "encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true }, "end-of-stream": { "version": "1.4.4", @@ -6235,7 +6374,17 @@ "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "requires": { - "once": "^1.4.0" + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" } }, "enquirer": { @@ -6271,10 +6420,16 @@ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, "envinfo": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", - "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", "dev": true }, "error-ex": { @@ -6296,59 +6451,92 @@ } }, "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, - "requires": { - "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.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.5.tgz", + "integrity": "sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==", + "dev": true, + "requires": { + "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", - "globalthis": "^1.0.3", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.4", "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-inspect": "^1.13.3", "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.3", + "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" } }, "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==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true + }, + "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 + }, + "es-iterator-helpers": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.0.tgz", + "integrity": "sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==", "dev": true, "requires": { - "get-intrinsic": "^1.2.4" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.3", + "safe-array-concat": "^1.1.2" }, "dependencies": { "function-bind": { @@ -6356,65 +6544,33 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true - }, - "get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - } } } }, - "es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "dev": true }, - "es-iterator-helpers": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", - "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "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, "requires": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.0.1" + "es-errors": "^1.3.0" } }, - "es-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", - "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", - "dev": true - }, "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, "requires": { - "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" } }, "es-shim-unscopables": { @@ -6427,14 +6583,14 @@ } }, "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dev": true, "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" } }, "escalade": { @@ -6477,16 +6633,16 @@ } }, "eslint": { - "version": "8.56.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", - "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "dev": true, "requires": { "@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.1", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -6548,6 +6704,18 @@ "fastq": "^1.6.0" } }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -6564,17 +6732,6 @@ "concat-map": "0.0.1" } }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -6606,6 +6763,36 @@ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, "glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -6636,9 +6823,9 @@ } }, "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, "is-path-inside": { @@ -6647,6 +6834,21 @@ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -6656,20 +6858,32 @@ "brace-expansion": "^1.1.7" } }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "requires": { - "shebang-regex": "^3.0.0" + "yocto-queue": "^0.1.0" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } }, "strip-ansi": { "version": "6.0.1", @@ -6679,15 +6893,6 @@ "requires": { "ansi-regex": "^5.0.1" } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } } } }, @@ -6718,12 +6923,12 @@ } }, "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==", "dev": true, "requires": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" } }, "resolve": { @@ -6740,9 +6945,9 @@ } }, "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.12.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", + "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, "requires": { "debug": "^3.2.7" @@ -6760,27 +6965,29 @@ } }, "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.31.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", + "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", "dev": true, "requires": { - "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.12.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", + "string.prototype.trimend": "^1.0.8", "tsconfig-paths": "^3.15.0" }, "dependencies": { @@ -6804,12 +7011,12 @@ } }, "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==", "dev": true, "requires": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" } }, "is-glob": { @@ -6833,9 +7040,9 @@ } }, "eslint-plugin-jest": { - "version": "27.6.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.2.tgz", - "integrity": "sha512-CI1AlKrsNhYFoP48VU8BVWOi7+qHTq4bRxyUlGjeU8SfFt8abjXhjOuDzUoMp68DoXIx17KpNpIkMrl4s4ZW0g==", + "version": "27.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.9.0.tgz", + "integrity": "sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==", "dev": true, "requires": { "@typescript-eslint/utils": "^5.10.0" @@ -6932,9 +7139,9 @@ } }, "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true }, "is-glob": { @@ -6946,22 +7153,13 @@ "is-extglob": "^2.1.1" } }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -6972,18 +7170,9 @@ "dev": true }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } @@ -7011,23 +7200,11 @@ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true }, "spdx-expression-parse": { "version": "4.0.0", @@ -7038,45 +7215,32 @@ "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, "eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", "dev": true, "requires": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", "array.prototype.flatmap": "^1.3.2", "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", + "hasown": "^2.0.2", "jsx-ast-utils": "^3.3.5", "language-tags": "^1.0.9", "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" }, "dependencies": { - "axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -7111,37 +7275,39 @@ "dev": true }, "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, "requires": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.6" + "synckit": "^0.9.1" } }, "eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "version": "7.37.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz", + "integrity": "sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==", "dev": true, "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.tosorted": "^1.1.4", "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", + "es-iterator-helpers": "^1.1.0", "estraverse": "^5.3.0", + "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.0", "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", + "resolve": "^2.0.0-next.5", "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" }, "dependencies": { "brace-expansion": { @@ -7155,12 +7321,12 @@ } }, "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==", "dev": true, "requires": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" } }, "minimatch": { @@ -7186,9 +7352,9 @@ } }, "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", "dev": true }, "eslint-scope": { @@ -7241,9 +7407,9 @@ "dev": true }, "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "requires": { "estraverse": "^5.1.0" @@ -7305,46 +7471,11 @@ "strip-final-newline": "^2.0.0" }, "dependencies": { - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, "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 - }, - "shebang-command": { - "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, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } } } }, @@ -7383,9 +7514,9 @@ "dev": true }, "express": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", - "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "dev": true, "requires": { "accepts": "~1.3.8", @@ -7405,215 +7536,36 @@ "http-errors": "2.0.0", "merge-descriptors": "1.0.3", "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - } - }, - "cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-data-property": { - "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, - "requires": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - } - }, - "encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true - }, - "finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - } - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true - }, - "get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - } - }, - "has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "es-define-property": "^1.0.0" + "ms": "2.0.0" } }, - "merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", - "dev": true - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", - "dev": true - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "dev": true, - "requires": { - "side-channel": "^1.0.6" - } - }, - "send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "dev": true, - "requires": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" - } - }, - "set-function-length": { - "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, - "requires": { - "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.2" - } - }, - "side-channel": { - "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, - "requires": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" - } } } }, @@ -7673,6 +7625,12 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "fast-uri": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", + "dev": true + }, "fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", @@ -7716,12 +7674,12 @@ } }, "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "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, "requires": { - "flat-cache": "^3.0.4" + "flat-cache": "^5.0.0" } }, "filename-reserved-regex": { @@ -7741,15 +7699,46 @@ "trim-repeated": "^1.0.0" } }, + "finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" } }, "find-file-up": { @@ -7797,12 +7786,12 @@ } }, "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { - "locate-path": "^6.0.0", + "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }, @@ -7813,37 +7802,25 @@ "dev": true }, "flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "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, "requires": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "dependencies": { - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } + "flatted": "^3.3.1", + "keyv": "^4.5.4" } }, "flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true }, "follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true }, "for-each": { @@ -7871,9 +7848,9 @@ } }, "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", "dev": true, "requires": { "asynckit": "^0.4.0", @@ -7899,12 +7876,6 @@ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, "fs-exists-sync": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", @@ -7932,9 +7903,9 @@ } }, "fs-monkey": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", - "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", "dev": true }, "fs.realpath": { @@ -7987,15 +7958,21 @@ "dev": true }, "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.6", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz", + "integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==", "dev": true, "requires": { + "call-bind-apply-helpers": "^1.0.1", + "dunder-proto": "^1.0.0", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.0.0" }, "dependencies": { "function-bind": { @@ -8034,57 +8011,25 @@ } }, "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, "requires": { - "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" } }, "get-uri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", - "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz", + "integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==", "dev": true, "requires": { "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.0", - "debug": "^4.3.4", - "fs-extra": "^8.1.0" - }, - "dependencies": { - "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==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - } - } - }, - "gettext-parser": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz", - "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==", - "dev": true, - "requires": { - "encoding": "^0.1.12", - "safe-buffer": "^5.1.1" + "data-uri-to-buffer": "^6.0.2", + "debug": "^4.3.4" } }, "glob": { @@ -8138,25 +8083,23 @@ "dev": true }, "global-modules": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", - "integrity": "sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { - "global-prefix": "^0.1.4", - "is-windows": "^0.2.0" + "global-prefix": "^3.0.0" } }, "global-prefix": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", - "integrity": "sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "requires": { - "homedir-polyfill": "^1.0.0", - "ini": "^1.3.4", - "is-windows": "^0.2.0", - "which": "^1.2.12" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" } }, "globals": { @@ -8166,12 +8109,13 @@ "dev": true }, "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, "requires": { - "define-properties": "^1.1.3" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" } }, "globby": { @@ -8195,13 +8139,10 @@ "dev": true }, "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true }, "graceful-fs": { "version": "4.2.6", @@ -8258,39 +8199,42 @@ "dev": true }, "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, "requires": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" } }, "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==", - "dev": true + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "requires": { + "dunder-proto": "^1.0.0" + } }, "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true }, "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, "requires": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" } }, "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==", "dev": true, "requires": { "function-bind": "^1.1.2" @@ -8315,9 +8259,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -8375,15 +8319,6 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } } } }, @@ -8397,9 +8332,9 @@ } }, "html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", "dev": true }, "html-escaper": { @@ -8434,9 +8369,9 @@ } }, "http-link-header": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.1.tgz", - "integrity": "sha512-mW3N/rTYpCn99s1do0zx6nzFZSwLH9HGfUM4ZqLWJ16ylmYaC2v5eYGqrNTQlByx8AzUgGI+V/32gXPugs1+Sw==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.3.tgz", + "integrity": "sha512-3cZ0SRL8fb9MUlU3mKM61FcQvPfXx2dBrZW3Vbg5CXa8jFlK8OaEpePenLe1oEXQduhz8b0QjsqfS59QP4AJDQ==", "dev": true }, "http-parser-js": { @@ -8457,30 +8392,19 @@ } }, "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==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "requires": { "agent-base": "^7.1.0", "debug": "^4.3.4" - }, - "dependencies": { - "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==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - } } }, "http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", + "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "dev": true, "requires": { "@types/http-proxy": "^1.17.8", @@ -8491,12 +8415,12 @@ } }, "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, "requires": { - "agent-base": "6", + "agent-base": "^7.1.2", "debug": "4" } }, @@ -8569,10 +8493,16 @@ "integrity": "sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==", "dev": true }, + "immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true + }, "immutable": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", - "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", "dev": true }, "import-fresh": { @@ -8585,20 +8515,25 @@ "resolve-from": "^4.0.0" } }, - "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 - }, "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "requires": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "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, + "requires": { + "find-up": "^4.0.0" + } + } } }, "imurmurhash": { @@ -8636,12 +8571,12 @@ "dev": true }, "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, "requires": { - "get-intrinsic": "^1.2.2", + "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" } @@ -8653,30 +8588,39 @@ "dev": true }, "intl-messageformat": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-4.4.0.tgz", - "integrity": "sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==", + "version": "10.7.10", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.10.tgz", + "integrity": "sha512-hp7iejCBiJdW3zmOe18FdlJu8U/JsADSDiBPQhfdSeI8B9POtvPRvPh3nMlvhYayGMKLv6maldhR7y3Pf1vkpw==", "dev": true, "requires": { - "intl-messageformat-parser": "^1.8.1" + "@formatjs/ecma402-abstract": "2.3.1", + "@formatjs/fast-memoize": "2.2.5", + "@formatjs/icu-messageformat-parser": "2.9.7", + "tslib": "2" + }, + "dependencies": { + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + } } }, - "intl-messageformat-parser": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz", - "integrity": "sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==", - "dev": true - }, - "ip": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz", - "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==", - "dev": true + "ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "dev": true, + "requires": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + } }, "ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", "dev": true }, "irregular-plurals": { @@ -8686,14 +8630,13 @@ "dev": true }, "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, "requires": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "get-intrinsic": "^1.2.1" } }, "is-arrayish": { @@ -8712,12 +8655,12 @@ } }, "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, "requires": { - "has-bigints": "^1.0.1" + "has-bigints": "^1.0.2" } }, "is-binary-path": { @@ -8730,13 +8673,13 @@ } }, "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.0.tgz", + "integrity": "sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.7", + "has-tostringtag": "^1.0.2" } }, "is-buffer": { @@ -8769,6 +8712,17 @@ "has": "^1.0.3" } }, + "is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + } + }, "is-date-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", @@ -8797,12 +8751,12 @@ "dev": true }, "is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz", + "integrity": "sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==", "dev": true, "requires": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" } }, "is-fullwidth-code-point": { @@ -8836,15 +8790,15 @@ } }, "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true }, "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 }, "is-number": { @@ -8854,12 +8808,13 @@ "dev": true }, "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.0.tgz", + "integrity": "sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==", "dev": true, "requires": { - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.7", + "has-tostringtag": "^1.0.2" } }, "is-obj": { @@ -8898,15 +8853,12 @@ "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, + "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 + }, "is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", @@ -8914,28 +8866,30 @@ "dev": true }, "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" } }, "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true }, "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, "requires": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" } }, "is-stream": { @@ -8945,30 +8899,33 @@ "dev": true }, "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.0.tgz", + "integrity": "sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==", "dev": true, "requires": { - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.7", + "has-tostringtag": "^1.0.2" } }, "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.0.tgz", + "integrity": "sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==", "dev": true, "requires": { - "has-symbols": "^1.0.2" + "call-bind": "^1.0.7", + "has-symbols": "^1.0.3", + "safe-regex-test": "^1.0.3" } }, "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, "requires": { - "which-typed-array": "^1.1.11" + "which-typed-array": "^1.1.14" } }, "is-typedarray": { @@ -8984,9 +8941,9 @@ "dev": true }, "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true }, "is-weakref": { @@ -8999,13 +8956,13 @@ } }, "is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" } }, "is-windows": { @@ -9077,15 +9034,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "make-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", @@ -9096,13 +9044,10 @@ } }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true }, "supports-color": { "version": "7.2.0", @@ -9112,12 +9057,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -9141,9 +9080,9 @@ } }, "istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "requires": { "html-escaper": "^2.0.0", @@ -9151,16 +9090,17 @@ } }, "iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.4.tgz", + "integrity": "sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==", "dev": true, "requires": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "reflect.getprototypeof": "^1.0.8", + "set-function-name": "^2.0.2" } }, "jest": { @@ -9205,6 +9145,17 @@ "execa": "^5.0.0", "jest-util": "^29.7.0", "p-limit": "^3.1.0" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + } } }, "jest-circus": { @@ -9233,6 +9184,17 @@ "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + } } }, "jest-config": { @@ -9272,12 +9234,12 @@ "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -9290,18 +9252,18 @@ } }, "jest-dev-server": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-9.0.2.tgz", - "integrity": "sha512-Zc/JB0IlNNrpXkhBw+h86cGrde/Mey52KvF+FER2eyrtYJTHObOwW7Iarxm3rPyTKby5+3Y2QZtl8pRz/5GCxg==", + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-10.1.4.tgz", + "integrity": "sha512-bGQ6sedNGtT6AFHhCVqGTXMPz7UyJi/ZrhNBgyqsP0XU9N8acCEIfqZEA22rOaZ+NdEVsaltk6tL7UT6aXfI7w==", "dev": true, "requires": { "chalk": "^4.1.2", "cwd": "^0.10.0", "find-process": "^1.4.7", "prompts": "^2.4.2", - "spawnd": "^9.0.2", + "spawnd": "^10.1.4", "tree-kill": "^1.2.2", - "wait-on": "^7.2.0" + "wait-on": "^8.0.1" }, "dependencies": { "ansi-styles": { @@ -9452,12 +9414,12 @@ "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -9515,12 +9477,12 @@ "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -9624,6 +9586,15 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } } } }, @@ -9705,28 +9676,10 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } @@ -9819,14 +9772,14 @@ } }, "joi": { - "version": "17.11.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", - "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", "dev": true, "requires": { - "@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" } @@ -9858,6 +9811,12 @@ "argparse": "^2.0.1" } }, + "jsbn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", + "dev": true + }, "jsdoc-type-pratt-parser": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", @@ -9898,6 +9857,15 @@ "xml-name-validator": "^4.0.0" }, "dependencies": { + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, "http-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", @@ -9909,43 +9877,28 @@ "debug": "4" } }, - "tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, - "webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true - }, - "whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "requires": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" + "agent-base": "6", + "debug": "4" } }, "ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true } } }, "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true }, "json-buffer": { @@ -9961,9 +9914,9 @@ "dev": true }, "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, "json-stable-stringify-without-jsonify": { @@ -9973,9 +9926,9 @@ "dev": true }, "json2php": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", - "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.9.tgz", + "integrity": "sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==", "dev": true }, "json5": { @@ -10030,13 +9983,10 @@ } }, "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==", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true }, "kleur": { "version": "3.0.3", @@ -10051,15 +10001,15 @@ "dev": true }, "known-css-properties": { - "version": "0.26.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", - "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", + "version": "0.35.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.35.0.tgz", + "integrity": "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==", "dev": true }, "language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", "dev": true }, "language-tags": { @@ -10072,9 +10022,9 @@ } }, "launch-editor": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", - "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", + "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", "dev": true, "requires": { "picocolors": "^1.0.0", @@ -10103,69 +10053,51 @@ "type-check": "~0.4.0" } }, + "lie": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", + "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==", + "dev": true, + "requires": { + "immediate": "~3.0.5" + } + }, "lighthouse": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-10.4.0.tgz", - "integrity": "sha512-XQWHEWkJ8YxSPsxttBJORy5+hQrzbvGkYfeP3fJjyYKioWkF2MXfFqNK4ZuV4jL8pBu7Z91qnQP6In0bq1yXww==", + "version": "12.2.2", + "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-12.2.2.tgz", + "integrity": "sha512-avoiiFeGN1gkWhp/W1schJoXOsTPxRKWV3+uW/rGHuov2g/HGB+4SN9J/av1GNSh13sEYgkHL3iJOp1+mBVKYQ==", "dev": true, "requires": { - "@sentry/node": "^6.17.4", - "axe-core": "4.7.2", - "chrome-launcher": "^0.15.2", + "@paulirish/trace_engine": "0.0.32", + "@sentry/node": "^7.0.0", + "axe-core": "^4.10.2", + "chrome-launcher": "^1.1.2", "configstore": "^5.0.1", "csp_evaluator": "1.1.1", - "devtools-protocol": "0.0.1155343", + "devtools-protocol": "0.0.1312386", "enquirer": "^2.3.6", "http-link-header": "^1.1.1", - "intl-messageformat": "^4.4.0", + "intl-messageformat": "^10.5.3", "jpeg-js": "^0.4.4", - "js-library-detector": "^6.6.0", - "lighthouse-logger": "^1.4.1", - "lighthouse-stack-packs": "1.11.0", - "lodash": "^4.17.21", + "js-library-detector": "^6.7.0", + "lighthouse-logger": "^2.0.1", + "lighthouse-stack-packs": "1.12.2", + "lodash-es": "^4.17.21", "lookup-closest-locale": "6.2.0", "metaviewport-parser": "0.3.0", "open": "^8.4.0", "parse-cache-control": "1.0.1", - "ps-list": "^8.0.0", - "puppeteer-core": "^20.8.0", - "robots-parser": "^3.0.0", + "puppeteer-core": "^23.8.0", + "robots-parser": "^3.0.1", "semver": "^5.3.0", "speedline-core": "^1.4.3", - "third-party-web": "^0.23.3", + "third-party-web": "^0.26.1", + "tldts-icann": "^6.1.16", "ws": "^7.0.0", "yargs": "^17.3.1", "yargs-parser": "^21.0.0" }, "dependencies": { - "puppeteer-core": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", - "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", - "dev": true, - "requires": { - "@puppeteer/browsers": "1.4.6", - "chromium-bidi": "0.4.16", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1147663", - "ws": "8.13.0" - }, - "dependencies": { - "devtools-protocol": { - "version": "0.0.1147663", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", - "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", - "dev": true - }, - "ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true - } - } - }, "semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", @@ -10175,9 +10107,9 @@ } }, "lighthouse-logger": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", - "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-2.0.1.tgz", + "integrity": "sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==", "dev": true, "requires": { "debug": "^2.6.9", @@ -10202,15 +10134,15 @@ } }, "lighthouse-stack-packs": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.11.0.tgz", - "integrity": "sha512-sRr0z1S/I26VffRLq9KJsKtLk856YrJlNGmcJmbLX8dFn3MuzVPUbstuChEhqnSxZb8TZmVfthuXuwhG9vRoSw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.12.2.tgz", + "integrity": "sha512-Ug8feS/A+92TMTCK6yHYLwaFMuelK/hAKRMdldYkMNwv+d9PtWxjXEg6rwKtsUXTADajhdrhXyuNCJ5/sfmPFw==", "dev": true }, "lilconfig": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", - "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true }, "lines-and-columns": { @@ -10245,13 +10177,22 @@ "json5": "^2.1.2" } }, + "localforage": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", + "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==", + "dev": true, + "requires": { + "lie": "3.1.1" + } + }, "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "p-locate": "^5.0.0" + "p-locate": "^4.1.0" } }, "lodash": { @@ -10260,6 +10201,12 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", @@ -10355,9 +10302,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -10371,12 +10318,6 @@ "yallist": "^3.0.2" } }, - "lru_map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", - "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", - "dev": true - }, "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -10500,6 +10441,12 @@ "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", "dev": true }, + "math-intrinsics": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.0.0.tgz", + "integrity": "sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==", + "dev": true + }, "mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", @@ -10511,122 +10458,34 @@ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "dev": true - }, - "mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true - }, - "memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "dev": true, - "requires": { - "fs-monkey": "^1.0.4" - } - }, - "memize": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/memize/-/memize-2.1.0.tgz", - "integrity": "sha512-yywVJy8ctVlN5lNPxsep5urnZ6TTclwPEyigM9M3Bi8vseJBOfqNrGWN/r8NzuIt3PovM323W04blJfGQfQSVg==", - "dev": true - }, - "meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", - "dev": true, - "requires": { - "@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" - }, - "dependencies": { - "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, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "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==", - "dev": true, - "requires": { - "hasown": "^2.0.0" - } - }, - "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, - "requires": { - "yallist": "^4.0.0" - } - }, - "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, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "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 - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "requires": { + "fs-monkey": "^1.0.4" } }, + "meow": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", + "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", + "dev": true + }, "merge-deep": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", @@ -10636,8 +10495,25 @@ "arr-union": "^3.1.0", "clone-deep": "^0.2.4", "kind-of": "^3.0.2" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, + "merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true + }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -10706,53 +10582,13 @@ "dev": true }, "mini-css-extract-plugin": { - "version": "2.7.6", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", - "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", + "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", "dev": true, "requires": { - "schema-utils": "^4.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } - } + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" } }, "minimalistic-assert": { @@ -10792,19 +10628,13 @@ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true } } }, "mitt": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", - "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", "dev": true }, "mixin-object": { @@ -10825,12 +10655,6 @@ } } }, - "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==", - "dev": true - }, "mrmime": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", @@ -10838,9 +10662,9 @@ "dev": true }, "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "multicast-dns": { @@ -10866,9 +10690,9 @@ "dev": true }, "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "dev": true }, "neo-async": { @@ -10894,21 +10718,19 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } }, - "node-fetch": { - "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==", + "node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } + "optional": true }, "node-forge": { "version": "1.3.1", @@ -11000,6 +10822,18 @@ "validate-npm-package-name": "^5.0.0" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -11079,16 +10913,40 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "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, + "requires": { + "lru-cache": "^6.0.0" + } + }, "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.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true + }, + "is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", "dev": true }, "lru-cache": { @@ -11100,16 +10958,56 @@ "yallist": "^4.0.0" } }, + "meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "requires": { + "@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" + }, + "dependencies": { + "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 + } + } + }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, + "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, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -11117,13 +11015,10 @@ "dev": true }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true }, "supports-color": { "version": "7.2.0", @@ -11145,6 +11040,12 @@ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true } } }, @@ -11179,9 +11080,9 @@ } }, "nwsapi": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", - "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz", + "integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==", "dev": true }, "object-assign": { @@ -11197,9 +11098,9 @@ "dev": true }, "object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", "dev": true }, "object-keys": { @@ -11221,58 +11122,48 @@ } }, "object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "dev": true, "requires": { - "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" } }, "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, "requires": { - "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" } }, "object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", "dev": true, "requires": { - "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" } }, "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, "requires": { - "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" } }, "obuf": { @@ -11332,17 +11223,17 @@ "dev": true }, "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" } }, "os-homedir": { @@ -11352,21 +11243,21 @@ "dev": true }, "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { - "yocto-queue": "^0.1.0" + "p-try": "^2.0.0" } }, "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "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, "requires": { - "p-limit": "^3.0.2" + "p-limit": "^2.2.0" } }, "p-map": { @@ -11392,50 +11283,28 @@ "dev": true }, "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==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz", + "integrity": "sha512-Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==", "dev": true, "requires": { "@tootallnate/quickjs-emscripten": "^0.23.0", - "agent-base": "^7.0.2", + "agent-base": "^7.1.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" - }, - "dependencies": { - "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==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "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==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - } + "https-proxy-agent": "^7.0.6", + "pac-resolver": "^7.0.1", + "socks-proxy-agent": "^8.0.5" } }, "pac-resolver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", - "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", "dev": true, "requires": { "degenerator": "^5.0.0", - "ip": "^1.1.8", "netmask": "^2.0.2" } }, @@ -11450,9 +11319,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -11491,12 +11360,12 @@ "dev": true }, "parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", "dev": true, "requires": { - "entities": "^4.4.0" + "entities": "^4.5.0" } }, "parseurl": { @@ -11516,9 +11385,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -11534,9 +11403,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -11571,6 +11440,12 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "dev": true + }, "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -11623,59 +11498,65 @@ "dev": true }, "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==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dev": true, "requires": { - "find-up": "^4.0.0" + "find-up": "^6.3.0" }, "dependencies": { "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" } }, "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "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, "requires": { - "p-locate": "^4.1.0" + "p-locate": "^6.0.0" } }, "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "requires": { - "p-try": "^2.0.0" + "yocto-queue": "^1.0.0" } }, "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==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "requires": { - "p-limit": "^2.2.0" + "p-limit": "^4.0.0" } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "dev": true } } }, - "playwright-core": { - "version": "1.39.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz", - "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==", - "dev": true - }, "plur": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", @@ -11685,6 +11566,12 @@ "irregular-plurals": "^3.2.0" } }, + "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 + }, "postcss": { "version": "8.4.31", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", @@ -11858,45 +11745,45 @@ } }, "postcss-colormin": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", - "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz", + "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==", "dev": true, "requires": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0", - "colord": "^2.9.1", + "colord": "^2.9.3", "postcss-value-parser": "^4.2.0" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "postcss-value-parser": { @@ -11908,43 +11795,43 @@ } }, "postcss-convert-values": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", - "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz", + "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==", "dev": true, "requires": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "postcss-value-parser": "^4.2.0" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "postcss-value-parser": { @@ -11956,27 +11843,27 @@ } }, "postcss-discard-comments": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", - "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz", + "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==", "dev": true }, "postcss-discard-duplicates": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", - "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz", + "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==", "dev": true }, "postcss-discard-empty": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", - "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz", + "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==", "dev": true }, "postcss-discard-overridden": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", - "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz", + "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==", "dev": true }, "postcss-loader": { @@ -11990,28 +11877,10 @@ "semver": "^7.3.5" }, "dependencies": { - "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, - "requires": { - "yallist": "^4.0.0" - } - }, "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==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true } } @@ -12023,13 +11892,13 @@ "dev": true }, "postcss-merge-longhand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", - "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz", + "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.2" + "stylehacks": "^6.1.1" }, "dependencies": { "postcss-value-parser": { @@ -12041,53 +11910,53 @@ } }, "postcss-merge-rules": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", - "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz", + "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==", "dev": true, "requires": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.1", - "postcss-selector-parser": "^6.0.15" + "cssnano-utils": "^4.0.2", + "postcss-selector-parser": "^6.0.16" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "postcss-minify-font-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", - "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz", + "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12102,13 +11971,13 @@ } }, "postcss-minify-gradients": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", - "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz", + "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==", "dev": true, "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^4.0.1", + "colord": "^2.9.3", + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "dependencies": { @@ -12121,44 +11990,44 @@ } }, "postcss-minify-params": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", - "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz", + "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==", "dev": true, "requires": { - "browserslist": "^4.22.2", - "cssnano-utils": "^4.0.1", + "browserslist": "^4.23.0", + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "postcss-value-parser": { @@ -12170,38 +12039,62 @@ } }, "postcss-minify-selectors": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz", - "integrity": "sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz", + "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.15" + "postcss-selector-parser": "^6.0.16" } }, "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true }, "postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dev": true, "requires": { "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", + "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + } } }, "postcss-modules-scope": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.0.tgz", - "integrity": "sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.4" + "postcss-selector-parser": "^7.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + } } }, "postcss-modules-values": { @@ -12214,15 +12107,15 @@ } }, "postcss-normalize-charset": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", - "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz", + "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==", "dev": true }, "postcss-normalize-display-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", - "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz", + "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12237,9 +12130,9 @@ } }, "postcss-normalize-positions": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", - "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz", + "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12254,9 +12147,9 @@ } }, "postcss-normalize-repeat-style": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", - "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz", + "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12271,9 +12164,9 @@ } }, "postcss-normalize-string": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", - "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz", + "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12288,9 +12181,9 @@ } }, "postcss-normalize-timing-functions": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", - "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz", + "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12305,43 +12198,43 @@ } }, "postcss-normalize-unicode": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", - "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz", + "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==", "dev": true, "requires": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "postcss-value-parser": "^4.2.0" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, "postcss-value-parser": { @@ -12353,9 +12246,9 @@ } }, "postcss-normalize-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", - "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz", + "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12370,9 +12263,9 @@ } }, "postcss-normalize-whitespace": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", - "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz", + "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12387,12 +12280,12 @@ } }, "postcss-ordered-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", - "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz", + "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==", "dev": true, "requires": { - "cssnano-utils": "^4.0.1", + "cssnano-utils": "^4.0.2", "postcss-value-parser": "^4.2.0" }, "dependencies": { @@ -12405,51 +12298,51 @@ } }, "postcss-reduce-initial": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", - "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz", + "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==", "dev": true, "requires": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "postcss-reduce-transforms": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", - "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz", + "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -12478,15 +12371,15 @@ } }, "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 }, "postcss-safe-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz", + "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==", "dev": true }, "postcss-scss": { @@ -12496,9 +12389,9 @@ "dev": true }, "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.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "requires": { "cssesc": "^3.0.0", @@ -12506,9 +12399,9 @@ } }, "postcss-svgo": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz", - "integrity": "sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz", + "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0", @@ -12524,12 +12417,12 @@ } }, "postcss-unique-selectors": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz", - "integrity": "sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz", + "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.15" + "postcss-selector-parser": "^6.0.16" } }, "postcss-value-parser": { @@ -12577,9 +12470,9 @@ "dev": true }, "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true } } @@ -12642,40 +12535,21 @@ } }, "proxy-agent": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", - "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.5.0.tgz", + "integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==", "dev": true, "requires": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.2", "debug": "^4.3.4", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.6", "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.0", + "pac-proxy-agent": "^7.1.0", "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.1" + "socks-proxy-agent": "^8.0.5" }, "dependencies": { - "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==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "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==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, "lru-cache": { "version": "7.18.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", @@ -12690,28 +12564,19 @@ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true }, - "ps-list": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/ps-list/-/ps-list-8.1.1.tgz", - "integrity": "sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==", - "dev": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true - }, "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dev": true, + "requires": { + "punycode": "^2.3.1" + } }, "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, "requires": { "end-of-stream": "^1.1.0", @@ -12725,97 +12590,48 @@ "dev": true }, "puppeteer-core": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-13.7.0.tgz", - "integrity": "sha512-rXja4vcnAzFAP1OVLq/5dWNfwBGuzcOARJ6qGV7oAZhnLmVRU8G5MsdeQEAOy332ZhkIOnn9jp15R89LKHyp2Q==", + "version": "23.10.3", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.10.3.tgz", + "integrity": "sha512-7JG8klL2qHLyH8t2pOmM9zgykhaulUf7cxnmmqupjdwGfNMiGaYehQka20iUB9R/fwVyG8mFMZcsmw1FHrgKVw==", "dev": true, "requires": { - "cross-fetch": "3.1.5", - "debug": "4.3.4", - "devtools-protocol": "0.0.981744", - "extract-zip": "2.0.1", - "https-proxy-agent": "5.0.1", - "pkg-dir": "4.2.0", - "progress": "2.0.3", - "proxy-from-env": "1.1.0", - "rimraf": "3.0.2", - "tar-fs": "2.1.1", - "unbzip2-stream": "1.4.3", - "ws": "8.5.0" + "@puppeteer/browsers": "2.6.1", + "chromium-bidi": "0.8.0", + "debug": "^4.4.0", + "devtools-protocol": "0.0.1367902", + "typed-query-selector": "^2.12.0", + "ws": "^8.18.0" }, "dependencies": { - "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", - "dev": true, - "requires": { - "node-fetch": "2.6.7" - } - }, "devtools-protocol": { - "version": "0.0.981744", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.981744.tgz", - "integrity": "sha512-0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==", + "version": "0.0.1367902", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz", + "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==", "dev": true }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - } - }, "ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true } } }, "pure-rand": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", - "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", "dev": true }, + "qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "requires": { + "side-channel": "^1.0.6" + } + }, "querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", @@ -12867,12 +12683,6 @@ "unpipe": "1.0.0" }, "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true - }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -12885,9 +12695,9 @@ } }, "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dev": true, "requires": { "loose-envify": "^1.1.0" @@ -12900,9 +12710,9 @@ "dev": true }, "react-refresh": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", - "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true }, "read-cache": { @@ -12945,43 +12755,6 @@ "type-fest": "^0.8.1" }, "dependencies": { - "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, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "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, - "requires": { - "p-locate": "^4.1.0" - } - }, - "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, - "requires": { - "p-try": "^2.0.0" - } - }, - "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, - "requires": { - "p-limit": "^2.2.0" - } - }, "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -13030,17 +12803,19 @@ } }, "reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz", + "integrity": "sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "dunder-proto": "^1.0.0", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.2.0", + "which-builtin-type": "^1.2.0" } }, "regenerate": { @@ -13050,9 +12825,9 @@ "dev": true }, "regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "requires": { "regenerate": "^1.4.2" @@ -13074,53 +12849,54 @@ } }, "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.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" } }, "regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "dev": true, "requires": { - "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, + "regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true + }, "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", "dev": true, "requires": { - "jsesc": "~0.5.0" + "jsesc": "~3.0.2" }, "dependencies": { "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true } } }, - "remove-accents": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz", - "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==", - "dev": true - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -13189,6 +12965,30 @@ "requires": { "expand-tilde": "^1.2.2", "global-modules": "^0.2.3" + }, + "dependencies": { + "global-modules": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", + "integrity": "sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==", + "dev": true, + "requires": { + "global-prefix": "^0.1.4", + "is-windows": "^0.2.0" + } + }, + "global-prefix": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", + "integrity": "sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.0", + "ini": "^1.3.4", + "is-windows": "^0.2.0", + "which": "^1.2.12" + } + } } }, "resolve-from": { @@ -13198,9 +12998,9 @@ "dev": true }, "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true }, "retry": { @@ -13294,6 +13094,67 @@ } } }, + "rtlcss-webpack-plugin": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/rtlcss-webpack-plugin/-/rtlcss-webpack-plugin-4.0.7.tgz", + "integrity": "sha512-ouSbJtgcLBBQIsMgarxsDnfgRqm/AS4BKls/mz/Xb6HSl+PdEzefTR+Wz5uWQx4odoX0g261Z7yb3QBz0MTm0g==", + "dev": true, + "requires": { + "babel-runtime": "~6.25.0", + "rtlcss": "^3.5.0" + }, + "dependencies": { + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "rtlcss": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", + "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", + "dev": true, + "requires": { + "find-up": "^5.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.3.11", + "strip-json-comments": "^3.1.1" + } + } + } + }, "run-con": { "version": "1.2.12", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", @@ -13333,14 +13194,15 @@ } }, "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.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", "isarray": "^2.0.5" } }, @@ -13351,13 +13213,13 @@ "dev": true }, "safe-regex-test": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.1.tgz", - "integrity": "sha512-Y5NejJTTliTyY4H7sipGqY+RX5P87i3F7c4Rcepy72nq+mNLhIsD0W4c7kEmduMDQCSqtPsXPlSTsFhh2LQv+g==", + "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, "requires": { - "call-bind": "^1.0.5", - "get-intrinsic": "^1.2.2", + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", "is-regex": "^1.1.4" } }, @@ -13368,23 +13230,40 @@ "dev": true }, "sass": { - "version": "1.69.7", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.7.tgz", - "integrity": "sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==", + "version": "1.82.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.82.0.tgz", + "integrity": "sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==", "dev": true, "requires": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", + "@parcel/watcher": "^2.4.1", + "chokidar": "^4.0.0", + "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" + }, + "dependencies": { + "chokidar": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "dev": true, + "requires": { + "readdirp": "^4.0.1" + } + }, + "readdirp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "dev": true + } } }, "sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.4.tgz", + "integrity": "sha512-LavLbgbBGUt3wCiYzhuLLu65+fWXaXLmq7YxivLhEqmiupCFZ5sKUAipK3do6V80YSU0jvSxNhEdT13IXNr3rg==", "dev": true, "requires": { - "klona": "^2.0.4", "neo-async": "^2.6.2" } }, @@ -13398,14 +13277,15 @@ } }, "schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "dev": true, "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" } }, "select-hose": { @@ -13424,12 +13304,64 @@ "node-forge": "^1" } }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true - }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + } + } + }, "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -13442,9 +13374,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -13526,27 +13458,50 @@ } } }, + "serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "dev": true, + "requires": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + } + }, "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, "requires": { - "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" + }, + "dependencies": { + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + } } }, "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, "requires": { - "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" } }, "setprototypeof": { @@ -13585,35 +13540,72 @@ } }, "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "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, "requires": { - "shebang-regex": "^1.0.0" + "shebang-regex": "^3.0.0" } }, "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", "dev": true }, "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.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + } + }, + "side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + } + }, + "side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "requires": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + } + }, + "side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" } }, "signal-exit": { @@ -13699,9 +13691,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -13718,43 +13710,24 @@ } }, "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, "requires": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" - }, - "dependencies": { - "ip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz", - "integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==", - "dev": true - } } }, "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==", + "version": "8.0.5", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz", + "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==", "dev": true, "requires": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.2", "debug": "^4.3.4", - "socks": "^2.7.1" - }, - "dependencies": { - "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==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - } + "socks": "^2.8.3" } }, "source-map": { @@ -13764,9 +13737,9 @@ "dev": true }, "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.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true }, "source-map-loader": { @@ -13805,9 +13778,9 @@ "dev": true }, "spawnd": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-9.0.2.tgz", - "integrity": "sha512-nl8DVHEDQ57IcKakzpjanspVChkMpGLuVwMR/eOn9cXE55Qr6luD2Kn06sA0ootRMdgrU4tInN6lA6ohTNvysw==", + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-10.1.4.tgz", + "integrity": "sha512-drqHc0mKJmtMsiGMOCwzlc5eZ0RPtRvT7tQAluW2A0qUc0G7TQ8KLcn3E6K5qzkLkH2UkS3nYQiVGULvvsD9dw==", "dev": true, "requires": { "signal-exit": "^4.1.0", @@ -13928,13 +13901,15 @@ "dev": true }, "streamx": { - "version": "2.15.6", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.6.tgz", - "integrity": "sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==", + "version": "2.21.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.0.tgz", + "integrity": "sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==", "dev": true, "requires": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" + "bare-events": "^2.2.0", + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" } }, "string-length": { @@ -13966,63 +13941,100 @@ } } }, + "string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + } + }, "string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", "dev": true, "requires": { - "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-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + } + }, + "string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" } }, "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.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" } }, "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.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" } }, "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, "requires": { - "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" } }, "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "safe-buffer": "~5.2.0" + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } } }, "strip-ansi": { @@ -14077,93 +14089,99 @@ "dev": true }, "stylehacks": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", - "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz", + "integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==", "dev": true, "requires": { - "browserslist": "^4.22.2", - "postcss-selector-parser": "^6.0.15" + "browserslist": "^4.23.0", + "postcss-selector-parser": "^6.0.16" }, "dependencies": { "browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "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.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true } } }, "stylelint": { - "version": "14.16.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", - "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", + "version": "16.11.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.11.0.tgz", + "integrity": "sha512-zrl4IrKmjJQ+h9FoMp69UMCq5SxeHk0URhxUBj4d3ISzo/DplOFBJZc7t7Dr6otB+1bfbbKNLOmCDpzKSlW+Nw==", "dev": true, "requires": { - "@csstools/selector-specificity": "^2.0.2", + "@csstools/css-parser-algorithms": "^3.0.4", + "@csstools/css-tokenizer": "^3.0.3", + "@csstools/media-query-list-parser": "^4.0.2", + "@csstools/selector-specificity": "^5.0.0", + "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", - "cosmiconfig": "^7.1.0", - "css-functions-list": "^3.1.0", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", + "cosmiconfig": "^9.0.0", + "css-functions-list": "^3.2.3", + "css-tree": "^3.0.1", + "debug": "^4.3.7", + "fast-glob": "^3.3.2", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", + "file-entry-cache": "^9.1.0", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", - "html-tags": "^3.2.0", - "ignore": "^5.2.1", - "import-lazy": "^4.0.0", + "html-tags": "^3.3.1", + "ignore": "^6.0.2", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.26.0", + "known-css-properties": "^0.35.0", "mathml-tag-names": "^2.1.3", - "meow": "^9.0.0", - "micromatch": "^4.0.5", + "meow": "^13.2.0", + "micromatch": "^4.0.8", "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.19", - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.11", + "picocolors": "^1.1.1", + "postcss": "^8.4.49", + "postcss-resolve-nested-selector": "^0.1.6", + "postcss-safe-parser": "^7.0.1", + "postcss-selector-parser": "^7.0.0", "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", - "supports-hyperlinks": "^2.3.0", + "supports-hyperlinks": "^3.1.0", "svg-tags": "^1.0.0", - "table": "^6.8.1", - "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.2" + "table": "^6.8.2", + "write-file-atomic": "^5.0.1" }, "dependencies": { + "@csstools/media-query-list-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", + "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", + "dev": true + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -14177,16 +14195,25 @@ "dev": true }, "cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + } + }, + "css-tree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "dev": true, + "requires": { + "mdn-data": "2.12.2", + "source-map-js": "^1.0.1" } }, "fast-glob": { @@ -14202,26 +14229,6 @@ "micromatch": "^4.0.4" } }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - } - }, "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", @@ -14234,42 +14241,77 @@ "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true + } } }, "ignore": { - "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 - }, - "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": "6.0.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-6.0.2.tgz", + "integrity": "sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==", "dev": true }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "mdn-data": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", "dev": true }, "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==", "dev": true, "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, + "postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", @@ -14282,6 +14324,12 @@ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true }, + "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 + }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -14303,13 +14351,13 @@ } }, "write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", "dev": true, "requires": { "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "signal-exit": "^4.0.1" } } } @@ -14321,34 +14369,72 @@ "dev": true }, "stylelint-config-recommended": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz", - "integrity": "sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==", + "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 }, "stylelint-config-recommended-scss": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz", - "integrity": "sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==", + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-14.1.0.tgz", + "integrity": "sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==", "dev": true, "requires": { - "postcss-scss": "^4.0.2", - "stylelint-config-recommended": "^6.0.0", - "stylelint-scss": "^4.0.0" + "postcss-scss": "^4.0.9", + "stylelint-config-recommended": "^14.0.1", + "stylelint-scss": "^6.4.0" } }, "stylelint-scss": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", - "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.10.0.tgz", + "integrity": "sha512-y03if6Qw9xBMoVaf7tzp5BbnYhYvudIKzURkhSHzcHG0bW0fAYvQpTUVJOe7DyhHaxeThBil4ObEMvGbV7+M+w==", "dev": true, "requires": { + "css-tree": "^3.0.1", + "is-plain-object": "^5.0.0", + "known-css-properties": "^0.35.0", + "mdn-data": "^2.12.2", "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.0.11", + "postcss-resolve-nested-selector": "^0.1.6", + "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0" }, "dependencies": { + "css-tree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "dev": true, + "requires": { + "mdn-data": "2.12.2", + "source-map-js": "^1.0.1" + }, + "dependencies": { + "mdn-data": { + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", + "dev": true + } + } + }, + "mdn-data": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.13.0.tgz", + "integrity": "sha512-OmD1FDyP706JqPqtLqgev/QCK0qudBdUuKKag6InQ/elEw3Cm2AhXYktcSggdc/vWniYqIsofkcteMEOioW5vQ==", + "dev": true + }, + "postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", @@ -14367,9 +14453,9 @@ } }, "supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "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, "requires": { "has-flag": "^4.0.0", @@ -14412,9 +14498,9 @@ "dev": true }, "svgo": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz", - "integrity": "sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", "dev": true, "requires": { "@trysound/sax": "0.2.0", @@ -14433,9 +14519,9 @@ "dev": true }, "synckit": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", - "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", + "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", "dev": true, "requires": { "@pkgr/core": "^0.1.0", @@ -14443,17 +14529,17 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } }, "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.9.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.9.0.tgz", + "integrity": "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==", "dev": true, "requires": { "ajv": "^8.0.1", @@ -14463,30 +14549,12 @@ "strip-ansi": "^6.0.1" }, "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -14509,15 +14577,6 @@ } } }, - "tannin": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz", - "integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==", - "dev": true, - "requires": { - "@tannin/plural-forms": "^1.1.0" - } - }, "tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", @@ -14525,20 +14584,21 @@ "dev": true }, "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==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", + "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", "dev": true, "requires": { - "mkdirp-classic": "^0.5.2", + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0", "pump": "^3.0.0", "tar-stream": "^3.1.5" } }, "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==", "dev": true, "requires": { "b4a": "^1.6.4", @@ -14547,9 +14607,9 @@ } }, "terser": { - "version": "5.26.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", - "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", + "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", "dev": true, "requires": { "@jridgewell/source-map": "^0.3.3", @@ -14595,6 +14655,24 @@ "terser": "^5.26.0" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -14612,6 +14690,23 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, "supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", @@ -14655,6 +14750,15 @@ } } }, + "text-decoder": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.2.tgz", + "integrity": "sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA==", + "dev": true, + "requires": { + "b4a": "^1.6.4" + } + }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -14662,9 +14766,9 @@ "dev": true }, "third-party-web": { - "version": "0.23.4", - "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.23.4.tgz", - "integrity": "sha512-kwYnSZRhEvv0SBW2fp8SBBKRglMoBjV8xz6C31m0ewqOtknB5UL+Ihg+M81hyFY5ldkZuGWPb+e4GVDkzf/gYg==", + "version": "0.26.2", + "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.26.2.tgz", + "integrity": "sha512-taJ0Us0lKoYBqcbccMuDElSUPOxmBfwlHe1OkHQ3KFf+RwovvBHdXhbFk9XJVQE2vHzxbTwvwg5GFsT9hbDokQ==", "dev": true }, "through": { @@ -14679,18 +14783,27 @@ "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, + "tldts-core": { + "version": "6.1.67", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.67.tgz", + "integrity": "sha512-12K5O4m3uUW6YM5v45Z7wc6NTSmAYj4Tq3de7eXghZkp879IlfPJrUWeWFwu1FS94U5t2vwETgJ1asu8UGNKVQ==", + "dev": true + }, + "tldts-icann": { + "version": "6.1.67", + "resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1.67.tgz", + "integrity": "sha512-CJLFTYBgbnkP6nB8rqSYzd1oyWbM02SeQx9hrEpB6fTjx2+5FJ1lSkovxIWCjMgvzE7Nv54LCrf3lVW0zhupxQ==", + "dev": true, + "requires": { + "tldts-core": "^6.1.67" + } + }, "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "to-fast-properties": { - "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 - }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -14713,30 +14826,25 @@ "dev": true }, "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==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", "dev": true, "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" - }, - "dependencies": { - "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 - } } }, "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } }, "tree-kill": { "version": "1.2.2", @@ -14760,9 +14868,9 @@ } }, "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.4.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", + "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", "dev": true }, "tsconfig-paths": { @@ -14835,52 +14943,64 @@ } }, "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, "requires": { - "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" } }, "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, "requires": { - "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" } }, "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.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz", + "integrity": "sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==", "dev": true, "requires": { - "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", + "reflect.getprototypeof": "^1.0.6" } }, "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.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dev": true, "requires": { - "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", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" } }, + "typed-query-selector": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz", + "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==", + "dev": true + }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -14919,15 +15039,15 @@ } }, "undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", "dev": true }, "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true }, "unicode-match-property-ecmascript": { @@ -14941,9 +15061,9 @@ } }, "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "dev": true }, "unicode-property-aliases-ecmascript": { @@ -14962,9 +15082,9 @@ } }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "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 }, "unpipe": { @@ -14974,13 +15094,27 @@ "dev": true }, "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.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "dependencies": { + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + } } }, "upper-case": { @@ -14993,9 +15127,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -15010,9 +15144,9 @@ }, "dependencies": { "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -15035,6 +15169,43 @@ "loader-utils": "^2.0.0", "mime-types": "^2.1.27", "schema-utils": "^3.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } } }, "url-parse": { @@ -15047,6 +15218,12 @@ "requires-port": "^1.0.0" } }, + "urlpattern-polyfill": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", + "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", + "dev": true + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -15065,16 +15242,10 @@ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, - "v8-compile-cache": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", - "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", - "dev": true - }, "v8-to-istanbul": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", - "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, "requires": { "@jridgewell/trace-mapping": "^0.3.12", @@ -15093,13 +15264,10 @@ } }, "validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", - "dev": true, - "requires": { - "builtins": "^5.0.0" - } + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", + "dev": true }, "vary": { "version": "1.1.2", @@ -15117,13 +15285,13 @@ } }, "wait-on": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", - "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-8.0.1.tgz", + "integrity": "sha512-1wWQOyR2LVVtaqrcIL2+OM+x7bkpmzVROa0Nf6FryXkS+er5Sa1kzFGjzZRqLnHa3n1rACFLeTwUqE1ETL9Mig==", "dev": true, "requires": { - "axios": "^1.6.1", - "joi": "^17.11.0", + "axios": "^1.7.7", + "joi": "^17.13.3", "lodash": "^4.17.21", "minimist": "^1.2.8", "rxjs": "^7.8.1" @@ -15139,9 +15307,9 @@ } }, "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true } } @@ -15155,6 +15323,16 @@ "makeerror": "1.0.12" } }, + "watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, "wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", @@ -15165,30 +15343,30 @@ } }, "web-vitals": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.1.tgz", - "integrity": "sha512-xQ9lvIpfLxUj0eSmT79ZjRoU5wIRfIr7pNukL7ZE4EcWZSmfZQqOlhuAGfkVa3EFmzPHZhWhXfm2i5ys+THVPg==", + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-4.2.4.tgz", + "integrity": "sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==", "dev": true }, "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==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true }, "webpack": { - "version": "5.94.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", - "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", - "dev": true, - "requires": { - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", + "version": "5.97.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", + "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", @@ -15207,137 +15385,46 @@ "webpack-sources": "^3.2.3" }, "dependencies": { - "@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" - } - }, - "@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.12.1", - "@xtuc/long": "4.2.2" - } - }, "browserslist": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", - "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001646", - "electron-to-chromium": "^1.5.4", + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" + "update-browserslist-db": "^1.1.1" } }, "caniuse-lite": { - "version": "1.0.30001655", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001655.tgz", - "integrity": "sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==", + "version": "1.0.30001688", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz", + "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==", "dev": true }, "electron-to-chromium": { - "version": "1.5.13", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", - "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==", - "dev": true - }, - "enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "version": "1.5.73", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz", + "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==", "dev": true }, "graceful-fs": { @@ -15346,44 +15433,35 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "dev": true }, - "update-browserslist-db": { - "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, - "requires": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - } - }, - "watchpack": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" } } } }, "webpack-bundle-analyzer": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", - "integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz", + "integrity": "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==", "dev": true, "requires": { "@discoveryjs/json-ext": "0.5.7", @@ -15394,7 +15472,6 @@ "escape-string-regexp": "^4.0.0", "gzip-size": "^6.0.0", "html-escaper": "^2.0.2", - "is-plain-object": "^5.0.0", "opener": "^1.5.2", "picocolors": "^1.0.0", "sirv": "^2.0.3", @@ -15406,12 +15483,6 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true - }, - "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 } } }, @@ -15447,41 +15518,6 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "shebang-command": { - "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, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } } } }, @@ -15498,57 +15534,18 @@ "schema-utils": "^4.0.0" }, "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, "colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } } } }, "webpack-dev-server": { - "version": "4.15.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", - "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", "dev": true, "requires": { "@types/bonjour": "^3.5.9", @@ -15579,30 +15576,15 @@ "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", + "webpack-dev-middleware": "^5.3.4", "ws": "^8.13.0" }, "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true }, "anymatch": { "version": "3.1.3", @@ -15615,9 +15597,9 @@ } }, "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, "requires": { "anymatch": "~3.1.2", @@ -15636,12 +15618,6 @@ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -15660,22 +15636,10 @@ "glob": "^7.1.3" } }, - "schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - } - }, "ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true } } @@ -15702,11 +15666,14 @@ "shallow-clone": "^3.0.0" } }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } }, "shallow-clone": { "version": "3.0.1", @@ -15758,13 +15725,13 @@ "dev": true }, "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dev": true, "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" } }, "which": { @@ -15777,61 +15744,62 @@ } }, "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz", + "integrity": "sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==", "dev": true, "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.0", + "is-number-object": "^1.1.0", + "is-string": "^1.1.0", + "is-symbol": "^1.1.0" } }, "which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.0.tgz", + "integrity": "sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==", "dev": true, "requires": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", + "call-bind": "^1.0.7", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", + "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", "is-regex": "^1.1.4", "is-weakref": "^1.0.2", "isarray": "^2.0.5", "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.15" } }, "which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, "requires": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" } }, "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.16", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.16.tgz", + "integrity": "sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==", "dev": true, "requires": { - "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" } }, "wildcard": { @@ -15840,6 +15808,12 @@ "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -15896,9 +15870,9 @@ } }, "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true }, "xdg-basedir": { @@ -16001,6 +15975,12 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true + }, + "zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "dev": true } } } diff --git a/tests/codeception/_data/themes/custom_twentytwenty/package.json b/tests/codeception/_data/themes/custom_twentytwenty/package.json index ee73ddc4..d0711097 100644 --- a/tests/codeception/_data/themes/custom_twentytwenty/package.json +++ b/tests/codeception/_data/themes/custom_twentytwenty/package.json @@ -15,7 +15,7 @@ }, "devDependencies": { "@wordpress/browserslist-config": "^4.0.1", - "@wordpress/scripts": "^26.19.0", + "@wordpress/scripts": "^30.7.0", "autoprefixer": "^10.2.6", "concurrently": "^6.2.0", "postcss-cli": "^8.3.1", From 3afbd6291334e35709ed61e65137a5dc060ca2bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 07:15:08 +0000 Subject: [PATCH 15/29] Bump ws, codeceptjs, engine.io and engine.io-client Bumps [ws](https://github.com/websockets/ws) to 7.5.10 and updates ancestor dependencies [ws](https://github.com/websockets/ws), [codeceptjs](https://github.com/Codeception/codeceptjs), [engine.io](https://github.com/socketio/socket.io) and [engine.io-client](https://github.com/socketio/socket.io). These dependencies need to be updated together. Updates `ws` from 7.4.6 to 7.5.10 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/7.4.6...7.5.10) Updates `codeceptjs` from 3.6.7 to 3.6.10 - [Release notes](https://github.com/Codeception/codeceptjs/releases) - [Changelog](https://github.com/codeceptjs/CodeceptJS/blob/3.x/CHANGELOG.md) - [Commits](https://github.com/Codeception/codeceptjs/commits/3.6.10) Updates `engine.io` from 3.6.1 to 3.6.2 - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/socket.io/commits) Updates `engine.io-client` from 3.5.3 to 3.5.4 - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/socket.io/commits) --- updated-dependencies: - dependency-name: ws dependency-type: indirect - dependency-name: codeceptjs dependency-type: direct:development - dependency-name: engine.io dependency-type: indirect - dependency-name: engine.io-client dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 3977 +++++---------------------------------------- package.json | 2 +- 2 files changed, 365 insertions(+), 3614 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0d721445..cf9d8dbb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "babel-minify-webpack-plugin": "^0.3.1", "babel-plugin-transform-react-jsx": "^6.24.1", "babel-preset-minify": "^0.5.0", - "codeceptjs": "^3.6.7", + "codeceptjs": "^3.6.10", "cross-env": "^5.2.1", "playwright": "^1.13.0", "webpack": "5.92.0", @@ -38,15 +38,6 @@ "node": ">=6.0.0" } }, - "node_modules/@arr/every": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", - "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/@babel/code-frame": { "version": "7.25.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", @@ -1648,12 +1639,6 @@ "node": ">=6.9.0" } }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, "node_modules/@codeceptjs/configure": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/@codeceptjs/configure/-/configure-0.6.2.tgz", @@ -1767,33 +1752,71 @@ } }, "node_modules/@cucumber/cucumber-expressions": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@cucumber/cucumber-expressions/-/cucumber-expressions-17.1.0.tgz", - "integrity": "sha512-PCv/ppsPynniKPWJr5v566daCVe+pbxQpHGrIu/Ev57cCH9Rv+X0F6lio4Id3Z64TaG7btCRLUGewIgLwmrwOA==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@cucumber/cucumber-expressions/-/cucumber-expressions-18.0.1.tgz", + "integrity": "sha512-NSid6bI+7UlgMywl5octojY5NXnxR9uq+JisjOrO52VbFsQM6gTWuQFE8syI10KnIBEdPzuEUSVEeZ0VFzRnZA==", "dev": true, "dependencies": { "regexp-match-indices": "1.0.2" } }, "node_modules/@cucumber/gherkin": { - "version": "26.0.3", - "resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-26.0.3.tgz", - "integrity": "sha512-xwJHi//bLFEU1drIyw2yswwUHnnVWO4XcyVBbCTDs6DkSh262GkogFI/IWwChZqJfOXnPglzLGxR1DibcZsILA==", + "version": "30.0.4", + "resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz", + "integrity": "sha512-pb7lmAJqweZRADTTsgnC3F5zbTh3nwOB1M83Q9ZPbUKMb3P76PzK6cTcPTJBHWy3l7isbigIv+BkDjaca6C8/g==", "dev": true, "dependencies": { - "@cucumber/messages": "19.1.4 - 21" + "@cucumber/messages": ">=19.1.4 <=26" + } + }, + "node_modules/@cucumber/gherkin/node_modules/@cucumber/messages": { + "version": "26.0.1", + "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz", + "integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==", + "dev": true, + "dependencies": { + "@types/uuid": "10.0.0", + "class-transformer": "0.5.1", + "reflect-metadata": "0.2.2", + "uuid": "10.0.0" + } + }, + "node_modules/@cucumber/gherkin/node_modules/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" } }, "node_modules/@cucumber/messages": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-21.0.1.tgz", - "integrity": "sha512-pGR7iURM4SF9Qp1IIpNiVQ77J9kfxMkPOEbyy+zRmGABnWWCsqMpJdfHeh9Mb3VskemVw85++e15JT0PYdcR3g==", + "version": "27.0.0", + "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.0.0.tgz", + "integrity": "sha512-w0Qfu+IibH/uAMcf8TZPvSXSrbf7BLIfIxMmYvwx31jH6wuBcf/3RQetutS7Ge98rydjmpRphs2HCbugySarCA==", "dev": true, "dependencies": { - "@types/uuid": "8.3.4", + "@types/uuid": "10.0.0", "class-transformer": "0.5.1", - "reflect-metadata": "0.1.13", - "uuid": "9.0.0" + "reflect-metadata": "0.2.2", + "uuid": "10.0.0" + } + }, + "node_modules/@cucumber/messages/node_modules/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" } }, "node_modules/@discoveryjs/json-ext": { @@ -1836,12 +1859,6 @@ "semver": "bin/semver.js" } }, - "node_modules/@exodus/schemasafe": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", - "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", - "dev": true - }, "node_modules/@flatten-js/interval-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@flatten-js/interval-tree/-/interval-tree-1.1.3.tgz", @@ -2198,69 +2215,6 @@ "node": ">=14" } }, - "node_modules/@polka/url": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz", - "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==", - "dev": true - }, - "node_modules/@promptbook/utils": { - "version": "0.70.0-1", - "resolved": "https://registry.npmjs.org/@promptbook/utils/-/utils-0.70.0-1.tgz", - "integrity": "sha512-qd2lLRRN+sE6UuNMi2tEeUUeb4zmXnxY5EMdfHVXNE+bqBDpUC7/aEfXgA3jnUXEr+xFjQ8PTFQgWvBMaKvw0g==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://buymeacoffee.com/hejny" - }, - { - "type": "github", - "url": "https://github.com/webgptorg/promptbook/blob/main/README.md#%EF%B8%8F-contributing" - } - ], - "dependencies": { - "spacetrim": "0.11.39" - } - }, - "node_modules/@puppeteer/browsers": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", - "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", - "dev": true, - "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/debug": { - "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" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, "node_modules/@react-native-community/cli": { "version": "12.3.7", "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-12.3.7.tgz", @@ -3774,12 +3728,6 @@ "node": ">=6" } }, - "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==", - "dev": true - }, "node_modules/@types/eslint": { "version": "8.56.10", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", @@ -3856,15 +3804,9 @@ "optional": true }, "node_modules/@types/uuid": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz", - "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==", - "dev": true - }, - "node_modules/@types/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/which/-/which-2.0.2.tgz", - "integrity": "sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", "dev": true }, "node_modules/@types/yargs": { @@ -3894,164 +3836,6 @@ "@types/node": "*" } }, - "node_modules/@wdio/config": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@wdio/config/-/config-8.40.2.tgz", - "integrity": "sha512-RED2vcdX5Zdd6r+K+aWcjK4douxjJY4LP/8YvvavgqM0TURd5PDI0Y7IEz7+BIJOT4Uh+3atZawIN9/3yWFeag==", - "dev": true, - "dependencies": { - "@wdio/logger": "8.38.0", - "@wdio/types": "8.39.0", - "@wdio/utils": "8.40.2", - "decamelize": "^6.0.0", - "deepmerge-ts": "^5.0.0", - "glob": "^10.2.2", - "import-meta-resolve": "^4.0.0" - }, - "engines": { - "node": "^16.13 || >=18" - } - }, - "node_modules/@wdio/config/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/@wdio/config/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@wdio/config/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@wdio/logger": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-8.38.0.tgz", - "integrity": "sha512-kcHL86RmNbcQP+Gq/vQUGlArfU6IIcbbnNp32rRIraitomZow+iEoc519rdQmSVusDozMS5DZthkgDdxK+vz6Q==", - "dev": true, - "dependencies": { - "chalk": "^5.1.2", - "loglevel": "^1.6.0", - "loglevel-plugin-prefix": "^0.8.4", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": "^16.13 || >=18" - } - }, - "node_modules/@wdio/logger/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@wdio/logger/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@wdio/logger/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/@wdio/protocols": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-8.38.0.tgz", - "integrity": "sha512-7BPi7aXwUtnXZPeWJRmnCNFjyDvGrXlBmN9D4Pi58nILkyjVRQKEY9/qv/pcdyB0cvmIvw++Kl/1Lg+RxG++UA==", - "dev": true - }, - "node_modules/@wdio/types": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/@wdio/types/-/types-8.39.0.tgz", - "integrity": "sha512-86lcYROTapOJuFd9ouomFDfzDnv3Kn+jE0RmqfvN9frZAeLVJ5IKjX9M6HjplsyTZhjGO1uCaehmzx+HJus33Q==", - "dev": true, - "dependencies": { - "@types/node": "^20.1.0" - }, - "engines": { - "node": "^16.13 || >=18" - } - }, - "node_modules/@wdio/utils": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-8.40.2.tgz", - "integrity": "sha512-leYcCUSaAdLUCVKqRKNgMCASPOUo/VvOTKETiZ/qpdY2azCBt/KnLugtiycCzakeYg6Kp+VIjx5fkm0M7y4qhA==", - "dev": true, - "dependencies": { - "@puppeteer/browsers": "^1.6.0", - "@wdio/logger": "8.38.0", - "@wdio/types": "8.39.0", - "decamelize": "^6.0.0", - "deepmerge-ts": "^5.1.0", - "edgedriver": "^5.5.0", - "geckodriver": "^4.3.1", - "get-port": "^7.0.0", - "import-meta-resolve": "^4.0.0", - "locate-app": "^2.1.0", - "safaridriver": "^0.1.0", - "split2": "^4.2.0", - "wait-port": "^1.0.4" - }, - "engines": { - "node": "^16.13 || >=18" - } - }, "node_modules/@webassemblyjs/ast": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", @@ -4275,12 +4059,12 @@ } }, "node_modules/@xmldom/xmldom": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", - "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.5.tgz", + "integrity": "sha512-6g1EwSs8cr8JhP1iBxzyVAWM6BIDvx9Y3FZRIQiMDzgG43Pxi8YkWOZ0nQj2NHgNzgXDZbJewFx/n+YAvMZrfg==", "dev": true, "engines": { - "node": ">=10.0.0" + "node": ">=14.6" } }, "node_modules/@xtuc/ieee754": { @@ -4295,17 +4079,6 @@ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, - "node_modules/@zip.js/zip.js": { - "version": "2.7.52", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.52.tgz", - "integrity": "sha512-+5g7FQswvrCHwYKNMd/KFxZSObctLSsQOgqBSi0LzwHo3li9Eh1w5cF5ndjQw9Zbr3ajVnd2+XyiX85gAetx1Q==", - "dev": true, - "engines": { - "bun": ">=0.7.0", - "deno": ">=1.0.0", - "node": ">=16.5.0" - } - }, "node_modules/abbrev": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", @@ -4342,9 +4115,9 @@ } }, "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -4580,24 +4353,6 @@ "node": "*" } }, - "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==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ast-types/node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", - "dev": true - }, "node_modules/astral-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", @@ -4632,12 +4387,6 @@ "proxy-from-env": "^1.1.0" } }, - "node_modules/b4a": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", - "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", - "dev": true - }, "node_modules/babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -5476,53 +5225,6 @@ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, - "node_modules/bare-events": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", - "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", - "dev": true, - "optional": true - }, - "node_modules/bare-fs": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", - "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", - "dev": true, - "optional": true, - "dependencies": { - "bare-events": "^2.0.0", - "bare-path": "^2.0.0", - "bare-stream": "^2.0.0" - } - }, - "node_modules/bare-os": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", - "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", - "dev": true, - "optional": true - }, - "node_modules/bare-path": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", - "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", - "dev": true, - "optional": true, - "dependencies": { - "bare-os": "^2.1.0" - } - }, - "node_modules/bare-stream": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.0.tgz", - "integrity": "sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA==", - "dev": true, - "optional": true, - "dependencies": { - "b4a": "^1.6.6", - "streamx": "^2.20.0" - } - }, "node_modules/base64-arraybuffer": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", @@ -5561,15 +5263,6 @@ "node": "^4.5.0 || >= 5.9" } }, - "node_modules/basic-ftp": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", - "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -6103,15 +5796,6 @@ } ] }, - "node_modules/centra": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz", - "integrity": "sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.6" - } - }, "node_modules/chai": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", @@ -6352,65 +6036,22 @@ "fsevents": "~2.3.2" } }, - "node_modules/chrome-launcher": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-1.1.2.tgz", - "integrity": "sha512-YclTJey34KUm5jB1aEJCq807bSievi7Nb/TU4Gu504fUYi3jw3KCIaH6L7nFWQhdEgH3V+wCh+kKD1P5cXnfxw==", + "node_modules/chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", "dev": true, "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^2.0.1" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" + "tslib": "^1.9.0" }, "engines": { - "node": ">=12.13.0" + "node": ">=6.0" } }, - "node_modules/chrome-launcher/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "dev": true, - "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/chromium-bidi": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.8.tgz", - "integrity": "sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==", - "dev": true, - "dependencies": { - "mitt": "3.0.1", - "urlpattern-polyfill": "10.0.0" - }, - "peerDependencies": { - "devtools-protocol": "*" - } - }, - "node_modules/chromium-edge-launcher": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", - "integrity": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==", + "node_modules/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==", "dev": true, "optional": true, "dependencies": { @@ -6571,6 +6212,7 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, + "optional": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -6585,6 +6227,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "optional": true, "engines": { "node": ">=8" } @@ -6594,6 +6237,7 @@ "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, + "optional": true, "engines": { "node": ">=8" } @@ -6603,6 +6247,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "optional": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -6617,6 +6262,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "optional": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -6660,18 +6306,18 @@ } }, "node_modules/codeceptjs": { - "version": "3.6.7", - "resolved": "https://registry.npmjs.org/codeceptjs/-/codeceptjs-3.6.7.tgz", - "integrity": "sha512-gUA1kabCQYBDqypT632aHcO7PfFV7RVhZmv/vk7WwJC4DWCfV0EXiRDVOCPkLk6Es5c5RlR/2dKeHRE0+ze5wg==", + "version": "3.6.10", + "resolved": "https://registry.npmjs.org/codeceptjs/-/codeceptjs-3.6.10.tgz", + "integrity": "sha512-enlNNuzNkXCYAAfU8yWi+ZoHvUFGUWjFF/H1IYXbik7krrPh0fte0PXU2LNWboHtY7Hvpiqwk3IgPcM1o5xX6Q==", "dev": true, "dependencies": { "@codeceptjs/configure": "1.0.1", "@codeceptjs/helper": "2.0.4", - "@cucumber/cucumber-expressions": "17", - "@cucumber/gherkin": "26", - "@cucumber/messages": "25.0.1", - "@xmldom/xmldom": "0.8.10", - "acorn": "8.12.1", + "@cucumber/cucumber-expressions": "18", + "@cucumber/gherkin": "30", + "@cucumber/messages": "27.0.0", + "@xmldom/xmldom": "0.9.5", + "acorn": "8.14.0", "arrify": "2.0.1", "axios": "1.7.7", "chai": "5.1.1", @@ -6683,10 +6329,9 @@ "chai-string": "1.5.0", "chalk": "4.1.2", "commander": "11.1.0", - "cross-spawn": "7.0.3", + "cross-spawn": "7.0.5", "css-to-xpath": "0.1.0", "csstoxpath": "1.6.0", - "devtools": "8.40.2", "envinfo": "7.14.0", "escape-string-regexp": "4.0.0", "figures": "3.2.0", @@ -6695,22 +6340,22 @@ "glob": "6.0.1", "html-minifier-terser": "7.2.0", "inquirer": "6.5.2", + "invisi-data": "^1.0.0", "joi": "17.13.3", "js-beautify": "1.15.1", "lodash.clonedeep": "4.5.0", "lodash.merge": "4.6.2", "mkdirp": "1.0.4", - "mocha": "10.7.3", - "monocart-coverage-reports": "2.10.3", + "mocha": "10.8.2", + "monocart-coverage-reports": "2.11.3", "ms": "2.1.3", "ora-classic": "5.4.2", - "pactum": "3.7.1", "parse-function": "5.6.10", - "parse5": "7.1.2", + "parse5": "7.2.1", "promise-retry": "1.1.1", "resq": "1.11.0", "sprintf-js": "1.1.1", - "uuid": "10.0" + "uuid": "11.0" }, "bin": { "codeceptjs": "bin/codecept.js" @@ -6736,37 +6381,6 @@ "codeceptjs": ">= 2.3.3" } }, - "node_modules/codeceptjs/node_modules/@cucumber/messages": { - "version": "25.0.1", - "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-25.0.1.tgz", - "integrity": "sha512-RjjhmzcauX5eYfcKns5pgenefDJQcfXE3ZDrVWdUDGcoaoyFVDmj+ZzQZWRWqFrfMjP3lKHJss6LtvIP/z+h8g==", - "dev": true, - "dependencies": { - "@types/uuid": "9.0.8", - "class-transformer": "0.5.1", - "reflect-metadata": "0.2.2", - "uuid": "9.0.1" - } - }, - "node_modules/codeceptjs/node_modules/@cucumber/messages/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/codeceptjs/node_modules/@types/uuid": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", - "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", - "dev": true - }, "node_modules/codeceptjs/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -6860,9 +6474,9 @@ } }, "node_modules/codeceptjs/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", + "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -6988,12 +6602,6 @@ "node": ">= 14.16" } }, - "node_modules/codeceptjs/node_modules/reflect-metadata": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", - "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", - "dev": true - }, "node_modules/codeceptjs/node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -7042,19 +6650,6 @@ "node": ">= 10.0.0" } }, - "node_modules/codeceptjs/node_modules/uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/codeceptjs/node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -7477,35 +7072,6 @@ "node": ">=4.0" } }, - "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==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.12" - } - }, - "node_modules/cross-fetch/node_modules/node-fetch": { - "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" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -7581,15 +7147,6 @@ "node": ">= 6" } }, - "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==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, "node_modules/dayjs": { "version": "1.11.10", "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", @@ -7606,18 +7163,6 @@ "ms": "^2.1.1" } }, - "node_modules/decamelize": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-6.0.0.tgz", - "integrity": "sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/decompress-response": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", @@ -7652,12 +7197,6 @@ "node": ">=0.10.0" } }, - "node_modules/deep-override": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/deep-override/-/deep-override-1.0.2.tgz", - "integrity": "sha512-+bAuLuYqaVVUWPaq8rmU8NLTX85p4I5k5/cVdhBioEfH7k+5NlGdv4NoJVQcJRByqzzTWWzTpih+pU1wBTmMow==", - "dev": true - }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -7668,15 +7207,6 @@ "node": ">=0.10.0" } }, - "node_modules/deepmerge-ts": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/deepmerge-ts/-/deepmerge-ts-5.1.0.tgz", - "integrity": "sha512-eS8dRJOckyo9maw9Tu5O5RUi/4inFLrnoLkBe3cPfDMx3WZioXtmOew4TXQaxq7Rhl4xjDtR7c6x8nNTxOvbFw==", - "dev": true, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -7722,20 +7252,6 @@ "node": ">= 0.4" } }, - "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==", - "dev": true, - "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", @@ -8215,74 +7731,6 @@ "node": ">= 10.0.0" } }, - "node_modules/devtools": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-8.40.2.tgz", - "integrity": "sha512-DR/P5LEdxTJO5tVGW4UtjMKKpZbg3g8+VmLQWwq5Lz7pMP1I83G2PlQ3JrRJGDTx9ur52/1QLYHuDrhxYjCMCA==", - "dev": true, - "dependencies": { - "@types/node": "^20.1.0", - "@wdio/config": "8.40.2", - "@wdio/logger": "8.38.0", - "@wdio/protocols": "8.38.0", - "@wdio/types": "8.39.0", - "@wdio/utils": "8.40.2", - "chrome-launcher": "^1.0.0", - "edge-paths": "^3.0.5", - "import-meta-resolve": "^4.0.0", - "puppeteer-core": "^21.11.0", - "query-selector-shadow-dom": "^1.0.0", - "ua-parser-js": "^1.0.37", - "uuid": "^10.0.0", - "which": "^4.0.0" - }, - "engines": { - "node": "^16.13 || >=18" - } - }, - "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==", - "dev": true - }, - "node_modules/devtools/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true, - "engines": { - "node": ">=16" - } - }, - "node_modules/devtools/node_modules/uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/devtools/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^16.13.0 || >=18.0.0" - } - }, "node_modules/diff": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", @@ -8409,80 +7857,6 @@ "node": ">=6.0.0" } }, - "node_modules/edge-paths": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/edge-paths/-/edge-paths-3.0.5.tgz", - "integrity": "sha512-sB7vSrDnFa4ezWQk9nZ/n0FdpdUuC6R1EOrlU3DL+bovcNFK28rqu2emmAUjujYEJTWIgQGqgVVWUZXMnc8iWg==", - "dev": true, - "dependencies": { - "@types/which": "^2.0.1", - "which": "^2.0.2" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/shirshak55" - } - }, - "node_modules/edge-paths/node_modules/which": { - "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" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/edgedriver": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/edgedriver/-/edgedriver-5.6.1.tgz", - "integrity": "sha512-3Ve9cd5ziLByUdigw6zovVeWJjVs8QHVmqOB0sJ0WNeVPcwf4p18GnxMmVvlFmYRloUwf5suNuorea4QzwBIOA==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@wdio/logger": "^8.38.0", - "@zip.js/zip.js": "^2.7.48", - "decamelize": "^6.0.0", - "edge-paths": "^3.0.5", - "fast-xml-parser": "^4.4.1", - "node-fetch": "^3.3.2", - "which": "^4.0.0" - }, - "bin": { - "edgedriver": "bin/edgedriver.js" - } - }, - "node_modules/edgedriver/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true, - "engines": { - "node": ">=16" - } - }, - "node_modules/edgedriver/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^16.13.0 || >=18.0.0" - } - }, "node_modules/editorconfig": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", @@ -8652,9 +8026,9 @@ } }, "node_modules/engine.io": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.6.1.tgz", - "integrity": "sha512-dfs8EVg/i7QjFsXxn7cCRQ+Wai1G1TlEvHhdYEi80fxn5R1vZ2K661O6v/rezj1FP234SZ14r9CmJke99iYDGg==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.6.2.tgz", + "integrity": "sha512-C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w==", "dev": true, "dependencies": { "accepts": "~1.3.4", @@ -8662,16 +8036,16 @@ "cookie": "~0.4.1", "debug": "~4.1.0", "engine.io-parser": "~2.2.0", - "ws": "~7.4.2" + "ws": "~7.5.10" }, "engines": { "node": ">=8.0.0" } }, "node_modules/engine.io-client": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.3.tgz", - "integrity": "sha512-qsgyc/CEhJ6cgMUwxRRtOndGVhIu5hpL5tR4umSpmX/MvkFoIxUTM7oFMDQumHNzlNLwSVy6qhstFPoWTf7dOw==", + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.4.tgz", + "integrity": "sha512-ydc8uuMMDxC5KCKNJN3zZKYJk2sgyTuTZQ7Aj1DJSsLKAcizA/PzWivw8fZMIjJVBo2CJOYzntv4FSjY/Lr//g==", "dev": true, "dependencies": { "component-emitter": "~1.3.0", @@ -8682,7 +8056,7 @@ "indexof": "0.0.1", "parseqs": "0.0.6", "parseuri": "0.0.6", - "ws": "~7.4.2", + "ws": "~7.5.10", "xmlhttprequest-ssl": "~1.6.2", "yeast": "0.1.2" } @@ -8702,27 +8076,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/engine.io-client/node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/engine.io-parser": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.1.tgz", @@ -8745,27 +8098,6 @@ "node": ">= 0.6" } }, - "node_modules/engine.io/node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/enhanced-resolve": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", @@ -8975,54 +8307,14 @@ "node": ">=0.8.0" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/estraverse": { - "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" - } - }, - "node_modules/escodegen/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==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" @@ -9033,6 +8325,7 @@ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, + "optional": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -9393,12 +8686,6 @@ "integrity": "sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==", "dev": true }, - "node_modules/fast-fifo": { - "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-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -9427,6 +8714,7 @@ "url": "https://paypal.me/naturalintelligence" } ], + "optional": true, "dependencies": { "strnum": "^1.0.5" }, @@ -9468,29 +8756,6 @@ "pend": "~1.2.0" } }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, - "engines": { - "node": "^12.20 || >= 14.13" - } - }, "node_modules/figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", @@ -9742,29 +9007,6 @@ "node": ">= 6" } }, - "node_modules/form-data-lite": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/form-data-lite/-/form-data-lite-1.0.3.tgz", - "integrity": "sha512-P7xPqAiOPKzC9Q9aywAZJCQq4QOE5WokPb3HrcWRh7C57RKytueJzoORZAVgHBNvK/lL7E+FxjQjd4X/zbecEQ==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-lite": "^1.0.3" - } - }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dev": true, - "dependencies": { - "fetch-blob": "^3.1.2" - }, - "engines": { - "node": ">=12.20.0" - } - }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -9836,169 +9078,6 @@ "node": ">=8.3.0" } }, - "node_modules/geckodriver": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/geckodriver/-/geckodriver-4.5.1.tgz", - "integrity": "sha512-lGCRqPMuzbRNDWJOQcUqhNqPvNsIFu6yzXF8J/6K3WCYFd2r5ckbeF7h1cxsnjA7YLSEiWzERCt6/gjZ3tW0ug==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@wdio/logger": "^9.0.0", - "@zip.js/zip.js": "^2.7.48", - "decamelize": "^6.0.0", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.5", - "node-fetch": "^3.3.2", - "tar-fs": "^3.0.6", - "which": "^4.0.0" - }, - "bin": { - "geckodriver": "bin/geckodriver.js" - }, - "engines": { - "node": "^16.13 || >=18 || >=20" - } - }, - "node_modules/geckodriver/node_modules/@wdio/logger": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-9.1.3.tgz", - "integrity": "sha512-cumRMK/gE1uedBUw3WmWXOQ7HtB6DR8EyKQioUz2P0IJtRRpglMBdZV7Svr3b++WWawOuzZHMfbTkJQmaVt8Gw==", - "dev": true, - "dependencies": { - "chalk": "^5.1.2", - "loglevel": "^1.6.0", - "loglevel-plugin-prefix": "^0.8.4", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18.20.0" - } - }, - "node_modules/geckodriver/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/geckodriver/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/geckodriver/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/geckodriver/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/geckodriver/node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/geckodriver/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true, - "engines": { - "node": ">=16" - } - }, - "node_modules/geckodriver/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/geckodriver/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/geckodriver/node_modules/tar-fs": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", - "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", - "dev": true, - "dependencies": { - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - }, - "optionalDependencies": { - "bare-fs": "^2.1.1", - "bare-path": "^2.1.0" - } - }, - "node_modules/geckodriver/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^16.13.0 || >=18.0.0" - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -10046,18 +9125,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-7.1.0.tgz", - "integrity": "sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -10070,88 +9137,6 @@ "node": ">=6" } }, - "node_modules/get-uri": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", - "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", - "dev": true, - "dependencies": { - "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.2", - "debug": "^4.3.4", - "fs-extra": "^11.2.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/get-uri/node_modules/data-uri-to-buffer": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", - "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, - "node_modules/get-uri/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/get-uri/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/get-uri/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/get-uri/node_modules/universalify": { - "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" - } - }, "node_modules/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", @@ -10575,54 +9560,6 @@ "node": ">= 0.8" } }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/http-proxy-agent/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/http-proxy-agent/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/http-proxy-agent/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -10781,16 +9718,6 @@ "node": ">=8" } }, - "node_modules/import-meta-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", - "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -10908,18 +9835,11 @@ "loose-envify": "^1.0.0" } }, - "node_modules/ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "dev": true, - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - }, - "engines": { - "node": ">= 12" - } + "node_modules/invisi-data": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/invisi-data/-/invisi-data-1.1.2.tgz", + "integrity": "sha512-cJOGrcBOGbWwrxGGxQriFS4Bq9W+OVTS1fQZaPJ6BMe+UwK3dmadJ1Qm8KFE7JXfjURni1N66xepjSskIvUMWA==", + "dev": true }, "node_modules/ipaddr.js": { "version": "1.9.1", @@ -11021,6 +9941,7 @@ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, + "optional": true, "bin": { "is-docker": "cli.js" }, @@ -11209,6 +10130,7 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, + "optional": true, "dependencies": { "is-docker": "^2.0.0" }, @@ -12030,12 +10952,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true - }, "node_modules/jsc-android": { "version": "250231.0.0", "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", @@ -12201,15 +11117,6 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/json-query": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/json-query/-/json-query-2.2.2.tgz", - "integrity": "sha512-y+IcVZSdqNmS4fO8t1uZF6RMMs0xh3SrTjJr9bp1X3+v0Q13+7Cyv12dSmKwDswp/H427BVtpkLWhGxYu3ZWRA==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -12278,15 +11185,6 @@ "node": ">=6" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -12297,38 +11195,6 @@ "node": ">=6" } }, - "node_modules/lightcookie": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/lightcookie/-/lightcookie-1.0.25.tgz", - "integrity": "sha512-SrY/+eBPaKAMnsn7mCsoOMZzoQyCyHHHZlFCu2fjo28XxSyCLjlooKiTxyrXTg8NPaHp1YzWi0lcGG1gDi6KHw==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dev": true - }, - "node_modules/lighthouse-logger": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-2.0.1.tgz", - "integrity": "sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==", - "dev": true, - "dependencies": { - "debug": "^2.6.9", - "marky": "^1.2.2" - } - }, - "node_modules/lighthouse-logger/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/lighthouse-logger/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -12364,39 +11230,6 @@ "json5": "lib/cli.js" } }, - "node_modules/locate-app": { - "version": "2.4.43", - "resolved": "https://registry.npmjs.org/locate-app/-/locate-app-2.4.43.tgz", - "integrity": "sha512-BX6NEdECUGcDQw8aqqg02qLyF9rF8V+dAfyAnBzL2AofIlIvf4Q6EGXnzVWpWot9uBE+x/o8CjXHo7Zlegu91Q==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://buymeacoffee.com/hejny" - }, - { - "type": "github", - "url": "https://github.com/hejny/locate-app/blob/main/README.md#%EF%B8%8F-contributing" - } - ], - "dependencies": { - "@promptbook/utils": "0.70.0-1", - "type-fest": "2.13.0", - "userhome": "1.0.0" - } - }, - "node_modules/locate-app/node_modules/type-fest": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.13.0.tgz", - "integrity": "sha512-lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -12882,25 +11715,6 @@ "node": ">=6" } }, - "node_modules/loglevel": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz", - "integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" - } - }, - "node_modules/loglevel-plugin-prefix": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.8.4.tgz", - "integrity": "sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==", - "dev": true - }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -12989,7 +11803,8 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", - "dev": true + "dev": true, + "optional": true }, "node_modules/matcher": { "version": "3.0.0", @@ -13017,18 +11832,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/matchit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/matchit/-/matchit-1.1.0.tgz", - "integrity": "sha512-+nGYoOlfHmxe5BW5tE0EMJppXEwdSf8uBA1GTZC7Q77kbT35+VKLYJMzVNWCHSsga1ps1tPYFtFyvxvKzWVmMA==", - "dev": true, - "dependencies": { - "@arr/every": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -13577,12 +12380,6 @@ "node": ">= 0.6" } }, - "node_modules/mime-lite": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mime-lite/-/mime-lite-1.0.3.tgz", - "integrity": "sha512-V85l97zJSTG8FEvmdTlmNYb0UMrVBwvRjw7bWTf/aT6KjFwtz3iTz8D2tuFIp7lwiaO2C5ecnrEmSkkMRCrqVw==", - "dev": true - }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", @@ -13643,12 +12440,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==", - "dev": true - }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -13661,16 +12452,10 @@ "mkdirp": "bin/cmd.js" } }, - "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==", - "dev": true - }, "node_modules/mocha": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", - "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.8.2.tgz", + "integrity": "sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==", "dev": true, "dependencies": { "ansi-colors": "^4.1.3", @@ -13732,9 +12517,9 @@ } }, "node_modules/mocha/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "dependencies": { "ms": "^2.1.3" @@ -13965,19 +12750,17 @@ } }, "node_modules/monocart-coverage-reports": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/monocart-coverage-reports/-/monocart-coverage-reports-2.10.3.tgz", - "integrity": "sha512-CVBjRABy5ygNMVnk5IOVZyB2gfiCUG2xxZuFd5D3nuiP/ja2XWC9GJ8ddgr4fXwrbm8vMkSjOxXs/mfvgP9pSA==", + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/monocart-coverage-reports/-/monocart-coverage-reports-2.11.3.tgz", + "integrity": "sha512-4wUKlebRpeDZxtvqoflmQs7AULeiZmwvFpFg3PNs64LiG2IbVu48fzznTLheIc8t/MxStIRxRd4EIoS8aRsU7A==", "dev": true, "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jridgewell/sourcemap-codec": "^1.5.0", - "acorn": "^8.12.1", + "acorn": "^8.14.0", "acorn-loose": "^8.4.0", - "acorn-walk": "^8.3.3", + "acorn-walk": "^8.3.4", "commander": "^12.1.0", "console-grid": "^2.2.2", - "eight-colors": "^1.3.0", + "eight-colors": "^1.3.1", "foreground-child": "^3.3.0", "istanbul-lib-coverage": "^3.2.2", "istanbul-lib-report": "^3.0.1", @@ -14093,15 +12876,6 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "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==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -14154,43 +12928,6 @@ "node": ">= 0.10.5" } }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], - "engines": { - "node": ">=10.5.0" - } - }, - "node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dev": true, - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -14498,15 +13235,6 @@ "node": ">=4" } }, - "node_modules/openapi-fuzzer-core": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/openapi-fuzzer-core/-/openapi-fuzzer-core-1.0.6.tgz", - "integrity": "sha512-FJNJIfgUFuv4NmVGq9MYdoKra2GrkDy2uhIjE2YGlw30UA1glf4SXLMhI4UwdcJ8jisKdIxi7lXrfej8GvNW5w==", - "dev": true, - "dependencies": { - "klona": "^2.0.4" - } - }, "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", @@ -14887,120 +13615,6 @@ "node": ">=6" } }, - "node_modules/pac-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", - "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", - "dev": true, - "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.5", - "pac-resolver": "^7.0.1", - "socks-proxy-agent": "^8.0.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/pac-resolver": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", - "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", - "dev": true, - "dependencies": { - "degenerator": "^5.0.0", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, - "node_modules/pactum": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/pactum/-/pactum-3.7.1.tgz", - "integrity": "sha512-r+R1dMy2MfRCQpAHohMyICusiMz14t0E+bhnLDScl2x4lXJKQAvQUGV/WWKUUxN2DS0Jdm0PUj6KjblfcSk1GA==", - "dev": true, - "dependencies": { - "@exodus/schemasafe": "^1.3.0", - "deep-override": "^1.0.2", - "form-data-lite": "^1.0.3", - "json-query": "^2.2.2", - "klona": "^2.0.6", - "lightcookie": "^1.0.25", - "openapi-fuzzer-core": "^1.0.6", - "pactum-matchers": "^1.1.7", - "parse-graphql": "^1.0.0", - "phin": "^3.7.0", - "polka": "^0.5.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pactum-matchers": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/pactum-matchers/-/pactum-matchers-1.1.7.tgz", - "integrity": "sha512-RqwewcUje6vhcYQGbPfdSXkcp/Vtwn4WmmTWLSmqp0CGxBroCEqRg3JMIjkjQTZCd2VmG+tTcQw+n4P/iuqv3Q==", - "dev": true - }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -15036,12 +13650,6 @@ "node": ">=8.11" } }, - "node_modules/parse-graphql": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-graphql/-/parse-graphql-1.0.0.tgz", - "integrity": "sha512-NjvQHHaiPCxPZrhm/kKnorxOv7r/eA+tE0VW5E8iJMH9wTqFA1V0YK/7nbpxVu3JdXUxyWTKMez9lsHUtAwa0w==", - "dev": true - }, "node_modules/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -15057,12 +13665,12 @@ } }, "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", "dev": true, "dependencies": { - "entities": "^4.4.0" + "entities": "^4.5.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" @@ -15198,18 +13806,6 @@ "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", "dev": true }, - "node_modules/phin": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz", - "integrity": "sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==", - "dev": true, - "dependencies": { - "centra": "^2.7.0" - }, - "engines": { - "node": ">= 8" - } - }, "node_modules/picocolors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", @@ -15321,16 +13917,6 @@ "node": ">=10.13.0" } }, - "node_modules/polka": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/polka/-/polka-0.5.2.tgz", - "integrity": "sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==", - "dev": true, - "dependencies": { - "@polka/url": "^0.5.0", - "trouter": "^2.0.1" - } - }, "node_modules/prepend-http": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", @@ -15595,82 +14181,6 @@ "node": ">= 0.10" } }, - "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==", - "dev": true, - "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.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "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==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/proxy-agent/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -15694,68 +14204,13 @@ "once": "^1.3.1" } }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/puppeteer-core": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.11.0.tgz", - "integrity": "sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==", - "dev": true, - "dependencies": { - "@puppeteer/browsers": "1.9.1", - "chromium-bidi": "0.5.8", - "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/debug": { - "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" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "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==", - "dev": true, - "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/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" } }, "node_modules/qs": { @@ -15773,12 +14228,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/query-selector-shadow-dom": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/query-selector-shadow-dom/-/query-selector-shadow-dom-1.0.1.tgz", - "integrity": "sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==", - "dev": true - }, "node_modules/queue": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", @@ -15789,12 +14238,6 @@ "inherits": "~2.0.3" } }, - "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==", - "dev": true - }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -16129,9 +14572,9 @@ } }, "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", "dev": true }, "node_modules/regenerate": { @@ -16426,12 +14869,6 @@ "npm": ">=2.0.0" } }, - "node_modules/safaridriver": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/safaridriver/-/safaridriver-0.1.2.tgz", - "integrity": "sha512-4R309+gWflJktzPXBQCobbWEHlzC4aK3a+Ov3tz2Ib2aBxiwd11phkdIBH1l0EO22x24CJMUQkpKFumRriCSRg==", - "dev": true - }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -16739,16 +15176,6 @@ "node": ">=6" } }, - "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==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, "node_modules/socket.io": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.5.0.tgz", @@ -16846,69 +15273,6 @@ "integrity": "sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==", "dev": true }, - "node_modules/socks": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", - "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", - "dev": true, - "dependencies": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", - "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", - "dev": true, - "dependencies": { - "agent-base": "^7.1.1", - "debug": "^4.3.4", - "socks": "^2.8.3" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/socks-proxy-agent/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/socks-proxy-agent/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/socks-proxy-agent/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -16933,36 +15297,12 @@ "source-map": "^0.5.6" } }, - "node_modules/spacetrim": { - "version": "0.11.39", - "resolved": "https://registry.npmjs.org/spacetrim/-/spacetrim-0.11.39.tgz", - "integrity": "sha512-S/baW29azJ7py5ausQRE2S6uEDQnlxgMHOEEq4V770ooBDD1/9kZnxRcco/tjZYuDuqYXblCk/r3N13ZmvHZ2g==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://buymeacoffee.com/hejny" - }, - { - "type": "github", - "url": "https://github.com/hejny/spacetrim/blob/main/README.md#%EF%B8%8F-contributing" - } - ] - }, - "node_modules/split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "dev": true, - "engines": { - "node": ">= 10.x" - } - }, "node_modules/sprintf-js": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true + "dev": true, + "optional": true }, "node_modules/stack-utils": { "version": "2.0.3", @@ -17041,20 +15381,6 @@ "stream-chain": "^2.2.5" } }, - "node_modules/streamx": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", - "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", - "dev": true, - "dependencies": { - "fast-fifo": "^1.3.2", - "queue-tick": "^1.0.1", - "text-decoder": "^1.1.0" - }, - "optionalDependencies": { - "bare-events": "^2.2.0" - } - }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -17229,7 +15555,8 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", - "dev": true + "dev": true, + "optional": true }, "node_modules/sudo-prompt": { "version": "9.2.1", @@ -17283,28 +15610,6 @@ "node": ">=6" } }, - "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==", - "dev": true, - "dependencies": { - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - } - }, - "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==", - "dev": true, - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, "node_modules/telnet-client": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/telnet-client/-/telnet-client-1.2.8.tgz", @@ -17500,15 +15805,6 @@ "source-map": "^0.6.0" } }, - "node_modules/text-decoder": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.0.tgz", - "integrity": "sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==", - "dev": true, - "dependencies": { - "b4a": "^1.6.4" - } - }, "node_modules/throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", @@ -17601,7 +15897,8 @@ "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true + "dev": true, + "optional": true }, "node_modules/trace-event-lib": { "version": "1.4.1", @@ -17625,18 +15922,6 @@ "node": ">=0.10.0" } }, - "node_modules/trouter": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/trouter/-/trouter-2.0.1.tgz", - "integrity": "sha512-kr8SKKw94OI+xTGOkfsvwZQ8mWoikZDd2n8XZHjJVZUARZT+4/VV6cacRS6CLsH9bNm+HFIPU1Zx4CnNnb4qlQ==", - "dev": true, - "dependencies": { - "matchit": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/truncate-utf8-bytes": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", @@ -17726,32 +16011,6 @@ "node": ">=14.17" } }, - "node_modules/ua-parser-js": { - "version": "1.0.39", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", - "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], - "bin": { - "ua-parser-js": "script/cli.js" - }, - "engines": { - "node": "*" - } - }, "node_modules/unbox-primitive": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", @@ -17767,16 +16026,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unbzip2-stream": { - "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" - } - }, "node_modules/undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", @@ -17892,21 +16141,6 @@ "node": ">=4" } }, - "node_modules/urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true - }, - "node_modules/userhome": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/userhome/-/userhome-1.0.0.tgz", - "integrity": "sha512-ayFKY3H+Pwfy4W98yPdtH1VqH4psDeyW8lYYFzfecR9d6hqLpqhecktvYR3SEEXt7vG0S1JEpciI3g94pMErig==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/utf8-byte-length": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", @@ -17940,149 +16174,34 @@ } }, "node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vlq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", - "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", - "dev": true, - "optional": true - }, - "node_modules/wait-port": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/wait-port/-/wait-port-1.1.0.tgz", - "integrity": "sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==", - "dev": true, - "dependencies": { - "chalk": "^4.1.2", - "commander": "^9.3.0", - "debug": "^4.3.4" - }, - "bin": { - "wait-port": "bin/wait-port.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/wait-port/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/wait-port/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/wait-port/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/wait-port/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/wait-port/node_modules/commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || >=14" - } - }, - "node_modules/wait-port/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/wait-port/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.3.tgz", + "integrity": "sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==", "dev": true, - "engines": { - "node": ">=8" + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/esm/bin/uuid" } }, - "node_modules/wait-port/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/wait-port/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, + "node_modules/vlq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "dev": true, + "optional": true + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -18115,20 +16234,12 @@ "defaults": "^1.0.3" } }, - "node_modules/web-streams-polyfill": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", - "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "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==", - "dev": true + "dev": true, + "optional": true }, "node_modules/webpack": { "version": "5.92.0", @@ -18350,6 +16461,7 @@ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, + "optional": true, "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -18688,6 +16800,7 @@ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, + "optional": true, "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -18706,6 +16819,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, + "optional": true, "engines": { "node": ">=12" } @@ -18742,6 +16856,7 @@ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, + "optional": true, "engines": { "node": ">=8" } @@ -18751,6 +16866,7 @@ "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, + "optional": true, "engines": { "node": ">=8" } @@ -18760,6 +16876,7 @@ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, + "optional": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -18774,6 +16891,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "optional": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -18830,12 +16948,6 @@ "@jridgewell/trace-mapping": "^0.3.24" } }, - "@arr/every": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", - "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==", - "dev": true - }, "@babel/code-frame": { "version": "7.25.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", @@ -20030,12 +18142,6 @@ "to-fast-properties": "^2.0.0" } }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, "@codeceptjs/configure": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/@codeceptjs/configure/-/configure-0.6.2.tgz", @@ -20134,33 +18240,61 @@ } }, "@cucumber/cucumber-expressions": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@cucumber/cucumber-expressions/-/cucumber-expressions-17.1.0.tgz", - "integrity": "sha512-PCv/ppsPynniKPWJr5v566daCVe+pbxQpHGrIu/Ev57cCH9Rv+X0F6lio4Id3Z64TaG7btCRLUGewIgLwmrwOA==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@cucumber/cucumber-expressions/-/cucumber-expressions-18.0.1.tgz", + "integrity": "sha512-NSid6bI+7UlgMywl5octojY5NXnxR9uq+JisjOrO52VbFsQM6gTWuQFE8syI10KnIBEdPzuEUSVEeZ0VFzRnZA==", "dev": true, "requires": { "regexp-match-indices": "1.0.2" } }, "@cucumber/gherkin": { - "version": "26.0.3", - "resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-26.0.3.tgz", - "integrity": "sha512-xwJHi//bLFEU1drIyw2yswwUHnnVWO4XcyVBbCTDs6DkSh262GkogFI/IWwChZqJfOXnPglzLGxR1DibcZsILA==", + "version": "30.0.4", + "resolved": "https://registry.npmjs.org/@cucumber/gherkin/-/gherkin-30.0.4.tgz", + "integrity": "sha512-pb7lmAJqweZRADTTsgnC3F5zbTh3nwOB1M83Q9ZPbUKMb3P76PzK6cTcPTJBHWy3l7isbigIv+BkDjaca6C8/g==", "dev": true, "requires": { - "@cucumber/messages": "19.1.4 - 21" + "@cucumber/messages": ">=19.1.4 <=26" + }, + "dependencies": { + "@cucumber/messages": { + "version": "26.0.1", + "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-26.0.1.tgz", + "integrity": "sha512-DIxSg+ZGariumO+Lq6bn4kOUIUET83A4umrnWmidjGFl8XxkBieUZtsmNbLYgH/gnsmP07EfxxdTr0hOchV1Sg==", + "dev": true, + "requires": { + "@types/uuid": "10.0.0", + "class-transformer": "0.5.1", + "reflect-metadata": "0.2.2", + "uuid": "10.0.0" + } + }, + "uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true + } } }, "@cucumber/messages": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-21.0.1.tgz", - "integrity": "sha512-pGR7iURM4SF9Qp1IIpNiVQ77J9kfxMkPOEbyy+zRmGABnWWCsqMpJdfHeh9Mb3VskemVw85++e15JT0PYdcR3g==", + "version": "27.0.0", + "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-27.0.0.tgz", + "integrity": "sha512-w0Qfu+IibH/uAMcf8TZPvSXSrbf7BLIfIxMmYvwx31jH6wuBcf/3RQetutS7Ge98rydjmpRphs2HCbugySarCA==", "dev": true, "requires": { - "@types/uuid": "8.3.4", + "@types/uuid": "10.0.0", "class-transformer": "0.5.1", - "reflect-metadata": "0.1.13", - "uuid": "9.0.0" + "reflect-metadata": "0.2.2", + "uuid": "10.0.0" + }, + "dependencies": { + "uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true + } } }, "@discoveryjs/json-ext": { @@ -20194,12 +18328,6 @@ } } }, - "@exodus/schemasafe": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", - "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", - "dev": true - }, "@flatten-js/interval-tree": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/@flatten-js/interval-tree/-/interval-tree-1.1.3.tgz", @@ -20476,47 +18604,6 @@ "dev": true, "optional": true }, - "@polka/url": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz", - "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==", - "dev": true - }, - "@promptbook/utils": { - "version": "0.70.0-1", - "resolved": "https://registry.npmjs.org/@promptbook/utils/-/utils-0.70.0-1.tgz", - "integrity": "sha512-qd2lLRRN+sE6UuNMi2tEeUUeb4zmXnxY5EMdfHVXNE+bqBDpUC7/aEfXgA3jnUXEr+xFjQ8PTFQgWvBMaKvw0g==", - "dev": true, - "requires": { - "spacetrim": "0.11.39" - } - }, - "@puppeteer/browsers": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz", - "integrity": "sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==", - "dev": true, - "requires": { - "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" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - } - } - }, "@react-native-community/cli": { "version": "12.3.7", "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-12.3.7.tgz", @@ -21687,12 +19774,6 @@ "defer-to-connect": "^1.0.1" } }, - "@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==", - "dev": true - }, "@types/eslint": { "version": "8.56.10", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", @@ -21769,15 +19850,9 @@ "optional": true }, "@types/uuid": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz", - "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==", - "dev": true - }, - "@types/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/which/-/which-2.0.2.tgz", - "integrity": "sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", "dev": true }, "@types/yargs": { @@ -21807,126 +19882,6 @@ "@types/node": "*" } }, - "@wdio/config": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@wdio/config/-/config-8.40.2.tgz", - "integrity": "sha512-RED2vcdX5Zdd6r+K+aWcjK4douxjJY4LP/8YvvavgqM0TURd5PDI0Y7IEz7+BIJOT4Uh+3atZawIN9/3yWFeag==", - "dev": true, - "requires": { - "@wdio/logger": "8.38.0", - "@wdio/types": "8.39.0", - "@wdio/utils": "8.40.2", - "decamelize": "^6.0.0", - "deepmerge-ts": "^5.0.0", - "glob": "^10.2.2", - "import-meta-resolve": "^4.0.0" - }, - "dependencies": { - "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, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - } - }, - "minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "@wdio/logger": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-8.38.0.tgz", - "integrity": "sha512-kcHL86RmNbcQP+Gq/vQUGlArfU6IIcbbnNp32rRIraitomZow+iEoc519rdQmSVusDozMS5DZthkgDdxK+vz6Q==", - "dev": true, - "requires": { - "chalk": "^5.1.2", - "loglevel": "^1.6.0", - "loglevel-plugin-prefix": "^0.8.4", - "strip-ansi": "^7.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true - }, - "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true - }, - "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, - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "@wdio/protocols": { - "version": "8.38.0", - "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-8.38.0.tgz", - "integrity": "sha512-7BPi7aXwUtnXZPeWJRmnCNFjyDvGrXlBmN9D4Pi58nILkyjVRQKEY9/qv/pcdyB0cvmIvw++Kl/1Lg+RxG++UA==", - "dev": true - }, - "@wdio/types": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/@wdio/types/-/types-8.39.0.tgz", - "integrity": "sha512-86lcYROTapOJuFd9ouomFDfzDnv3Kn+jE0RmqfvN9frZAeLVJ5IKjX9M6HjplsyTZhjGO1uCaehmzx+HJus33Q==", - "dev": true, - "requires": { - "@types/node": "^20.1.0" - } - }, - "@wdio/utils": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-8.40.2.tgz", - "integrity": "sha512-leYcCUSaAdLUCVKqRKNgMCASPOUo/VvOTKETiZ/qpdY2azCBt/KnLugtiycCzakeYg6Kp+VIjx5fkm0M7y4qhA==", - "dev": true, - "requires": { - "@puppeteer/browsers": "^1.6.0", - "@wdio/logger": "8.38.0", - "@wdio/types": "8.39.0", - "decamelize": "^6.0.0", - "deepmerge-ts": "^5.1.0", - "edgedriver": "^5.5.0", - "geckodriver": "^4.3.1", - "get-port": "^7.0.0", - "import-meta-resolve": "^4.0.0", - "locate-app": "^2.1.0", - "safaridriver": "^0.1.0", - "split2": "^4.2.0", - "wait-port": "^1.0.4" - } - }, "@webassemblyjs/ast": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", @@ -22118,9 +20073,9 @@ "dev": true }, "@xmldom/xmldom": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", - "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.5.tgz", + "integrity": "sha512-6g1EwSs8cr8JhP1iBxzyVAWM6BIDvx9Y3FZRIQiMDzgG43Pxi8YkWOZ0nQj2NHgNzgXDZbJewFx/n+YAvMZrfg==", "dev": true }, "@xtuc/ieee754": { @@ -22135,12 +20090,6 @@ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "dev": true }, - "@zip.js/zip.js": { - "version": "2.7.52", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.52.tgz", - "integrity": "sha512-+5g7FQswvrCHwYKNMd/KFxZSObctLSsQOgqBSi0LzwHo3li9Eh1w5cF5ndjQw9Zbr3ajVnd2+XyiX85gAetx1Q==", - "dev": true - }, "abbrev": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", @@ -22168,9 +20117,9 @@ } }, "acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true }, "acorn-import-attributes": { @@ -22360,23 +20309,6 @@ "dev": true, "peer": true }, - "ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - }, - "dependencies": { - "tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", - "dev": true - } - } - }, "astral-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", @@ -22408,12 +20340,6 @@ "proxy-from-env": "^1.1.0" } }, - "b4a": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", - "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", - "dev": true - }, "babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -23226,53 +21152,6 @@ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, - "bare-events": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz", - "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==", - "dev": true, - "optional": true - }, - "bare-fs": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz", - "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==", - "dev": true, - "optional": true, - "requires": { - "bare-events": "^2.0.0", - "bare-path": "^2.0.0", - "bare-stream": "^2.0.0" - } - }, - "bare-os": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz", - "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==", - "dev": true, - "optional": true - }, - "bare-path": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz", - "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==", - "dev": true, - "optional": true, - "requires": { - "bare-os": "^2.1.0" - } - }, - "bare-stream": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.3.0.tgz", - "integrity": "sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA==", - "dev": true, - "optional": true, - "requires": { - "b4a": "^1.6.6", - "streamx": "^2.20.0" - } - }, "base64-arraybuffer": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", @@ -23291,12 +21170,6 @@ "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true }, - "basic-ftp": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", - "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", - "dev": true - }, "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -23686,15 +21559,6 @@ "integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==", "dev": true }, - "centra": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz", - "integrity": "sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==", - "dev": true, - "requires": { - "follow-redirects": "^1.15.6" - } - }, "chai": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", @@ -23888,26 +21752,6 @@ "readdirp": "~3.6.0" } }, - "chrome-launcher": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-1.1.2.tgz", - "integrity": "sha512-YclTJey34KUm5jB1aEJCq807bSievi7Nb/TU4Gu504fUYi3jw3KCIaH6L7nFWQhdEgH3V+wCh+kKD1P5cXnfxw==", - "dev": true, - "requires": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^2.0.1" - }, - "dependencies": { - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - } - } - }, "chrome-trace-event": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", @@ -23917,16 +21761,6 @@ "tslib": "^1.9.0" } }, - "chromium-bidi": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.8.tgz", - "integrity": "sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==", - "dev": true, - "requires": { - "mitt": "3.0.1", - "urlpattern-polyfill": "10.0.0" - } - }, "chromium-edge-launcher": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", @@ -24052,6 +21886,7 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, + "optional": true, "requires": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -24062,19 +21897,22 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true + "dev": true, + "optional": true }, "is-fullwidth-code-point": { "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 + "dev": true, + "optional": true }, "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, + "optional": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -24086,6 +21924,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "optional": true, "requires": { "ansi-regex": "^5.0.1" } @@ -24119,19 +21958,19 @@ } }, "codeceptjs": { - "version": "3.6.7", - "resolved": "https://registry.npmjs.org/codeceptjs/-/codeceptjs-3.6.7.tgz", - "integrity": "sha512-gUA1kabCQYBDqypT632aHcO7PfFV7RVhZmv/vk7WwJC4DWCfV0EXiRDVOCPkLk6Es5c5RlR/2dKeHRE0+ze5wg==", + "version": "3.6.10", + "resolved": "https://registry.npmjs.org/codeceptjs/-/codeceptjs-3.6.10.tgz", + "integrity": "sha512-enlNNuzNkXCYAAfU8yWi+ZoHvUFGUWjFF/H1IYXbik7krrPh0fte0PXU2LNWboHtY7Hvpiqwk3IgPcM1o5xX6Q==", "dev": true, "requires": { "@codeceptjs/configure": "1.0.1", "@codeceptjs/detox-helper": "1.1.2", "@codeceptjs/helper": "2.0.4", - "@cucumber/cucumber-expressions": "17", - "@cucumber/gherkin": "26", - "@cucumber/messages": "25.0.1", - "@xmldom/xmldom": "0.8.10", - "acorn": "8.12.1", + "@cucumber/cucumber-expressions": "18", + "@cucumber/gherkin": "30", + "@cucumber/messages": "27.0.0", + "@xmldom/xmldom": "0.9.5", + "acorn": "8.14.0", "arrify": "2.0.1", "axios": "1.7.7", "chai": "5.1.1", @@ -24143,10 +21982,9 @@ "chai-string": "1.5.0", "chalk": "4.1.2", "commander": "11.1.0", - "cross-spawn": "7.0.3", + "cross-spawn": "7.0.5", "css-to-xpath": "0.1.0", "csstoxpath": "1.6.0", - "devtools": "8.40.2", "envinfo": "7.14.0", "escape-string-regexp": "4.0.0", "figures": "3.2.0", @@ -24155,22 +21993,22 @@ "glob": "6.0.1", "html-minifier-terser": "7.2.0", "inquirer": "6.5.2", + "invisi-data": "^1.0.0", "joi": "17.13.3", "js-beautify": "1.15.1", "lodash.clonedeep": "4.5.0", "lodash.merge": "4.6.2", "mkdirp": "1.0.4", - "mocha": "10.7.3", - "monocart-coverage-reports": "2.10.3", + "mocha": "10.8.2", + "monocart-coverage-reports": "2.11.3", "ms": "2.1.3", "ora-classic": "5.4.2", - "pactum": "3.7.1", "parse-function": "5.6.10", - "parse5": "7.1.2", + "parse5": "7.2.1", "promise-retry": "1.1.1", "resq": "1.11.0", "sprintf-js": "1.1.1", - "uuid": "10.0" + "uuid": "11.0" }, "dependencies": { "@codeceptjs/configure": { @@ -24183,32 +22021,6 @@ "lodash.mergewith": "^4.6.2" } }, - "@cucumber/messages": { - "version": "25.0.1", - "resolved": "https://registry.npmjs.org/@cucumber/messages/-/messages-25.0.1.tgz", - "integrity": "sha512-RjjhmzcauX5eYfcKns5pgenefDJQcfXE3ZDrVWdUDGcoaoyFVDmj+ZzQZWRWqFrfMjP3lKHJss6LtvIP/z+h8g==", - "dev": true, - "requires": { - "@types/uuid": "9.0.8", - "class-transformer": "0.5.1", - "reflect-metadata": "0.2.2", - "uuid": "9.0.1" - }, - "dependencies": { - "uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "dev": true - } - } - }, - "@types/uuid": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", - "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", - "dev": true - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -24275,9 +22087,9 @@ "dev": true }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", + "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -24367,12 +22179,6 @@ "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", "dev": true }, - "reflect-metadata": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", - "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", - "dev": true - }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -24409,12 +22215,6 @@ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true }, - "uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", - "dev": true - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -24771,26 +22571,6 @@ "cross-spawn": "^6.0.5" } }, - "cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dev": true, - "requires": { - "node-fetch": "^2.6.12" - }, - "dependencies": { - "node-fetch": { - "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, - "requires": { - "whatwg-url": "^5.0.0" - } - } - } - }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -24850,12 +22630,6 @@ } } }, - "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==", - "dev": true - }, "dayjs": { "version": "1.11.10", "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", @@ -24871,12 +22645,6 @@ "ms": "^2.1.1" } }, - "decamelize": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-6.0.0.tgz", - "integrity": "sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==", - "dev": true - }, "decompress-response": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", @@ -24902,12 +22670,6 @@ "integrity": "sha512-/80a4+9lbLj1hRxG0ULtEOGtbM4hN/5u1Vu6kc6ZkYePUq+ZhtboRIsWTVKplc2ET1xY2FMVwhyt46w9vPf9Rg==", "dev": true }, - "deep-override": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/deep-override/-/deep-override-1.0.2.tgz", - "integrity": "sha512-+bAuLuYqaVVUWPaq8rmU8NLTX85p4I5k5/cVdhBioEfH7k+5NlGdv4NoJVQcJRByqzzTWWzTpih+pU1wBTmMow==", - "dev": true - }, "deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -24915,12 +22677,6 @@ "dev": true, "optional": true }, - "deepmerge-ts": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/deepmerge-ts/-/deepmerge-ts-5.1.0.tgz", - "integrity": "sha512-eS8dRJOckyo9maw9Tu5O5RUi/4inFLrnoLkBe3cPfDMx3WZioXtmOew4TXQaxq7Rhl4xjDtR7c6x8nNTxOvbFw==", - "dev": true - }, "defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -24957,17 +22713,6 @@ "object-keys": "^1.0.12" } }, - "degenerator": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", - "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", - "dev": true, - "requires": { - "ast-types": "^0.13.4", - "escodegen": "^2.1.0", - "esprima": "^4.0.1" - } - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -25321,57 +23066,6 @@ } } }, - "devtools": { - "version": "8.40.2", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-8.40.2.tgz", - "integrity": "sha512-DR/P5LEdxTJO5tVGW4UtjMKKpZbg3g8+VmLQWwq5Lz7pMP1I83G2PlQ3JrRJGDTx9ur52/1QLYHuDrhxYjCMCA==", - "dev": true, - "requires": { - "@types/node": "^20.1.0", - "@wdio/config": "8.40.2", - "@wdio/logger": "8.38.0", - "@wdio/protocols": "8.38.0", - "@wdio/types": "8.39.0", - "@wdio/utils": "8.40.2", - "chrome-launcher": "^1.0.0", - "edge-paths": "^3.0.5", - "import-meta-resolve": "^4.0.0", - "puppeteer-core": "^21.11.0", - "query-selector-shadow-dom": "^1.0.0", - "ua-parser-js": "^1.0.37", - "uuid": "^10.0.0", - "which": "^4.0.0" - }, - "dependencies": { - "isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true - }, - "uuid": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", - "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", - "dev": true - }, - "which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "requires": { - "isexe": "^3.1.1" - } - } - } - }, - "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==", - "dev": true - }, "diff": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", @@ -25472,59 +23166,6 @@ "dev": true, "optional": true }, - "edge-paths": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/edge-paths/-/edge-paths-3.0.5.tgz", - "integrity": "sha512-sB7vSrDnFa4ezWQk9nZ/n0FdpdUuC6R1EOrlU3DL+bovcNFK28rqu2emmAUjujYEJTWIgQGqgVVWUZXMnc8iWg==", - "dev": true, - "requires": { - "@types/which": "^2.0.1", - "which": "^2.0.2" - }, - "dependencies": { - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "edgedriver": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/edgedriver/-/edgedriver-5.6.1.tgz", - "integrity": "sha512-3Ve9cd5ziLByUdigw6zovVeWJjVs8QHVmqOB0sJ0WNeVPcwf4p18GnxMmVvlFmYRloUwf5suNuorea4QzwBIOA==", - "dev": true, - "requires": { - "@wdio/logger": "^8.38.0", - "@zip.js/zip.js": "^2.7.48", - "decamelize": "^6.0.0", - "edge-paths": "^3.0.5", - "fast-xml-parser": "^4.4.1", - "node-fetch": "^3.3.2", - "which": "^4.0.0" - }, - "dependencies": { - "isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true - }, - "which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "requires": { - "isexe": "^3.1.1" - } - } - } - }, "editorconfig": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", @@ -25661,9 +23302,9 @@ } }, "engine.io": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.6.1.tgz", - "integrity": "sha512-dfs8EVg/i7QjFsXxn7cCRQ+Wai1G1TlEvHhdYEi80fxn5R1vZ2K661O6v/rezj1FP234SZ14r9CmJke99iYDGg==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.6.2.tgz", + "integrity": "sha512-C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w==", "dev": true, "requires": { "accepts": "~1.3.4", @@ -25671,7 +23312,7 @@ "cookie": "~0.4.1", "debug": "~4.1.0", "engine.io-parser": "~2.2.0", - "ws": "~7.4.2" + "ws": "~7.5.10" }, "dependencies": { "cookie": { @@ -25679,20 +23320,13 @@ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true - }, - "ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "requires": {} } } }, "engine.io-client": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.3.tgz", - "integrity": "sha512-qsgyc/CEhJ6cgMUwxRRtOndGVhIu5hpL5tR4umSpmX/MvkFoIxUTM7oFMDQumHNzlNLwSVy6qhstFPoWTf7dOw==", + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.4.tgz", + "integrity": "sha512-ydc8uuMMDxC5KCKNJN3zZKYJk2sgyTuTZQ7Aj1DJSsLKAcizA/PzWivw8fZMIjJVBo2CJOYzntv4FSjY/Lr//g==", "dev": true, "requires": { "component-emitter": "~1.3.0", @@ -25703,7 +23337,7 @@ "indexof": "0.0.1", "parseqs": "0.0.6", "parseuri": "0.0.6", - "ws": "~7.4.2", + "ws": "~7.5.10", "xmlhttprequest-ssl": "~1.6.2", "yeast": "0.1.2" }, @@ -25722,13 +23356,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true - }, - "ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "requires": {} } } }, @@ -25905,33 +23532,6 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, - "escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "source-map": "~0.6.1" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } - } - }, "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -25946,7 +23546,8 @@ "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 + "dev": true, + "optional": true }, "esrecurse": { "version": "4.3.0", @@ -26208,12 +23809,6 @@ "integrity": "sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==", "dev": true }, - "fast-fifo": { - "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 - }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -26232,6 +23827,7 @@ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", "dev": true, + "optional": true, "requires": { "strnum": "^1.0.5" } @@ -26267,16 +23863,6 @@ "pend": "~1.2.0" } }, - "fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "dev": true, - "requires": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - } - }, "figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", @@ -26455,187 +24041,55 @@ "mime-types": "^2.1.12" } }, - "form-data-lite": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/form-data-lite/-/form-data-lite-1.0.3.tgz", - "integrity": "sha512-P7xPqAiOPKzC9Q9aywAZJCQq4QOE5WokPb3HrcWRh7C57RKytueJzoORZAVgHBNvK/lL7E+FxjQjd4X/zbecEQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-lite": "^1.0.3" - } - }, - "formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dev": true, - "requires": { - "fetch-blob": "^3.1.2" - } - }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true - }, - "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==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true - }, - "funpermaproxy": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/funpermaproxy/-/funpermaproxy-1.1.0.tgz", - "integrity": "sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==", - "dev": true, - "optional": true - }, - "geckodriver": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/geckodriver/-/geckodriver-4.5.1.tgz", - "integrity": "sha512-lGCRqPMuzbRNDWJOQcUqhNqPvNsIFu6yzXF8J/6K3WCYFd2r5ckbeF7h1cxsnjA7YLSEiWzERCt6/gjZ3tW0ug==", - "dev": true, - "requires": { - "@wdio/logger": "^9.0.0", - "@zip.js/zip.js": "^2.7.48", - "decamelize": "^6.0.0", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.5", - "node-fetch": "^3.3.2", - "tar-fs": "^3.0.6", - "which": "^4.0.0" - }, - "dependencies": { - "@wdio/logger": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-9.1.3.tgz", - "integrity": "sha512-cumRMK/gE1uedBUw3WmWXOQ7HtB6DR8EyKQioUz2P0IJtRRpglMBdZV7Svr3b++WWawOuzZHMfbTkJQmaVt8Gw==", - "dev": true, - "requires": { - "chalk": "^5.1.2", - "loglevel": "^1.6.0", - "loglevel-plugin-prefix": "^0.8.4", - "strip-ansi": "^7.1.0" - } - }, - "agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true - }, - "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "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, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "tar-fs": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz", - "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==", - "dev": true, - "requires": { - "bare-fs": "^2.1.1", - "bare-path": "^2.1.0", - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - } - }, - "which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "requires": { - "isexe": "^3.1.1" - } - } + "dev": true + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" } }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "funpermaproxy": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/funpermaproxy/-/funpermaproxy-1.1.0.tgz", + "integrity": "sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==", + "dev": true, + "optional": true + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -26668,12 +24122,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-7.1.0.tgz", - "integrity": "sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==", - "dev": true - }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -26683,68 +24131,6 @@ "pump": "^3.0.0" } }, - "get-uri": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", - "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", - "dev": true, - "requires": { - "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.2", - "debug": "^4.3.4", - "fs-extra": "^11.2.0" - }, - "dependencies": { - "data-uri-to-buffer": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", - "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", - "dev": true - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true - } - } - }, "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", @@ -27076,42 +24462,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, - "requires": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "dependencies": { - "agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, "https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -27229,12 +24579,6 @@ } } }, - "import-meta-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", - "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", - "dev": true - }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -27332,15 +24676,11 @@ "loose-envify": "^1.0.0" } }, - "ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", - "dev": true, - "requires": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - } + "invisi-data": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/invisi-data/-/invisi-data-1.1.2.tgz", + "integrity": "sha512-cJOGrcBOGbWwrxGGxQriFS4Bq9W+OVTS1fQZaPJ6BMe+UwK3dmadJ1Qm8KFE7JXfjURni1N66xepjSskIvUMWA==", + "dev": true }, "ipaddr.js": { "version": "1.9.1", @@ -27411,7 +24751,8 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true + "dev": true, + "optional": true }, "is-extglob": { "version": "2.1.1", @@ -27525,6 +24866,7 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, + "optional": true, "requires": { "is-docker": "^2.0.0" } @@ -28130,12 +25472,6 @@ "argparse": "^2.0.1" } }, - "jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true - }, "jsc-android": { "version": "250231.0.0", "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", @@ -28267,12 +25603,6 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "json-query": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/json-query/-/json-query-2.2.2.tgz", - "integrity": "sha512-y+IcVZSdqNmS4fO8t1uZF6RMMs0xh3SrTjJr9bp1X3+v0Q13+7Cyv12dSmKwDswp/H427BVtpkLWhGxYu3ZWRA==", - "dev": true - }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -28329,12 +25659,6 @@ "dev": true, "optional": true }, - "klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true - }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -28342,39 +25666,6 @@ "dev": true, "optional": true }, - "lightcookie": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/lightcookie/-/lightcookie-1.0.25.tgz", - "integrity": "sha512-SrY/+eBPaKAMnsn7mCsoOMZzoQyCyHHHZlFCu2fjo28XxSyCLjlooKiTxyrXTg8NPaHp1YzWi0lcGG1gDi6KHw==", - "dev": true - }, - "lighthouse-logger": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-2.0.1.tgz", - "integrity": "sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==", - "dev": true, - "requires": { - "debug": "^2.6.9", - "marky": "^1.2.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, "loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -28403,25 +25694,6 @@ } } }, - "locate-app": { - "version": "2.4.43", - "resolved": "https://registry.npmjs.org/locate-app/-/locate-app-2.4.43.tgz", - "integrity": "sha512-BX6NEdECUGcDQw8aqqg02qLyF9rF8V+dAfyAnBzL2AofIlIvf4Q6EGXnzVWpWot9uBE+x/o8CjXHo7Zlegu91Q==", - "dev": true, - "requires": { - "@promptbook/utils": "0.70.0-1", - "type-fest": "2.13.0", - "userhome": "1.0.0" - }, - "dependencies": { - "type-fest": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.13.0.tgz", - "integrity": "sha512-lPfAm42MxE4/456+QyIaaVBAwgpJb6xZ8PRu09utnhPdWwcyj9vgy6Sq0Z5yNbJ21EdxB5dRU/Qg8bsyAMtlcw==", - "dev": true - } - } - }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -28808,18 +26080,6 @@ } } }, - "loglevel": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz", - "integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==", - "dev": true - }, - "loglevel-plugin-prefix": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.8.4.tgz", - "integrity": "sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==", - "dev": true - }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -28901,7 +26161,8 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", - "dev": true + "dev": true, + "optional": true }, "matcher": { "version": "3.0.0", @@ -28922,15 +26183,6 @@ } } }, - "matchit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/matchit/-/matchit-1.1.0.tgz", - "integrity": "sha512-+nGYoOlfHmxe5BW5tE0EMJppXEwdSf8uBA1GTZC7Q77kbT35+VKLYJMzVNWCHSsga1ps1tPYFtFyvxvKzWVmMA==", - "dev": true, - "requires": { - "@arr/every": "^1.0.0" - } - }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -29384,12 +26636,6 @@ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true }, - "mime-lite": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mime-lite/-/mime-lite-1.0.3.tgz", - "integrity": "sha512-V85l97zJSTG8FEvmdTlmNYb0UMrVBwvRjw7bWTf/aT6KjFwtz3iTz8D2tuFIp7lwiaO2C5ecnrEmSkkMRCrqVw==", - "dev": true - }, "mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", @@ -29432,12 +26678,6 @@ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true }, - "mitt": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", - "dev": true - }, "mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -29447,16 +26687,10 @@ "minimist": "^1.2.6" } }, - "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==", - "dev": true - }, "mocha": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", - "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.8.2.tgz", + "integrity": "sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==", "dev": true, "requires": { "ansi-colors": "^4.1.3", @@ -29508,9 +26742,9 @@ } }, "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, "requires": { "ms": "^2.1.3" @@ -29665,19 +26899,17 @@ "optional": true }, "monocart-coverage-reports": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/monocart-coverage-reports/-/monocart-coverage-reports-2.10.3.tgz", - "integrity": "sha512-CVBjRABy5ygNMVnk5IOVZyB2gfiCUG2xxZuFd5D3nuiP/ja2XWC9GJ8ddgr4fXwrbm8vMkSjOxXs/mfvgP9pSA==", + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/monocart-coverage-reports/-/monocart-coverage-reports-2.11.3.tgz", + "integrity": "sha512-4wUKlebRpeDZxtvqoflmQs7AULeiZmwvFpFg3PNs64LiG2IbVu48fzznTLheIc8t/MxStIRxRd4EIoS8aRsU7A==", "dev": true, "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jridgewell/sourcemap-codec": "^1.5.0", - "acorn": "^8.12.1", + "acorn": "^8.14.0", "acorn-loose": "^8.4.0", - "acorn-walk": "^8.3.3", + "acorn-walk": "^8.3.4", "commander": "^12.1.0", "console-grid": "^2.2.2", - "eight-colors": "^1.3.0", + "eight-colors": "^1.3.1", "foreground-child": "^3.3.0", "istanbul-lib-coverage": "^3.2.2", "istanbul-lib-report": "^3.0.1", @@ -29774,12 +27006,6 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true - }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -29828,23 +27054,6 @@ "minimatch": "^3.0.2" } }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true - }, - "node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dev": true, - "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - } - }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -30078,15 +27287,6 @@ } } }, - "openapi-fuzzer-core": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/openapi-fuzzer-core/-/openapi-fuzzer-core-1.0.6.tgz", - "integrity": "sha512-FJNJIfgUFuv4NmVGq9MYdoKra2GrkDy2uhIjE2YGlw30UA1glf4SXLMhI4UwdcJ8jisKdIxi7lXrfej8GvNW5w==", - "dev": true, - "requires": { - "klona": "^2.0.4" - } - }, "ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", @@ -30354,106 +27554,13 @@ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, "requires": { - "p-limit": "^2.0.0" - } - }, - "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 - }, - "pac-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz", - "integrity": "sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==", - "dev": true, - "requires": { - "@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.5", - "pac-resolver": "^7.0.1", - "socks-proxy-agent": "^8.0.4" - }, - "dependencies": { - "agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, - "pac-resolver": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", - "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", - "dev": true, - "requires": { - "degenerator": "^5.0.0", - "netmask": "^2.0.2" - } - }, - "package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, - "pactum": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/pactum/-/pactum-3.7.1.tgz", - "integrity": "sha512-r+R1dMy2MfRCQpAHohMyICusiMz14t0E+bhnLDScl2x4lXJKQAvQUGV/WWKUUxN2DS0Jdm0PUj6KjblfcSk1GA==", - "dev": true, - "requires": { - "@exodus/schemasafe": "^1.3.0", - "deep-override": "^1.0.2", - "form-data-lite": "^1.0.3", - "json-query": "^2.2.2", - "klona": "^2.0.6", - "lightcookie": "^1.0.25", - "openapi-fuzzer-core": "^1.0.6", - "pactum-matchers": "^1.1.7", - "parse-graphql": "^1.0.0", - "phin": "^3.7.0", - "polka": "^0.5.2" + "p-limit": "^2.0.0" } }, - "pactum-matchers": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/pactum-matchers/-/pactum-matchers-1.1.7.tgz", - "integrity": "sha512-RqwewcUje6vhcYQGbPfdSXkcp/Vtwn4WmmTWLSmqp0CGxBroCEqRg3JMIjkjQTZCd2VmG+tTcQw+n4P/iuqv3Q==", + "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 }, "param-case": { @@ -30484,12 +27591,6 @@ "arrify": "^2.0.1" } }, - "parse-graphql": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-graphql/-/parse-graphql-1.0.0.tgz", - "integrity": "sha512-NjvQHHaiPCxPZrhm/kKnorxOv7r/eA+tE0VW5E8iJMH9wTqFA1V0YK/7nbpxVu3JdXUxyWTKMez9lsHUtAwa0w==", - "dev": true - }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -30502,12 +27603,12 @@ } }, "parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", "dev": true, "requires": { - "entities": "^4.4.0" + "entities": "^4.5.0" } }, "parse5-htmlparser2-tree-adapter": { @@ -30617,15 +27718,6 @@ "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", "dev": true }, - "phin": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz", - "integrity": "sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==", - "dev": true, - "requires": { - "centra": "^2.7.0" - } - }, "picocolors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", @@ -30705,16 +27797,6 @@ "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", "dev": true }, - "polka": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/polka/-/polka-0.5.2.tgz", - "integrity": "sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==", - "dev": true, - "requires": { - "@polka/url": "^0.5.0", - "trouter": "^2.0.1" - } - }, "prepend-http": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", @@ -30934,64 +28016,6 @@ "ipaddr.js": "1.9.1" } }, - "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==", - "dev": true, - "requires": { - "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" - }, - "dependencies": { - "agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dev": true, - "requires": { - "agent-base": "^7.0.2", - "debug": "4" - } - }, - "lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, "proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -31021,38 +28045,6 @@ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, - "puppeteer-core": { - "version": "21.11.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.11.0.tgz", - "integrity": "sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==", - "dev": true, - "requires": { - "@puppeteer/browsers": "1.9.1", - "chromium-bidi": "0.5.8", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1232444", - "ws": "8.16.0" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ws": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", - "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", - "dev": true, - "requires": {} - } - } - }, "qs": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", @@ -31062,12 +28054,6 @@ "side-channel": "^1.0.6" } }, - "query-selector-shadow-dom": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/query-selector-shadow-dom/-/query-selector-shadow-dom-1.0.1.tgz", - "integrity": "sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==", - "dev": true - }, "queue": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", @@ -31078,12 +28064,6 @@ "inherits": "~2.0.3" } }, - "queue-tick": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", - "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", - "dev": true - }, "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -31359,9 +28339,9 @@ } }, "reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", "dev": true }, "regenerate": { @@ -31598,12 +28578,6 @@ "tslib": "^1.9.0" } }, - "safaridriver": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/safaridriver/-/safaridriver-0.1.2.tgz", - "integrity": "sha512-4R309+gWflJktzPXBQCobbWEHlzC4aK3a+Ov3tz2Ib2aBxiwd11phkdIBH1l0EO22x24CJMUQkpKFumRriCSRg==", - "dev": true - }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -31859,12 +28833,6 @@ "is-fullwidth-code-point": "^2.0.0" } }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, "socket.io": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.5.0.tgz", @@ -31963,53 +28931,6 @@ } } }, - "socks": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", - "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", - "dev": true, - "requires": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz", - "integrity": "sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==", - "dev": true, - "requires": { - "agent-base": "^7.1.1", - "debug": "^4.3.4", - "socks": "^2.8.3" - }, - "dependencies": { - "agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dev": true, - "requires": { - "debug": "^4.3.4" - } - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - } - } - }, "source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -32031,23 +28952,12 @@ "source-map": "^0.5.6" } }, - "spacetrim": { - "version": "0.11.39", - "resolved": "https://registry.npmjs.org/spacetrim/-/spacetrim-0.11.39.tgz", - "integrity": "sha512-S/baW29azJ7py5ausQRE2S6uEDQnlxgMHOEEq4V770ooBDD1/9kZnxRcco/tjZYuDuqYXblCk/r3N13ZmvHZ2g==", - "dev": true - }, - "split2": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - "dev": true - }, "sprintf-js": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true + "dev": true, + "optional": true }, "stack-utils": { "version": "2.0.3", @@ -32115,18 +29025,6 @@ "stream-chain": "^2.2.5" } }, - "streamx": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.20.1.tgz", - "integrity": "sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==", - "dev": true, - "requires": { - "bare-events": "^2.2.0", - "fast-fifo": "^1.3.2", - "queue-tick": "^1.0.1", - "text-decoder": "^1.1.0" - } - }, "string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -32260,7 +29158,8 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", - "dev": true + "dev": true, + "optional": true }, "sudo-prompt": { "version": "9.2.1", @@ -32299,28 +29198,6 @@ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true }, - "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==", - "dev": true, - "requires": { - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - } - }, - "tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "dev": true, - "requires": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, "telnet-client": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/telnet-client/-/telnet-client-1.2.8.tgz", @@ -32458,15 +29335,6 @@ } } }, - "text-decoder": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.0.tgz", - "integrity": "sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==", - "dev": true, - "requires": { - "b4a": "^1.6.4" - } - }, "throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", @@ -32544,7 +29412,8 @@ "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true + "dev": true, + "optional": true }, "trace-event-lib": { "version": "1.4.1", @@ -32562,15 +29431,6 @@ "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", "dev": true }, - "trouter": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/trouter/-/trouter-2.0.1.tgz", - "integrity": "sha512-kr8SKKw94OI+xTGOkfsvwZQ8mWoikZDd2n8XZHjJVZUARZT+4/VV6cacRS6CLsH9bNm+HFIPU1Zx4CnNnb4qlQ==", - "dev": true, - "requires": { - "matchit": "^1.0.0" - } - }, "truncate-utf8-bytes": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", @@ -32635,12 +29495,6 @@ "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "dev": true }, - "ua-parser-js": { - "version": "1.0.39", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", - "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", - "dev": true - }, "unbox-primitive": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", @@ -32653,16 +29507,6 @@ "which-boxed-primitive": "^1.0.2" } }, - "unbzip2-stream": { - "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, - "requires": { - "buffer": "^5.2.1", - "through": "^2.3.8" - } - }, "undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", @@ -32737,18 +29581,6 @@ "prepend-http": "^2.0.0" } }, - "urlpattern-polyfill": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz", - "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==", - "dev": true - }, - "userhome": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/userhome/-/userhome-1.0.0.tgz", - "integrity": "sha512-ayFKY3H+Pwfy4W98yPdtH1VqH4psDeyW8lYYFzfecR9d6hqLpqhecktvYR3SEEXt7vG0S1JEpciI3g94pMErig==", - "dev": true - }, "utf8-byte-length": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", @@ -32779,9 +29611,9 @@ "dev": true }, "uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.3.tgz", + "integrity": "sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==", "dev": true }, "vary": { @@ -32797,89 +29629,6 @@ "dev": true, "optional": true }, - "wait-port": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/wait-port/-/wait-port-1.1.0.tgz", - "integrity": "sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==", - "dev": true, - "requires": { - "chalk": "^4.1.2", - "commander": "^9.3.0", - "debug": "^4.3.4" - }, - "dependencies": { - "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, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "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, - "requires": { - "color-name": "~1.1.4" - } - }, - "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 - }, - "commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", - "dev": true - }, - "debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "requires": { - "ms": "^2.1.3" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -32909,17 +29658,12 @@ "defaults": "^1.0.3" } }, - "web-streams-polyfill": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", - "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", - "dev": true - }, "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==", - "dev": true + "dev": true, + "optional": true }, "webpack": { "version": "5.92.0", @@ -33078,6 +29822,7 @@ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, + "optional": true, "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -33330,6 +30075,7 @@ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, + "optional": true, "requires": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -33344,19 +30090,22 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true + "dev": true, + "optional": true }, "is-fullwidth-code-point": { "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 + "dev": true, + "optional": true }, "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, + "optional": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -33368,6 +30117,7 @@ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "optional": true, "requires": { "ansi-regex": "^5.0.1" } @@ -33378,7 +30128,8 @@ "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true + "dev": true, + "optional": true }, "yargs-unparser": { "version": "2.0.0", diff --git a/package.json b/package.json index e4e203a2..389699d3 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "babel-minify-webpack-plugin": "^0.3.1", "babel-plugin-transform-react-jsx": "^6.24.1", "babel-preset-minify": "^0.5.0", - "codeceptjs": "^3.6.7", + "codeceptjs": "^3.6.10", "cross-env": "^5.2.1", "playwright": "^1.13.0", "webpack": "5.92.0", From d79af66b400458d77636976109310c668976e019 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Thu, 12 Dec 2024 08:55:18 +0100 Subject: [PATCH 16/29] - Update FontAwesome #1930 - Add twitter icon and bluesky from FA #1920 --- src/assets/icons/fontawesome-icons.json | 4978 +++++++++++------ src/core/Classes/Utils.php | 2 +- .../assets/js/author-boxes-editor.js | 2 +- 3 files changed, 3391 insertions(+), 1591 deletions(-) diff --git a/src/assets/icons/fontawesome-icons.json b/src/assets/icons/fontawesome-icons.json index 900bc898..0b61dfd6 100644 --- a/src/assets/icons/fontawesome-icons.json +++ b/src/assets/icons/fontawesome-icons.json @@ -1,8 +1,56 @@ [ + { + "class": "fas fa-0", + "name": "0" + }, + { + "class": "fas fa-1", + "name": "1" + }, + { + "class": "fas fa-2", + "name": "2" + }, + { + "class": "fas fa-3", + "name": "3" + }, + { + "class": "fas fa-4", + "name": "4" + }, + { + "class": "fas fa-5", + "name": "5" + }, + { + "class": "fas fa-6", + "name": "6" + }, + { + "class": "fas fa-7", + "name": "7" + }, + { + "class": "fas fa-8", + "name": "8" + }, + { + "class": "fas fa-9", + "name": "9" + }, + { + "class": "fab fa-42-group", + "name": "42 Group" + }, { "class": "fab fa-500px", "name": "500px" }, + { + "class": "fas fa-a", + "name": "A" + }, { "class": "fab fa-accessible-icon", "name": "Accessible Icon" @@ -11,10 +59,6 @@ "class": "fab fa-accusoft", "name": "Accusoft" }, - { - "class": "fas fa-ad", - "name": "Ad" - }, { "class": "fas fa-address-book", "name": "Address Book" @@ -31,10 +75,6 @@ "class": "far fa-address-card", "name": "Address Card" }, - { - "class": "fas fa-adjust", - "name": "Adjust" - }, { "class": "fab fa-adn", "name": "Adn" @@ -47,10 +87,6 @@ "class": "fab fa-affiliatetheme", "name": "Affiliatetheme" }, - { - "class": "fas fa-air-freshener", - "name": "Air Freshener" - }, { "class": "fab fa-airbnb", "name": "Airbnb" @@ -79,10 +115,6 @@ "class": "fab fa-alipay", "name": "Alipay" }, - { - "class": "fas fa-allergies", - "name": "Allergies" - }, { "class": "fab fa-amazon", "name": "Amazon" @@ -91,14 +123,6 @@ "class": "fab fa-amazon-pay", "name": "Amazon Pay" }, - { - "class": "fas fa-ambulance", - "name": "Ambulance" - }, - { - "class": "fas fa-american-sign-language-interpreting", - "name": "American Sign Language Interpreting" - }, { "class": "fab fa-amilia", "name": "Amilia" @@ -108,28 +132,28 @@ "name": "Anchor" }, { - "class": "fab fa-android", - "name": "Android" + "class": "fas fa-anchor-circle-check", + "name": "Anchor Circle Check" }, { - "class": "fab fa-angellist", - "name": "Angellist" + "class": "fas fa-anchor-circle-exclamation", + "name": "Anchor Circle Exclamation" }, { - "class": "fas fa-angle-double-down", - "name": "Angle Double Down" + "class": "fas fa-anchor-circle-xmark", + "name": "Anchor Circle Xmark" }, { - "class": "fas fa-angle-double-left", - "name": "Angle Double Left" + "class": "fas fa-anchor-lock", + "name": "Anchor Lock" }, { - "class": "fas fa-angle-double-right", - "name": "Angle Double Right" + "class": "fab fa-android", + "name": "Android" }, { - "class": "fas fa-angle-double-up", - "name": "Angle Double Up" + "class": "fab fa-angellist", + "name": "Angellist" }, { "class": "fas fa-angle-down", @@ -148,12 +172,20 @@ "name": "Angle Up" }, { - "class": "fas fa-angry", - "name": "Angry" + "class": "fas fa-angles-down", + "name": "Angles Down" + }, + { + "class": "fas fa-angles-left", + "name": "Angles Left" + }, + { + "class": "fas fa-angles-right", + "name": "Angles Right" }, { - "class": "far fa-angry", - "name": "Angry" + "class": "fas fa-angles-up", + "name": "Angles Up" }, { "class": "fab fa-angrycreative", @@ -183,105 +215,233 @@ "class": "fab fa-apple", "name": "Apple" }, - { - "class": "fas fa-apple-alt", - "name": "Apple Alt" - }, { "class": "fab fa-apple-pay", "name": "Apple Pay" }, { - "class": "fas fa-archive", - "name": "Archive" + "class": "fas fa-apple-whole", + "name": "Apple Whole" }, { "class": "fas fa-archway", "name": "Archway" }, { - "class": "fas fa-arrow-alt-circle-down", - "name": "Arrow Alt Circle Down" - }, - { - "class": "far fa-arrow-alt-circle-down", - "name": "Arrow Alt Circle Down" + "class": "fas fa-arrow-down", + "name": "Arrow Down" }, { - "class": "fas fa-arrow-alt-circle-left", - "name": "Arrow Alt Circle Left" + "class": "fas fa-arrow-down-1-9", + "name": "Arrow Down 1 9" }, { - "class": "far fa-arrow-alt-circle-left", - "name": "Arrow Alt Circle Left" + "class": "fas fa-arrow-down-9-1", + "name": "Arrow Down 9 1" }, { - "class": "fas fa-arrow-alt-circle-right", - "name": "Arrow Alt Circle Right" + "class": "fas fa-arrow-down-a-z", + "name": "Arrow Down A Z" }, { - "class": "far fa-arrow-alt-circle-right", - "name": "Arrow Alt Circle Right" + "class": "fas fa-arrow-down-long", + "name": "Arrow Down Long" }, { - "class": "fas fa-arrow-alt-circle-up", - "name": "Arrow Alt Circle Up" + "class": "fas fa-arrow-down-short-wide", + "name": "Arrow Down Short Wide" }, { - "class": "far fa-arrow-alt-circle-up", - "name": "Arrow Alt Circle Up" + "class": "fas fa-arrow-down-up-across-line", + "name": "Arrow Down Up Across Line" }, { - "class": "fas fa-arrow-circle-down", - "name": "Arrow Circle Down" + "class": "fas fa-arrow-down-up-lock", + "name": "Arrow Down Up Lock" }, { - "class": "fas fa-arrow-circle-left", - "name": "Arrow Circle Left" + "class": "fas fa-arrow-down-wide-short", + "name": "Arrow Down Wide Short" }, { - "class": "fas fa-arrow-circle-right", - "name": "Arrow Circle Right" + "class": "fas fa-arrow-down-z-a", + "name": "Arrow Down Z A" }, { - "class": "fas fa-arrow-circle-up", - "name": "Arrow Circle Up" + "class": "fas fa-arrow-left", + "name": "Arrow Left" }, { - "class": "fas fa-arrow-down", - "name": "Arrow Down" + "class": "fas fa-arrow-left-long", + "name": "Arrow Left Long" }, { - "class": "fas fa-arrow-left", - "name": "Arrow Left" + "class": "fas fa-arrow-pointer", + "name": "Arrow Pointer" }, { "class": "fas fa-arrow-right", "name": "Arrow Right" }, + { + "class": "fas fa-arrow-right-arrow-left", + "name": "Arrow Right Arrow Left" + }, + { + "class": "fas fa-arrow-right-from-bracket", + "name": "Arrow Right From Bracket" + }, + { + "class": "fas fa-arrow-right-long", + "name": "Arrow Right Long" + }, + { + "class": "fas fa-arrow-right-to-bracket", + "name": "Arrow Right To Bracket" + }, + { + "class": "fas fa-arrow-right-to-city", + "name": "Arrow Right To City" + }, + { + "class": "fas fa-arrow-rotate-left", + "name": "Arrow Rotate Left" + }, + { + "class": "fas fa-arrow-rotate-right", + "name": "Arrow Rotate Right" + }, + { + "class": "fas fa-arrow-trend-down", + "name": "Arrow Trend Down" + }, + { + "class": "fas fa-arrow-trend-up", + "name": "Arrow Trend Up" + }, + { + "class": "fas fa-arrow-turn-down", + "name": "Arrow Turn Down" + }, + { + "class": "fas fa-arrow-turn-up", + "name": "Arrow Turn Up" + }, { "class": "fas fa-arrow-up", "name": "Arrow Up" }, { - "class": "fas fa-arrows-alt", - "name": "Arrows Alt" + "class": "fas fa-arrow-up-1-9", + "name": "Arrow Up 1 9" }, { - "class": "fas fa-arrows-alt-h", - "name": "Arrows Alt H" + "class": "fas fa-arrow-up-9-1", + "name": "Arrow Up 9 1" }, { - "class": "fas fa-arrows-alt-v", - "name": "Arrows Alt V" + "class": "fas fa-arrow-up-a-z", + "name": "Arrow Up A Z" }, { - "class": "fab fa-artstation", - "name": "Artstation" + "class": "fas fa-arrow-up-from-bracket", + "name": "Arrow Up From Bracket" + }, + { + "class": "fas fa-arrow-up-from-ground-water", + "name": "Arrow Up From Ground Water" + }, + { + "class": "fas fa-arrow-up-from-water-pump", + "name": "Arrow Up From Water Pump" + }, + { + "class": "fas fa-arrow-up-long", + "name": "Arrow Up Long" + }, + { + "class": "fas fa-arrow-up-right-dots", + "name": "Arrow Up Right Dots" + }, + { + "class": "fas fa-arrow-up-right-from-square", + "name": "Arrow Up Right From Square" + }, + { + "class": "fas fa-arrow-up-short-wide", + "name": "Arrow Up Short Wide" + }, + { + "class": "fas fa-arrow-up-wide-short", + "name": "Arrow Up Wide Short" + }, + { + "class": "fas fa-arrow-up-z-a", + "name": "Arrow Up Z A" + }, + { + "class": "fas fa-arrows-down-to-line", + "name": "Arrows Down To Line" + }, + { + "class": "fas fa-arrows-down-to-people", + "name": "Arrows Down To People" + }, + { + "class": "fas fa-arrows-left-right", + "name": "Arrows Left Right" + }, + { + "class": "fas fa-arrows-left-right-to-line", + "name": "Arrows Left Right To Line" + }, + { + "class": "fas fa-arrows-rotate", + "name": "Arrows Rotate" + }, + { + "class": "fas fa-arrows-spin", + "name": "Arrows Spin" + }, + { + "class": "fas fa-arrows-split-up-and-left", + "name": "Arrows Split Up And Left" + }, + { + "class": "fas fa-arrows-to-circle", + "name": "Arrows To Circle" + }, + { + "class": "fas fa-arrows-to-dot", + "name": "Arrows To Dot" + }, + { + "class": "fas fa-arrows-to-eye", + "name": "Arrows To Eye" + }, + { + "class": "fas fa-arrows-turn-right", + "name": "Arrows Turn Right" + }, + { + "class": "fas fa-arrows-turn-to-dots", + "name": "Arrows Turn To Dots" + }, + { + "class": "fas fa-arrows-up-down", + "name": "Arrows Up Down" + }, + { + "class": "fas fa-arrows-up-down-left-right", + "name": "Arrows Up Down Left Right" }, { - "class": "fas fa-assistive-listening-systems", - "name": "Assistive Listening Systems" + "class": "fas fa-arrows-up-to-line", + "name": "Arrows Up To Line" + }, + { + "class": "fab fa-artstation", + "name": "Artstation" }, { "class": "fas fa-asterisk", @@ -295,10 +455,6 @@ "class": "fas fa-at", "name": "At" }, - { - "class": "fas fa-atlas", - "name": "Atlas" - }, { "class": "fab fa-atlassian", "name": "Atlassian" @@ -315,6 +471,10 @@ "class": "fas fa-audio-description", "name": "Audio Description" }, + { + "class": "fas fa-austral-sign", + "name": "Austral Sign" + }, { "class": "fab fa-autoprefixer", "name": "Autoprefixer" @@ -335,6 +495,10 @@ "class": "fab fa-aws", "name": "Aws" }, + { + "class": "fas fa-b", + "name": "B" + }, { "class": "fas fa-baby", "name": "Baby" @@ -343,14 +507,18 @@ "class": "fas fa-baby-carriage", "name": "Baby Carriage" }, - { - "class": "fas fa-backspace", - "name": "Backspace" - }, { "class": "fas fa-backward", "name": "Backward" }, + { + "class": "fas fa-backward-fast", + "name": "Backward Fast" + }, + { + "class": "fas fa-backward-step", + "name": "Backward Step" + }, { "class": "fas fa-bacon", "name": "Bacon" @@ -364,33 +532,37 @@ "name": "Bacterium" }, { - "class": "fas fa-bahai", - "name": "Bahai" - }, - { - "class": "fas fa-balance-scale", - "name": "Balance Scale" + "class": "fas fa-bag-shopping", + "name": "Bag Shopping" }, { - "class": "fas fa-balance-scale-left", - "name": "Balance Scale Left" + "class": "fas fa-bahai", + "name": "Bahai" }, { - "class": "fas fa-balance-scale-right", - "name": "Balance Scale Right" + "class": "fas fa-baht-sign", + "name": "Baht Sign" }, { "class": "fas fa-ban", "name": "Ban" }, { - "class": "fas fa-band-aid", - "name": "Band Aid" + "class": "fas fa-ban-smoking", + "name": "Ban Smoking" + }, + { + "class": "fas fa-bandage", + "name": "Bandage" }, { "class": "fab fa-bandcamp", "name": "Bandcamp" }, + { + "class": "fas fa-bangladeshi-taka-sign", + "name": "Bangladeshi Taka Sign" + }, { "class": "fas fa-barcode", "name": "Barcode" @@ -400,12 +572,28 @@ "name": "Bars" }, { - "class": "fas fa-baseball-ball", - "name": "Baseball Ball" + "class": "fas fa-bars-progress", + "name": "Bars Progress" + }, + { + "class": "fas fa-bars-staggered", + "name": "Bars Staggered" + }, + { + "class": "fas fa-baseball", + "name": "Baseball" + }, + { + "class": "fas fa-baseball-bat-ball", + "name": "Baseball Bat Ball" }, { - "class": "fas fa-basketball-ball", - "name": "Basketball Ball" + "class": "fas fa-basket-shopping", + "name": "Basket Shopping" + }, + { + "class": "fas fa-basketball", + "name": "Basketball" }, { "class": "fas fa-bath", @@ -440,16 +628,16 @@ "name": "Bed" }, { - "class": "fas fa-beer", - "name": "Beer" + "class": "fas fa-bed-pulse", + "name": "Bed Pulse" }, { - "class": "fab fa-behance", - "name": "Behance" + "class": "fas fa-beer-mug-empty", + "name": "Beer Mug Empty" }, { - "class": "fab fa-behance-square", - "name": "Behance Square" + "class": "fab fa-behance", + "name": "Behance" }, { "class": "fas fa-bell", @@ -459,6 +647,10 @@ "class": "far fa-bell", "name": "Bell" }, + { + "class": "fas fa-bell-concierge", + "name": "Bell Concierge" + }, { "class": "fas fa-bell-slash", "name": "Bell Slash" @@ -471,17 +663,13 @@ "class": "fas fa-bezier-curve", "name": "Bezier Curve" }, - { - "class": "fas fa-bible", - "name": "Bible" - }, { "class": "fas fa-bicycle", "name": "Bicycle" }, { - "class": "fas fa-biking", - "name": "Biking" + "class": "fab fa-bilibili", + "name": "Bilibili" }, { "class": "fab fa-bimobject", @@ -495,10 +683,6 @@ "class": "fas fa-biohazard", "name": "Biohazard" }, - { - "class": "fas fa-birthday-cake", - "name": "Birthday Cake" - }, { "class": "fab fa-bitbucket", "name": "Bitbucket" @@ -507,6 +691,10 @@ "class": "fab fa-bitcoin", "name": "Bitcoin" }, + { + "class": "fas fa-bitcoin-sign", + "name": "Bitcoin Sign" + }, { "class": "fab fa-bity", "name": "Bity" @@ -527,10 +715,6 @@ "class": "fas fa-blender-phone", "name": "Blender Phone" }, - { - "class": "fas fa-blind", - "name": "Blind" - }, { "class": "fas fa-blog", "name": "Blog" @@ -543,6 +727,10 @@ "class": "fab fa-blogger-b", "name": "Blogger B" }, + { + "class": "fab fa-bluesky", + "name": "Bluesky" + }, { "class": "fab fa-bluetooth", "name": "Bluetooth" @@ -559,6 +747,10 @@ "class": "fas fa-bolt", "name": "Bolt" }, + { + "class": "fas fa-bolt-lightning", + "name": "Bolt Lightning" + }, { "class": "fas fa-bomb", "name": "Bomb" @@ -576,8 +768,20 @@ "name": "Book" }, { - "class": "fas fa-book-dead", - "name": "Book Dead" + "class": "fas fa-book-atlas", + "name": "Book Atlas" + }, + { + "class": "fas fa-book-bible", + "name": "Book Bible" + }, + { + "class": "fas fa-book-bookmark", + "name": "Book Bookmark" + }, + { + "class": "fas fa-book-journal-whills", + "name": "Book Journal Whills" }, { "class": "fas fa-book-medical", @@ -588,8 +792,20 @@ "name": "Book Open" }, { - "class": "fas fa-book-reader", - "name": "Book Reader" + "class": "fas fa-book-open-reader", + "name": "Book Open Reader" + }, + { + "class": "fas fa-book-quran", + "name": "Book Quran" + }, + { + "class": "fas fa-book-skull", + "name": "Book Skull" + }, + { + "class": "fas fa-book-tanakh", + "name": "Book Tanakh" }, { "class": "fas fa-bookmark", @@ -612,8 +828,32 @@ "name": "Border None" }, { - "class": "fas fa-border-style", - "name": "Border Style" + "class": "fas fa-border-top-left", + "name": "Border Top Left" + }, + { + "class": "fas fa-bore-hole", + "name": "Bore Hole" + }, + { + "class": "fab fa-bots", + "name": "Bots" + }, + { + "class": "fas fa-bottle-droplet", + "name": "Bottle Droplet" + }, + { + "class": "fas fa-bottle-water", + "name": "Bottle Water" + }, + { + "class": "fas fa-bowl-food", + "name": "Bowl Food" + }, + { + "class": "fas fa-bowl-rice", + "name": "Bowl Rice" }, { "class": "fas fa-bowling-ball", @@ -623,6 +863,10 @@ "class": "fas fa-box", "name": "Box" }, + { + "class": "fas fa-box-archive", + "name": "Box Archive" + }, { "class": "fas fa-box-open", "name": "Box Open" @@ -632,8 +876,12 @@ "name": "Box Tissue" }, { - "class": "fas fa-boxes", - "name": "Boxes" + "class": "fas fa-boxes-packing", + "name": "Boxes Packing" + }, + { + "class": "fas fa-boxes-stacked", + "name": "Boxes Stacked" }, { "class": "fas fa-braille", @@ -643,10 +891,46 @@ "class": "fas fa-brain", "name": "Brain" }, + { + "class": "fab fa-brave", + "name": "Brave" + }, + { + "class": "fab fa-brave-reverse", + "name": "Brave Reverse" + }, + { + "class": "fas fa-brazilian-real-sign", + "name": "Brazilian Real Sign" + }, { "class": "fas fa-bread-slice", "name": "Bread Slice" }, + { + "class": "fas fa-bridge", + "name": "Bridge" + }, + { + "class": "fas fa-bridge-circle-check", + "name": "Bridge Circle Check" + }, + { + "class": "fas fa-bridge-circle-exclamation", + "name": "Bridge Circle Exclamation" + }, + { + "class": "fas fa-bridge-circle-xmark", + "name": "Bridge Circle Xmark" + }, + { + "class": "fas fa-bridge-lock", + "name": "Bridge Lock" + }, + { + "class": "fas fa-bridge-water", + "name": "Bridge Water" + }, { "class": "fas fa-briefcase", "name": "Briefcase" @@ -655,14 +939,14 @@ "class": "fas fa-briefcase-medical", "name": "Briefcase Medical" }, - { - "class": "fas fa-broadcast-tower", - "name": "Broadcast Tower" - }, { "class": "fas fa-broom", "name": "Broom" }, + { + "class": "fas fa-broom-ball", + "name": "Broom Ball" + }, { "class": "fas fa-brush", "name": "Brush" @@ -671,6 +955,10 @@ "class": "fab fa-btc", "name": "Btc" }, + { + "class": "fas fa-bucket", + "name": "Bucket" + }, { "class": "fab fa-buffer", "name": "Buffer" @@ -679,6 +967,14 @@ "class": "fas fa-bug", "name": "Bug" }, + { + "class": "fas fa-bug-slash", + "name": "Bug Slash" + }, + { + "class": "fas fa-bugs", + "name": "Bugs" + }, { "class": "fas fa-building", "name": "Building" @@ -688,60 +984,116 @@ "name": "Building" }, { - "class": "fas fa-bullhorn", - "name": "Bullhorn" + "class": "fas fa-building-circle-arrow-right", + "name": "Building Circle Arrow Right" }, { - "class": "fas fa-bullseye", - "name": "Bullseye" + "class": "fas fa-building-circle-check", + "name": "Building Circle Check" }, { - "class": "fas fa-burn", - "name": "Burn" + "class": "fas fa-building-circle-exclamation", + "name": "Building Circle Exclamation" }, { - "class": "fab fa-buromobelexperte", - "name": "Buromobelexperte" + "class": "fas fa-building-circle-xmark", + "name": "Building Circle Xmark" }, { - "class": "fas fa-bus", - "name": "Bus" + "class": "fas fa-building-columns", + "name": "Building Columns" }, { - "class": "fas fa-bus-alt", - "name": "Bus Alt" + "class": "fas fa-building-flag", + "name": "Building Flag" }, { - "class": "fas fa-business-time", - "name": "Business Time" + "class": "fas fa-building-lock", + "name": "Building Lock" }, { - "class": "fab fa-buy-n-large", - "name": "Buy N Large" + "class": "fas fa-building-ngo", + "name": "Building Ngo" }, { - "class": "fab fa-buysellads", - "name": "Buysellads" + "class": "fas fa-building-shield", + "name": "Building Shield" }, { - "class": "fas fa-calculator", - "name": "Calculator" + "class": "fas fa-building-un", + "name": "Building Un" }, { - "class": "fas fa-calendar", - "name": "Calendar" + "class": "fas fa-building-user", + "name": "Building User" }, { - "class": "far fa-calendar", - "name": "Calendar" + "class": "fas fa-building-wheat", + "name": "Building Wheat" }, { - "class": "fas fa-calendar-alt", - "name": "Calendar Alt" + "class": "fas fa-bullhorn", + "name": "Bullhorn" + }, + { + "class": "fas fa-bullseye", + "name": "Bullseye" + }, + { + "class": "fas fa-burger", + "name": "Burger" + }, + { + "class": "fab fa-buromobelexperte", + "name": "Buromobelexperte" + }, + { + "class": "fas fa-burst", + "name": "Burst" + }, + { + "class": "fas fa-bus", + "name": "Bus" + }, + { + "class": "fas fa-bus-simple", + "name": "Bus Simple" + }, + { + "class": "fas fa-business-time", + "name": "Business Time" + }, + { + "class": "fab fa-buy-n-large", + "name": "Buy N Large" + }, + { + "class": "fab fa-buysellads", + "name": "Buysellads" }, { - "class": "far fa-calendar-alt", - "name": "Calendar Alt" + "class": "fas fa-c", + "name": "C" + }, + { + "class": "fas fa-cable-car", + "name": "Cable Car" + }, + { + "class": "fas fa-cake-candles", + "name": "Cake Candles" + }, + { + "class": "fas fa-calculator", + "name": "Calculator" + }, + { + "class": "fas fa-calendar", + "name": "Calendar" + }, + { + "class": "far fa-calendar", + "name": "Calendar" }, { "class": "fas fa-calendar-check", @@ -755,6 +1107,14 @@ "class": "fas fa-calendar-day", "name": "Calendar Day" }, + { + "class": "fas fa-calendar-days", + "name": "Calendar Days" + }, + { + "class": "far fa-calendar-days", + "name": "Calendar Days" + }, { "class": "fas fa-calendar-minus", "name": "Calendar Minus" @@ -772,16 +1132,16 @@ "name": "Calendar Plus" }, { - "class": "fas fa-calendar-times", - "name": "Calendar Times" + "class": "fas fa-calendar-week", + "name": "Calendar Week" }, { - "class": "far fa-calendar-times", - "name": "Calendar Times" + "class": "fas fa-calendar-xmark", + "name": "Calendar Xmark" }, { - "class": "fas fa-calendar-week", - "name": "Calendar Week" + "class": "far fa-calendar-xmark", + "name": "Calendar Xmark" }, { "class": "fas fa-camera", @@ -791,6 +1151,10 @@ "class": "fas fa-camera-retro", "name": "Camera Retro" }, + { + "class": "fas fa-camera-rotate", + "name": "Camera Rotate" + }, { "class": "fas fa-campground", "name": "Campground" @@ -815,22 +1179,30 @@ "class": "fas fa-car", "name": "Car" }, - { - "class": "fas fa-car-alt", - "name": "Car Alt" - }, { "class": "fas fa-car-battery", "name": "Car Battery" }, { - "class": "fas fa-car-crash", - "name": "Car Crash" + "class": "fas fa-car-burst", + "name": "Car Burst" + }, + { + "class": "fas fa-car-on", + "name": "Car On" + }, + { + "class": "fas fa-car-rear", + "name": "Car Rear" }, { "class": "fas fa-car-side", "name": "Car Side" }, + { + "class": "fas fa-car-tunnel", + "name": "Car Tunnel" + }, { "class": "fas fa-caravan", "name": "Caravan" @@ -847,38 +1219,6 @@ "class": "fas fa-caret-right", "name": "Caret Right" }, - { - "class": "fas fa-caret-square-down", - "name": "Caret Square Down" - }, - { - "class": "far fa-caret-square-down", - "name": "Caret Square Down" - }, - { - "class": "fas fa-caret-square-left", - "name": "Caret Square Left" - }, - { - "class": "far fa-caret-square-left", - "name": "Caret Square Left" - }, - { - "class": "fas fa-caret-square-right", - "name": "Caret Square Right" - }, - { - "class": "far fa-caret-square-right", - "name": "Caret Square Right" - }, - { - "class": "fas fa-caret-square-up", - "name": "Caret Square Up" - }, - { - "class": "far fa-caret-square-up", - "name": "Caret Square Up" - }, { "class": "fas fa-caret-up", "name": "Caret Up" @@ -891,10 +1231,22 @@ "class": "fas fa-cart-arrow-down", "name": "Cart Arrow Down" }, + { + "class": "fas fa-cart-flatbed", + "name": "Cart Flatbed" + }, + { + "class": "fas fa-cart-flatbed-suitcase", + "name": "Cart Flatbed Suitcase" + }, { "class": "fas fa-cart-plus", "name": "Cart Plus" }, + { + "class": "fas fa-cart-shopping", + "name": "Cart Shopping" + }, { "class": "fas fa-cash-register", "name": "Cash Register" @@ -943,6 +1295,14 @@ "class": "fab fa-cc-visa", "name": "Cc Visa" }, + { + "class": "fas fa-cedi-sign", + "name": "Cedi Sign" + }, + { + "class": "fas fa-cent-sign", + "name": "Cent Sign" + }, { "class": "fab fa-centercode", "name": "Centercode" @@ -964,8 +1324,12 @@ "name": "Chalkboard" }, { - "class": "fas fa-chalkboard-teacher", - "name": "Chalkboard Teacher" + "class": "fas fa-chalkboard-user", + "name": "Chalkboard User" + }, + { + "class": "fas fa-champagne-glasses", + "name": "Champagne Glasses" }, { "class": "fas fa-charging-station", @@ -983,6 +1347,18 @@ "class": "far fa-chart-bar", "name": "Chart Bar" }, + { + "class": "fas fa-chart-column", + "name": "Chart Column" + }, + { + "class": "fas fa-chart-diagram", + "name": "Chart Diagram" + }, + { + "class": "fas fa-chart-gantt", + "name": "Chart Gantt" + }, { "class": "fas fa-chart-line", "name": "Chart Line" @@ -992,28 +1368,20 @@ "name": "Chart Pie" }, { - "class": "fas fa-check", - "name": "Check" - }, - { - "class": "fas fa-check-circle", - "name": "Check Circle" + "class": "fas fa-chart-simple", + "name": "Chart Simple" }, { - "class": "far fa-check-circle", - "name": "Check Circle" + "class": "fas fa-check", + "name": "Check" }, { "class": "fas fa-check-double", "name": "Check Double" }, { - "class": "fas fa-check-square", - "name": "Check Square" - }, - { - "class": "far fa-check-square", - "name": "Check Square" + "class": "fas fa-check-to-slot", + "name": "Check To Slot" }, { "class": "fas fa-cheese", @@ -1027,6 +1395,10 @@ "class": "fas fa-chess-bishop", "name": "Chess Bishop" }, + { + "class": "far fa-chess-bishop", + "name": "Chess Bishop" + }, { "class": "fas fa-chess-board", "name": "Chess Board" @@ -1035,37 +1407,41 @@ "class": "fas fa-chess-king", "name": "Chess King" }, + { + "class": "far fa-chess-king", + "name": "Chess King" + }, { "class": "fas fa-chess-knight", "name": "Chess Knight" }, { - "class": "fas fa-chess-pawn", - "name": "Chess Pawn" + "class": "far fa-chess-knight", + "name": "Chess Knight" }, { - "class": "fas fa-chess-queen", - "name": "Chess Queen" + "class": "fas fa-chess-pawn", + "name": "Chess Pawn" }, { - "class": "fas fa-chess-rook", - "name": "Chess Rook" + "class": "far fa-chess-pawn", + "name": "Chess Pawn" }, { - "class": "fas fa-chevron-circle-down", - "name": "Chevron Circle Down" + "class": "fas fa-chess-queen", + "name": "Chess Queen" }, { - "class": "fas fa-chevron-circle-left", - "name": "Chevron Circle Left" + "class": "far fa-chess-queen", + "name": "Chess Queen" }, { - "class": "fas fa-chevron-circle-right", - "name": "Chevron Circle Right" + "class": "fas fa-chess-rook", + "name": "Chess Rook" }, { - "class": "fas fa-chevron-circle-up", - "name": "Chevron Circle Up" + "class": "far fa-chess-rook", + "name": "Chess Rook" }, { "class": "fas fa-chevron-down", @@ -1087,6 +1463,22 @@ "class": "fas fa-child", "name": "Child" }, + { + "class": "fas fa-child-combatant", + "name": "Child Combatant" + }, + { + "class": "fas fa-child-dress", + "name": "Child Dress" + }, + { + "class": "fas fa-child-reaching", + "name": "Child Reaching" + }, + { + "class": "fas fa-children", + "name": "Children" + }, { "class": "fab fa-chrome", "name": "Chrome" @@ -1107,17 +1499,181 @@ "class": "far fa-circle", "name": "Circle" }, + { + "class": "fas fa-circle-arrow-down", + "name": "Circle Arrow Down" + }, + { + "class": "fas fa-circle-arrow-left", + "name": "Circle Arrow Left" + }, + { + "class": "fas fa-circle-arrow-right", + "name": "Circle Arrow Right" + }, + { + "class": "fas fa-circle-arrow-up", + "name": "Circle Arrow Up" + }, + { + "class": "fas fa-circle-check", + "name": "Circle Check" + }, + { + "class": "far fa-circle-check", + "name": "Circle Check" + }, + { + "class": "fas fa-circle-chevron-down", + "name": "Circle Chevron Down" + }, + { + "class": "fas fa-circle-chevron-left", + "name": "Circle Chevron Left" + }, + { + "class": "fas fa-circle-chevron-right", + "name": "Circle Chevron Right" + }, + { + "class": "fas fa-circle-chevron-up", + "name": "Circle Chevron Up" + }, + { + "class": "fas fa-circle-dollar-to-slot", + "name": "Circle Dollar To Slot" + }, + { + "class": "fas fa-circle-dot", + "name": "Circle Dot" + }, + { + "class": "far fa-circle-dot", + "name": "Circle Dot" + }, + { + "class": "fas fa-circle-down", + "name": "Circle Down" + }, + { + "class": "far fa-circle-down", + "name": "Circle Down" + }, + { + "class": "fas fa-circle-exclamation", + "name": "Circle Exclamation" + }, + { + "class": "fas fa-circle-h", + "name": "Circle H" + }, + { + "class": "fas fa-circle-half-stroke", + "name": "Circle Half Stroke" + }, + { + "class": "fas fa-circle-info", + "name": "Circle Info" + }, + { + "class": "fas fa-circle-left", + "name": "Circle Left" + }, + { + "class": "far fa-circle-left", + "name": "Circle Left" + }, + { + "class": "fas fa-circle-minus", + "name": "Circle Minus" + }, + { + "class": "fas fa-circle-nodes", + "name": "Circle Nodes" + }, { "class": "fas fa-circle-notch", "name": "Circle Notch" }, + { + "class": "fas fa-circle-pause", + "name": "Circle Pause" + }, + { + "class": "far fa-circle-pause", + "name": "Circle Pause" + }, + { + "class": "fas fa-circle-play", + "name": "Circle Play" + }, + { + "class": "far fa-circle-play", + "name": "Circle Play" + }, + { + "class": "fas fa-circle-plus", + "name": "Circle Plus" + }, + { + "class": "fas fa-circle-question", + "name": "Circle Question" + }, + { + "class": "far fa-circle-question", + "name": "Circle Question" + }, + { + "class": "fas fa-circle-radiation", + "name": "Circle Radiation" + }, + { + "class": "fas fa-circle-right", + "name": "Circle Right" + }, + { + "class": "far fa-circle-right", + "name": "Circle Right" + }, + { + "class": "fas fa-circle-stop", + "name": "Circle Stop" + }, + { + "class": "far fa-circle-stop", + "name": "Circle Stop" + }, + { + "class": "fas fa-circle-up", + "name": "Circle Up" + }, + { + "class": "far fa-circle-up", + "name": "Circle Up" + }, + { + "class": "fas fa-circle-user", + "name": "Circle User" + }, + { + "class": "far fa-circle-user", + "name": "Circle User" + }, + { + "class": "fas fa-circle-xmark", + "name": "Circle Xmark" + }, + { + "class": "far fa-circle-xmark", + "name": "Circle Xmark" + }, { "class": "fas fa-city", "name": "City" }, { - "class": "fas fa-clinic-medical", - "name": "Clinic Medical" + "class": "fas fa-clapperboard", + "name": "Clapperboard" }, { "class": "fas fa-clipboard", @@ -1135,6 +1691,14 @@ "class": "fas fa-clipboard-list", "name": "Clipboard List" }, + { + "class": "fas fa-clipboard-question", + "name": "Clipboard Question" + }, + { + "class": "fas fa-clipboard-user", + "name": "Clipboard User" + }, { "class": "fas fa-clock", "name": "Clock" @@ -1143,6 +1707,10 @@ "class": "far fa-clock", "name": "Clock" }, + { + "class": "fas fa-clock-rotate-left", + "name": "Clock Rotate Left" + }, { "class": "fas fa-clone", "name": "Clone" @@ -1164,8 +1732,16 @@ "name": "Cloud" }, { - "class": "fas fa-cloud-download-alt", - "name": "Cloud Download Alt" + "class": "fas fa-cloud-arrow-down", + "name": "Cloud Arrow Down" + }, + { + "class": "fas fa-cloud-arrow-up", + "name": "Cloud Arrow Up" + }, + { + "class": "fas fa-cloud-bolt", + "name": "Cloud Bolt" }, { "class": "fas fa-cloud-meatball", @@ -1187,6 +1763,10 @@ "class": "fas fa-cloud-showers-heavy", "name": "Cloud Showers Heavy" }, + { + "class": "fas fa-cloud-showers-water", + "name": "Cloud Showers Water" + }, { "class": "fas fa-cloud-sun", "name": "Cloud Sun" @@ -1195,10 +1775,6 @@ "class": "fas fa-cloud-sun-rain", "name": "Cloud Sun Rain" }, - { - "class": "fas fa-cloud-upload-alt", - "name": "Cloud Upload Alt" - }, { "class": "fab fa-cloudflare", "name": "Cloudflare" @@ -1216,8 +1792,12 @@ "name": "Cloudversify" }, { - "class": "fas fa-cocktail", - "name": "Cocktail" + "class": "fas fa-clover", + "name": "Clover" + }, + { + "class": "fab fa-cmplid", + "name": "Cmplid" }, { "class": "fas fa-code", @@ -1228,32 +1808,40 @@ "name": "Code Branch" }, { - "class": "fab fa-codepen", - "name": "Codepen" + "class": "fas fa-code-commit", + "name": "Code Commit" }, { - "class": "fab fa-codiepie", - "name": "Codiepie" + "class": "fas fa-code-compare", + "name": "Code Compare" }, { - "class": "fas fa-coffee", - "name": "Coffee" + "class": "fas fa-code-fork", + "name": "Code Fork" }, { - "class": "fas fa-cog", - "name": "Cog" + "class": "fas fa-code-merge", + "name": "Code Merge" }, { - "class": "fas fa-cogs", - "name": "Cogs" + "class": "fas fa-code-pull-request", + "name": "Code Pull Request" + }, + { + "class": "fab fa-codepen", + "name": "Codepen" + }, + { + "class": "fab fa-codiepie", + "name": "Codiepie" }, { "class": "fas fa-coins", "name": "Coins" }, { - "class": "fas fa-columns", - "name": "Columns" + "class": "fas fa-colon-sign", + "name": "Colon Sign" }, { "class": "fas fa-comment", @@ -1263,14 +1851,6 @@ "class": "far fa-comment", "name": "Comment" }, - { - "class": "fas fa-comment-alt", - "name": "Comment Alt" - }, - { - "class": "far fa-comment-alt", - "name": "Comment Alt" - }, { "class": "fas fa-comment-dollar", "name": "Comment Dollar" @@ -1287,10 +1867,18 @@ "class": "fas fa-comment-medical", "name": "Comment Medical" }, + { + "class": "fas fa-comment-nodes", + "name": "Comment Nodes" + }, { "class": "fas fa-comment-slash", "name": "Comment Slash" }, + { + "class": "fas fa-comment-sms", + "name": "Comment Sms" + }, { "class": "fas fa-comments", "name": "Comments" @@ -1316,20 +1904,20 @@ "name": "Compass" }, { - "class": "fas fa-compress", - "name": "Compress" + "class": "fas fa-compass-drafting", + "name": "Compass Drafting" }, { - "class": "fas fa-compress-alt", - "name": "Compress Alt" + "class": "fas fa-compress", + "name": "Compress" }, { - "class": "fas fa-compress-arrows-alt", - "name": "Compress Arrows Alt" + "class": "fas fa-computer", + "name": "Computer" }, { - "class": "fas fa-concierge-bell", - "name": "Concierge Bell" + "class": "fas fa-computer-mouse", + "name": "Computer Mouse" }, { "class": "fab fa-confluence", @@ -1375,6 +1963,10 @@ "class": "fas fa-couch", "name": "Couch" }, + { + "class": "fas fa-cow", + "name": "Cow" + }, { "class": "fab fa-cpanel", "name": "Cpanel" @@ -1452,8 +2044,8 @@ "name": "Crop" }, { - "class": "fas fa-crop-alt", - "name": "Crop Alt" + "class": "fas fa-crop-simple", + "name": "Crop Simple" }, { "class": "fas fa-cross", @@ -1475,6 +2067,14 @@ "class": "fas fa-crutch", "name": "Crutch" }, + { + "class": "fas fa-cruzeiro-sign", + "name": "Cruzeiro Sign" + }, + { + "class": "fab fa-css", + "name": "Css" + }, { "class": "fab fa-css3", "name": "Css3" @@ -1492,13 +2092,17 @@ "name": "Cubes" }, { - "class": "fas fa-cut", - "name": "Cut" + "class": "fas fa-cubes-stacked", + "name": "Cubes Stacked" }, { "class": "fab fa-cuttlefish", "name": "Cuttlefish" }, + { + "class": "fas fa-d", + "name": "D" + }, { "class": "fab fa-d-and-d", "name": "D And D" @@ -1511,6 +2115,10 @@ "class": "fab fa-dailymotion", "name": "Dailymotion" }, + { + "class": "fab fa-dart-lang", + "name": "Dart Lang" + }, { "class": "fab fa-dashcube", "name": "Dashcube" @@ -1520,13 +2128,17 @@ "name": "Database" }, { - "class": "fas fa-deaf", - "name": "Deaf" + "class": "fab fa-debian", + "name": "Debian" }, { "class": "fab fa-deezer", "name": "Deezer" }, + { + "class": "fas fa-delete-left", + "name": "Delete Left" + }, { "class": "fab fa-delicious", "name": "Delicious" @@ -1564,8 +2176,28 @@ "name": "Dhl" }, { - "class": "fas fa-diagnoses", - "name": "Diagnoses" + "class": "fas fa-diagram-next", + "name": "Diagram Next" + }, + { + "class": "fas fa-diagram-predecessor", + "name": "Diagram Predecessor" + }, + { + "class": "fas fa-diagram-project", + "name": "Diagram Project" + }, + { + "class": "fas fa-diagram-successor", + "name": "Diagram Successor" + }, + { + "class": "fas fa-diamond", + "name": "Diamond" + }, + { + "class": "fas fa-diamond-turn-right", + "name": "Diamond Turn Right" }, { "class": "fab fa-diaspora", @@ -1615,14 +2247,6 @@ "class": "fab fa-digital-ocean", "name": "Digital Ocean" }, - { - "class": "fas fa-digital-tachograph", - "name": "Digital Tachograph" - }, - { - "class": "fas fa-directions", - "name": "Directions" - }, { "class": "fab fa-discord", "name": "Discord" @@ -1636,16 +2260,12 @@ "name": "Disease" }, { - "class": "fas fa-divide", - "name": "Divide" - }, - { - "class": "fas fa-dizzy", - "name": "Dizzy" + "class": "fas fa-display", + "name": "Display" }, { - "class": "far fa-dizzy", - "name": "Dizzy" + "class": "fas fa-divide", + "name": "Divide" }, { "class": "fas fa-dna", @@ -1672,12 +2292,8 @@ "name": "Dolly" }, { - "class": "fas fa-dolly-flatbed", - "name": "Dolly Flatbed" - }, - { - "class": "fas fa-donate", - "name": "Donate" + "class": "fas fa-dong-sign", + "name": "Dong Sign" }, { "class": "fas fa-door-closed", @@ -1688,16 +2304,16 @@ "name": "Door Open" }, { - "class": "fas fa-dot-circle", - "name": "Dot Circle" + "class": "fas fa-dove", + "name": "Dove" }, { - "class": "far fa-dot-circle", - "name": "Dot Circle" + "class": "fas fa-down-left-and-up-right-to-center", + "name": "Down Left And Up Right To Center" }, { - "class": "fas fa-dove", - "name": "Dove" + "class": "fas fa-down-long", + "name": "Down Long" }, { "class": "fas fa-download", @@ -1707,10 +2323,6 @@ "class": "fab fa-draft2digital", "name": "Draft2digital" }, - { - "class": "fas fa-drafting-compass", - "name": "Drafting Compass" - }, { "class": "fas fa-dragon", "name": "Dragon" @@ -1723,14 +2335,18 @@ "class": "fab fa-dribbble", "name": "Dribbble" }, - { - "class": "fab fa-dribbble-square", - "name": "Dribbble Square" - }, { "class": "fab fa-dropbox", "name": "Dropbox" }, + { + "class": "fas fa-droplet", + "name": "Droplet" + }, + { + "class": "fas fa-droplet-slash", + "name": "Droplet Slash" + }, { "class": "fas fa-drum", "name": "Drum" @@ -1767,10 +2383,42 @@ "class": "fab fa-dyalog", "name": "Dyalog" }, + { + "class": "fas fa-e", + "name": "E" + }, + { + "class": "fas fa-ear-deaf", + "name": "Ear Deaf" + }, + { + "class": "fas fa-ear-listen", + "name": "Ear Listen" + }, { "class": "fab fa-earlybirds", "name": "Earlybirds" }, + { + "class": "fas fa-earth-africa", + "name": "Earth Africa" + }, + { + "class": "fas fa-earth-americas", + "name": "Earth Americas" + }, + { + "class": "fas fa-earth-asia", + "name": "Earth Asia" + }, + { + "class": "fas fa-earth-europe", + "name": "Earth Europe" + }, + { + "class": "fas fa-earth-oceania", + "name": "Earth Oceania" + }, { "class": "fab fa-ebay", "name": "Ebay" @@ -1783,14 +2431,6 @@ "class": "fab fa-edge-legacy", "name": "Edge Legacy" }, - { - "class": "fas fa-edit", - "name": "Edit" - }, - { - "class": "far fa-edit", - "name": "Edit" - }, { "class": "fas fa-egg", "name": "Egg" @@ -1804,12 +2444,16 @@ "name": "Elementor" }, { - "class": "fas fa-ellipsis-h", - "name": "Ellipsis H" + "class": "fas fa-elevator", + "name": "Elevator" + }, + { + "class": "fas fa-ellipsis", + "name": "Ellipsis" }, { - "class": "fas fa-ellipsis-v", - "name": "Ellipsis V" + "class": "fas fa-ellipsis-vertical", + "name": "Ellipsis Vertical" }, { "class": "fab fa-ello", @@ -1831,6 +2475,10 @@ "class": "far fa-envelope", "name": "Envelope" }, + { + "class": "fas fa-envelope-circle-check", + "name": "Envelope Circle Check" + }, { "class": "fas fa-envelope-open", "name": "Envelope Open" @@ -1844,8 +2492,8 @@ "name": "Envelope Open Text" }, { - "class": "fas fa-envelope-square", - "name": "Envelope Square" + "class": "fas fa-envelopes-bulk", + "name": "Envelopes Bulk" }, { "class": "fab fa-envira", @@ -1883,45 +2531,21 @@ "class": "fab fa-evernote", "name": "Evernote" }, - { - "class": "fas fa-exchange-alt", - "name": "Exchange Alt" - }, { "class": "fas fa-exclamation", "name": "Exclamation" }, - { - "class": "fas fa-exclamation-circle", - "name": "Exclamation Circle" - }, - { - "class": "fas fa-exclamation-triangle", - "name": "Exclamation Triangle" - }, { "class": "fas fa-expand", "name": "Expand" }, - { - "class": "fas fa-expand-alt", - "name": "Expand Alt" - }, - { - "class": "fas fa-expand-arrows-alt", - "name": "Expand Arrows Alt" - }, { "class": "fab fa-expeditedssl", "name": "Expeditedssl" }, { - "class": "fas fa-external-link-alt", - "name": "External Link Alt" - }, - { - "class": "fas fa-external-link-square-alt", - "name": "External Link Square Alt" + "class": "fas fa-explosion", + "name": "Explosion" }, { "class": "fas fa-eye", @@ -1935,6 +2559,10 @@ "class": "fas fa-eye-dropper", "name": "Eye Dropper" }, + { + "class": "fas fa-eye-low-vision", + "name": "Eye Low Vision" + }, { "class": "fas fa-eye-slash", "name": "Eye Slash" @@ -1944,376 +2572,724 @@ "name": "Eye Slash" }, { - "class": "fab fa-facebook", - "name": "Facebook" + "class": "fas fa-f", + "name": "F" }, { - "class": "fab fa-facebook-f", - "name": "Facebook F" + "class": "fas fa-face-angry", + "name": "Face Angry" }, { - "class": "fab fa-facebook-messenger", - "name": "Facebook Messenger" + "class": "far fa-face-angry", + "name": "Face Angry" }, { - "class": "fab fa-facebook-square", - "name": "Facebook Square" + "class": "fas fa-face-dizzy", + "name": "Face Dizzy" }, { - "class": "fas fa-fan", - "name": "Fan" + "class": "far fa-face-dizzy", + "name": "Face Dizzy" }, { - "class": "fab fa-fantasy-flight-games", - "name": "Fantasy Flight Games" + "class": "fas fa-face-flushed", + "name": "Face Flushed" }, { - "class": "fas fa-fast-backward", - "name": "Fast Backward" + "class": "far fa-face-flushed", + "name": "Face Flushed" }, { - "class": "fas fa-fast-forward", - "name": "Fast Forward" + "class": "fas fa-face-frown", + "name": "Face Frown" }, { - "class": "fas fa-faucet", - "name": "Faucet" + "class": "far fa-face-frown", + "name": "Face Frown" }, { - "class": "fas fa-fax", - "name": "Fax" + "class": "fas fa-face-frown-open", + "name": "Face Frown Open" }, { - "class": "fas fa-feather", - "name": "Feather" + "class": "far fa-face-frown-open", + "name": "Face Frown Open" }, { - "class": "fas fa-feather-alt", - "name": "Feather Alt" + "class": "fas fa-face-grimace", + "name": "Face Grimace" }, { - "class": "fab fa-fedex", - "name": "Fedex" + "class": "far fa-face-grimace", + "name": "Face Grimace" }, { - "class": "fab fa-fedora", - "name": "Fedora" + "class": "fas fa-face-grin", + "name": "Face Grin" }, { - "class": "fas fa-female", - "name": "Female" + "class": "far fa-face-grin", + "name": "Face Grin" }, { - "class": "fas fa-fighter-jet", - "name": "Fighter Jet" + "class": "fas fa-face-grin-beam", + "name": "Face Grin Beam" }, { - "class": "fab fa-figma", - "name": "Figma" + "class": "far fa-face-grin-beam", + "name": "Face Grin Beam" }, { - "class": "fas fa-file", - "name": "File" + "class": "fas fa-face-grin-beam-sweat", + "name": "Face Grin Beam Sweat" }, { - "class": "far fa-file", - "name": "File" + "class": "far fa-face-grin-beam-sweat", + "name": "Face Grin Beam Sweat" }, { - "class": "fas fa-file-alt", - "name": "File Alt" + "class": "fas fa-face-grin-hearts", + "name": "Face Grin Hearts" }, { - "class": "far fa-file-alt", - "name": "File Alt" + "class": "far fa-face-grin-hearts", + "name": "Face Grin Hearts" }, { - "class": "fas fa-file-archive", - "name": "File Archive" + "class": "fas fa-face-grin-squint", + "name": "Face Grin Squint" }, { - "class": "far fa-file-archive", - "name": "File Archive" + "class": "far fa-face-grin-squint", + "name": "Face Grin Squint" }, { - "class": "fas fa-file-audio", - "name": "File Audio" + "class": "fas fa-face-grin-squint-tears", + "name": "Face Grin Squint Tears" }, { - "class": "far fa-file-audio", - "name": "File Audio" + "class": "far fa-face-grin-squint-tears", + "name": "Face Grin Squint Tears" }, { - "class": "fas fa-file-code", - "name": "File Code" + "class": "fas fa-face-grin-stars", + "name": "Face Grin Stars" }, { - "class": "far fa-file-code", - "name": "File Code" + "class": "far fa-face-grin-stars", + "name": "Face Grin Stars" }, { - "class": "fas fa-file-contract", - "name": "File Contract" + "class": "fas fa-face-grin-tears", + "name": "Face Grin Tears" }, { - "class": "fas fa-file-csv", - "name": "File Csv" + "class": "far fa-face-grin-tears", + "name": "Face Grin Tears" }, { - "class": "fas fa-file-download", - "name": "File Download" + "class": "fas fa-face-grin-tongue", + "name": "Face Grin Tongue" }, { - "class": "fas fa-file-excel", - "name": "File Excel" + "class": "far fa-face-grin-tongue", + "name": "Face Grin Tongue" }, { - "class": "far fa-file-excel", - "name": "File Excel" + "class": "fas fa-face-grin-tongue-squint", + "name": "Face Grin Tongue Squint" }, { - "class": "fas fa-file-export", - "name": "File Export" + "class": "far fa-face-grin-tongue-squint", + "name": "Face Grin Tongue Squint" }, { - "class": "fas fa-file-image", - "name": "File Image" + "class": "fas fa-face-grin-tongue-wink", + "name": "Face Grin Tongue Wink" }, { - "class": "far fa-file-image", - "name": "File Image" + "class": "far fa-face-grin-tongue-wink", + "name": "Face Grin Tongue Wink" }, { - "class": "fas fa-file-import", - "name": "File Import" + "class": "fas fa-face-grin-wide", + "name": "Face Grin Wide" }, { - "class": "fas fa-file-invoice", - "name": "File Invoice" + "class": "far fa-face-grin-wide", + "name": "Face Grin Wide" }, { - "class": "fas fa-file-invoice-dollar", - "name": "File Invoice Dollar" + "class": "fas fa-face-grin-wink", + "name": "Face Grin Wink" }, { - "class": "fas fa-file-medical", - "name": "File Medical" + "class": "far fa-face-grin-wink", + "name": "Face Grin Wink" }, { - "class": "fas fa-file-medical-alt", - "name": "File Medical Alt" + "class": "fas fa-face-kiss", + "name": "Face Kiss" }, { - "class": "fas fa-file-pdf", - "name": "File Pdf" + "class": "far fa-face-kiss", + "name": "Face Kiss" }, { - "class": "far fa-file-pdf", - "name": "File Pdf" + "class": "fas fa-face-kiss-beam", + "name": "Face Kiss Beam" }, { - "class": "fas fa-file-powerpoint", - "name": "File Powerpoint" + "class": "far fa-face-kiss-beam", + "name": "Face Kiss Beam" }, { - "class": "far fa-file-powerpoint", - "name": "File Powerpoint" + "class": "fas fa-face-kiss-wink-heart", + "name": "Face Kiss Wink Heart" }, { - "class": "fas fa-file-prescription", - "name": "File Prescription" + "class": "far fa-face-kiss-wink-heart", + "name": "Face Kiss Wink Heart" }, { - "class": "fas fa-file-signature", - "name": "File Signature" + "class": "fas fa-face-laugh", + "name": "Face Laugh" }, { - "class": "fas fa-file-upload", - "name": "File Upload" + "class": "far fa-face-laugh", + "name": "Face Laugh" }, { - "class": "fas fa-file-video", - "name": "File Video" + "class": "fas fa-face-laugh-beam", + "name": "Face Laugh Beam" }, { - "class": "far fa-file-video", - "name": "File Video" + "class": "far fa-face-laugh-beam", + "name": "Face Laugh Beam" }, { - "class": "fas fa-file-word", - "name": "File Word" + "class": "fas fa-face-laugh-squint", + "name": "Face Laugh Squint" }, { - "class": "far fa-file-word", - "name": "File Word" + "class": "far fa-face-laugh-squint", + "name": "Face Laugh Squint" }, { - "class": "fas fa-fill", - "name": "Fill" + "class": "fas fa-face-laugh-wink", + "name": "Face Laugh Wink" }, { - "class": "fas fa-fill-drip", - "name": "Fill Drip" + "class": "far fa-face-laugh-wink", + "name": "Face Laugh Wink" }, { - "class": "fas fa-film", - "name": "Film" + "class": "fas fa-face-meh", + "name": "Face Meh" }, { - "class": "fas fa-filter", - "name": "Filter" + "class": "far fa-face-meh", + "name": "Face Meh" }, { - "class": "fas fa-fingerprint", - "name": "Fingerprint" + "class": "fas fa-face-meh-blank", + "name": "Face Meh Blank" }, { - "class": "fas fa-fire", - "name": "Fire" + "class": "far fa-face-meh-blank", + "name": "Face Meh Blank" }, { - "class": "fas fa-fire-alt", - "name": "Fire Alt" + "class": "fas fa-face-rolling-eyes", + "name": "Face Rolling Eyes" }, { - "class": "fas fa-fire-extinguisher", - "name": "Fire Extinguisher" + "class": "far fa-face-rolling-eyes", + "name": "Face Rolling Eyes" }, { - "class": "fab fa-firefox", - "name": "Firefox" + "class": "fas fa-face-sad-cry", + "name": "Face Sad Cry" }, { - "class": "fab fa-firefox-browser", - "name": "Firefox Browser" + "class": "far fa-face-sad-cry", + "name": "Face Sad Cry" }, { - "class": "fas fa-first-aid", - "name": "First Aid" + "class": "fas fa-face-sad-tear", + "name": "Face Sad Tear" }, { - "class": "fab fa-first-order", - "name": "First Order" + "class": "far fa-face-sad-tear", + "name": "Face Sad Tear" }, { - "class": "fab fa-first-order-alt", - "name": "First Order Alt" + "class": "fas fa-face-smile", + "name": "Face Smile" }, { - "class": "fab fa-firstdraft", - "name": "Firstdraft" + "class": "far fa-face-smile", + "name": "Face Smile" }, { - "class": "fas fa-fish", - "name": "Fish" + "class": "fas fa-face-smile-beam", + "name": "Face Smile Beam" }, { - "class": "fas fa-fist-raised", - "name": "Fist Raised" + "class": "far fa-face-smile-beam", + "name": "Face Smile Beam" }, { - "class": "fas fa-flag", - "name": "Flag" + "class": "fas fa-face-smile-wink", + "name": "Face Smile Wink" }, { - "class": "far fa-flag", - "name": "Flag" + "class": "far fa-face-smile-wink", + "name": "Face Smile Wink" }, { - "class": "fas fa-flag-checkered", - "name": "Flag Checkered" + "class": "fas fa-face-surprise", + "name": "Face Surprise" }, { - "class": "fas fa-flag-usa", - "name": "Flag Usa" + "class": "far fa-face-surprise", + "name": "Face Surprise" }, { - "class": "fas fa-flask", - "name": "Flask" + "class": "fas fa-face-tired", + "name": "Face Tired" }, { - "class": "fab fa-flickr", - "name": "Flickr" + "class": "far fa-face-tired", + "name": "Face Tired" }, { - "class": "fab fa-flipboard", - "name": "Flipboard" + "class": "fab fa-facebook", + "name": "Facebook" }, { - "class": "fas fa-flushed", - "name": "Flushed" + "class": "fab fa-facebook-f", + "name": "Facebook F" }, { - "class": "far fa-flushed", - "name": "Flushed" + "class": "fab fa-facebook-messenger", + "name": "Facebook Messenger" }, { - "class": "fab fa-fly", - "name": "Fly" + "class": "fas fa-fan", + "name": "Fan" }, { - "class": "fas fa-folder", - "name": "Folder" + "class": "fab fa-fantasy-flight-games", + "name": "Fantasy Flight Games" }, { - "class": "far fa-folder", - "name": "Folder" + "class": "fas fa-faucet", + "name": "Faucet" }, { - "class": "fas fa-folder-minus", - "name": "Folder Minus" + "class": "fas fa-faucet-drip", + "name": "Faucet Drip" }, { - "class": "fas fa-folder-open", - "name": "Folder Open" + "class": "fas fa-fax", + "name": "Fax" }, { - "class": "far fa-folder-open", - "name": "Folder Open" + "class": "fas fa-feather", + "name": "Feather" }, { - "class": "fas fa-folder-plus", - "name": "Folder Plus" + "class": "fas fa-feather-pointed", + "name": "Feather Pointed" }, { - "class": "fas fa-font", - "name": "Font" + "class": "fab fa-fedex", + "name": "Fedex" }, { - "class": "fab fa-font-awesome", - "name": "Font Awesome" + "class": "fab fa-fedora", + "name": "Fedora" }, { - "class": "fab fa-font-awesome-alt", - "name": "Font Awesome Alt" + "class": "fas fa-ferry", + "name": "Ferry" }, { - "class": "fab fa-font-awesome-flag", - "name": "Font Awesome Flag" + "class": "fab fa-figma", + "name": "Figma" }, { - "class": "far fa-font-awesome-logo-full", - "name": "Font Awesome Logo Full" + "class": "fas fa-file", + "name": "File" }, { - "class": "fas fa-font-awesome-logo-full", - "name": "Font Awesome Logo Full" + "class": "far fa-file", + "name": "File" }, { - "class": "fab fa-font-awesome-logo-full", - "name": "Font Awesome Logo Full" + "class": "fas fa-file-arrow-down", + "name": "File Arrow Down" }, { - "class": "fab fa-fonticons", - "name": "Fonticons" + "class": "fas fa-file-arrow-up", + "name": "File Arrow Up" }, { - "class": "fab fa-fonticons-fi", - "name": "Fonticons Fi" + "class": "fas fa-file-audio", + "name": "File Audio" }, { - "class": "fas fa-football-ball", - "name": "Football Ball" + "class": "far fa-file-audio", + "name": "File Audio" + }, + { + "class": "fas fa-file-circle-check", + "name": "File Circle Check" + }, + { + "class": "fas fa-file-circle-exclamation", + "name": "File Circle Exclamation" + }, + { + "class": "fas fa-file-circle-minus", + "name": "File Circle Minus" + }, + { + "class": "fas fa-file-circle-plus", + "name": "File Circle Plus" + }, + { + "class": "fas fa-file-circle-question", + "name": "File Circle Question" + }, + { + "class": "fas fa-file-circle-xmark", + "name": "File Circle Xmark" + }, + { + "class": "fas fa-file-code", + "name": "File Code" + }, + { + "class": "far fa-file-code", + "name": "File Code" + }, + { + "class": "fas fa-file-contract", + "name": "File Contract" + }, + { + "class": "fas fa-file-csv", + "name": "File Csv" + }, + { + "class": "fas fa-file-excel", + "name": "File Excel" + }, + { + "class": "far fa-file-excel", + "name": "File Excel" + }, + { + "class": "fas fa-file-export", + "name": "File Export" + }, + { + "class": "fas fa-file-fragment", + "name": "File Fragment" + }, + { + "class": "fas fa-file-half-dashed", + "name": "File Half Dashed" + }, + { + "class": "fas fa-file-image", + "name": "File Image" + }, + { + "class": "far fa-file-image", + "name": "File Image" + }, + { + "class": "fas fa-file-import", + "name": "File Import" + }, + { + "class": "fas fa-file-invoice", + "name": "File Invoice" + }, + { + "class": "fas fa-file-invoice-dollar", + "name": "File Invoice Dollar" + }, + { + "class": "fas fa-file-lines", + "name": "File Lines" + }, + { + "class": "far fa-file-lines", + "name": "File Lines" + }, + { + "class": "fas fa-file-medical", + "name": "File Medical" + }, + { + "class": "fas fa-file-pdf", + "name": "File Pdf" + }, + { + "class": "far fa-file-pdf", + "name": "File Pdf" + }, + { + "class": "fas fa-file-pen", + "name": "File Pen" + }, + { + "class": "fas fa-file-powerpoint", + "name": "File Powerpoint" + }, + { + "class": "far fa-file-powerpoint", + "name": "File Powerpoint" + }, + { + "class": "fas fa-file-prescription", + "name": "File Prescription" + }, + { + "class": "fas fa-file-shield", + "name": "File Shield" + }, + { + "class": "fas fa-file-signature", + "name": "File Signature" + }, + { + "class": "fas fa-file-video", + "name": "File Video" + }, + { + "class": "far fa-file-video", + "name": "File Video" + }, + { + "class": "fas fa-file-waveform", + "name": "File Waveform" + }, + { + "class": "fas fa-file-word", + "name": "File Word" + }, + { + "class": "far fa-file-word", + "name": "File Word" + }, + { + "class": "fas fa-file-zipper", + "name": "File Zipper" + }, + { + "class": "far fa-file-zipper", + "name": "File Zipper" + }, + { + "class": "fab fa-files-pinwheel", + "name": "Files Pinwheel" + }, + { + "class": "fas fa-fill", + "name": "Fill" + }, + { + "class": "fas fa-fill-drip", + "name": "Fill Drip" + }, + { + "class": "fas fa-film", + "name": "Film" + }, + { + "class": "fas fa-filter", + "name": "Filter" + }, + { + "class": "fas fa-filter-circle-dollar", + "name": "Filter Circle Dollar" + }, + { + "class": "fas fa-filter-circle-xmark", + "name": "Filter Circle Xmark" + }, + { + "class": "fas fa-fingerprint", + "name": "Fingerprint" + }, + { + "class": "fas fa-fire", + "name": "Fire" + }, + { + "class": "fas fa-fire-burner", + "name": "Fire Burner" + }, + { + "class": "fas fa-fire-extinguisher", + "name": "Fire Extinguisher" + }, + { + "class": "fas fa-fire-flame-curved", + "name": "Fire Flame Curved" + }, + { + "class": "fas fa-fire-flame-simple", + "name": "Fire Flame Simple" + }, + { + "class": "fab fa-firefox", + "name": "Firefox" + }, + { + "class": "fab fa-firefox-browser", + "name": "Firefox Browser" + }, + { + "class": "fab fa-first-order", + "name": "First Order" + }, + { + "class": "fab fa-first-order-alt", + "name": "First Order Alt" + }, + { + "class": "fab fa-firstdraft", + "name": "Firstdraft" + }, + { + "class": "fas fa-fish", + "name": "Fish" + }, + { + "class": "fas fa-fish-fins", + "name": "Fish Fins" + }, + { + "class": "fas fa-flag", + "name": "Flag" + }, + { + "class": "far fa-flag", + "name": "Flag" + }, + { + "class": "fas fa-flag-checkered", + "name": "Flag Checkered" + }, + { + "class": "fas fa-flag-usa", + "name": "Flag Usa" + }, + { + "class": "fas fa-flask", + "name": "Flask" + }, + { + "class": "fas fa-flask-vial", + "name": "Flask Vial" + }, + { + "class": "fab fa-flickr", + "name": "Flickr" + }, + { + "class": "fab fa-flipboard", + "name": "Flipboard" + }, + { + "class": "fas fa-floppy-disk", + "name": "Floppy Disk" + }, + { + "class": "far fa-floppy-disk", + "name": "Floppy Disk" + }, + { + "class": "fas fa-florin-sign", + "name": "Florin Sign" + }, + { + "class": "fab fa-flutter", + "name": "Flutter" + }, + { + "class": "fab fa-fly", + "name": "Fly" + }, + { + "class": "fas fa-folder", + "name": "Folder" + }, + { + "class": "far fa-folder", + "name": "Folder" + }, + { + "class": "fas fa-folder-closed", + "name": "Folder Closed" + }, + { + "class": "far fa-folder-closed", + "name": "Folder Closed" + }, + { + "class": "fas fa-folder-minus", + "name": "Folder Minus" + }, + { + "class": "fas fa-folder-open", + "name": "Folder Open" + }, + { + "class": "far fa-folder-open", + "name": "Folder Open" + }, + { + "class": "fas fa-folder-plus", + "name": "Folder Plus" + }, + { + "class": "fas fa-folder-tree", + "name": "Folder Tree" + }, + { + "class": "fas fa-font", + "name": "Font" + }, + { + "class": "fas fa-font-awesome", + "name": "Font Awesome" + }, + { + "class": "far fa-font-awesome", + "name": "Font Awesome" + }, + { + "class": "fab fa-font-awesome", + "name": "Font Awesome" + }, + { + "class": "fab fa-fonticons", + "name": "Fonticons" + }, + { + "class": "fab fa-fonticons-fi", + "name": "Fonticons Fi" + }, + { + "class": "fas fa-football", + "name": "Football" }, { "class": "fab fa-fort-awesome", @@ -2331,10 +3307,22 @@ "class": "fas fa-forward", "name": "Forward" }, + { + "class": "fas fa-forward-fast", + "name": "Forward Fast" + }, + { + "class": "fas fa-forward-step", + "name": "Forward Step" + }, { "class": "fab fa-foursquare", "name": "Foursquare" }, + { + "class": "fas fa-franc-sign", + "name": "Franc Sign" + }, { "class": "fab fa-free-code-camp", "name": "Free Code Camp" @@ -2347,30 +3335,10 @@ "class": "fas fa-frog", "name": "Frog" }, - { - "class": "fas fa-frown", - "name": "Frown" - }, - { - "class": "far fa-frown", - "name": "Frown" - }, - { - "class": "fas fa-frown-open", - "name": "Frown Open" - }, - { - "class": "far fa-frown-open", - "name": "Frown Open" - }, { "class": "fab fa-fulcrum", "name": "Fulcrum" }, - { - "class": "fas fa-funnel-dollar", - "name": "Funnel Dollar" - }, { "class": "fas fa-futbol", "name": "Futbol" @@ -2379,6 +3347,10 @@ "class": "far fa-futbol", "name": "Futbol" }, + { + "class": "fas fa-g", + "name": "G" + }, { "class": "fab fa-galactic-republic", "name": "Galactic Republic" @@ -2395,10 +3367,34 @@ "class": "fas fa-gas-pump", "name": "Gas Pump" }, + { + "class": "fas fa-gauge", + "name": "Gauge" + }, + { + "class": "fas fa-gauge-high", + "name": "Gauge High" + }, + { + "class": "fas fa-gauge-simple", + "name": "Gauge Simple" + }, + { + "class": "fas fa-gauge-simple-high", + "name": "Gauge Simple High" + }, { "class": "fas fa-gavel", "name": "Gavel" }, + { + "class": "fas fa-gear", + "name": "Gear" + }, + { + "class": "fas fa-gears", + "name": "Gears" + }, { "class": "fas fa-gem", "name": "Gem" @@ -2443,10 +3439,6 @@ "class": "fab fa-git-alt", "name": "Git Alt" }, - { - "class": "fab fa-git-square", - "name": "Git Square" - }, { "class": "fab fa-github", "name": "Github" @@ -2455,10 +3447,6 @@ "class": "fab fa-github-alt", "name": "Github Alt" }, - { - "class": "fab fa-github-square", - "name": "Github Square" - }, { "class": "fab fa-gitkraken", "name": "Gitkraken" @@ -2472,20 +3460,12 @@ "name": "Gitter" }, { - "class": "fas fa-glass-cheers", - "name": "Glass Cheers" - }, - { - "class": "fas fa-glass-martini", - "name": "Glass Martini" - }, - { - "class": "fas fa-glass-martini-alt", - "name": "Glass Martini Alt" + "class": "fas fa-glass-water", + "name": "Glass Water" }, { - "class": "fas fa-glass-whiskey", - "name": "Glass Whiskey" + "class": "fas fa-glass-water-droplet", + "name": "Glass Water Droplet" }, { "class": "fas fa-glasses", @@ -2503,29 +3483,17 @@ "class": "fas fa-globe", "name": "Globe" }, - { - "class": "fas fa-globe-africa", - "name": "Globe Africa" - }, - { - "class": "fas fa-globe-americas", - "name": "Globe Americas" - }, - { - "class": "fas fa-globe-asia", - "name": "Globe Asia" - }, - { - "class": "fas fa-globe-europe", - "name": "Globe Europe" - }, { "class": "fab fa-gofore", "name": "Gofore" }, { - "class": "fas fa-golf-ball", - "name": "Golf Ball" + "class": "fab fa-golang", + "name": "Golang" + }, + { + "class": "fas fa-golf-ball-tee", + "name": "Golf Ball Tee" }, { "class": "fab fa-goodreads", @@ -2560,8 +3528,8 @@ "name": "Google Plus G" }, { - "class": "fab fa-google-plus-square", - "name": "Google Plus Square" + "class": "fab fa-google-scholar", + "name": "Google Scholar" }, { "class": "fab fa-google-wallet", @@ -2592,120 +3560,8 @@ "name": "Greater Than Equal" }, { - "class": "fas fa-grimace", - "name": "Grimace" - }, - { - "class": "far fa-grimace", - "name": "Grimace" - }, - { - "class": "fas fa-grin", - "name": "Grin" - }, - { - "class": "far fa-grin", - "name": "Grin" - }, - { - "class": "fas fa-grin-alt", - "name": "Grin Alt" - }, - { - "class": "far fa-grin-alt", - "name": "Grin Alt" - }, - { - "class": "fas fa-grin-beam", - "name": "Grin Beam" - }, - { - "class": "far fa-grin-beam", - "name": "Grin Beam" - }, - { - "class": "fas fa-grin-beam-sweat", - "name": "Grin Beam Sweat" - }, - { - "class": "far fa-grin-beam-sweat", - "name": "Grin Beam Sweat" - }, - { - "class": "fas fa-grin-hearts", - "name": "Grin Hearts" - }, - { - "class": "far fa-grin-hearts", - "name": "Grin Hearts" - }, - { - "class": "fas fa-grin-squint", - "name": "Grin Squint" - }, - { - "class": "far fa-grin-squint", - "name": "Grin Squint" - }, - { - "class": "fas fa-grin-squint-tears", - "name": "Grin Squint Tears" - }, - { - "class": "far fa-grin-squint-tears", - "name": "Grin Squint Tears" - }, - { - "class": "fas fa-grin-stars", - "name": "Grin Stars" - }, - { - "class": "far fa-grin-stars", - "name": "Grin Stars" - }, - { - "class": "fas fa-grin-tears", - "name": "Grin Tears" - }, - { - "class": "far fa-grin-tears", - "name": "Grin Tears" - }, - { - "class": "fas fa-grin-tongue", - "name": "Grin Tongue" - }, - { - "class": "far fa-grin-tongue", - "name": "Grin Tongue" - }, - { - "class": "fas fa-grin-tongue-squint", - "name": "Grin Tongue Squint" - }, - { - "class": "far fa-grin-tongue-squint", - "name": "Grin Tongue Squint" - }, - { - "class": "fas fa-grin-tongue-wink", - "name": "Grin Tongue Wink" - }, - { - "class": "far fa-grin-tongue-wink", - "name": "Grin Tongue Wink" - }, - { - "class": "fas fa-grin-wink", - "name": "Grin Wink" - }, - { - "class": "far fa-grin-wink", - "name": "Grin Wink" - }, - { - "class": "fas fa-grip-horizontal", - "name": "Grip Horizontal" + "class": "fas fa-grip", + "name": "Grip" }, { "class": "fas fa-grip-lines", @@ -2723,10 +3579,18 @@ "class": "fab fa-gripfire", "name": "Gripfire" }, + { + "class": "fas fa-group-arrows-rotate", + "name": "Group Arrows Rotate" + }, { "class": "fab fa-grunt", "name": "Grunt" }, + { + "class": "fas fa-guarani-sign", + "name": "Guarani Sign" + }, { "class": "fab fa-guilded", "name": "Guilded" @@ -2740,25 +3604,21 @@ "name": "Gulp" }, { - "class": "fas fa-h-square", - "name": "H Square" + "class": "fas fa-gun", + "name": "Gun" }, { - "class": "fab fa-hacker-news", - "name": "Hacker News" + "class": "fas fa-h", + "name": "H" }, { - "class": "fab fa-hacker-news-square", - "name": "Hacker News Square" + "class": "fab fa-hacker-news", + "name": "Hacker News" }, { "class": "fab fa-hackerrank", "name": "Hackerrank" }, - { - "class": "fas fa-hamburger", - "name": "Hamburger" - }, { "class": "fas fa-hammer", "name": "Hammer" @@ -2767,25 +3627,53 @@ "class": "fas fa-hamsa", "name": "Hamsa" }, + { + "class": "fas fa-hand", + "name": "Hand" + }, + { + "class": "far fa-hand", + "name": "Hand" + }, + { + "class": "fas fa-hand-back-fist", + "name": "Hand Back Fist" + }, + { + "class": "far fa-hand-back-fist", + "name": "Hand Back Fist" + }, + { + "class": "fas fa-hand-dots", + "name": "Hand Dots" + }, + { + "class": "fas fa-hand-fist", + "name": "Hand Fist" + }, { "class": "fas fa-hand-holding", "name": "Hand Holding" }, { - "class": "fas fa-hand-holding-heart", - "name": "Hand Holding Heart" + "class": "fas fa-hand-holding-dollar", + "name": "Hand Holding Dollar" }, { - "class": "fas fa-hand-holding-medical", - "name": "Hand Holding Medical" + "class": "fas fa-hand-holding-droplet", + "name": "Hand Holding Droplet" }, { - "class": "fas fa-hand-holding-usd", - "name": "Hand Holding Usd" + "class": "fas fa-hand-holding-hand", + "name": "Hand Holding Hand" }, { - "class": "fas fa-hand-holding-water", - "name": "Hand Holding Water" + "class": "fas fa-hand-holding-heart", + "name": "Hand Holding Heart" + }, + { + "class": "fas fa-hand-holding-medical", + "name": "Hand Holding Medical" }, { "class": "fas fa-hand-lizard", @@ -2799,14 +3687,6 @@ "class": "fas fa-hand-middle-finger", "name": "Hand Middle Finger" }, - { - "class": "fas fa-hand-paper", - "name": "Hand Paper" - }, - { - "class": "far fa-hand-paper", - "name": "Hand Paper" - }, { "class": "fas fa-hand-peace", "name": "Hand Peace" @@ -2855,14 +3735,6 @@ "class": "far fa-hand-pointer", "name": "Hand Pointer" }, - { - "class": "fas fa-hand-rock", - "name": "Hand Rock" - }, - { - "class": "far fa-hand-rock", - "name": "Hand Rock" - }, { "class": "fas fa-hand-scissors", "name": "Hand Scissors" @@ -2883,17 +3755,45 @@ "class": "far fa-hand-spock", "name": "Hand Spock" }, + { + "class": "fas fa-handcuffs", + "name": "Handcuffs" + }, { "class": "fas fa-hands", "name": "Hands" }, { - "class": "fas fa-hands-helping", - "name": "Hands Helping" + "class": "fas fa-hands-asl-interpreting", + "name": "Hands Asl Interpreting" + }, + { + "class": "fas fa-hands-bound", + "name": "Hands Bound" + }, + { + "class": "fas fa-hands-bubbles", + "name": "Hands Bubbles" + }, + { + "class": "fas fa-hands-clapping", + "name": "Hands Clapping" + }, + { + "class": "fas fa-hands-holding", + "name": "Hands Holding" + }, + { + "class": "fas fa-hands-holding-child", + "name": "Hands Holding Child" }, { - "class": "fas fa-hands-wash", - "name": "Hands Wash" + "class": "fas fa-hands-holding-circle", + "name": "Hands Holding Circle" + }, + { + "class": "fas fa-hands-praying", + "name": "Hands Praying" }, { "class": "fas fa-handshake", @@ -2904,8 +3804,16 @@ "name": "Handshake" }, { - "class": "fas fa-handshake-alt-slash", - "name": "Handshake Alt Slash" + "class": "fas fa-handshake-angle", + "name": "Handshake Angle" + }, + { + "class": "fas fa-handshake-simple", + "name": "Handshake Simple" + }, + { + "class": "fas fa-handshake-simple-slash", + "name": "Handshake Simple Slash" }, { "class": "fas fa-handshake-slash", @@ -2916,8 +3824,16 @@ "name": "Hanukiah" }, { - "class": "fas fa-hard-hat", - "name": "Hard Hat" + "class": "fas fa-hard-drive", + "name": "Hard Drive" + }, + { + "class": "far fa-hard-drive", + "name": "Hard Drive" + }, + { + "class": "fab fa-hashnode", + "name": "Hashnode" }, { "class": "fas fa-hashtag", @@ -2935,14 +3851,6 @@ "class": "fas fa-hat-wizard", "name": "Hat Wizard" }, - { - "class": "fas fa-hdd", - "name": "Hdd" - }, - { - "class": "far fa-hdd", - "name": "Hdd" - }, { "class": "fas fa-head-side-cough", "name": "Head Side Cough" @@ -2968,8 +3876,8 @@ "name": "Headphones" }, { - "class": "fas fa-headphones-alt", - "name": "Headphones Alt" + "class": "fas fa-headphones-simple", + "name": "Headphones Simple" }, { "class": "fas fa-headset", @@ -2984,24 +3892,72 @@ "name": "Heart" }, { - "class": "fas fa-heart-broken", - "name": "Heart Broken" + "class": "fas fa-heart-circle-bolt", + "name": "Heart Circle Bolt" + }, + { + "class": "fas fa-heart-circle-check", + "name": "Heart Circle Check" + }, + { + "class": "fas fa-heart-circle-exclamation", + "name": "Heart Circle Exclamation" + }, + { + "class": "fas fa-heart-circle-minus", + "name": "Heart Circle Minus" + }, + { + "class": "fas fa-heart-circle-plus", + "name": "Heart Circle Plus" + }, + { + "class": "fas fa-heart-circle-xmark", + "name": "Heart Circle Xmark" + }, + { + "class": "fas fa-heart-crack", + "name": "Heart Crack" + }, + { + "class": "fas fa-heart-pulse", + "name": "Heart Pulse" + }, + { + "class": "fas fa-helicopter", + "name": "Helicopter" + }, + { + "class": "fas fa-helicopter-symbol", + "name": "Helicopter Symbol" + }, + { + "class": "fas fa-helmet-safety", + "name": "Helmet Safety" + }, + { + "class": "fas fa-helmet-un", + "name": "Helmet Un" }, { - "class": "fas fa-heartbeat", - "name": "Heartbeat" + "class": "fas fa-hexagon-nodes", + "name": "Hexagon Nodes" }, { - "class": "fas fa-helicopter", - "name": "Helicopter" + "class": "fas fa-hexagon-nodes-bolt", + "name": "Hexagon Nodes Bolt" }, { "class": "fas fa-highlighter", "name": "Highlighter" }, { - "class": "fas fa-hiking", - "name": "Hiking" + "class": "fas fa-hill-avalanche", + "name": "Hill Avalanche" + }, + { + "class": "fas fa-hill-rockslide", + "name": "Hill Rockslide" }, { "class": "fas fa-hippo", @@ -3015,10 +3971,6 @@ "class": "fab fa-hire-a-helper", "name": "Hire A Helper" }, - { - "class": "fas fa-history", - "name": "History" - }, { "class": "fab fa-hive", "name": "Hive" @@ -3031,10 +3983,6 @@ "class": "fas fa-holly-berry", "name": "Holly Berry" }, - { - "class": "fas fa-home", - "name": "Home" - }, { "class": "fab fa-hooli", "name": "Hooli" @@ -3059,21 +4007,13 @@ "class": "far fa-hospital", "name": "Hospital" }, - { - "class": "fas fa-hospital-alt", - "name": "Hospital Alt" - }, - { - "class": "fas fa-hospital-symbol", - "name": "Hospital Symbol" - }, { "class": "fas fa-hospital-user", "name": "Hospital User" }, { - "class": "fas fa-hot-tub", - "name": "Hot Tub" + "class": "fas fa-hot-tub-person", + "name": "Hot Tub Person" }, { "class": "fas fa-hotdog", @@ -3103,13 +4043,105 @@ "class": "fas fa-hourglass-half", "name": "Hourglass Half" }, + { + "class": "far fa-hourglass-half", + "name": "Hourglass Half" + }, { "class": "fas fa-hourglass-start", "name": "Hourglass Start" }, { - "class": "fas fa-house-damage", - "name": "House Damage" + "class": "fas fa-house", + "name": "House" + }, + { + "class": "fas fa-house-chimney", + "name": "House Chimney" + }, + { + "class": "fas fa-house-chimney-crack", + "name": "House Chimney Crack" + }, + { + "class": "fas fa-house-chimney-medical", + "name": "House Chimney Medical" + }, + { + "class": "fas fa-house-chimney-user", + "name": "House Chimney User" + }, + { + "class": "fas fa-house-chimney-window", + "name": "House Chimney Window" + }, + { + "class": "fas fa-house-circle-check", + "name": "House Circle Check" + }, + { + "class": "fas fa-house-circle-exclamation", + "name": "House Circle Exclamation" + }, + { + "class": "fas fa-house-circle-xmark", + "name": "House Circle Xmark" + }, + { + "class": "fas fa-house-crack", + "name": "House Crack" + }, + { + "class": "fas fa-house-fire", + "name": "House Fire" + }, + { + "class": "fas fa-house-flag", + "name": "House Flag" + }, + { + "class": "fas fa-house-flood-water", + "name": "House Flood Water" + }, + { + "class": "fas fa-house-flood-water-circle-arrow-right", + "name": "House Flood Water Circle Arrow Right" + }, + { + "class": "fas fa-house-laptop", + "name": "House Laptop" + }, + { + "class": "fas fa-house-lock", + "name": "House Lock" + }, + { + "class": "fas fa-house-medical", + "name": "House Medical" + }, + { + "class": "fas fa-house-medical-circle-check", + "name": "House Medical Circle Check" + }, + { + "class": "fas fa-house-medical-circle-exclamation", + "name": "House Medical Circle Exclamation" + }, + { + "class": "fas fa-house-medical-circle-xmark", + "name": "House Medical Circle Xmark" + }, + { + "class": "fas fa-house-medical-flag", + "name": "House Medical Flag" + }, + { + "class": "fas fa-house-signal", + "name": "House Signal" + }, + { + "class": "fas fa-house-tsunami", + "name": "House Tsunami" }, { "class": "fas fa-house-user", @@ -3120,8 +4152,8 @@ "name": "Houzz" }, { - "class": "fas fa-hryvnia", - "name": "Hryvnia" + "class": "fas fa-hryvnia-sign", + "name": "Hryvnia Sign" }, { "class": "fab fa-html5", @@ -3131,6 +4163,14 @@ "class": "fab fa-hubspot", "name": "Hubspot" }, + { + "class": "fas fa-hurricane", + "name": "Hurricane" + }, + { + "class": "fas fa-i", + "name": "I" + }, { "class": "fas fa-i-cursor", "name": "I Cursor" @@ -3164,8 +4204,8 @@ "name": "Id Card" }, { - "class": "fas fa-id-card-alt", - "name": "Id Card Alt" + "class": "fas fa-id-card-clip", + "name": "Id Card Clip" }, { "class": "fab fa-ideal", @@ -3183,6 +4223,10 @@ "class": "far fa-image", "name": "Image" }, + { + "class": "fas fa-image-portrait", + "name": "Image Portrait" + }, { "class": "fas fa-images", "name": "Images" @@ -3203,6 +4247,10 @@ "class": "fas fa-indent", "name": "Indent" }, + { + "class": "fas fa-indian-rupee-sign", + "name": "Indian Rupee Sign" + }, { "class": "fas fa-industry", "name": "Industry" @@ -3215,22 +4263,10 @@ "class": "fas fa-info", "name": "Info" }, - { - "class": "fas fa-info-circle", - "name": "Info Circle" - }, - { - "class": "fab fa-innosoft", - "name": "Innosoft" - }, { "class": "fab fa-instagram", "name": "Instagram" }, - { - "class": "fab fa-instagram-square", - "name": "Instagram Square" - }, { "class": "fab fa-instalod", "name": "Instalod" @@ -3267,6 +4303,18 @@ "class": "fab fa-itunes-note", "name": "Itunes Note" }, + { + "class": "fas fa-j", + "name": "J" + }, + { + "class": "fas fa-jar", + "name": "Jar" + }, + { + "class": "fas fa-jar-wheat", + "name": "Jar Wheat" + }, { "class": "fab fa-java", "name": "Java" @@ -3283,6 +4331,14 @@ "class": "fab fa-jenkins", "name": "Jenkins" }, + { + "class": "fas fa-jet-fighter", + "name": "Jet Fighter" + }, + { + "class": "fas fa-jet-fighter-up", + "name": "Jet Fighter Up" + }, { "class": "fab fa-jira", "name": "Jira" @@ -3299,22 +4355,26 @@ "class": "fab fa-joomla", "name": "Joomla" }, - { - "class": "fas fa-journal-whills", - "name": "Journal Whills" - }, { "class": "fab fa-js", "name": "Js" }, - { - "class": "fab fa-js-square", - "name": "Js Square" - }, { "class": "fab fa-jsfiddle", "name": "Jsfiddle" }, + { + "class": "fas fa-jug-detergent", + "name": "Jug Detergent" + }, + { + "class": "fab fa-jxl", + "name": "Jxl" + }, + { + "class": "fas fa-k", + "name": "K" + }, { "class": "fas fa-kaaba", "name": "Kaaba" @@ -3356,28 +4416,16 @@ "name": "Kickstarter K" }, { - "class": "fas fa-kiss", - "name": "Kiss" - }, - { - "class": "far fa-kiss", - "name": "Kiss" + "class": "fas fa-kip-sign", + "name": "Kip Sign" }, { - "class": "fas fa-kiss-beam", - "name": "Kiss Beam" + "class": "fas fa-kit-medical", + "name": "Kit Medical" }, { - "class": "far fa-kiss-beam", - "name": "Kiss Beam" - }, - { - "class": "fas fa-kiss-wink-heart", - "name": "Kiss Wink Heart" - }, - { - "class": "far fa-kiss-wink-heart", - "name": "Kiss Wink Heart" + "class": "fas fa-kitchen-set", + "name": "Kitchen Set" }, { "class": "fas fa-kiwi-bird", @@ -3387,10 +4435,26 @@ "class": "fab fa-korvue", "name": "Korvue" }, + { + "class": "fas fa-l", + "name": "L" + }, + { + "class": "fas fa-land-mine-on", + "name": "Land Mine On" + }, { "class": "fas fa-landmark", "name": "Landmark" }, + { + "class": "fas fa-landmark-dome", + "name": "Landmark Dome" + }, + { + "class": "fas fa-landmark-flag", + "name": "Landmark Flag" + }, { "class": "fas fa-language", "name": "Language" @@ -3404,8 +4468,8 @@ "name": "Laptop Code" }, { - "class": "fas fa-laptop-house", - "name": "Laptop House" + "class": "fas fa-laptop-file", + "name": "Laptop File" }, { "class": "fas fa-laptop-medical", @@ -3416,44 +4480,12 @@ "name": "Laravel" }, { - "class": "fab fa-lastfm", - "name": "Lastfm" - }, - { - "class": "fab fa-lastfm-square", - "name": "Lastfm Square" + "class": "fas fa-lari-sign", + "name": "Lari Sign" }, { - "class": "fas fa-laugh", - "name": "Laugh" - }, - { - "class": "far fa-laugh", - "name": "Laugh" - }, - { - "class": "fas fa-laugh-beam", - "name": "Laugh Beam" - }, - { - "class": "far fa-laugh-beam", - "name": "Laugh Beam" - }, - { - "class": "fas fa-laugh-squint", - "name": "Laugh Squint" - }, - { - "class": "far fa-laugh-squint", - "name": "Laugh Squint" - }, - { - "class": "fas fa-laugh-wink", - "name": "Laugh Wink" - }, - { - "class": "far fa-laugh-wink", - "name": "Laugh Wink" + "class": "fab fa-lastfm", + "name": "Lastfm" }, { "class": "fas fa-layer-group", @@ -3467,6 +4499,14 @@ "class": "fab fa-leanpub", "name": "Leanpub" }, + { + "class": "fas fa-left-long", + "name": "Left Long" + }, + { + "class": "fas fa-left-right", + "name": "Left Right" + }, { "class": "fas fa-lemon", "name": "Lemon" @@ -3488,12 +4528,8 @@ "name": "Less Than Equal" }, { - "class": "fas fa-level-down-alt", - "name": "Level Down Alt" - }, - { - "class": "fas fa-level-up-alt", - "name": "Level Up Alt" + "class": "fab fa-letterboxd", + "name": "Letterboxd" }, { "class": "fas fa-life-ring", @@ -3515,10 +4551,18 @@ "class": "fab fa-line", "name": "Line" }, + { + "class": "fas fa-lines-leaning", + "name": "Lines Leaning" + }, { "class": "fas fa-link", "name": "Link" }, + { + "class": "fas fa-link-slash", + "name": "Link Slash" + }, { "class": "fab fa-linkedin", "name": "Linkedin" @@ -3544,12 +4588,8 @@ "name": "List" }, { - "class": "fas fa-list-alt", - "name": "List Alt" - }, - { - "class": "far fa-list-alt", - "name": "List Alt" + "class": "fas fa-list-check", + "name": "List Check" }, { "class": "fas fa-list-ol", @@ -3560,40 +4600,40 @@ "name": "List Ul" }, { - "class": "fas fa-location-arrow", - "name": "Location Arrow" + "class": "fas fa-litecoin-sign", + "name": "Litecoin Sign" }, { - "class": "fas fa-lock", - "name": "Lock" + "class": "fas fa-location-arrow", + "name": "Location Arrow" }, { - "class": "fas fa-lock-open", - "name": "Lock Open" + "class": "fas fa-location-crosshairs", + "name": "Location Crosshairs" }, { - "class": "fas fa-long-arrow-alt-down", - "name": "Long Arrow Alt Down" + "class": "fas fa-location-dot", + "name": "Location Dot" }, { - "class": "fas fa-long-arrow-alt-left", - "name": "Long Arrow Alt Left" + "class": "fas fa-location-pin", + "name": "Location Pin" }, { - "class": "fas fa-long-arrow-alt-right", - "name": "Long Arrow Alt Right" + "class": "fas fa-location-pin-lock", + "name": "Location Pin Lock" }, { - "class": "fas fa-long-arrow-alt-up", - "name": "Long Arrow Alt Up" + "class": "fas fa-lock", + "name": "Lock" }, { - "class": "fas fa-low-vision", - "name": "Low Vision" + "class": "fas fa-lock-open", + "name": "Lock Open" }, { - "class": "fas fa-luggage-cart", - "name": "Luggage Cart" + "class": "fas fa-locust", + "name": "Locust" }, { "class": "fas fa-lungs", @@ -3608,28 +4648,52 @@ "name": "Lyft" }, { - "class": "fab fa-magento", - "name": "Magento" + "class": "fas fa-m", + "name": "M" }, { - "class": "fas fa-magic", - "name": "Magic" + "class": "fab fa-magento", + "name": "Magento" }, { "class": "fas fa-magnet", "name": "Magnet" }, { - "class": "fas fa-mail-bulk", - "name": "Mail Bulk" + "class": "fas fa-magnifying-glass", + "name": "Magnifying Glass" + }, + { + "class": "fas fa-magnifying-glass-arrow-right", + "name": "Magnifying Glass Arrow Right" + }, + { + "class": "fas fa-magnifying-glass-chart", + "name": "Magnifying Glass Chart" + }, + { + "class": "fas fa-magnifying-glass-dollar", + "name": "Magnifying Glass Dollar" + }, + { + "class": "fas fa-magnifying-glass-location", + "name": "Magnifying Glass Location" + }, + { + "class": "fas fa-magnifying-glass-minus", + "name": "Magnifying Glass Minus" + }, + { + "class": "fas fa-magnifying-glass-plus", + "name": "Magnifying Glass Plus" }, { "class": "fab fa-mailchimp", "name": "Mailchimp" }, { - "class": "fas fa-male", - "name": "Male" + "class": "fas fa-manat-sign", + "name": "Manat Sign" }, { "class": "fab fa-mandalorian", @@ -3644,29 +4708,17 @@ "name": "Map" }, { - "class": "fas fa-map-marked", - "name": "Map Marked" + "class": "fas fa-map-location", + "name": "Map Location" }, { - "class": "fas fa-map-marked-alt", - "name": "Map Marked Alt" - }, - { - "class": "fas fa-map-marker", - "name": "Map Marker" - }, - { - "class": "fas fa-map-marker-alt", - "name": "Map Marker Alt" + "class": "fas fa-map-location-dot", + "name": "Map Location Dot" }, { "class": "fas fa-map-pin", "name": "Map Pin" }, - { - "class": "fas fa-map-signs", - "name": "Map Signs" - }, { "class": "fab fa-markdown", "name": "Markdown" @@ -3679,6 +4731,14 @@ "class": "fas fa-mars", "name": "Mars" }, + { + "class": "fas fa-mars-and-venus", + "name": "Mars And Venus" + }, + { + "class": "fas fa-mars-and-venus-burst", + "name": "Mars And Venus Burst" + }, { "class": "fas fa-mars-double", "name": "Mars Double" @@ -3688,25 +4748,57 @@ "name": "Mars Stroke" }, { - "class": "fas fa-mars-stroke-h", - "name": "Mars Stroke H" + "class": "fas fa-mars-stroke-right", + "name": "Mars Stroke Right" + }, + { + "class": "fas fa-mars-stroke-up", + "name": "Mars Stroke Up" + }, + { + "class": "fas fa-martini-glass", + "name": "Martini Glass" + }, + { + "class": "fas fa-martini-glass-citrus", + "name": "Martini Glass Citrus" }, { - "class": "fas fa-mars-stroke-v", - "name": "Mars Stroke V" + "class": "fas fa-martini-glass-empty", + "name": "Martini Glass Empty" }, { "class": "fas fa-mask", "name": "Mask" }, + { + "class": "fas fa-mask-face", + "name": "Mask Face" + }, + { + "class": "fas fa-mask-ventilator", + "name": "Mask Ventilator" + }, + { + "class": "fas fa-masks-theater", + "name": "Masks Theater" + }, { "class": "fab fa-mastodon", "name": "Mastodon" }, + { + "class": "fas fa-mattress-pillow", + "name": "Mattress Pillow" + }, { "class": "fab fa-maxcdn", "name": "Maxcdn" }, + { + "class": "fas fa-maximize", + "name": "Maximize" + }, { "class": "fab fa-mdb", "name": "Mdb" @@ -3723,14 +4815,6 @@ "class": "fab fa-medium", "name": "Medium" }, - { - "class": "fab fa-medium-m", - "name": "Medium M" - }, - { - "class": "fas fa-medkit", - "name": "Medkit" - }, { "class": "fab fa-medrt", "name": "Medrt" @@ -3743,30 +4827,6 @@ "class": "fab fa-megaport", "name": "Megaport" }, - { - "class": "fas fa-meh", - "name": "Meh" - }, - { - "class": "far fa-meh", - "name": "Meh" - }, - { - "class": "fas fa-meh-blank", - "name": "Meh Blank" - }, - { - "class": "far fa-meh-blank", - "name": "Meh Blank" - }, - { - "class": "fas fa-meh-rolling-eyes", - "name": "Meh Rolling Eyes" - }, - { - "class": "far fa-meh-rolling-eyes", - "name": "Meh Rolling Eyes" - }, { "class": "fas fa-memory", "name": "Memory" @@ -3783,6 +4843,18 @@ "class": "fas fa-mercury", "name": "Mercury" }, + { + "class": "fas fa-message", + "name": "Message" + }, + { + "class": "far fa-message", + "name": "Message" + }, + { + "class": "fab fa-meta", + "name": "Meta" + }, { "class": "fas fa-meteor", "name": "Meteor" @@ -3800,12 +4872,12 @@ "name": "Microphone" }, { - "class": "fas fa-microphone-alt", - "name": "Microphone Alt" + "class": "fas fa-microphone-lines", + "name": "Microphone Lines" }, { - "class": "fas fa-microphone-alt-slash", - "name": "Microphone Alt Slash" + "class": "fas fa-microphone-lines-slash", + "name": "Microphone Lines Slash" }, { "class": "fas fa-microphone-slash", @@ -3820,20 +4892,20 @@ "name": "Microsoft" }, { - "class": "fas fa-minus", - "name": "Minus" + "class": "fas fa-mill-sign", + "name": "Mill Sign" }, { - "class": "fas fa-minus-circle", - "name": "Minus Circle" + "class": "fas fa-minimize", + "name": "Minimize" }, { - "class": "fas fa-minus-square", - "name": "Minus Square" + "class": "fab fa-mintbit", + "name": "Mintbit" }, { - "class": "far fa-minus-square", - "name": "Minus Square" + "class": "fas fa-minus", + "name": "Minus" }, { "class": "fas fa-mitten", @@ -3860,8 +4932,20 @@ "name": "Mobile" }, { - "class": "fas fa-mobile-alt", - "name": "Mobile Alt" + "class": "fas fa-mobile-button", + "name": "Mobile Button" + }, + { + "class": "fas fa-mobile-retro", + "name": "Mobile Retro" + }, + { + "class": "fas fa-mobile-screen", + "name": "Mobile Screen" + }, + { + "class": "fas fa-mobile-screen-button", + "name": "Mobile Screen Button" }, { "class": "fab fa-modx", @@ -3876,28 +4960,44 @@ "name": "Money Bill" }, { - "class": "fas fa-money-bill-alt", - "name": "Money Bill Alt" + "class": "fas fa-money-bill-1", + "name": "Money Bill 1" + }, + { + "class": "far fa-money-bill-1", + "name": "Money Bill 1" + }, + { + "class": "fas fa-money-bill-1-wave", + "name": "Money Bill 1 Wave" + }, + { + "class": "fas fa-money-bill-transfer", + "name": "Money Bill Transfer" }, { - "class": "far fa-money-bill-alt", - "name": "Money Bill Alt" + "class": "fas fa-money-bill-trend-up", + "name": "Money Bill Trend Up" }, { "class": "fas fa-money-bill-wave", "name": "Money Bill Wave" }, { - "class": "fas fa-money-bill-wave-alt", - "name": "Money Bill Wave Alt" + "class": "fas fa-money-bill-wheat", + "name": "Money Bill Wheat" + }, + { + "class": "fas fa-money-bills", + "name": "Money Bills" }, { "class": "fas fa-money-check", "name": "Money Check" }, { - "class": "fas fa-money-check-alt", - "name": "Money Check Alt" + "class": "fas fa-money-check-dollar", + "name": "Money Check Dollar" }, { "class": "fas fa-monument", @@ -3919,30 +5019,54 @@ "class": "fas fa-mosque", "name": "Mosque" }, + { + "class": "fas fa-mosquito", + "name": "Mosquito" + }, + { + "class": "fas fa-mosquito-net", + "name": "Mosquito Net" + }, { "class": "fas fa-motorcycle", "name": "Motorcycle" }, + { + "class": "fas fa-mound", + "name": "Mound" + }, { "class": "fas fa-mountain", "name": "Mountain" }, { - "class": "fas fa-mouse", - "name": "Mouse" + "class": "fas fa-mountain-city", + "name": "Mountain City" }, { - "class": "fas fa-mouse-pointer", - "name": "Mouse Pointer" + "class": "fas fa-mountain-sun", + "name": "Mountain Sun" }, { "class": "fas fa-mug-hot", "name": "Mug Hot" }, + { + "class": "fas fa-mug-saucer", + "name": "Mug Saucer" + }, { "class": "fas fa-music", "name": "Music" }, + { + "class": "fas fa-n", + "name": "N" + }, + { + "class": "fas fa-naira-sign", + "name": "Naira Sign" + }, { "class": "fab fa-napster", "name": "Napster" @@ -3967,6 +5091,14 @@ "class": "far fa-newspaper", "name": "Newspaper" }, + { + "class": "fab fa-nfc-directional", + "name": "Nfc Directional" + }, + { + "class": "fab fa-nfc-symbol", + "name": "Nfc Symbol" + }, { "class": "fab fa-nimblr", "name": "Nimblr" @@ -3983,6 +5115,18 @@ "class": "fas fa-not-equal", "name": "Not Equal" }, + { + "class": "fas fa-notdef", + "name": "Notdef" + }, + { + "class": "fas fa-note-sticky", + "name": "Note Sticky" + }, + { + "class": "far fa-note-sticky", + "name": "Note Sticky" + }, { "class": "fas fa-notes-medical", "name": "Notes Medical" @@ -3999,6 +5143,10 @@ "class": "fab fa-nutritionix", "name": "Nutritionix" }, + { + "class": "fas fa-o", + "name": "O" + }, { "class": "fas fa-object-group", "name": "Object Group" @@ -4024,13 +5172,17 @@ "name": "Odnoklassniki" }, { - "class": "fab fa-odnoklassniki-square", - "name": "Odnoklassniki Square" + "class": "fab fa-odysee", + "name": "Odysee" }, { "class": "fas fa-oil-can", "name": "Oil Can" }, + { + "class": "fas fa-oil-well", + "name": "Oil Well" + }, { "class": "fab fa-old-republic", "name": "Old Republic" @@ -4047,6 +5199,10 @@ "class": "fab fa-openid", "name": "Openid" }, + { + "class": "fab fa-opensuse", + "name": "Opensuse" + }, { "class": "fab fa-opera", "name": "Opera" @@ -4071,6 +5227,14 @@ "class": "fas fa-outdent", "name": "Outdent" }, + { + "class": "fas fa-p", + "name": "P" + }, + { + "class": "fab fa-padlet", + "name": "Padlet" + }, { "class": "fab fa-page4", "name": "Page4" @@ -4083,14 +5247,14 @@ "class": "fas fa-pager", "name": "Pager" }, - { - "class": "fas fa-paint-brush", - "name": "Paint Brush" - }, { "class": "fas fa-paint-roller", "name": "Paint Roller" }, + { + "class": "fas fa-paintbrush", + "name": "Paintbrush" + }, { "class": "fas fa-palette", "name": "Palette" @@ -4103,6 +5267,10 @@ "class": "fas fa-pallet", "name": "Pallet" }, + { + "class": "fas fa-panorama", + "name": "Panorama" + }, { "class": "fas fa-paper-plane", "name": "Paper Plane" @@ -4123,20 +5291,16 @@ "class": "fas fa-paragraph", "name": "Paragraph" }, - { - "class": "fas fa-parking", - "name": "Parking" - }, { "class": "fas fa-passport", "name": "Passport" }, { - "class": "fas fa-pastafarianism", - "name": "Pastafarianism" + "class": "fas fa-paste", + "name": "Paste" }, { - "class": "fas fa-paste", + "class": "far fa-paste", "name": "Paste" }, { @@ -4147,14 +5311,6 @@ "class": "fas fa-pause", "name": "Pause" }, - { - "class": "fas fa-pause-circle", - "name": "Pause Circle" - }, - { - "class": "far fa-pause-circle", - "name": "Pause Circle" - }, { "class": "fas fa-paw", "name": "Paw" @@ -4172,8 +5328,8 @@ "name": "Pen" }, { - "class": "fas fa-pen-alt", - "name": "Pen Alt" + "class": "fas fa-pen-clip", + "name": "Pen Clip" }, { "class": "fas fa-pen-fancy", @@ -4184,28 +5340,48 @@ "name": "Pen Nib" }, { - "class": "fas fa-pen-square", - "name": "Pen Square" + "class": "fas fa-pen-ruler", + "name": "Pen Ruler" }, { - "class": "fas fa-pencil-alt", - "name": "Pencil Alt" + "class": "fas fa-pen-to-square", + "name": "Pen To Square" }, { - "class": "fas fa-pencil-ruler", - "name": "Pencil Ruler" + "class": "far fa-pen-to-square", + "name": "Pen To Square" }, { - "class": "fab fa-penny-arcade", - "name": "Penny Arcade" + "class": "fas fa-pencil", + "name": "Pencil" }, { "class": "fas fa-people-arrows", "name": "People Arrows" }, { - "class": "fas fa-people-carry", - "name": "People Carry" + "class": "fas fa-people-carry-box", + "name": "People Carry Box" + }, + { + "class": "fas fa-people-group", + "name": "People Group" + }, + { + "class": "fas fa-people-line", + "name": "People Line" + }, + { + "class": "fas fa-people-pulling", + "name": "People Pulling" + }, + { + "class": "fas fa-people-robbery", + "name": "People Robbery" + }, + { + "class": "fas fa-people-roof", + "name": "People Roof" }, { "class": "fas fa-pepper-hot", @@ -4219,18 +5395,202 @@ "class": "fas fa-percent", "name": "Percent" }, - { - "class": "fas fa-percentage", - "name": "Percentage" - }, { "class": "fab fa-periscope", "name": "Periscope" }, + { + "class": "fas fa-person", + "name": "Person" + }, + { + "class": "fas fa-person-arrow-down-to-line", + "name": "Person Arrow Down To Line" + }, + { + "class": "fas fa-person-arrow-up-from-line", + "name": "Person Arrow Up From Line" + }, + { + "class": "fas fa-person-biking", + "name": "Person Biking" + }, { "class": "fas fa-person-booth", "name": "Person Booth" }, + { + "class": "fas fa-person-breastfeeding", + "name": "Person Breastfeeding" + }, + { + "class": "fas fa-person-burst", + "name": "Person Burst" + }, + { + "class": "fas fa-person-cane", + "name": "Person Cane" + }, + { + "class": "fas fa-person-chalkboard", + "name": "Person Chalkboard" + }, + { + "class": "fas fa-person-circle-check", + "name": "Person Circle Check" + }, + { + "class": "fas fa-person-circle-exclamation", + "name": "Person Circle Exclamation" + }, + { + "class": "fas fa-person-circle-minus", + "name": "Person Circle Minus" + }, + { + "class": "fas fa-person-circle-plus", + "name": "Person Circle Plus" + }, + { + "class": "fas fa-person-circle-question", + "name": "Person Circle Question" + }, + { + "class": "fas fa-person-circle-xmark", + "name": "Person Circle Xmark" + }, + { + "class": "fas fa-person-digging", + "name": "Person Digging" + }, + { + "class": "fas fa-person-dots-from-line", + "name": "Person Dots From Line" + }, + { + "class": "fas fa-person-dress", + "name": "Person Dress" + }, + { + "class": "fas fa-person-dress-burst", + "name": "Person Dress Burst" + }, + { + "class": "fas fa-person-drowning", + "name": "Person Drowning" + }, + { + "class": "fas fa-person-falling", + "name": "Person Falling" + }, + { + "class": "fas fa-person-falling-burst", + "name": "Person Falling Burst" + }, + { + "class": "fas fa-person-half-dress", + "name": "Person Half Dress" + }, + { + "class": "fas fa-person-harassing", + "name": "Person Harassing" + }, + { + "class": "fas fa-person-hiking", + "name": "Person Hiking" + }, + { + "class": "fas fa-person-military-pointing", + "name": "Person Military Pointing" + }, + { + "class": "fas fa-person-military-rifle", + "name": "Person Military Rifle" + }, + { + "class": "fas fa-person-military-to-person", + "name": "Person Military To Person" + }, + { + "class": "fas fa-person-praying", + "name": "Person Praying" + }, + { + "class": "fas fa-person-pregnant", + "name": "Person Pregnant" + }, + { + "class": "fas fa-person-rays", + "name": "Person Rays" + }, + { + "class": "fas fa-person-rifle", + "name": "Person Rifle" + }, + { + "class": "fas fa-person-running", + "name": "Person Running" + }, + { + "class": "fas fa-person-shelter", + "name": "Person Shelter" + }, + { + "class": "fas fa-person-skating", + "name": "Person Skating" + }, + { + "class": "fas fa-person-skiing", + "name": "Person Skiing" + }, + { + "class": "fas fa-person-skiing-nordic", + "name": "Person Skiing Nordic" + }, + { + "class": "fas fa-person-snowboarding", + "name": "Person Snowboarding" + }, + { + "class": "fas fa-person-swimming", + "name": "Person Swimming" + }, + { + "class": "fas fa-person-through-window", + "name": "Person Through Window" + }, + { + "class": "fas fa-person-walking", + "name": "Person Walking" + }, + { + "class": "fas fa-person-walking-arrow-loop-left", + "name": "Person Walking Arrow Loop Left" + }, + { + "class": "fas fa-person-walking-arrow-right", + "name": "Person Walking Arrow Right" + }, + { + "class": "fas fa-person-walking-dashed-line-arrow-right", + "name": "Person Walking Dashed Line Arrow Right" + }, + { + "class": "fas fa-person-walking-luggage", + "name": "Person Walking Luggage" + }, + { + "class": "fas fa-person-walking-with-cane", + "name": "Person Walking With Cane" + }, + { + "class": "fas fa-peseta-sign", + "name": "Peseta Sign" + }, + { + "class": "fas fa-peso-sign", + "name": "Peso Sign" + }, { "class": "fab fa-phabricator", "name": "Phabricator" @@ -4248,28 +5608,20 @@ "name": "Phone" }, { - "class": "fas fa-phone-alt", - "name": "Phone Alt" + "class": "fas fa-phone-flip", + "name": "Phone Flip" }, { "class": "fas fa-phone-slash", "name": "Phone Slash" }, - { - "class": "fas fa-phone-square", - "name": "Phone Square" - }, - { - "class": "fas fa-phone-square-alt", - "name": "Phone Square Alt" - }, { "class": "fas fa-phone-volume", "name": "Phone Volume" }, { - "class": "fas fa-photo-video", - "name": "Photo Video" + "class": "fas fa-photo-film", + "name": "Photo Film" }, { "class": "fab fa-php", @@ -4291,10 +5643,6 @@ "class": "fab fa-pied-piper-pp", "name": "Pied Piper Pp" }, - { - "class": "fab fa-pied-piper-square", - "name": "Pied Piper Square" - }, { "class": "fas fa-piggy-bank", "name": "Piggy Bank" @@ -4312,8 +5660,12 @@ "name": "Pinterest P" }, { - "class": "fab fa-pinterest-square", - "name": "Pinterest Square" + "class": "fab fa-pix", + "name": "Pix" + }, + { + "class": "fab fa-pixiv", + "name": "Pixiv" }, { "class": "fas fa-pizza-slice", @@ -4331,25 +5683,45 @@ "class": "fas fa-plane-arrival", "name": "Plane Arrival" }, + { + "class": "fas fa-plane-circle-check", + "name": "Plane Circle Check" + }, + { + "class": "fas fa-plane-circle-exclamation", + "name": "Plane Circle Exclamation" + }, + { + "class": "fas fa-plane-circle-xmark", + "name": "Plane Circle Xmark" + }, { "class": "fas fa-plane-departure", "name": "Plane Departure" }, + { + "class": "fas fa-plane-lock", + "name": "Plane Lock" + }, { "class": "fas fa-plane-slash", "name": "Plane Slash" }, { - "class": "fas fa-play", - "name": "Play" + "class": "fas fa-plane-up", + "name": "Plane Up" + }, + { + "class": "fas fa-plant-wilt", + "name": "Plant Wilt" }, { - "class": "fas fa-play-circle", - "name": "Play Circle" + "class": "fas fa-plate-wheat", + "name": "Plate Wheat" }, { - "class": "far fa-play-circle", - "name": "Play Circle" + "class": "fas fa-play", + "name": "Play" }, { "class": "fab fa-playstation", @@ -4360,32 +5732,40 @@ "name": "Plug" }, { - "class": "fas fa-plus", - "name": "Plus" + "class": "fas fa-plug-circle-bolt", + "name": "Plug Circle Bolt" }, { - "class": "fas fa-plus-circle", - "name": "Plus Circle" + "class": "fas fa-plug-circle-check", + "name": "Plug Circle Check" }, { - "class": "fas fa-plus-square", - "name": "Plus Square" + "class": "fas fa-plug-circle-exclamation", + "name": "Plug Circle Exclamation" }, { - "class": "far fa-plus-square", - "name": "Plus Square" + "class": "fas fa-plug-circle-minus", + "name": "Plug Circle Minus" }, { - "class": "fas fa-podcast", - "name": "Podcast" + "class": "fas fa-plug-circle-plus", + "name": "Plug Circle Plus" + }, + { + "class": "fas fa-plug-circle-xmark", + "name": "Plug Circle Xmark" + }, + { + "class": "fas fa-plus", + "name": "Plus" }, { - "class": "fas fa-poll", - "name": "Poll" + "class": "fas fa-plus-minus", + "name": "Plus Minus" }, { - "class": "fas fa-poll-h", - "name": "Poll H" + "class": "fas fa-podcast", + "name": "Podcast" }, { "class": "fas fa-poo", @@ -4399,26 +5779,10 @@ "class": "fas fa-poop", "name": "Poop" }, - { - "class": "fas fa-portrait", - "name": "Portrait" - }, - { - "class": "fas fa-pound-sign", - "name": "Pound Sign" - }, { "class": "fas fa-power-off", "name": "Power Off" }, - { - "class": "fas fa-pray", - "name": "Pray" - }, - { - "class": "fas fa-praying-hands", - "name": "Praying Hands" - }, { "class": "fas fa-prescription", "name": "Prescription" @@ -4428,25 +5792,17 @@ "name": "Prescription Bottle" }, { - "class": "fas fa-prescription-bottle-alt", - "name": "Prescription Bottle Alt" + "class": "fas fa-prescription-bottle-medical", + "name": "Prescription Bottle Medical" }, { "class": "fas fa-print", "name": "Print" }, - { - "class": "fas fa-procedures", - "name": "Procedures" - }, { "class": "fab fa-product-hunt", "name": "Product Hunt" }, - { - "class": "fas fa-project-diagram", - "name": "Project Diagram" - }, { "class": "fas fa-pump-medical", "name": "Pump Medical" @@ -4467,6 +5823,10 @@ "class": "fab fa-python", "name": "Python" }, + { + "class": "fas fa-q", + "name": "Q" + }, { "class": "fab fa-qq", "name": "Qq" @@ -4479,18 +5839,6 @@ "class": "fas fa-question", "name": "Question" }, - { - "class": "fas fa-question-circle", - "name": "Question Circle" - }, - { - "class": "far fa-question-circle", - "name": "Question Circle" - }, - { - "class": "fas fa-quidditch", - "name": "Quidditch" - }, { "class": "fab fa-quinscape", "name": "Quinscape" @@ -4508,8 +5856,8 @@ "name": "Quote Right" }, { - "class": "fas fa-quran", - "name": "Quran" + "class": "fas fa-r", + "name": "R" }, { "class": "fab fa-r-project", @@ -4520,16 +5868,16 @@ "name": "Radiation" }, { - "class": "fas fa-radiation-alt", - "name": "Radiation Alt" + "class": "fas fa-radio", + "name": "Radio" }, { "class": "fas fa-rainbow", "name": "Rainbow" }, { - "class": "fas fa-random", - "name": "Random" + "class": "fas fa-ranking-star", + "name": "Ranking Star" }, { "class": "fab fa-raspberry-pi", @@ -4563,6 +5911,26 @@ "class": "fas fa-record-vinyl", "name": "Record Vinyl" }, + { + "class": "fas fa-rectangle-ad", + "name": "Rectangle Ad" + }, + { + "class": "fas fa-rectangle-list", + "name": "Rectangle List" + }, + { + "class": "far fa-rectangle-list", + "name": "Rectangle List" + }, + { + "class": "fas fa-rectangle-xmark", + "name": "Rectangle Xmark" + }, + { + "class": "far fa-rectangle-xmark", + "name": "Rectangle Xmark" + }, { "class": "fas fa-recycle", "name": "Recycle" @@ -4579,22 +5947,10 @@ "class": "fab fa-reddit-alien", "name": "Reddit Alien" }, - { - "class": "fab fa-reddit-square", - "name": "Reddit Square" - }, { "class": "fab fa-redhat", "name": "Redhat" }, - { - "class": "fas fa-redo", - "name": "Redo" - }, - { - "class": "fas fa-redo-alt", - "name": "Redo Alt" - }, { "class": "fas fa-registered", "name": "Registered" @@ -4603,14 +5959,14 @@ "class": "far fa-registered", "name": "Registered" }, - { - "class": "fas fa-remove-format", - "name": "Remove Format" - }, { "class": "fab fa-renren", "name": "Renren" }, + { + "class": "fas fa-repeat", + "name": "Repeat" + }, { "class": "fas fa-reply", "name": "Reply" @@ -4651,6 +6007,22 @@ "class": "fas fa-ribbon", "name": "Ribbon" }, + { + "class": "fas fa-right-from-bracket", + "name": "Right From Bracket" + }, + { + "class": "fas fa-right-left", + "name": "Right Left" + }, + { + "class": "fas fa-right-long", + "name": "Right Long" + }, + { + "class": "fas fa-right-to-bracket", + "name": "Right To Bracket" + }, { "class": "fas fa-ring", "name": "Ring" @@ -4659,6 +6031,34 @@ "class": "fas fa-road", "name": "Road" }, + { + "class": "fas fa-road-barrier", + "name": "Road Barrier" + }, + { + "class": "fas fa-road-bridge", + "name": "Road Bridge" + }, + { + "class": "fas fa-road-circle-check", + "name": "Road Circle Check" + }, + { + "class": "fas fa-road-circle-exclamation", + "name": "Road Circle Exclamation" + }, + { + "class": "fas fa-road-circle-xmark", + "name": "Road Circle Xmark" + }, + { + "class": "fas fa-road-lock", + "name": "Road Lock" + }, + { + "class": "fas fa-road-spikes", + "name": "Road Spikes" + }, { "class": "fas fa-robot", "name": "Robot" @@ -4675,6 +6075,18 @@ "class": "fab fa-rockrms", "name": "Rockrms" }, + { + "class": "fas fa-rotate", + "name": "Rotate" + }, + { + "class": "fas fa-rotate-left", + "name": "Rotate Left" + }, + { + "class": "fas fa-rotate-right", + "name": "Rotate Right" + }, { "class": "fas fa-route", "name": "Route" @@ -4683,14 +6095,14 @@ "class": "fas fa-rss", "name": "Rss" }, - { - "class": "fas fa-rss-square", - "name": "Rss Square" - }, { "class": "fas fa-ruble-sign", "name": "Ruble Sign" }, + { + "class": "fas fa-rug", + "name": "Rug" + }, { "class": "fas fa-ruler", "name": "Ruler" @@ -4707,38 +6119,38 @@ "class": "fas fa-ruler-vertical", "name": "Ruler Vertical" }, - { - "class": "fas fa-running", - "name": "Running" - }, { "class": "fas fa-rupee-sign", "name": "Rupee Sign" }, { - "class": "fab fa-rust", - "name": "Rust" + "class": "fas fa-rupiah-sign", + "name": "Rupiah Sign" }, { - "class": "fas fa-sad-cry", - "name": "Sad Cry" + "class": "fab fa-rust", + "name": "Rust" }, { - "class": "far fa-sad-cry", - "name": "Sad Cry" + "class": "fas fa-s", + "name": "S" }, { - "class": "fas fa-sad-tear", - "name": "Sad Tear" + "class": "fas fa-sack-dollar", + "name": "Sack Dollar" }, { - "class": "far fa-sad-tear", - "name": "Sad Tear" + "class": "fas fa-sack-xmark", + "name": "Sack Xmark" }, { "class": "fab fa-safari", "name": "Safari" }, + { + "class": "fas fa-sailboat", + "name": "Sailboat" + }, { "class": "fab fa-salesforce", "name": "Salesforce" @@ -4756,12 +6168,16 @@ "name": "Satellite Dish" }, { - "class": "fas fa-save", - "name": "Save" + "class": "fas fa-scale-balanced", + "name": "Scale Balanced" + }, + { + "class": "fas fa-scale-unbalanced", + "name": "Scale Unbalanced" }, { - "class": "far fa-save", - "name": "Save" + "class": "fas fa-scale-unbalanced-flip", + "name": "Scale Unbalanced Flip" }, { "class": "fab fa-schlix", @@ -4772,45 +6188,65 @@ "name": "School" }, { - "class": "fas fa-screwdriver", - "name": "Screwdriver" + "class": "fas fa-school-circle-check", + "name": "School Circle Check" + }, + { + "class": "fas fa-school-circle-exclamation", + "name": "School Circle Exclamation" + }, + { + "class": "fas fa-school-circle-xmark", + "name": "School Circle Xmark" + }, + { + "class": "fas fa-school-flag", + "name": "School Flag" + }, + { + "class": "fas fa-school-lock", + "name": "School Lock" }, { - "class": "fab fa-scribd", - "name": "Scribd" + "class": "fas fa-scissors", + "name": "Scissors" }, { - "class": "fas fa-scroll", - "name": "Scroll" + "class": "fab fa-screenpal", + "name": "Screenpal" }, { - "class": "fas fa-sd-card", - "name": "Sd Card" + "class": "fas fa-screwdriver", + "name": "Screwdriver" }, { - "class": "fas fa-search", - "name": "Search" + "class": "fas fa-screwdriver-wrench", + "name": "Screwdriver Wrench" }, { - "class": "fas fa-search-dollar", - "name": "Search Dollar" + "class": "fab fa-scribd", + "name": "Scribd" }, { - "class": "fas fa-search-location", - "name": "Search Location" + "class": "fas fa-scroll", + "name": "Scroll" }, { - "class": "fas fa-search-minus", - "name": "Search Minus" + "class": "fas fa-scroll-torah", + "name": "Scroll Torah" }, { - "class": "fas fa-search-plus", - "name": "Search Plus" + "class": "fas fa-sd-card", + "name": "Sd Card" }, { "class": "fab fa-searchengin", "name": "Searchengin" }, + { + "class": "fas fa-section", + "name": "Section" + }, { "class": "fas fa-seedling", "name": "Seedling" @@ -4840,28 +6276,44 @@ "name": "Share" }, { - "class": "fas fa-share-alt", - "name": "Share Alt" + "class": "fas fa-share-from-square", + "name": "Share From Square" }, { - "class": "fas fa-share-alt-square", - "name": "Share Alt Square" + "class": "far fa-share-from-square", + "name": "Share From Square" }, { - "class": "fas fa-share-square", - "name": "Share Square" + "class": "fas fa-share-nodes", + "name": "Share Nodes" }, { - "class": "far fa-share-square", - "name": "Share Square" + "class": "fas fa-sheet-plastic", + "name": "Sheet Plastic" }, { "class": "fas fa-shekel-sign", "name": "Shekel Sign" }, { - "class": "fas fa-shield-alt", - "name": "Shield Alt" + "class": "fas fa-shield", + "name": "Shield" + }, + { + "class": "fas fa-shield-cat", + "name": "Shield Cat" + }, + { + "class": "fas fa-shield-dog", + "name": "Shield Dog" + }, + { + "class": "fas fa-shield-halved", + "name": "Shield Halved" + }, + { + "class": "fas fa-shield-heart", + "name": "Shield Heart" }, { "class": "fas fa-shield-virus", @@ -4872,8 +6324,8 @@ "name": "Ship" }, { - "class": "fas fa-shipping-fast", - "name": "Shipping Fast" + "class": "fas fa-shirt", + "name": "Shirt" }, { "class": "fab fa-shirtsinbulk", @@ -4884,20 +6336,24 @@ "name": "Shoe Prints" }, { - "class": "fab fa-shopify", - "name": "Shopify" + "class": "fab fa-shoelace", + "name": "Shoelace" + }, + { + "class": "fas fa-shop", + "name": "Shop" }, { - "class": "fas fa-shopping-bag", - "name": "Shopping Bag" + "class": "fas fa-shop-lock", + "name": "Shop Lock" }, { - "class": "fas fa-shopping-basket", - "name": "Shopping Basket" + "class": "fas fa-shop-slash", + "name": "Shop Slash" }, { - "class": "fas fa-shopping-cart", - "name": "Shopping Cart" + "class": "fab fa-shopify", + "name": "Shopify" }, { "class": "fab fa-shopware", @@ -4908,33 +6364,37 @@ "name": "Shower" }, { - "class": "fas fa-shuttle-van", - "name": "Shuttle Van" - }, - { - "class": "fas fa-sign", - "name": "Sign" + "class": "fas fa-shrimp", + "name": "Shrimp" }, { - "class": "fas fa-sign-in-alt", - "name": "Sign In Alt" + "class": "fas fa-shuffle", + "name": "Shuffle" }, { - "class": "fas fa-sign-language", - "name": "Sign Language" + "class": "fas fa-shuttle-space", + "name": "Shuttle Space" }, { - "class": "fas fa-sign-out-alt", - "name": "Sign Out Alt" + "class": "fas fa-sign-hanging", + "name": "Sign Hanging" }, { "class": "fas fa-signal", "name": "Signal" }, + { + "class": "fab fa-signal-messenger", + "name": "Signal Messenger" + }, { "class": "fas fa-signature", "name": "Signature" }, + { + "class": "fas fa-signs-post", + "name": "Signs Post" + }, { "class": "fas fa-sim-card", "name": "Sim Card" @@ -4960,21 +6420,13 @@ "name": "Sith" }, { - "class": "fas fa-skating", - "name": "Skating" + "class": "fab fa-sitrox", + "name": "Sitrox" }, { "class": "fab fa-sketch", "name": "Sketch" }, - { - "class": "fas fa-skiing", - "name": "Skiing" - }, - { - "class": "fas fa-skiing-nordic", - "name": "Skiing Nordic" - }, { "class": "fas fa-skull", "name": "Skull" @@ -4995,10 +6447,6 @@ "class": "fab fa-slack", "name": "Slack" }, - { - "class": "fab fa-slack-hash", - "name": "Slack Hash" - }, { "class": "fas fa-slash", "name": "Slash" @@ -5008,37 +6456,13 @@ "name": "Sleigh" }, { - "class": "fas fa-sliders-h", - "name": "Sliders H" + "class": "fas fa-sliders", + "name": "Sliders" }, { "class": "fab fa-slideshare", "name": "Slideshare" }, - { - "class": "fas fa-smile", - "name": "Smile" - }, - { - "class": "far fa-smile", - "name": "Smile" - }, - { - "class": "fas fa-smile-beam", - "name": "Smile Beam" - }, - { - "class": "far fa-smile-beam", - "name": "Smile Beam" - }, - { - "class": "fas fa-smile-wink", - "name": "Smile Wink" - }, - { - "class": "far fa-smile-wink", - "name": "Smile Wink" - }, { "class": "fas fa-smog", "name": "Smog" @@ -5047,30 +6471,10 @@ "class": "fas fa-smoking", "name": "Smoking" }, - { - "class": "fas fa-smoking-ban", - "name": "Smoking Ban" - }, - { - "class": "fas fa-sms", - "name": "Sms" - }, { "class": "fab fa-snapchat", "name": "Snapchat" }, - { - "class": "fab fa-snapchat-ghost", - "name": "Snapchat Ghost" - }, - { - "class": "fab fa-snapchat-square", - "name": "Snapchat Square" - }, - { - "class": "fas fa-snowboarding", - "name": "Snowboarding" - }, { "class": "fas fa-snowflake", "name": "Snowflake" @@ -5103,58 +6507,10 @@ "class": "fas fa-sort", "name": "Sort" }, - { - "class": "fas fa-sort-alpha-down", - "name": "Sort Alpha Down" - }, - { - "class": "fas fa-sort-alpha-down-alt", - "name": "Sort Alpha Down Alt" - }, - { - "class": "fas fa-sort-alpha-up", - "name": "Sort Alpha Up" - }, - { - "class": "fas fa-sort-alpha-up-alt", - "name": "Sort Alpha Up Alt" - }, - { - "class": "fas fa-sort-amount-down", - "name": "Sort Amount Down" - }, - { - "class": "fas fa-sort-amount-down-alt", - "name": "Sort Amount Down Alt" - }, - { - "class": "fas fa-sort-amount-up", - "name": "Sort Amount Up" - }, - { - "class": "fas fa-sort-amount-up-alt", - "name": "Sort Amount Up Alt" - }, { "class": "fas fa-sort-down", "name": "Sort Down" }, - { - "class": "fas fa-sort-numeric-down", - "name": "Sort Numeric Down" - }, - { - "class": "fas fa-sort-numeric-down-alt", - "name": "Sort Numeric Down Alt" - }, - { - "class": "fas fa-sort-numeric-up", - "name": "Sort Numeric Up" - }, - { - "class": "fas fa-sort-numeric-up-alt", - "name": "Sort Numeric Up Alt" - }, { "class": "fas fa-sort-up", "name": "Sort Up" @@ -5172,8 +6528,12 @@ "name": "Spa" }, { - "class": "fas fa-space-shuttle", - "name": "Space Shuttle" + "class": "fab fa-space-awesome", + "name": "Space Awesome" + }, + { + "class": "fas fa-spaghetti-monster-flying", + "name": "Spaghetti Monster Flying" }, { "class": "fab fa-speakap", @@ -5199,6 +6559,10 @@ "class": "fas fa-splotch", "name": "Splotch" }, + { + "class": "fas fa-spoon", + "name": "Spoon" + }, { "class": "fab fa-spotify", "name": "Spotify" @@ -5207,6 +6571,10 @@ "class": "fas fa-spray-can", "name": "Spray Can" }, + { + "class": "fas fa-spray-can-sparkles", + "name": "Spray Can Sparkles" + }, { "class": "fas fa-square", "name": "Square" @@ -5215,13 +6583,273 @@ "class": "far fa-square", "name": "Square" }, + { + "class": "fas fa-square-arrow-up-right", + "name": "Square Arrow Up Right" + }, + { + "class": "fab fa-square-behance", + "name": "Square Behance" + }, + { + "class": "fas fa-square-binary", + "name": "Square Binary" + }, + { + "class": "fab fa-square-bluesky", + "name": "Square Bluesky" + }, + { + "class": "fas fa-square-caret-down", + "name": "Square Caret Down" + }, + { + "class": "far fa-square-caret-down", + "name": "Square Caret Down" + }, + { + "class": "fas fa-square-caret-left", + "name": "Square Caret Left" + }, + { + "class": "far fa-square-caret-left", + "name": "Square Caret Left" + }, + { + "class": "fas fa-square-caret-right", + "name": "Square Caret Right" + }, + { + "class": "far fa-square-caret-right", + "name": "Square Caret Right" + }, + { + "class": "fas fa-square-caret-up", + "name": "Square Caret Up" + }, + { + "class": "far fa-square-caret-up", + "name": "Square Caret Up" + }, + { + "class": "fas fa-square-check", + "name": "Square Check" + }, + { + "class": "far fa-square-check", + "name": "Square Check" + }, + { + "class": "fab fa-square-dribbble", + "name": "Square Dribbble" + }, + { + "class": "fas fa-square-envelope", + "name": "Square Envelope" + }, + { + "class": "fab fa-square-facebook", + "name": "Square Facebook" + }, + { + "class": "fab fa-square-font-awesome", + "name": "Square Font Awesome" + }, + { + "class": "fab fa-square-font-awesome-stroke", + "name": "Square Font Awesome Stroke" + }, { "class": "fas fa-square-full", "name": "Square Full" }, { - "class": "fas fa-square-root-alt", - "name": "Square Root Alt" + "class": "far fa-square-full", + "name": "Square Full" + }, + { + "class": "fab fa-square-git", + "name": "Square Git" + }, + { + "class": "fab fa-square-github", + "name": "Square Github" + }, + { + "class": "fab fa-square-gitlab", + "name": "Square Gitlab" + }, + { + "class": "fab fa-square-google-plus", + "name": "Square Google Plus" + }, + { + "class": "fas fa-square-h", + "name": "Square H" + }, + { + "class": "fab fa-square-hacker-news", + "name": "Square Hacker News" + }, + { + "class": "fab fa-square-instagram", + "name": "Square Instagram" + }, + { + "class": "fab fa-square-js", + "name": "Square Js" + }, + { + "class": "fab fa-square-lastfm", + "name": "Square Lastfm" + }, + { + "class": "fab fa-square-letterboxd", + "name": "Square Letterboxd" + }, + { + "class": "fas fa-square-minus", + "name": "Square Minus" + }, + { + "class": "far fa-square-minus", + "name": "Square Minus" + }, + { + "class": "fas fa-square-nfi", + "name": "Square Nfi" + }, + { + "class": "fab fa-square-odnoklassniki", + "name": "Square Odnoklassniki" + }, + { + "class": "fas fa-square-parking", + "name": "Square Parking" + }, + { + "class": "fas fa-square-pen", + "name": "Square Pen" + }, + { + "class": "fas fa-square-person-confined", + "name": "Square Person Confined" + }, + { + "class": "fas fa-square-phone", + "name": "Square Phone" + }, + { + "class": "fas fa-square-phone-flip", + "name": "Square Phone Flip" + }, + { + "class": "fab fa-square-pied-piper", + "name": "Square Pied Piper" + }, + { + "class": "fab fa-square-pinterest", + "name": "Square Pinterest" + }, + { + "class": "fas fa-square-plus", + "name": "Square Plus" + }, + { + "class": "far fa-square-plus", + "name": "Square Plus" + }, + { + "class": "fas fa-square-poll-horizontal", + "name": "Square Poll Horizontal" + }, + { + "class": "fas fa-square-poll-vertical", + "name": "Square Poll Vertical" + }, + { + "class": "fab fa-square-reddit", + "name": "Square Reddit" + }, + { + "class": "fas fa-square-root-variable", + "name": "Square Root Variable" + }, + { + "class": "fas fa-square-rss", + "name": "Square Rss" + }, + { + "class": "fas fa-square-share-nodes", + "name": "Square Share Nodes" + }, + { + "class": "fab fa-square-snapchat", + "name": "Square Snapchat" + }, + { + "class": "fab fa-square-steam", + "name": "Square Steam" + }, + { + "class": "fab fa-square-threads", + "name": "Square Threads" + }, + { + "class": "fab fa-square-tumblr", + "name": "Square Tumblr" + }, + { + "class": "fab fa-square-twitter", + "name": "Square Twitter" + }, + { + "class": "fas fa-square-up-right", + "name": "Square Up Right" + }, + { + "class": "fab fa-square-upwork", + "name": "Square Upwork" + }, + { + "class": "fab fa-square-viadeo", + "name": "Square Viadeo" + }, + { + "class": "fab fa-square-vimeo", + "name": "Square Vimeo" + }, + { + "class": "fas fa-square-virus", + "name": "Square Virus" + }, + { + "class": "fab fa-square-web-awesome", + "name": "Square Web Awesome" + }, + { + "class": "fab fa-square-web-awesome-stroke", + "name": "Square Web Awesome Stroke" + }, + { + "class": "fab fa-square-whatsapp", + "name": "Square Whatsapp" + }, + { + "class": "fab fa-square-x-twitter", + "name": "Square X Twitter" + }, + { + "class": "fab fa-square-xing", + "name": "Square Xing" + }, + { + "class": "fas fa-square-xmark", + "name": "Square Xmark" + }, + { + "class": "fab fa-square-youtube", + "name": "Square Youtube" }, { "class": "fab fa-squarespace", @@ -5239,10 +6867,22 @@ "class": "fab fa-stackpath", "name": "Stackpath" }, + { + "class": "fas fa-staff-snake", + "name": "Staff Snake" + }, + { + "class": "fas fa-stairs", + "name": "Stairs" + }, { "class": "fas fa-stamp", "name": "Stamp" }, + { + "class": "fas fa-stapler", + "name": "Stapler" + }, { "class": "fas fa-star", "name": "Star" @@ -5264,8 +6904,12 @@ "name": "Star Half" }, { - "class": "fas fa-star-half-alt", - "name": "Star Half Alt" + "class": "fas fa-star-half-stroke", + "name": "Star Half Stroke" + }, + { + "class": "far fa-star-half-stroke", + "name": "Star Half Stroke" }, { "class": "fas fa-star-of-david", @@ -5283,21 +6927,13 @@ "class": "fab fa-steam", "name": "Steam" }, - { - "class": "fab fa-steam-square", - "name": "Steam Square" - }, { "class": "fab fa-steam-symbol", "name": "Steam Symbol" }, { - "class": "fas fa-step-backward", - "name": "Step Backward" - }, - { - "class": "fas fa-step-forward", - "name": "Step Forward" + "class": "fas fa-sterling-sign", + "name": "Sterling Sign" }, { "class": "fas fa-stethoscope", @@ -5307,26 +6943,10 @@ "class": "fab fa-sticker-mule", "name": "Sticker Mule" }, - { - "class": "fas fa-sticky-note", - "name": "Sticky Note" - }, - { - "class": "far fa-sticky-note", - "name": "Sticky Note" - }, { "class": "fas fa-stop", "name": "Stop" }, - { - "class": "fas fa-stop-circle", - "name": "Stop Circle" - }, - { - "class": "far fa-stop-circle", - "name": "Stop Circle" - }, { "class": "fas fa-stopwatch", "name": "Stopwatch" @@ -5339,14 +6959,6 @@ "class": "fas fa-store", "name": "Store" }, - { - "class": "fas fa-store-alt", - "name": "Store Alt" - }, - { - "class": "fas fa-store-alt-slash", - "name": "Store Alt Slash" - }, { "class": "fas fa-store-slash", "name": "Store Slash" @@ -5355,10 +6967,6 @@ "class": "fab fa-strava", "name": "Strava" }, - { - "class": "fas fa-stream", - "name": "Stream" - }, { "class": "fas fa-street-view", "name": "Street View" @@ -5379,6 +6987,10 @@ "class": "fas fa-stroopwafel", "name": "Stroopwafel" }, + { + "class": "fab fa-stubber", + "name": "Stubber" + }, { "class": "fab fa-studiovinari", "name": "Studiovinari" @@ -5395,14 +7007,14 @@ "class": "fas fa-subscript", "name": "Subscript" }, - { - "class": "fas fa-subway", - "name": "Subway" - }, { "class": "fas fa-suitcase", "name": "Suitcase" }, + { + "class": "fas fa-suitcase-medical", + "name": "Suitcase Medical" + }, { "class": "fas fa-suitcase-rolling", "name": "Suitcase Rolling" @@ -5415,6 +7027,10 @@ "class": "far fa-sun", "name": "Sun" }, + { + "class": "fas fa-sun-plant-wilt", + "name": "Sun Plant Wilt" + }, { "class": "fab fa-superpowers", "name": "Superpowers" @@ -5427,14 +7043,6 @@ "class": "fab fa-supple", "name": "Supple" }, - { - "class": "fas fa-surprise", - "name": "Surprise" - }, - { - "class": "far fa-surprise", - "name": "Surprise" - }, { "class": "fab fa-suse", "name": "Suse" @@ -5447,14 +7055,6 @@ "class": "fab fa-swift", "name": "Swift" }, - { - "class": "fas fa-swimmer", - "name": "Swimmer" - }, - { - "class": "fas fa-swimming-pool", - "name": "Swimming Pool" - }, { "class": "fab fa-symfony", "name": "Symfony" @@ -5463,41 +7063,69 @@ "class": "fas fa-synagogue", "name": "Synagogue" }, - { - "class": "fas fa-sync", - "name": "Sync" - }, - { - "class": "fas fa-sync-alt", - "name": "Sync Alt" - }, { "class": "fas fa-syringe", "name": "Syringe" }, + { + "class": "fas fa-t", + "name": "T" + }, { "class": "fas fa-table", "name": "Table" }, { - "class": "fas fa-table-tennis", - "name": "Table Tennis" + "class": "fas fa-table-cells", + "name": "Table Cells" + }, + { + "class": "fas fa-table-cells-column-lock", + "name": "Table Cells Column Lock" + }, + { + "class": "fas fa-table-cells-large", + "name": "Table Cells Large" + }, + { + "class": "fas fa-table-cells-row-lock", + "name": "Table Cells Row Lock" + }, + { + "class": "fas fa-table-cells-row-unlock", + "name": "Table Cells Row Unlock" + }, + { + "class": "fas fa-table-columns", + "name": "Table Columns" + }, + { + "class": "fas fa-table-list", + "name": "Table List" + }, + { + "class": "fas fa-table-tennis-paddle-ball", + "name": "Table Tennis Paddle Ball" }, { "class": "fas fa-tablet", "name": "Tablet" }, { - "class": "fas fa-tablet-alt", - "name": "Tablet Alt" + "class": "fas fa-tablet-button", + "name": "Tablet Button" + }, + { + "class": "fas fa-tablet-screen-button", + "name": "Tablet Screen Button" }, { "class": "fas fa-tablets", "name": "Tablets" }, { - "class": "fas fa-tachometer-alt", - "name": "Tachometer Alt" + "class": "fas fa-tachograph-digital", + "name": "Tachograph Digital" }, { "class": "fas fa-tag", @@ -5512,8 +7140,12 @@ "name": "Tape" }, { - "class": "fas fa-tasks", - "name": "Tasks" + "class": "fas fa-tarp", + "name": "Tarp" + }, + { + "class": "fas fa-tarp-droplet", + "name": "Tarp Droplet" }, { "class": "fas fa-taxi", @@ -5536,8 +7168,24 @@ "name": "Telegram" }, { - "class": "fab fa-telegram-plane", - "name": "Telegram Plane" + "class": "fas fa-temperature-arrow-down", + "name": "Temperature Arrow Down" + }, + { + "class": "fas fa-temperature-arrow-up", + "name": "Temperature Arrow Up" + }, + { + "class": "fas fa-temperature-empty", + "name": "Temperature Empty" + }, + { + "class": "fas fa-temperature-full", + "name": "Temperature Full" + }, + { + "class": "fas fa-temperature-half", + "name": "Temperature Half" }, { "class": "fas fa-temperature-high", @@ -5548,81 +7196,85 @@ "name": "Temperature Low" }, { - "class": "fab fa-tencent-weibo", - "name": "Tencent Weibo" + "class": "fas fa-temperature-quarter", + "name": "Temperature Quarter" }, { - "class": "fas fa-tenge", - "name": "Tenge" + "class": "fas fa-temperature-three-quarters", + "name": "Temperature Three Quarters" }, { - "class": "fas fa-terminal", - "name": "Terminal" + "class": "fab fa-tencent-weibo", + "name": "Tencent Weibo" }, { - "class": "fas fa-text-height", - "name": "Text Height" + "class": "fas fa-tenge-sign", + "name": "Tenge Sign" }, { - "class": "fas fa-text-width", - "name": "Text Width" + "class": "fas fa-tent", + "name": "Tent" }, { - "class": "fas fa-th", - "name": "Th" + "class": "fas fa-tent-arrow-down-to-line", + "name": "Tent Arrow Down To Line" }, { - "class": "fas fa-th-large", - "name": "Th Large" + "class": "fas fa-tent-arrow-left-right", + "name": "Tent Arrow Left Right" }, { - "class": "fas fa-th-list", - "name": "Th List" + "class": "fas fa-tent-arrow-turn-left", + "name": "Tent Arrow Turn Left" }, { - "class": "fab fa-the-red-yeti", - "name": "The Red Yeti" + "class": "fas fa-tent-arrows-down", + "name": "Tent Arrows Down" }, { - "class": "fas fa-theater-masks", - "name": "Theater Masks" + "class": "fas fa-tents", + "name": "Tents" }, { - "class": "fab fa-themeco", - "name": "Themeco" + "class": "fas fa-terminal", + "name": "Terminal" }, { - "class": "fab fa-themeisle", - "name": "Themeisle" + "class": "fas fa-text-height", + "name": "Text Height" }, { - "class": "fas fa-thermometer", - "name": "Thermometer" + "class": "fas fa-text-slash", + "name": "Text Slash" }, { - "class": "fas fa-thermometer-empty", - "name": "Thermometer Empty" + "class": "fas fa-text-width", + "name": "Text Width" }, { - "class": "fas fa-thermometer-full", - "name": "Thermometer Full" + "class": "fab fa-the-red-yeti", + "name": "The Red Yeti" }, { - "class": "fas fa-thermometer-half", - "name": "Thermometer Half" + "class": "fab fa-themeco", + "name": "Themeco" }, { - "class": "fas fa-thermometer-quarter", - "name": "Thermometer Quarter" + "class": "fab fa-themeisle", + "name": "Themeisle" }, { - "class": "fas fa-thermometer-three-quarters", - "name": "Thermometer Three Quarters" + "class": "fas fa-thermometer", + "name": "Thermometer" }, { "class": "fab fa-think-peaks", "name": "Think Peaks" }, + { + "class": "fab fa-threads", + "name": "Threads" + }, { "class": "fas fa-thumbs-down", "name": "Thumbs Down" @@ -5644,40 +7296,24 @@ "name": "Thumbtack" }, { - "class": "fas fa-ticket-alt", - "name": "Ticket Alt" - }, - { - "class": "fab fa-tiktok", - "name": "Tiktok" - }, - { - "class": "fas fa-times", - "name": "Times" - }, - { - "class": "fas fa-times-circle", - "name": "Times Circle" - }, - { - "class": "far fa-times-circle", - "name": "Times Circle" + "class": "fas fa-thumbtack-slash", + "name": "Thumbtack Slash" }, { - "class": "fas fa-tint", - "name": "Tint" + "class": "fas fa-ticket", + "name": "Ticket" }, { - "class": "fas fa-tint-slash", - "name": "Tint Slash" + "class": "fas fa-ticket-simple", + "name": "Ticket Simple" }, { - "class": "fas fa-tired", - "name": "Tired" + "class": "fab fa-tiktok", + "name": "Tiktok" }, { - "class": "far fa-tired", - "name": "Tired" + "class": "fas fa-timeline", + "name": "Timeline" }, { "class": "fas fa-toggle-off", @@ -5700,25 +7336,41 @@ "name": "Toilet Paper Slash" }, { - "class": "fas fa-toolbox", - "name": "Toolbox" + "class": "fas fa-toilet-portable", + "name": "Toilet Portable" }, { - "class": "fas fa-tools", - "name": "Tools" + "class": "fas fa-toilets-portable", + "name": "Toilets Portable" }, { - "class": "fas fa-tooth", - "name": "Tooth" + "class": "fas fa-toolbox", + "name": "Toolbox" }, { - "class": "fas fa-torah", - "name": "Torah" + "class": "fas fa-tooth", + "name": "Tooth" }, { "class": "fas fa-torii-gate", "name": "Torii Gate" }, + { + "class": "fas fa-tornado", + "name": "Tornado" + }, + { + "class": "fas fa-tower-broadcast", + "name": "Tower Broadcast" + }, + { + "class": "fas fa-tower-cell", + "name": "Tower Cell" + }, + { + "class": "fas fa-tower-observation", + "name": "Tower Observation" + }, { "class": "fas fa-tractor", "name": "Tractor" @@ -5744,56 +7396,96 @@ "name": "Train" }, { - "class": "fas fa-tram", - "name": "Tram" + "class": "fas fa-train-subway", + "name": "Train Subway" }, { - "class": "fas fa-transgender", - "name": "Transgender" + "class": "fas fa-train-tram", + "name": "Train Tram" }, { - "class": "fas fa-transgender-alt", - "name": "Transgender Alt" + "class": "fas fa-transgender", + "name": "Transgender" }, { "class": "fas fa-trash", "name": "Trash" }, { - "class": "fas fa-trash-alt", - "name": "Trash Alt" + "class": "fas fa-trash-arrow-up", + "name": "Trash Arrow Up" }, { - "class": "far fa-trash-alt", - "name": "Trash Alt" + "class": "fas fa-trash-can", + "name": "Trash Can" }, { - "class": "fas fa-trash-restore", - "name": "Trash Restore" + "class": "far fa-trash-can", + "name": "Trash Can" }, { - "class": "fas fa-trash-restore-alt", - "name": "Trash Restore Alt" + "class": "fas fa-trash-can-arrow-up", + "name": "Trash Can Arrow Up" }, { "class": "fas fa-tree", "name": "Tree" }, + { + "class": "fas fa-tree-city", + "name": "Tree City" + }, { "class": "fab fa-trello", "name": "Trello" }, + { + "class": "fas fa-triangle-exclamation", + "name": "Triangle Exclamation" + }, { "class": "fas fa-trophy", "name": "Trophy" }, + { + "class": "fas fa-trowel", + "name": "Trowel" + }, + { + "class": "fas fa-trowel-bricks", + "name": "Trowel Bricks" + }, { "class": "fas fa-truck", "name": "Truck" }, { - "class": "fas fa-truck-loading", - "name": "Truck Loading" + "class": "fas fa-truck-arrow-right", + "name": "Truck Arrow Right" + }, + { + "class": "fas fa-truck-droplet", + "name": "Truck Droplet" + }, + { + "class": "fas fa-truck-fast", + "name": "Truck Fast" + }, + { + "class": "fas fa-truck-field", + "name": "Truck Field" + }, + { + "class": "fas fa-truck-field-un", + "name": "Truck Field Un" + }, + { + "class": "fas fa-truck-front", + "name": "Truck Front" + }, + { + "class": "fas fa-truck-medical", + "name": "Truck Medical" }, { "class": "fas fa-truck-monster", @@ -5808,8 +7500,12 @@ "name": "Truck Pickup" }, { - "class": "fas fa-tshirt", - "name": "Tshirt" + "class": "fas fa-truck-plane", + "name": "Truck Plane" + }, + { + "class": "fas fa-truck-ramp-box", + "name": "Truck Ramp Box" }, { "class": "fas fa-tty", @@ -5820,8 +7516,16 @@ "name": "Tumblr" }, { - "class": "fab fa-tumblr-square", - "name": "Tumblr Square" + "class": "fas fa-turkish-lira-sign", + "name": "Turkish Lira Sign" + }, + { + "class": "fas fa-turn-down", + "name": "Turn Down" + }, + { + "class": "fas fa-turn-up", + "name": "Turn Up" }, { "class": "fas fa-tv", @@ -5835,14 +7539,14 @@ "class": "fab fa-twitter", "name": "Twitter" }, - { - "class": "fab fa-twitter-square", - "name": "Twitter Square" - }, { "class": "fab fa-typo3", "name": "Typo3" }, + { + "class": "fas fa-u", + "name": "U" + }, { "class": "fab fa-uber", "name": "Uber" @@ -5875,14 +7579,6 @@ "class": "fas fa-underline", "name": "Underline" }, - { - "class": "fas fa-undo", - "name": "Undo" - }, - { - "class": "fas fa-undo-alt", - "name": "Undo Alt" - }, { "class": "fab fa-uniregistry", "name": "Uniregistry" @@ -5895,21 +7591,13 @@ "class": "fas fa-universal-access", "name": "Universal Access" }, - { - "class": "fas fa-university", - "name": "University" - }, - { - "class": "fas fa-unlink", - "name": "Unlink" - }, { "class": "fas fa-unlock", "name": "Unlock" }, { - "class": "fas fa-unlock-alt", - "name": "Unlock Alt" + "class": "fas fa-unlock-keyhole", + "name": "Unlock Keyhole" }, { "class": "fab fa-unsplash", @@ -5919,6 +7607,26 @@ "class": "fab fa-untappd", "name": "Untappd" }, + { + "class": "fas fa-up-down", + "name": "Up Down" + }, + { + "class": "fas fa-up-down-left-right", + "name": "Up Down Left Right" + }, + { + "class": "fas fa-up-long", + "name": "Up Long" + }, + { + "class": "fas fa-up-right-and-down-left-from-center", + "name": "Up Right And Down Left From Center" + }, + { + "class": "fas fa-up-right-from-square", + "name": "Up Right From Square" + }, { "class": "fas fa-upload", "name": "Upload" @@ -5927,6 +7635,10 @@ "class": "fab fa-ups", "name": "Ups" }, + { + "class": "fab fa-upwork", + "name": "Upwork" + }, { "class": "fab fa-usb", "name": "Usb" @@ -5939,14 +7651,6 @@ "class": "far fa-user", "name": "User" }, - { - "class": "fas fa-user-alt", - "name": "User Alt" - }, - { - "class": "fas fa-user-alt-slash", - "name": "User Alt Slash" - }, { "class": "fas fa-user-astronaut", "name": "User Astronaut" @@ -5955,45 +7659,41 @@ "class": "fas fa-user-check", "name": "User Check" }, - { - "class": "fas fa-user-circle", - "name": "User Circle" - }, - { - "class": "far fa-user-circle", - "name": "User Circle" - }, { "class": "fas fa-user-clock", "name": "User Clock" }, { - "class": "fas fa-user-cog", - "name": "User Cog" + "class": "fas fa-user-doctor", + "name": "User Doctor" }, { - "class": "fas fa-user-edit", - "name": "User Edit" - }, - { - "class": "fas fa-user-friends", - "name": "User Friends" + "class": "fas fa-user-gear", + "name": "User Gear" }, { "class": "fas fa-user-graduate", "name": "User Graduate" }, + { + "class": "fas fa-user-group", + "name": "User Group" + }, { "class": "fas fa-user-injured", "name": "User Injured" }, { - "class": "fas fa-user-lock", - "name": "User Lock" + "class": "fas fa-user-large", + "name": "User Large" + }, + { + "class": "fas fa-user-large-slash", + "name": "User Large Slash" }, { - "class": "fas fa-user-md", - "name": "User Md" + "class": "fas fa-user-lock", + "name": "User Lock" }, { "class": "fas fa-user-minus", @@ -6007,6 +7707,10 @@ "class": "fas fa-user-nurse", "name": "User Nurse" }, + { + "class": "fas fa-user-pen", + "name": "User Pen" + }, { "class": "fas fa-user-plus", "name": "User Plus" @@ -6032,21 +7736,41 @@ "name": "User Tie" }, { - "class": "fas fa-user-times", - "name": "User Times" + "class": "fas fa-user-xmark", + "name": "User Xmark" }, { "class": "fas fa-users", "name": "Users" }, { - "class": "fas fa-users-cog", - "name": "Users Cog" + "class": "fas fa-users-between-lines", + "name": "Users Between Lines" + }, + { + "class": "fas fa-users-gear", + "name": "Users Gear" + }, + { + "class": "fas fa-users-line", + "name": "Users Line" + }, + { + "class": "fas fa-users-rays", + "name": "Users Rays" + }, + { + "class": "fas fa-users-rectangle", + "name": "Users Rectangle" }, { "class": "fas fa-users-slash", "name": "Users Slash" }, + { + "class": "fas fa-users-viewfinder", + "name": "Users Viewfinder" + }, { "class": "fab fa-usps", "name": "Usps" @@ -6055,18 +7779,26 @@ "class": "fab fa-ussunnah", "name": "Ussunnah" }, - { - "class": "fas fa-utensil-spoon", - "name": "Utensil Spoon" - }, { "class": "fas fa-utensils", "name": "Utensils" }, + { + "class": "fas fa-v", + "name": "V" + }, { "class": "fab fa-vaadin", "name": "Vaadin" }, + { + "class": "fas fa-van-shuttle", + "name": "Van Shuttle" + }, + { + "class": "fas fa-vault", + "name": "Vault" + }, { "class": "fas fa-vector-square", "name": "Vector Square" @@ -6099,14 +7831,18 @@ "class": "fab fa-viadeo", "name": "Viadeo" }, - { - "class": "fab fa-viadeo-square", - "name": "Viadeo Square" - }, { "class": "fas fa-vial", "name": "Vial" }, + { + "class": "fas fa-vial-circle-check", + "name": "Vial Circle Check" + }, + { + "class": "fas fa-vial-virus", + "name": "Vial Virus" + }, { "class": "fas fa-vials", "name": "Vials" @@ -6131,10 +7867,6 @@ "class": "fab fa-vimeo", "name": "Vimeo" }, - { - "class": "fab fa-vimeo-square", - "name": "Vimeo Square" - }, { "class": "fab fa-vimeo-v", "name": "Vimeo V" @@ -6147,6 +7879,14 @@ "class": "fas fa-virus", "name": "Virus" }, + { + "class": "fas fa-virus-covid", + "name": "Virus Covid" + }, + { + "class": "fas fa-virus-covid-slash", + "name": "Virus Covid Slash" + }, { "class": "fas fa-virus-slash", "name": "Virus Slash" @@ -6168,28 +7908,28 @@ "name": "Voicemail" }, { - "class": "fas fa-volleyball-ball", - "name": "Volleyball Ball" + "class": "fas fa-volcano", + "name": "Volcano" }, { - "class": "fas fa-volume-down", - "name": "Volume Down" + "class": "fas fa-volleyball", + "name": "Volleyball" }, { - "class": "fas fa-volume-mute", - "name": "Volume Mute" + "class": "fas fa-volume-high", + "name": "Volume High" }, { - "class": "fas fa-volume-off", - "name": "Volume Off" + "class": "fas fa-volume-low", + "name": "Volume Low" }, { - "class": "fas fa-volume-up", - "name": "Volume Up" + "class": "fas fa-volume-off", + "name": "Volume Off" }, { - "class": "fas fa-vote-yea", - "name": "Vote Yea" + "class": "fas fa-volume-xmark", + "name": "Volume Xmark" }, { "class": "fas fa-vr-cardboard", @@ -6200,13 +7940,29 @@ "name": "Vuejs" }, { - "class": "fas fa-walking", - "name": "Walking" + "class": "fas fa-w", + "name": "W" + }, + { + "class": "fas fa-walkie-talkie", + "name": "Walkie Talkie" }, { "class": "fas fa-wallet", "name": "Wallet" }, + { + "class": "fas fa-wand-magic", + "name": "Wand Magic" + }, + { + "class": "fas fa-wand-magic-sparkles", + "name": "Wand Magic Sparkles" + }, + { + "class": "fas fa-wand-sparkles", + "name": "Wand Sparkles" + }, { "class": "fas fa-warehouse", "name": "Warehouse" @@ -6219,6 +7975,10 @@ "class": "fas fa-water", "name": "Water" }, + { + "class": "fas fa-water-ladder", + "name": "Water Ladder" + }, { "class": "fas fa-wave-square", "name": "Wave Square" @@ -6227,6 +7987,18 @@ "class": "fab fa-waze", "name": "Waze" }, + { + "class": "fas fa-web-awesome", + "name": "Web Awesome" + }, + { + "class": "fab fa-web-awesome", + "name": "Web Awesome" + }, + { + "class": "fab fa-webflow", + "name": "Webflow" + }, { "class": "fab fa-weebly", "name": "Weebly" @@ -6235,14 +8007,14 @@ "class": "fab fa-weibo", "name": "Weibo" }, - { - "class": "fas fa-weight", - "name": "Weight" - }, { "class": "fas fa-weight-hanging", "name": "Weight Hanging" }, + { + "class": "fas fa-weight-scale", + "name": "Weight Scale" + }, { "class": "fab fa-weixin", "name": "Weixin" @@ -6252,13 +8024,25 @@ "name": "Whatsapp" }, { - "class": "fab fa-whatsapp-square", - "name": "Whatsapp Square" + "class": "fas fa-wheat-awn", + "name": "Wheat Awn" + }, + { + "class": "fas fa-wheat-awn-circle-exclamation", + "name": "Wheat Awn Circle Exclamation" }, { "class": "fas fa-wheelchair", "name": "Wheelchair" }, + { + "class": "fas fa-wheelchair-move", + "name": "Wheelchair Move" + }, + { + "class": "fas fa-whiskey-glass", + "name": "Whiskey Glass" + }, { "class": "fab fa-whmcs", "name": "Whmcs" @@ -6275,14 +8059,6 @@ "class": "fas fa-wind", "name": "Wind" }, - { - "class": "fas fa-window-close", - "name": "Window Close" - }, - { - "class": "far fa-window-close", - "name": "Window Close" - }, { "class": "fas fa-window-maximize", "name": "Window Maximize" @@ -6320,8 +8096,12 @@ "name": "Wine Glass" }, { - "class": "fas fa-wine-glass-alt", - "name": "Wine Glass Alt" + "class": "fas fa-wine-glass-empty", + "name": "Wine Glass Empty" + }, + { + "class": "fab fa-wirsindhandwerk", + "name": "Wirsindhandwerk" }, { "class": "fab fa-wix", @@ -6351,6 +8131,10 @@ "class": "fab fa-wordpress-simple", "name": "Wordpress Simple" }, + { + "class": "fas fa-worm", + "name": "Worm" + }, { "class": "fab fa-wpbeginner", "name": "Wpbeginner" @@ -6371,10 +8155,18 @@ "class": "fas fa-wrench", "name": "Wrench" }, + { + "class": "fas fa-x", + "name": "X" + }, { "class": "fas fa-x-ray", "name": "X Ray" }, + { + "class": "fab fa-x-twitter", + "name": "X Twitter" + }, { "class": "fab fa-xbox", "name": "Xbox" @@ -6384,8 +8176,16 @@ "name": "Xing" }, { - "class": "fab fa-xing-square", - "name": "Xing Square" + "class": "fas fa-xmark", + "name": "Xmark" + }, + { + "class": "fas fa-xmarks-lines", + "name": "Xmarks Lines" + }, + { + "class": "fas fa-y", + "name": "Y" }, { "class": "fab fa-y-combinator", @@ -6432,8 +8232,8 @@ "name": "Youtube" }, { - "class": "fab fa-youtube-square", - "name": "Youtube Square" + "class": "fas fa-z", + "name": "Z" }, { "class": "fab fa-zhihu", diff --git a/src/core/Classes/Utils.php b/src/core/Classes/Utils.php index ad58d83e..f9bf93d5 100644 --- a/src/core/Classes/Utils.php +++ b/src/core/Classes/Utils.php @@ -1191,7 +1191,7 @@ public static function loadLayoutFrontCss() if ($enable_font_awesome) { wp_enqueue_style( 'multiple-authors-fontawesome', - 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css', + 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css', false, PP_AUTHORS_VERSION, 'all' diff --git a/src/modules/author-boxes/assets/js/author-boxes-editor.js b/src/modules/author-boxes/assets/js/author-boxes-editor.js index e4673c8f..dd638f37 100644 --- a/src/modules/author-boxes/assets/js/author-boxes-editor.js +++ b/src/modules/author-boxes/assets/js/author-boxes-editor.js @@ -96,7 +96,7 @@ var searchTerm = $(this).val().toLowerCase(); $('.author-field-icons-tab-contents .icon-item').each(function() { var iconName = $(this).data('name'); - if (iconName.includes(searchTerm)) { + if (String(iconName).includes(searchTerm)) { $(this).removeClass('hidden'); } else { $(this).addClass('hidden'); From f3925bf1cd216055cd699620b018f3b350cef627 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Thu, 12 Dec 2024 09:39:49 +0100 Subject: [PATCH 17/29] Add Author Recent featured image size settings in Authors Lists #1891 --- src/functions/template-tags.php | 7 ++- .../author-list/assets/js/author-list.js | 10 +++++ src/modules/author-list/author-list.php | 44 +++++++++++++++++++ 3 files changed, 60 insertions(+), 1 deletion(-) diff --git a/src/functions/template-tags.php b/src/functions/template-tags.php index 98b5e624..b7c2ccd2 100644 --- a/src/functions/template-tags.php +++ b/src/functions/template-tags.php @@ -608,6 +608,7 @@ function publishpress_authors_get_all_authors($args = [], $instance = []) } elseif ($result_type === 'recent') { //query recent post by authors $author_recent_posts = multiple_authors_get_author_recent_posts($author); + $featured_image_size = isset($instance['featured_image_size']) ? $instance['featured_image_size'] : ''; //add recent posts $author_recent = ''; @@ -620,7 +621,11 @@ function publishpress_authors_get_all_authors($args = [], $instance = []) if ($post_index === 1) { $featured_image = PP_AUTHORS_ASSETS_URL . 'img/no-image.jpeg'; if (has_post_thumbnail($author_recent_post)) { - $featured_image_data = wp_get_attachment_image_src(get_post_thumbnail_id($author_recent_post)); + if (!empty($featured_image_size)) { + $featured_image_data = wp_get_attachment_image_src(get_post_thumbnail_id($author_recent_post), $featured_image_size); + } else { + $featured_image_data = wp_get_attachment_image_src(get_post_thumbnail_id($author_recent_post)); + } if ($featured_image_data && is_array($featured_image_data)) { $featured_image = $featured_image_data[0]; } diff --git a/src/modules/author-list/assets/js/author-list.js b/src/modules/author-list/assets/js/author-list.js index 9f2becce..7329d8b8 100644 --- a/src/modules/author-list/assets/js/author-list.js +++ b/src/modules/author-list/assets/js/author-list.js @@ -21,6 +21,11 @@ } else { $('.ppma-author-list-editor-tab-content.ppma-editor-group_by').hide(); } + if ($(this).val() == 'authors_recent') { + $('.ppma-author-list-editor-tab-content.ppma-editor-featured_image_size').show(); + } else { + $('.ppma-author-list-editor-tab-content.ppma-editor-featured_image_size').hide(); + } } }); @@ -66,6 +71,11 @@ if (!isEmptyOrSpaces(layout_columns)) { if (layout === 'authors_recent') { shortcode += ' authors_recent_col="' + layout_columns + '"'; + // add featured_image_size + var featured_image_size = $('.author-list-tab-content .input #featured_image_size').val(); + if (!isEmptyOrSpaces(featured_image_size)) { + shortcode += ' featured_image_size="' + featured_image_size + '"'; + } } else { shortcode += ' layout_columns="' + layout_columns + '"'; } diff --git a/src/modules/author-list/author-list.php b/src/modules/author-list/author-list.php index a3cb9521..929d0aed 100644 --- a/src/modules/author-list/author-list.php +++ b/src/modules/author-list/author-list.php @@ -338,6 +338,8 @@ public function author_list_fields_tabs() { */ public function author_list_fields() { + global $_wp_additional_image_sizes; + $pro_active = Utils::isAuthorsProActive(); $fields = []; @@ -349,6 +351,34 @@ public function author_list_fields() { $author_fields[$field_name] = $field_options['label']; } + // featured image size options + $sizes = array_reverse(array_merge( + get_intermediate_image_sizes(), + array('full') + )); + + $know_sizes = [ + 'full' => esc_html__('The original size of the uploaded image', 'publishpress-authors'), + 'large' => esc_html__('Large-sized image (1024px by 1024px)', 'publishpress-authors'), + 'medium_large' => esc_html__('Medium-large image (768px)', 'publishpress-authors'), + 'medium' => esc_html__('Medium-sized image (300px by 300px)', 'publishpress-authors'), + 'thumbnail' => esc_html__('Small-sized image (150px by 150px)', 'publishpress-authors') + ]; + + $featured_image_options = []; + + foreach ($sizes as $size) { + if (isset($_wp_additional_image_sizes[$size])) { + $width = $_wp_additional_image_sizes[$size]['width']; + $height = $_wp_additional_image_sizes[$size]['height']; + $featured_image_options[$size] = "$size: {$width}x{$height}"; + } elseif (isset($know_sizes[$size])) { + $featured_image_options[$size] = $know_sizes[$size]; + } else { + $featured_image_options[$size] = $size; + } + } + // add general fields $fields['title'] = [ 'label' => esc_html__('Title', 'publishpress-authors'), @@ -390,6 +420,17 @@ public function author_list_fields() { ], 'tab' => 'general', ]; + $fields['featured_image_size'] = [ + 'label' => esc_html__('Featured Image Size', 'publishpress-authors'), + 'description' => esc_html__('For authors_recent layout, you can select the featured image size..', 'publishpress-authors'), + 'type' => 'select', + 'options' => $featured_image_options, + 'sanitize' => 'sanitize_text_field', + 'field_visibility' => [ + 'layout' => ['authors_recent'] + ], + 'tab' => 'general', + ]; // add users fields $fields['author_type'] = [ @@ -852,6 +893,9 @@ private static function get_rendered_author_list_editor_partial($args, $option_v if ($key === 'group_by' && $option_values['layout'] !== 'authors_index') { $tr_style = 'display: none;'; } + if ($key === 'featured_image_size' && $option_values['layout'] !== 'authors_recent') { + $tr_style = 'display: none;'; + } ?> Date: Fri, 13 Dec 2024 11:43:05 +0100 Subject: [PATCH 18/29] Missing Schema on Page #1926 --- src/modules/yoast-seo-integration/src/SchemaFacade.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modules/yoast-seo-integration/src/SchemaFacade.php b/src/modules/yoast-seo-integration/src/SchemaFacade.php index b07b4af7..edb80bc2 100644 --- a/src/modules/yoast-seo-integration/src/SchemaFacade.php +++ b/src/modules/yoast-seo-integration/src/SchemaFacade.php @@ -189,9 +189,7 @@ public function filter_graph($data, $context) if (!is_array($piece)) { continue; } - if (isset($piece['author'])) { - $data[$key]['author'] = $authors; - } + if (count($author_objects) === 1 && isset($piece['@type']) && !is_array($piece['@type']) && $piece['@type'] === 'Person') { $data[$key] = wp_parse_args($author_data, $piece); } From fc6b794857cbedc7953f379029d8d3fb5b48bc97 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Fri, 13 Dec 2024 13:24:52 +0100 Subject: [PATCH 19/29] Wrong Author name on Yoast Description #1898 --- src/modules/yoast-seo-integration/yoast-seo-integration.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/yoast-seo-integration/yoast-seo-integration.php b/src/modules/yoast-seo-integration/yoast-seo-integration.php index 8c145394..edfa4a25 100644 --- a/src/modules/yoast-seo-integration/yoast-seo-integration.php +++ b/src/modules/yoast-seo-integration/yoast-seo-integration.php @@ -102,10 +102,11 @@ public function overrideSEOReplacementsForAuthorsPage($replacements, $args) if (!is_object($post) || is_wp_error($post)) { return $replacements; } + $archiveAuthor = get_archive_author(); foreach ($replacements as $key => &$value) { if ($key === '%%name%%') { - $authors = get_post_authors($post->ID); + $authors = $archiveAuthor && !empty($archiveAuthor) ? [$archiveAuthor] : get_post_authors($post->ID); if (is_array($authors) && !empty($authors)) { $author = $authors[0]; From 0d72098a7ceccac1cc462281b5406b680572dee9 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Fri, 13 Dec 2024 13:56:08 +0100 Subject: [PATCH 20/29] Schema Issue with RankMath #1901 --- .../rank-math-seo-integration.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/modules/rank-math-seo-integration/rank-math-seo-integration.php b/src/modules/rank-math-seo-integration/rank-math-seo-integration.php index dfe87c76..1bfbf583 100644 --- a/src/modules/rank-math-seo-integration/rank-math-seo-integration.php +++ b/src/modules/rank-math-seo-integration/rank-math-seo-integration.php @@ -189,12 +189,17 @@ public function rank_math_seo_json_ld($data, $jsonld) } } } + if (isset($data['richSnippet'])) { $data['richSnippet']['author'] = $profile_page_authors; } $data['ProfilePage'] = $author_profile_data; - if (isset($data['publisher'])) { + /** + * I still don't understand why publisher shouldn't be replaced in case of Guest author + * for NewsArticle but here's the issue that warrant the update https://github.com/publishpress/PublishPress-Authors/issues/1901 + */ + if (isset($data['publisher']) && $data['richSnippet']['@type'] !== 'NewsArticle') { $data_publisher = $data['publisher']; if (isset($author_profile_data['@name'])) { $data_publisher['name'] = $author_profile_data['@name']; From f6db38dfbfff9513e013fbfa0016bad934703759 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Fri, 13 Dec 2024 14:48:59 +0100 Subject: [PATCH 21/29] HTML Title Issue with AIO SEO #1899 --- src/core/Classes/Legacy/LegacyPlugin.php | 4 + src/core/Classes/Utils.php | 5 + .../all-in-one-seo-pack-integration.php | 104 ++++++++++++++++++ 3 files changed, 113 insertions(+) create mode 100644 src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php diff --git a/src/core/Classes/Legacy/LegacyPlugin.php b/src/core/Classes/Legacy/LegacyPlugin.php index 6c5eafd4..0f36abe7 100644 --- a/src/core/Classes/Legacy/LegacyPlugin.php +++ b/src/core/Classes/Legacy/LegacyPlugin.php @@ -225,6 +225,10 @@ private function getModulesDirs() $defaultDirs['rank-math-seo-integration'] = PP_AUTHORS_MODULES_PATH; } + if (Utils::isAllInOneSeoPackInstalled()) { + $defaultDirs['all-in-one-seo-pack-integration'] = PP_AUTHORS_MODULES_PATH; + } + if (Utils::isUltimatePostInstalled()) { $defaultDirs['ultimate-post-integration'] = PP_AUTHORS_MODULES_PATH; } diff --git a/src/core/Classes/Utils.php b/src/core/Classes/Utils.php index f9bf93d5..ddadf490 100644 --- a/src/core/Classes/Utils.php +++ b/src/core/Classes/Utils.php @@ -762,6 +762,11 @@ public static function isUltimateMemberInstalled() return class_exists('UM_Functions'); } + public static function isAllInOneSeoPackInstalled() + { + return defined('AIOSEO_DIR'); + } + public static function isCompatibleYoastSeoInstalled() { if (! defined('WPSEO_VERSION')) { diff --git a/src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php b/src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php new file mode 100644 index 00000000..8592607f --- /dev/null +++ b/src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php @@ -0,0 +1,104 @@ +. + */ + +use MultipleAuthors\Classes\Legacy\Module; +use MultipleAuthors\Factory; + +if (!class_exists('MA_All_In_One_Seo_Pack_Integration')) { + /** + * class MA_All_In_One_Seo_Pack_Integration + */ + class MA_All_In_One_Seo_Pack_Integration extends Module + { + public $module_name = 'all_in_one_seo_pack_integration'; + + /** + * Instance for the module + * + * @var stdClass + */ + public $module; + public $module_url; + + /** + * Construct the MA_All_In_One_Seo_Pack_Integration class + */ + public function __construct() + { + $this->module_url = $this->get_module_url(__FILE__); + + // Register the module with PublishPress + $args = [ + 'title' => __('All In One Seo Pack Integration', 'publishpress-authors'), + 'short_description' => __('Add compatibility with the All In One Seo Pack plugin', 'publishpress-authors'), + 'module_url' => $this->module_url, + 'icon_class' => 'dashicons dashicons-feedback', + 'slug' => 'all-in-one-seo-pack-integration', + 'default_options' => [ + 'enabled' => 'on', + ], + 'options_page' => false, + 'autoload' => true, + ]; + + // Apply a filter to the default options + $args['default_options'] = apply_filters( + 'pp_all_in_one_seo_pack_integration_default_options', + $args['default_options'] + ); + + $legacyPlugin = Factory::getLegacyPlugin(); + + $this->module = $legacyPlugin->register_module($this->module_name, $args); + + parent::__construct(); + } + + /** + * Initialize the module. Conditionally loads if the module is enabled + */ + public function init() + { + add_filter('aioseo_title', [$this, 'all_in_one_seo_pack_author_title']); + } + + /** + * Set author page title + * + * @param string title + * @return string + */ + public function all_in_one_seo_pack_author_title($title) { + + if (is_author() && !is_tax('author')) { + $archiveAuthor = get_archive_author(); + if (is_object($archiveAuthor) && isset($archiveAuthor->display_name)) { + $title = $archiveAuthor->display_name . $title; + } + } + + return $title; + } + + } +} From d4d51035087edf1f837fd3bac7b9676ebddbfa0e Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Fri, 13 Dec 2024 15:18:03 +0100 Subject: [PATCH 22/29] Refactor flush_cache Method #1952 --- src/core/Classes/CLI.php | 2 +- src/core/Classes/Post_Editor.php | 54 +++++++++++++------ src/core/Classes/Utils.php | 4 +- .../multiple-authors/multiple-authors.php | 4 +- .../wpengine-integration.php | 5 ++ 5 files changed, 48 insertions(+), 21 deletions(-) diff --git a/src/core/Classes/CLI.php b/src/core/Classes/CLI.php index b9abad69..f680c96c 100644 --- a/src/core/Classes/CLI.php +++ b/src/core/Classes/CLI.php @@ -138,7 +138,7 @@ public function convert_post_author($args, $assoc_args) $successes++; } // End foreach(). - do_action('publishpress_authors_flush_cache', $args); + do_action('publishpress_authors_flush_cache_for_post', $args); WP_CLI\Utils\report_batch_operation_results('post author', 'convert', $total, $successes, $failures); } diff --git a/src/core/Classes/Post_Editor.php b/src/core/Classes/Post_Editor.php index 7e941994..f6075774 100644 --- a/src/core/Classes/Post_Editor.php +++ b/src/core/Classes/Post_Editor.php @@ -46,6 +46,7 @@ public static function action_admin_init() add_action('quick_edit_custom_box', [__CLASS__, 'add_author_bulk_quick_edit_custom_box'], 10, 2); add_action('wp_ajax_save_bulk_edit_authors', [__CLASS__, 'save_bulk_edit_authors'], 10, 2); add_action('publishpress_authors_flush_cache', [__CLASS__, 'flush_cache'], 15); + add_action('publishpress_authors_flush_cache_for_post', [__CLASS__, 'flush_post_cache'], 15); } /** @@ -593,7 +594,7 @@ public static function save_bulk_edit_authors() Utils::set_post_authors($post_id, $authors, true, $fallbackUserId, $author_categories); } - do_action('publishpress_authors_flush_cache', $post_ids); + do_action('publishpress_authors_flush_cache_for_post', $post_ids); } wp_send_json_success(true, 200); @@ -635,7 +636,7 @@ public static function action_save_post_authors_metabox($post_id, $post) update_post_meta($post_id, 'ppma_disable_author_box', $disableAuthorBox); } - do_action('publishpress_authors_flush_cache', $post_id); + do_action('publishpress_authors_flush_cache_for_post', $post_id); } /** @@ -721,7 +722,7 @@ public static function action_save_post_set_initial_author($post_id, $post, $upd Utils::set_post_authors($post_id, [$defaultAuthor]); - do_action('publishpress_authors_flush_cache', $post_id); + do_action('publishpress_authors_flush_cache_for_post', $post_id); } public static function remove_core_author_field() @@ -758,24 +759,45 @@ public static function rest_remove_action_assign_author($response) return $response; } - public static function flush_cache($post_id) + /** + * Flush cache + * @return void + */ + public static function flush_cache() { - if (empty($post_id)) { - wp_cache_flush_group('get_post_authors'); - wp_cache_flush_group('author_categories_relation_cache'); + wp_cache_flush_group('get_post_authors'); + wp_cache_flush_group('author_categories_relation_cache'); + } + /** + * Flush post cache + * + * @param array|integer $post_ids + * + * @return array + */ + public static function flush_post_cache($post_ids = []) + { + if (empty($post_ids)) { + self::flush_cache(); return; } - // author categories relation for the post - $args = [ - 'post_id' => $post_id, - 'author_term_id' => '' - ]; - $cache_key = 'author_categories_relation_' . md5(serialize($args)); - wp_cache_delete($cache_key, 'author_categories_relation_cache'); + if (!is_array($post_ids)) { + $post_ids = [$post_ids]; + } - // post authors - wp_cache_delete($post_id, 'get_post_authors:authors'); + foreach ($post_ids as $post_id) { + // author categories relation for the post + $args = [ + 'post_id' => $post_id, + 'author_term_id' => '' + ]; + $cache_key = 'author_categories_relation_' . md5(serialize($args)); + wp_cache_delete($cache_key, 'author_categories_relation_cache'); + + // post authors + wp_cache_delete($post_id, 'get_post_authors:authors'); + } } } diff --git a/src/core/Classes/Utils.php b/src/core/Classes/Utils.php index ddadf490..866a93aa 100644 --- a/src/core/Classes/Utils.php +++ b/src/core/Classes/Utils.php @@ -152,7 +152,7 @@ public static function convert_post_coauthors($post_id) Utils::set_post_authors($post_id, $authors); - do_action('publishpress_authors_flush_cache', $post_id); + do_action('publishpress_authors_flush_cache_for_post', $post_id); return $result; } @@ -229,7 +229,7 @@ public static function updatePostAuthorCategory($post_id, $authors, $post_author } } } - do_action('publishpress_authors_flush_cache', $post_id); + do_action('publishpress_authors_flush_cache_for_post', $post_id); } public static function detect_author_slug_mismatch() diff --git a/src/modules/multiple-authors/multiple-authors.php b/src/modules/multiple-authors/multiple-authors.php index 68bafccd..1d39be9c 100644 --- a/src/modules/multiple-authors/multiple-authors.php +++ b/src/modules/multiple-authors/multiple-authors.php @@ -4482,7 +4482,7 @@ public function publishpressCalendarAfterCreatePost($postId, $postAuthorIds) if (!empty($validPostAuthors)) { Utils::set_post_authors($postId, $validPostAuthors); - do_action('publishpress_authors_flush_cache', $postId); + do_action('publishpress_authors_flush_cache_for_post', $postId); } return $postId; @@ -4559,7 +4559,7 @@ public function actionSetPostAuthors($postId, $authors) { Utils::set_post_authors($postId, $authors); - do_action('publishpress_authors_flush_cache', $postId); + do_action('publishpress_authors_flush_cache_for_post', $postId); } public function userProfileUpdate($userId, $oldUserData) diff --git a/src/modules/wpengine-integration/wpengine-integration.php b/src/modules/wpengine-integration/wpengine-integration.php index ac8ce2f2..edab51c0 100644 --- a/src/modules/wpengine-integration/wpengine-integration.php +++ b/src/modules/wpengine-integration/wpengine-integration.php @@ -81,6 +81,11 @@ public function __construct() public function init() { add_action('publishpress_authors_flush_cache', [$this, 'flushWPECache']); + add_action('publishpress_authors_flush_cache_for_post', [$this, 'flushWPECacheForPost']); + } + + public function flushWPECacheForPost($post_ids) { + $this->flushWPECache(); } /** From e31e1f2b529e3e31c6a2293efcbaecee185e4c8e Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 09:06:07 +0100 Subject: [PATCH 23/29] 4.7.0 introduced a slow query from avatar alt text, Add option to filter avatar alt #1923 --- src/core/Classes/Objects/Author.php | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/core/Classes/Objects/Author.php b/src/core/Classes/Objects/Author.php index 926ab2b7..4714295d 100644 --- a/src/core/Classes/Objects/Author.php +++ b/src/core/Classes/Objects/Author.php @@ -763,14 +763,29 @@ protected function get_custom_avatar($size = 96) { $urls = $this->get_custom_avatar_url($size); - $imageId = attachment_url_to_postid($urls['url']); - $class = [ 'multiple_authors_guest_author_avatar', 'avatar', ]; - $alt = get_post_meta( $imageId, '_wp_attachment_image_alt', true ); + /** + * Filters avatar alt. + * + * Passing a non-null value will prevent us fetching for avatar alt. + * + * @param string $avatar_alt text for the author's avatar. Default null. + * @param Author $author The author's instance. + * @param array $urls The avatar urls. + * @param int $size The size of the avatar. + * + * @since 4.7.3 + * + */ + $alt = apply_filters('multiple_authors_avatar_alt_text', null, $this, $urls, $size); + if (!is_null($alt)) { + $imageId = attachment_url_to_postid($urls['url']); + $alt = get_post_meta( $imageId, '_wp_attachment_image_alt', true ); + } // Build the HTML tag. $avatar = sprintf( From f8b1100c965da9fa0f37d8f2163f388f0dabdbef Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 09:27:19 +0100 Subject: [PATCH 24/29] Fix null check --- src/core/Classes/Objects/Author.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Classes/Objects/Author.php b/src/core/Classes/Objects/Author.php index 4714295d..d5ac2fbd 100644 --- a/src/core/Classes/Objects/Author.php +++ b/src/core/Classes/Objects/Author.php @@ -782,7 +782,7 @@ protected function get_custom_avatar($size = 96) * */ $alt = apply_filters('multiple_authors_avatar_alt_text', null, $this, $urls, $size); - if (!is_null($alt)) { + if (is_null($alt)) { $imageId = attachment_url_to_postid($urls['url']); $alt = get_post_meta( $imageId, '_wp_attachment_image_alt', true ); } From 34aae3f820074850fa3ba5a96bbd1fc1535750a8 Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 10:14:05 +0100 Subject: [PATCH 25/29] Update translation --- languages/publishpress-authors.pot | 960 +++++++++++++++-------------- 1 file changed, 500 insertions(+), 460 deletions(-) diff --git a/languages/publishpress-authors.pot b/languages/publishpress-authors.pot index 4d5f84ae..bf7e6ab9 100644 --- a/languages/publishpress-authors.pot +++ b/languages/publishpress-authors.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PublishPress Authors\n" -"POT-Creation-Date: 2024-10-14 09:25+0000\n" +"POT-Creation-Date: 2024-12-16 08:58+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Anderson Grudtner Martins \n" "Language-Team: Anderson Grudtner Martins \n" @@ -28,11 +28,11 @@ msgstr "" "X-Poedit-SearchPathExcluded-6: src/assets/lib\n" "Language: " -#: src/functions/template-tags.php:795 src/functions/template-tags.php:1416 +#: src/functions/template-tags.php:800 src/functions/template-tags.php:1421 msgid " and " msgstr "" -#: src/core/Classes/Post_Editor.php:178 +#: src/core/Classes/Post_Editor.php:179 msgid "\"post_author\" is empty" msgstr "" @@ -137,7 +137,7 @@ msgstr "" msgid "%1s Weight" msgstr "" -#: src/functions/template-tags.php:643 +#: src/functions/template-tags.php:648 #, php-format msgid "%1sView all posts%2s by %3s" msgstr "" @@ -191,7 +191,7 @@ msgid "" "is not uploaded in Authors Settings)" msgstr "" -#: src/functions/template-tags.php:1417 +#: src/functions/template-tags.php:1422 msgid ", and " msgstr "" @@ -200,8 +200,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:434 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:645 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:923 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1049 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1251 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1055 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1257 msgid "100 - Thin" msgstr "" @@ -210,8 +210,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:435 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:646 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:924 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1050 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1252 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1056 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1258 msgid "200 - Extra light" msgstr "" @@ -220,8 +220,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:436 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:647 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:925 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1051 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1253 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1057 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1259 msgid "300 - Light" msgstr "" @@ -230,8 +230,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:437 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:648 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:926 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1052 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1254 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1058 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1260 msgid "400 - Normal" msgstr "" @@ -240,8 +240,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:438 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:649 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:927 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1053 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1255 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1059 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1261 msgid "500 - Medium" msgstr "" @@ -250,8 +250,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:439 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:650 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:928 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1054 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1256 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1060 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1262 msgid "600 - Semi bold" msgstr "" @@ -260,8 +260,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:440 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:651 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:929 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1055 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1257 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1061 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1263 msgid "700 - Bold" msgstr "" @@ -270,8 +270,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:441 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:652 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:930 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1056 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1258 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1062 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1264 msgid "800 - Extra bold" msgstr "" @@ -280,8 +280,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:442 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:653 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:931 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1057 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1259 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1063 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1265 msgid "900 - Black" msgstr "" @@ -299,11 +299,11 @@ msgstr "" msgid "About" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3497 +#: src/modules/multiple-authors/multiple-authors.php:3499 msgid "Access denied" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2046 +#: src/modules/author-boxes/author-boxes.php:2052 msgid "Action" msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid "Active" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2074 +#: src/modules/author-boxes/author-boxes.php:2080 msgid "Add" msgstr "" @@ -331,14 +331,18 @@ msgstr "" msgid "Add Author" msgstr "" -#: src/modules/author-categories/author-categories.php:560 +#: src/modules/author-categories/author-categories.php:571 msgid "Add Author Category" msgstr "" -#: src/modules/author-list/author-list.php:689 +#: src/modules/author-list/author-list.php:730 msgid "Add Author List" msgstr "" +#: src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php:53 +msgid "Add compatibility with the All In One Seo Pack plugin" +msgstr "" + #: src/modules/divi-integration/divi-integration.php:54 msgid "Add compatibility with the Divi Theme Builder" msgstr "" @@ -383,7 +387,7 @@ msgstr "" msgid "Add compatibility with the Yoast SEO plugin" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1537 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1543 msgid "Add Custom CSS styles here..." msgstr "" @@ -391,7 +395,7 @@ msgstr "" msgid "Add debug information for the plugin" msgstr "" -#: src/core/Classes/Utils.php:1125 +#: src/core/Classes/Utils.php:1129 msgid "Add fields for social networks" msgstr "" @@ -415,11 +419,11 @@ msgstr "" msgid "Add New %1$s" msgstr "" -#: src/modules/author-categories/author-categories.php:591 +#: src/modules/author-categories/author-categories.php:602 msgid "Add New Author Category" msgstr "" -#: src/core/Classes/Utils.php:1124 +#: src/core/Classes/Utils.php:1128 msgid "Add new Author Fields" msgstr "" @@ -427,7 +431,7 @@ msgstr "" msgid "Add or remove authors" msgstr "" -#: src/modules/author-list/author-list.php:422 +#: src/modules/author-list/author-list.php:463 msgid "Add Search Box to Author Lists" msgstr "" @@ -446,8 +450,8 @@ msgstr "" msgid "Add support for author list." msgstr "" -#: src/modules/author-pages/author-pages.php:57 #: src/modules/author-pages/author-pages.php:61 +#: src/modules/author-pages/author-pages.php:65 msgid "Add support for author pages." msgstr "" @@ -460,11 +464,11 @@ msgstr "" msgid "Adding the author term %d to the post %d" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2908 +#: src/modules/multiple-authors/multiple-authors.php:2910 msgid "Advanced" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2036 +#: src/modules/author-boxes/author-boxes.php:2042 msgid "After All Authors" msgstr "" @@ -472,15 +476,15 @@ msgstr "" msgid "After Avatar" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2035 +#: src/modules/author-boxes/author-boxes.php:2041 msgid "After Biographical Info Row" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2034 +#: src/modules/author-boxes/author-boxes.php:2040 msgid "After Name Row" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2033 +#: src/modules/author-boxes/author-boxes.php:2039 msgid "After View all posts Row" msgstr "" @@ -492,14 +496,18 @@ msgstr[0] "" msgstr[1] "" #: src/core/Authors_Widget.php:181 src/core/Authors_Widget.php:412 -#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:509 +#: src/core/Plugin.php:562 src/core/Classes/Post_Editor.php:510 msgid "All Authors" msgstr "" -#: src/modules/author-categories/author-categories.php:330 +#: src/modules/author-categories/author-categories.php:338 msgid "All fields are required." msgstr "" +#: src/modules/all-in-one-seo-pack-integration/all-in-one-seo-pack-integration.php:52 +msgid "All In One Seo Pack Integration" +msgstr "" + #: src/core/Classes/Installer.php:233 msgid "All is set. No author need to be updated" msgstr "" @@ -516,7 +524,7 @@ msgstr "" msgid "Allow authors to be created without a real user account." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1970 +#: src/modules/multiple-authors/multiple-authors.php:1972 msgid "Allow User to Choose" msgstr "" @@ -529,11 +537,11 @@ msgstr "" msgid "An author with the name provided already exists." msgstr "" -#: src/modules/author-categories/author-categories.php:223 -#: src/modules/author-categories/author-categories.php:366 +#: src/modules/author-categories/author-categories.php:231 #: src/modules/author-categories/author-categories.php:374 +#: src/modules/author-categories/author-categories.php:382 #: src/modules/author-custom-fields/author-custom-fields.php:998 -#: src/modules/author-list/author-list.php:1101 +#: src/modules/author-list/author-list.php:1145 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:34 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:82 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:124 @@ -579,17 +587,17 @@ msgid "Are you sure you want to update the author slug for all the users?" msgstr "" #: src/core/Authors_Widget.php:186 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1226 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1232 msgid "Ascending" msgstr "" -#: src/core/Plugin.php:580 -#: src/modules/author-categories/author-categories.php:623 -#: src/modules/author-categories/author-categories.php:625 +#: src/core/Plugin.php:580 src/modules/author-boxes/author-boxes.php:1805 +#: src/modules/author-categories/author-categories.php:634 +#: src/modules/author-categories/author-categories.php:636 msgid "Author" msgstr "" -#: src/modules/author-pages/author-pages.php:115 +#: src/modules/author-pages/author-pages.php:119 msgid "Author Bio" msgstr "" @@ -599,7 +607,7 @@ msgstr "" #: src/modules/author-boxes/author-boxes.php:397 #: src/modules/author-boxes/author-boxes.php:499 -#: src/modules/author-boxes/author-boxes.php:2561 +#: src/modules/author-boxes/author-boxes.php:2567 msgid "Author Box" msgstr "" @@ -607,27 +615,27 @@ msgstr "" msgid "Author Box added." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1482 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1488 msgid "Author Box Background Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1461 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1467 msgid "Author Box Border Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1476 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1482 msgid "Author Box Border Radius (px)" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1443 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1449 msgid "Author Box Border Style" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1437 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1443 msgid "Author Box Border Width (px)" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1488 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1494 msgid "Author Box Color" msgstr "" @@ -635,35 +643,35 @@ msgstr "" msgid "Author Box Editor" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1395 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1401 msgid "Author Box Margin Bottom" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1401 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1407 msgid "Author Box Margin Left" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1407 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1413 msgid "Author Box Margin Right" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1389 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1395 msgid "Author Box Margin Top" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1419 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1425 msgid "Author Box Padding Bottom" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1425 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1431 msgid "Author Box Padding Left" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1431 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1437 msgid "Author Box Padding Right" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1413 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1419 msgid "Author Box Padding Top" msgstr "" @@ -681,23 +689,23 @@ msgstr "" msgid "Author Box saved." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1512 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1518 msgid "Author Box Shadow Blur" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1494 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1500 msgid "Author Box Shadow Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1500 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1506 msgid "Author Box Shadow Horizontal Offset" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1518 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1524 msgid "Author Box Shadow Spread" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1506 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1512 msgid "Author Box Shadow Vertical Offset" msgstr "" @@ -710,7 +718,7 @@ msgstr "" msgid "Author Box updated." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1467 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1473 msgid "Author Box Width (%)" msgstr "" @@ -719,15 +727,15 @@ msgstr "" #: src/modules/author-boxes/author-boxes.php:456 #: src/modules/author-boxes/author-boxes.php:457 #: src/modules/author-boxes/author-boxes.php:500 -#: src/modules/multiple-authors/multiple-authors.php:2903 +#: src/modules/multiple-authors/multiple-authors.php:2905 msgid "Author Boxes" msgstr "" #: src/modules/author-boxes/author-boxes.php:1030 #: src/modules/author-categories/author-categories.php:64 -#: src/modules/author-categories/author-categories.php:185 -#: src/modules/author-categories/author-categories.php:186 -#: src/modules/author-categories/author-categories.php:536 +#: src/modules/author-categories/author-categories.php:193 +#: src/modules/author-categories/author-categories.php:194 +#: src/modules/author-categories/author-categories.php:547 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:29 msgid "Author Categories" msgstr "" @@ -813,8 +821,8 @@ msgstr "" msgid "Author Category Weight" msgstr "" -#: src/modules/author-categories/author-categories.php:256 -#: src/modules/author-categories/author-categories.php:335 +#: src/modules/author-categories/author-categories.php:264 +#: src/modules/author-categories/author-categories.php:343 msgid "Author category with this name already exist." msgstr "" @@ -838,16 +846,16 @@ msgstr "" msgid "Author Grouping Title Option" msgstr "" -#: src/modules/author-list/author-list.php:513 +#: src/modules/author-list/author-list.php:554 msgid "Author Index List" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1357 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1363 msgid "Author inline display" msgstr "" #: src/modules/author-list/author-list.php:64 -#: src/modules/author-list/author-list.php:659 +#: src/modules/author-list/author-list.php:700 msgid "Author List" msgstr "" @@ -866,7 +874,7 @@ msgstr "" #: src/modules/author-list/author-list.php:196 #: src/modules/author-list/author-list.php:197 #: src/modules/author-list/author-list.php:273 -#: src/modules/author-list/author-list.php:704 +#: src/modules/author-list/author-list.php:745 msgid "Author Lists" msgstr "" @@ -874,14 +882,14 @@ msgstr "" msgid "Author name is required" msgstr "" -#: src/modules/author-pages/author-pages.php:116 +#: src/modules/author-pages/author-pages.php:120 msgid "Author Page Title" msgstr "" -#: src/modules/author-pages/author-pages.php:56 -#: src/modules/author-pages/author-pages.php:102 -#: src/modules/author-pages/author-pages.php:103 -#: src/modules/multiple-authors/multiple-authors.php:2905 +#: src/modules/author-pages/author-pages.php:60 +#: src/modules/author-pages/author-pages.php:106 +#: src/modules/author-pages/author-pages.php:107 +#: src/modules/multiple-authors/multiple-authors.php:2907 msgid "Author Pages" msgstr "" @@ -905,7 +913,7 @@ msgstr "" msgid "Author post title header:" msgstr "" -#: src/modules/author-list/author-list.php:423 +#: src/modules/author-list/author-list.php:464 msgid "" "Author Pro allows you to add a search box to the Authors List. You can also " "show a dropdown menu that allows users to search on specific author fields." @@ -924,7 +932,7 @@ msgstr "" msgid "Author profile updated." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2904 +#: src/modules/multiple-authors/multiple-authors.php:2906 msgid "Author Profiles" msgstr "" @@ -936,7 +944,7 @@ msgid "" "missed authors from role\" button in the Maintenance tab." msgstr "" -#: src/modules/author-list/author-list.php:469 +#: src/modules/author-list/author-list.php:510 msgid "Author Recent List" msgstr "" @@ -944,26 +952,26 @@ msgstr "" msgid "Author Recent Posts" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1365 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1371 msgid "Author Row Prefix" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1373 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1379 msgid "Author Row Suffix" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1381 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1387 msgid "Author Separator" msgstr "" #: src/core/Classes/Author_Editor.php:49 -#: src/modules/author-list/author-list.php:396 -#: src/modules/author-list/author-list.php:401 +#: src/modules/author-list/author-list.php:437 +#: src/modules/author-list/author-list.php:442 msgid "Author Type" msgstr "" #: src/core/Classes/Term_Editor.php:79 -#: src/modules/multiple-authors/multiple-authors.php:2996 +#: src/modules/multiple-authors/multiple-authors.php:2998 msgid "Author URL" msgstr "" @@ -981,10 +989,10 @@ msgid "AuthorList" msgstr "" #: src/core/Authors_Widget.php:138 src/core/Plugin.php:856 -#: src/core/Classes/Post_Editor.php:94 src/core/Classes/Post_Editor.php:206 +#: src/core/Classes/Post_Editor.php:95 src/core/Classes/Post_Editor.php:207 #: src/core/Traits/Author_box.php:193 -#: src/modules/author-categories/author-categories.php:624 -#: src/modules/author-list/author-list.php:402 +#: src/modules/author-categories/author-categories.php:635 +#: src/modules/author-list/author-list.php:443 #: src/modules/editflow-integration/editflow-integration.php:114 #: src/modules/multiple-authors/multiple-authors.php:322 #: src/modules/multiple-authors/multiple-authors.php:323 @@ -993,11 +1001,11 @@ msgstr "" #: src/modules/multiple-authors/multiple-authors.php:391 #: src/modules/multiple-authors/multiple-authors.php:1231 #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:82 -#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:161 -#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:342 -#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:421 -#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:503 -#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:590 +#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:162 +#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:344 +#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:424 +#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:506 +#: src/modules/author-boxes/classes/AuthorBoxesDefault.php:593 msgid "Authors" msgstr "" @@ -1026,7 +1034,7 @@ msgstr "" msgid "Authors List" msgstr "" -#: src/modules/author-list/author-list.php:413 +#: src/modules/author-list/author-list.php:454 msgid "" "Authors Pro allows you to add extra features to the Authors List. These " "features include pagination, choose the order of authors, and much more." @@ -1087,27 +1095,27 @@ msgstr "" msgid "Biographical Info" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1100 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1106 msgid "Biographical Info Alignment" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1023 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1029 msgid "Biographical Info Character Limit" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1113 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1119 msgid "Biographical Info Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1087 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1093 msgid "Biographical Info Decoration" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1120 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1126 msgid "Biographical Info HTML Tag" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1036 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1042 msgid "Biographical Info Line Height (px)" msgstr "" @@ -1115,19 +1123,19 @@ msgstr "" msgid "Biographical Info Row" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1030 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1036 msgid "Biographical Info Size" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1075 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1081 msgid "Biographical Info Style" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1062 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1068 msgid "Biographical Info Transform" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1042 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1048 msgid "Biographical Info Weight" msgstr "" @@ -1145,8 +1153,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:433 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:644 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:922 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1048 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1250 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1054 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1256 msgid "Bold" msgstr "" @@ -1238,16 +1246,16 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:330 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:454 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:945 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1069 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1271 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1075 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1277 msgid "Capitalize" msgstr "" -#: src/modules/author-categories/author-categories.php:272 +#: src/modules/author-categories/author-categories.php:280 msgid "Category added." msgstr "" -#: src/modules/author-categories/author-categories.php:395 +#: src/modules/author-categories/author-categories.php:403 msgid "Category order updated." msgstr "" @@ -1255,8 +1263,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:367 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:491 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:988 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1106 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1308 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1112 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1314 msgid "Center" msgstr "" @@ -1268,12 +1276,12 @@ msgstr "" msgid "Centered legacy layout Author Box:" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2298 +#: src/modules/author-boxes/author-boxes.php:2304 #, php-format msgid "Change %1s" msgstr "" -#: src/core/Classes/Legacy/LegacyPlugin.php:284 +#: src/core/Classes/Legacy/LegacyPlugin.php:288 msgid "Cheatin’ uh?" msgstr "" @@ -1281,7 +1289,7 @@ msgstr "" msgid "Choose from the most used Authors" msgstr "" -#: src/modules/author-pages/author-pages.php:165 +#: src/modules/multiple-authors/multiple-authors.php:1765 msgid "Click here for more details." msgstr "" @@ -1299,7 +1307,7 @@ msgid "" "Remove to remove them." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2159 +#: src/modules/author-boxes/author-boxes.php:2165 msgid "" "Click the \"Generate Template\" button under the text area. Wait for the " "code to be generated." @@ -1314,7 +1322,7 @@ msgstr "" msgid "Click To Copy!" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4393 +#: src/modules/multiple-authors/multiple-authors.php:4395 msgid "Click to run the update now" msgstr "" @@ -1322,23 +1330,23 @@ msgstr "" msgid "Co-Authors Plus must be installed and active." msgstr "" -#: src/modules/author-categories/author-categories.php:632 -#: src/modules/author-categories/author-categories.php:634 +#: src/modules/author-categories/author-categories.php:643 +#: src/modules/author-categories/author-categories.php:645 msgid "Coauthor" msgstr "" -#: src/modules/author-categories/author-categories.php:633 +#: src/modules/author-categories/author-categories.php:644 msgid "Coauthors" msgstr "" #: src/modules/byline-migration/byline-migration.php:145 #: src/modules/bylines-migration/bylines-migration.php:147 -#: src/modules/multiple-authors/multiple-authors.php:3859 +#: src/modules/multiple-authors/multiple-authors.php:3861 msgid "Collecting data for the migration..." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3791 -#: src/modules/multiple-authors/multiple-authors.php:3822 +#: src/modules/multiple-authors/multiple-authors.php:3793 +#: src/modules/multiple-authors/multiple-authors.php:3824 msgid "Collecting data..." msgstr "" @@ -1351,15 +1359,15 @@ msgstr "" msgid "Comment counts" msgstr "" -#: src/core/Classes/Legacy/LegacyPlugin.php:277 +#: src/core/Classes/Legacy/LegacyPlugin.php:281 msgid "Configure" msgstr "" -#: src/modules/author-list/author-list.php:412 +#: src/modules/author-list/author-list.php:453 msgid "Configure Author List Options" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2162 +#: src/modules/author-boxes/author-boxes.php:2168 msgid "" "Congratulations. Your can now choose your template inside the PublishPress " "Authors Settings." @@ -1373,8 +1381,8 @@ msgstr "" msgid "Convert to Registered Author With User Account" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2131 -#: src/modules/author-boxes/author-boxes.php:2203 +#: src/modules/author-boxes/author-boxes.php:2137 +#: src/modules/author-boxes/author-boxes.php:2209 msgid "Copied to Clipboard!" msgstr "" @@ -1392,26 +1400,26 @@ msgstr "" msgid "Copy Bylines Data" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2697 +#: src/modules/multiple-authors/multiple-authors.php:2699 msgid "Copy Co-Authors Plus Data" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3864 +#: src/modules/multiple-authors/multiple-authors.php:3866 msgid "Copy Co-Authors Plus data" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2161 +#: src/modules/author-boxes/author-boxes.php:2167 msgid "Copy the generated code and paste it inside the newly created file." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2127 -#: src/modules/author-boxes/author-boxes.php:2198 +#: src/modules/author-boxes/author-boxes.php:2133 +#: src/modules/author-boxes/author-boxes.php:2204 msgid "Copy to Clipboard" msgstr "" #: src/modules/byline-migration/byline-migration.php:149 #: src/modules/bylines-migration/bylines-migration.php:151 -#: src/modules/multiple-authors/multiple-authors.php:3863 +#: src/modules/multiple-authors/multiple-authors.php:3865 msgid "Copying authors' data..." msgstr "" @@ -1435,7 +1443,7 @@ msgid "" "lightweight but may have compatibility issues with other themes and plugins." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2160 +#: src/modules/author-boxes/author-boxes.php:2166 #, php-format msgid "" "Create an empty php template file with your desired file slug in the %1s " @@ -1445,7 +1453,7 @@ msgid "" "php %7s ." msgstr "" -#: src/core/Classes/Utils.php:1127 +#: src/core/Classes/Utils.php:1131 msgid "Create Author Boxes with authors organized in categories" msgstr "" @@ -1453,19 +1461,19 @@ msgstr "" msgid "Create Author Profile" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2666 +#: src/modules/multiple-authors/multiple-authors.php:2668 msgid "Create missing PublishPress Authors profiles" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2672 +#: src/modules/multiple-authors/multiple-authors.php:2674 msgid "Create PublishPress Authors profiles" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2664 +#: src/modules/multiple-authors/multiple-authors.php:2666 msgid "Create PublishPress Authors Profiles for all post authors" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2670 +#: src/modules/multiple-authors/multiple-authors.php:2672 msgid "Create PublishPress Authors Profiles for all users in a role" msgstr "" @@ -1473,12 +1481,12 @@ msgstr "" msgid "Creating author term for the user %d" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3861 +#: src/modules/multiple-authors/multiple-authors.php:3863 msgid "Creating missed post authors...." msgstr "" #: src/modules/author-boxes/author-boxes.php:1050 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1536 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1542 msgid "Custom CSS" msgstr "" @@ -1530,12 +1538,12 @@ msgid "%2$s" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:202 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1179 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1449 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1185 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1455 msgid "Dashed" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1212 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1218 msgid "Date" msgstr "" @@ -1547,7 +1555,7 @@ msgstr "" msgid "Deactivate Bylines" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3867 +#: src/modules/multiple-authors/multiple-authors.php:3869 msgid "Deactivate Co-Authors Plus" msgstr "" @@ -1559,7 +1567,7 @@ msgstr "" msgid "Deactivating Bylines..." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3865 +#: src/modules/multiple-authors/multiple-authors.php:3867 msgid "Deactivating Co-uthors Plus..." msgstr "" @@ -1590,16 +1598,16 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:957 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:971 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:986 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1046 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1066 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1079 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1091 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1104 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1248 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1268 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1281 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1293 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1306 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1052 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1072 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1085 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1097 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1110 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1254 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1274 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1287 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1299 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1312 msgid "Default" msgstr "" @@ -1624,26 +1632,26 @@ msgstr "" msgid "Default Search" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2073 -#: src/modules/author-boxes/author-boxes.php:2102 +#: src/modules/author-boxes/author-boxes.php:2079 +#: src/modules/author-boxes/author-boxes.php:2108 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:125 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:373 msgid "Delete" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2707 +#: src/modules/multiple-authors/multiple-authors.php:2709 msgid "Delete all authors mapped to users" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2714 +#: src/modules/multiple-authors/multiple-authors.php:2716 msgid "Delete all guest authors" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2712 +#: src/modules/multiple-authors/multiple-authors.php:2714 msgid "Delete Guest Authors" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2705 +#: src/modules/multiple-authors/multiple-authors.php:2707 msgid "Delete Mapped Authors" msgstr "" @@ -1652,7 +1660,7 @@ msgid "Delete Permanently" msgstr "" #: src/core/Authors_Widget.php:187 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1227 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1233 msgid "Descending" msgstr "" @@ -1660,7 +1668,7 @@ msgstr "" msgid "Description" msgstr "" -#: src/core/Classes/Utils.php:1156 +#: src/core/Classes/Utils.php:1160 msgid "Detailed documentation is also available on the plugin website." msgstr "" @@ -1676,7 +1684,7 @@ msgstr "" msgid "Disable the \"Authors\" box when using \"Quick Edit\":" msgstr "" -#: src/core/Classes/Post_Editor.php:451 +#: src/core/Classes/Post_Editor.php:452 msgid "Disable the default author display under this post" msgstr "" @@ -1694,8 +1702,8 @@ msgid "" "loaded file." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4325 -#: src/modules/multiple-authors/multiple-authors.php:4399 +#: src/modules/multiple-authors/multiple-authors.php:4327 +#: src/modules/multiple-authors/multiple-authors.php:4401 msgid "Dismiss" msgstr "" @@ -1769,8 +1777,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:526 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:662 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:789 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1130 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1337 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1136 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1343 msgid "div" msgstr "" @@ -1782,7 +1790,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2167 +#: src/modules/author-boxes/author-boxes.php:2173 msgid "documentation page" msgstr "" @@ -1790,11 +1798,11 @@ msgstr "" msgid "dofollow" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3824 +#: src/modules/multiple-authors/multiple-authors.php:3826 msgid "Done! %d authors were updated." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3793 +#: src/modules/multiple-authors/multiple-authors.php:3795 msgid "Done! %d posts were updated." msgstr "" @@ -1814,27 +1822,27 @@ msgstr "" msgid "Done! Bylines is deactivated." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3868 +#: src/modules/multiple-authors/multiple-authors.php:3870 msgid "Done! Co-Authors Plus data was copied." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3866 +#: src/modules/multiple-authors/multiple-authors.php:3868 msgid "Done! Co-Authors Plus is deactivated." msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:201 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1178 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1448 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1184 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1454 msgid "Dotted" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:204 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1181 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1452 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1187 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1458 msgid "Double" msgstr "" -#: src/modules/author-list/author-list.php:783 +#: src/modules/author-list/author-list.php:824 msgid "Dynamic Shortcode" msgstr "" @@ -1853,7 +1861,7 @@ msgstr "" msgid "Edit Author" msgstr "" -#: src/modules/author-list/author-list.php:689 +#: src/modules/author-list/author-list.php:730 msgid "Edit Author List" msgstr "" @@ -1875,12 +1883,12 @@ msgstr "" msgid "Edit User" msgstr "" -#: src/modules/author-categories/author-categories.php:650 -#: src/modules/author-categories/author-categories.php:652 +#: src/modules/author-categories/author-categories.php:661 +#: src/modules/author-categories/author-categories.php:663 msgid "Editor" msgstr "" -#: src/modules/author-categories/author-categories.php:651 +#: src/modules/author-categories/author-categories.php:662 msgid "Editors" msgstr "" @@ -1909,11 +1917,15 @@ msgstr "" msgid "Enable author's search box" msgstr "" +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1023 +msgid "Enable Biographical Link" +msgstr "" + #: src/modules/author-categories/classes/AuthorCategoriesTable.php:123 msgid "Enable Categories" msgstr "" -#: src/modules/author-categories/author-categories.php:587 +#: src/modules/author-categories/author-categories.php:598 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:80 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:450 msgid "Enable Category" @@ -1939,23 +1951,23 @@ msgstr "" msgid "Enabled features" msgstr "" -#: src/core/Classes/Utils.php:1121 +#: src/core/Classes/Utils.php:1125 msgid "Enhance the power of PublishPress Authors with the Pro version:" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1547 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1553 msgid "Enter class name without dot(.)" msgstr "" -#: src/modules/author-categories/author-categories.php:565 +#: src/modules/author-categories/author-categories.php:576 msgid "Enter the Author Category name when it's a single author" msgstr "" -#: src/modules/author-categories/author-categories.php:570 +#: src/modules/author-categories/author-categories.php:581 msgid "Enter the Author Category name when there are more than 1 author" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1374 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1380 msgid "" "Enter the text that should be added after authors. This field accepts basic " "HTML." @@ -1967,7 +1979,7 @@ msgid "" "basic HTML." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1366 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1372 msgid "" "Enter the text that should be added before authors. This field accepts basic " "HTML." @@ -1983,7 +1995,7 @@ msgstr "" msgid "Error adding author account." msgstr "" -#: src/modules/author-categories/author-categories.php:285 +#: src/modules/author-categories/author-categories.php:293 msgid "Error inserting new author category." msgstr "" @@ -1991,17 +2003,17 @@ msgstr "" msgid "Error updating author profile." msgstr "" -#: src/modules/author-categories/author-categories.php:358 +#: src/modules/author-categories/author-categories.php:366 msgid "Error updating category data." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3662 +#: src/modules/multiple-authors/multiple-authors.php:3664 msgid "Error. Author terms could not be reseted." msgstr "" #: src/modules/byline-migration/byline-migration.php:146 #: src/modules/bylines-migration/bylines-migration.php:148 -#: src/modules/multiple-authors/multiple-authors.php:3860 +#: src/modules/multiple-authors/multiple-authors.php:3862 msgid "Error: " msgstr "" @@ -2010,15 +2022,15 @@ msgid "Existing Author Boxes" msgstr "" #: src/modules/author-boxes/author-boxes.php:1054 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1583 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1589 msgid "Export" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2116 +#: src/modules/author-boxes/author-boxes.php:2122 msgid "Export Editor Settings" msgstr "" -#: src/core/Classes/Utils.php:1126 +#: src/core/Classes/Utils.php:1130 msgid "Extra features for Author Lists" msgstr "" @@ -2026,7 +2038,7 @@ msgstr "" msgid "Fallback user for Guest Authors:" msgstr "" -#: src/core/Classes/Utils.php:1130 +#: src/core/Classes/Utils.php:1134 msgid "Fast, professional support" msgstr "" @@ -2038,6 +2050,10 @@ msgstr "" msgid "Featured image custom width:" msgstr "" +#: src/modules/author-list/author-list.php:424 +msgid "Featured Image Size" +msgstr "" + #: src/modules/modules-settings/modules-settings.php:251 msgid "Features" msgstr "" @@ -2103,18 +2119,18 @@ msgstr "" msgid "Filter %2$s list" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3792 -#: src/modules/multiple-authors/multiple-authors.php:3823 +#: src/modules/multiple-authors/multiple-authors.php:3794 +#: src/modules/multiple-authors/multiple-authors.php:3825 msgid "Finishing the process..." msgstr "" #: src/core/Authors_Widget.php:192 src/core/Classes/Author_Editor.php:358 #: src/modules/author-custom-fields/author-custom-fields.php:890 -#: src/modules/multiple-authors/multiple-authors.php:1973 +#: src/modules/multiple-authors/multiple-authors.php:1975 msgid "First Name" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1971 +#: src/modules/multiple-authors/multiple-authors.php:1973 msgid "First Name Last Name" msgstr "" @@ -2133,11 +2149,15 @@ msgid "" "For authors_index layout, you can group user by profile field by using %1$s ." msgstr "" -#: src/modules/author-list/author-list.php:384 +#: src/modules/author-list/author-list.php:414 msgid "For authors_index layout, you can group user by profile fields." msgstr "" -#: src/modules/author-categories/author-categories.php:576 +#: src/modules/author-list/author-list.php:425 +msgid "For authors_recent layout, you can select the featured image size.." +msgstr "" + +#: src/modules/author-categories/author-categories.php:587 #, php-format msgid "" "For example, when this value is set to reviewedBy, all users under this " @@ -2147,17 +2167,17 @@ msgstr "" #: src/core/Classes/Author_Editor.php:313 #: src/modules/author-list/author-list.php:316 -#: src/modules/author-pages/author-pages.php:113 -#: src/modules/multiple-authors/multiple-authors.php:2902 +#: src/modules/author-pages/author-pages.php:117 +#: src/modules/multiple-authors/multiple-authors.php:2904 msgid "General" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2192 +#: src/modules/author-boxes/author-boxes.php:2198 msgid "Generate Template" msgstr "" #: src/modules/author-boxes/author-boxes.php:1062 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1620 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1626 msgid "Generate Theme Template" msgstr "" @@ -2169,7 +2189,7 @@ msgstr "" msgid "Genesis Integration" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1798 +#: src/modules/multiple-authors/multiple-authors.php:1800 msgid "Grid" msgstr "" @@ -2178,28 +2198,28 @@ msgid "Grid layout column:" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:205 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1182 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1453 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1188 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1459 msgid "Groove" msgstr "" -#: src/modules/author-list/author-list.php:383 +#: src/modules/author-list/author-list.php:413 msgid "Group By" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4784 +#: src/modules/multiple-authors/multiple-authors.php:4786 msgid "Guest Author cannot login on the site." msgstr "" #: src/core/Classes/Author_Editor.php:121 #: src/core/Classes/Author_Editor.php:739 -#: src/modules/author-list/author-list.php:979 +#: src/modules/author-list/author-list.php:1023 msgid "Guest Author With No User Account" msgstr "" #: src/core/Classes/Author_Editor.php:117 #: src/core/Classes/Author_Editor.php:732 -#: src/modules/author-list/author-list.php:978 +#: src/modules/author-list/author-list.php:1022 msgid "Guest Author With User Account" msgstr "" @@ -2207,75 +2227,75 @@ msgstr "" msgid "Guest Authors" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1826 -#: src/modules/multiple-authors/multiple-authors.php:1858 +#: src/modules/multiple-authors/multiple-authors.php:1828 +#: src/modules/multiple-authors/multiple-authors.php:1860 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:152 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:384 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:520 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:665 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:791 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1124 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1331 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1130 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1337 msgid "H1" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1827 -#: src/modules/multiple-authors/multiple-authors.php:1859 +#: src/modules/multiple-authors/multiple-authors.php:1829 +#: src/modules/multiple-authors/multiple-authors.php:1861 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:153 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:385 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:521 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:666 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:792 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1125 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1332 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1131 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1338 msgid "H2" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1828 -#: src/modules/multiple-authors/multiple-authors.php:1860 +#: src/modules/multiple-authors/multiple-authors.php:1830 +#: src/modules/multiple-authors/multiple-authors.php:1862 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:154 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:386 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:522 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:667 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:793 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1126 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1333 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1132 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1339 msgid "H3" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1829 -#: src/modules/multiple-authors/multiple-authors.php:1861 +#: src/modules/multiple-authors/multiple-authors.php:1831 +#: src/modules/multiple-authors/multiple-authors.php:1863 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:155 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:387 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:523 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:668 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:794 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1127 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1334 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1133 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1340 msgid "H4" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1830 -#: src/modules/multiple-authors/multiple-authors.php:1862 +#: src/modules/multiple-authors/multiple-authors.php:1832 +#: src/modules/multiple-authors/multiple-authors.php:1864 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:156 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:388 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:524 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:669 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:795 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1128 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1335 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1134 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1341 msgid "H5" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1831 -#: src/modules/multiple-authors/multiple-authors.php:1863 +#: src/modules/multiple-authors/multiple-authors.php:1833 +#: src/modules/multiple-authors/multiple-authors.php:1865 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:157 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:389 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:525 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:670 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:796 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1129 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1336 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1135 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1342 msgid "H6" msgstr "" @@ -2288,7 +2308,7 @@ msgstr "" msgid "Hide Title" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2156 +#: src/modules/author-boxes/author-boxes.php:2162 msgid "How to generate and use a theme template file" msgstr "" @@ -2300,7 +2320,7 @@ msgstr "" msgid "https://wordpress.org/plugins/publishpress-authors/" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1215 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1221 msgid "ID" msgstr "" @@ -2344,11 +2364,11 @@ msgstr "" msgid "If you like %s please leave us a %s rating. Thank you!" msgstr "" -#: src/core/Classes/Utils.php:1145 +#: src/core/Classes/Utils.php:1149 msgid "If you need help or have a new feature request, let us know." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2569 +#: src/modules/multiple-authors/multiple-authors.php:2571 msgid "" "If you only have Guest Authors selected for a post, this user may be used as " "a fallback. WordPress sometimes requires a WordPress user to be assigned to " @@ -2356,20 +2376,20 @@ msgid "" msgstr "" #: src/modules/author-boxes/author-boxes.php:1058 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1602 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1608 msgid "Import" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2147 +#: src/modules/author-boxes/author-boxes.php:2153 msgid "Import Data" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2136 +#: src/modules/author-boxes/author-boxes.php:2142 msgid "Import Editor Settings" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:274 -msgid "Infront of Avatar" +msgid "In front of Avatar" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesDefault.php:31 @@ -2395,8 +2415,8 @@ msgid "Inline with Avatars" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:207 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1184 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1455 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1190 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1461 msgid "Inset" msgstr "" @@ -2404,19 +2424,19 @@ msgstr "" msgid "Install this plugin to showcase content by your Authors." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2146 +#: src/modules/author-boxes/author-boxes.php:2152 msgid "Invalid data" msgstr "" -#: src/modules/author-list/author-list.php:1114 +#: src/modules/author-list/author-list.php:1158 msgid "Invalid form" msgstr "" -#: src/modules/author-categories/author-categories.php:384 +#: src/modules/author-categories/author-categories.php:392 msgid "Invalid form data." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3493 +#: src/modules/multiple-authors/multiple-authors.php:3495 msgid "Invalid nonce" msgstr "" @@ -2424,7 +2444,7 @@ msgstr "" msgid "is required" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4319 +#: src/modules/multiple-authors/multiple-authors.php:4321 msgid "It looks like you have Co-Authors Plus installed." msgstr "" @@ -2432,8 +2452,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:342 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:466 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:959 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1081 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1283 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1087 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1289 msgid "Italic" msgstr "" @@ -2445,29 +2465,33 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:369 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:493 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:990 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1108 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1310 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1114 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1316 msgid "Justify" msgstr "" +#: src/modules/author-list/author-list.php:362 +msgid "Large-sized image (1024px by 1024px)" +msgstr "" + #: src/core/Authors_Widget.php:193 src/core/Classes/Author_Editor.php:363 #: src/modules/author-custom-fields/author-custom-fields.php:898 -#: src/modules/multiple-authors/multiple-authors.php:1974 +#: src/modules/multiple-authors/multiple-authors.php:1976 msgid "Last Name" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1972 +#: src/modules/multiple-authors/multiple-authors.php:1974 msgid "Last Name First Name" msgstr "" #: src/core/Authors_Widget.php:131 src/core/Widget.php:123 -#: src/modules/author-list/author-list.php:363 -#: src/modules/author-pages/author-pages.php:114 +#: src/modules/author-list/author-list.php:393 +#: src/modules/author-pages/author-pages.php:118 #: src/modules/author-list/classes/AuthorListTable.php:151 msgid "Layout" msgstr "" -#: src/modules/author-list/author-list.php:373 +#: src/modules/author-list/author-list.php:403 msgid "Layout Columns" msgstr "" @@ -2475,7 +2499,7 @@ msgstr "" msgid "Layout Slug" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1545 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1551 msgid "Layout Wrapper Class Name" msgstr "" @@ -2487,8 +2511,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:366 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:490 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:987 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1105 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1307 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1111 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1313 msgid "Left" msgstr "" @@ -2500,8 +2524,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:355 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:479 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:974 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1094 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1296 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1100 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1302 msgid "Line Through" msgstr "" @@ -2521,7 +2545,7 @@ msgstr "" msgid "Link Rel" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1797 +#: src/modules/multiple-authors/multiple-authors.php:1799 msgid "List" msgstr "" @@ -2537,16 +2561,16 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:329 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:453 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:944 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1068 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1270 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1074 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1276 msgid "Lowercase" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2907 +#: src/modules/multiple-authors/multiple-authors.php:2909 msgid "Maintenance" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3673 +#: src/modules/multiple-authors/multiple-authors.php:3675 msgid "Maintenance completed successfully." msgstr "" @@ -2558,6 +2582,14 @@ msgstr "" msgid "Mapped user is required." msgstr "" +#: src/modules/author-list/author-list.php:363 +msgid "Medium-large image (768px)" +msgstr "" + +#: src/modules/author-list/author-list.php:364 +msgid "Medium-sized image (300px by 300px)" +msgstr "" + #: src/modules/byline-migration/byline-migration.php:73 msgid "Migrate Byline Data" msgstr "" @@ -2570,7 +2602,7 @@ msgstr "" msgid "Mine" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1213 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1219 msgid "Modified date" msgstr "" @@ -2591,7 +2623,7 @@ msgstr "" msgid "Name Row" msgstr "" -#: src/core/Classes/Utils.php:1140 +#: src/core/Classes/Utils.php:1144 msgid "Need PublishPress Authors Support?" msgstr "" @@ -2615,7 +2647,7 @@ msgstr "" msgid "New author added." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2498 +#: src/modules/author-boxes/author-boxes.php:2504 msgid "New Author Categories Box" msgstr "" @@ -2652,7 +2684,7 @@ msgstr "" msgid "No author list avaliable in the selected view." msgstr "" -#: src/core/Classes/Post_Editor.php:170 +#: src/core/Classes/Post_Editor.php:171 msgid "No author term" msgstr "" @@ -2678,7 +2710,7 @@ msgstr "" msgid "No posts without author terms were found" msgstr "" -#: src/modules/author-boxes/author-boxes.php:1838 +#: src/modules/author-boxes/author-boxes.php:1844 msgid "No Recent Posts by this Author" msgstr "" @@ -2693,8 +2725,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:200 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:264 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:760 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1177 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1447 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1183 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1453 msgid "None" msgstr "" @@ -2715,14 +2747,14 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:946 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:958 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:975 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1047 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1070 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1080 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1095 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1249 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1272 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1282 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1297 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1053 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1076 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1086 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1101 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1255 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1278 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1288 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1303 msgid "Normal" msgstr "" @@ -2734,11 +2766,11 @@ msgstr "" msgid "Now inspecting or updating %d total posts" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1216 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1222 msgid "Number of comments" msgstr "" -#: src/modules/author-categories/author-categories.php:204 +#: src/modules/author-categories/author-categories.php:212 #: src/modules/author-list/author-list.php:217 msgid "Number of items per page" msgstr "" @@ -2747,8 +2779,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:343 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:467 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:960 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1082 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1284 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1088 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1290 msgid "Oblique" msgstr "" @@ -2773,13 +2805,13 @@ msgstr "" msgid "Order by" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1208 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1214 msgid "Order Recent Posts By" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:208 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1185 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1456 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1191 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1462 msgid "Outset" msgstr "" @@ -2787,8 +2819,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:354 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:478 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:973 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1093 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1295 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1099 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1301 msgid "Overline" msgstr "" @@ -2797,8 +2829,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:528 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:664 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:790 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1132 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1339 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1138 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1345 msgid "p" msgstr "" @@ -2814,17 +2846,17 @@ msgstr "" msgid "Parent Author:" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2137 +#: src/modules/author-boxes/author-boxes.php:2143 msgid "Paste the editor data from the \"Export\" tab on another site." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2720 +#: src/modules/multiple-authors/multiple-authors.php:2722 msgid "" "Please be careful clicking these buttons. Before clicking, we recommend " "taking a site backup in case anything goes wrong." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4320 +#: src/modules/multiple-authors/multiple-authors.php:4322 msgid "Please click here and read this guide!" msgstr "" @@ -2832,20 +2864,20 @@ msgstr "" msgid "Please complete the following required fields to save your changes:" msgstr "" -#: src/core/Classes/Legacy/LegacyPlugin.php:280 +#: src/core/Classes/Legacy/LegacyPlugin.php:284 msgid "Please correct your form errors below and try again." msgstr "" -#: src/modules/author-pages/author-pages.php:165 +#: src/modules/multiple-authors/multiple-authors.php:1765 msgid "Please note this feature will not work for all themes." msgstr "" #: src/core/Plugin.php:1534 #: src/modules/byline-migration/byline-migration.php:148 #: src/modules/bylines-migration/bylines-migration.php:150 -#: src/modules/multiple-authors/multiple-authors.php:3794 -#: src/modules/multiple-authors/multiple-authors.php:3825 -#: src/modules/multiple-authors/multiple-authors.php:3862 +#: src/modules/multiple-authors/multiple-authors.php:3796 +#: src/modules/multiple-authors/multiple-authors.php:3827 +#: src/modules/multiple-authors/multiple-authors.php:3864 msgid "Please, wait..." msgstr "" @@ -2853,13 +2885,13 @@ msgstr "" msgid "Plural" msgstr "" -#: src/modules/author-categories/author-categories.php:568 +#: src/modules/author-categories/author-categories.php:579 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:78 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:439 msgid "Plural Name" msgstr "" -#: src/modules/author-categories/author-categories.php:251 +#: src/modules/author-categories/author-categories.php:259 msgid "Plural name is required." msgstr "" @@ -2877,7 +2909,7 @@ msgstr "" msgid "Popular Authors" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2045 +#: src/modules/author-boxes/author-boxes.php:2051 msgid "Position" msgstr "" @@ -2889,7 +2921,7 @@ msgstr "" msgid "Post Counts" msgstr "" -#: src/core/Classes/Legacy/LegacyPlugin.php:289 +#: src/core/Classes/Legacy/LegacyPlugin.php:293 msgid "Post does not exist" msgstr "" @@ -2906,18 +2938,18 @@ msgstr "" msgid "Post types to display on the author's profile page:" msgstr "" -#: src/core/Plugin.php:776 src/modules/author-pages/author-pages.php:117 +#: src/core/Plugin.php:776 src/modules/author-pages/author-pages.php:121 #: src/modules/multiple-authors/multiple-authors.php:155 msgid "Posts" msgstr "" #. Posts by a given author. -#: src/functions/template-tags.php:1331 +#: src/functions/template-tags.php:1336 #, php-format msgid "Posts by %1$s" msgstr "" -#: src/functions/template-tags.php:946 +#: src/functions/template-tags.php:951 #, php-format msgid "Posts by %s" msgstr "" @@ -2928,7 +2960,7 @@ msgid "Prev" msgstr "" #: src/modules/author-list/author-list.php:312 -#: src/modules/author-list/author-list.php:431 +#: src/modules/author-list/author-list.php:472 msgid "Preview" msgstr "" @@ -2958,12 +2990,12 @@ msgid "" "WordPress posts" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:4392 +#: src/modules/multiple-authors/multiple-authors.php:4394 msgid "" "PublishPress Authors needs a database update for Permissions integration." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2506 +#: src/modules/author-boxes/author-boxes.php:2512 msgid "" "PublishPress Authors Pro allows you to unlock the full potential of Author " "Categories." @@ -3003,8 +3035,8 @@ msgstr "" msgid "Quick Edit" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1217 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1451 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1223 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1457 msgid "Random" msgstr "" @@ -3012,71 +3044,71 @@ msgstr "" msgid "Rank Math Seo Integration" msgstr "" -#: src/core/Classes/Utils.php:959 +#: src/core/Classes/Utils.php:963 msgid "Read more." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1173 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1179 msgid "Recent Post Title Border Bottom Style" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1196 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1202 msgid "Recent Post Title Border Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1190 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1196 msgid "Recent Post Title Border Width" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1167 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1173 msgid "Recent Post Title Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1302 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1308 msgid "Recent Posts Alignment" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1315 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1321 msgid "Recent Posts Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1289 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1295 msgid "Recent Posts Decoration" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1327 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1333 msgid "Recent Posts HTML Tag" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1321 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1327 msgid "Recent Posts Icon Color" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1202 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1208 msgid "Recent Posts Limit" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1238 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1244 msgid "Recent Posts Line Height (px)" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1222 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1228 msgid "Recent Posts Order" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1232 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1238 msgid "Recent Posts Size" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1277 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1283 msgid "Recent Posts Style" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1264 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1270 msgid "Recent Posts Transform" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1244 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1250 msgid "Recent Posts Weight" msgstr "" @@ -3086,7 +3118,7 @@ msgstr "" #: src/core/Classes/Author_Editor.php:119 #: src/core/Classes/Author_Editor.php:726 -#: src/modules/author-list/author-list.php:977 +#: src/modules/author-list/author-list.php:1021 msgid "Registered Author With User Account" msgstr "" @@ -3096,12 +3128,12 @@ msgstr "" msgid "Remove %1$s Image" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2299 +#: src/modules/author-boxes/author-boxes.php:2305 #, php-format msgid "Remove %1s" msgstr "" -#: src/core/Classes/Utils.php:1129 +#: src/core/Classes/Utils.php:1133 msgid "Remove PublishPress ads and branding" msgstr "" @@ -3111,15 +3143,15 @@ msgstr "" #: src/core/Classes/Author_Editor.php:470 #: src/core/Classes/Author_Editor.php:519 -#: src/modules/multiple-authors/multiple-authors.php:2011 +#: src/modules/multiple-authors/multiple-authors.php:2013 msgid "Remove this image" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2248 +#: src/modules/author-boxes/author-boxes.php:2254 msgid "Reorder Fields" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2256 +#: src/modules/author-boxes/author-boxes.php:2262 msgid "" "Reorder the fields by dragging them to the correct position and saving your " "changes." @@ -3129,7 +3161,7 @@ msgstr "" msgid "Request status." msgstr "" -#: src/core/Classes/Utils.php:1147 +#: src/core/Classes/Utils.php:1151 msgid "Request Support" msgstr "" @@ -3155,12 +3187,12 @@ msgstr "" msgid "Restore" msgstr "" -#: src/modules/author-categories/author-categories.php:641 -#: src/modules/author-categories/author-categories.php:643 +#: src/modules/author-categories/author-categories.php:652 +#: src/modules/author-categories/author-categories.php:654 msgid "Reviewer" msgstr "" -#: src/modules/author-categories/author-categories.php:642 +#: src/modules/author-categories/author-categories.php:653 msgid "Reviewers" msgstr "" @@ -3169,8 +3201,8 @@ msgid "Reviews" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:206 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1183 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1454 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1189 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1460 msgid "Ridge" msgstr "" @@ -3178,29 +3210,29 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:368 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:492 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:989 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1107 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1309 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1113 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1315 msgid "Right" msgstr "" -#: src/modules/author-list/author-list.php:400 +#: src/modules/author-list/author-list.php:441 msgid "Roles" msgstr "" -#: src/modules/author-list/author-list.php:760 -#: src/modules/author-list/author-list.php:767 +#: src/modules/author-list/author-list.php:801 +#: src/modules/author-list/author-list.php:808 msgid "Save Changes" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2274 +#: src/modules/author-boxes/author-boxes.php:2280 msgid "Save for All Author Boxes" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2270 +#: src/modules/author-boxes/author-boxes.php:2276 msgid "Save for Current Author Box" msgstr "" -#: src/modules/author-categories/author-categories.php:573 +#: src/modules/author-categories/author-categories.php:584 #: src/modules/author-custom-fields/author-custom-fields.php:416 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:444 msgid "Schema Property" @@ -3210,7 +3242,7 @@ msgstr "" msgid "Search" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2326 +#: src/modules/author-boxes/author-boxes.php:2332 #, php-format msgid "Search %1s Icon" msgstr "" @@ -3221,7 +3253,7 @@ msgstr "" msgid "Search %2$s" msgstr "" -#: src/modules/author-categories/author-categories.php:553 +#: src/modules/author-categories/author-categories.php:564 msgid "Search Author Categories" msgstr "" @@ -3237,11 +3269,11 @@ msgstr "" msgid "Search Box" msgstr "" -#: src/core/Plugin.php:1503 src/core/Classes/Post_Editor.php:357 +#: src/core/Plugin.php:1503 src/core/Classes/Post_Editor.php:358 msgid "Search for an author" msgstr "" -#: src/core/Classes/Post_Editor.php:467 +#: src/core/Classes/Post_Editor.php:468 msgid "Search for an user" msgstr "" @@ -3252,10 +3284,10 @@ msgid "Search results for “%s”" msgstr "" #: src/core/Classes/Admin_Ajax.php:317 src/core/Classes/Admin_Ajax.php:398 -#: src/modules/author-categories/author-categories.php:228 -#: src/modules/author-categories/author-categories.php:311 +#: src/modules/author-categories/author-categories.php:236 +#: src/modules/author-categories/author-categories.php:319 #: src/modules/author-custom-fields/author-custom-fields.php:1005 -#: src/modules/author-list/author-list.php:1108 +#: src/modules/author-list/author-list.php:1152 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:41 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:89 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:131 @@ -3263,11 +3295,11 @@ msgstr "" msgid "Security error. Kindly reload this page and try again" msgstr "" -#: src/modules/author-categories/author-categories.php:379 +#: src/modules/author-categories/author-categories.php:387 msgid "Security error. Kindly reload this page and try again." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2297 +#: src/modules/author-boxes/author-boxes.php:2303 #, php-format msgid "Select %1s" msgstr "" @@ -3276,16 +3308,16 @@ msgstr "" msgid "Select a user" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2562 +#: src/modules/author-boxes/author-boxes.php:2568 msgid "Select an author box" msgstr "" #: src/core/CustomFieldsModel.php:115 -#: src/modules/author-list/author-list.php:346 +#: src/modules/author-list/author-list.php:348 msgid "Select an option" msgstr "" -#: src/modules/author-list/author-list.php:397 +#: src/modules/author-list/author-list.php:438 msgid "" "Select an option to limit the results to selected user roles, author types " "or specific authors." @@ -3297,15 +3329,15 @@ msgstr "" #: src/core/Classes/Author_Editor.php:466 #: src/core/Classes/Author_Editor.php:515 -#: src/modules/multiple-authors/multiple-authors.php:2007 +#: src/modules/multiple-authors/multiple-authors.php:2009 msgid "Select image" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2099 -#: src/modules/multiple-authors/multiple-authors.php:2136 -#: src/modules/multiple-authors/multiple-authors.php:2173 -#: src/modules/multiple-authors/multiple-authors.php:2210 -#: src/modules/multiple-authors/multiple-authors.php:2247 +#: src/modules/multiple-authors/multiple-authors.php:2101 +#: src/modules/multiple-authors/multiple-authors.php:2138 +#: src/modules/multiple-authors/multiple-authors.php:2175 +#: src/modules/multiple-authors/multiple-authors.php:2212 +#: src/modules/multiple-authors/multiple-authors.php:2249 msgid "Select option" msgstr "" @@ -3313,7 +3345,7 @@ msgstr "" msgid "Select Preview Post" msgstr "" -#: src/modules/author-list/author-list.php:1001 +#: src/modules/author-list/author-list.php:1045 msgid "Select Users" msgstr "" @@ -3338,8 +3370,8 @@ msgstr "" msgid "Settings" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2146 -#: src/modules/author-boxes/author-boxes.php:2151 +#: src/modules/author-boxes/author-boxes.php:2152 +#: src/modules/author-boxes/author-boxes.php:2157 msgid "Settings Imported Successfully!" msgstr "" @@ -3349,9 +3381,9 @@ msgstr "" #: src/modules/author-boxes/author-boxes.php:199 #: src/modules/author-boxes/author-boxes.php:973 -#: src/modules/author-boxes/author-boxes.php:2044 -#: src/modules/author-boxes/author-boxes.php:2055 -#: src/modules/author-list/author-list.php:777 +#: src/modules/author-boxes/author-boxes.php:2050 +#: src/modules/author-boxes/author-boxes.php:2061 +#: src/modules/author-list/author-list.php:818 #: src/modules/author-list/classes/AuthorListTable.php:152 msgid "Shortcode" msgstr "" @@ -3361,8 +3393,8 @@ msgid "Shortcode documentation." msgstr "" #: src/modules/author-boxes/author-boxes.php:1038 -#: src/modules/multiple-authors/multiple-authors.php:2906 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1565 +#: src/modules/multiple-authors/multiple-authors.php:2908 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1571 msgid "Shortcodes" msgstr "" @@ -3435,7 +3467,7 @@ msgstr "" msgid "Show email link:" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1161 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1167 msgid "Show Even if No Recent Post" msgstr "" @@ -3455,11 +3487,11 @@ msgstr "" msgid "Show read more link:" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1149 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1155 msgid "Show Recent Posts" msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1155 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1161 msgid "Show Recent Posts Title" msgstr "" @@ -3515,12 +3547,12 @@ msgctxt "singular custom field post type name" msgid "%1$s" msgstr "" -#: src/modules/author-categories/author-categories.php:563 +#: src/modules/author-categories/author-categories.php:574 #: src/modules/author-categories/classes/AuthorCategoriesTable.php:434 msgid "Singular Name" msgstr "" -#: src/modules/author-categories/author-categories.php:246 +#: src/modules/author-categories/author-categories.php:254 msgid "Singular name is required." msgstr "" @@ -3533,13 +3565,17 @@ msgstr "" msgid "Slug" msgstr "" +#: src/modules/author-list/author-list.php:365 +msgid "Small-sized image (150px by 150px)" +msgstr "" + #: src/modules/author-custom-fields/author-custom-fields.php:403 msgid "Social Profile?" msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:203 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1180 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1450 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1186 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1456 msgid "Solid" msgstr "" @@ -3558,12 +3594,12 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:527 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:663 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:787 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1131 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1338 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1137 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1344 msgid "span" msgstr "" -#: src/modules/author-list/author-list.php:785 +#: src/modules/author-list/author-list.php:826 msgid "Static Shortcode" msgstr "" @@ -3571,24 +3607,24 @@ msgstr "" msgid "Status" msgstr "" -#: src/core/Classes/Utils.php:1128 +#: src/core/Classes/Utils.php:1132 msgid "Support for Polylang" msgstr "" #: src/core/Classes/Author_Editor.php:834 -#: src/modules/multiple-authors/multiple-authors.php:3790 +#: src/modules/multiple-authors/multiple-authors.php:3792 msgid "Sync author and user fields" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3821 +#: src/modules/multiple-authors/multiple-authors.php:3823 msgid "Sync author and user URLs" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2676 +#: src/modules/multiple-authors/multiple-authors.php:2678 msgid "Synchronize PublishPress Authors Fields and user profile fields" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2683 +#: src/modules/multiple-authors/multiple-authors.php:2685 msgid "Synchronize the author and user URLs" msgstr "" @@ -3602,7 +3638,7 @@ msgctxt "taxonomy singular name" msgid "Author" msgstr "" -#: src/modules/author-boxes/author-boxes.php:2206 +#: src/modules/author-boxes/author-boxes.php:2212 msgid "Template generated successfuly!" msgstr "" @@ -3618,6 +3654,10 @@ msgid "" "guide %9$s." msgstr "" +#: src/modules/author-list/author-list.php:361 +msgid "The original size of the uploaded image" +msgstr "" + #: src/modules/seoframework-integration/seoframework-integration.php:59 msgid "The SEO Framework Integration" msgstr "" @@ -3646,7 +3686,7 @@ msgid "" "add the parameter %s." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2020 +#: src/modules/multiple-authors/multiple-authors.php:2022 msgid "" "This avatar will be used as default avatar instead of gravatar where no " "custom avatar is added to profile." @@ -3675,17 +3715,17 @@ msgid "" "changed." msgstr "" -#: src/modules/author-list/author-list.php:1042 +#: src/modules/author-list/author-list.php:1086 msgid "" "This is a quick preview of this Author List. Test on frontend pages to see " "exactly how it looks with your theme." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2111 -#: src/modules/multiple-authors/multiple-authors.php:2148 -#: src/modules/multiple-authors/multiple-authors.php:2185 -#: src/modules/multiple-authors/multiple-authors.php:2222 -#: src/modules/multiple-authors/multiple-authors.php:2259 +#: src/modules/multiple-authors/multiple-authors.php:2113 +#: src/modules/multiple-authors/multiple-authors.php:2150 +#: src/modules/multiple-authors/multiple-authors.php:2187 +#: src/modules/multiple-authors/multiple-authors.php:2224 +#: src/modules/multiple-authors/multiple-authors.php:2261 #, php-format msgid "This is useful if you use legacy shortcode %s" msgstr "" @@ -3702,7 +3742,7 @@ msgid "" "integrations." msgstr "" -#: src/core/Classes/Post_Editor.php:459 +#: src/core/Classes/Post_Editor.php:460 msgid "" "This option is showing because you do not have a WordPress user selected as " "an author. For some tasks, it can be helpful to have a user selected here. " @@ -3713,28 +3753,28 @@ msgstr "" msgid "This plugin can be deleted." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2533 +#: src/modules/multiple-authors/multiple-authors.php:2535 msgid "This setting may be disabled for users who can not edit others posts." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2351 +#: src/modules/multiple-authors/multiple-authors.php:2353 msgid "" "This will allows you map a WordPress user to more than one author. Don't use " "this feature unless requested to do so by the PublishPress team. This plugin " "works better when authors and users are paired one-to-one." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1358 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1364 msgid "" "This will display author in an inline format side by side instead of block " "format." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2303 +#: src/modules/multiple-authors/multiple-authors.php:2305 msgid "This will display author page title." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2042 +#: src/modules/multiple-authors/multiple-authors.php:2044 msgid "This will display the author bio." msgstr "" @@ -3742,56 +3782,56 @@ msgstr "" msgid "This will display the authors box at the end of the content." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2587 +#: src/modules/multiple-authors/multiple-authors.php:2589 msgid "This will display the authors email in the author box." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2607 +#: src/modules/multiple-authors/multiple-authors.php:2609 msgid "This will display the authors site in the author box." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2375 +#: src/modules/multiple-authors/multiple-authors.php:2377 msgid "This will display the authors." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2447 +#: src/modules/multiple-authors/multiple-authors.php:2449 msgid "This will display the categories." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2423 +#: src/modules/multiple-authors/multiple-authors.php:2425 msgid "This will display the comment count." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2327 +#: src/modules/multiple-authors/multiple-authors.php:2329 msgid "This will display the excerpt." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2279 +#: src/modules/multiple-authors/multiple-authors.php:2281 msgid "This will display the featured image." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2399 +#: src/modules/multiple-authors/multiple-authors.php:2401 msgid "This will display the published date." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2495 +#: src/modules/multiple-authors/multiple-authors.php:2497 msgid "This will display the read more link." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2471 +#: src/modules/multiple-authors/multiple-authors.php:2473 msgid "This will display the tags." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2627 +#: src/modules/multiple-authors/multiple-authors.php:2629 msgid "This will load Font Awesome icons for use in Author Boxes." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:2645 +#: src/modules/multiple-authors/multiple-authors.php:2647 msgid "This will remove the Authors Box in \"Quick Edit\"." msgstr "" -#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:354 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1214 +#: src/core/Authors_Widget.php:130 src/modules/author-list/author-list.php:384 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1220 #: src/modules/author-list/classes/AuthorListTable.php:150 msgid "Title" msgstr "" @@ -3849,8 +3889,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:353 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:477 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:972 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1092 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1294 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1098 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1300 msgid "Underline" msgstr "" @@ -3870,30 +3910,30 @@ msgstr "" msgid "Updated %d authors" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3827 +#: src/modules/multiple-authors/multiple-authors.php:3829 msgid "Updated %d of %d authors..." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3796 +#: src/modules/multiple-authors/multiple-authors.php:3798 msgid "Updated %d of %d posts..." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3795 +#: src/modules/multiple-authors/multiple-authors.php:3797 msgid "Updating author field on posts..." msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:3826 +#: src/modules/multiple-authors/multiple-authors.php:3828 msgid "Updating authors slug..." msgstr "" -#: includes.php:63 src/core/Classes/Utils.php:1133 -#: src/modules/author-boxes/author-boxes.php:2511 +#: includes.php:63 src/core/Classes/Utils.php:1137 +#: src/modules/author-boxes/author-boxes.php:2517 #: src/modules/author-custom-fields/author-custom-fields.php:951 -#: src/modules/author-list/author-list.php:1065 +#: src/modules/author-list/author-list.php:1109 msgid "Upgrade to Pro" msgstr "" -#: src/core/Classes/Utils.php:1116 +#: src/core/Classes/Utils.php:1120 msgid "Upgrade to PublishPress Authors Pro" msgstr "" @@ -3901,8 +3941,8 @@ msgstr "" #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:328 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:452 #: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:943 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1067 -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1269 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1073 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1275 msgid "Uppercase" msgstr "" @@ -3939,8 +3979,8 @@ msgstr "" msgid "View All Posts" msgstr "" -#: src/modules/author-boxes/author-boxes.php:1811 -#: src/modules/author-boxes/author-boxes.php:1812 +#: src/modules/author-boxes/author-boxes.php:1817 +#: src/modules/author-boxes/author-boxes.php:1818 #: src/modules/default-layouts/default-layouts.php:105 msgid "View all posts" msgstr "" @@ -3997,11 +4037,11 @@ msgstr "" msgid "View Author" msgstr "" -#: src/core/Classes/Utils.php:1158 +#: src/core/Classes/Utils.php:1162 msgid "View Knowledge Base" msgstr "" -#: src/modules/multiple-authors/multiple-authors.php:1776 +#: src/modules/multiple-authors/multiple-authors.php:1778 msgid "View sample Author Page" msgstr "" @@ -4079,7 +4119,7 @@ msgid "" "will be automatically added if required." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2508 +#: src/modules/author-boxes/author-boxes.php:2514 msgid "" "You can create Author Boxes where Authors are grouped into their categories." msgstr "" @@ -4154,7 +4194,7 @@ msgid "" "providing the category slug or slugs. Separate multiple slugs with a comma." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1382 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1388 msgid "" "You can specify a separator such as ',' to separate authors. This field " "accepts basic HTML." @@ -4175,7 +4215,7 @@ msgid "" "shortcode also provides two custom layouts: %5$s %6$s." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2112 +#: src/modules/author-boxes/author-boxes.php:2118 #, php-format msgid "You can use basic HTML in this field. For example: Read Time %1s." msgstr "" @@ -4187,22 +4227,22 @@ msgid "" "documentation%3s." msgstr "" -#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1546 +#: src/modules/author-boxes/classes/AuthorBoxesEditorFields.php:1552 msgid "You can use multiple class names. Leave a space between each class." msgstr "" -#: src/modules/author-boxes/author-boxes.php:2117 +#: src/modules/author-boxes/author-boxes.php:2123 msgid "" "You can use this data to export your author box design and import it to a " "new site." msgstr "" -#: src/core/Classes/Legacy/LegacyPlugin.php:285 +#: src/core/Classes/Legacy/LegacyPlugin.php:289 msgid "You do not have necessary permissions to complete this action." msgstr "" -#: src/modules/author-categories/author-categories.php:233 -#: src/modules/author-categories/author-categories.php:316 +#: src/modules/author-categories/author-categories.php:241 +#: src/modules/author-categories/author-categories.php:324 #: src/modules/author-custom-fields/author-custom-fields.php:1011 #: src/modules/author-boxes/classes/AuthorBoxesAjax.php:47 msgid "You do not have permission to perform this action" From cd18e8875355b0513ac05a257bc09544dffb711f Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 10:14:47 +0100 Subject: [PATCH 26/29] Update version --- defines.php | 2 +- publishpress-authors.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defines.php b/defines.php index 8d584aa9..40a44d71 100644 --- a/defines.php +++ b/defines.php @@ -12,7 +12,7 @@ defined('ABSPATH') or die('No direct script access allowed.'); if (!defined('PP_AUTHORS_LOADED')) { - define('PP_AUTHORS_VERSION', '4.7.2'); + define('PP_AUTHORS_VERSION', '4.7.3'); define('PP_AUTHORS_FILE', 'publishpress-authors/publishpress-authors.php'); define('PP_AUTHORS_BASE_PATH', plugin_dir_path(__DIR__ . '/publishpress-authors.php')); define('PP_AUTHORS_MODULES_PATH', PP_AUTHORS_BASE_PATH . 'src/modules/'); diff --git a/publishpress-authors.php b/publishpress-authors.php index 8fe380c4..afefa3cd 100644 --- a/publishpress-authors.php +++ b/publishpress-authors.php @@ -5,7 +5,7 @@ * Description: PublishPress Authors allows you to add multiple authors and guest authors to WordPress posts * Author: PublishPress * Author URI: https://publishpress.com - * Version: 4.7.2 + * Version: 4.7.3 * Text Domain: publishpress-authors * Domain Path: /languages * Requires at least: 5.5 From 962a84df10a6eec89974077dd58c6f102bd92f7b Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 10:54:11 +0100 Subject: [PATCH 27/29] Update changelog --- readme.txt | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index fd03d970..84132377 100644 --- a/readme.txt +++ b/readme.txt @@ -6,8 +6,8 @@ Author URI: https://publishpress.com Tags: multiple authors, authors, guest authors, author bio, author layouts Requires at least: 5.5 Requires PHP: 7.2.5 -Tested up to: 6.6 -Stable tag: 4.7.2 +Tested up to: 6.7 +Stable tag: 4.7.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -246,6 +246,29 @@ There are two ways to install the PublishPress Authors plugin: == Changelog == += [4.7.3] - 16 Dec 2024 = + +* Fixed: Can't change the layout for new Author Lists, #1892 +* Fixed: HTML Title Issue with AIO SEO, #1899 +* Fixed: Schema Issue with RankMath, #1901 +* Fixed: Wrong Author name on Yoast Description, #1898 +* Fixed: Missing Schema on Page, #1926 +* Update: Add Author Recent featured image size settings in Authors Lists, #1891 +* Update: Add twitter icon and bluesky from, FA #1920 +* Update: Update FontAwesome to 6.7.1, #1930 +* Fixed: Prevented mid-word cuts for readability, #1922 +* Fixed: Small typo with the Display Name, #1895 +* Update: Move the Author Pages warning, #1893 +* Fixed: Deprecated: Dynamic properties MA_Author_Pages::$module_url and $module, #1946 +* Update: Add option for hyperlink in author bio box, #1938 +* Fixed: 4.7.0 introduced a slow query from avatar alt text, Add option to filter avatar alt 'multiple_authors_avatar_alt_text', #1923 +* Fixed: Refactor flush_cache Method, #1952 +* Update: Add margin to warnings on the Authors screen, #1909 +* Update: Use Alt text on Avatar Author Box, #1880 +* Fixed: Author category filter returning all Authors when none is found, #1878 +* Fixed: Moving Authors to new category is not reflecting after saving and reloading post, #1932 +* Update: Authors Translation Updates v.4.7.2, #1919 + = [4.7.2] - 15 Oct 2024 = * Update: Improve Author User data update capability check From 793fc4f26ef32de5f13db7e5e9f2adf7a329d8dd Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 10:54:47 +0100 Subject: [PATCH 28/29] Composer update --- composer.lock | 922 +++++++++++++++++++++++----------------------- lib/composer.lock | 62 ++-- 2 files changed, 502 insertions(+), 482 deletions(-) diff --git a/composer.lock b/composer.lock index da50318e..3311409e 100644 --- a/composer.lock +++ b/composer.lock @@ -9,20 +9,20 @@ "packages-dev": [ { "name": "antecedent/patchwork", - "version": "2.1.28", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/antecedent/patchwork.git", - "reference": "6b30aff81ebadf0f2feb9268d3e08385cebcc08d" + "reference": "1bf183a3e1bd094f231a2128b9ecc5363c269245" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/antecedent/patchwork/zipball/6b30aff81ebadf0f2feb9268d3e08385cebcc08d", - "reference": "6b30aff81ebadf0f2feb9268d3e08385cebcc08d", + "url": "https://api.github.com/repos/antecedent/patchwork/zipball/1bf183a3e1bd094f231a2128b9ecc5363c269245", + "reference": "1bf183a3e1bd094f231a2128b9ecc5363c269245", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=7.1.0" }, "require-dev": { "phpunit/phpunit": ">=4" @@ -51,9 +51,9 @@ ], "support": { "issues": "https://github.com/antecedent/patchwork/issues", - "source": "https://github.com/antecedent/patchwork/tree/2.1.28" + "source": "https://github.com/antecedent/patchwork/tree/2.2.1" }, - "time": "2024-02-06T09:26:11+00:00" + "time": "2024-12-11T10:19:54+00:00" }, { "name": "automattic/vipwpcs", @@ -110,25 +110,25 @@ }, { "name": "behat/gherkin", - "version": "v4.9.0", + "version": "v4.10.0", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4" + "reference": "cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4", - "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6", + "reference": "cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6", "shasum": "" }, "require": { "php": "~7.2|~8.0" }, "require-dev": { - "cucumber/cucumber": "dev-gherkin-22.0.0", + "cucumber/cucumber": "dev-gherkin-24.1.0", "phpunit/phpunit": "~8|~9", - "symfony/yaml": "~3|~4|~5" + "symfony/yaml": "~3|~4|~5|~6|~7" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -167,9 +167,9 @@ ], "support": { "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.9.0" + "source": "https://github.com/Behat/Gherkin/tree/v4.10.0" }, - "time": "2021-10-12T13:05:09+00:00" + "time": "2024-10-19T14:46:06+00:00" }, { "name": "bordoni/phpass", @@ -1056,16 +1056,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.5.1", + "version": "1.5.4", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a" + "reference": "bc0593537a463e55cadf45fd938d23b75095b7e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/063d9aa8696582f5a41dffbbaf3c81024f0a604a", - "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/bc0593537a463e55cadf45fd938d23b75095b7e1", + "reference": "bc0593537a463e55cadf45fd938d23b75095b7e1", "shasum": "" }, "require": { @@ -1075,8 +1075,8 @@ }, "require-dev": { "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8 || ^9", "psr/log": "^1.0 || ^2.0 || ^3.0", - "symfony/phpunit-bridge": "^4.2 || ^5", "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", @@ -1112,7 +1112,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.5.1" + "source": "https://github.com/composer/ca-bundle/tree/1.5.4" }, "funding": [ { @@ -1128,20 +1128,20 @@ "type": "tidelift" } ], - "time": "2024-07-08T15:28:20+00:00" + "time": "2024-11-27T15:35:25+00:00" }, { "name": "composer/class-map-generator", - "version": "1.3.4", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/composer/class-map-generator.git", - "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3" + "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", - "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915", + "reference": "4b0a223cf5be7c9ee7e0ef1bc7db42b4a97c9915", "shasum": "" }, "require": { @@ -1150,12 +1150,12 @@ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" }, "require-dev": { - "phpstan/phpstan": "^1.6", - "phpstan/phpstan-deprecation-rules": "^1", - "phpstan/phpstan-phpunit": "^1", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/filesystem": "^5.4 || ^6", - "symfony/phpunit-bridge": "^5" + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-deprecation-rules": "^1 || ^2", + "phpstan/phpstan-phpunit": "^1 || ^2", + "phpstan/phpstan-strict-rules": "^1.1 || ^2", + "phpunit/phpunit": "^8", + "symfony/filesystem": "^5.4 || ^6" }, "type": "library", "extra": { @@ -1185,7 +1185,7 @@ ], "support": { "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.3.4" + "source": "https://github.com/composer/class-map-generator/tree/1.5.0" }, "funding": [ { @@ -1201,7 +1201,7 @@ "type": "tidelift" } ], - "time": "2024-06-12T14:13:04+00:00" + "time": "2024-11-25T16:11:06+00:00" }, { "name": "composer/composer", @@ -1258,13 +1258,13 @@ ], "type": "library", "extra": { - "branch-alias": { - "dev-main": "2.7-dev" - }, "phpstan": { "includes": [ "phpstan/rules.neon" ] + }, + "branch-alias": { + "dev-main": "2.7-dev" } }, "autoload": { @@ -1388,30 +1388,38 @@ }, { "name": "composer/pcre", - "version": "3.1.4", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/composer/pcre.git", - "reference": "04229f163664973f68f38f6f73d917799168ef24" + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24", - "reference": "04229f163664973f68f38f6f73d917799168ef24", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", "shasum": "" }, "require": { "php": "^7.4 || ^8.0" }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, "require-dev": { - "phpstan/phpstan": "^1.3", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^5" + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-strict-rules": "^1 || ^2", + "phpunit/phpunit": "^8 || ^9" }, "type": "library", "extra": { "branch-alias": { "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] } }, "autoload": { @@ -1439,7 +1447,7 @@ ], "support": { "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.1.4" + "source": "https://github.com/composer/pcre/tree/3.3.2" }, "funding": [ { @@ -1455,28 +1463,28 @@ "type": "tidelift" } ], - "time": "2024-05-27T13:40:54+00:00" + "time": "2024-11-12T16:29:46+00:00" }, { "name": "composer/semver", - "version": "3.4.0", + "version": "3.4.3", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.4", - "symfony/phpunit-bridge": "^4.2 || ^5" + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" }, "type": "library", "extra": { @@ -1520,7 +1528,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.0" + "source": "https://github.com/composer/semver/tree/3.4.3" }, "funding": [ { @@ -1536,7 +1544,7 @@ "type": "tidelift" } ], - "time": "2023-08-31T09:50:34+00:00" + "time": "2024-09-19T14:15:21+00:00" }, { "name": "composer/spdx-licenses", @@ -1761,20 +1769,20 @@ }, { "name": "dg/mysql-dump", - "version": "v1.5.1", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/dg/MySQL-dump.git", - "reference": "e0e287b715b43293773a8b0edf8514f606e01780" + "reference": "b83859026dc3651c6aa39376705fbfa57c0486c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/MySQL-dump/zipball/e0e287b715b43293773a8b0edf8514f606e01780", - "reference": "e0e287b715b43293773a8b0edf8514f606e01780", + "url": "https://api.github.com/repos/dg/MySQL-dump/zipball/b83859026dc3651c6aa39376705fbfa57c0486c5", + "reference": "b83859026dc3651c6aa39376705fbfa57c0486c5", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=7.1" }, "type": "library", "autoload": { @@ -1798,9 +1806,9 @@ "mysql" ], "support": { - "source": "https://github.com/dg/MySQL-dump/tree/master" + "source": "https://github.com/dg/MySQL-dump/tree/v1.6.0" }, - "time": "2019-09-10T21:36:25+00:00" + "time": "2024-09-16T04:30:48+00:00" }, { "name": "doctrine/inflector", @@ -2178,22 +2186,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.8.1", + "version": "7.9.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" }, "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" @@ -2204,9 +2212,9 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "guzzle/client-integration-tests": "3.0.2", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -2284,7 +2292,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.8.1" + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" }, "funding": [ { @@ -2300,20 +2308,20 @@ "type": "tidelift" } ], - "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.4", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", "shasum": "" }, "require": { @@ -2321,7 +2329,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.36 || ^9.6.15" + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "type": "library", "extra": { @@ -2367,7 +2375,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.2" + "source": "https://github.com/guzzle/promises/tree/2.0.4" }, "funding": [ { @@ -2383,20 +2391,20 @@ "type": "tidelift" } ], - "time": "2023-12-03T20:19:20+00:00" + "time": "2024-10-17T10:06:22+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.2", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" }, "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": { @@ -2411,8 +2419,8 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.8.2", - "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.36 || ^9.6.15" + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -2483,7 +2491,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.2" + "source": "https://github.com/guzzle/psr7/tree/2.7.0" }, "funding": [ { @@ -2499,7 +2507,7 @@ "type": "tidelift" } ], - "time": "2023-12-03T20:05:35+00:00" + "time": "2024-07-18T11:15:46+00:00" }, { "name": "hoa/consistency", @@ -3580,16 +3588,16 @@ }, { "name": "mck89/peast", - "version": "v1.16.2", + "version": "v1.16.3", "source": { "type": "git", "url": "https://github.com/mck89/peast.git", - "reference": "2791b08ffcc1862fe18eef85675da3aa58c406fe" + "reference": "645ec21b650bc2aced18285c85f220d22afc1430" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/2791b08ffcc1862fe18eef85675da3aa58c406fe", - "reference": "2791b08ffcc1862fe18eef85675da3aa58c406fe", + "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430", + "reference": "645ec21b650bc2aced18285c85f220d22afc1430", "shasum": "" }, "require": { @@ -3602,7 +3610,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.16.2-dev" + "dev-master": "1.16.3-dev" } }, "autoload": { @@ -3623,9 +3631,9 @@ "description": "Peast is PHP library that generates AST for JavaScript code", "support": { "issues": "https://github.com/mck89/peast/issues", - "source": "https://github.com/mck89/peast/tree/v1.16.2" + "source": "https://github.com/mck89/peast/tree/v1.16.3" }, - "time": "2024-03-05T09:16:03+00:00" + "time": "2024-07-23T14:00:32+00:00" }, { "name": "mikehaertl/php-shellcommand", @@ -3700,12 +3708,12 @@ "type": "laravel-package", "extra": { "laravel": { - "providers": [ - "MikeMcLin\\WpPassword\\WpPasswordProvider" - ], "aliases": { "WpPassword": "MikeMcLin\\WpPassword\\Facades\\WpPassword" - } + }, + "providers": [ + "MikeMcLin\\WpPassword\\WpPasswordProvider" + ] } }, "autoload": { @@ -3790,16 +3798,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.12.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", - "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", "shasum": "" }, "require": { @@ -3838,7 +3846,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1" }, "funding": [ { @@ -3846,7 +3854,7 @@ "type": "tidelift" } ], - "time": "2024-06-12T14:39:25+00:00" + "time": "2024-11-08T17:47:46+00:00" }, { "name": "n98/junit-xml", @@ -4042,16 +4050,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.1.0", + "version": "v5.3.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1" + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1", - "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", "shasum": "" }, "require": { @@ -4094,9 +4102,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" }, - "time": "2024-07-01T20:03:41+00:00" + "time": "2024-10-08T18:51:32+00:00" }, { "name": "overtrue/phplint", @@ -4132,11 +4140,11 @@ "type": "library", "extra": { "hooks": { - "pre-commit": [ - "composer fix-style" - ], "pre-push": [ "composer check-style" + ], + "pre-commit": [ + "composer fix-style" ] } }, @@ -4351,16 +4359,16 @@ }, { "name": "php-webdriver/webdriver", - "version": "1.15.1", + "version": "1.15.2", "source": { "type": "git", "url": "https://github.com/php-webdriver/php-webdriver.git", - "reference": "cd52d9342c5aa738c2e75a67e47a1b6df97154e8" + "reference": "998e499b786805568deaf8cbf06f4044f05d91bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/cd52d9342c5aa738c2e75a67e47a1b6df97154e8", - "reference": "cd52d9342c5aa738c2e75a67e47a1b6df97154e8", + "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/998e499b786805568deaf8cbf06f4044f05d91bf", + "reference": "998e499b786805568deaf8cbf06f4044f05d91bf", "shasum": "" }, "require": { @@ -4382,7 +4390,7 @@ "php-parallel-lint/php-parallel-lint": "^1.2", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "^3.5", - "symfony/var-dumper": "^5.0 || ^6.0" + "symfony/var-dumper": "^5.0 || ^6.0 || ^7.0" }, "suggest": { "ext-SimpleXML": "For Firefox profile creation" @@ -4411,9 +4419,9 @@ ], "support": { "issues": "https://github.com/php-webdriver/php-webdriver/issues", - "source": "https://github.com/php-webdriver/php-webdriver/tree/1.15.1" + "source": "https://github.com/php-webdriver/php-webdriver/tree/1.15.2" }, - "time": "2023-10-20T12:21:20+00:00" + "time": "2024-11-21T15:12:59+00:00" }, { "name": "phpmd/phpmd", @@ -4500,35 +4508,35 @@ }, { "name": "phpunit/php-code-coverage", - "version": "9.2.31", + "version": "9.2.32", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965" + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965", - "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5", + "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.18 || ^5.0", + "nikic/php-parser": "^4.19.1 || ^5.1.0", "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", - "theseer/tokenizer": "^1.2.0" + "phpunit/php-file-iterator": "^3.0.6", + "phpunit/php-text-template": "^2.0.4", + "sebastian/code-unit-reverse-lookup": "^2.0.3", + "sebastian/complexity": "^2.0.3", + "sebastian/environment": "^5.1.5", + "sebastian/lines-of-code": "^1.0.4", + "sebastian/version": "^3.0.2", + "theseer/tokenizer": "^1.2.3" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "phpunit/phpunit": "^9.6" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -4537,7 +4545,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-main": "9.2.x-dev" } }, "autoload": { @@ -4566,7 +4574,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32" }, "funding": [ { @@ -4574,7 +4582,7 @@ "type": "github" } ], - "time": "2024-03-02T06:37:42+00:00" + "time": "2024-08-22T04:23:01+00:00" }, { "name": "phpunit/php-file-iterator", @@ -4819,45 +4827,45 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.19", + "version": "9.6.22", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8" + "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8", - "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c", + "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1 || ^2", + "doctrine/instantiator": "^1.5.0 || ^2", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", + "myclabs/deep-copy": "^1.12.1", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.28", - "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-code-coverage": "^9.2.32", + "phpunit/php-file-iterator": "^3.0.6", "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", + "phpunit/php-text-template": "^2.0.4", + "phpunit/php-timer": "^5.0.3", + "sebastian/cli-parser": "^1.0.2", + "sebastian/code-unit": "^1.0.8", "sebastian/comparator": "^4.0.8", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.5", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.2", + "sebastian/diff": "^4.0.6", + "sebastian/environment": "^5.1.5", + "sebastian/exporter": "^4.0.6", + "sebastian/global-state": "^5.0.7", + "sebastian/object-enumerator": "^4.0.4", + "sebastian/resource-operations": "^3.0.4", + "sebastian/type": "^3.2.1", "sebastian/version": "^3.0.2" }, "suggest": { @@ -4902,7 +4910,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22" }, "funding": [ { @@ -4918,7 +4926,7 @@ "type": "tidelift" } ], - "time": "2024-04-05T04:35:58+00:00" + "time": "2024-12-05T13:48:26+00:00" }, { "name": "psr/clock", @@ -6476,23 +6484,23 @@ }, { "name": "seld/jsonlint", - "version": "1.10.2", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259" + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2" }, "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": { "php": "^5.3 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.5", + "phpstan/phpstan": "^1.11", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" }, "bin": [ @@ -6524,7 +6532,7 @@ ], "support": { "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.10.2" + "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0" }, "funding": [ { @@ -6536,7 +6544,7 @@ "type": "tidelift" } ], - "time": "2024-02-07T12:57:50+00:00" + "time": "2024-07-11T14:55:45+00:00" }, { "name": "seld/phar-utils", @@ -6649,16 +6657,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.19", + "version": "v2.11.21", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1" + "reference": "eb2b351927098c24860daa7484e290d3eed693be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", - "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/eb2b351927098c24860daa7484e290d3eed693be", + "reference": "eb2b351927098c24860daa7484e290d3eed693be", "shasum": "" }, "require": { @@ -6669,9 +6677,9 @@ "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", "phpcsstandards/phpcsdevcs": "^1.1", "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -6703,7 +6711,7 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2024-06-26T20:08:34+00:00" + "time": "2024-12-02T16:37:49+00:00" }, { "name": "softcreatr/jsonpath", @@ -6772,16 +6780,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.10.1", + "version": "3.11.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877" + "reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/8f90f7a53ce271935282967f53d0894f8f1ff877", - "reference": "8f90f7a53ce271935282967f53d0894f8f1ff877", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1368f4a58c3c52114b86b1abe8f4098869cb0079", + "reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079", "shasum": "" }, "require": { @@ -6848,20 +6856,20 @@ "type": "open_collective" } ], - "time": "2024-05-22T21:24:41+00:00" + "time": "2024-12-11T16:04:26+00:00" }, { "name": "symfony/browser-kit", - "version": "v5.4.40", + "version": "v5.4.45", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "92c8ba1e5ee12d07120744c90898516132b4e58b" + "reference": "03cce39764429e07fbab9b989a1182a24578341d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/92c8ba1e5ee12d07120744c90898516132b4e58b", - "reference": "92c8ba1e5ee12d07120744c90898516132b4e58b", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/03cce39764429e07fbab9b989a1182a24578341d", + "reference": "03cce39764429e07fbab9b989a1182a24578341d", "shasum": "" }, "require": { @@ -6904,7 +6912,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v5.4.40" + "source": "https://github.com/symfony/browser-kit/tree/v5.4.45" }, "funding": [ { @@ -6920,7 +6928,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-10-22T13:05:35+00:00" }, { "name": "symfony/config", @@ -7002,16 +7010,16 @@ }, { "name": "symfony/console", - "version": "v5.4.41", + "version": "v5.4.47", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "6473d441a913cb997123b59ff2dbe3d1cf9e11ba" + "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/6473d441a913cb997123b59ff2dbe3d1cf9e11ba", - "reference": "6473d441a913cb997123b59ff2dbe3d1cf9e11ba", + "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed", + "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed", "shasum": "" }, "require": { @@ -7081,7 +7089,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.41" + "source": "https://github.com/symfony/console/tree/v5.4.47" }, "funding": [ { @@ -7097,20 +7105,20 @@ "type": "tidelift" } ], - "time": "2024-06-28T07:48:55+00:00" + "time": "2024-11-06T11:30:55+00:00" }, { "name": "symfony/css-selector", - "version": "v5.4.40", + "version": "v5.4.45", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "ea43887e9afd2029509662d4f95e8b5ef6fc9bbb" + "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ea43887e9afd2029509662d4f95e8b5ef6fc9bbb", - "reference": "ea43887e9afd2029509662d4f95e8b5ef6fc9bbb", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4f7f3c35fba88146b56d0025d20ace3f3901f097", + "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097", "shasum": "" }, "require": { @@ -7147,7 +7155,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.4.40" + "source": "https://github.com/symfony/css-selector/tree/v5.4.45" }, "funding": [ { @@ -7163,7 +7171,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/dependency-injection", @@ -7322,16 +7330,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v5.4.40", + "version": "v5.4.48", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "2ad469c3e07fdba677b278d0e266071a51aa0dac" + "reference": "b57df76f4757a9a8dfbb57ba48d7780cc20776c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2ad469c3e07fdba677b278d0e266071a51aa0dac", - "reference": "2ad469c3e07fdba677b278d0e266071a51aa0dac", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b57df76f4757a9a8dfbb57ba48d7780cc20776c6", + "reference": "b57df76f4757a9a8dfbb57ba48d7780cc20776c6", "shasum": "" }, "require": { @@ -7377,7 +7385,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v5.4.40" + "source": "https://github.com/symfony/dom-crawler/tree/v5.4.48" }, "funding": [ { @@ -7393,20 +7401,20 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-11-13T14:36:38+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.4.40", + "version": "v5.4.45", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "a54e2a8a114065f31020d6a89ede83e34c3b27a4" + "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a54e2a8a114065f31020d6a89ede83e34c3b27a4", - "reference": "a54e2a8a114065f31020d6a89ede83e34c3b27a4", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9", + "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9", "shasum": "" }, "require": { @@ -7462,7 +7470,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", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.40" + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45" }, "funding": [ { @@ -7478,7 +7486,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -7624,16 +7632,16 @@ }, { "name": "symfony/finder", - "version": "v5.4.40", + "version": "v5.4.45", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "f51cff4687547641c7d8180d74932ab40b2205ce" + "reference": "63741784cd7b9967975eec610b256eed3ede022b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/f51cff4687547641c7d8180d74932ab40b2205ce", - "reference": "f51cff4687547641c7d8180d74932ab40b2205ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b", + "reference": "63741784cd7b9967975eec610b256eed3ede022b", "shasum": "" }, "require": { @@ -7667,7 +7675,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.40" + "source": "https://github.com/symfony/finder/tree/v5.4.45" }, "funding": [ { @@ -7683,24 +7691,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-09-28T13:32:08+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "0424dff1c58f028c451efff2045f5d92410bd540" + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540", - "reference": "0424dff1c58f028c451efff2045f5d92410bd540", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-ctype": "*" @@ -7711,8 +7719,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -7746,7 +7754,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" }, "funding": [ { @@ -7762,24 +7770,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", - "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -7787,8 +7795,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -7824,7 +7832,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" }, "funding": [ { @@ -7840,24 +7848,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", - "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" @@ -7865,8 +7873,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -7905,7 +7913,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" }, "funding": [ { @@ -7921,24 +7929,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -7949,8 +7957,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -7985,7 +7993,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -8001,30 +8009,30 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1" + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/ec444d3f3f6505bb28d11afa41e75faadebc10a1", - "reference": "ec444d3f3f6505bb28d11afa41e75faadebc10a1", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -8061,7 +8069,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0" }, "funding": [ { @@ -8077,7 +8085,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php80", @@ -8099,8 +8107,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -8161,26 +8169,26 @@ }, { "name": "symfony/polyfill-php81", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af" + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af", - "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -8217,7 +8225,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" }, "funding": [ { @@ -8233,20 +8241,20 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/process", - "version": "v5.4.46", + "version": "v5.4.47", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4" + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/01906871cb9b5e3cf872863b91aba4ec9767daf4", - "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4", + "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d", + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d", "shasum": "" }, "require": { @@ -8279,7 +8287,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.46" + "source": "https://github.com/symfony/process/tree/v5.4.47" }, "funding": [ { @@ -8295,7 +8303,7 @@ "type": "tidelift" } ], - "time": "2024-11-06T09:18:28+00:00" + "time": "2024-11-06T11:36:42+00:00" }, { "name": "symfony/service-contracts", @@ -8639,16 +8647,16 @@ }, { "name": "symfony/yaml", - "version": "v5.4.40", + "version": "v5.4.45", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "81cad0ceab3d61fe14fe941ff18a230ac9c80f83" + "reference": "a454d47278cc16a5db371fe73ae66a78a633371e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/81cad0ceab3d61fe14fe941ff18a230ac9c80f83", - "reference": "81cad0ceab3d61fe14fe941ff18a230ac9c80f83", + "url": "https://api.github.com/repos/symfony/yaml/zipball/a454d47278cc16a5db371fe73ae66a78a633371e", + "reference": "a454d47278cc16a5db371fe73ae66a78a633371e", "shasum": "" }, "require": { @@ -8694,7 +8702,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v5.4.40" + "source": "https://github.com/symfony/yaml/tree/v5.4.45" }, "funding": [ { @@ -8710,7 +8718,7 @@ "type": "tidelift" } ], - "time": "2024-05-31T14:33:22+00:00" + "time": "2024-09-25T14:11:13+00:00" }, { "name": "theseer/tokenizer", @@ -8764,16 +8772,16 @@ }, { "name": "voku/portable-ascii", - "version": "2.0.1", + "version": "2.0.3", "source": { "type": "git", "url": "https://github.com/voku/portable-ascii.git", - "reference": "b56450eed252f6801410d810c8e1727224ae0743" + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", - "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", "shasum": "" }, "require": { @@ -8798,7 +8806,7 @@ "authors": [ { "name": "Lars Moelleken", - "homepage": "http://www.moelleken.org/" + "homepage": "https://www.moelleken.org/" } ], "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", @@ -8810,7 +8818,7 @@ ], "support": { "issues": "https://github.com/voku/portable-ascii/issues", - "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" }, "funding": [ { @@ -8834,7 +8842,7 @@ "type": "tidelift" } ], - "time": "2022-03-08T17:03:00+00:00" + "time": "2024-11-21T01:49:47+00:00" }, { "name": "vria/nodiacritic", @@ -8966,16 +8974,16 @@ }, { "name": "wp-cli/checksum-command", - "version": "v2.2.5", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/wp-cli/checksum-command.git", - "reference": "f6911998734018da08f75464a168feb0d07b4475" + "reference": "bc82cfb0b1e24eec99cd1bfa515a62c63bd46936" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/f6911998734018da08f75464a168feb0d07b4475", - "reference": "f6911998734018da08f75464a168feb0d07b4475", + "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/bc82cfb0b1e24eec99cd1bfa515a62c63bd46936", + "reference": "bc82cfb0b1e24eec99cd1bfa515a62c63bd46936", "shasum": "" }, "require": { @@ -9019,27 +9027,27 @@ "homepage": "https://github.com/wp-cli/checksum-command", "support": { "issues": "https://github.com/wp-cli/checksum-command/issues", - "source": "https://github.com/wp-cli/checksum-command/tree/v2.2.5" + "source": "https://github.com/wp-cli/checksum-command/tree/v2.3.0" }, - "time": "2023-11-10T21:54:15+00:00" + "time": "2024-10-01T21:53:46+00:00" }, { "name": "wp-cli/config-command", - "version": "v2.3.4", + "version": "v2.3.7", "source": { "type": "git", "url": "https://github.com/wp-cli/config-command.git", - "reference": "445dfd0276a8e717ed4d2dd6f9dd0b769097fba4" + "reference": "effb7898bc6ffdaf8a0666432f3c8e35b715858e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/config-command/zipball/445dfd0276a8e717ed4d2dd6f9dd0b769097fba4", - "reference": "445dfd0276a8e717ed4d2dd6f9dd0b769097fba4", + "url": "https://api.github.com/repos/wp-cli/config-command/zipball/effb7898bc6ffdaf8a0666432f3c8e35b715858e", + "reference": "effb7898bc6ffdaf8a0666432f3c8e35b715858e", "shasum": "" }, "require": { "wp-cli/wp-cli": "^2.5", - "wp-cli/wp-config-transformer": "^1.2.1" + "wp-cli/wp-config-transformer": "^1.4.0" }, "require-dev": { "wp-cli/db-command": "^1.3 || ^2", @@ -9093,9 +9101,9 @@ "homepage": "https://github.com/wp-cli/config-command", "support": { "issues": "https://github.com/wp-cli/config-command/issues", - "source": "https://github.com/wp-cli/config-command/tree/v2.3.4" + "source": "https://github.com/wp-cli/config-command/tree/v2.3.7" }, - "time": "2024-03-01T12:07:39+00:00" + "time": "2024-10-01T10:19:18+00:00" }, { "name": "wp-cli/core-command", @@ -9170,16 +9178,16 @@ }, { "name": "wp-cli/cron-command", - "version": "v2.3.0", + "version": "v2.3.1", "source": { "type": "git", "url": "https://github.com/wp-cli/cron-command.git", - "reference": "2108295a2f30de77d3ee70b1a60d1b542c2dfd79" + "reference": "46f849f2f0ba859c6acd356eefc76769c8381ae5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/cron-command/zipball/2108295a2f30de77d3ee70b1a60d1b542c2dfd79", - "reference": "2108295a2f30de77d3ee70b1a60d1b542c2dfd79", + "url": "https://api.github.com/repos/wp-cli/cron-command/zipball/46f849f2f0ba859c6acd356eefc76769c8381ae5", + "reference": "46f849f2f0ba859c6acd356eefc76769c8381ae5", "shasum": "" }, "require": { @@ -9233,22 +9241,22 @@ "homepage": "https://github.com/wp-cli/cron-command", "support": { "issues": "https://github.com/wp-cli/cron-command/issues", - "source": "https://github.com/wp-cli/cron-command/tree/v2.3.0" + "source": "https://github.com/wp-cli/cron-command/tree/v2.3.1" }, - "time": "2024-02-15T10:23:39+00:00" + "time": "2024-10-01T10:30:28+00:00" }, { "name": "wp-cli/db-command", - "version": "v2.1.0", + "version": "v2.1.2", "source": { "type": "git", "url": "https://github.com/wp-cli/db-command.git", - "reference": "bf741ebc532f7d4673f4552d1b3589265205cf32" + "reference": "d4c0dd25ec8b3d0118a2400cf6b87e8d08b77c43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/db-command/zipball/bf741ebc532f7d4673f4552d1b3589265205cf32", - "reference": "bf741ebc532f7d4673f4552d1b3589265205cf32", + "url": "https://api.github.com/repos/wp-cli/db-command/zipball/d4c0dd25ec8b3d0118a2400cf6b87e8d08b77c43", + "reference": "d4c0dd25ec8b3d0118a2400cf6b87e8d08b77c43", "shasum": "" }, "require": { @@ -9307,22 +9315,22 @@ "homepage": "https://github.com/wp-cli/db-command", "support": { "issues": "https://github.com/wp-cli/db-command/issues", - "source": "https://github.com/wp-cli/db-command/tree/v2.1.0" + "source": "https://github.com/wp-cli/db-command/tree/v2.1.2" }, - "time": "2024-04-27T03:11:44+00:00" + "time": "2024-10-01T10:48:48+00:00" }, { "name": "wp-cli/embed-command", - "version": "v2.0.16", + "version": "v2.0.17", "source": { "type": "git", "url": "https://github.com/wp-cli/embed-command.git", - "reference": "edfa448396484770a419ac7a17b0ec194ae76654" + "reference": "ece56cafcb8ef0a05dac9e41b5ab852ecd57b02c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/embed-command/zipball/edfa448396484770a419ac7a17b0ec194ae76654", - "reference": "edfa448396484770a419ac7a17b0ec194ae76654", + "url": "https://api.github.com/repos/wp-cli/embed-command/zipball/ece56cafcb8ef0a05dac9e41b5ab852ecd57b02c", + "reference": "ece56cafcb8ef0a05dac9e41b5ab852ecd57b02c", "shasum": "" }, "require": { @@ -9374,26 +9382,26 @@ "homepage": "https://github.com/wp-cli/embed-command", "support": { "issues": "https://github.com/wp-cli/embed-command/issues", - "source": "https://github.com/wp-cli/embed-command/tree/v2.0.16" + "source": "https://github.com/wp-cli/embed-command/tree/v2.0.17" }, - "time": "2024-04-04T11:57:03+00:00" + "time": "2024-10-01T10:30:42+00:00" }, { "name": "wp-cli/entity-command", - "version": "v2.7.0", + "version": "v2.8.2", "source": { "type": "git", "url": "https://github.com/wp-cli/entity-command.git", - "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed" + "reference": "9dad0753ecba347d5fbdb6b80d01e38768bca4ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/8110a596db62eb423f7f8e49c99dbacacf01f6ed", - "reference": "8110a596db62eb423f7f8e49c99dbacacf01f6ed", + "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/9dad0753ecba347d5fbdb6b80d01e38768bca4ea", + "reference": "9dad0753ecba347d5fbdb6b80d01e38768bca4ea", "shasum": "" }, "require": { - "wp-cli/wp-cli": "^2.10" + "wp-cli/wp-cli": "^2.11" }, "require-dev": { "wp-cli/cache-command": "^1 || ^2", @@ -9499,6 +9507,7 @@ "site activate", "site archive", "site create", + "site generate", "site deactivate", "site delete", "site empty", @@ -9572,6 +9581,11 @@ "user session destroy", "user session list", "user set-role", + "user signup", + "user signup activate", + "user signup delete", + "user signup get", + "user signup list", "user spam", "user term", "user term add", @@ -9605,22 +9619,22 @@ "homepage": "https://github.com/wp-cli/entity-command", "support": { "issues": "https://github.com/wp-cli/entity-command/issues", - "source": "https://github.com/wp-cli/entity-command/tree/v2.7.0" + "source": "https://github.com/wp-cli/entity-command/tree/v2.8.2" }, - "time": "2024-04-29T07:34:56+00:00" + "time": "2024-10-01T10:44:33+00:00" }, { "name": "wp-cli/eval-command", - "version": "v2.2.4", + "version": "v2.2.5", "source": { "type": "git", "url": "https://github.com/wp-cli/eval-command.git", - "reference": "5a9c605ae52d118f582693209d2f1c5c4f214b76" + "reference": "1fd2dc9ae74f5fcde7a9b861a1073d6f19952b74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/eval-command/zipball/5a9c605ae52d118f582693209d2f1c5c4f214b76", - "reference": "5a9c605ae52d118f582693209d2f1c5c4f214b76", + "url": "https://api.github.com/repos/wp-cli/eval-command/zipball/1fd2dc9ae74f5fcde7a9b861a1073d6f19952b74", + "reference": "1fd2dc9ae74f5fcde7a9b861a1073d6f19952b74", "shasum": "" }, "require": { @@ -9663,22 +9677,22 @@ "homepage": "https://github.com/wp-cli/eval-command", "support": { "issues": "https://github.com/wp-cli/eval-command/issues", - "source": "https://github.com/wp-cli/eval-command/tree/v2.2.4" + "source": "https://github.com/wp-cli/eval-command/tree/v2.2.5" }, - "time": "2023-08-30T14:51:36+00:00" + "time": "2024-10-01T10:30:51+00:00" }, { "name": "wp-cli/export-command", - "version": "v2.1.12", + "version": "v2.1.13", "source": { "type": "git", "url": "https://github.com/wp-cli/export-command.git", - "reference": "31e3d714ac6d6f0af613c34b33dbc02b85dc2e68" + "reference": "eeafa03095b80d2648d1a67b00c688be9d418aff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/export-command/zipball/31e3d714ac6d6f0af613c34b33dbc02b85dc2e68", - "reference": "31e3d714ac6d6f0af613c34b33dbc02b85dc2e68", + "url": "https://api.github.com/repos/wp-cli/export-command/zipball/eeafa03095b80d2648d1a67b00c688be9d418aff", + "reference": "eeafa03095b80d2648d1a67b00c688be9d418aff", "shasum": "" }, "require": { @@ -9726,22 +9740,22 @@ "homepage": "https://github.com/wp-cli/export-command", "support": { "issues": "https://github.com/wp-cli/export-command/issues", - "source": "https://github.com/wp-cli/export-command/tree/v2.1.12" + "source": "https://github.com/wp-cli/export-command/tree/v2.1.13" }, - "time": "2023-09-18T21:41:00+00:00" + "time": "2024-10-01T10:31:03+00:00" }, { "name": "wp-cli/extension-command", - "version": "v2.1.22", + "version": "v2.1.23", "source": { "type": "git", "url": "https://github.com/wp-cli/extension-command.git", - "reference": "7baa058ae33e78a8e19f6a189203ed08e03a21be" + "reference": "c307a11e7ea078cfd52177eefeef9906aa69edcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/7baa058ae33e78a8e19f6a189203ed08e03a21be", - "reference": "7baa058ae33e78a8e19f6a189203ed08e03a21be", + "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/c307a11e7ea078cfd52177eefeef9906aa69edcd", + "reference": "c307a11e7ea078cfd52177eefeef9906aa69edcd", "shasum": "" }, "require": { @@ -9757,9 +9771,6 @@ }, "type": "wp-cli-package", "extra": { - "branch-alias": { - "dev-main": "2.x-dev" - }, "bundled": true, "commands": [ "plugin", @@ -9794,7 +9805,10 @@ "theme status", "theme update", "theme mod list" - ] + ], + "branch-alias": { + "dev-main": "2.x-dev" + } }, "autoload": { "files": [ @@ -9824,22 +9838,22 @@ "homepage": "https://github.com/wp-cli/extension-command", "support": { "issues": "https://github.com/wp-cli/extension-command/issues", - "source": "https://github.com/wp-cli/extension-command/tree/v2.1.22" + "source": "https://github.com/wp-cli/extension-command/tree/v2.1.23" }, - "time": "2024-06-04T12:24:31+00:00" + "time": "2024-10-01T10:44:18+00:00" }, { "name": "wp-cli/i18n-command", - "version": "2.6.1", + "version": "v2.6.3", "source": { "type": "git", "url": "https://github.com/wp-cli/i18n-command.git", - "reference": "7538d684d4f06b0e10c8a0166ce4e6d9e1687aa1" + "reference": "065bb3758fcbff922f1b7a01ab702aab0da79803" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/7538d684d4f06b0e10c8a0166ce4e6d9e1687aa1", - "reference": "7538d684d4f06b0e10c8a0166ce4e6d9e1687aa1", + "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/065bb3758fcbff922f1b7a01ab702aab0da79803", + "reference": "065bb3758fcbff922f1b7a01ab702aab0da79803", "shasum": "" }, "require": { @@ -9858,9 +9872,6 @@ }, "type": "wp-cli-package", "extra": { - "branch-alias": { - "dev-main": "2.x-dev" - }, "bundled": true, "commands": [ "i18n", @@ -9869,7 +9880,10 @@ "i18n make-mo", "i18n make-php", "i18n update-po" - ] + ], + "branch-alias": { + "dev-main": "2.x-dev" + } }, "autoload": { "files": [ @@ -9893,22 +9907,22 @@ "homepage": "https://github.com/wp-cli/i18n-command", "support": { "issues": "https://github.com/wp-cli/i18n-command/issues", - "source": "https://github.com/wp-cli/i18n-command/tree/2.6.1" + "source": "https://github.com/wp-cli/i18n-command/tree/v2.6.3" }, - "time": "2024-02-28T11:27:34+00:00" + "time": "2024-10-01T11:16:25+00:00" }, { "name": "wp-cli/import-command", - "version": "v2.0.12", + "version": "v2.0.13", "source": { "type": "git", "url": "https://github.com/wp-cli/import-command.git", - "reference": "7aafa54bf7c122dfbd777b5e5fbb5907af38e504" + "reference": "22f32451046c1d8e7963ff96d95942af14fbb4e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/import-command/zipball/7aafa54bf7c122dfbd777b5e5fbb5907af38e504", - "reference": "7aafa54bf7c122dfbd777b5e5fbb5907af38e504", + "url": "https://api.github.com/repos/wp-cli/import-command/zipball/22f32451046c1d8e7963ff96d95942af14fbb4e9", + "reference": "22f32451046c1d8e7963ff96d95942af14fbb4e9", "shasum": "" }, "require": { @@ -9953,22 +9967,22 @@ "homepage": "https://github.com/wp-cli/import-command", "support": { "issues": "https://github.com/wp-cli/import-command/issues", - "source": "https://github.com/wp-cli/import-command/tree/v2.0.12" + "source": "https://github.com/wp-cli/import-command/tree/v2.0.13" }, - "time": "2023-08-30T15:53:58+00:00" + "time": "2024-10-01T10:44:58+00:00" }, { "name": "wp-cli/language-command", - "version": "v2.0.21", + "version": "v2.0.22", "source": { "type": "git", "url": "https://github.com/wp-cli/language-command.git", - "reference": "a9b5ae5976ebb48ee5465cf2f8d9afc863bc4e1c" + "reference": "27db28eca5f7627c7fbd8da82c6c51eb05e7858e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/language-command/zipball/a9b5ae5976ebb48ee5465cf2f8d9afc863bc4e1c", - "reference": "a9b5ae5976ebb48ee5465cf2f8d9afc863bc4e1c", + "url": "https://api.github.com/repos/wp-cli/language-command/zipball/27db28eca5f7627c7fbd8da82c6c51eb05e7858e", + "reference": "27db28eca5f7627c7fbd8da82c6c51eb05e7858e", "shasum": "" }, "require": { @@ -10006,7 +10020,8 @@ "language theme install", "language theme list", "language theme uninstall", - "language theme update" + "language theme update", + "site switch-language" ] }, "autoload": { @@ -10032,22 +10047,22 @@ "homepage": "https://github.com/wp-cli/language-command", "support": { "issues": "https://github.com/wp-cli/language-command/issues", - "source": "https://github.com/wp-cli/language-command/tree/v2.0.21" + "source": "https://github.com/wp-cli/language-command/tree/v2.0.22" }, - "time": "2024-06-21T10:12:40+00:00" + "time": "2024-10-01T10:45:06+00:00" }, { "name": "wp-cli/maintenance-mode-command", - "version": "v2.1.1", + "version": "v2.1.2", "source": { "type": "git", "url": "https://github.com/wp-cli/maintenance-mode-command.git", - "reference": "a329a536eb96890654b913b5499b300fcc3f8eab" + "reference": "d560d7f42fb21e1fc182d69e0cdf06c69891791d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/maintenance-mode-command/zipball/a329a536eb96890654b913b5499b300fcc3f8eab", - "reference": "a329a536eb96890654b913b5499b300fcc3f8eab", + "url": "https://api.github.com/repos/wp-cli/maintenance-mode-command/zipball/d560d7f42fb21e1fc182d69e0cdf06c69891791d", + "reference": "d560d7f42fb21e1fc182d69e0cdf06c69891791d", "shasum": "" }, "require": { @@ -10093,22 +10108,22 @@ "homepage": "https://github.com/wp-cli/maintenance-mode-command", "support": { "issues": "https://github.com/wp-cli/maintenance-mode-command/issues", - "source": "https://github.com/wp-cli/maintenance-mode-command/tree/v2.1.1" + "source": "https://github.com/wp-cli/maintenance-mode-command/tree/v2.1.2" }, - "time": "2024-04-04T11:28:11+00:00" + "time": "2024-10-01T10:45:18+00:00" }, { "name": "wp-cli/media-command", - "version": "v2.2.0", + "version": "v2.2.1", "source": { "type": "git", "url": "https://github.com/wp-cli/media-command.git", - "reference": "8eefc101713713871c1802e387b87348f6a048d5" + "reference": "5e2d34d7d01c87d1f50b4838512b3501f5ca6f9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/media-command/zipball/8eefc101713713871c1802e387b87348f6a048d5", - "reference": "8eefc101713713871c1802e387b87348f6a048d5", + "url": "https://api.github.com/repos/wp-cli/media-command/zipball/5e2d34d7d01c87d1f50b4838512b3501f5ca6f9a", + "reference": "5e2d34d7d01c87d1f50b4838512b3501f5ca6f9a", "shasum": "" }, "require": { @@ -10155,9 +10170,9 @@ "homepage": "https://github.com/wp-cli/media-command", "support": { "issues": "https://github.com/wp-cli/media-command/issues", - "source": "https://github.com/wp-cli/media-command/tree/v2.2.0" + "source": "https://github.com/wp-cli/media-command/tree/v2.2.1" }, - "time": "2024-06-06T09:32:12+00:00" + "time": "2024-10-01T10:45:30+00:00" }, { "name": "wp-cli/mustangostang-spyc", @@ -10212,16 +10227,16 @@ }, { "name": "wp-cli/package-command", - "version": "v2.5.2", + "version": "v2.5.3", "source": { "type": "git", "url": "https://github.com/wp-cli/package-command.git", - "reference": "3370dd88ddf906992bda3a28c8c387c8f4f33073" + "reference": "9dc4084c66547049ab863e293f427f8c0d099b18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/package-command/zipball/3370dd88ddf906992bda3a28c8c387c8f4f33073", - "reference": "3370dd88ddf906992bda3a28c8c387c8f4f33073", + "url": "https://api.github.com/repos/wp-cli/package-command/zipball/9dc4084c66547049ab863e293f427f8c0d099b18", + "reference": "9dc4084c66547049ab863e293f427f8c0d099b18", "shasum": "" }, "require": { @@ -10271,9 +10286,9 @@ "homepage": "https://github.com/wp-cli/package-command", "support": { "issues": "https://github.com/wp-cli/package-command/issues", - "source": "https://github.com/wp-cli/package-command/tree/v2.5.2" + "source": "https://github.com/wp-cli/package-command/tree/v2.5.3" }, - "time": "2024-05-22T05:26:05+00:00" + "time": "2024-10-01T11:13:44+00:00" }, { "name": "wp-cli/php-cli-tools", @@ -10340,16 +10355,16 @@ }, { "name": "wp-cli/rewrite-command", - "version": "v2.0.13", + "version": "v2.0.14", "source": { "type": "git", "url": "https://github.com/wp-cli/rewrite-command.git", - "reference": "293f9de9905b9d0199d72ff0d17e837228e47a10" + "reference": "0dd0d11918eaaf2fcad5bc13646ecf266ffa83e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/rewrite-command/zipball/293f9de9905b9d0199d72ff0d17e837228e47a10", - "reference": "293f9de9905b9d0199d72ff0d17e837228e47a10", + "url": "https://api.github.com/repos/wp-cli/rewrite-command/zipball/0dd0d11918eaaf2fcad5bc13646ecf266ffa83e9", + "reference": "0dd0d11918eaaf2fcad5bc13646ecf266ffa83e9", "shasum": "" }, "require": { @@ -10395,22 +10410,22 @@ "homepage": "https://github.com/wp-cli/rewrite-command", "support": { "issues": "https://github.com/wp-cli/rewrite-command/issues", - "source": "https://github.com/wp-cli/rewrite-command/tree/v2.0.13" + "source": "https://github.com/wp-cli/rewrite-command/tree/v2.0.14" }, - "time": "2023-08-30T15:25:42+00:00" + "time": "2024-10-01T10:45:45+00:00" }, { "name": "wp-cli/role-command", - "version": "v2.0.14", + "version": "v2.0.15", "source": { "type": "git", "url": "https://github.com/wp-cli/role-command.git", - "reference": "7680178016a1811421897aeb9eeae9e81e6893ac" + "reference": "f92efbf92a0bb4b34e1de9523d9cbd393d406ba2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/role-command/zipball/7680178016a1811421897aeb9eeae9e81e6893ac", - "reference": "7680178016a1811421897aeb9eeae9e81e6893ac", + "url": "https://api.github.com/repos/wp-cli/role-command/zipball/f92efbf92a0bb4b34e1de9523d9cbd393d406ba2", + "reference": "f92efbf92a0bb4b34e1de9523d9cbd393d406ba2", "shasum": "" }, "require": { @@ -10461,22 +10476,22 @@ "homepage": "https://github.com/wp-cli/role-command", "support": { "issues": "https://github.com/wp-cli/role-command/issues", - "source": "https://github.com/wp-cli/role-command/tree/v2.0.14" + "source": "https://github.com/wp-cli/role-command/tree/v2.0.15" }, - "time": "2023-08-30T16:18:53+00:00" + "time": "2024-10-01T10:46:02+00:00" }, { "name": "wp-cli/scaffold-command", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/wp-cli/scaffold-command.git", - "reference": "7a7d145c260ead64fa93a59498d60def970d5214" + "reference": "d67d8348f653d00438535ec4389ab9259ef6fb8f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/7a7d145c260ead64fa93a59498d60def970d5214", - "reference": "7a7d145c260ead64fa93a59498d60def970d5214", + "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/d67d8348f653d00438535ec4389ab9259ef6fb8f", + "reference": "d67d8348f653d00438535ec4389ab9259ef6fb8f", "shasum": "" }, "require": { @@ -10527,9 +10542,9 @@ "homepage": "https://github.com/wp-cli/scaffold-command", "support": { "issues": "https://github.com/wp-cli/scaffold-command/issues", - "source": "https://github.com/wp-cli/scaffold-command/tree/v2.3.0" + "source": "https://github.com/wp-cli/scaffold-command/tree/v2.4.0" }, - "time": "2024-04-26T21:05:48+00:00" + "time": "2024-10-01T11:13:37+00:00" }, { "name": "wp-cli/search-replace-command", @@ -10593,16 +10608,16 @@ }, { "name": "wp-cli/server-command", - "version": "v2.0.13", + "version": "v2.0.14", "source": { "type": "git", "url": "https://github.com/wp-cli/server-command.git", - "reference": "42babfa0fdd517cd8bdd66528b3c9027d6d14a29" + "reference": "012e10d3281866235cbf626f38a27169d6c6e13b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/server-command/zipball/42babfa0fdd517cd8bdd66528b3c9027d6d14a29", - "reference": "42babfa0fdd517cd8bdd66528b3c9027d6d14a29", + "url": "https://api.github.com/repos/wp-cli/server-command/zipball/012e10d3281866235cbf626f38a27169d6c6e13b", + "reference": "012e10d3281866235cbf626f38a27169d6c6e13b", "shasum": "" }, "require": { @@ -10645,22 +10660,22 @@ "homepage": "https://github.com/wp-cli/server-command", "support": { "issues": "https://github.com/wp-cli/server-command/issues", - "source": "https://github.com/wp-cli/server-command/tree/v2.0.13" + "source": "https://github.com/wp-cli/server-command/tree/v2.0.14" }, - "time": "2023-08-30T15:27:57+00:00" + "time": "2024-10-01T10:46:38+00:00" }, { "name": "wp-cli/shell-command", - "version": "v2.0.14", + "version": "v2.0.15", "source": { "type": "git", "url": "https://github.com/wp-cli/shell-command.git", - "reference": "f470d04a597e294ef29ad73dace9d4de98df7c42" + "reference": "2c38ef12a912b23224c7f2abd5bc716a889340fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/shell-command/zipball/f470d04a597e294ef29ad73dace9d4de98df7c42", - "reference": "f470d04a597e294ef29ad73dace9d4de98df7c42", + "url": "https://api.github.com/repos/wp-cli/shell-command/zipball/2c38ef12a912b23224c7f2abd5bc716a889340fb", + "reference": "2c38ef12a912b23224c7f2abd5bc716a889340fb", "shasum": "" }, "require": { @@ -10702,22 +10717,22 @@ "homepage": "https://github.com/wp-cli/shell-command", "support": { "issues": "https://github.com/wp-cli/shell-command/issues", - "source": "https://github.com/wp-cli/shell-command/tree/v2.0.14" + "source": "https://github.com/wp-cli/shell-command/tree/v2.0.15" }, - "time": "2023-08-30T15:58:08+00:00" + "time": "2024-10-01T10:46:50+00:00" }, { "name": "wp-cli/super-admin-command", - "version": "v2.0.14", + "version": "v2.0.15", "source": { "type": "git", "url": "https://github.com/wp-cli/super-admin-command.git", - "reference": "0fc8a6146d0450a8b522485e50886e976f5249b6" + "reference": "ecd9cee09918eb34f60c05944cc188f4916cb026" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/super-admin-command/zipball/0fc8a6146d0450a8b522485e50886e976f5249b6", - "reference": "0fc8a6146d0450a8b522485e50886e976f5249b6", + "url": "https://api.github.com/repos/wp-cli/super-admin-command/zipball/ecd9cee09918eb34f60c05944cc188f4916cb026", + "reference": "ecd9cee09918eb34f60c05944cc188f4916cb026", "shasum": "" }, "require": { @@ -10763,22 +10778,22 @@ "homepage": "https://github.com/wp-cli/super-admin-command", "support": { "issues": "https://github.com/wp-cli/super-admin-command/issues", - "source": "https://github.com/wp-cli/super-admin-command/tree/v2.0.14" + "source": "https://github.com/wp-cli/super-admin-command/tree/v2.0.15" }, - "time": "2024-02-26T12:17:45+00:00" + "time": "2024-10-01T10:48:29+00:00" }, { "name": "wp-cli/widget-command", - "version": "v2.1.10", + "version": "v2.1.11", "source": { "type": "git", "url": "https://github.com/wp-cli/widget-command.git", - "reference": "7062ed3fdfa17265320737f43efe5651d783f439" + "reference": "c50cd32e4e3d16bf29821ae0208b7154ef6f9031" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/widget-command/zipball/7062ed3fdfa17265320737f43efe5651d783f439", - "reference": "7062ed3fdfa17265320737f43efe5651d783f439", + "url": "https://api.github.com/repos/wp-cli/widget-command/zipball/c50cd32e4e3d16bf29821ae0208b7154ef6f9031", + "reference": "c50cd32e4e3d16bf29821ae0208b7154ef6f9031", "shasum": "" }, "require": { @@ -10830,22 +10845,22 @@ "homepage": "https://github.com/wp-cli/widget-command", "support": { "issues": "https://github.com/wp-cli/widget-command/issues", - "source": "https://github.com/wp-cli/widget-command/tree/v2.1.10" + "source": "https://github.com/wp-cli/widget-command/tree/v2.1.11" }, - "time": "2024-04-19T13:21:01+00:00" + "time": "2024-10-01T10:48:21+00:00" }, { "name": "wp-cli/wp-cli", - "version": "v2.10.0", + "version": "v2.11.0", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli.git", - "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685" + "reference": "53f0df112901fcf95099d0f501912a209429b6a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/a339dca576df73c31af4b4d8054efc2dab9a0685", - "reference": "a339dca576df73c31af4b4d8054efc2dab9a0685", + "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/53f0df112901fcf95099d0f501912a209429b6a9", + "reference": "53f0df112901fcf95099d0f501912a209429b6a9", "shasum": "" }, "require": { @@ -10875,7 +10890,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.10.x-dev" + "dev-main": "2.11.x-dev" } }, "autoload": { @@ -10902,20 +10917,20 @@ "issues": "https://github.com/wp-cli/wp-cli/issues", "source": "https://github.com/wp-cli/wp-cli" }, - "time": "2024-02-08T16:52:43+00:00" + "time": "2024-08-08T03:04:55+00:00" }, { "name": "wp-cli/wp-cli-bundle", - "version": "v2.10.0", + "version": "v2.11.0", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-cli-bundle.git", - "reference": "b795ca19f12bf9605dc8d85235d55a721b43064c" + "reference": "f77a284ccf92023981046edf63111ab427106d05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/b795ca19f12bf9605dc8d85235d55a721b43064c", - "reference": "b795ca19f12bf9605dc8d85235d55a721b43064c", + "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/f77a284ccf92023981046edf63111ab427106d05", + "reference": "f77a284ccf92023981046edf63111ab427106d05", "shasum": "" }, "require": { @@ -10945,7 +10960,7 @@ "wp-cli/shell-command": "^2", "wp-cli/super-admin-command": "^2", "wp-cli/widget-command": "^2", - "wp-cli/wp-cli": "^2.10.0" + "wp-cli/wp-cli": "^2.11.0" }, "require-dev": { "roave/security-advisories": "dev-latest", @@ -10957,7 +10972,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.9.x-dev" + "dev-main": "2.11.x-dev" } }, "notification-url": "https://packagist.org/downloads/", @@ -10975,20 +10990,20 @@ "issues": "https://github.com/wp-cli/wp-cli-bundle/issues", "source": "https://github.com/wp-cli/wp-cli-bundle" }, - "time": "2024-02-08T17:05:33+00:00" + "time": "2024-08-08T03:29:34+00:00" }, { "name": "wp-cli/wp-config-transformer", - "version": "v1.3.6", + "version": "v1.4.1", "source": { "type": "git", "url": "https://github.com/wp-cli/wp-config-transformer.git", - "reference": "88f516f44dce1660fc4b780da513e3ca12d7d24f" + "reference": "9da378b5a4e28bba3bce4ff4ff04a54d8c9f1a01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/88f516f44dce1660fc4b780da513e3ca12d7d24f", - "reference": "88f516f44dce1660fc4b780da513e3ca12d7d24f", + "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/9da378b5a4e28bba3bce4ff4ff04a54d8c9f1a01", + "reference": "9da378b5a4e28bba3bce4ff4ff04a54d8c9f1a01", "shasum": "" }, "require": { @@ -10998,6 +11013,11 @@ "wp-cli/wp-cli-tests": "^4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, "autoload": { "files": [ "src/WPConfigTransformer.php" @@ -11017,9 +11037,9 @@ "homepage": "https://github.com/wp-cli/wp-config-transformer", "support": { "issues": "https://github.com/wp-cli/wp-config-transformer/issues", - "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.3.6" + "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.4.1" }, - "time": "2024-05-23T06:32:14+00:00" + "time": "2024-10-16T12:50:47+00:00" }, { "name": "wp-coding-standards/wpcs", diff --git a/lib/composer.lock b/lib/composer.lock index e54cdb11..3a6de17d 100644 --- a/lib/composer.lock +++ b/lib/composer.lock @@ -138,36 +138,36 @@ }, "type": "library", "extra": { - "generator": { - "lib-class-test": "class_exists('PublishPress\\Pimple\\Container')", - "action-initialize-priority": "-185", - "action-register-priority": "-200" - }, "strauss": { - "target_directory": "lib", - "namespace_prefix": "PublishPress\\", - "classmap_prefix": "PublishPress_", - "constant_prefix": "PUBLISHPRESS_", - "include_author": "true", - "classmap_output": "true", "packages": [ "pimple/pimple", "psr/container" ], - "override_autoload": [], + "include_author": "true", + "classmap_output": "true", + "classmap_prefix": "PublishPress_", + "constant_prefix": "PUBLISHPRESS_", + "namespace_prefix": "PublishPress\\", + "target_directory": "lib", "exclude_from_copy": { "packages": [], "namespaces": [], "file_patterns": [] }, + "override_autoload": [], + "delete_vendor_files": true, "exclude_from_prefix": { "packages": [], "namespaces": [], "file_patterns": [] }, - "namespace_replacement_patterns": [], "delete_vendor_packages": true, - "delete_vendor_files": true + "namespace_replacement_patterns": [] + }, + "generator": { + "lib-class-test": "class_exists('PublishPress\\Pimple\\Container')", + "action-register-priority": "-200", + "action-initialize-priority": "-185" } }, "autoload": { @@ -235,35 +235,35 @@ }, "type": "library", "extra": { - "generator": { - "lib-class-test": "interface_exists('PublishPress\\Psr\\Container\\ContainerInterface')", - "action-initialize-priority": "-190", - "action-register-priority": "-200" - }, "strauss": { - "target_directory": "lib", - "namespace_prefix": "PublishPress\\", - "classmap_prefix": "PublishPress_", - "constant_prefix": "PUBLISHPRESS_", - "include_author": "true", - "classmap_output": "true", "packages": [ "psr/container" ], - "override_autoload": [], + "include_author": "true", + "classmap_output": "true", + "classmap_prefix": "PublishPress_", + "constant_prefix": "PUBLISHPRESS_", + "namespace_prefix": "PublishPress\\", + "target_directory": "lib", "exclude_from_copy": { "packages": [], "namespaces": [], "file_patterns": [] }, + "override_autoload": [], + "delete_vendor_files": true, "exclude_from_prefix": { "packages": [], "namespaces": [], "file_patterns": [] }, - "namespace_replacement_patterns": [], "delete_vendor_packages": true, - "delete_vendor_files": true + "namespace_replacement_patterns": [] + }, + "generator": { + "lib-class-test": "interface_exists('PublishPress\\Psr\\Container\\ContainerInterface')", + "action-register-priority": "-200", + "action-initialize-priority": "-190" } }, "autoload": { @@ -445,10 +445,10 @@ "type": "library", "extra": { "generator": { - "lib-class-test": "class_exists('PublishPress\\WordpressVersionNotices\\ServicesProvider')", "src-dir": "src", - "action-initialize-priority": "-150", - "action-register-priority": "-190" + "lib-class-test": "class_exists('PublishPress\\WordpressVersionNotices\\ServicesProvider')", + "action-register-priority": "-190", + "action-initialize-priority": "-150" } }, "autoload": { From 2002417aaf3a9efb51c9a1383929fe181fbb087d Mon Sep 17 00:00:00 2001 From: Ojo Paul Date: Mon, 16 Dec 2024 11:31:56 +0100 Subject: [PATCH 29/29] Composer update --- composer.lock | 2 +- lib/composer.lock | 2 +- lib/vendor/composer/LICENSE | 2 ++ lib/vendor/composer/installed.php | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/composer.lock b/composer.lock index 3311409e..a7a5a047 100644 --- a/composer.lock +++ b/composer.lock @@ -11158,5 +11158,5 @@ "php": ">=7.2.5" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/lib/composer.lock b/lib/composer.lock index 3a6de17d..9a496c91 100644 --- a/lib/composer.lock +++ b/lib/composer.lock @@ -486,5 +486,5 @@ "php": ">=7.2.5" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/lib/vendor/composer/LICENSE b/lib/vendor/composer/LICENSE index 62ecfd8d..f27399a0 100644 --- a/lib/vendor/composer/LICENSE +++ b/lib/vendor/composer/LICENSE @@ -1,3 +1,4 @@ + Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy @@ -17,3 +18,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/lib/vendor/composer/installed.php b/lib/vendor/composer/installed.php index e024b90f..cbcdf954 100644 --- a/lib/vendor/composer/installed.php +++ b/lib/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => '__root__', 'pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', - 'reference' => null, + 'reference' => NULL, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ '__root__' => array( 'pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', - 'reference' => null, + 'reference' => NULL, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(),