From d4b2a9537df2324e9094c289f57e8c204437bf75 Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 31 Jul 2024 01:28:05 +0530 Subject: [PATCH 01/12] Merge remote-tracking branch 'origin/test/O3-3601' into test/O3-3601 --- e2e/specs/onboarding-test.spec.ts | 70 + e2e/specs/sample-test.spec.ts | 11 - e2e/support/github/run-e2e-docker-env.sh | 39 +- package.json | 2 +- playwright.config.ts | 11 +- src/config-schema.ts | 14 +- yarn.lock | 2948 +++++++++++----------- 7 files changed, 1614 insertions(+), 1481 deletions(-) create mode 100644 e2e/specs/onboarding-test.spec.ts delete mode 100644 e2e/specs/sample-test.spec.ts diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts new file mode 100644 index 0000000..0e7f0c0 --- /dev/null +++ b/e2e/specs/onboarding-test.spec.ts @@ -0,0 +1,70 @@ +import { test } from '@playwright/test'; +import { HomePage } from '../pages'; +import { expect } from '@playwright/test'; + +test('Basic Walkthrough', async ({ page }) => { + const homePage = new HomePage(page); + + await test.step('When I visit the home page', async () => { + await homePage.goto(); + }); + + await test.step('And I click on the help menu button', async () => { + await page.locator('[id="single-spa-application\\:\\@openmrs\\/esm-help-menu-app-page-0"]').getByRole('button').click(); + }); + + await test.step('And I click on the tutorials button', async () => { + await page.getByText(/tutorials/i).click(); + }); + + await test.step('Then I should see the tutorial modal', async () => { + await expect(page.getByRole('heading', { name: 'Tutorials' })).toBeVisible(); + await expect( + page.getByText(/find walkthroughs and video tutorials on some of the core features of openMRS./i), + ).toBeVisible(); + }); + + await test.step('And I click on the Basic Tutorial walkthrough', async () => { + await page.getByText('Walkthrough').nth(1).click(); + }); + + await test.step('Then I should see the first Joyride tooltip', async () => { + await expect( + page.locator('#react-joyride-step-0 div').filter({ hasText: 'Welcome to OpenMRS!' }).first(), + ).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); + + await test.step('And I should see the search icon Joyride tooltip', async () => { + await expect( + page.locator('#react-joyride-step-1 div').filter({ hasText: 'This is the search icon' }).first(), + ).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); + + await test.step('Then I should see the add patient icon Joyride tooltip', async () => { + await expect( + page.locator('#react-joyride-step-2 div').filter({ hasText: 'This is the add patient icon' }).first(), + ).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); + + await test.step('And I should see the user icon Joyride tooltip', async () => { + await expect(page.locator('#react-joyride-step-3 div').filter({ hasText: 'The user icon' }).first()).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); + + await test.step('Then I should see the active visits Joyride tooltip', async () => { + await expect( + page.locator('#react-joyride-step-4 div').filter({ hasText: 'This table displays active visits' }).first(), + ).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); + + await test.step('And I should see the appointments table Joyride tooltip', async () => { + await expect( + page.locator('#react-joyride-step-5 div').filter({ hasText: 'This table shows appointments' }).first(), + ).toBeVisible(); + await page.locator('[data-test-id="button-primary"]').click(); + }); +}); diff --git a/e2e/specs/sample-test.spec.ts b/e2e/specs/sample-test.spec.ts deleted file mode 100644 index 725f9df..0000000 --- a/e2e/specs/sample-test.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import test from '@playwright/test'; -import { HomePage } from '../pages'; -import { expect } from '@playwright/test'; - -// This test is a sample E2E test. You can delete it. - -test('Sample test', async ({ page }) => { - const homePage = new HomePage(page); - await homePage.goto(); - await expect(homePage.page.getByRole('link', { name: 'Home' })).toBeVisible(); -}); diff --git a/e2e/support/github/run-e2e-docker-env.sh b/e2e/support/github/run-e2e-docker-env.sh index 8ea68c5..8c238e4 100644 --- a/e2e/support/github/run-e2e-docker-env.sh +++ b/e2e/support/github/run-e2e-docker-env.sh @@ -1,41 +1,28 @@ #!/usr/bin/env bash -eu - # get the dir containing the script script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) # create a temporary working directory working_dir=$(mktemp -d "${TMPDIR:-/tmp/}openmrs-e2e-frontends.XXXXXXXXXX") -# get a list of all the apps in this workspace -apps=$(yarn workspaces list --json | jq -r 'if ((.location == ".") or (.location | test("form-engine-app")) or (.location | test("-app") | not)) then halt else .name end') -# this array will hold all of the packed app names -app_names=() +# get the app name +app_name=$(jq -r '.name' "$script_dir/../../../package.json") -echo "Creating packed archives of apps..." -# for each app -for app in $apps -do - # @openmrs/esm-whatever -> _openmrs_esm_whatever - app_name=$(echo "$app" | tr '[:punct:]' '_'); - # add to our array - app_names+=("$app_name.tgz"); - # run yarn pack for our app and add it to the working directory - yarn workspace "$app" pack -o "$working_dir/$app_name.tgz" >/dev/null; -done; -echo "Created packed app archives" +echo "Creating packed archive of the app..." +# @openmrs/esm-whatever -> _openmrs_esm_whatever +packed_app_name=$(echo "$app_name" | tr '[:punct:]' '_'); +# run yarn pack for our app and add it to the working directory +yarn pack -o "$working_dir/$packed_app_name.tgz" >/dev/null; +echo "Created packed app archives" echo "Creating dynamic spa-assemble-config.json..." # dynamically assemble our list of frontend modules, prepending the login app and # primary navigation apps; apps will all be in the /app directory of the Docker # container jq -n \ - --arg apps "$apps" \ - --arg app_names "$(echo ${app_names[@]})" \ - '{"@openmrs/esm-primary-navigation-app": "next", "@openmrs/esm-home-app": "next"} + ( - ($apps | split("\n")) as $apps | ($app_names | split(" ") | map("/app/" + .)) as $app_files - | [$apps, $app_files] - | transpose - | map({"key": .[0], "value": .[1]}) - | from_entries - )' | jq '{"frontendModules": .}' > "$working_dir/spa-assemble-config.json" + --arg app_name "$app_name" \ + --arg app_file "/app/$packed_app_name.tgz" \ + '{"@openmrs/esm-primary-navigation-app": "next", "@openmrs/esm-home-app": "next", "@openmrs/esm-help-menu-app": "next"} + { + ($app_name): $app_file + }' | jq '{"frontendModules": .}' > "$working_dir/spa-assemble-config.json" echo "Created dynamic spa-assemble-config.json" echo "Copying Docker configuration..." diff --git a/package.json b/package.json index bdd307d..a20c77e 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "devDependencies": { "@openmrs/esm-framework": "next", "@openmrs/esm-styleguide": "next", - "@playwright/test": "^1.42.1", + "@playwright/test": "1.44.0", "@swc/cli": "^0.3.12", "@swc/core": "^1.3.68", "@swc/jest": "^0.2.36", diff --git a/playwright.config.ts b/playwright.config.ts index d61b8cd..7b4e33c 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -12,12 +12,19 @@ const config: PlaywrightTestConfig = { fullyParallel: true, forbidOnly: !!process.env.CI, retries: 0, - reporter: process.env.CI ? [['junit', { outputFile: 'results.xml' }], ['html']] : [['html']], + outputDir: "../test-results/results", + reporter: process.env.CI + ? [ + ["junit", { outputFile: "results.xml" }], + ["html"], + ] + : [["html", { outputFolder: "./../test-results/report" }]], globalSetup: require.resolve('./e2e/core/global-setup'), use: { baseURL: `${process.env.E2E_BASE_URL}/spa/`, storageState: 'e2e/storageState.json', - video: 'retain-on-failure', + video: 'off', + trace: 'off', }, projects: [ { diff --git a/src/config-schema.ts b/src/config-schema.ts index 98d9d9e..b3359b3 100644 --- a/src/config-schema.ts +++ b/src/config-schema.ts @@ -12,14 +12,12 @@ export const configSchema = { _default: [ { title: 'Basic Tutorial', - description: - 'Learn how to efficiently search for patients, register new patients, access user settings, and view ongoing visits and appointments.', - steps: [ - { - target: '[aria-label="OpenMRS"]', - content: - 'Welcome to OpenMRS! This is the main dashboard where you can navigate to various features of the system.', - }, + description: 'Learn how to efficiently search for patients, register new patients, access user settings, and view ongoing visits and appointments.', + steps: [{ + target: '[aria-label="OpenMRS"]', + content: 'Welcome to OpenMRS! This is the main dashboard where you can navigate to various features of the system.', + disableBeacon: true + }, { target: '[name="SearchPatientIcon"]', content: 'This is the search icon. Use it to find patients in the system quickly.', diff --git a/yarn.lock b/yarn.lock index df9e3a6..31c20bf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -46,44 +46,44 @@ __metadata: linkType: hard "@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.8": - version: 7.24.8 - resolution: "@babel/compat-data@npm:7.24.8" - checksum: 10/6989b8a61782d9c6c7a1fc58b4efd4fb68e5f5a5b6be3463a3de3752f39a30d21438b8b4485c18cb6b8d7f29e07f79d79639caa08737fae57838e81d7da055c0 + version: 7.24.9 + resolution: "@babel/compat-data@npm:7.24.9" + checksum: 10/fcdbf3dd978305880f06ae20a23f4f68a8eddbe64fc5d2fbc98dfe4cdf15c174cff41e3a8eb9d935f9f3a68d3a23fa432044082ee9768a2ed4b15f769b8f6853 languageName: node linkType: hard "@babel/core@npm:^7.11.1, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9": - version: 7.24.8 - resolution: "@babel/core@npm:7.24.8" + version: 7.24.9 + resolution: "@babel/core@npm:7.24.9" dependencies: "@ampproject/remapping": "npm:^2.2.0" "@babel/code-frame": "npm:^7.24.7" - "@babel/generator": "npm:^7.24.8" + "@babel/generator": "npm:^7.24.9" "@babel/helper-compilation-targets": "npm:^7.24.8" - "@babel/helper-module-transforms": "npm:^7.24.8" + "@babel/helper-module-transforms": "npm:^7.24.9" "@babel/helpers": "npm:^7.24.8" "@babel/parser": "npm:^7.24.8" "@babel/template": "npm:^7.24.7" "@babel/traverse": "npm:^7.24.8" - "@babel/types": "npm:^7.24.8" + "@babel/types": "npm:^7.24.9" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10/79818e6e8ecd5f50ffbfb8dfb1748928e6e17b198bd8da0d6f725bf67aece5141020cd3aba56dc425a33e118c0e80e5569ad6fa615897e49726087dd875279d7 + checksum: 10/f00a372fa547f6e21f4db1b6e521e6eb01f77f5931726897aae6f4cf29a687f615b9b77147b539e851a68bf94e4850bcfba7eb11091dd8e2bc625f6d831ce257 languageName: node linkType: hard -"@babel/generator@npm:^7.24.8, @babel/generator@npm:^7.7.2": - version: 7.24.8 - resolution: "@babel/generator@npm:7.24.8" +"@babel/generator@npm:^7.24.8, @babel/generator@npm:^7.24.9, @babel/generator@npm:^7.7.2": + version: 7.24.10 + resolution: "@babel/generator@npm:7.24.10" dependencies: - "@babel/types": "npm:^7.24.8" + "@babel/types": "npm:^7.24.9" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^2.5.1" - checksum: 10/dc1bd931120f93e7a5b35fdf66c13ca56b966b07ee9ba124f7e24b1905cbcf7d7891cc7c281961876eff9fcff67c46652cce89847665e263bc04d283d4343164 + checksum: 10/c2491fb7d985527a165546cbcf9e5f6a2518f2a968c7564409c012acce1019056b21e67a152af89b3f4d4a295ca2e75a1a16858152f750efbc4b5087f0cb7253 languageName: node linkType: hard @@ -214,9 +214,9 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.24.7, @babel/helper-module-transforms@npm:^7.24.8": - version: 7.24.8 - resolution: "@babel/helper-module-transforms@npm:7.24.8" +"@babel/helper-module-transforms@npm:^7.24.7, @babel/helper-module-transforms@npm:^7.24.8, @babel/helper-module-transforms@npm:^7.24.9": + version: 7.24.9 + resolution: "@babel/helper-module-transforms@npm:7.24.9" dependencies: "@babel/helper-environment-visitor": "npm:^7.24.7" "@babel/helper-module-imports": "npm:^7.24.7" @@ -225,7 +225,7 @@ __metadata: "@babel/helper-validator-identifier": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10/912ad994da126c3150d8f8702030380849608094a7a352523ffa8e697080da9358d63af2582d38902c929839f394bbc6f1ae4921ba132ba3f65f27f0696aa2c7 + checksum: 10/eaed9cb93edb11626758f76bfb482f9c3b6583f6756813c5ef849d6d52bbe7c2cb39f61646758e860732d14c2588b60eb4e2af78d7751450649a8d3d7ca41697 languageName: node linkType: hard @@ -1381,14 +1381,14 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.24.8 - resolution: "@babel/types@npm:7.24.8" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.24.9, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": + version: 7.24.9 + resolution: "@babel/types@npm:7.24.9" dependencies: "@babel/helper-string-parser": "npm:^7.24.8" "@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" - checksum: 10/29b080b2753c22ee5e2455ff767a971443245d945dea4d1b3130e036dcdf0949a89539a581753c68d03d2f2f2325244ee0f91fb83dabee1cbac5db5246838137 + checksum: 10/21873a08a124646824aa230de06af52149ab88206dca59849dcb3003990a6306ec2cdaa4147ec1127c0cfc5f133853cfc18f80d7f6337b6662a3c378ed565f15 languageName: node linkType: hard @@ -1400,8 +1400,8 @@ __metadata: linkType: hard "@carbon/charts@npm:^1.12.0": - version: 1.18.0 - resolution: "@carbon/charts@npm:1.18.0" + version: 1.19.2 + resolution: "@carbon/charts@npm:1.19.2" dependencies: "@carbon/colors": "npm:^11.23.1" "@carbon/utils-position": "npm:^1.3.0" @@ -1416,7 +1416,7 @@ __metadata: lodash-es: "npm:^4.17.21" topojson-client: "npm:^3.1.0" tslib: "npm:^2.6.3" - checksum: 10/874bce4db52866bfb78906c7596205d086a2393fda8bffd22be2b6a8eadc4f7874356d2f85f1afabedf5a1629236ae036abcce1297a611de620d916edf810c12 + checksum: 10/4cf09b980d2d50551fc1d1025169db11a96a7da5e68d9b0655355afe02a3e754faf8bffd5a95ab01733a48fcb362098fa3305311c61e82b6adda3361a2ac1cd2 languageName: node linkType: hard @@ -1496,8 +1496,8 @@ __metadata: linkType: hard "@carbon/react@npm:^1.33.1": - version: 1.61.0 - resolution: "@carbon/react@npm:1.61.0" + version: 1.62.1 + resolution: "@carbon/react@npm:1.62.1" dependencies: "@babel/runtime": "npm:^7.18.3" "@carbon/feature-flags": "npm:^0.20.0" @@ -1525,7 +1525,7 @@ __metadata: react: ^16.8.6 || ^17.0.1 || ^18.2.0 react-dom: ^16.8.6 || ^17.0.1 || ^18.2.0 sass: ^1.33.0 - checksum: 10/7ff8f62788a2c681ce6b6bbe003550569e703c1703437ab9ed779d8e34acf8010a1389d26892e3428aff3176689cbd3dd960401a4093e508ed63224490dca994 + checksum: 10/693c7a03988dda43f102ef2e86ede31b53638966b6e0d585ba8ff350e98863a415d8bf3c707bdd322d2be361bf7a4c2077bf1fa2e3c435fe4ec306f19df18619 languageName: node linkType: hard @@ -1837,21 +1837,21 @@ __metadata: linkType: hard "@floating-ui/core@npm:^1.6.0": - version: 1.6.4 - resolution: "@floating-ui/core@npm:1.6.4" + version: 1.6.5 + resolution: "@floating-ui/core@npm:1.6.5" dependencies: - "@floating-ui/utils": "npm:^0.2.4" - checksum: 10/589430cbff4bac90b9b891e2c94c57dc113d39ac163552f547d9e4c7d21f09997b9d33e82ec717759caee678c47f845f14a3f28df6f029fcfcf3ad803ba4eb7c + "@floating-ui/utils": "npm:^0.2.5" + checksum: 10/946eccfc16d0eea2bb62bd8cee12211a1d2614968d541966ecd9b6d40f66f097391020ce109c8503676c14ec67f304414e5fecff324ac8950121574010c009e9 languageName: node linkType: hard "@floating-ui/dom@npm:^1.0.0": - version: 1.6.7 - resolution: "@floating-ui/dom@npm:1.6.7" + version: 1.6.8 + resolution: "@floating-ui/dom@npm:1.6.8" dependencies: "@floating-ui/core": "npm:^1.6.0" - "@floating-ui/utils": "npm:^0.2.4" - checksum: 10/a6a42bfd243c311f6040043808a6549c1db45fa36138b81cb1e615170d61fd2daf4f37accc1df3e0189405d97e3d71b12de39879c9d58ccf181c982b69cf6cf9 + "@floating-ui/utils": "npm:^0.2.5" + checksum: 10/ebfc92b7a08addc1952d497174a197db80278d3701da7d7dedd3e1533daa80b12b7de02c19408de3f951195a3247f2f5c3cc10807071147e3193bbef469e90a5 languageName: node linkType: hard @@ -1868,23 +1868,23 @@ __metadata: linkType: hard "@floating-ui/react@npm:^0.26.0": - version: 0.26.19 - resolution: "@floating-ui/react@npm:0.26.19" + version: 0.26.20 + resolution: "@floating-ui/react@npm:0.26.20" dependencies: "@floating-ui/react-dom": "npm:^2.1.1" - "@floating-ui/utils": "npm:^0.2.4" + "@floating-ui/utils": "npm:^0.2.5" tabbable: "npm:^6.0.0" peerDependencies: react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10/709d0bb29fa51e29478ab385064b8601075be22d01b339bf624b603200fce068ca6526e7ee8ddfffb671c46be7d3a37ec742a3a9b35b1a38a42eeeb54cb075fc + checksum: 10/daa2122076e38076d9de81b095a9a715153bf4e3bb69d7107748bcfa1def774e2bc2f77b7b2e8057827f07a830011826a7b8abafb5ae86fd4548e968ea224de9 languageName: node linkType: hard -"@floating-ui/utils@npm:^0.2.4": - version: 0.2.4 - resolution: "@floating-ui/utils@npm:0.2.4" - checksum: 10/7662d7a4ae39c0287e026f666297a3d28c80e588251c8c59ff66938a0aead47d380bbb9018629bd63a98f399c3919ec689d5448a5c48ffc176d545ddef705df1 +"@floating-ui/utils@npm:^0.2.5": + version: 0.2.5 + resolution: "@floating-ui/utils@npm:0.2.5" + checksum: 10/08df715c2a3bfa9d757347df0b38c89a3bfa92b0a32ff67d3d713960c2e72c202e22a2b220aacadbde5451ac2bd4c10411a73a8ed3707ded792f0182592eb01f languageName: node linkType: hard @@ -2008,12 +2008,12 @@ __metadata: languageName: node linkType: hard -"@internationalized/date@npm:^3.5.4": - version: 3.5.4 - resolution: "@internationalized/date@npm:3.5.4" +"@internationalized/date@npm:^3.5.4, @internationalized/date@npm:^3.5.5": + version: 3.5.5 + resolution: "@internationalized/date@npm:3.5.5" dependencies: "@swc/helpers": "npm:^0.5.0" - checksum: 10/0e38a3be70fbbbce291ec5a977fadb5f3a7dc2ca9a921494bd892e9ff6c8bba9cd44cd8767e5f50cf2d7e422ab2d5323da2eb7595142d8b487c83500ab135abe + checksum: 10/5f045faf7af0d217874e537507ad9a68753eabc5fa8905524801acaafd6c5e2b4df050c467b423b738ab40a327e1889e620bab41b47c4032aa17f7ca731dc06b languageName: node linkType: hard @@ -2943,9 +2943,9 @@ __metadata: languageName: node linkType: hard -"@openmrs/esm-api@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-api@npm:5.6.1-pre.2064" +"@openmrs/esm-api@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-api@npm:5.7.3-pre.2113" dependencies: "@types/fhir": "npm:0.0.31" lodash-es: "npm:^4.17.21" @@ -2954,17 +2954,17 @@ __metadata: "@openmrs/esm-error-handling": 5.x "@openmrs/esm-navigation": 5.x "@openmrs/esm-offline": 5.x - checksum: 10/bb65ad7dd490be3df3c0cc095c5de8aa775098e76a1230e0c60de9fdf58e22931e8d545a9536172e368cdf3158c9ead51f48f3a282dd5f62685f66e56391f917 + checksum: 10/95dd6b512684b0cab11cdd721f1c2d0c934eb1c6dbaeae13a63d766405e941fa2206cd0ed9b4c8e45832068b421efaa7f495b8e0c6656e824d4cade6b10fc0dc languageName: node linkType: hard -"@openmrs/esm-app-shell@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-app-shell@npm:5.6.1-pre.2064" +"@openmrs/esm-app-shell@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-app-shell@npm:5.7.3-pre.2113" dependencies: "@carbon/react": "npm:~1.37.0" - "@openmrs/esm-framework": "npm:5.6.1-pre.2064" - "@openmrs/esm-styleguide": "npm:5.6.1-pre.2064" + "@openmrs/esm-framework": "npm:5.7.3-pre.2113" + "@openmrs/esm-styleguide": "npm:5.7.3-pre.2113" dayjs: "npm:^1.10.4" dexie: "npm:^3.0.3" html-webpack-plugin: "npm:^5.5.0" @@ -2972,6 +2972,7 @@ __metadata: i18next-browser-languagedetector: "npm:^6.1.8" import-map-overrides: "npm:^3.0.0" lodash-es: "npm:4.17.21" + mini-css-extract-plugin: "npm:^2.9.0" react: "npm:^18.1.0" react-dom: "npm:^18.1.0" react-i18next: "npm:^11.18.6" @@ -2981,7 +2982,6 @@ __metadata: single-spa: "npm:^6.0.1" swc-loader: "npm:^0.2.3" swr: "npm:^2.2.2" - systemjs: "npm:^6.8.3" webpack: "npm:^5.88.0" webpack-pwa-manifest: "npm:^4.3.0" workbox-core: "npm:^6.1.5" @@ -2989,57 +2989,57 @@ __metadata: workbox-strategies: "npm:^6.1.5" workbox-webpack-plugin: "npm:^6.1.5" workbox-window: "npm:^6.1.5" - checksum: 10/ae11ff41ae33e75636673ca1a21488d9d63fdc3876f14cd866676f8c241470e101f03fd4a2716dec97a4128b773ee50ef2c2cc494a60c1b1821ad61b18576dfb + checksum: 10/d6ba74c88719f01143b67b38a01ceeaab6930f2177e8244444b8cdcec833cb5155e5dcf41eff549d0444beaf6a07f82df0eb683fc560f32174e5b57e72eb0af7 languageName: node linkType: hard -"@openmrs/esm-config@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-config@npm:5.6.1-pre.2064" +"@openmrs/esm-config@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-config@npm:5.7.3-pre.2113" dependencies: ramda: "npm:^0.26.1" peerDependencies: "@openmrs/esm-globals": 5.x "@openmrs/esm-state": 5.x single-spa: 5.x - checksum: 10/71b291bad7ad3fd1c983402f0e2d4b43ef20298356f25096d08ebdf7ad34f67f86ef40954fe2187904a3c9957bc376001b99e183d46b01f4850f843d5bb48fd4 + checksum: 10/c39e391a12a4dd8a74f4c5048bdf4a87ec98b371b0952b51e2153ba9f7da10dc47618c69e2863a2f8e6db98a998d0f91e6fe59554f2ad10374d185eda39145db languageName: node linkType: hard -"@openmrs/esm-context@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-context@npm:5.6.1-pre.2064" +"@openmrs/esm-context@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-context@npm:5.7.3-pre.2113" dependencies: immer: "npm:^10.0.4" peerDependencies: "@openmrs/esm-globals": 5.x "@openmrs/esm-state": 5.x - checksum: 10/5dae826c68187a258aace7ba422a8e61af8305e0709b7e9c220233ca6fc54e945f3b98e8b1783f09dff164524e8a4fe78f7e644db6dec4b1308666df168f9feb + checksum: 10/a2952b0cfc20006fab465bc4133b18fe90a263b586d2f213dd6dbfe074b7a7683eeaa3eec1e943acf7f68aff83a47ca1bac846a16e6a6b4e0a97884d49ab5cfe languageName: node linkType: hard -"@openmrs/esm-dynamic-loading@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-dynamic-loading@npm:5.6.1-pre.2064" +"@openmrs/esm-dynamic-loading@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-dynamic-loading@npm:5.7.3-pre.2113" peerDependencies: "@openmrs/esm-globals": 5.x "@openmrs/esm-translations": 5.x - checksum: 10/554148074b17f8b3292d3b4848d9f7ff155b7a01bac27f9f5857980de005fc79d6b11188d5cd3b0b1b24b5f19bdc8b928b19dce5291550e37c8b6da55a956a9d + checksum: 10/50b126ab82c260feefe3dcd1e9fbf95676837fc38a818073f469698e9b64a21172fb837f2ac457e0fee3e00feda9b2e7149284eec2fa42570028dc56a6d5258a languageName: node linkType: hard -"@openmrs/esm-error-handling@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-error-handling@npm:5.6.1-pre.2064" +"@openmrs/esm-error-handling@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-error-handling@npm:5.7.3-pre.2113" peerDependencies: "@openmrs/esm-globals": 5.x - checksum: 10/ff97efff6dac224a887564966b5e1f782041ddd382abdba2a7e5064c0d11b07b08e821d6aa8559db9e34750cd71710022440e14cb6c263e682c3e12f94727558 + checksum: 10/f4091961c42ec2ed49ec44cdcc148ca35e23e2325f8166cbc83ec85dab1090fd5b65613cbf95c5fde1ec7ea26ff4213167c179262e91bcd82f02feccafe7fb93 languageName: node linkType: hard -"@openmrs/esm-extensions@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-extensions@npm:5.6.1-pre.2064" +"@openmrs/esm-extensions@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-extensions@npm:5.7.3-pre.2113" dependencies: lodash-es: "npm:^4.17.21" peerDependencies: @@ -3049,43 +3049,43 @@ __metadata: "@openmrs/esm-state": 5.x "@openmrs/esm-utils": 5.x single-spa: 5.x - checksum: 10/52ecd721fe7a3b1a816167039914a6225fc0690e697c1f1e41c274a64dfad8fae2e5e2b894e1dae40b18674cd555a76c161edb71a1e5d97b82fb5adf70ca170e + checksum: 10/ad08d6785a8c86b6bdbc9814eae3c61870e191824b9c15fe0a71ee79a2575a4bee141490c6aa0c8cf017d8f3b6e9db5c9f3d8d6567e3d4e4005afd16c7ccd9a2 languageName: node linkType: hard -"@openmrs/esm-feature-flags@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-feature-flags@npm:5.6.1-pre.2064" +"@openmrs/esm-feature-flags@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-feature-flags@npm:5.7.3-pre.2113" dependencies: ramda: "npm:^0.26.1" peerDependencies: "@openmrs/esm-globals": 5.x "@openmrs/esm-state": 5.x single-spa: 5.x - checksum: 10/efc06036f8154d2a1a4aab8a2460bb7fc6344269ee3ab6a6cb4387e152bb2ac2943f2d85cd9aa7eb6e6344497c66a910addbb1759b2e8d225649751c060e164b - languageName: node - linkType: hard - -"@openmrs/esm-framework@npm:5.6.1-pre.2064, @openmrs/esm-framework@npm:next": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-framework@npm:5.6.1-pre.2064" - dependencies: - "@openmrs/esm-api": "npm:5.6.1-pre.2064" - "@openmrs/esm-config": "npm:5.6.1-pre.2064" - "@openmrs/esm-context": "npm:5.6.1-pre.2064" - "@openmrs/esm-dynamic-loading": "npm:5.6.1-pre.2064" - "@openmrs/esm-error-handling": "npm:5.6.1-pre.2064" - "@openmrs/esm-extensions": "npm:5.6.1-pre.2064" - "@openmrs/esm-feature-flags": "npm:5.6.1-pre.2064" - "@openmrs/esm-globals": "npm:5.6.1-pre.2064" - "@openmrs/esm-navigation": "npm:5.6.1-pre.2064" - "@openmrs/esm-offline": "npm:5.6.1-pre.2064" - "@openmrs/esm-react-utils": "npm:5.6.1-pre.2064" - "@openmrs/esm-routes": "npm:5.6.1-pre.2064" - "@openmrs/esm-state": "npm:5.6.1-pre.2064" - "@openmrs/esm-styleguide": "npm:5.6.1-pre.2064" - "@openmrs/esm-translations": "npm:5.6.1-pre.2064" - "@openmrs/esm-utils": "npm:5.6.1-pre.2064" + checksum: 10/c198dcb49ddf1be4fae054753212a4c5ee5b88da1ab1fcd9658dec371d8e5a36f1381a12855b65d93f51d6194855040217db3488dd28a7744ca025383ff1f8f9 + languageName: node + linkType: hard + +"@openmrs/esm-framework@npm:5.7.3-pre.2113, @openmrs/esm-framework@npm:next": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-framework@npm:5.7.3-pre.2113" + dependencies: + "@openmrs/esm-api": "npm:5.7.3-pre.2113" + "@openmrs/esm-config": "npm:5.7.3-pre.2113" + "@openmrs/esm-context": "npm:5.7.3-pre.2113" + "@openmrs/esm-dynamic-loading": "npm:5.7.3-pre.2113" + "@openmrs/esm-error-handling": "npm:5.7.3-pre.2113" + "@openmrs/esm-extensions": "npm:5.7.3-pre.2113" + "@openmrs/esm-feature-flags": "npm:5.7.3-pre.2113" + "@openmrs/esm-globals": "npm:5.7.3-pre.2113" + "@openmrs/esm-navigation": "npm:5.7.3-pre.2113" + "@openmrs/esm-offline": "npm:5.7.3-pre.2113" + "@openmrs/esm-react-utils": "npm:5.7.3-pre.2113" + "@openmrs/esm-routes": "npm:5.7.3-pre.2113" + "@openmrs/esm-state": "npm:5.7.3-pre.2113" + "@openmrs/esm-styleguide": "npm:5.7.3-pre.2113" + "@openmrs/esm-translations": "npm:5.7.3-pre.2113" + "@openmrs/esm-utils": "npm:5.7.3-pre.2113" dayjs: "npm:^1.10.7" peerDependencies: dayjs: 1.x @@ -3096,35 +3096,35 @@ __metadata: rxjs: 6.x single-spa: 5.x swr: 2.x - checksum: 10/2bafdcccfdd87d862ce521dc29bdc7a32b1c29abc13d92784ded8aba51a86688209bffe179203b44208b2d6b495549e7cd2e7fed38ef64bcd19ef03ed15591df + checksum: 10/475a1df0acf89564ca4edc15e4580720edbb7d5e132d982220c975796860b5c9132d9287f35c23330457ab3973c535a8e5e51d4f80ad525479f6ff9a2476be27 languageName: node linkType: hard -"@openmrs/esm-globals@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-globals@npm:5.6.1-pre.2064" +"@openmrs/esm-globals@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-globals@npm:5.7.3-pre.2113" dependencies: "@types/fhir": "npm:0.0.31" peerDependencies: single-spa: 5.x - checksum: 10/30ed938d001c263f18920eccc266f65cceb53872c9041edb1a8586a0c49bf2c59a8c3546888e94e37be4030a85d44669048fb82ceb0a584ab7664380d474a8de + checksum: 10/70973a0ccdc94f6f4425330d2f628885cd137b72a13813e2d0ee936df3f67899ebaa8a713497c73852f78e0da7c09b75777ae2c28f6087e128ba8b425a27763a languageName: node linkType: hard -"@openmrs/esm-navigation@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-navigation@npm:5.6.1-pre.2064" +"@openmrs/esm-navigation@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-navigation@npm:5.7.3-pre.2113" dependencies: path-to-regexp: "npm:6.1.0" peerDependencies: "@openmrs/esm-state": 5.x - checksum: 10/48c83badb2f63778f37dcb60955f3a6361b64e75f1a1065f3cf19f246cafe95d6c63b4c8f37bf4ce6b4a9136fe880ca43826ae3c2602465f0dfa9068c5749396 + checksum: 10/b39bac494fb993d7000e9e03ed9fa19e6e28431339cea6c57354d8217e1e3834756c2c91737e6faf045895c3e542ab5b673efe526921aa51eaf77b8a9e78913f languageName: node linkType: hard -"@openmrs/esm-offline@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-offline@npm:5.6.1-pre.2064" +"@openmrs/esm-offline@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-offline@npm:5.7.3-pre.2113" dependencies: dexie: "npm:^3.0.3" lodash-es: "npm:^4.17.21" @@ -3135,13 +3135,13 @@ __metadata: "@openmrs/esm-globals": 5.x "@openmrs/esm-state": 5.x rxjs: 6.x - checksum: 10/41f928c8eb4c1a0ed325e20bcf860437e5d0ac69c60b1526167efeb4b036f7b07e75f2028dcc034389d83fb9f755f10f1a2fd27b8e4e61baf6072498532c9da8 + checksum: 10/028841f445fac990a6d8a047b67b0611f89e309b9d4836a9df6d71373712ec2b92da6241269cd24e52de32726c5979b0df081adad42ceec6ae9d68e944acb87f languageName: node linkType: hard -"@openmrs/esm-react-utils@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-react-utils@npm:5.6.1-pre.2064" +"@openmrs/esm-react-utils@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-react-utils@npm:5.7.3-pre.2113" dependencies: lodash-es: "npm:^4.17.21" single-spa-react: "npm:^6.0.0" @@ -3162,34 +3162,39 @@ __metadata: react-i18next: 11.x rxjs: 6.x swr: 2.x - checksum: 10/0dc2ffe8f197248c506dce5d06965dee8e5a14609ab32312f95ced474fcb9781cdf63e4a7f97aa38526bdf702acfe6a9c1e45ffe03280f4adff49ec2486bc37f + checksum: 10/5598cdf53227f0044f4463d9c7f759286085918a1ff37ba5e741095793eb89dc96e2ba73ce6a81676c31e327fc0c33e4e1e07ec8cbdf03dd8d16fbdc43c64df4 languageName: node linkType: hard -"@openmrs/esm-routes@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-routes@npm:5.6.1-pre.2064" +"@openmrs/esm-routes@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-routes@npm:5.7.3-pre.2113" peerDependencies: + "@openmrs/esm-config": 5.x + "@openmrs/esm-dynamic-loading": 5.x + "@openmrs/esm-extensions": 5.x + "@openmrs/esm-feature-flags": 5.x "@openmrs/esm-globals": 5.x "@openmrs/esm-utils": 5.x - checksum: 10/6f66c8c507100498f1e33505b4f29240da6d3948e0f38f4cda5ce46e735c31eca4fa55fc4fcd0dc4f15d084adecce01b5fdf1e28645ad1b739f833c3de355008 + single-spa: 6.x + checksum: 10/42241a7b63608da2011ac0cb0dffc578e03c2b0238b5e3b8d31505e91e646fe6091291f763e342b3fc41f5e4265c7a71b0ee6d1c519fb628be7134bfbe2ac0b8 languageName: node linkType: hard -"@openmrs/esm-state@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-state@npm:5.6.1-pre.2064" +"@openmrs/esm-state@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-state@npm:5.7.3-pre.2113" dependencies: zustand: "npm:^4.3.6" peerDependencies: "@openmrs/esm-globals": 5.x - checksum: 10/61fbe2bd447c864ee036cd2fc711d737dc0f231b562b2fafb4a07e1b9f5817fa97ba29f0676cb62b731d844c1c3a1a21cf4b0e123214e5683c0275fd9745a752 + checksum: 10/3ed8821125e641891e42a9fff687f54ff253215a22e75904bb367fc08c4209ada2766749655b12019e573b6ae8a3a4994c9c90b822938e45518c79263d7f0990 languageName: node linkType: hard -"@openmrs/esm-styleguide@npm:5.6.1-pre.2064, @openmrs/esm-styleguide@npm:next": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-styleguide@npm:5.6.1-pre.2064" +"@openmrs/esm-styleguide@npm:5.7.3-pre.2113, @openmrs/esm-styleguide@npm:next": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-styleguide@npm:5.7.3-pre.2113" dependencies: "@carbon/charts": "npm:^1.12.0" "@carbon/react": "npm:~1.37.0" @@ -3212,18 +3217,18 @@ __metadata: react: 18.x react-dom: 18.x rxjs: 6.x - checksum: 10/b51a83d6b6fc27b6d877a7b3ab613bc1e54251c04e2345365757198c5cff56ef3219bcb4a8befc026c1bb78469fd765c6dce1cb10d71e17cc4f7cd7f14001c6c + checksum: 10/7d6f3c703fac13d2a6de9ceb80a9378222995a1260b0dba3ed362c255b1587af8a07a66bc2731d3803113564cc81f2f24c99d3a4778a1328ba892313619f5480 languageName: node linkType: hard -"@openmrs/esm-translations@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-translations@npm:5.6.1-pre.2064" +"@openmrs/esm-translations@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-translations@npm:5.7.3-pre.2113" dependencies: i18next: "npm:21.10.0" peerDependencies: i18next: 21.x - checksum: 10/02de536b739dd18e4e2158279f0df2cfa6fbb77d464106d9d2b3ece78752518b29b7358aff10cfa22c7cd5775efc4b4812bac74f9de8d9cdc47bf50d0b779039 + checksum: 10/475dd28db9a554f73729b87ec56f9b6542058d37d94d7a51af5c60d6b7237c43f3ba1ff2e89ff9ca3736b085af175fc7467523ee7d20e1aec4785d1e71dd2b95 languageName: node linkType: hard @@ -3234,7 +3239,7 @@ __metadata: "@carbon/react": "npm:^1.33.1" "@openmrs/esm-framework": "npm:next" "@openmrs/esm-styleguide": "npm:next" - "@playwright/test": "npm:^1.42.1" + "@playwright/test": "npm:1.44.0" "@swc/cli": "npm:^0.3.12" "@swc/core": "npm:^1.3.68" "@swc/jest": "npm:^0.2.36" @@ -3288,9 +3293,9 @@ __metadata: languageName: unknown linkType: soft -"@openmrs/esm-utils@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/esm-utils@npm:5.6.1-pre.2064" +"@openmrs/esm-utils@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/esm-utils@npm:5.7.3-pre.2113" dependencies: "@internationalized/date": "npm:^3.5.4" semver: "npm:7.3.2" @@ -3299,13 +3304,13 @@ __metadata: dayjs: 1.x i18next: 21.x rxjs: 6.x - checksum: 10/561f90bef6b07c0a2ce56cf7c812ad424a9ed314fa89c99c68f7a1c74946f09e2be6712e4101f424178ad97e898a62e95fafbe229a2c0ed89a6f51dfd1810b82 + checksum: 10/63ad783e64c6ecc1ad8c5df8e1b6e13bf7ea427779d0c74783d00f067d1262d4ad22ef18a9232f4e2946893699e40d951ff7a5acf1d8f41aaa2eefbdd90d7c91 languageName: node linkType: hard -"@openmrs/webpack-config@npm:5.6.1-pre.2064": - version: 5.6.1-pre.2064 - resolution: "@openmrs/webpack-config@npm:5.6.1-pre.2064" +"@openmrs/webpack-config@npm:5.7.3-pre.2113": + version: 5.7.3-pre.2113 + resolution: "@openmrs/webpack-config@npm:5.7.3-pre.2113" dependencies: "@swc/core": "npm:^1.3.58" clean-webpack-plugin: "npm:^4.0.0" @@ -3313,6 +3318,7 @@ __metadata: css-loader: "npm:^5.2.4" fork-ts-checker-webpack-plugin: "npm:^6.5.0" lodash: "npm:^4.17.21" + lodash-es: "npm:^4.17.21" sass: "npm:>=1.45.0 <1.65.0" sass-loader: "npm:^12.3.0" style-loader: "npm:^3.3.1" @@ -3322,7 +3328,7 @@ __metadata: webpack-stats-plugin: "npm:^1.0.3" peerDependencies: webpack: 5.x - checksum: 10/25698fb4b5f96c06fe0a2bb442c47477d63166e1f0928308b6ba9f5ce7c532f0bf700784edff26303ad1f1d5b5254ad3de415f6474ef6b7793040c6bce6c58b9 + checksum: 10/77145a26335aac7d32bfabc1b1e5f5c512682454df50c85b355f22484c6451825f236ac82edbdebbfcef1394aaa8bfc33d479c6424552704772519ce7d149fc7 languageName: node linkType: hard @@ -3340,14 +3346,14 @@ __metadata: languageName: node linkType: hard -"@playwright/test@npm:^1.42.1": - version: 1.45.1 - resolution: "@playwright/test@npm:1.45.1" +"@playwright/test@npm:1.44.0": + version: 1.44.0 + resolution: "@playwright/test@npm:1.44.0" dependencies: - playwright: "npm:1.45.1" + playwright: "npm:1.44.0" bin: playwright: cli.js - checksum: 10/718316ae739438f686914350beb3aeded6c96d7adfe1b65509fc50c4e322172fe58b7c9f215c3d5bef52a263839b83162f843027ae8d8e96970b3dd8f87211d2 + checksum: 10/bd34b3c3f90f3cb5ceb2e47715c36bf7f6f57f0eb2bb4e47f17be4ecfecf58833a3722b200f3fcd0f97320a9ea08aee3ed58a61fe245591fedae3c6db171743c languageName: node linkType: hard @@ -3385,353 +3391,368 @@ __metadata: languageName: node linkType: hard -"@react-aria/breadcrumbs@npm:^3.5.13": - version: 3.5.13 - resolution: "@react-aria/breadcrumbs@npm:3.5.13" +"@react-aria/breadcrumbs@npm:^3.5.15": + version: 3.5.15 + resolution: "@react-aria/breadcrumbs@npm:3.5.15" dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/link": "npm:^3.7.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/breadcrumbs": "npm:^3.7.5" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/link": "npm:^3.7.3" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/breadcrumbs": "npm:^3.7.7" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/9bb2797fcfca7706aa391bbdef6a5775baa18b5e28d9545e4ac2723517c2e7b9f620d0c0ef833bfb4b04f7257a00dcd20573aeb8ca4dc15af5e382377b9c5e83 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c10ef414d29eff75536747b3606382ad24eb8d8c3f6c7877939fedf17bf07b262022b41bcb06cb148ddfc941f07b62998d486ec7baed76e87ba10d8252db9a25 languageName: node linkType: hard -"@react-aria/button@npm:^3.9.5": - version: 3.9.5 - resolution: "@react-aria/button@npm:3.9.5" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/toggle": "npm:^3.7.4" - "@react-types/button": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/button@npm:^3.9.7": + version: 3.9.7 + resolution: "@react-aria/button@npm:3.9.7" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/toggle": "npm:^3.7.6" + "@react-types/button": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/044eace71b00039336d5282481f38476da662d243404ef35ea5648641a297f65141e889b982d4b59c3e1f34bf1b9e422da0c04310eac1b86df51ff5774365a77 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c17ca07e3f45ef8bb556c567148039fdc2fd119a253e19e8744e57dcd47a3669901205813577c1ee5b851d1d3651cbdeb9b2520fd14fcee53ecdfe4d8ba39b28 languageName: node linkType: hard -"@react-aria/calendar@npm:^3.5.8": - version: 3.5.8 - resolution: "@react-aria/calendar@npm:3.5.8" +"@react-aria/calendar@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-aria/calendar@npm:3.5.10" dependencies: - "@internationalized/date": "npm:^3.5.4" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" + "@internationalized/date": "npm:^3.5.5" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/calendar": "npm:^3.5.1" - "@react-types/button": "npm:^3.9.4" - "@react-types/calendar": "npm:^3.4.6" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/calendar": "npm:^3.5.3" + "@react-types/button": "npm:^3.9.6" + "@react-types/calendar": "npm:^3.4.8" + "@react-types/shared": "npm:^3.24.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/3ae737c7cbace33515fac108ca2c7d03f371cee0a754b90419d24ffae08e90211e6276539c9d1e137a04457a209dfc7fb63665be4bc86350c6c8a64e9c1933f1 + languageName: node + linkType: hard + +"@react-aria/checkbox@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-aria/checkbox@npm:3.14.5" + dependencies: + "@react-aria/form": "npm:^3.0.7" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/toggle": "npm:^3.10.6" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/checkbox": "npm:^3.6.7" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/toggle": "npm:^3.7.6" + "@react-types/checkbox": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/af8365cda1e6afaa527df4a9872ce4c1e2702b49e8375f0fe2610d5e9c67dee068df949aa5a5f2d0060b5f505258e8c17a521fc22dbb20bf2b6bf30d8d6d1723 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/151eaa24ad5abc26d07f9286a76e3312d23262fe615cba66657ebc5919de1af5b544c3335015c206a525b73facc87eaa9153cee6f89c6c1f649be3e57c50002e languageName: node linkType: hard -"@react-aria/checkbox@npm:^3.14.3": - version: 3.14.3 - resolution: "@react-aria/checkbox@npm:3.14.3" +"@react-aria/collections@npm:3.0.0-alpha.3": + version: 3.0.0-alpha.3 + resolution: "@react-aria/collections@npm:3.0.0-alpha.3" dependencies: - "@react-aria/form": "npm:^3.0.5" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/toggle": "npm:^3.10.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/checkbox": "npm:^3.6.5" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/toggle": "npm:^3.7.4" - "@react-types/checkbox": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/ssr": "npm:^3.9.5" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" + use-sync-external-store: "npm:^1.2.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4484a177f95d1d20872592ec6edf06413517e08d8b0a406bb7b4ff697d24ea3098159b100607c73a84833e5c32b22a7d511d1008bec7543cd2127de88563148d + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/223a86c6abc5ac99687b44b0c9317e3b5daaeaed2849092cddb703a1d3ec300b1c790d922360ad50fae5f46f9afd43b1e1fe3d3a61a3691ae82073eed8329667 languageName: node linkType: hard -"@react-aria/color@npm:3.0.0-beta.33": - version: 3.0.0-beta.33 - resolution: "@react-aria/color@npm:3.0.0-beta.33" +"@react-aria/color@npm:3.0.0-rc.1": + version: 3.0.0-rc.1 + resolution: "@react-aria/color@npm:3.0.0-rc.1" dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/numberfield": "npm:^3.11.3" - "@react-aria/slider": "npm:^3.7.8" - "@react-aria/spinbutton": "npm:^3.6.5" - "@react-aria/textfield": "npm:^3.14.5" - "@react-aria/utils": "npm:^3.24.1" - "@react-aria/visually-hidden": "npm:^3.8.12" - "@react-stately/color": "npm:^3.6.1" - "@react-stately/form": "npm:^3.0.3" - "@react-types/color": "npm:3.0.0-beta.25" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/numberfield": "npm:^3.11.5" + "@react-aria/slider": "npm:^3.7.10" + "@react-aria/spinbutton": "npm:^3.6.7" + "@react-aria/textfield": "npm:^3.14.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/visually-hidden": "npm:^3.8.14" + "@react-stately/color": "npm:^3.7.1" + "@react-stately/form": "npm:^3.0.5" + "@react-types/color": "npm:3.0.0-rc.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/184e7521f6de7e740e8807535fe87c80fbaeb753263cce53504c98785599a945003c48b9a419ec69d9d1848558a7a048a06e22b5b626df64ff1ad62e4a29bc2a + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/080e070b51d996f120f8bce1996eb21af7303453409c5a6f771170216c98599b878303544598d652896d2593fcdc6e59c284e17d9c753c09f30037b98f13cf4e languageName: node linkType: hard -"@react-aria/combobox@npm:^3.9.1": - version: 3.9.1 - resolution: "@react-aria/combobox@npm:3.9.1" +"@react-aria/combobox@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/combobox@npm:3.10.1" dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/listbox": "npm:^3.12.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/listbox": "npm:^3.13.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/menu": "npm:^3.14.1" - "@react-aria/overlays": "npm:^3.22.1" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/textfield": "npm:^3.14.5" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/combobox": "npm:^3.8.4" - "@react-stately/form": "npm:^3.0.3" - "@react-types/button": "npm:^3.9.4" - "@react-types/combobox": "npm:^3.11.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/menu": "npm:^3.15.1" + "@react-aria/overlays": "npm:^3.23.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/textfield": "npm:^3.14.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/combobox": "npm:^3.9.1" + "@react-stately/form": "npm:^3.0.5" + "@react-types/button": "npm:^3.9.6" + "@react-types/combobox": "npm:^3.12.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a0ac563b353e2c72c2d0661bdd80a01a640bfe97bbae7294c4eecc34416cb027b5d6d8fefeed02adf3c3fb80bbbd95c02ddf107e9d0080522442a0b55ad807d0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/4778c89d418c6872f368d4bc77a954a36b15c1fd97c01053ad5b07605e60c8ff91e9d5d2b403e049ddfec2de1bba522165b60ebc39f0f4d6789b01ca5a09e7fb languageName: node linkType: hard -"@react-aria/datepicker@npm:^3.10.1": - version: 3.10.1 - resolution: "@react-aria/datepicker@npm:3.10.1" +"@react-aria/datepicker@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/datepicker@npm:3.11.1" dependencies: - "@internationalized/date": "npm:^3.5.4" + "@internationalized/date": "npm:^3.5.5" "@internationalized/number": "npm:^3.5.3" "@internationalized/string": "npm:^3.2.3" - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/form": "npm:^3.0.5" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/spinbutton": "npm:^3.6.5" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/datepicker": "npm:^3.9.4" - "@react-stately/form": "npm:^3.0.3" - "@react-types/button": "npm:^3.9.4" - "@react-types/calendar": "npm:^3.4.6" - "@react-types/datepicker": "npm:^3.7.4" - "@react-types/dialog": "npm:^3.5.10" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/form": "npm:^3.0.7" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/spinbutton": "npm:^3.6.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/datepicker": "npm:^3.10.1" + "@react-stately/form": "npm:^3.0.5" + "@react-types/button": "npm:^3.9.6" + "@react-types/calendar": "npm:^3.4.8" + "@react-types/datepicker": "npm:^3.8.1" + "@react-types/dialog": "npm:^3.5.12" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/0e3c87063e839e24bb91ed0d852112c4872c9a580ec9f5986b5ea92bdfc787c1d9365390158bdc0a9cc8b6e76fac82be4bbefbbfa3035f789bf704f5d5de5cd7 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/d7edfc09d59182c7e6c02303690d42eac9bd8cdc45451335386b7b2605f909eab3d6b1bf3e9f21a467bdf4a8a4b6c03353ff5382585c5aab81c8fc110d9bf902 languageName: node linkType: hard -"@react-aria/dialog@npm:^3.5.14": - version: 3.5.14 - resolution: "@react-aria/dialog@npm:3.5.14" +"@react-aria/dialog@npm:^3.5.16": + version: 3.5.16 + resolution: "@react-aria/dialog@npm:3.5.16" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/overlays": "npm:^3.22.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/dialog": "npm:^3.5.10" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/overlays": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/dialog": "npm:^3.5.12" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/daae893065fe73b1c02c02572fa146ffa13280a39b4fedbab5a9581952ff021728673dd35f1e64d03413e8ace43eeef55f62aeabcc17a7600f987788895b1416 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/10373652d60b232152b2d6f55cda2e40f0f2d08c0f8ee578256708305fe571e69109fede0d9979c7722096a51beb9e676e983a6cc2fa022fd4c12da3384a5103 languageName: node linkType: hard -"@react-aria/dnd@npm:^3.6.1": - version: 3.6.1 - resolution: "@react-aria/dnd@npm:3.6.1" +"@react-aria/dnd@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-aria/dnd@npm:3.7.1" dependencies: "@internationalized/string": "npm:^3.2.3" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/overlays": "npm:^3.22.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/dnd": "npm:^3.3.1" - "@react-types/button": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/overlays": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/dnd": "npm:^3.4.1" + "@react-types/button": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/53d44c58300f5a96d7e528c2df8cc454f9b3d558ff6e6aa2a878f68cae827321034753b2a27a717e2d8bc2888b02976697803da75a34677b541be5db7e6c61c6 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/e06f53acff1775fda408fb17927e142882629fca8f693adb5bc7520daec8d8896b4dbbdd4927170236c9f06ab004b6cb0c71746dae81659152befc7896eca35c languageName: node linkType: hard -"@react-aria/focus@npm:^3.17.1": - version: 3.17.1 - resolution: "@react-aria/focus@npm:3.17.1" +"@react-aria/focus@npm:^3.18.1": + version: 3.18.1 + resolution: "@react-aria/focus@npm:3.18.1" dependencies: - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4c3c7b26c983c83119a5ff1595e339b8bf68dcb6ea4349dc3b6bb26af41bbae4be50df8a96b12beea9b9f700c4508addfa4fd4626e7955bce667ec7620693af8 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b8b764f0a43d34bee7c89f3510ccfecc0b3408f2418e30aa2a2ead54d5e94034fc2bc05c6469d4be9b27b7f1f78bfc9207bcb6dbe96bd11380cab243bb30d4be languageName: node linkType: hard -"@react-aria/form@npm:^3.0.5": - version: 3.0.5 - resolution: "@react-aria/form@npm:3.0.5" +"@react-aria/form@npm:^3.0.7": + version: 3.0.7 + resolution: "@react-aria/form@npm:3.0.7" dependencies: - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/form": "npm:^3.0.3" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/form": "npm:^3.0.5" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/f428113530658498b143670fa775feb2839ad259b90db957ecb8f7094523e1c3f7b2357f9b4f9b26639d14b9889137566fa8ca750e053bfffb1b837b666c1eb2 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/96565a9d0b8ef1b53c67a88b4cfd64f76c1f8b76867e1bfa69e01bfc46dac588ee33f75f6b4400e4a67007b146aa9f6650b0447179ade7982c18b303d99a0b69 languageName: node linkType: hard -"@react-aria/grid@npm:^3.9.1": - version: 3.9.1 - resolution: "@react-aria/grid@npm:3.9.1" +"@react-aria/grid@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/grid@npm:3.10.1" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/grid": "npm:^3.8.7" - "@react-stately/selection": "npm:^3.15.1" - "@react-stately/virtualizer": "npm:^3.7.1" - "@react-types/checkbox": "npm:^3.8.1" - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/grid": "npm:^3.9.1" + "@react-stately/selection": "npm:^3.16.1" + "@react-types/checkbox": "npm:^3.8.3" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b07dbd270ba829cca6631a8261798204ed31e6e0670e5d214f220a0dd66fa851e33729b2982aae0ab0dd5518e9ca1dfe88d8abc6051fc98e21b0d356de314e79 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/bd3bad1b073e9ee2c2187bdcafb0185e4d8f37fbba3570c6c11c35548687c4ca3c6d46ff8098b52be14d007e6f398fcdd7bf59ca5b53234448d74e0459179a73 languageName: node linkType: hard -"@react-aria/gridlist@npm:^3.8.1": - version: 3.8.1 - resolution: "@react-aria/gridlist@npm:3.8.1" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/grid": "npm:^3.9.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/list": "npm:^3.10.5" - "@react-stately/tree": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/gridlist@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/gridlist@npm:3.9.1" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/grid": "npm:^3.10.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/list": "npm:^3.10.7" + "@react-stately/tree": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a345b3d6819c1ce1b7fe8b0cce48230c73e83e7491d402c9df11bbd5d05106ba4700b823283e05608bec24e4dd8200324b6af839355eacff92058167dd926174 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/bfceefdef365fb53255a9bc77f2f9abf228c798903534b721324aa6f0460ef9c9c85e08b35f9f0c4b7b3f060ce27803086de47b7ef473551a10ea8ea2ac378ab languageName: node linkType: hard -"@react-aria/i18n@npm:^3.11.1": - version: 3.11.1 - resolution: "@react-aria/i18n@npm:3.11.1" +"@react-aria/i18n@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-aria/i18n@npm:3.12.1" dependencies: - "@internationalized/date": "npm:^3.5.4" + "@internationalized/date": "npm:^3.5.5" "@internationalized/message": "npm:^3.1.4" "@internationalized/number": "npm:^3.5.3" "@internationalized/string": "npm:^3.2.3" - "@react-aria/ssr": "npm:^3.9.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/ssr": "npm:^3.9.5" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b193d4b7382343c2d15510fa490c3c2f6d10f43cb8f43b29f5313a3144221e2849e93cc1d94c56c9590f398739f8bad826cc1299f23aea0ef4e974feb71d9dfa + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/febf909303725b2c9d8f44ba8743d7abd62c71c7347752619e3bccf9a309b0bb0454e92b2943b041f0bde0fd9a0586bc68930906fc9ab5222f7fcf8232f3d848 languageName: node linkType: hard -"@react-aria/interactions@npm:^3.21.3": - version: 3.21.3 - resolution: "@react-aria/interactions@npm:3.21.3" +"@react-aria/interactions@npm:^3.22.1": + version: 3.22.1 + resolution: "@react-aria/interactions@npm:3.22.1" dependencies: - "@react-aria/ssr": "npm:^3.9.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/ssr": "npm:^3.9.5" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/84fe368a40631f02fb9b9fcc103820a7659132b74a029a3bac3939f4a8bee05c9fe1f023f2d170760adaf3cc110793c6b8db396f016bab740922ffc823f99833 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/6947a1904777a0adf7746631461928385524d901eefdd428f8e79f0c184904f48190f259fb8096dc683f4ba7ed5dd263e49f3cc511563f4462a124d4f27894b4 languageName: node linkType: hard -"@react-aria/label@npm:^3.7.8": - version: 3.7.8 - resolution: "@react-aria/label@npm:3.7.8" +"@react-aria/label@npm:^3.7.10": + version: 3.7.10 + resolution: "@react-aria/label@npm:3.7.10" dependencies: - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/7bbbc8afe2947dcb427734b7ddc482e8e3c6df6963e5be95744942e44fcba209c87b23cc87fff753e3ff872f2796afeb35901ac48a3c89a5d6e40f41160820f0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0145546c4bd2aa204dab93df2bd8dffb2278a8840eaeaedfc9ddd58abcb9179a889b1be44ea5153846dba2efb13c78d42ec84e6fd6fbea47d40baadf2e4da1e3 languageName: node linkType: hard -"@react-aria/link@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-aria/link@npm:3.7.1" +"@react-aria/link@npm:^3.7.3": + version: 3.7.3 + resolution: "@react-aria/link@npm:3.7.3" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/link": "npm:^3.5.5" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/link": "npm:^3.5.7" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4cc2d1795308fa26728dc23863ed4863a3e70161fe8ac0f541e9a439fea54a6d3791a42ec2cf120968465ecd5f1e9ceffca3d81708604529ec4bf9b3d1a4cacf + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/98a18814aebe35e47561b44001de0be114e31bc269e5e796c651c3bd1c3c665075bc135c9633cd4e78cb092fc8c5218e98fb883a5d139ff69cf72488dfe3391d languageName: node linkType: hard -"@react-aria/listbox@npm:^3.12.1": - version: 3.12.1 - resolution: "@react-aria/listbox@npm:3.12.1" - dependencies: - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/list": "npm:^3.10.5" - "@react-types/listbox": "npm:^3.4.9" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/listbox@npm:^3.13.1": + version: 3.13.1 + resolution: "@react-aria/listbox@npm:3.13.1" + dependencies: + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/list": "npm:^3.10.7" + "@react-types/listbox": "npm:^3.5.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/1c873b36737fccca63f19088d69f6132c8d90c16c7532200c1943e25f08f5e374a76572e590ba1b3840b96e7273bf37c761ca3985a066c2b61f6c142261b58d6 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/dd3edb119b9676749532a42cadce027cd30c65daa0580ba531952de6fe24920d52abd60285beb4b845cccf41ad30def04b18b80272ecd974daef632e71e48e18 languageName: node linkType: hard @@ -3744,562 +3765,580 @@ __metadata: languageName: node linkType: hard -"@react-aria/menu@npm:^3.14.1": - version: 3.14.1 - resolution: "@react-aria/menu@npm:3.14.1" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/overlays": "npm:^3.22.1" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/menu": "npm:^3.7.1" - "@react-stately/tree": "npm:^3.8.1" - "@react-types/button": "npm:^3.9.4" - "@react-types/menu": "npm:^3.9.9" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/menu@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-aria/menu@npm:3.15.1" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/overlays": "npm:^3.23.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/menu": "npm:^3.8.1" + "@react-stately/tree": "npm:^3.8.3" + "@react-types/button": "npm:^3.9.6" + "@react-types/menu": "npm:^3.9.11" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/75ba7461017de8358066a92fd7545c886dec6cf31ce7f42bf8e90228ab8c68e95747a7b6da428a3805f1a0d7fe1a4699d8891f8dae7afb6df4c036e5ab25b0a7 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/ea74ff72eca6250e47e127ac44471fa2de3b3cc4d0544c12b4fe8d464227ebf688b3e8d92e3b526a172e9182731ebadb2f621d68000d8b45b0bf90a6935ccc36 languageName: node linkType: hard -"@react-aria/meter@npm:^3.4.13": - version: 3.4.13 - resolution: "@react-aria/meter@npm:3.4.13" +"@react-aria/meter@npm:^3.4.15": + version: 3.4.15 + resolution: "@react-aria/meter@npm:3.4.15" dependencies: - "@react-aria/progress": "npm:^3.4.13" - "@react-types/meter": "npm:^3.4.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/progress": "npm:^3.4.15" + "@react-types/meter": "npm:^3.4.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d25fb6cc18ae4001f9e4b877cb53a79a887cb00d1bd39004c641b00d8255eaac157c85ab3a11dfc2837ae0f9f376383236e9e57335360c5e4c3fe268d517eb6f + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/2d7a384dc13605b168e6ca28c4334ff2f8800eda918debb58ecbe77c33943f5cb055c1e590831af1bdbde10c0cd9d21be3157ca8f085d46736d6c10c781f88fa languageName: node linkType: hard -"@react-aria/numberfield@npm:^3.11.3": - version: 3.11.3 - resolution: "@react-aria/numberfield@npm:3.11.3" +"@react-aria/numberfield@npm:^3.11.5": + version: 3.11.5 + resolution: "@react-aria/numberfield@npm:3.11.5" dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/spinbutton": "npm:^3.6.5" - "@react-aria/textfield": "npm:^3.14.5" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/numberfield": "npm:^3.9.3" - "@react-types/button": "npm:^3.9.4" - "@react-types/numberfield": "npm:^3.8.3" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/spinbutton": "npm:^3.6.7" + "@react-aria/textfield": "npm:^3.14.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/numberfield": "npm:^3.9.5" + "@react-types/button": "npm:^3.9.6" + "@react-types/numberfield": "npm:^3.8.5" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/36d192b6e4ae86e0ba8b5e194aea34392018d81ecd269c0d2343f4a8c7bdc00398e4822422b27b04763bf59e4b9de994688b9dad18677f20034917d32cb3e8ff + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/625170e103218b851c963cc155396a0f9a430b102715f99a4ab5d4b9d696a8e0597de4e7e85f52ab5d07da9d64a8a4d6155208dd4740241a528dc445d2096a8e languageName: node linkType: hard -"@react-aria/overlays@npm:^3.22.1": - version: 3.22.1 - resolution: "@react-aria/overlays@npm:3.22.1" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/ssr": "npm:^3.9.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-aria/visually-hidden": "npm:^3.8.12" - "@react-stately/overlays": "npm:^3.6.7" - "@react-types/button": "npm:^3.9.4" - "@react-types/overlays": "npm:^3.8.7" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/overlays@npm:^3.23.1": + version: 3.23.1 + resolution: "@react-aria/overlays@npm:3.23.1" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/ssr": "npm:^3.9.5" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/visually-hidden": "npm:^3.8.14" + "@react-stately/overlays": "npm:^3.6.9" + "@react-types/button": "npm:^3.9.6" + "@react-types/overlays": "npm:^3.8.9" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/1bcddb0c9406fdf594f164f2a465461c9e44a3cb84ccb1e640e397778ba243b755bfc4501ff8476fbe756bc43fc1aded1d61b3e7d9cdd6d9937b92c42ca82f46 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/24aff9357b0ccdb412c8712fa3afdee281215b4054a652abbd086f898f037c375a2d254ec45776172e76f78db6b310fa3015d124de8c642e6b497a1396ccbef9 languageName: node linkType: hard -"@react-aria/progress@npm:^3.4.13": - version: 3.4.13 - resolution: "@react-aria/progress@npm:3.4.13" +"@react-aria/progress@npm:^3.4.15": + version: 3.4.15 + resolution: "@react-aria/progress@npm:3.4.15" dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/progress": "npm:^3.5.4" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/progress": "npm:^3.5.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/84cebddc9068634f0dd3ed181eaf9be3c302b6883632171796cabacac78459f68f237ac8808428682707379d1acce5ac93f4d08a4157bbd56aa03220d7b450f0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0377ff8bda1a5a9c29f8b7ea8a2616b0dc98e0fae2f32825eec54149637aaabe4a39f1214ee08430d13e5eba28125c4e306d88241a202d9caf981c7219a01758 languageName: node linkType: hard -"@react-aria/radio@npm:^3.10.4": - version: 3.10.4 - resolution: "@react-aria/radio@npm:3.10.4" +"@react-aria/radio@npm:^3.10.6": + version: 3.10.6 + resolution: "@react-aria/radio@npm:3.10.6" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/form": "npm:^3.0.5" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/radio": "npm:^3.10.4" - "@react-types/radio": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/form": "npm:^3.0.7" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/radio": "npm:^3.10.6" + "@react-types/radio": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/5fa0d6a9858a84cfd4dce0f2d40a52dcd31fa507df489f83b5ef010f6f0de3df7f5bdb54897968f805c2da4e6121fef3f9031575f5bc80b836e9d1ce83dbeb45 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/722c93a234fb4c9283f0b74e83592b981424e3d453ed26514bb61c38cbbbdac68e04d5704c72572be33468e3275edbe7388cf11cdf1dbb5ea1736581f24c84bf languageName: node linkType: hard -"@react-aria/searchfield@npm:^3.7.5": - version: 3.7.5 - resolution: "@react-aria/searchfield@npm:3.7.5" - dependencies: - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/textfield": "npm:^3.14.5" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/searchfield": "npm:^3.5.3" - "@react-types/button": "npm:^3.9.4" - "@react-types/searchfield": "npm:^3.5.5" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/searchfield@npm:^3.7.7": + version: 3.7.7 + resolution: "@react-aria/searchfield@npm:3.7.7" + dependencies: + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/textfield": "npm:^3.14.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/searchfield": "npm:^3.5.5" + "@react-types/button": "npm:^3.9.6" + "@react-types/searchfield": "npm:^3.5.7" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/f1aeccfe38d921da8f892e12ea26ed9d83dc8d015569b64d13817f2777da1aef8fa742ca7e73bc740019b9831d19b16ff5c4ad30aa51eb40b3b1323ce1e62a34 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c374762f6996b63a793ba423e8b3b1f71ccf7aad6169e90f22c9c07a66ce7c1a45f599b50235246d41c6c6231ca31e2c5a75a1c7a7d845e58d84375425c5f599 languageName: node linkType: hard -"@react-aria/select@npm:^3.14.5": - version: 3.14.5 - resolution: "@react-aria/select@npm:3.14.5" - dependencies: - "@react-aria/form": "npm:^3.0.5" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/listbox": "npm:^3.12.1" - "@react-aria/menu": "npm:^3.14.1" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-aria/visually-hidden": "npm:^3.8.12" - "@react-stately/select": "npm:^3.6.4" - "@react-types/button": "npm:^3.9.4" - "@react-types/select": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/select@npm:^3.14.7": + version: 3.14.7 + resolution: "@react-aria/select@npm:3.14.7" + dependencies: + "@react-aria/form": "npm:^3.0.7" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/listbox": "npm:^3.13.1" + "@react-aria/menu": "npm:^3.15.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/visually-hidden": "npm:^3.8.14" + "@react-stately/select": "npm:^3.6.6" + "@react-types/button": "npm:^3.9.6" + "@react-types/select": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/76af6d008d72702b12eb76ebd4e0ee59aa59c2e95dae7a35c8d96fe0e4b1fe56c84f6a4ae8696e99bfd5978fdc1681a524d14b70cf08e02dc74a6447fb29b724 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/71188f4947c4eeee7b3dc93d4d36408695e68cd9e67237a0e868cbddc0caed8b4c769957fbe51ba466d187649ab3c847202b0cf9bf3931236b22492703b924d6 languageName: node linkType: hard -"@react-aria/selection@npm:^3.18.1": - version: 3.18.1 - resolution: "@react-aria/selection@npm:3.18.1" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/selection": "npm:^3.15.1" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/selection@npm:^3.19.1": + version: 3.19.1 + resolution: "@react-aria/selection@npm:3.19.1" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/selection": "npm:^3.16.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/233ed769f9539b5e70cb0f8f81c269153386b3d6f2d15a60c331bcf9f4fc78aac2b608f539ef3772caffa8f44fd081eec46af0ec8e577633cb3c6e130509d060 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b8433020505dd46831d41ad86b20e8d2925d0dccc0d14980f8ff5d33c2501427710debbb56c92c9ff095c446a13f8060970c93d5ea33694fe1d50ffbc32f0eb9 languageName: node linkType: hard -"@react-aria/separator@npm:^3.3.13": - version: 3.3.13 - resolution: "@react-aria/separator@npm:3.3.13" +"@react-aria/separator@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-aria/separator@npm:3.4.1" dependencies: - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/2938cc88047f274d898d3ec9026b2a2aebbfe3a27fbb9cec7f4444596bab4708417fabfd5388181e511fa2ee814a8fed5099031af391f55f966080e48b20b435 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b5a2cbe5d00bedb8f8da062e35d2deb79c1b08572ca8bffd50fb74b1cad8b36552fcf4b565cfff38527c93aaa1f6463da1961a4dcf6fc9a3e88596d85124668b languageName: node linkType: hard -"@react-aria/slider@npm:^3.7.8": - version: 3.7.8 - resolution: "@react-aria/slider@npm:3.7.8" +"@react-aria/slider@npm:^3.7.10": + version: 3.7.10 + resolution: "@react-aria/slider@npm:3.7.10" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/slider": "npm:^3.5.4" - "@react-types/shared": "npm:^3.23.1" - "@react-types/slider": "npm:^3.7.3" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/slider": "npm:^3.5.6" + "@react-types/shared": "npm:^3.24.1" + "@react-types/slider": "npm:^3.7.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/aefa070af4241848be09cf66afef893a9279368692a1e505883a37d9630ab959b9ec65aad47e53a68cef627fe6dd25bb0f90c96d617c13bcc0006cf5a826d477 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/3cbce0505b28461b1733cd125ed33947b410ec1213a2b5d133eebbefe7f9d50c8983184ecc2a637c7455e4bd4ecfea78de12c8987166f5a6f2bcfb6c9e5e3f0f languageName: node linkType: hard -"@react-aria/spinbutton@npm:^3.6.5": - version: 3.6.5 - resolution: "@react-aria/spinbutton@npm:3.6.5" +"@react-aria/spinbutton@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-aria/spinbutton@npm:3.6.7" dependencies: - "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/i18n": "npm:^3.12.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/button": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/button": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/5567e91640ab71cdc621d91dacacaeef4ca9d1d3bd1a9f89402de2db0eb9adf1e7ec594a6c48e432003ebacf5964186e54220f7c00bcfb975ea3e12a633f0dbc + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/4a7b7d1b9bbcd10837a1392e76a7a02ade20776c55e3af601be686438b0bd56d7c1efce74afb92bbc56b20272a79af9e24785040785cd9a8bd87bd4a7f5446ff languageName: node linkType: hard -"@react-aria/ssr@npm:^3.9.4": - version: 3.9.4 - resolution: "@react-aria/ssr@npm:3.9.4" +"@react-aria/ssr@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-aria/ssr@npm:3.9.5" dependencies: "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/c55e5e0bf86bc39c7c0c9f86f4166e923cf62304903b7b5e700619bff64edc4fbeec5a66741aa39635445ff0b26d80ee03d6471c5df02ec764b9a71938dd17de + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0284561e7b084c567fd8f35e7982f201582acc937b950be8411678352682c7b45ad3ab99272cd2d6f0b4919ddaa5b0e553d784f190d1d05ceb8594bfee3f763e languageName: node linkType: hard -"@react-aria/switch@npm:^3.6.4": - version: 3.6.4 - resolution: "@react-aria/switch@npm:3.6.4" +"@react-aria/switch@npm:^3.6.6": + version: 3.6.6 + resolution: "@react-aria/switch@npm:3.6.6" dependencies: - "@react-aria/toggle": "npm:^3.10.4" - "@react-stately/toggle": "npm:^3.7.4" - "@react-types/switch": "npm:^3.5.3" + "@react-aria/toggle": "npm:^3.10.6" + "@react-stately/toggle": "npm:^3.7.6" + "@react-types/shared": "npm:^3.24.1" + "@react-types/switch": "npm:^3.5.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/97a26a41126beb4df20ff857a7e6af78242ea8ec864d86a60082826f0cbce40bc2288af50c705da237f6ef9eafc4aa9bc775e5a6b67ccd2b2dacb6754abc2fcc + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/6c9f371e4f3383e246a361861284c98c6eba578d9020956f97d2894d07535f070b89c50eef882a1d975249831500f2dfd49f71048ff139234ab00372b893ee12 languageName: node linkType: hard -"@react-aria/table@npm:^3.14.1": - version: 3.14.1 - resolution: "@react-aria/table@npm:3.14.1" +"@react-aria/table@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-aria/table@npm:3.15.1" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/grid": "npm:^3.9.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/grid": "npm:^3.10.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" "@react-aria/live-announcer": "npm:^3.3.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-aria/visually-hidden": "npm:^3.8.12" - "@react-stately/collections": "npm:^3.10.7" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/visually-hidden": "npm:^3.8.14" + "@react-stately/collections": "npm:^3.10.9" "@react-stately/flags": "npm:^3.0.3" - "@react-stately/table": "npm:^3.11.8" - "@react-stately/virtualizer": "npm:^3.7.1" - "@react-types/checkbox": "npm:^3.8.1" - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" - "@react-types/table": "npm:^3.9.5" + "@react-stately/table": "npm:^3.12.1" + "@react-types/checkbox": "npm:^3.8.3" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" + "@react-types/table": "npm:^3.10.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/3b20885aefbecf40e76d2d594a4c6cd3894878c031041bd3c398d440cad6cc938098c9fcc112bc0a1744478d0e8e241acd2e1641129dceab54f04e9e1bd2e5b2 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/1a29e342987bc8a3c1f7d53985324bb0933609853a9842192c70fd82322ca20e082cca30196c67161a892bdcf059f76655d07c1f6d1216a9a2bd5925e55bb00a languageName: node linkType: hard -"@react-aria/tabs@npm:^3.9.1": - version: 3.9.1 - resolution: "@react-aria/tabs@npm:3.9.1" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/tabs": "npm:^3.6.6" - "@react-types/shared": "npm:^3.23.1" - "@react-types/tabs": "npm:^3.3.7" +"@react-aria/tabs@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-aria/tabs@npm:3.9.3" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/tabs": "npm:^3.6.8" + "@react-types/shared": "npm:^3.24.1" + "@react-types/tabs": "npm:^3.3.9" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/69d0f482ce94ed34a587eb9da6bf7c62911040a4c02c37fe768710d043ffcd6750bed506dc7cbe16881db2cf6b271cbef2dc91ac4e7be70965f3f8bf56ba1918 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/157e0dba5d25d3a802d94f471380d1a338500b12096f9c40e4a32219f17173b5f4600f160775106a1cbfd809e8df3fe7d1330fff7718c2417b194a1f1f28334a languageName: node linkType: hard -"@react-aria/tag@npm:^3.4.1": - version: 3.4.1 - resolution: "@react-aria/tag@npm:3.4.1" - dependencies: - "@react-aria/gridlist": "npm:^3.8.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/list": "npm:^3.10.5" - "@react-types/button": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" +"@react-aria/tag@npm:^3.4.3": + version: 3.4.3 + resolution: "@react-aria/tag@npm:3.4.3" + dependencies: + "@react-aria/gridlist": "npm:^3.9.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/list": "npm:^3.10.7" + "@react-types/button": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d85ac6ea1dec19f51acfde677cb3fd6da799d2a022468c984b1ed3d0cb7e6820e8fc5e8b9b12a2617d9830343a232b5d39a21c268d10d7a411d5d27d06c72055 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c7104dbd04520606c2b1edb5801b396365fc526acc92f0b674b2d72e9c242c7785a93090cbaef3f0647fb09bedc7b2be1e024847c51745b1934b069983774a17 languageName: node linkType: hard -"@react-aria/textfield@npm:^3.14.5": - version: 3.14.5 - resolution: "@react-aria/textfield@npm:3.14.5" - dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/form": "npm:^3.0.5" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" - "@react-types/textfield": "npm:^3.9.3" +"@react-aria/textfield@npm:^3.14.7": + version: 3.14.7 + resolution: "@react-aria/textfield@npm:3.14.7" + dependencies: + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/form": "npm:^3.0.7" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" + "@react-types/textfield": "npm:^3.9.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/db1a3270a6d7b7947567554a56748a6960a2f83f1f4b4b3649896777ef7d02ba3a6b657dba93860c89b11fa2abe0ea94b47aa499c15751be11a092e494f4c016 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/cd57a0d938791e8c41724f775738e9426b0ae778eab41d09963204cbec44eefde83c17ebbb8116914a484d6155fb2a42baf6bb28fd0784c493ce116acd989275 languageName: node linkType: hard -"@react-aria/toggle@npm:^3.10.4": - version: 3.10.4 - resolution: "@react-aria/toggle@npm:3.10.4" +"@react-aria/toggle@npm:^3.10.6": + version: 3.10.6 + resolution: "@react-aria/toggle@npm:3.10.6" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/toggle": "npm:^3.7.4" - "@react-types/checkbox": "npm:^3.8.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/toggle": "npm:^3.7.6" + "@react-types/checkbox": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/66f59d898399977ed640d40c40634c9f5f95d50a1241c8a604d04b652c261353377f1a8c1a05ffbd49090ff8c120ead4f2567e4732c07c0dfc4368fa3399c2c9 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/fcf1965fba618935e907570cbeacdf8ddd45ff2efece775428c30f6f278aa4d4df8991032171532e80d6358e11840a9ccda80bd9740b4d6fa72bf58f006ac427 languageName: node linkType: hard -"@react-aria/toolbar@npm:3.0.0-beta.5": - version: 3.0.0-beta.5 - resolution: "@react-aria/toolbar@npm:3.0.0-beta.5" +"@react-aria/toolbar@npm:3.0.0-beta.7": + version: 3.0.0-beta.7 + resolution: "@react-aria/toolbar@npm:3.0.0-beta.7" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4f9114fd900cb81b98399f917222a83f59d9012114fd198f1954a24c09c805875e502695ca69edb7f4e51f031da0649394b587bd7b83efa404fba9fcf18152a3 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/6888e7d16bc84640f972abab0f003c86c8b84999797b0b263e3886fc567f61bacdd6ff7568cab9e75cc81d2eb6a969f2353127d269f78972106f4aa7b7414aab languageName: node linkType: hard -"@react-aria/tooltip@npm:^3.7.4": - version: 3.7.4 - resolution: "@react-aria/tooltip@npm:3.7.4" +"@react-aria/tooltip@npm:^3.7.6": + version: 3.7.6 + resolution: "@react-aria/tooltip@npm:3.7.6" dependencies: - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/tooltip": "npm:^3.4.9" - "@react-types/shared": "npm:^3.23.1" - "@react-types/tooltip": "npm:^3.4.9" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/tooltip": "npm:^3.4.11" + "@react-types/shared": "npm:^3.24.1" + "@react-types/tooltip": "npm:^3.4.11" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b184bded727abc4b85c53de6b348bae2bada8ad1bba167ce998c1fc9ace4d2b9e9c4362352ece91e321e0ce4da88795d60c1e96298203cedfb8553a9f4e50ebc + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/2fc6513f0d520f9fb09faff51c68a7bfb8f8f21d7eb21b2739596ac91b3c4f30f53beb37a064a7ddc5ef4f3af827ee36deb40a752cbad856b9794c6e6a0c02aa languageName: node linkType: hard -"@react-aria/tree@npm:3.0.0-alpha.1": - version: 3.0.0-alpha.1 - resolution: "@react-aria/tree@npm:3.0.0-alpha.1" +"@react-aria/tree@npm:3.0.0-alpha.3": + version: 3.0.0-alpha.3 + resolution: "@react-aria/tree@npm:3.0.0-alpha.3" dependencies: - "@react-aria/gridlist": "npm:^3.8.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/tree": "npm:^3.8.1" - "@react-types/button": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/gridlist": "npm:^3.9.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/tree": "npm:^3.8.3" + "@react-types/button": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d21790594918886e8c3214dc666af563e8c13dd0dbe956492f251291144b3f18418dd2901df10569bc639a30c8edfcfa90d21b1fc3e6c69d4fc6d7e512531b52 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/5570b0252490b182fbd2e324461bc6a7d10e327b0d8082136ef1e3311113b748d7e18c7ed91fe90cd1ee6e9402bd9059b1bd2f46218178784142535a3004a7c4 languageName: node linkType: hard -"@react-aria/utils@npm:^3.24.1": - version: 3.24.1 - resolution: "@react-aria/utils@npm:3.24.1" +"@react-aria/utils@npm:^3.25.1": + version: 3.25.1 + resolution: "@react-aria/utils@npm:3.25.1" dependencies: - "@react-aria/ssr": "npm:^3.9.4" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/ssr": "npm:^3.9.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" clsx: "npm:^2.0.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/7acf52f3cdf66aaa0c55bde86959a3772bc266682389bf19865739ca8b77a652db8d9f970dc37600c69b8a7cce78b821913f3d7f066bdcb1224599e3fe35afce + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/477b945ebdbda4200415dbc040d89658e58eb48e3d158a54a0d07c89d5605c1e3b51c21d2058b5346f8be2cab43c0f8d705f999b71712b96aa33546c0560cb47 languageName: node linkType: hard -"@react-aria/visually-hidden@npm:^3.8.12": - version: 3.8.12 - resolution: "@react-aria/visually-hidden@npm:3.8.12" +"@react-aria/virtualizer@npm:^4.0.1": + version: 4.0.1 + resolution: "@react-aria/virtualizer@npm:4.0.1" dependencies: - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-stately/virtualizer": "npm:^4.0.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/2b3c43f713e37b5536ecd1dd4d975b98fbec5287d06ff462ac4aaea9ed5136a0939e5b6cd5857c2db57b94e41b49aa2c5cfd25d1c87c580d3e204c07fde80895 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/505b75f1994b0676e3c68760c088d36b4c113e0e9c060e32a9f0f9570cc695ba59d59bdd56dfb9c33325be2ca62af28323ce938959257bfb75e2cf0ce0c1495e languageName: node linkType: hard -"@react-stately/calendar@npm:^3.5.1": - version: 3.5.1 - resolution: "@react-stately/calendar@npm:3.5.1" +"@react-aria/visually-hidden@npm:^3.8.14": + version: 3.8.14 + resolution: "@react-aria/visually-hidden@npm:3.8.14" dependencies: - "@internationalized/date": "npm:^3.5.4" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/calendar": "npm:^3.4.6" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b410874e1a028f889e4b98b6488be7c10d04a918df73493754a92fcae9020f0fa1891a7663d0295aee45fb010c50ed92f9379564ec1bd45479d2be2ec4bf62ca + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/8d2f81d68c9b4326347ae875c1da353ae410e736aa5a0854253c1c2d2a00c638d670f2b0666706bb4dc84ef12e9ee114816ee818928a332ac7375917230b720d languageName: node linkType: hard -"@react-stately/checkbox@npm:^3.6.5": - version: 3.6.5 - resolution: "@react-stately/checkbox@npm:3.6.5" +"@react-stately/calendar@npm:^3.5.3": + version: 3.5.3 + resolution: "@react-stately/calendar@npm:3.5.3" dependencies: - "@react-stately/form": "npm:^3.0.3" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/checkbox": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" + "@internationalized/date": "npm:^3.5.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/calendar": "npm:^3.4.8" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/fa9c1c0376fca5ac384f6a02dfc6543945dde81458d0466fa9e788ec61a71d0e84e1f6749a12917e02638f6d887df2eb7cba597e161eacd16ae907c8c75da2f6 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/dd8f0ffe514b8bd1a43989351d508362335a125dfd47f105370a131abb5104af46c5ca380ebc44721b83a7906aa2c21e2aa9680f67e75329a4dd99c87a95fd53 languageName: node linkType: hard -"@react-stately/collections@npm:^3.10.7": - version: 3.10.7 - resolution: "@react-stately/collections@npm:3.10.7" +"@react-stately/checkbox@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-stately/checkbox@npm:3.6.7" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/checkbox": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/f52ee5478a4473accd828798d29a21542d9ce340eab49ce631bcb25f99963aee2696338be3798fcb5d90172759dd7dd547e73f12127a48533dd84d3f9fd7e4cf + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/176e7afbbc71e9d2a2b41b4c25ab64ea089078cabb07ec8389834ba284e860f0ef7773c72765b6625686218fd0a77191e67bf15e6586e6e72e02e9c7c063d902 languageName: node linkType: hard -"@react-stately/color@npm:^3.6.1": - version: 3.6.1 - resolution: "@react-stately/color@npm:3.6.1" +"@react-stately/collections@npm:^3.10.9": + version: 3.10.9 + resolution: "@react-stately/collections@npm:3.10.9" + dependencies: + "@react-types/shared": "npm:^3.24.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/f84715636e93f238405d5170d389e8e3fbb7f065388cd5f24a2460e382eafe9ba5cddecbebba6a971a5148079da54ab4b9d772377f1c93af0abace45fbd4302b + languageName: node + linkType: hard + +"@react-stately/color@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/color@npm:3.7.1" dependencies: "@internationalized/number": "npm:^3.5.3" "@internationalized/string": "npm:^3.2.3" - "@react-aria/i18n": "npm:^3.11.1" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/numberfield": "npm:^3.9.3" - "@react-stately/slider": "npm:^3.5.4" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/color": "npm:3.0.0-beta.25" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/numberfield": "npm:^3.9.5" + "@react-stately/slider": "npm:^3.5.6" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/color": "npm:3.0.0-rc.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/41e9ff4c5d965b429a96001d845984b4a9e86fb46b4b340d590f6bfbafd91b454093b921a3eb2c1f5d8884cb59fc0408b0c867972436777b6af2b99eb13d0e44 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/3f17f8613452c3764fd9f02b2b1ad12ffd2e99725568a9979f363e7734915f64260e881b0292e9b9bba1122bde3d784b8cf37d4cb427786f2d3dfc78d47b8f06 languageName: node linkType: hard -"@react-stately/combobox@npm:^3.8.4": - version: 3.8.4 - resolution: "@react-stately/combobox@npm:3.8.4" - dependencies: - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/list": "npm:^3.10.5" - "@react-stately/overlays": "npm:^3.6.7" - "@react-stately/select": "npm:^3.6.4" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/combobox": "npm:^3.11.1" - "@react-types/shared": "npm:^3.23.1" +"@react-stately/combobox@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-stately/combobox@npm:3.9.1" + dependencies: + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/list": "npm:^3.10.7" + "@react-stately/overlays": "npm:^3.6.9" + "@react-stately/select": "npm:^3.6.6" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/combobox": "npm:^3.12.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/0a5863a6d82eab95d0e08a8ffcd92cc6a3f7c35589feeb9bad615d9cbe105f4abcfe1e641898b334b1c34ab84d8d97cf7e3c942175306808eb1b291f1bbc753a + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/9ecf55e98b912e99579fc60d06081b9a251780c3d1b9179739cc66ca1282c8d72cb32331a1d7f0cd387d0dbce2f7b12884e648c2d66774cd14a4e4040dc321bb languageName: node linkType: hard -"@react-stately/data@npm:^3.11.4": - version: 3.11.4 - resolution: "@react-stately/data@npm:3.11.4" +"@react-stately/data@npm:^3.11.6": + version: 3.11.6 + resolution: "@react-stately/data@npm:3.11.6" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/79ae8819cac2cdf0888dbf50bac646ed1d5183b7e565d27894ca2fea8066b4b259acb04d41af21cf8abe9bbf1b96c743c6e05c5b53158888c2917fd482e8e3e2 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/4ed66d6f498ded38f798b94f2226ba6ff207da65227cac51d3cba99f63409e179136a01e1f88a26fcf2c5f2fe8335b9f7bb8fc3a70119557d5cc0bfdb10dd802 languageName: node linkType: hard -"@react-stately/datepicker@npm:^3.9.4": - version: 3.9.4 - resolution: "@react-stately/datepicker@npm:3.9.4" +"@react-stately/datepicker@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-stately/datepicker@npm:3.10.1" dependencies: - "@internationalized/date": "npm:^3.5.4" + "@internationalized/date": "npm:^3.5.5" "@internationalized/string": "npm:^3.2.3" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/overlays": "npm:^3.6.7" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/datepicker": "npm:^3.7.4" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/overlays": "npm:^3.6.9" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/datepicker": "npm:^3.8.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a50188bb2a15b7cddadc2bd6b5a9b81c297bba6820df874472c67fdd66c590cf4ce21fc4af8b2e02e08c3284246deb674743456c8b5d85c20490efcc6491a785 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/86b933c945a66267a5ec0060ae847ad44148de85d1e18ac3e2c8b419470bbd6e3594a2b373c25e310782e1debfe43f9ed6686452d4c185ceb8296d800f3479f1 languageName: node linkType: hard -"@react-stately/dnd@npm:^3.3.1": - version: 3.3.1 - resolution: "@react-stately/dnd@npm:3.3.1" +"@react-stately/dnd@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-stately/dnd@npm:3.4.1" dependencies: - "@react-stately/selection": "npm:^3.15.1" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/selection": "npm:^3.16.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/100a5a32ade132ae18887354547d704c2cd78e0b8e572009e589563a1947f9c72bfcbc62c46598692106c733107a53033144f288e82db99557137d144b0465bb + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/dc62e22041385e03cfd2d35024cf41051ff3908abd19e62b8f88897d3d24e6fd99481d6b271fcd904d9fe55c3f019db16cc32007ec033b031448b906a911b4c3 languageName: node linkType: hard @@ -4312,570 +4351,587 @@ __metadata: languageName: node linkType: hard -"@react-stately/form@npm:^3.0.3": - version: 3.0.3 - resolution: "@react-stately/form@npm:3.0.3" +"@react-stately/form@npm:^3.0.5": + version: 3.0.5 + resolution: "@react-stately/form@npm:3.0.5" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d89c2099455e84cd0c77f6c8f3204f790aaab90a4e713f77269ab1a13229daa222906b7bf5d12188380cebb041a48c7d4c60676c920d5f2d27c577ee90a86b5e + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/2cc3e7f0c1489947be1fca08402fae13786e3b8c9bdd78189945ea8521f0c06da8ed1c83dc144be12420c6253a4c1ffe421768ba1dc41462bcdd38d8c15449e5 languageName: node linkType: hard -"@react-stately/grid@npm:^3.8.7": - version: 3.8.7 - resolution: "@react-stately/grid@npm:3.8.7" +"@react-stately/grid@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-stately/grid@npm:3.9.1" dependencies: - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/selection": "npm:^3.15.1" - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/selection": "npm:^3.16.1" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/9f727ef1129ec03b4ab311e56e6ea46bd042e25a4b8adec89a1177c67dbc13b67e15191d69d10d328478d1460651c6bee2afa212a3de1951fd49cbe8ee6f4231 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/580cb7f0baf14a7b361d5bc6a9f17aa0649f3dbbf80e7bd09532ef9c5f857d2c62586f19d40605724322ca694e65f60902c9e38b029b0995cdaf9b58a01b9012 languageName: node linkType: hard -"@react-stately/list@npm:^3.10.5": - version: 3.10.5 - resolution: "@react-stately/list@npm:3.10.5" +"@react-stately/layout@npm:^4.0.1": + version: 4.0.1 + resolution: "@react-stately/layout@npm:4.0.1" + dependencies: + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/table": "npm:^3.12.1" + "@react-stately/virtualizer": "npm:^4.0.1" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" + "@react-types/table": "npm:^3.10.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/317f0fa99d42390f16382968a1d77dc4f72af1916c5b4a1ef3067a13c13328934ba4aaadb800b7d665a035e41059c12116ff3397b3e29ddde37915c3c1f5f956 + languageName: node + linkType: hard + +"@react-stately/list@npm:^3.10.7": + version: 3.10.7 + resolution: "@react-stately/list@npm:3.10.7" dependencies: - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/selection": "npm:^3.15.1" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/selection": "npm:^3.16.1" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/14ce16f56ed8614701a2eb1dd6f31b17ec1ae87775576ff9d24a80079634c706590b77de07bfa0da7d20424f83fa33e12365df749ab893680ab163fa899e68fb + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/d44449e8e75e9407cc7987fe525a05bb30043bcc5f5f4f6a96793210958a31dcae899b56feea67a63cdeb0ea9cf8a0ec37ca2f166a9c132497910c0aaf9a11ec languageName: node linkType: hard -"@react-stately/menu@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-stately/menu@npm:3.7.1" +"@react-stately/menu@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-stately/menu@npm:3.8.1" dependencies: - "@react-stately/overlays": "npm:^3.6.7" - "@react-types/menu": "npm:^3.9.9" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/overlays": "npm:^3.6.9" + "@react-types/menu": "npm:^3.9.11" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/7574fbc461ce6686650aceeec6a6af1758983938cdeb0a67e808c389b6867970da75048c5c4cdca807e3ed4c58408e569216bb1b8903a98f232e69c5ed79faf9 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/88e9f74b0945a53e1923cb50aece08385dde0f066a1e4d5b3352083a35b9ea1742529f608b85119afae3173130679232b45de68c06f8790b9e9daddd3725e1a6 languageName: node linkType: hard -"@react-stately/numberfield@npm:^3.9.3": - version: 3.9.3 - resolution: "@react-stately/numberfield@npm:3.9.3" +"@react-stately/numberfield@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-stately/numberfield@npm:3.9.5" dependencies: "@internationalized/number": "npm:^3.5.3" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/numberfield": "npm:^3.8.3" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/numberfield": "npm:^3.8.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/e67979f4327b951b63720ae5ef00a42c2358f2c6a7ecd87aab218a891bc192a369b330f8cdb00d9d9c086e36a2eb96c3faa001225e636c68cbb5efdd865997a2 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/5d09ba57bed700217adaecad123e41e7b53d80a960d03a86e31fe1b0d6527f0f38393f815fbfb89b81faa48bf2c939b8b9e177e68f0bf1246fc7abbca0741afe languageName: node linkType: hard -"@react-stately/overlays@npm:^3.6.7": - version: 3.6.7 - resolution: "@react-stately/overlays@npm:3.6.7" +"@react-stately/overlays@npm:^3.6.9": + version: 3.6.9 + resolution: "@react-stately/overlays@npm:3.6.9" dependencies: - "@react-stately/utils": "npm:^3.10.1" - "@react-types/overlays": "npm:^3.8.7" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/overlays": "npm:^3.8.9" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/061f54d71de0f9c436393d48d21af7780003f48719e87e21fdbddd7b01abfb200dd91ca5a4dcce0498e9683780cd1f3f9470be9a365250aa82911ba184279bb5 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/00844cad963c65d23063f4eb2bceff40308f009dcf06e8e4186b8cbe4db2b8b6d5214be3b6bdbc201346c56d0abce1d9d7744d89167430db75fe4e9d15ed9ec3 languageName: node linkType: hard -"@react-stately/radio@npm:^3.10.4": - version: 3.10.4 - resolution: "@react-stately/radio@npm:3.10.4" +"@react-stately/radio@npm:^3.10.6": + version: 3.10.6 + resolution: "@react-stately/radio@npm:3.10.6" dependencies: - "@react-stately/form": "npm:^3.0.3" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/radio": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/radio": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/9be023632c4bdeeef958d0aae4cc61644bb1f2f9700dbb0d5cf0fbfced58ed2c2c449a22e95bed8830647ad4a02ebfb8695bd3c381acd6e4574ced498a92b5d8 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/601eb503faeabb443baf7c309a5f1d1ee75b98f244fbddaf8f0186529caf67f6fad31aab182c8592c09f6781927d60fff45968f5f3602c73f041d7143782d702 languageName: node linkType: hard -"@react-stately/searchfield@npm:^3.5.3": - version: 3.5.3 - resolution: "@react-stately/searchfield@npm:3.5.3" +"@react-stately/searchfield@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-stately/searchfield@npm:3.5.5" dependencies: - "@react-stately/utils": "npm:^3.10.1" - "@react-types/searchfield": "npm:^3.5.5" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/searchfield": "npm:^3.5.7" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/c26168cb48b6fed1afecda2bc096aad983666b3ebcce1e90e683807c491cd6927dfe2f630f0a1a785de8de16775897ad6682040a0102b84f8ab312e53873f8c0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/daf8f68a8db159e92ecf7d4fae12bc795abc665bbb348521ec2a40f879875d63126eb5eecb1a217b5fec0228b2597492805728d76c47df0257aa304fe2cefe85 languageName: node linkType: hard -"@react-stately/select@npm:^3.6.4": - version: 3.6.4 - resolution: "@react-stately/select@npm:3.6.4" +"@react-stately/select@npm:^3.6.6": + version: 3.6.6 + resolution: "@react-stately/select@npm:3.6.6" dependencies: - "@react-stately/form": "npm:^3.0.3" - "@react-stately/list": "npm:^3.10.5" - "@react-stately/overlays": "npm:^3.6.7" - "@react-types/select": "npm:^3.9.4" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/list": "npm:^3.10.7" + "@react-stately/overlays": "npm:^3.6.9" + "@react-types/select": "npm:^3.9.6" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/25ed84df9f2b56a7e03fa6214845d88b4090ebfb3868a0a29c507e24879bd2db7abb24df0f6aeacabd3ea0b0e9759c0e1b2689634b82a4a1c856f47dabc3383a + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/dd4619bfee475a6137b403172405d36b9bfc6048b3df9f3e14f9f79c57c1c01f7dfd2dd8017ab58df87653feab64031e3fd1287175f3ef49a3fedbf31715ddb2 languageName: node linkType: hard -"@react-stately/selection@npm:^3.15.1": - version: 3.15.1 - resolution: "@react-stately/selection@npm:3.15.1" +"@react-stately/selection@npm:^3.16.1": + version: 3.16.1 + resolution: "@react-stately/selection@npm:3.16.1" dependencies: - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4926d0c67b92ced4b9fcc2c092e693fd12e9a3b94bdd4a1ba0c5cdb76d399c5cc45ba814901bf9547a031e1af1e0d7ca21d2be7e5539d17b6a20f47044469276 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/453b883963de8c47a41274145edf7b3a5fffc60443d2ab2c34a139654c0b5741c674829b8bed01d098a9d5285fe62d97b2386f3739f4909fec4c3399e181d4df languageName: node linkType: hard -"@react-stately/slider@npm:^3.5.4": - version: 3.5.4 - resolution: "@react-stately/slider@npm:3.5.4" +"@react-stately/slider@npm:^3.5.6": + version: 3.5.6 + resolution: "@react-stately/slider@npm:3.5.6" dependencies: - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" - "@react-types/slider": "npm:^3.7.3" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" + "@react-types/slider": "npm:^3.7.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/9af16a9b69d2899827ca1a79630978999784a08ab800998486e0788bd37168d98dab75cc66a92679dbe26db1ae9b2b7af84459e4f35d0a57455322cba3c03483 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c782a9ba8e45e3b01d7b7e165a24a566262424d101b81d1d57c105aaa781cd09c5ba2a7cac4075068facba5688e4a244128b375358e627dd6f274522c1301473 languageName: node linkType: hard -"@react-stately/table@npm:^3.11.8": - version: 3.11.8 - resolution: "@react-stately/table@npm:3.11.8" +"@react-stately/table@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-stately/table@npm:3.12.1" dependencies: - "@react-stately/collections": "npm:^3.10.7" + "@react-stately/collections": "npm:^3.10.9" "@react-stately/flags": "npm:^3.0.3" - "@react-stately/grid": "npm:^3.8.7" - "@react-stately/selection": "npm:^3.15.1" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" - "@react-types/table": "npm:^3.9.5" + "@react-stately/grid": "npm:^3.9.1" + "@react-stately/selection": "npm:^3.16.1" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" + "@react-types/table": "npm:^3.10.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a473010b2a8c6674192a3b7d0cacca18174600f5dc0c0320eb4575a5d2b973b2c57b8757fc154a2f8c97367b7e306f8e2ab6a51bfa6357f861adc50f1ff69503 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/4ece48c976321c05e3996417f0e650353fc03888ce554a186d3961c883e888ac80073f9d33f76ad8449d7e74dcae6de9829c9fb0d40517dfbc2a6eec25b80ba0 languageName: node linkType: hard -"@react-stately/tabs@npm:^3.6.6": - version: 3.6.6 - resolution: "@react-stately/tabs@npm:3.6.6" +"@react-stately/tabs@npm:^3.6.8": + version: 3.6.8 + resolution: "@react-stately/tabs@npm:3.6.8" dependencies: - "@react-stately/list": "npm:^3.10.5" - "@react-types/shared": "npm:^3.23.1" - "@react-types/tabs": "npm:^3.3.7" + "@react-stately/list": "npm:^3.10.7" + "@react-types/shared": "npm:^3.24.1" + "@react-types/tabs": "npm:^3.3.9" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/cd46ac05290f235a566cd8b67bf471e435e6effc5fa8b0cfa3ed4d3bcbaeb991d22c49e161f95aa177e5a1366d7b81dc4ac54a6e82d7aa9c17ee412ea4bb4fce + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/40ef360d65918ceea4215718a908c736cadcd9b5ba327dae8c8c504312f5d3704452851b6b7842d689c123ccd88dd19994ce4fdb94e7da02f179d8ddcf3bbd00 languageName: node linkType: hard -"@react-stately/toggle@npm:^3.7.4": - version: 3.7.4 - resolution: "@react-stately/toggle@npm:3.7.4" +"@react-stately/toggle@npm:^3.7.6": + version: 3.7.6 + resolution: "@react-stately/toggle@npm:3.7.6" dependencies: - "@react-stately/utils": "npm:^3.10.1" - "@react-types/checkbox": "npm:^3.8.1" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/checkbox": "npm:^3.8.3" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d0d4260e9434120699fe25266ce1db8ebd74bf0c2b18c838db23e9f2f7337b5e8fc9eff7a0d1edc210a947b3b87e8bda70b095c26cd32d226ff64ae1f561be63 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/9ddba3613538b068edc0b2c55a86c1504ef86b1931253fe92df54defe2652c7eeb0eba857b32a629507ef03e66651991b8410fcde5a7522c1892bc2d6f95b517 languageName: node linkType: hard -"@react-stately/tooltip@npm:^3.4.9": - version: 3.4.9 - resolution: "@react-stately/tooltip@npm:3.4.9" +"@react-stately/tooltip@npm:^3.4.11": + version: 3.4.11 + resolution: "@react-stately/tooltip@npm:3.4.11" dependencies: - "@react-stately/overlays": "npm:^3.6.7" - "@react-types/tooltip": "npm:^3.4.9" + "@react-stately/overlays": "npm:^3.6.9" + "@react-types/tooltip": "npm:^3.4.11" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/f5ec609a90970926833cc29e626a26e485ef51a3a1315ac7f4e52708b4cbbb1c33f95952dc901e8b9bb439ac663195ed5ab2db8ac39918562a8427aba1fb9f99 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/e0aa0d04f5cc6c20eb81438502e349e14ecf25b547de49d8936909f2402e6114455acb405ece722aa8c08015330a64cabc950879e0d32fbb6e039c9185bd59ff languageName: node linkType: hard -"@react-stately/tree@npm:^3.8.1": - version: 3.8.1 - resolution: "@react-stately/tree@npm:3.8.1" +"@react-stately/tree@npm:^3.8.3": + version: 3.8.3 + resolution: "@react-stately/tree@npm:3.8.3" dependencies: - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/selection": "npm:^3.15.1" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/shared": "npm:^3.23.1" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/selection": "npm:^3.16.1" + "@react-stately/utils": "npm:^3.10.2" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/24ab312778bb49f612047e889afbed5a47a790bb2b6952c0181bb5fae15fadc6ab3ee18dbd22176b56a9701c41dbc1ca96b46bc3218dbc1b517b7b1dbc9a9d20 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/81adfd95237610fc51524805aa8a067cdd81a2986daf8aeffeeb7ecd724b20e9eeeb54066cfad401c5640e46f34a285b360c36c56a7eb95e4a1591c9882ed8f0 languageName: node linkType: hard -"@react-stately/utils@npm:^3.10.1": - version: 3.10.1 - resolution: "@react-stately/utils@npm:3.10.1" +"@react-stately/utils@npm:^3.10.2": + version: 3.10.2 + resolution: "@react-stately/utils@npm:3.10.2" dependencies: "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b3fc1367eb26afa1d7a4e3d5cf5cf215be4a4698296db25d34a9096a9eb79cff5c3770da48989970e6b6734199bfb9a10c31cd62a39b20980b2ede78061f8ee9 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/ba71e6c4dccf11e66d6ddeb06a53046a46fa282039e6af8723e851285ea25db0f0c5632527a3dd1a37a968e8b0001dc0f0414bac85dec750ae455b263f2ed1a4 languageName: node linkType: hard -"@react-stately/virtualizer@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-stately/virtualizer@npm:3.7.1" +"@react-stately/virtualizer@npm:^4.0.1": + version: 4.0.1 + resolution: "@react-stately/virtualizer@npm:4.0.1" dependencies: - "@react-aria/utils": "npm:^3.24.1" - "@react-types/shared": "npm:^3.23.1" + "@react-aria/utils": "npm:^3.25.1" + "@react-types/shared": "npm:^3.24.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b40b095cd57d87f2db0533ca19cd5572d47b020cca1410b3e9627003426f3be0cd3fab48d20ef30b541e852eeea285993e8ed65c09a32ff199240c4196999812 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/2514306ae54e3893d60893f0f55bf47a53da754d33fc7a3608bbd56ed12fec9fc4d9feee541d34e30ecf2545d7c65d219cac5246d705f36bc972bbed2848b981 languageName: node linkType: hard -"@react-types/breadcrumbs@npm:^3.7.5": - version: 3.7.5 - resolution: "@react-types/breadcrumbs@npm:3.7.5" +"@react-types/breadcrumbs@npm:^3.7.7": + version: 3.7.7 + resolution: "@react-types/breadcrumbs@npm:3.7.7" dependencies: - "@react-types/link": "npm:^3.5.5" - "@react-types/shared": "npm:^3.23.1" + "@react-types/link": "npm:^3.5.7" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/bf9a7e5f3eafaf007d0ba561f20849c2d1ad07ea973f6ee05ecb0826d4175fb49c86c4d0a2aaa56e343ed5b00c347661eef98dd2870c46130b1e1e843bc80747 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0fdf88ddab7a92a8e8f0f52a5df5f58ee97fc0f86f15c02f9aad146a4c1e4f0e97e82064d503f6cfcb2439b9f42479dafeebb1fda29eef5e4fbfbdb816f28093 languageName: node linkType: hard -"@react-types/button@npm:^3.9.4": - version: 3.9.4 - resolution: "@react-types/button@npm:3.9.4" +"@react-types/button@npm:^3.9.6": + version: 3.9.6 + resolution: "@react-types/button@npm:3.9.6" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/aebbbbb61320c78ea41ebc51ce8b1bf4a08952dde17e2de96a5f0e1f49e9d9a3d9fc74862448f28eedde0230f2d07c25ed06138964d5c1b3892ced1d80470872 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/348096091b39b9cfeaf3b11b4ff262652954ea1793008aa2acc005ca32f299db550f08fe076498501547c2a9a06c46d2000f202fc0dbe853a1202d6523b71449 languageName: node linkType: hard -"@react-types/calendar@npm:^3.4.6": - version: 3.4.6 - resolution: "@react-types/calendar@npm:3.4.6" +"@react-types/calendar@npm:^3.4.8": + version: 3.4.8 + resolution: "@react-types/calendar@npm:3.4.8" dependencies: - "@internationalized/date": "npm:^3.5.4" - "@react-types/shared": "npm:^3.23.1" + "@internationalized/date": "npm:^3.5.5" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/347f800f056c90e8bd6928fcb7377c6cbaf596296ea7f20059d650ae7a192a5aa83deb874edd85955453e03a5112cbb2e586f66652158044dba3035aa653674a + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/4c98c46033854d1d0dc591437fd1c0ec50ad49d7bfab4714d579273e25be5e935a679a57fcf288f076c605da9b267f38acf45ba66a5ebf017757ea7e6f598c41 languageName: node linkType: hard -"@react-types/checkbox@npm:^3.8.1": - version: 3.8.1 - resolution: "@react-types/checkbox@npm:3.8.1" +"@react-types/checkbox@npm:^3.8.3": + version: 3.8.3 + resolution: "@react-types/checkbox@npm:3.8.3" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a5dc85c06aed4e96f39dd2357bebf866f3abb59c5966b7307a1d6702d54aa0b252e3eba428af49cd0cd9e575961272ec307b1a4e09d72a936880b7388313bb26 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/1626aebbfc92852a657ab9f302d72fe8dc99a58518c31023f2196acd887cf74ccc328b88a9453f22ae018e6cb1b5c80efe10a1156689e5d20d2ba6ef074c082d languageName: node linkType: hard -"@react-types/color@npm:3.0.0-beta.25": - version: 3.0.0-beta.25 - resolution: "@react-types/color@npm:3.0.0-beta.25" +"@react-types/color@npm:3.0.0-rc.1": + version: 3.0.0-rc.1 + resolution: "@react-types/color@npm:3.0.0-rc.1" dependencies: - "@react-types/shared": "npm:^3.23.1" - "@react-types/slider": "npm:^3.7.3" + "@react-types/shared": "npm:^3.24.1" + "@react-types/slider": "npm:^3.7.5" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/1f0598949e73088e69fc5637fdb6e32662b8b47f0e7d9bfaf5f9f9ef8a5bbaad5b40771ff40e4fbb0cb353ab2002396c1889b554dad8aadb223178b40a851cdb + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/f593dd2665052939ef0c8f811060f27c4f90c5b5b39758c3d0cb8813c980c578969b6625a5ef6486c35a2557d9d8fa21576958ec127948d16d8d4e4a6d110c21 languageName: node linkType: hard -"@react-types/combobox@npm:^3.11.1": - version: 3.11.1 - resolution: "@react-types/combobox@npm:3.11.1" +"@react-types/combobox@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-types/combobox@npm:3.12.1" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/0f5539a2c721b4f1d8cf343924f269dc7b82502b6f7aa032b79521320f4dd1761e3908c5d671fb207866c1652ffb67ecab4c8baba7be521f54fb04713478c9e3 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/ad7f5f13a9e6b1d9737b0110821c35a7b01a446815de4fe5fe6c14ad57460533878259acfba360b79f14d2691ebc00e667b330f3d7d3aee1d20c079d0ba4ada0 languageName: node linkType: hard -"@react-types/datepicker@npm:^3.7.4": - version: 3.7.4 - resolution: "@react-types/datepicker@npm:3.7.4" +"@react-types/datepicker@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/datepicker@npm:3.8.1" dependencies: - "@internationalized/date": "npm:^3.5.4" - "@react-types/calendar": "npm:^3.4.6" - "@react-types/overlays": "npm:^3.8.7" - "@react-types/shared": "npm:^3.23.1" + "@internationalized/date": "npm:^3.5.5" + "@react-types/calendar": "npm:^3.4.8" + "@react-types/overlays": "npm:^3.8.9" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/d323c6d8e8e8162cb59e1b8ef65c54271cf36f7b6e04c6279712294a2d0a47c037d9b93501950bfcb527a24ee97c9196201357ce74577386762b9effb0dc5e67 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/135aca9387dba1fe2c5b2e40228c464f939bb1f78d64dfa70ea735c01e1c9de7c92b8091cb1369a95cb0eb95ae5d71079b9fa0e96fde06e02bc84968fda2c856 languageName: node linkType: hard -"@react-types/dialog@npm:^3.5.10": - version: 3.5.10 - resolution: "@react-types/dialog@npm:3.5.10" +"@react-types/dialog@npm:^3.5.12": + version: 3.5.12 + resolution: "@react-types/dialog@npm:3.5.12" dependencies: - "@react-types/overlays": "npm:^3.8.7" - "@react-types/shared": "npm:^3.23.1" + "@react-types/overlays": "npm:^3.8.9" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/56d49adb78bfdcf4252ca784c7f0a7ccfc1e766f909a24d2864ab988e948c0f82b7bd04be3d023dcc1f69395502fbbf09214f00624499e0c6342d5167420d5bd + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/10d00b738f49298cea9975377b0f3cecd56592bb1b6561a8fa6323bd6f11fb3e9c83ed3d0f01a349312ec3d196164602099a0664789fe2a0850d6a8986bce822 languageName: node linkType: hard -"@react-types/form@npm:^3.7.4": - version: 3.7.4 - resolution: "@react-types/form@npm:3.7.4" +"@react-types/form@npm:^3.7.6": + version: 3.7.6 + resolution: "@react-types/form@npm:3.7.6" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/24c84e455f27f170f32c616e99baa0c44f8686c5d1573c6f4ae9791d95dec095c3a0f745bcac6d63212187476d58cef0c9766f968376d98ecd3d517f3c24d7fe + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/f86e791972b4e8f0416562020d94bc2badee8fe11b99f5274921136c07bee92eed656621c6c3c277dae4ec7365b1a4d3d63f5f90dd58e0ad2ac9d6f9bda34b0f languageName: node linkType: hard -"@react-types/grid@npm:^3.2.6": - version: 3.2.6 - resolution: "@react-types/grid@npm:3.2.6" +"@react-types/grid@npm:^3.2.8": + version: 3.2.8 + resolution: "@react-types/grid@npm:3.2.8" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/a1da4fe93186c32b59c9f3f8506bf92c01a909d72de136ec277c877a26ebdae7d9fae1505de2b90ed3cfa118c300d58192eaf8cb0f2bb1a48b27329e37c5ee16 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/c595e234a65420e39eb14d7062b8288bf710b6c165f32675200159b81706a052588fae6b1cdbd66bdeb6e8e66438f164b030d9ceba5ea97e6a8857098246635f languageName: node linkType: hard -"@react-types/link@npm:^3.5.5": - version: 3.5.5 - resolution: "@react-types/link@npm:3.5.5" +"@react-types/link@npm:^3.5.7": + version: 3.5.7 + resolution: "@react-types/link@npm:3.5.7" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/45ed617810314eaddc1a0472a360de8e1ca9c955baa319d51e22e822fb0194e62fc1fee225d6e9a9a8fba7f044d607cb510cd6d20bb53dd144fd751dc550fa81 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/343ac70377ebb861f7082b2828d291aa86c043fc0aea9b8a1c35676d3fccc3fa089c2208153f99f93a4274e00a1e82cbf7c4a42f562c47723f49841d58400246 languageName: node linkType: hard -"@react-types/listbox@npm:^3.4.9": - version: 3.4.9 - resolution: "@react-types/listbox@npm:3.4.9" +"@react-types/listbox@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-types/listbox@npm:3.5.1" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/6f536c06d1a9fe9e2fa24b7bae3cabfec1474e65e3a9bea41eef128984cf5a83ab8f8dd0f22033a61f09e0f725024687590c9d2a8430024c96a583196d97f1c6 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/f215dcf145d17342923760f10d4624bd673bfa4216714c5b8f0a4d7cac928df9bb9b49d18b25375e8c2ae18b0826c3379a797d07709008a7690baf75342ae77a languageName: node linkType: hard -"@react-types/menu@npm:^3.9.9": - version: 3.9.9 - resolution: "@react-types/menu@npm:3.9.9" +"@react-types/menu@npm:^3.9.11": + version: 3.9.11 + resolution: "@react-types/menu@npm:3.9.11" dependencies: - "@react-types/overlays": "npm:^3.8.7" - "@react-types/shared": "npm:^3.23.1" + "@react-types/overlays": "npm:^3.8.9" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/efa730a42a7152613e15bf967f6cda74dcd365d81cbda3a018f926f546d19f6c09f1eaf7a2e834f2cdfccccde68d1e909413e058a61f15e1f98695b26a103ea6 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/94ec3aea30b2213d89e764582050302bf0f8ddc2b08316028c971e3b73f7dfa09b9683761e102066b3fd7311e5263fd72d67c60a929f2612a4572ea4d2294ddd languageName: node linkType: hard -"@react-types/meter@npm:^3.4.1": - version: 3.4.1 - resolution: "@react-types/meter@npm:3.4.1" +"@react-types/meter@npm:^3.4.3": + version: 3.4.3 + resolution: "@react-types/meter@npm:3.4.3" dependencies: - "@react-types/progress": "npm:^3.5.4" + "@react-types/progress": "npm:^3.5.6" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/553c823cfa591f512e11fb2cb269cd88ee629da267cf0e98ee0fbafcbf4537a582dde0070f2d783d349c12813ed797e95b83bf56e9bfc380a14ba3680578655b + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/9a4ab3a6705c4ab2b01c05bb51b25735bcbce50c215518b720765bf7b0e3ee628643792e53fcfef06d459cf9268fda2f503cb8e8dddc27d0bc407ffc75fbad1c languageName: node linkType: hard -"@react-types/numberfield@npm:^3.8.3": - version: 3.8.3 - resolution: "@react-types/numberfield@npm:3.8.3" +"@react-types/numberfield@npm:^3.8.5": + version: 3.8.5 + resolution: "@react-types/numberfield@npm:3.8.5" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/4ed826ea05a90cb798b267007ec6ab3aa03844c71b04ca01113ac6ddef10d3d278909e4388454f41558f91ea51c25977a9bc02c02aa834104b0a1ec643af9297 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/9cc67e6b63f62cf49079bdbb1ea89d49e93a7e20b3f36b185625a68b666c33d79c9bf69af81a3f298cccdc4803547daf213d0047420a3a3f22c2372619a05ee8 languageName: node linkType: hard -"@react-types/overlays@npm:^3.8.7": - version: 3.8.7 - resolution: "@react-types/overlays@npm:3.8.7" +"@react-types/overlays@npm:^3.8.9": + version: 3.8.9 + resolution: "@react-types/overlays@npm:3.8.9" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/758eed6a2a13128c40585dd4e47bdc807d49ecf7b12822ec9aa84c5797604c67fe4750300253805a4206feddb0f0bbc01e8f70666aff299dce51b3aeda46c4d2 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b657c912dea8007d6b95a54c8075a844784b4bf1e82a104d60d1b403cbcdfdbe936837230a981029671edea09ddac51807b22e8b02da97e2e4c4a7648daa6c61 languageName: node linkType: hard -"@react-types/progress@npm:^3.5.4": - version: 3.5.4 - resolution: "@react-types/progress@npm:3.5.4" +"@react-types/progress@npm:^3.5.6": + version: 3.5.6 + resolution: "@react-types/progress@npm:3.5.6" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/756cf6b1a2b697f4a2152e454da679ce5ed98172ddc68e86433db8d047a4623b6b00808436e4f65ce5253343cd566cf6fe94d486476fb6e55849d182fd182590 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/6d35871c562c61be5d87385feb5247055189758742439391c888e9ebe149c41a59f454d4c814f2f457e7b8b88675ef821bf79a215f4ebbaddadfc9049da7d0fc languageName: node linkType: hard -"@react-types/radio@npm:^3.8.1": - version: 3.8.1 - resolution: "@react-types/radio@npm:3.8.1" +"@react-types/radio@npm:^3.8.3": + version: 3.8.3 + resolution: "@react-types/radio@npm:3.8.3" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/6caa15aafc76f4c09be63a307c7ff02ebc6404c4ef3b64b4c43a904be49f8640ba91845cffe0c05e7e77d84a63aa1ac6332d30f2fcf560d3c6d15ea58833910a + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/3b82b56276c95eef9d655e3f11225f11a1450a4580885dc65d261345df28f99c23db78750113b0bf9c73496f846f4bb3005ebb1afba1c3d1e1f537d85b394521 languageName: node linkType: hard -"@react-types/searchfield@npm:^3.5.5": - version: 3.5.5 - resolution: "@react-types/searchfield@npm:3.5.5" +"@react-types/searchfield@npm:^3.5.7": + version: 3.5.7 + resolution: "@react-types/searchfield@npm:3.5.7" dependencies: - "@react-types/shared": "npm:^3.23.1" - "@react-types/textfield": "npm:^3.9.3" + "@react-types/shared": "npm:^3.24.1" + "@react-types/textfield": "npm:^3.9.5" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/455c9a2d8e76194dcae9ec216c05472646c998e9bce6a53cc7b119f2df9b9b139de4acf31485d9137c49dce7f2468ae48aa647a3bb8a644080f143718f0b4658 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/14ecb2a37af4cd3db470a01b7d2689c4a4d465577fe6e7600d36b084b42daa5721975cae2a73f3c2f5dc74eae85e570b1dffe81338610de308da55ed1961d751 languageName: node linkType: hard -"@react-types/select@npm:^3.9.4": - version: 3.9.4 - resolution: "@react-types/select@npm:3.9.4" +"@react-types/select@npm:^3.9.6": + version: 3.9.6 + resolution: "@react-types/select@npm:3.9.6" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/630f1ac7381e61e91546ee1dd567928d1b0cd151d699c1b3e7a5ad7824aa1f786c1d4efd70ff6626f8cf80eac2ae9666a1d18b7fd72c31ff41073da50abac622 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b9e66a3dbdfe072fbd85c6b8b78432a4fce7d736ba994bf17929ee96cc22548c41a67b836ab27aa5a888eb8f3796f0b9299e07b5fc0d8e475ecbdcd894126d01 languageName: node linkType: hard -"@react-types/shared@npm:^3.23.1": - version: 3.23.1 - resolution: "@react-types/shared@npm:3.23.1" +"@react-types/shared@npm:^3.24.1": + version: 3.24.1 + resolution: "@react-types/shared@npm:3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/1ea30702a408554e45b827e66ebf2a9674aec7d7d04a4f3723f2fe1c677be36701d5f08d4914d6018c4bcb6f2fe07d8c3a5840dfe3299ee69092b78c723c9c03 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/5472ae35f65b2ed7c12d5ea4459f34b4aec065d2633844031d27945495b6dca6fa9bf02b6392b901fac97252e58d9b91a4baf53f4c281397fb81ce85c73b8648 languageName: node linkType: hard -"@react-types/slider@npm:^3.7.3": - version: 3.7.3 - resolution: "@react-types/slider@npm:3.7.3" +"@react-types/slider@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-types/slider@npm:3.7.5" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/583cf97a5fd8150cff44ef9449192a10d5dc3111ad401cc72e6f961158e3369f8115e5858e5998687f5e936ffa8ff037d043ffaa3caf93dfe3f4a37d613fc6aa + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/b15f289769bde39af8a68277d2d276f5cb1aba5ea60d457b2613e50c3b58641e5e409a207089659396df8ec19666dcc692b8a24bec929942fcb3e9245613d408 languageName: node linkType: hard -"@react-types/switch@npm:^3.5.3": - version: 3.5.3 - resolution: "@react-types/switch@npm:3.5.3" +"@react-types/switch@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-types/switch@npm:3.5.5" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/b9ceadf6f2e0a18653f6762359767620c7381cba147da71180e3bc15f4f5df1b7e874bcd313f6a93bbeda40ebfd2daa5f5e6bd58f4bde07aefc965fae78cf9b8 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/9bc4998aa431230dc6801a47a1afa3788612a7eecee91bab03a094bc00f97102417befa09bd590a180aaa53361361e6d83798de2202d6dadcdee9938de392052 languageName: node linkType: hard -"@react-types/table@npm:^3.9.5": - version: 3.9.5 - resolution: "@react-types/table@npm:3.9.5" +"@react-types/table@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-types/table@npm:3.10.1" dependencies: - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/e982e76fd87e0d6c9b0a15ca7c7315aac03ab14eba469385e9974237af18d5f7ee937682b62d4e9851e2ed4c0a1504e13b5cf57df848ad622ef9a7a1aa250546 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/5d3cd493429be4d7fc18065dfcff84d49db0f464528ebbc1c8723a7abf34d522c8aba4ee9fd6edf86e774816cfa7ed7fd21f3b9f5a4138824a2fe7b2fb86113b languageName: node linkType: hard -"@react-types/tabs@npm:^3.3.7": - version: 3.3.7 - resolution: "@react-types/tabs@npm:3.3.7" +"@react-types/tabs@npm:^3.3.9": + version: 3.3.9 + resolution: "@react-types/tabs@npm:3.3.9" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/83ca1ddb6890c00c7920c81b8aedfbfe940776f430ceb78651897ded54e1f478dc6f9e755a8a92796dd4607296a53dd54ec298f7dede1e2b4ca593b6c210c484 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0203ae93366111d735a33d580989c02edc66b7aefcf80054eb419fc9d11d9925a61a4c485bc276e318852dab83f7ba6b10e6daa8f276b3fc84238b7aa29601da languageName: node linkType: hard -"@react-types/textfield@npm:^3.9.3": - version: 3.9.3 - resolution: "@react-types/textfield@npm:3.9.3" +"@react-types/textfield@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-types/textfield@npm:3.9.5" dependencies: - "@react-types/shared": "npm:^3.23.1" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/8fc6f551d57ae0ea31f1386475d613444835253abc04e2acaa00a3779c0e8755a501f0756276fbfc00190e194f7b2350e00a60bf0defeaff3fd29f5b8ca7dd4d + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/e4ca788713dc1b8d48a2c7c5e68af7ec68fce75789b206dff97e9af4061bba0ebc9bbe5c8feff50038e5884b3f64e715fda2cda013cd67838abdeb2250255239 languageName: node linkType: hard -"@react-types/tooltip@npm:^3.4.9": - version: 3.4.9 - resolution: "@react-types/tooltip@npm:3.4.9" +"@react-types/tooltip@npm:^3.4.11": + version: 3.4.11 + resolution: "@react-types/tooltip@npm:3.4.11" dependencies: - "@react-types/overlays": "npm:^3.8.7" - "@react-types/shared": "npm:^3.23.1" + "@react-types/overlays": "npm:^3.8.9" + "@react-types/shared": "npm:^3.24.1" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/9f25925f182d3827c96e4f3a3e71379ec362e12c637744830785480cbf57ad64fbb529090bf2f871ec6c1213adacfeb30e25135a882ec1f171a0c75b053c02d4 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/cd9e0fb328f46c974fcc43af7e76a3c2ae9c4e00f2bfb601e7b91d0450c43dd6d728d87d7fb29511a8581257036d88b1c7cd8a688aefe944ecc0c5ccc6f40a1a languageName: node linkType: hard -"@remix-run/router@npm:1.17.1": - version: 1.17.1 - resolution: "@remix-run/router@npm:1.17.1" - checksum: 10/5efc598626cd81688ac26e0abd08204b980831ead8cd2c4b8a27e0c169ee4777fc609fa289c093b93efc3a1e335304698c6961276c2309348444ec7209836c83 +"@remix-run/router@npm:1.18.0": + version: 1.18.0 + resolution: "@remix-run/router@npm:1.18.0" + checksum: 10/f878cf246b94368f431a51363f1d33dc35ad11cb910d930476d988825b024a152de87a7f74f0891c3e7182228f892c7f64f94409aae27084c320338dee82caa1 languageName: node linkType: hard @@ -5045,92 +5101,92 @@ __metadata: languageName: node linkType: hard -"@swc/core-darwin-arm64@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-darwin-arm64@npm:1.6.13" +"@swc/core-darwin-arm64@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-darwin-arm64@npm:1.7.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@swc/core-darwin-x64@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-darwin-x64@npm:1.6.13" +"@swc/core-darwin-x64@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-darwin-x64@npm:1.7.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@swc/core-linux-arm-gnueabihf@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.6.13" +"@swc/core-linux-arm-gnueabihf@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.7.2" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@swc/core-linux-arm64-gnu@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-linux-arm64-gnu@npm:1.6.13" +"@swc/core-linux-arm64-gnu@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-linux-arm64-gnu@npm:1.7.2" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-arm64-musl@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-linux-arm64-musl@npm:1.6.13" +"@swc/core-linux-arm64-musl@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-linux-arm64-musl@npm:1.7.2" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@swc/core-linux-x64-gnu@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-linux-x64-gnu@npm:1.6.13" +"@swc/core-linux-x64-gnu@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-linux-x64-gnu@npm:1.7.2" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@swc/core-linux-x64-musl@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-linux-x64-musl@npm:1.6.13" +"@swc/core-linux-x64-musl@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-linux-x64-musl@npm:1.7.2" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@swc/core-win32-arm64-msvc@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-win32-arm64-msvc@npm:1.6.13" +"@swc/core-win32-arm64-msvc@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-win32-arm64-msvc@npm:1.7.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@swc/core-win32-ia32-msvc@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-win32-ia32-msvc@npm:1.6.13" +"@swc/core-win32-ia32-msvc@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-win32-ia32-msvc@npm:1.7.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@swc/core-win32-x64-msvc@npm:1.6.13": - version: 1.6.13 - resolution: "@swc/core-win32-x64-msvc@npm:1.6.13" +"@swc/core-win32-x64-msvc@npm:1.7.2": + version: 1.7.2 + resolution: "@swc/core-win32-x64-msvc@npm:1.7.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@swc/core@npm:^1.3.58, @swc/core@npm:^1.3.68": - version: 1.6.13 - resolution: "@swc/core@npm:1.6.13" - dependencies: - "@swc/core-darwin-arm64": "npm:1.6.13" - "@swc/core-darwin-x64": "npm:1.6.13" - "@swc/core-linux-arm-gnueabihf": "npm:1.6.13" - "@swc/core-linux-arm64-gnu": "npm:1.6.13" - "@swc/core-linux-arm64-musl": "npm:1.6.13" - "@swc/core-linux-x64-gnu": "npm:1.6.13" - "@swc/core-linux-x64-musl": "npm:1.6.13" - "@swc/core-win32-arm64-msvc": "npm:1.6.13" - "@swc/core-win32-ia32-msvc": "npm:1.6.13" - "@swc/core-win32-x64-msvc": "npm:1.6.13" + version: 1.7.2 + resolution: "@swc/core@npm:1.7.2" + dependencies: + "@swc/core-darwin-arm64": "npm:1.7.2" + "@swc/core-darwin-x64": "npm:1.7.2" + "@swc/core-linux-arm-gnueabihf": "npm:1.7.2" + "@swc/core-linux-arm64-gnu": "npm:1.7.2" + "@swc/core-linux-arm64-musl": "npm:1.7.2" + "@swc/core-linux-x64-gnu": "npm:1.7.2" + "@swc/core-linux-x64-musl": "npm:1.7.2" + "@swc/core-win32-arm64-msvc": "npm:1.7.2" + "@swc/core-win32-ia32-msvc": "npm:1.7.2" + "@swc/core-win32-x64-msvc": "npm:1.7.2" "@swc/counter": "npm:^0.1.3" - "@swc/types": "npm:^0.1.9" + "@swc/types": "npm:^0.1.12" peerDependencies: "@swc/helpers": "*" dependenciesMeta: @@ -5157,7 +5213,7 @@ __metadata: peerDependenciesMeta: "@swc/helpers": optional: true - checksum: 10/ccb9c11d5f2e8371f17fca33f7d702433684013fce685d0db06f0b3a6064db476b1c4378bb8f1e9d12841338fc745a6aed056137443cb370d4238b6f4fc5405c + checksum: 10/eef78c419e68d04150ccfb265528491673a914b2df3f8a60a087cf919ebb14a06e342f4b11cdd94f5b2b354de1120a7b6b6372c9ba4e688edf3f9a34f3b7135f languageName: node linkType: hard @@ -5169,11 +5225,11 @@ __metadata: linkType: hard "@swc/helpers@npm:^0.5.0": - version: 0.5.11 - resolution: "@swc/helpers@npm:0.5.11" + version: 0.5.12 + resolution: "@swc/helpers@npm:0.5.12" dependencies: tslib: "npm:^2.4.0" - checksum: 10/54d66ade8010e6ba526a9d73b8bcdbb01c806a24f2d3786640ef3081065e8fba398d9b890df4847744c33d086412fd9a6570b5e99e8001ea1462efc5ce0f3847 + checksum: 10/f04a4728c38a6e75a85b077408e175e1abbc1650a76e4b78008d6380ca1422d9f7f4f9fe61b42f8fb889140f05ced6a5a9983037a8d5d8086bf6bc80a0b2118b languageName: node linkType: hard @@ -5190,12 +5246,12 @@ __metadata: languageName: node linkType: hard -"@swc/types@npm:^0.1.9": - version: 0.1.9 - resolution: "@swc/types@npm:0.1.9" +"@swc/types@npm:^0.1.12": + version: 0.1.12 + resolution: "@swc/types@npm:0.1.12" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10/c67ee0480b7d71c20764c5d99addebc1aacd4aed218f56143fa946132a93ff3e11bdea913c628ad992acf78c4d1fe69e65bb4fd2b81d8006a2edf94661d2fbce + checksum: 10/92dbbc70cd068ea30fb6fbdc1ae8599d6c058a5d09b2923d6e4e24fab5ad7c86a19dd01f349a8e03e300a9321e06911a24df18303b40e307fbd4109372cef2ef languageName: node linkType: hard @@ -5209,8 +5265,8 @@ __metadata: linkType: hard "@testing-library/dom@npm:^10.0.0, @testing-library/dom@npm:^10.1.0": - version: 10.3.1 - resolution: "@testing-library/dom@npm:10.3.1" + version: 10.4.0 + resolution: "@testing-library/dom@npm:10.4.0" dependencies: "@babel/code-frame": "npm:^7.10.4" "@babel/runtime": "npm:^7.12.5" @@ -5220,13 +5276,13 @@ __metadata: dom-accessibility-api: "npm:^0.5.9" lz-string: "npm:^1.5.0" pretty-format: "npm:^27.0.2" - checksum: 10/a78646e775d31b33669274e8baa9c27e6e9ea944131dcdf8d2ac2df7199516d5a9fe483e5ec49c85580399fc2f9efad395876e984b9a4ae520903dec47c773c0 + checksum: 10/05825ee9a15b88cbdae12c137db7111c34069ed3c7a1bd03b6696cb1b37b29f6f2d2de581ebf03033e7df1ab7ebf08399310293f440a4845d95c02c0a9ecc899 languageName: node linkType: hard "@testing-library/jest-dom@npm:^6.4.5": - version: 6.4.6 - resolution: "@testing-library/jest-dom@npm:6.4.6" + version: 6.4.8 + resolution: "@testing-library/jest-dom@npm:6.4.8" dependencies: "@adobe/css-tools": "npm:^4.4.0" "@babel/runtime": "npm:^7.9.2" @@ -5236,24 +5292,7 @@ __metadata: dom-accessibility-api: "npm:^0.6.3" lodash: "npm:^4.17.21" redent: "npm:^3.0.0" - peerDependencies: - "@jest/globals": ">= 28" - "@types/bun": "*" - "@types/jest": ">= 28" - jest: ">= 28" - vitest: ">= 0.32" - peerDependenciesMeta: - "@jest/globals": - optional: true - "@types/bun": - optional: true - "@types/jest": - optional: true - jest: - optional: true - vitest: - optional: true - checksum: 10/94fad29d740ff2c34967c644e2481a472aa8eeb1f11cdec5d4f81f14b2576660387551264c0fa718c15bfc61dd342f7621d888fe3e4ba1b7f830fe65bdd37bc8 + checksum: 10/011e5a309e2cfc0c5cee6454427030d9a5d690df212bedcc78c15ee8d23218c3e51be32617ca879f060445ba0ba38e1b8d224b5ab11444ee076c37ed8c1c123a languageName: node linkType: hard @@ -5431,12 +5470,12 @@ __metadata: linkType: hard "@types/eslint@npm:*": - version: 8.56.10 - resolution: "@types/eslint@npm:8.56.10" + version: 9.6.0 + resolution: "@types/eslint@npm:9.6.0" dependencies: "@types/estree": "npm:*" "@types/json-schema": "npm:*" - checksum: 10/0cdd914b944ebba51c35827d3ef95bc3e16eb82b4c2741f6437fa57cdb00a4407c77f89c220afe9e4c9566982ec8a0fb9b97c956ac3bd4623a3b6af32eed8424 + checksum: 10/39fc797c671ec9c9184802b4974748cf45ee1b11d7aaaaede44426abcafd07ec7c18eb090e8f5b3387b51637ce3fdf54499472d8dd58a928f0d005cbacb573b4 languageName: node linkType: hard @@ -5634,11 +5673,11 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 20.14.10 - resolution: "@types/node@npm:20.14.10" + version: 20.14.12 + resolution: "@types/node@npm:20.14.12" dependencies: undici-types: "npm:~5.26.4" - checksum: 10/672892cf94d0d95cf052f11271990686a0fd204cd1e5fe7a4ef240e5315e06711765dc47b9ec98627d3adac18b8c92bb7e2d8db21d18faa20bc3e3203a143e79 + checksum: 10/9205bf46ef6a99d99cdde9efeb8218cd15803cc407249c2336557cd630b006380dad68c03ee574934414639f8e450044f45530c92788a8e82078bae45ee40f93 languageName: node linkType: hard @@ -5817,11 +5856,11 @@ __metadata: linkType: hard "@types/ws@npm:^8.5.5": - version: 8.5.10 - resolution: "@types/ws@npm:8.5.10" + version: 8.5.11 + resolution: "@types/ws@npm:8.5.11" dependencies: "@types/node": "npm:*" - checksum: 10/9b414dc5e0b6c6f1ea4b1635b3568c58707357f68076df9e7cd33194747b7d1716d5189c0dbdd68c8d2521b148e88184cf881bac7429eb0e5c989b001539ed31 + checksum: 10/950d13b762fc7c092a0fc1450c41229a1d41abb93cb72251068885bd46fa4bbcf461c00df2e77de3f7a547371998b650a720ed90417562af0772b14a8a009dec languageName: node linkType: hard @@ -5842,14 +5881,14 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^7.8.0": - version: 7.16.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.16.0" + version: 7.17.0 + resolution: "@typescript-eslint/eslint-plugin@npm:7.17.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.16.0" - "@typescript-eslint/type-utils": "npm:7.16.0" - "@typescript-eslint/utils": "npm:7.16.0" - "@typescript-eslint/visitor-keys": "npm:7.16.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/type-utils": "npm:7.17.0" + "@typescript-eslint/utils": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" @@ -5860,44 +5899,44 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10/beda6b586bfc953843877395b09acc0525d727dcb77e6ded5fbc645a9008b7e60360ddbaf6a9b7deaf23cd42c206412b7150d8df27f1fe2da3dc24dfab1c8d71 + checksum: 10/f3caba81b7ea4d1b4b097b3de1c51054424ad3d5e37f7af7df64f1c29b6448c535b61e0956f76bfa450b38917923f919a9bab081224c2b5577596caffa6e288a languageName: node linkType: hard "@typescript-eslint/parser@npm:^7.8.0": - version: 7.16.0 - resolution: "@typescript-eslint/parser@npm:7.16.0" + version: 7.17.0 + resolution: "@typescript-eslint/parser@npm:7.17.0" dependencies: - "@typescript-eslint/scope-manager": "npm:7.16.0" - "@typescript-eslint/types": "npm:7.16.0" - "@typescript-eslint/typescript-estree": "npm:7.16.0" - "@typescript-eslint/visitor-keys": "npm:7.16.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10/dc374e6c9e7dfcdd968828bb32ef59d3ebabd0a18671dee22d14dda2c713dade6eb493fd11b127df17035c7451898b42f4a88102da9a4bf3ca6a3baed8c20309 + checksum: 10/91971e5d95fec798a456ec72d9d67c28eee72d0d1c52e682dbff2eef134e149799f69324ea8d42bd2cfa290eec763073b26fb343ce0632e4fa64c3b8a854d124 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/scope-manager@npm:7.16.0" +"@typescript-eslint/scope-manager@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/scope-manager@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.16.0" - "@typescript-eslint/visitor-keys": "npm:7.16.0" - checksum: 10/bf39a3ab803503c33e6c33568e7b93793d53d18100cb2f2ec1a540121aeba74d291d19c9ad3933198ff15e53a46d2f92db0c54309259dc99c1e3e297becd5677 + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" + checksum: 10/aec72538a92d8a82ca39f60c34b0d0e00f2f8fb74f584aee90b6d1ef28f30a415b507f28aa27a536898992ad4b9b5af58671c743cd50439b21e67bee03a59c88 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/type-utils@npm:7.16.0" +"@typescript-eslint/type-utils@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/type-utils@npm:7.17.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.16.0" - "@typescript-eslint/utils": "npm:7.16.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" + "@typescript-eslint/utils": "npm:7.17.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" peerDependencies: @@ -5905,23 +5944,23 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10/84925c851a515768317573984dc855ac93bf787ebaa6382379dea6b356adb936ebd38bf7ab2f95124c68de7ab1fd5c849fe6717929343a80b839757fb5bf3af0 + checksum: 10/1405c626cd59a1fb29b897d22dce0b2f5b793e5d1cba228a119e58e7392c385c9131c332e744888b7d6ad41eee0abbd8099651664cafaed24229da2cd768e032 languageName: node linkType: hard -"@typescript-eslint/types@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/types@npm:7.16.0" - checksum: 10/0813d9eb158f984b9d7e9e83961533ddc1e8c8815ca9059dab820df276b1e537b183f4c83cc4fe79ab3865cde1a64f2ec3f7fffe7209872d7d404636299f630b +"@typescript-eslint/types@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/types@npm:7.17.0" + checksum: 10/92e571f794f51a1f110714a9de661f9a76781c8c3e53d8fe025a88be947ae30d1c18964083467db31001ce7910f1a1459b8f6b039c270bdb6d1de47eba5dfa7f languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.16.0" +"@typescript-eslint/typescript-estree@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/typescript-estree@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.16.0" - "@typescript-eslint/visitor-keys": "npm:7.16.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/visitor-keys": "npm:7.17.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" @@ -5931,31 +5970,31 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10/5719c0cb649d627a073f1c8994a6073acc211ecfce0daef61d2de4315e42a23cf79e4dacb3b3596c4792eab062fdd22080c62345e2a58d38e7268eb6103a46d4 + checksum: 10/419c4ad3b470ea4d654c414bbc66269ba7a6504e10bf2a2a87f9214aad4358b670f60e89ae7e4b2a24fa7c0c4542ebdd3711b8964917c026a5eef27d861e23fb languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/utils@npm:7.16.0" +"@typescript-eslint/utils@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/utils@npm:7.17.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.16.0" - "@typescript-eslint/types": "npm:7.16.0" - "@typescript-eslint/typescript-estree": "npm:7.16.0" + "@typescript-eslint/scope-manager": "npm:7.17.0" + "@typescript-eslint/types": "npm:7.17.0" + "@typescript-eslint/typescript-estree": "npm:7.17.0" peerDependencies: eslint: ^8.56.0 - checksum: 10/325eab6705e70322d8df613cba4b018abc5d8ef857eb6c86f7a8376334eac789e6a585d30c041045c7eeede18083744faae66f48033e7811b2a23ebe8f6d3407 + checksum: 10/44d6bfcda4b03a7bec82939dd975579f40705cf4128e40f747bf96b81e8fae0c384434999334a9ac42990e2864266c8067ca0e4b27d736ce2f6b8667115f7a1d languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.16.0": - version: 7.16.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.16.0" +"@typescript-eslint/visitor-keys@npm:7.17.0": + version: 7.17.0 + resolution: "@typescript-eslint/visitor-keys@npm:7.17.0" dependencies: - "@typescript-eslint/types": "npm:7.16.0" + "@typescript-eslint/types": "npm:7.17.0" eslint-visitor-keys: "npm:^3.4.3" - checksum: 10/aae065bdd6d5681d40df51af24933fc86c15f355f9d8f85c39a506f352ddc2a76fc72d4f8cf823ebb7550c84d543605a2fdd7d06979a0967cd48c1f542436714 + checksum: 10/a8bef372e212baab67ec4e074a8b4983348fc554874d40d1fc22c10ce2693609cdef4a215391e8b428a67b3e2dcbda12d821b4ed668394b0b001ba03a08c5145 languageName: node linkType: hard @@ -6358,14 +6397,14 @@ __metadata: linkType: hard "ajv@npm:^8.0.0, ajv@npm:^8.6.0, ajv@npm:^8.9.0": - version: 8.16.0 - resolution: "ajv@npm:8.16.0" + version: 8.17.1 + resolution: "ajv@npm:8.17.1" dependencies: fast-deep-equal: "npm:^3.1.3" + fast-uri: "npm:^3.0.1" json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" - uri-js: "npm:^4.4.1" - checksum: 10/9b4b380efaf8be2639736d535662bd142a6972b43075b404380165c37ab6ceb72f01c7c987536747ff3e9e21eb5cd2e2a194f1e0fa8355364ea6204b1262fcd1 + checksum: 10/ee3c62162c953e91986c838f004132b6a253d700f1e51253b99791e2dbfdb39161bc950ebdc2f156f8568035bb5ed8be7bd78289cd9ecbf3381fe8f5b82e3f33 languageName: node linkType: hard @@ -6378,10 +6417,12 @@ __metadata: languageName: node linkType: hard -"ansi-escapes@npm:^6.2.0": - version: 6.2.1 - resolution: "ansi-escapes@npm:6.2.1" - checksum: 10/3b064937dc8a0645ed8094bc8b09483ee718f3aa3139746280e6c2ea80e28c0a3ce66973d0f33e88e60021abbf67e5f877deabfc810e75edf8a19dfa128850be +"ansi-escapes@npm:^7.0.0": + version: 7.0.0 + resolution: "ansi-escapes@npm:7.0.0" + dependencies: + environment: "npm:^1.0.0" + checksum: 10/2d0e2345087bd7ae6bf122b9cc05ee35560d40dcc061146edcdc02bc2d7c7c50143cd12a22e69a0b5c0f62b948b7bc9a4539ee888b80f5bd33cdfd82d01a70ab languageName: node linkType: hard @@ -7171,9 +7212,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001599, caniuse-lite@npm:^1.0.30001640": - version: 1.0.30001641 - resolution: "caniuse-lite@npm:1.0.30001641" - checksum: 10/d60df2662fcae31efc8f36451929640e9630bb2e936f7449166dc70dcc4a757f6d86a5a089eed763b58354d684404b175e6c8790a9fd95c48abed1fcb7c26225 + version: 1.0.30001643 + resolution: "caniuse-lite@npm:1.0.30001643" + checksum: 10/dddbda29fa24fbc435873309c71070461cbfc915d9bce3216180524c20c5637b2bee1a14b45972e9ac19e1fdf63fba3f63608b9e7d68de32f5ee1953c8c69e05 languageName: node linkType: hard @@ -7383,12 +7424,12 @@ __metadata: languageName: node linkType: hard -"cli-cursor@npm:^4.0.0": - version: 4.0.0 - resolution: "cli-cursor@npm:4.0.0" +"cli-cursor@npm:^5.0.0": + version: 5.0.0 + resolution: "cli-cursor@npm:5.0.0" dependencies: - restore-cursor: "npm:^4.0.0" - checksum: 10/ab3f3ea2076e2176a1da29f9d64f72ec3efad51c0960898b56c8a17671365c26e67b735920530eaf7328d61f8bd41c27f46b9cf6e4e10fe2fa44b5e8c0e392cc + restore-cursor: "npm:^5.0.0" + checksum: 10/1eb9a3f878b31addfe8d82c6d915ec2330cec8447ab1f117f4aa34f0137fbb3137ec3466e1c9a65bcb7557f6e486d343f2da57f253a2f668d691372dfa15c090 languageName: node linkType: hard @@ -8502,9 +8543,9 @@ __metadata: linkType: hard "dayjs@npm:^1.10.4, dayjs@npm:^1.10.7": - version: 1.11.11 - resolution: "dayjs@npm:1.11.11" - checksum: 10/f03948b172fbeed229837965988d1d5bac99c72a31c28731a457303259439f2f36289186489ae140adbeb10f591a926908c8de5d81eb449a2edbf5cbd6e9e30c + version: 1.11.12 + resolution: "dayjs@npm:1.11.12" + checksum: 10/8ee7c1e14961fd08d40b788d0c0e930dc6288b3d32911bb911b2fb31bb703c262788164fbe678ee9e50e2a35268d667b8c8ba43fd1806771c1f404c300a2b428 languageName: node linkType: hard @@ -8953,9 +8994,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.4.820": - version: 1.4.827 - resolution: "electron-to-chromium@npm:1.4.827" - checksum: 10/7fa44aeebc5548874d33e417579d998d8e9a3d7b07fae22429ee7de5866c73b3158d56969146df3dcf44a222dcd91972ee786d0427f461e0c98bff79e408e782 + version: 1.5.2 + resolution: "electron-to-chromium@npm:1.5.2" + checksum: 10/5b397518bf3347e39935d1bf9ff3dd37064619783419c0cb6507c53812b3cea7b2cfd9c54664e6fc36aae28a29562af6339fa8e8fe165845355056ce3df63bde languageName: node linkType: hard @@ -9020,12 +9061,12 @@ __metadata: linkType: hard "enhanced-resolve@npm:^5.17.0": - version: 5.17.0 - resolution: "enhanced-resolve@npm:5.17.0" + version: 5.17.1 + resolution: "enhanced-resolve@npm:5.17.1" dependencies: graceful-fs: "npm:^4.2.4" tapable: "npm:^2.2.0" - checksum: 10/8f7bf71537d78e7d20a27363793f2c9e13ec44800c7c7830364a448f80a44994aa19d64beecefa1ab49e4de6f7fbe18cc0931dc449c115f02918ff5fcbe7705f + checksum: 10/e8e03cb7a4bf3c0250a89afbd29e5ec20e90ba5fcd026066232a0754864d7d0a393fa6fc0e5379314a6529165a1834b36731147080714459d98924520410d8f5 languageName: node linkType: hard @@ -9066,6 +9107,13 @@ __metadata: languageName: node linkType: hard +"environment@npm:^1.0.0": + version: 1.1.0 + resolution: "environment@npm:1.1.0" + checksum: 10/dd3c1b9825e7f71f1e72b03c2344799ac73f2e9ef81b78ea8b373e55db021786c6b9f3858ea43a436a2c4611052670ec0afe85bc029c384cc71165feee2f4ba6 + languageName: node + linkType: hard + "eol@npm:^0.9.1": version: 0.9.1 resolution: "eol@npm:0.9.1" @@ -9349,11 +9397,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.1.3": - version: 5.1.3 - resolution: "eslint-plugin-prettier@npm:5.1.3" + version: 5.2.1 + resolution: "eslint-plugin-prettier@npm:5.2.1" dependencies: prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.8.6" + synckit: "npm:^0.9.1" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -9364,7 +9412,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10/4f26a30444adc61ed692cdb5a9f7e8d9f5794f0917151051e66755ce032a08c3cc72c8b5d56101412e90f6d77035bd8194ea8731e9c16aacdd5ae345a8dae188 + checksum: 10/10ddf68215237e327af09a47adab4c63f3885fda4fb28c4c42d1fc5f47d8a0cc45df6484799360ff1417a0aa3c77c3aaac49d7e9dfd145557b17e2d7ecc2a27c languageName: node linkType: hard @@ -9763,6 +9811,13 @@ __metadata: languageName: node linkType: hard +"fast-uri@npm:^3.0.1": + version: 3.0.1 + resolution: "fast-uri@npm:3.0.1" + checksum: 10/e8ee4712270de0d29eb0fbf41ffad0ac80952e8797be760e8bb62c4707f08f50a86fe2d7829681ca133c07d6eb4b4a75389a5fc36674c5b254a3ac0891a68fc7 + languageName: node + linkType: hard + "fastest-levenshtein@npm:^1.0.12": version: 1.0.16 resolution: "fastest-levenshtein@npm:1.0.16" @@ -11012,11 +11067,11 @@ __metadata: linkType: hard "i18next@npm:^23.2.8, i18next@npm:^23.5.1": - version: 23.11.5 - resolution: "i18next@npm:23.11.5" + version: 23.12.2 + resolution: "i18next@npm:23.12.2" dependencies: "@babel/runtime": "npm:^7.23.2" - checksum: 10/3a8e0d5d2b9ac6c6fa8c2180452aaf816d60e1cc790da69d6be515feec85553f8af9fcc19414ade1a621f08236e84f38df4415a8234919fa97fa2e35624e86b6 + checksum: 10/d7a743c54b83acc1203315e547bfe830bfe825dddd7706646aec2a49cb74254bcda70645b568d1bed55ee3610ba5e6f6012fb3c13f03080c1dd0f99db2c45478 languageName: node linkType: hard @@ -11103,9 +11158,9 @@ __metadata: linkType: hard "immutable@npm:^4.0.0": - version: 4.3.6 - resolution: "immutable@npm:4.3.6" - checksum: 10/59fedb67f26e265035616b27e33ef90b53b434cf76fb09212ec2d6ae32ee8d2fe2641e6dc32dbc78498c521fbf5f72c6740d39affba63a0a36a3884272371857 + version: 4.3.7 + resolution: "immutable@npm:4.3.7" + checksum: 10/37d963c5050f03ae5f3714ba7a43d469aa482051087f4c65d673d1501c309ea231d87480c792e19fa85e2eaf965f76af5d0aa92726505f3cfe4af91619dfb80b languageName: node linkType: hard @@ -11120,14 +11175,14 @@ __metadata: linkType: hard "import-local@npm:^3.0.2": - version: 3.1.0 - resolution: "import-local@npm:3.1.0" + version: 3.2.0 + resolution: "import-local@npm:3.2.0" dependencies: pkg-dir: "npm:^4.2.0" resolve-cwd: "npm:^3.0.0" bin: import-local-fixture: fixtures/cli.js - checksum: 10/bfcdb63b5e3c0e245e347f3107564035b128a414c4da1172a20dc67db2504e05ede4ac2eee1252359f78b0bfd7b19ef180aec427c2fce6493ae782d73a04cddd + checksum: 10/0b0b0b412b2521739fbb85eeed834a3c34de9bc67e670b3d0b86248fc460d990a7b116ad056c084b87a693ef73d1f17268d6a5be626bb43c998a8b1c8a230004 languageName: node linkType: hard @@ -11364,11 +11419,11 @@ __metadata: linkType: hard "is-core-module@npm:^2.13.0, is-core-module@npm:^2.8.1": - version: 2.14.0 - resolution: "is-core-module@npm:2.14.0" + version: 2.15.0 + resolution: "is-core-module@npm:2.15.0" dependencies: hasown: "npm:^2.0.2" - checksum: 10/1e0d1a16cb3a94746f6a28db09ccab4562860c94c74bacedb3a6729736d61cfb97001d2052f9622637aa7ea8e0643a3f0f4f16965c70ba6ce30a8ccfe8074af8 + checksum: 10/70e962543e5d3a97c07cb29144a86792d545a21f28e67da5401d85878a0193d46fbab8d97bc3ca680e2778705dca66e7b6ca840c493497a27ca0e8c5f3ac3d1d languageName: node linkType: hard @@ -11806,8 +11861,8 @@ __metadata: linkType: hard "jake@npm:^10.8.5": - version: 10.9.1 - resolution: "jake@npm:10.9.1" + version: 10.9.2 + resolution: "jake@npm:10.9.2" dependencies: async: "npm:^3.2.3" chalk: "npm:^4.0.2" @@ -11815,7 +11870,7 @@ __metadata: minimatch: "npm:^3.1.2" bin: jake: bin/cli.js - checksum: 10/82603513de5a61bc12360d2b8ba2be9f6bb52495b73f4d1b541cdfef9e43314b132ca10e73d2b41e3c1ea16bf79ec30a64afc9b9e2d2c72a4d4575a8db61cbc8 + checksum: 10/3be324708f99f031e0aec49ef8fd872eb4583cbe8a29a0c875f554f6ac638ee4ea5aa759bb63723fd54f77ca6d7db851eaa78353301734ed3700db9cb109a0cd languageName: node linkType: hard @@ -12768,15 +12823,15 @@ __metadata: linkType: hard "log-update@npm:^6.0.0": - version: 6.0.0 - resolution: "log-update@npm:6.0.0" + version: 6.1.0 + resolution: "log-update@npm:6.1.0" dependencies: - ansi-escapes: "npm:^6.2.0" - cli-cursor: "npm:^4.0.0" - slice-ansi: "npm:^7.0.0" + ansi-escapes: "npm:^7.0.0" + cli-cursor: "npm:^5.0.0" + slice-ansi: "npm:^7.1.0" strip-ansi: "npm:^7.1.0" wrap-ansi: "npm:^9.0.0" - checksum: 10/b345f392c356087290918f1bdaae84ee38699c89c9274fafbb6f4cee2fe6f89f9737000111279a40e651fbe0e9c08803b0457c2a4800d8a405752804f73058a8 + checksum: 10/5abb4131e33b1e7f8416bb194fe17a3603d83e4657c5bf5bb81ce4187f3b00ea481643b85c3d5cefe6037a452cdcf7f1391ab8ea0d9c23e75d19589830ec4f11 languageName: node linkType: hard @@ -13025,13 +13080,20 @@ __metadata: languageName: node linkType: hard -"mime-db@npm:1.52.0, mime-db@npm:>= 1.43.0 < 2, mime-db@npm:^1.28.0": +"mime-db@npm:1.52.0": version: 1.52.0 resolution: "mime-db@npm:1.52.0" checksum: 10/54bb60bf39e6f8689f6622784e668a3d7f8bed6b0d886f5c3c446cb3284be28b30bf707ed05d0fe44a036f8469976b2629bbea182684977b084de9da274694d7 languageName: node linkType: hard +"mime-db@npm:>= 1.43.0 < 2, mime-db@npm:^1.28.0": + version: 1.53.0 + resolution: "mime-db@npm:1.53.0" + checksum: 10/82409c568a20254cc67a763a25e581d2213e1ef5d070a0af805239634f8a655f5d8a15138200f5f81c5b06fc6623d27f6168c612d447642d59e37eb7f20f7412 + languageName: node + linkType: hard + "mime-types@npm:^2.1.12, mime-types@npm:^2.1.27, mime-types@npm:^2.1.31, mime-types@npm:~2.1.17, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": version: 2.1.35 resolution: "mime-types@npm:2.1.35" @@ -13073,6 +13135,13 @@ __metadata: languageName: node linkType: hard +"mimic-function@npm:^5.0.0": + version: 5.0.1 + resolution: "mimic-function@npm:5.0.1" + checksum: 10/eb5893c99e902ccebbc267c6c6b83092966af84682957f79313311edb95e8bb5f39fb048d77132b700474d1c86d90ccc211e99bae0935447a4834eb4c882982c + languageName: node + linkType: hard + "mimic-response@npm:^1.0.0": version: 1.0.1 resolution: "mimic-response@npm:1.0.1" @@ -13103,7 +13172,7 @@ __metadata: languageName: node linkType: hard -"mini-css-extract-plugin@npm:^2.4.5": +"mini-css-extract-plugin@npm:^2.9.0": version: 2.9.0 resolution: "mini-css-extract-plugin@npm:2.9.0" dependencies: @@ -13475,9 +13544,9 @@ __metadata: linkType: hard "node-releases@npm:^2.0.14": - version: 2.0.14 - resolution: "node-releases@npm:2.0.14" - checksum: 10/0f7607ec7db5ef1dc616899a5f24ae90c869b6a54c2d4f36ff6d84a282ab9343c7ff3ca3670fe4669171bb1e8a9b3e286e1ef1c131f09a83d70554f855d54f24 + version: 2.0.18 + resolution: "node-releases@npm:2.0.18" + checksum: 10/241e5fa9556f1c12bafb83c6c3e94f8cf3d8f2f8f904906ecef6e10bcaa1d59aa61212d4651bec70052015fc54bd3fdcdbe7fc0f638a17e6685aa586c076ec4e languageName: node linkType: hard @@ -13770,6 +13839,15 @@ __metadata: languageName: node linkType: hard +"onetime@npm:^7.0.0": + version: 7.0.0 + resolution: "onetime@npm:7.0.0" + dependencies: + mimic-function: "npm:^5.0.0" + checksum: 10/eb08d2da9339819e2f9d52cab9caf2557d80e9af8c7d1ae86e1a0fef027d00a88e9f5bd67494d350df360f7c559fbb44e800b32f310fb989c860214eacbb561c + languageName: node + linkType: hard + "open@npm:^8.0.9": version: 8.4.2 resolution: "open@npm:8.4.2" @@ -13791,11 +13869,11 @@ __metadata: linkType: hard "openmrs@npm:next": - version: 5.6.1-pre.2064 - resolution: "openmrs@npm:5.6.1-pre.2064" + version: 5.7.3-pre.2113 + resolution: "openmrs@npm:5.7.3-pre.2113" dependencies: - "@openmrs/esm-app-shell": "npm:5.6.1-pre.2064" - "@openmrs/webpack-config": "npm:5.6.1-pre.2064" + "@openmrs/esm-app-shell": "npm:5.7.3-pre.2113" + "@openmrs/webpack-config": "npm:5.7.3-pre.2113" "@pnpm/npm-conf": "npm:^2.1.0" "@swc/core": "npm:^1.3.58" autoprefixer: "npm:^10.4.2" @@ -13803,31 +13881,37 @@ __metadata: browserslist-config-openmrs: "npm:^1.0.1" chalk: "npm:^4.1.2" copy-webpack-plugin: "npm:^11.0.0" + css-loader: "npm:^5.2.4" cssnano: "npm:^5.0.16" ejs: "npm:^3.1.8" glob: "npm:^7.1.3" html-webpack-plugin: "npm:^5.5.0" inquirer: "npm:^7.3.3" - mini-css-extract-plugin: "npm:^2.4.5" + lodash-es: "npm:^4.17.21" + mini-css-extract-plugin: "npm:^2.9.0" node-watch: "npm:^0.7.4" npm-registry-fetch: "npm:^14.0.3" pacote: "npm:^15.0.0" postcss: "npm:^8.4.6" postcss-loader: "npm:^6.2.1" rimraf: "npm:^3.0.2" + sass-loader: "npm:^12.3.0" semver: "npm:^7.3.4" + style-loader: "npm:^3.3.1" swc-loader: "npm:^0.2.3" tar: "npm:^6.0.5" typescript: "npm:^4.6.4" webpack: "npm:^5.88.0" + webpack-bundle-analyzer: "npm:^4.5.0" webpack-cli: "npm:^4.10.0" webpack-dev-server: "npm:^4.10.1" webpack-pwa-manifest: "npm:^4.3.0" + webpack-stats-plugin: "npm:^1.0.3" workbox-webpack-plugin: "npm:^6.4.1" yargs: "npm:^17.6.2" bin: openmrs: ./dist/cli.js - checksum: 10/ecf86e42c1f14c860a685b77fd0a0842bfff3e1b5151b271a278cfc7f6a97359b298a6ac8a9c137f2413a979bf4e545cfd19cd288c782e59c9dd761015991bca + checksum: 10/8e47e5cf03883bcf2ce333ff7aff2c53bc44bbc7537fb4f077118c61eb112a248ba8aaf89c6032d82f00d05b19b30b32053da5f4669e3896102d4091227b262d languageName: node linkType: hard @@ -14178,10 +14262,10 @@ __metadata: languageName: node linkType: hard -"peek-readable@npm:^5.1.1": - version: 5.1.1 - resolution: "peek-readable@npm:5.1.1" - checksum: 10/b2e88d84cdf13e52ec3d047174a1a661626cc1b44f5b5daf90b00cd5c878372ab05fb6312fd41aa5829e121d6fbe90a71396994d837d9feca9164b48533b113b +"peek-readable@npm:^5.1.3": + version: 5.1.3 + resolution: "peek-readable@npm:5.1.3" + checksum: 10/dc19d8941b0785b417a19743b219232a4a1a7b40014cc8139ff959cd0de4a0c668f7be13ee6f818fcf525ddefc20768fc1a53c6862f5e8d7103b5356c5770621 languageName: node linkType: hard @@ -14293,27 +14377,27 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.45.1": - version: 1.45.1 - resolution: "playwright-core@npm:1.45.1" +"playwright-core@npm:1.44.0": + version: 1.44.0 + resolution: "playwright-core@npm:1.44.0" bin: playwright-core: cli.js - checksum: 10/206a5ecd2de7b8cefa5136331fa22012416b37eb2c471e3105c09a8a17a10621efa900acb6a780314f06aa2a3d6651aad3a323fa360d046ccce8f3844b3ca615 + checksum: 10/50b1741b8e4e5f053f9756846e1064d796e8e54ee0c13d4d026926338d76969fa528bddf1e563a2f30e17b92f301b06895044d1080179f2d3b5b5f68fe01387f languageName: node linkType: hard -"playwright@npm:1.45.1": - version: 1.45.1 - resolution: "playwright@npm:1.45.1" +"playwright@npm:1.44.0": + version: 1.44.0 + resolution: "playwright@npm:1.44.0" dependencies: fsevents: "npm:2.3.2" - playwright-core: "npm:1.45.1" + playwright-core: "npm:1.44.0" dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: 10/092d510a79ca8fb1d0c1a83460735b9eaf02261a48df2ae1b025f95ee31e2be9d962ddc62c7e5c0d2c44e5b982b66aaf3fe24243f736ab14dbfd2d6e88897824 + checksum: 10/a7d8d6c0dee6262f97ab7fe52ec80ddeff7ad21178a9b90eefae56779fb573e8a3987f27619de6e98d8b9b78e9bb66b94f3caf9fbd51c0f1964dcd744dcb3cae languageName: node linkType: hard @@ -14719,13 +14803,13 @@ __metadata: linkType: hard "postcss@npm:^8.2.15, postcss@npm:^8.4.33, postcss@npm:^8.4.6": - version: 8.4.39 - resolution: "postcss@npm:8.4.39" + version: 8.4.40 + resolution: "postcss@npm:8.4.40" dependencies: nanoid: "npm:^3.3.7" picocolors: "npm:^1.0.1" source-map-js: "npm:^1.2.0" - checksum: 10/ad9c1add892c96433b9a5502878201ede4a20c4ce02d056251f61f8d9a3e5426dab3683fe5a086edfa78a1a19f2b4988c8cea02c5122136d29758cb5a17e2621 + checksum: 10/bdd01b55152e4be7b4a82b03dd22876e33ff6a038680d1b80a50405a5eccc10aff0f466a0e5e574bc476943b0ba120fbd5de7cde9f219bbf8efc011898f5f631 languageName: node linkType: hard @@ -15005,84 +15089,89 @@ __metadata: linkType: hard "react-aria-components@npm:^1.2.1": - version: 1.2.1 - resolution: "react-aria-components@npm:1.2.1" + version: 1.3.1 + resolution: "react-aria-components@npm:1.3.1" dependencies: - "@internationalized/date": "npm:^3.5.4" + "@internationalized/date": "npm:^3.5.5" "@internationalized/string": "npm:^3.2.3" - "@react-aria/color": "npm:3.0.0-beta.33" - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/menu": "npm:^3.14.1" - "@react-aria/toolbar": "npm:3.0.0-beta.5" - "@react-aria/tree": "npm:3.0.0-alpha.1" - "@react-aria/utils": "npm:^3.24.1" - "@react-stately/color": "npm:^3.6.1" - "@react-stately/menu": "npm:^3.7.1" - "@react-stately/table": "npm:^3.11.8" - "@react-stately/utils": "npm:^3.10.1" - "@react-types/color": "npm:3.0.0-beta.25" - "@react-types/form": "npm:^3.7.4" - "@react-types/grid": "npm:^3.2.6" - "@react-types/shared": "npm:^3.23.1" - "@react-types/table": "npm:^3.9.5" + "@react-aria/collections": "npm:3.0.0-alpha.3" + "@react-aria/color": "npm:3.0.0-rc.1" + "@react-aria/dnd": "npm:^3.7.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/menu": "npm:^3.15.1" + "@react-aria/toolbar": "npm:3.0.0-beta.7" + "@react-aria/tree": "npm:3.0.0-alpha.3" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/virtualizer": "npm:^4.0.1" + "@react-stately/color": "npm:^3.7.1" + "@react-stately/layout": "npm:^4.0.1" + "@react-stately/menu": "npm:^3.8.1" + "@react-stately/table": "npm:^3.12.1" + "@react-stately/utils": "npm:^3.10.2" + "@react-stately/virtualizer": "npm:^4.0.1" + "@react-types/color": "npm:3.0.0-rc.1" + "@react-types/form": "npm:^3.7.6" + "@react-types/grid": "npm:^3.2.8" + "@react-types/shared": "npm:^3.24.1" + "@react-types/table": "npm:^3.10.1" "@swc/helpers": "npm:^0.5.0" client-only: "npm:^0.0.1" - react-aria: "npm:^3.33.1" - react-stately: "npm:^3.31.1" + react-aria: "npm:^3.34.1" + react-stately: "npm:^3.32.1" use-sync-external-store: "npm:^1.2.0" peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/1733de845c141e04cc539f5da240deb503644d42a70d65e04527a81f2c7728070e4b15d08d6e5c588e8c872b200a615b5247f834afe091474e0905f0d1cf8e59 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/ad8ea93149948c456d79458ab3645c85f6cc1e40990ed17caac53a503c40ceed87dd3b1d06a0263a39177af076c71262862d5d80da19c9d4bf558674ef8991a4 languageName: node linkType: hard -"react-aria@npm:^3.33.1": - version: 3.33.1 - resolution: "react-aria@npm:3.33.1" +"react-aria@npm:^3.34.1": + version: 3.34.1 + resolution: "react-aria@npm:3.34.1" dependencies: "@internationalized/string": "npm:^3.2.3" - "@react-aria/breadcrumbs": "npm:^3.5.13" - "@react-aria/button": "npm:^3.9.5" - "@react-aria/calendar": "npm:^3.5.8" - "@react-aria/checkbox": "npm:^3.14.3" - "@react-aria/combobox": "npm:^3.9.1" - "@react-aria/datepicker": "npm:^3.10.1" - "@react-aria/dialog": "npm:^3.5.14" - "@react-aria/dnd": "npm:^3.6.1" - "@react-aria/focus": "npm:^3.17.1" - "@react-aria/gridlist": "npm:^3.8.1" - "@react-aria/i18n": "npm:^3.11.1" - "@react-aria/interactions": "npm:^3.21.3" - "@react-aria/label": "npm:^3.7.8" - "@react-aria/link": "npm:^3.7.1" - "@react-aria/listbox": "npm:^3.12.1" - "@react-aria/menu": "npm:^3.14.1" - "@react-aria/meter": "npm:^3.4.13" - "@react-aria/numberfield": "npm:^3.11.3" - "@react-aria/overlays": "npm:^3.22.1" - "@react-aria/progress": "npm:^3.4.13" - "@react-aria/radio": "npm:^3.10.4" - "@react-aria/searchfield": "npm:^3.7.5" - "@react-aria/select": "npm:^3.14.5" - "@react-aria/selection": "npm:^3.18.1" - "@react-aria/separator": "npm:^3.3.13" - "@react-aria/slider": "npm:^3.7.8" - "@react-aria/ssr": "npm:^3.9.4" - "@react-aria/switch": "npm:^3.6.4" - "@react-aria/table": "npm:^3.14.1" - "@react-aria/tabs": "npm:^3.9.1" - "@react-aria/tag": "npm:^3.4.1" - "@react-aria/textfield": "npm:^3.14.5" - "@react-aria/tooltip": "npm:^3.7.4" - "@react-aria/utils": "npm:^3.24.1" - "@react-aria/visually-hidden": "npm:^3.8.12" - "@react-types/shared": "npm:^3.23.1" - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/545d789afa72ea4385452e9344742018be97544d668331486ff87cd1fc64153b494a0042c06dfc207ba271b20440cadf2a07fd4f94baee8e26c2c48ec78b58b6 + "@react-aria/breadcrumbs": "npm:^3.5.15" + "@react-aria/button": "npm:^3.9.7" + "@react-aria/calendar": "npm:^3.5.10" + "@react-aria/checkbox": "npm:^3.14.5" + "@react-aria/combobox": "npm:^3.10.1" + "@react-aria/datepicker": "npm:^3.11.1" + "@react-aria/dialog": "npm:^3.5.16" + "@react-aria/dnd": "npm:^3.7.1" + "@react-aria/focus": "npm:^3.18.1" + "@react-aria/gridlist": "npm:^3.9.1" + "@react-aria/i18n": "npm:^3.12.1" + "@react-aria/interactions": "npm:^3.22.1" + "@react-aria/label": "npm:^3.7.10" + "@react-aria/link": "npm:^3.7.3" + "@react-aria/listbox": "npm:^3.13.1" + "@react-aria/menu": "npm:^3.15.1" + "@react-aria/meter": "npm:^3.4.15" + "@react-aria/numberfield": "npm:^3.11.5" + "@react-aria/overlays": "npm:^3.23.1" + "@react-aria/progress": "npm:^3.4.15" + "@react-aria/radio": "npm:^3.10.6" + "@react-aria/searchfield": "npm:^3.7.7" + "@react-aria/select": "npm:^3.14.7" + "@react-aria/selection": "npm:^3.19.1" + "@react-aria/separator": "npm:^3.4.1" + "@react-aria/slider": "npm:^3.7.10" + "@react-aria/ssr": "npm:^3.9.5" + "@react-aria/switch": "npm:^3.6.6" + "@react-aria/table": "npm:^3.15.1" + "@react-aria/tabs": "npm:^3.9.3" + "@react-aria/tag": "npm:^3.4.3" + "@react-aria/textfield": "npm:^3.14.7" + "@react-aria/tooltip": "npm:^3.7.6" + "@react-aria/utils": "npm:^3.25.1" + "@react-aria/visually-hidden": "npm:^3.8.14" + "@react-types/shared": "npm:^3.24.1" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/641288b7cab6a21320ef95e3dc309bd843d7346d4ac34f4f39a5a9e6f5d083a5a4633f7e6ca57d3b172306fe26a681766b1502fc61ecac925d75911a932e822d languageName: node linkType: hard @@ -15201,59 +15290,59 @@ __metadata: linkType: hard "react-router-dom@npm:^6.14.1, react-router-dom@npm:^6.3.0": - version: 6.24.1 - resolution: "react-router-dom@npm:6.24.1" + version: 6.25.1 + resolution: "react-router-dom@npm:6.25.1" dependencies: - "@remix-run/router": "npm:1.17.1" - react-router: "npm:6.24.1" + "@remix-run/router": "npm:1.18.0" + react-router: "npm:6.25.1" peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 10/98eeeec3d36695b3d6d8000d8373ba3cefa9afc49ee44f646f3b721e8b47a80f5ce3737ad1f752cccf19caf01e370918750a4bc86a06a99e491731b454d5ec55 + checksum: 10/583a0907156f8f0687817e2cd6fa2678284729fc9cf883acb0bc0a4ade1f76fc68dd771258f6b30a2fdc378a5608b973f7ecb1f7fc752295ad4eba8b2f156a82 languageName: node linkType: hard -"react-router@npm:6.24.1": - version: 6.24.1 - resolution: "react-router@npm:6.24.1" +"react-router@npm:6.25.1": + version: 6.25.1 + resolution: "react-router@npm:6.25.1" dependencies: - "@remix-run/router": "npm:1.17.1" + "@remix-run/router": "npm:1.18.0" peerDependencies: react: ">=16.8" - checksum: 10/18ac968171dee286a2f067dc8568faf73c759f833e88e09f1b34ff6e9376d1fd5eade8697a86be83093225956b256b398d935ce2f681c1bf711fb3c058c19839 - languageName: node - linkType: hard - -"react-stately@npm:^3.31.1": - version: 3.31.1 - resolution: "react-stately@npm:3.31.1" - dependencies: - "@react-stately/calendar": "npm:^3.5.1" - "@react-stately/checkbox": "npm:^3.6.5" - "@react-stately/collections": "npm:^3.10.7" - "@react-stately/combobox": "npm:^3.8.4" - "@react-stately/data": "npm:^3.11.4" - "@react-stately/datepicker": "npm:^3.9.4" - "@react-stately/dnd": "npm:^3.3.1" - "@react-stately/form": "npm:^3.0.3" - "@react-stately/list": "npm:^3.10.5" - "@react-stately/menu": "npm:^3.7.1" - "@react-stately/numberfield": "npm:^3.9.3" - "@react-stately/overlays": "npm:^3.6.7" - "@react-stately/radio": "npm:^3.10.4" - "@react-stately/searchfield": "npm:^3.5.3" - "@react-stately/select": "npm:^3.6.4" - "@react-stately/selection": "npm:^3.15.1" - "@react-stately/slider": "npm:^3.5.4" - "@react-stately/table": "npm:^3.11.8" - "@react-stately/tabs": "npm:^3.6.6" - "@react-stately/toggle": "npm:^3.7.4" - "@react-stately/tooltip": "npm:^3.4.9" - "@react-stately/tree": "npm:^3.8.1" - "@react-types/shared": "npm:^3.23.1" - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10/e78b03fe0404d62993f3b2df0910e987f09ca14231da5d976095a8520e32c4a7125da8391e443b4d6b11c51b73a7ec9b6ab99fcbf54ce8e074da5d9e53df5f16 + checksum: 10/3bfb9754cff279cabcb247f13e66315d02333dae7e251fa8975d0e5cf68ee61793ad040594d2d490a5c995efc542739e7ef80462a69bd3209f64c69086fc7786 + languageName: node + linkType: hard + +"react-stately@npm:^3.32.1": + version: 3.32.1 + resolution: "react-stately@npm:3.32.1" + dependencies: + "@react-stately/calendar": "npm:^3.5.3" + "@react-stately/checkbox": "npm:^3.6.7" + "@react-stately/collections": "npm:^3.10.9" + "@react-stately/combobox": "npm:^3.9.1" + "@react-stately/data": "npm:^3.11.6" + "@react-stately/datepicker": "npm:^3.10.1" + "@react-stately/dnd": "npm:^3.4.1" + "@react-stately/form": "npm:^3.0.5" + "@react-stately/list": "npm:^3.10.7" + "@react-stately/menu": "npm:^3.8.1" + "@react-stately/numberfield": "npm:^3.9.5" + "@react-stately/overlays": "npm:^3.6.9" + "@react-stately/radio": "npm:^3.10.6" + "@react-stately/searchfield": "npm:^3.5.5" + "@react-stately/select": "npm:^3.6.6" + "@react-stately/selection": "npm:^3.16.1" + "@react-stately/slider": "npm:^3.5.6" + "@react-stately/table": "npm:^3.12.1" + "@react-stately/tabs": "npm:^3.6.8" + "@react-stately/toggle": "npm:^3.7.6" + "@react-stately/tooltip": "npm:^3.4.11" + "@react-stately/tree": "npm:^3.8.3" + "@react-types/shared": "npm:^3.24.1" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + checksum: 10/0110966ecc36ad04205fd86d7acfb6fd7b58ef26c6914902fa57ae668657d259038d70d2de371332d3489d116cf33bd75e781c232c50bd3f78640d310f7a7444 languageName: node linkType: hard @@ -15589,13 +15678,13 @@ __metadata: languageName: node linkType: hard -"restore-cursor@npm:^4.0.0": - version: 4.0.0 - resolution: "restore-cursor@npm:4.0.0" +"restore-cursor@npm:^5.0.0": + version: 5.1.0 + resolution: "restore-cursor@npm:5.1.0" dependencies: - onetime: "npm:^5.1.0" - signal-exit: "npm:^3.0.2" - checksum: 10/5b675c5a59763bf26e604289eab35711525f11388d77f409453904e1e69c0d37ae5889295706b2c81d23bd780165084d040f9b68fffc32cc921519031c4fa4af + onetime: "npm:^7.0.0" + signal-exit: "npm:^4.1.0" + checksum: 10/838dd54e458d89cfbc1a923b343c1b0f170a04100b4ce1733e97531842d7b440463967e521216e8ab6c6f8e89df877acc7b7f4c18ec76e99fb9bf5a60d358d2c languageName: node linkType: hard @@ -15937,11 +16026,11 @@ __metadata: linkType: hard "semver@npm:^7.1.1, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0": - version: 7.6.2 - resolution: "semver@npm:7.6.2" + version: 7.6.3 + resolution: "semver@npm:7.6.3" bin: semver: bin/semver.js - checksum: 10/296b17d027f57a87ef645e9c725bff4865a38dfc9caf29b26aa084b85820972fbe7372caea1ba6857162fa990702c6d9c1d82297cecb72d56c78ab29070d2ca2 + checksum: 10/36b1fbe1a2b6f873559cd57b238f1094a053dbfd997ceeb8757d79d1d2089c56d1321b9f1069ce263dc64cfa922fa1d2ad566b39426fe1ac6c723c1487589e10 languageName: node linkType: hard @@ -16223,7 +16312,7 @@ __metadata: languageName: node linkType: hard -"slice-ansi@npm:^7.0.0": +"slice-ansi@npm:^7.1.0": version: 7.1.0 resolution: "slice-ansi@npm:7.1.0" dependencies: @@ -16741,12 +16830,12 @@ __metadata: linkType: hard "strtok3@npm:^7.0.0-alpha.9": - version: 7.1.0 - resolution: "strtok3@npm:7.1.0" + version: 7.1.1 + resolution: "strtok3@npm:7.1.1" dependencies: "@tokenizer/token": "npm:^0.3.0" - peek-readable: "npm:^5.1.1" - checksum: 10/38fb5ce82e38584140c94e10508db5ab5dbc56f98130db708b81032d9a9cba1dab48f4e403807a4a6c5b89ec2073e23ea3da67a19a343a24e4eea1bc4c134727 + peek-readable: "npm:^5.1.3" + checksum: 10/1796549dd441d67c3cca52021265cb549d2c18993b465dd52197491abe3948abae407c070afcf0439c783d620e7c6668de3fc895fadae42004b013dd3ccd6689 languageName: node linkType: hard @@ -16860,20 +16949,13 @@ __metadata: languageName: node linkType: hard -"synckit@npm:^0.8.6": - version: 0.8.8 - resolution: "synckit@npm:0.8.8" +"synckit@npm:^0.9.1": + version: 0.9.1 + resolution: "synckit@npm:0.9.1" dependencies: "@pkgr/core": "npm:^0.1.0" tslib: "npm:^2.6.2" - checksum: 10/2864a5c3e689ad5b991bebbd8a583c5682c4fa08a4f39986b510b6b5d160c08fc3672444069f8f96ed6a9d12772879c674c1f61e728573eadfa90af40a765b74 - languageName: node - linkType: hard - -"systemjs@npm:^6.8.3": - version: 6.15.1 - resolution: "systemjs@npm:6.15.1" - checksum: 10/9454c32515cdf7b033cac547233b161d6154abc020a1a97afc8654a01d63cf2bc51101869807aa7f8529aae98475a2cb4522c1e31da6d33832c8e12f00ee4e18 + checksum: 10/bff3903976baf8b699b5483228116d70223781a93b17c70e685c277ee960cdfd1a09cb5a741e6a9ec35e2428f14f4664baec41ccc99a598f267608b2a54f529b languageName: node linkType: hard @@ -16963,8 +17045,8 @@ __metadata: linkType: hard "terser@npm:^5.0.0, terser@npm:^5.10.0, terser@npm:^5.26.0": - version: 5.31.2 - resolution: "terser@npm:5.31.2" + version: 5.31.3 + resolution: "terser@npm:5.31.3" dependencies: "@jridgewell/source-map": "npm:^0.3.3" acorn: "npm:^8.8.2" @@ -16972,7 +17054,7 @@ __metadata: source-map-support: "npm:~0.5.20" bin: terser: bin/terser - checksum: 10/dab8d0a7e2845f14535433795aa8dcf1b80a33e75749f5dbd67ee97aa66c1dec37191afa46dd88dad8472c9ff0bf16a812dd4388cb30d8675a6a95a7ead0421b + checksum: 10/7f66d93a1157f66f5eda16515ed45e6eb485d3c4acbc46e78a5e62922f5b4643d9212abc586f791021fafc71563a93475a986c52f4270a5e0b3ee50a70507d9e languageName: node linkType: hard @@ -17338,9 +17420,9 @@ __metadata: linkType: hard "type-fest@npm:^4.18.2": - version: 4.21.0 - resolution: "type-fest@npm:4.21.0" - checksum: 10/a4dc074b25239fff4062495c58554dcec15845622d753092d2bf24fc3b1c49f85805ed74f151976d666056ff122b3a5a988e85226575b7fbbc8e92d2db210137 + version: 4.23.0 + resolution: "type-fest@npm:4.23.0" + checksum: 10/c411dea83262f9a4453e09ff82e3ac729dd26afc2e68b7a9fe93dd633b1a2bf7bf2bf3e041676497ae8b8411266019b3add91d4fe34b926a82ba09eb41e9e52b languageName: node linkType: hard @@ -17417,12 +17499,12 @@ __metadata: linkType: hard "typescript@npm:^5.0.4": - version: 5.5.3 - resolution: "typescript@npm:5.5.3" + version: 5.5.4 + resolution: "typescript@npm:5.5.4" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10/11a867312419ed497929aafd2f1d28b2cd41810a5eb6c6e9e169559112e9ea073d681c121a29102e67cd4478d0a4ae37a306a5800f3717f59c4337e6a9bd5e8d + checksum: 10/1689ccafef894825481fc3d856b4834ba3cc185a9c2878f3c76a9a1ef81af04194849840f3c69e7961e2312771471bb3b460ca92561e1d87599b26c37d0ffb6f languageName: node linkType: hard @@ -17437,12 +17519,12 @@ __metadata: linkType: hard "typescript@patch:typescript@npm%3A^5.0.4#optional!builtin": - version: 5.5.3 - resolution: "typescript@patch:typescript@npm%3A5.5.3#optional!builtin::version=5.5.3&hash=b45daf" + version: 5.5.4 + resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin::version=5.5.4&hash=b45daf" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10/b61b8bb4b4d6a8a00f9d5f931f8c67070eed6ad11feabf4c41744a326987080bfc806a621596c70fbf2e5974eca3ed65bafeeeb22a078071bdfb51d8abd7c013 + checksum: 10/2c065f0ef81855eac25c9b658a3c9da65ffc005260c12854c2286f40f3667e1b1ecf8bdbdd37b59aa0397920378ce7900bff8cb32e0f1c7af6fd86efc676718c languageName: node linkType: hard @@ -17600,7 +17682,7 @@ __metadata: languageName: node linkType: hard -"uri-js@npm:^4.2.2, uri-js@npm:^4.4.1": +"uri-js@npm:^4.2.2": version: 4.4.1 resolution: "uri-js@npm:4.4.1" dependencies: From fff13b02b2e2d9ed2f6eb35cb0520a9918ff85a3 Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 31 Jul 2024 01:44:27 +0530 Subject: [PATCH 02/12] update selectors --- e2e/specs/onboarding-test.spec.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index 0e7f0c0..702a6e6 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -32,39 +32,39 @@ test('Basic Walkthrough', async ({ page }) => { await expect( page.locator('#react-joyride-step-0 div').filter({ hasText: 'Welcome to OpenMRS!' }).first(), ).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the search icon Joyride tooltip', async () => { await expect( page.locator('#react-joyride-step-1 div').filter({ hasText: 'This is the search icon' }).first(), ).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the add patient icon Joyride tooltip', async () => { await expect( page.locator('#react-joyride-step-2 div').filter({ hasText: 'This is the add patient icon' }).first(), ).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the user icon Joyride tooltip', async () => { await expect(page.locator('#react-joyride-step-3 div').filter({ hasText: 'The user icon' }).first()).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the active visits Joyride tooltip', async () => { await expect( page.locator('#react-joyride-step-4 div').filter({ hasText: 'This table displays active visits' }).first(), ).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the appointments table Joyride tooltip', async () => { await expect( page.locator('#react-joyride-step-5 div').filter({ hasText: 'This table shows appointments' }).first(), ).toBeVisible(); - await page.locator('[data-test-id="button-primary"]').click(); + await page.getByLabel('Last').click(); }); }); From 0152bbf20b6c876d89b415758af88bd636607973 Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 31 Jul 2024 02:07:28 +0530 Subject: [PATCH 03/12] Replace the joyride tooltip selectors --- e2e/specs/onboarding-test.spec.ts | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index 702a6e6..0649dc9 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -29,42 +29,32 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('Then I should see the first Joyride tooltip', async () => { - await expect( - page.locator('#react-joyride-step-0 div').filter({ hasText: 'Welcome to OpenMRS!' }).first(), - ).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'Welcome to OpenMRS!' }).nth(1)).toBeVisible(); await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the search icon Joyride tooltip', async () => { - await expect( - page.locator('#react-joyride-step-1 div').filter({ hasText: 'This is the search icon' }).first(), - ).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'This is the search icon.' }).nth(1)).toBeVisible(); await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the add patient icon Joyride tooltip', async () => { - await expect( - page.locator('#react-joyride-step-2 div').filter({ hasText: 'This is the add patient icon' }).first(), - ).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'This is the add patient' }).nth(1)).toBeVisible(); await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the user icon Joyride tooltip', async () => { - await expect(page.locator('#react-joyride-step-3 div').filter({ hasText: 'The user icon' }).first()).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'The user icon' }).nth(1)).toBeVisible(); await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the active visits Joyride tooltip', async () => { - await expect( - page.locator('#react-joyride-step-4 div').filter({ hasText: 'This table displays active visits' }).first(), - ).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'This table displays active visits' }).nth(1)).toBeVisible(); await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the appointments table Joyride tooltip', async () => { - await expect( - page.locator('#react-joyride-step-5 div').filter({ hasText: 'This table shows appointments' }).first(), - ).toBeVisible(); + await expect(page.locator('div').filter({ hasText: 'This table shows appointments' }).nth(1)).toBeVisible(); await page.getByLabel('Last').click(); }); }); From e03c7a215fa16d94553c1f295984e7637ebc473a Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 31 Jul 2024 13:14:28 +0530 Subject: [PATCH 04/12] updated bash script to have patient-search-app module --- e2e/support/github/run-e2e-docker-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/support/github/run-e2e-docker-env.sh b/e2e/support/github/run-e2e-docker-env.sh index 8c238e4..081107a 100644 --- a/e2e/support/github/run-e2e-docker-env.sh +++ b/e2e/support/github/run-e2e-docker-env.sh @@ -20,7 +20,7 @@ echo "Creating dynamic spa-assemble-config.json..." jq -n \ --arg app_name "$app_name" \ --arg app_file "/app/$packed_app_name.tgz" \ - '{"@openmrs/esm-primary-navigation-app": "next", "@openmrs/esm-home-app": "next", "@openmrs/esm-help-menu-app": "next"} + { + '{"@openmrs/esm-primary-navigation-app": "next", "@openmrs/esm-home-app": "next", "@openmrs/esm-help-menu-app": "next", "@openmrs/esm-patient-search-app": "next"} + { ($app_name): $app_file }' | jq '{"frontendModules": .}' > "$working_dir/spa-assemble-config.json" echo "Created dynamic spa-assemble-config.json" From 42c96ee86f81ec54ce5918b248877ca127537c34 Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 31 Jul 2024 15:47:16 +0530 Subject: [PATCH 05/12] Updated script with other modules and playwright config file --- e2e/support/github/run-e2e-docker-env.sh | 10 +++++++++- playwright.config.ts | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/e2e/support/github/run-e2e-docker-env.sh b/e2e/support/github/run-e2e-docker-env.sh index 081107a..3dd15ff 100644 --- a/e2e/support/github/run-e2e-docker-env.sh +++ b/e2e/support/github/run-e2e-docker-env.sh @@ -20,7 +20,15 @@ echo "Creating dynamic spa-assemble-config.json..." jq -n \ --arg app_name "$app_name" \ --arg app_file "/app/$packed_app_name.tgz" \ - '{"@openmrs/esm-primary-navigation-app": "next", "@openmrs/esm-home-app": "next", "@openmrs/esm-help-menu-app": "next", "@openmrs/esm-patient-search-app": "next"} + { +'{ + "@openmrs/esm-primary-navigation-app": "next", + "@openmrs/esm-home-app": "next", + "@openmrs/esm-help-menu-app": "next", + "@openmrs/esm-patient-search-app": "next", + "@openmrs/esm-patient-registration-app": "next", + "@openmrs/esm-active-visits-app": "next", + "@openmrs/esm-appointments-app": "next" + } + { ($app_name): $app_file }' | jq '{"frontendModules": .}' > "$working_dir/spa-assemble-config.json" echo "Created dynamic spa-assemble-config.json" diff --git a/playwright.config.ts b/playwright.config.ts index 7b4e33c..5e8d075 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -23,8 +23,8 @@ const config: PlaywrightTestConfig = { use: { baseURL: `${process.env.E2E_BASE_URL}/spa/`, storageState: 'e2e/storageState.json', - video: 'off', - trace: 'off', + video: 'retain-on-failure', + trace: 'retain-on-failure', }, projects: [ { From 6bf8b7822b8eb3a8372a185a50de5d66e63d6d84 Mon Sep 17 00:00:00 2001 From: vijay Date: Thu, 1 Aug 2024 22:13:01 +0530 Subject: [PATCH 06/12] Updated playwrightto set the videos and trace on --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 5e8d075..9c90eda 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -23,8 +23,8 @@ const config: PlaywrightTestConfig = { use: { baseURL: `${process.env.E2E_BASE_URL}/spa/`, storageState: 'e2e/storageState.json', - video: 'retain-on-failure', - trace: 'retain-on-failure', + video: 'on', + trace: 'on', }, projects: [ { From 7b91aee8a7eaf2dce82e70be5c9ec429f276cc55 Mon Sep 17 00:00:00 2001 From: vijay Date: Thu, 1 Aug 2024 23:38:37 +0530 Subject: [PATCH 07/12] separated tests and modifying selector for tooltip --- e2e/specs/onboarding-test.spec.ts | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index 0649dc9..4064942 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -29,32 +29,47 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('Then I should see the first Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'Welcome to OpenMRS!' }).nth(1)).toBeVisible(); + await expect(page.getByText('Welcome to OpenMRS!')).toBeVisible(); + }); + + await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); - await test.step('And I should see the search icon Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'This is the search icon.' }).nth(1)).toBeVisible(); + await test.step('Then I should see the search icon Joyride tooltip', async () => { + await expect(page.getByText('This is the search icon.')).toBeVisible(); + }); + await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the add patient icon Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'This is the add patient' }).nth(1)).toBeVisible(); + await expect(page.getByText('This is the add patient')).toBeVisible(); + }); + await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); - await test.step('And I should see the user icon Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'The user icon' }).nth(1)).toBeVisible(); + await test.step('Then I should see the user icon Joyride tooltip', async () => { + await expect(page.getByText('The user icon')).toBeVisible(); + }); + await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the active visits Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'This table displays active visits' }).nth(1)).toBeVisible(); + await expect(page.getByText('This table displays active visits')).toBeVisible(); + }); + + await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('And I should see the appointments table Joyride tooltip', async () => { - await expect(page.locator('div').filter({ hasText: 'This table shows appointments' }).nth(1)).toBeVisible(); + await expect(page.getByText('This table shows appointments')).toBeVisible(); + }); + + await test.step('And I click the next button', async () => { await page.getByLabel('Last').click(); }); }); From de4310f6ccc8cc813e539cf75cc4a30548d6b93c Mon Sep 17 00:00:00 2001 From: vijay Date: Fri, 2 Aug 2024 01:39:08 +0530 Subject: [PATCH 08/12] change description of the last step --- e2e/specs/onboarding-test.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index 4064942..b71fde9 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -69,7 +69,7 @@ test('Basic Walkthrough', async ({ page }) => { await expect(page.getByText('This table shows appointments')).toBeVisible(); }); - await test.step('And I click the next button', async () => { + await test.step('And I click the finish button', async () => { await page.getByLabel('Last').click(); }); }); From f8061ba22c71a74257b6fa12468009bff75d810d Mon Sep 17 00:00:00 2001 From: vijay Date: Mon, 5 Aug 2024 08:42:07 +0530 Subject: [PATCH 09/12] updated to ghost button and list to unordered list --- src/tutorial/modal.component.tsx | 22 ++++++++++++---------- src/tutorial/styles.scss | 6 ------ 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/src/tutorial/modal.component.tsx b/src/tutorial/modal.component.tsx index d916e72..ccdf306 100644 --- a/src/tutorial/modal.component.tsx +++ b/src/tutorial/modal.component.tsx @@ -3,7 +3,7 @@ import { useTranslation } from 'react-i18next'; import { useConfig, useAppContext, navigate } from '@openmrs/esm-framework'; import styles from './styles.scss'; import { type TutorialContext } from '../types'; -import { ModalHeader, ModalBody } from '@carbon/react'; +import { ModalHeader, ModalBody, Button } from '@carbon/react'; const TutorialModal = ({ open, onClose }) => { const { t } = useTranslation(); @@ -45,15 +45,17 @@ const TutorialModal = ({ open, onClose }) => {

- {tutorials.map((tutorial, index) => ( -
-

{tutorial.title}

-

{tutorial.description}

-
handleWalkthroughClick(index)}> - {t('walkthrough', 'Walkthrough')} -
-
- ))} +
    + {tutorials.map((tutorial, index) => ( +
  • +

    {tutorial.title}

    +

    {tutorial.description}

    + +
  • + ))} +
); diff --git a/src/tutorial/styles.scss b/src/tutorial/styles.scss index af82569..1c13945 100644 --- a/src/tutorial/styles.scss +++ b/src/tutorial/styles.scss @@ -26,11 +26,5 @@ @include type.type-style('body-compact-01'); } - .walkthrough { - margin-bottom: spacing.$spacing-03; - margin-top: spacing.$spacing-03; - color: $color-blue-60-2; - @include type.type-style('body-compact-02'); - } } } From b1ea0656e76106f02eb3ec60d4ed4a1127d3769a Mon Sep 17 00:00:00 2001 From: vijay Date: Mon, 5 Aug 2024 08:45:12 +0530 Subject: [PATCH 10/12] updated the selector for basic walkthrough test --- e2e/specs/onboarding-test.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index b71fde9..78f07c2 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -25,7 +25,11 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('And I click on the Basic Tutorial walkthrough', async () => { - await page.getByText('Walkthrough').nth(1).click(); + await page + .locator('li') + .filter({ hasText: 'Basic Tutorial' }) + .locator('button', { hasText: 'Walkthrough' }) + .click(); }); await test.step('Then I should see the first Joyride tooltip', async () => { From 79eacf9f1df55a22f24143695e8c0d499297e22f Mon Sep 17 00:00:00 2001 From: vijay Date: Mon, 5 Aug 2024 16:19:09 +0530 Subject: [PATCH 11/12] (fix) : add full content of steps --- e2e/specs/onboarding-test.spec.ts | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/e2e/specs/onboarding-test.spec.ts b/e2e/specs/onboarding-test.spec.ts index 78f07c2..068eb55 100644 --- a/e2e/specs/onboarding-test.spec.ts +++ b/e2e/specs/onboarding-test.spec.ts @@ -33,7 +33,11 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('Then I should see the first Joyride tooltip', async () => { - await expect(page.getByText('Welcome to OpenMRS!')).toBeVisible(); + await expect( + page.getByText( + 'Welcome to OpenMRS! This is the main dashboard where you can navigate to various features of the system.', + ), + ).toBeVisible(); }); await test.step('And I click the next button', async () => { @@ -41,28 +45,36 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('Then I should see the search icon Joyride tooltip', async () => { - await expect(page.getByText('This is the search icon.')).toBeVisible(); + await expect( + page.getByText('This is the search icon. Use it to find patients in the system quickly.'), + ).toBeVisible(); }); await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the add patient icon Joyride tooltip', async () => { - await expect(page.getByText('This is the add patient')).toBeVisible(); + await expect( + page.getByText('This is the add patient icon. Click here to register a new patient into the system.'), + ).toBeVisible(); }); await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the user icon Joyride tooltip', async () => { - await expect(page.getByText('The user icon')).toBeVisible(); + await expect( + page.getByText('The user icon. Click here to change your user preferences and settings.'), + ).toBeVisible(); }); await test.step('And I click the next button', async () => { await page.getByLabel('Next', { exact: true }).click(); }); await test.step('Then I should see the active visits Joyride tooltip', async () => { - await expect(page.getByText('This table displays active visits')).toBeVisible(); + await expect( + page.getByText('This table displays active visits. Here you can see all the ongoing patient visits.'), + ).toBeVisible(); }); await test.step('And I click the next button', async () => { @@ -70,7 +82,9 @@ test('Basic Walkthrough', async ({ page }) => { }); await test.step('And I should see the appointments table Joyride tooltip', async () => { - await expect(page.getByText('This table shows appointments')).toBeVisible(); + await expect( + page.getByText('This table shows appointments. View and manage patient appointments from this section.'), + ).toBeVisible(); }); await test.step('And I click the finish button', async () => { From 7bebe00cc1a106603f6eca730e0ccb408f0642a3 Mon Sep 17 00:00:00 2001 From: Jayasanka Weerasinghe <33048395+jayasanka-sack@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:21:28 +0100 Subject: [PATCH 12/12] Update playwright.config.ts --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 9c90eda..5709ffa 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -24,7 +24,7 @@ const config: PlaywrightTestConfig = { baseURL: `${process.env.E2E_BASE_URL}/spa/`, storageState: 'e2e/storageState.json', video: 'on', - trace: 'on', + trace: 'retain-on-failure', }, projects: [ {