diff --git a/apps/web/package.json b/apps/web/package.json index ef147c4fe..35a28e9ad 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -51,19 +51,19 @@ "@kit/ui": "workspace:^", "@makerkit/data-loader-supabase-core": "^0.0.7", "@makerkit/data-loader-supabase-nextjs": "^1.1.0", - "@marsidev/react-turnstile": "^0.5.4", + "@marsidev/react-turnstile": "^0.6.0", "@radix-ui/react-icons": "^1.3.0", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", "@tanstack/react-query-next-experimental": "^5.32.0", "@tanstack/react-table": "^8.16.0", "date-fns": "^3.6.0", - "lucide-react": "^0.373.0", + "lucide-react": "^0.376.0", "next": "14.2.3", "next-sitemap": "^4.2.3", "next-themes": "0.3.0", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "^7.51.3", "react-i18next": "^14.1.1", "recharts": "^2.12.6", @@ -79,13 +79,13 @@ "@next/bundle-analyzer": "14.3.0-canary.9", "@types/mdx": "^2.0.13", "@types/node": "^20.12.7", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", + "@types/react": "^18.3.1", + "@types/react-dom": "^18.3.0", "autoprefixer": "^10.4.19", "dotenv-cli": "^7.4.1", "eslint": "^8.57.0", "prettier": "^3.2.5", - "supabase": "^1.163.2", + "supabase": "^1.163.6", "tailwindcss": "3.4.3", "typescript": "^5.4.5" }, @@ -98,5 +98,12 @@ "@kit/eslint-config/apps" ] }, - "prettier": "@kit/prettier-config" + "prettier": "@kit/prettier-config", + "browserslist": [ + "iOS >= 9", + "Android >= 4.4", + "last 2 versions", + "> 0.2%", + "not dead" + ] } diff --git a/apps/web/public/locales/en/marketing.json b/apps/web/public/locales/en/marketing.json index 323c4a132..971237cec 100644 --- a/apps/web/public/locales/en/marketing.json +++ b/apps/web/public/locales/en/marketing.json @@ -33,5 +33,5 @@ "contactSuccess": "Your message has been sent successfully", "contactError": "An error occurred while sending your message", "contactSuccessDescription": "We have received your message and will get back to you as soon as possible", - "contactErrorDescription": "An error occurred while sending your message. Please try again later" + "contactErrorDescription": "An error occurred while sending your message. Please try again later" } diff --git a/apps/web/supabase/migrations/20221215192558_schema.sql b/apps/web/supabase/migrations/20221215192558_schema.sql index 17a2492cf..c32eb02bd 100644 --- a/apps/web/supabase/migrations/20221215192558_schema.sql +++ b/apps/web/supabase/migrations/20221215192558_schema.sql @@ -172,7 +172,8 @@ values ( -- Open up access to config table for authenticated users and service_role grant select on public.config to authenticated, service_role; --- RLS on the config table +-- RLS +-- SELECT(config): -- Authenticated users can read the config create policy "public config can be read by authenticated users" on public.config @@ -246,7 +247,8 @@ language plpgsql; grant execute on function public.get_config() to authenticated, service_role; --- check if a field is set in the config +-- Function "public.is_set" +-- Check if a field is set in the config create or replace function public.is_set(field_name text) returns boolean as $$ @@ -264,7 +266,6 @@ language plpgsql; grant execute on function public.is_set(text) to authenticated; - /* * ------------------------------------------------------- * Section: Accounts @@ -309,33 +310,35 @@ grant select, insert, update, delete on table public.accounts to authenticated, service_role; -- constraint that conditionally allows nulls on the slug ONLY if --- personal_account is true +-- personal_account is true alter table public.accounts add constraint accounts_slug_null_if_personal_account_true check ((is_personal_account = true and slug is null) or (is_personal_account = false and slug is not null)); --- constraint to ensure that the primary_owner_user_id is unique for --- personal accounts +-- constraint to ensure that the primary_owner_user_id is unique for personal accounts create unique index unique_personal_account on public.accounts(primary_owner_user_id) where is_personal_account = true; -- RLS on the accounts table --- SELECT: Users can read their own accounts + +-- SELECT(accounts): +-- Users can read their own accounts create policy accounts_read_self on public.accounts for select to authenticated using (auth.uid() = primary_owner_user_id); --- UPDATE: Team owners can update their accounts +-- UPDATE(accounts): +-- Team owners can update their accounts create policy accounts_self_update on public.accounts for update to authenticated using (auth.uid() = primary_owner_user_id) with check (auth.uid() = primary_owner_user_id); --- Functions --- Function to transfer team account ownership to another user +-- Function "public.transfer_team_account_ownership" +-- Function to transfer the ownership of a team account to another user create or replace function public.transfer_team_account_ownership(target_account_id uuid, new_owner_id uuid) @@ -386,6 +389,8 @@ grant execute on function public.transfer_team_account_ownership(uuid, uuid) to service_role; +-- Function "public.is_account_owner" +-- Function to check if a user is the primary owner of an account create function public.is_account_owner(account_id uuid) returns boolean as $$ @@ -404,6 +409,8 @@ language sql; grant execute on function public.is_account_owner(uuid) to authenticated, service_role; +-- Function "kit.protect_account_fields" +-- Function to protect account fields from being updated create or replace function kit.protect_account_fields() returns trigger as $$ @@ -429,6 +436,8 @@ create trigger protect_account_fields before update on public.accounts for each row execute function kit.protect_account_fields(); +-- Function "public.get_upper_system_role" +-- Function to get the highest system role for an account create or replace function public.get_upper_system_role() returns varchar as $$ @@ -447,6 +456,8 @@ language plpgsql; grant execute on function public.get_upper_system_role() to service_role; +-- Function "kit.add_current_user_to_new_account" +-- Trigger to add the current user to a new account as the primary owner create or replace function kit.add_current_user_to_new_account() returns trigger language plpgsql @@ -477,8 +488,7 @@ create trigger "add_current_user_to_new_account" after insert on public.accounts for each row execute function kit.add_current_user_to_new_account(); --- create a trigger to update the account email when the primary owner --- email is updated +-- create a trigger to update the account email when the primary owner email is updated create or replace function kit.handle_update_user_email() returns trigger language plpgsql @@ -500,9 +510,8 @@ end; $$; --- trigger the function every time a user email is updated --- only if the user is the primary owner of the account and the --- account is personal account +-- trigger the function every time a user email is updated only if the user is the primary owner of the account and + -- the account is personal account create trigger "on_auth_user_updated" after update of email on auth.users for each row execute procedure kit.handle_update_user_email(); @@ -513,7 +522,7 @@ create trigger "on_auth_user_updated" * We create the schema for the roles. Roles are the roles for an account. For example, an account might have the roles 'owner', 'admin', and 'member'. * ------------------------------------------------------- */ --- Account Memberships table +-- Roles Table create table if not exists public.roles( name varchar(50) not null, hierarchy_level int not null check (hierarchy_level > 0), @@ -545,6 +554,8 @@ create unique index idx_unique_hierarchy_per_account create unique index idx_unique_name_per_account on public.roles (name, coalesce(account_id, kit.get_system_role_uuid())); +-- Function "kit.check_non_personal_account_roles" +-- Trigger to prevent roles from being created for personal accounts create or replace function kit.check_non_personal_account_roles() returns trigger as $$ @@ -594,14 +605,14 @@ comment on column public.accounts_memberships.account_id is 'The account the mem comment on column public.accounts_memberships.account_role is 'The role for the membership'; --- Open up access to accounts_memberships table for authenticated users --- and service_role +-- Open up access to accounts_memberships table for authenticated users and service_role grant select, insert, update, delete on table public.accounts_memberships to service_role; -- Enable RLS on the accounts_memberships table alter table public.accounts_memberships enable row level security; +-- Function "kit.prevent_account_owner_membership_delete" -- Trigger to prevent a primary owner from being removed from an account create or replace function kit.prevent_account_owner_membership_delete() returns trigger @@ -630,7 +641,8 @@ create or replace trigger prevent_account_owner_membership_delete_check before delete on public.accounts_memberships for each row execute function kit.prevent_account_owner_membership_delete(); --- Functions +-- Function "public.has_role_on_account" +-- Function to check if a user has a role on an account create or replace function public.has_role_on_account(account_id uuid, account_role varchar(50) default null) returns boolean @@ -654,7 +666,8 @@ $$; grant execute on function public.has_role_on_account(uuid, varchar) to authenticated; --- Function to check if a user is a team member of an account or not +-- Function "public.is_team_member" +-- Check if a user is a team member of an account or not create or replace function public.is_team_member(account_id uuid, user_id uuid) returns boolean @@ -676,9 +689,9 @@ $$; grant execute on function public.is_team_member(uuid, uuid) to authenticated; - --- SELECT(roles): authenticated users can query roles if the role is public --- or the user has a role on the account the role is for +-- RLS +-- SELECT(roles) +-- authenticated users can query roles if the role is public or the user has a role on the account the role is for create policy roles_read on public.roles for select to authenticated using ( @@ -686,8 +699,8 @@ create policy roles_read on public.roles or public.has_role_on_account(account_id) ); - --- Function to check if a user can perform management actions on an account member +-- Function "public.can_action_account_member" +-- Check if a user can perform management actions on an account member create or replace function public.can_action_account_member(target_team_account_id uuid, target_user_id uuid) @@ -786,36 +799,29 @@ grant execute on function public.can_action_account_member(uuid, uuid) to authenticated, service_role; -- RLS --- SELECT: Users can read their account memberships + +-- SELECT(accounts_memberships): +-- Users can read their account memberships create policy accounts_memberships_read_self on public.accounts_memberships for select to authenticated using (user_id = auth.uid()); --- SELECT: Users can read their team members account memberships +-- SELECT(accounts_memberships): +-- Users can read their team members account memberships create policy accounts_memberships_team_read on public.accounts_memberships for select to authenticated using (is_team_member(account_id, user_id)); -- RLS on the accounts table --- SELECT: Users can read the team accounts they are a member of + +-- SELECT(accounts): +-- Users can read the team accounts they are a member of create policy accounts_read_team on public.accounts for select to authenticated using (has_role_on_account(id)); --- DELETE: Users can remove themselves from an account unless they are the primary owner -create policy accounts_memberships_delete_self on public.accounts_memberships - for delete - to authenticated - using (user_id = auth.uid()); - --- DELETE: Users with the required role can remove members from an account -create policy accounts_memberships_delete on public.accounts_memberships - for delete - to authenticated - using (public.can_action_account_member(account_id, user_id)); - --- SELECT (public.accounts): Team members can read accounts of the team --- they are a member of +-- SELECT(accounts): +-- Team members can read accounts of the team they are a member of create policy accounts_team_read on public.accounts for select to authenticated using (exists ( @@ -826,6 +832,20 @@ create policy accounts_team_read on public.accounts where public.is_team_member(membership.account_id, id))); +-- DELETE(accounts_memberships): +-- Users can remove themselves from an account unless they are the primary owner +create policy accounts_memberships_delete_self on public.accounts_memberships + for delete + to authenticated + using (user_id = auth.uid()); + +-- DELETE(accounts_memberships): +-- Users with the required role can remove members from an account +create policy accounts_memberships_delete on public.accounts_memberships + for delete + to authenticated + using (public.can_action_account_member(account_id, user_id)); + /* * ------------------------------------------------------- * Section: Role Permissions @@ -847,10 +867,14 @@ comment on column public.role_permissions.role is 'The role the permission is fo comment on column public.role_permissions.permission is 'The permission for the role'; --- Open up access to accounts +-- Open up access to role_permissions table for authenticated users and service_role grant select, insert, update, delete on table public.role_permissions - to authenticated, service_role; + to service_role; +-- Authenticated users can read role permissions +grant select on table public.role_permissions to authenticated; + +-- Function "public.has_permission" -- Create a function to check if a user has a permission create function public.has_permission(user_id uuid, account_id uuid, permission_name app_permissions) @@ -878,7 +902,8 @@ language plpgsql; grant execute on function public.has_permission(uuid, uuid, public.app_permissions) to authenticated, service_role; --- Function: Check if a user has a more elevated role than the target role +-- Function "public.has_more_elevated_role" +-- Check if a user has a more elevated role than the target role create or replace function public.has_more_elevated_role(target_user_id uuid, target_account_id uuid, role_name varchar) @@ -951,7 +976,8 @@ language plpgsql; grant execute on function public.has_more_elevated_role(uuid, uuid, varchar) to authenticated, service_role; --- Function: Check if a user has the same role hierarchy level as the target role +-- Function "public.has_same_role_hierarchy_level" +-- Check if a user has the same role hierarchy level as the target role create or replace function public.has_same_role_hierarchy_level(target_user_id uuid, target_account_id uuid, role_name varchar) @@ -1026,8 +1052,10 @@ grant execute on function public.has_same_role_hierarchy_level(uuid, uuid, -- Enable RLS on the role_permissions table alter table public.role_permissions enable row level security; --- RLS --- Authenticated Users can read their permissions +-- RLS on the role_permissions table + +-- SELECT(role_permissions): +-- Authenticated Users can read global permissions create policy role_permissions_read on public.role_permissions for select to authenticated using (true); @@ -1074,6 +1102,8 @@ grant select, insert, update, delete on table public.invitations to -- Enable RLS on the invitations table alter table public.invitations enable row level security; +-- Function "kit.check_team_account" +-- Function to check if the account is a team account or not when inserting or updating an invitation create or replace function kit.check_team_account() returns trigger as $$ @@ -1100,19 +1130,17 @@ create trigger only_team_accounts_check before insert or update on public.invitations for each row execute procedure kit.check_team_account(); --- RLS --- SELECT: Users can read invitations to users of an account they --- are --- a member of +-- RLS on the invitations table + +-- SELECT(invitations): +-- Users can read invitations to users of an account they are a member of create policy invitations_read_self on public.invitations for select to authenticated using (public.has_role_on_account(account_id)); --- INSERT: Users can create invitations to users of an account they are --- a member of --- and have the 'invites.manage' permission AND the target role is --- not --- higher than the user's role +-- INSERT(invitations): +-- Users can create invitations to users of an account they are +-- a member of and have the 'invites.manage' permission AND the target role is not higher than the user's role create policy invitations_create_self on public.invitations for insert to authenticated with check ( @@ -1120,11 +1148,9 @@ create policy invitations_create_self on public.invitations and public.has_permission(auth.uid(), account_id, 'invites.manage'::app_permissions) and public.has_same_role_hierarchy_level(auth.uid(), account_id, role)); --- UPDATE: Users can update invitations to users of an account they are --- a member of --- and have the 'invites.manage' permission AND the target role is --- not --- higher than the user's role +-- UPDATE(public.invitations): +-- Users can update invitations to users of an account they are a member of and have the 'invites.manage' permission AND +-- the target role is not higher than the user's role create policy invitations_update on public.invitations for update to authenticated using (public.has_permission(auth.uid(), account_id, @@ -1134,16 +1160,14 @@ create policy invitations_update on public.invitations 'invites.manage'::app_permissions) and public.has_more_elevated_role(auth.uid(), account_id, role)); --- DELETE: Users can delete invitations to users of an account they are --- a member of --- and have the 'invites.manage' permission +-- DELETE(public.invitations): +-- Users can delete invitations to users of an account they are a member of and have the 'invites.manage' permission create policy invitations_delete on public.invitations for delete to authenticated using (has_role_on_account(account_id) - and public.has_permission(auth.uid(), account_id, - 'invites.manage'::app_permissions)); + and public.has_permission(auth.uid(), account_id, 'invites.manage'::app_permissions)); --- Functions +-- Functions "public.accept_invitation" -- Function to accept an invitation to an account create or replace function accept_invitation(token text, user_id uuid) returns uuid @@ -1164,7 +1188,6 @@ begin if not found then raise exception 'Invalid or expired invitation token'; - end if; insert into public.accounts_memberships( @@ -1187,7 +1210,6 @@ language plpgsql; grant execute on function accept_invitation(text, uuid) to service_role; - /* * ------------------------------------------------------- * Section: Billing Customers @@ -1222,12 +1244,13 @@ grant select, insert, update, delete on table -- Enable RLS on billing_customers table alter table public.billing_customers enable row level security; -grant select on table public.billing_customers to authenticated; +-- Open up access to billing_customers table for authenticated users +grant select on table public.billing_customers to authenticated, service_role; --- RLS --- SELECT: Users can read account subscriptions on an account they --- are --- a member of +-- RLS on the billing_customers table + +-- SELECT(billing_customers): +-- Users can read account subscriptions on an account they are a member of create policy billing_customers_read_self on public.billing_customers for select to authenticated using (account_id = auth.uid() @@ -1282,9 +1305,7 @@ comment on column public.subscriptions.active is 'Whether the subscription is ac comment on column public.subscriptions.billing_customer_id is 'The billing customer ID for the subscription'; - --- Open up access to subscriptions table for authenticated users and --- service_role +-- Open up access to subscriptions table for authenticated users and service_role grant select, insert, update, delete on table public.subscriptions to service_role; @@ -1293,10 +1314,10 @@ grant select on table public.subscriptions to authenticated; -- Enable RLS on subscriptions table alter table public.subscriptions enable row level security; --- RLS --- SELECT: Users can read account subscriptions on an account they --- are --- a member of +-- RLS on the subscriptions table + +-- SELECT(subscriptions): +-- Users can read account subscriptions on an account they are a member of create policy subscriptions_read_self on public.subscriptions for select to authenticated using ( @@ -1304,7 +1325,8 @@ create policy subscriptions_read_self on public.subscriptions or (account_id = auth.uid() and public.is_set('enable_account_billing')) ); --- Functions +-- Function "public.upsert_subscription" +-- Insert or Update a subscription and its items in the database when receiving a webhook from the billing provider create or replace function public.upsert_subscription(target_account_id uuid, target_customer_id varchar(255), target_subscription_id text, @@ -1483,8 +1505,8 @@ grant insert, update, delete on table public.subscription_items to -- RLS alter table public.subscription_items enable row level security; --- SELECT: Users can read subscription items on a subscription they are --- a member of +-- SELECT(subscription_items) +-- Users can read subscription items on a subscription they are a member of create policy subscription_items_read_self on public.subscription_items for select to authenticated using (exists ( @@ -1538,9 +1560,8 @@ grant select, insert, update, delete on table public.orders to service_role; -- RLS alter table public.orders enable row level security; --- SELECT --- Users can read orders on an account they are a member of or the --- account is their own +-- SELECT(orders) +-- Users can read orders on an account they are a member of or the account is their own create policy orders_read_self on public.orders for select to authenticated using ((account_id = auth.uid() and public.is_set('enable_account_billing')) @@ -1586,7 +1607,7 @@ grant select on table public.order_items to authenticated, service_role; -- RLS alter table public.order_items enable row level security; --- SELECT +-- SELECT(order_items): -- Users can read order items on an order they are a member of create policy order_items_read_self on public.order_items for select to authenticated @@ -1599,7 +1620,8 @@ create policy order_items_read_self on public.order_items id = order_id and (account_id = auth.uid() or has_role_on_account(account_id)))); --- Functions +-- Function "public.upsert_order" +-- Insert or update an order and its items when receiving a webhook from the billing provider create or replace function public.upsert_order(target_account_id uuid, target_customer_id varchar(255), target_order_id text, status public.payment_status, billing_provider @@ -1685,13 +1707,8 @@ grant execute on function public.upsert_order(uuid, varchar, text, public.payment_status, public.billing_provider, numeric, varchar, jsonb) to service_role; - -/* - * ------------------------------------------------------- - * Section: Functions - * ------------------------------------------------------- - */ -- Create a function to slugify a string +-- useful for turning an account name into a unique slug create or replace function kit.slugify("value" text) returns text as $$ @@ -1740,6 +1757,8 @@ strict immutable; grant execute on function kit.slugify(text) to service_role, authenticated; +-- Function "kit.set_slug_from_account_name" +-- Set the slug from the account name and increment if the slug exists create or replace function kit.set_slug_from_account_name() returns trigger language plpgsql @@ -1802,7 +1821,8 @@ create trigger "update_slug_from_account_name" NEW.is_personal_account = false) execute procedure kit.set_slug_from_account_name(); --- Create a function to setup a new user with a personal account +-- Function "kit.setup_new_user" +-- Setup a new user account after user creation create function kit.setup_new_user() returns trigger language plpgsql @@ -1851,13 +1871,18 @@ create trigger on_auth_user_created after insert on auth.users for each row execute procedure kit.setup_new_user(); --- Function: create a team account +-- Function "public.create_team_account" +-- Create a team account if team accounts are enabled create or replace function public.create_team_account(account_name text) returns public.accounts as $$ declare new_account public.accounts; begin + if (not public.is_set('enable_team_accounts')) then + raise exception 'Team accounts are not enabled'; + end if; + insert into public.accounts( name, is_personal_account) @@ -1877,7 +1902,7 @@ language plpgsql; grant execute on function public.create_team_account(text) to authenticated, service_role; --- RLS +-- RLS(public.accounts) -- Authenticated users can create team accounts create policy create_org_account on public.accounts for insert to authenticated @@ -1886,7 +1911,8 @@ public.is_set( 'enable_team_accounts') and public.accounts.is_personal_account = false); --- Function: create an invitation to an account +-- Function "public.create_invitation" +-- create an invitation to an account create or replace function public.create_invitation(account_id uuid, email text, role varchar(50)) returns public.invitations @@ -1962,8 +1988,8 @@ where grant select on public.user_accounts to authenticated, service_role; -- --- Function: get the account workspace for a team account --- to load all the required data for the authenticated user within the account scope +-- Function "public.team_account_workspace" +-- Load all the data for a team account workspace create or replace function public.team_account_workspace(account_slug text) returns table( @@ -2015,7 +2041,7 @@ language plpgsql; grant execute on function public.team_account_workspace(text) to authenticated, service_role; --- Functions: get account members +-- Functions "public.get_account_members" -- Function to get the members of an account by the account slug create or replace function public.get_account_members(account_slug text) returns table( @@ -2061,7 +2087,8 @@ $$; grant execute on function public.get_account_members(text) to authenticated, service_role; --- Function to get the account invitations by the account slug +-- Function "public.get_account_invitations" +-- List the account invitations by the account slug create or replace function public.get_account_invitations(account_slug text) returns table( id integer, @@ -2103,7 +2130,8 @@ language plpgsql; grant execute on function public.get_account_invitations(text) to authenticated, service_role; --- Function to append invitations to an account +-- Function "public.add_invitations_to_account" +-- Add invitations to an account create or replace function public.add_invitations_to_account(account_slug text, invitations public.invitation[]) @@ -2152,6 +2180,9 @@ language plpgsql; grant execute on function public.add_invitations_to_account(text, public.invitation[]) to authenticated, service_role; +-- Function "public.has_active_subscription" +-- Check if a user has an active subscription on an account - ie. it's trialing or active +-- Useful to gate access to features that require a subscription create or replace function public.has_active_subscription(target_account_id uuid) returns boolean as $$ @@ -2173,7 +2204,6 @@ language plpgsql; grant execute on function public.has_active_subscription(uuid) to authenticated, service_role; - -- Storage -- Account Image insert into storage.buckets( @@ -2185,6 +2215,8 @@ values ( 'account_image', true); +-- Function: get the storage filename as a UUID. +-- Useful if you want to name files with UUIDs related to an account create or replace function kit.get_storage_filename_as_uuid(name text) returns uuid as $$ diff --git a/package.json b/package.json index 5aba1b6a8..5b7d5e35e 100644 --- a/package.json +++ b/package.json @@ -37,26 +37,12 @@ ], "dependencies": { "@manypkg/cli": "^0.21.4", - "@turbo/gen": "^1.13.2", + "@turbo/gen": "^1.13.3", "cross-env": "^7.0.3", - "pnpm": "^8.15.7", + "pnpm": "^9.0.6", "prettier": "^3.2.5", - "turbo": "^1.13.2", + "turbo": "^1.13.3", "typescript": "^5.4.5", "yarn": "^1.22.22" - }, - "pnpm": { - "overrides": { - "next": "14.3.0-canary.7", - "react": "18.2.0", - "react-dom": "18.2.0" - } - }, - "browserslist": [ - "iOS >= 9", - "Android >= 4.4", - "last 2 versions", - "> 0.2%", - "not dead" - ] + } } diff --git a/packages/billing/core/src/services/billing-strategy-provider.service.ts b/packages/billing/core/src/services/billing-strategy-provider.service.ts index 214306ea3..a56c29a96 100644 --- a/packages/billing/core/src/services/billing-strategy-provider.service.ts +++ b/packages/billing/core/src/services/billing-strategy-provider.service.ts @@ -4,11 +4,11 @@ import { CancelSubscriptionParamsSchema, CreateBillingCheckoutSchema, CreateBillingPortalSessionSchema, + QueryBillingUsageSchema, ReportBillingUsageSchema, RetrieveCheckoutSessionSchema, UpdateSubscriptionParamsSchema, } from '../schema'; -import { QueryBillingUsageSchema } from '../schema/query-billing-usage.schema'; export abstract class BillingStrategyProviderService { abstract createBillingPortalSession( @@ -53,7 +53,7 @@ export abstract class BillingStrategyProviderService { value: number; }>; - abstract updateSubscription( + abstract updateSubscriptionItem( params: z.infer, ): Promise<{ success: boolean; diff --git a/packages/billing/gateway/package.json b/packages/billing/gateway/package.json index 482a13579..922753068 100644 --- a/packages/billing/gateway/package.json +++ b/packages/billing/gateway/package.json @@ -27,12 +27,12 @@ "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", - "@supabase/supabase-js": "^2.42.6", - "@types/react": "^18.2.79", + "@supabase/supabase-js": "^2.42.7", + "@types/react": "^18.3.1", "date-fns": "^3.6.0", - "lucide-react": "^0.373.0", + "lucide-react": "^0.376.0", "next": "14.2.3", - "react": "18.2.0", + "react": "18.3.1", "react-hook-form": "^7.51.3", "react-i18next": "^14.1.1", "zod": "^3.23.4" diff --git a/packages/billing/gateway/src/server/services/billing-gateway/billing-gateway.service.ts b/packages/billing/gateway/src/server/services/billing-gateway/billing-gateway.service.ts index 5395ece61..aaa82216f 100644 --- a/packages/billing/gateway/src/server/services/billing-gateway/billing-gateway.service.ts +++ b/packages/billing/gateway/src/server/services/billing-gateway/billing-gateway.service.ts @@ -44,10 +44,7 @@ class BillingGatewayService { async createCheckoutSession( params: z.infer, ) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = CreateBillingCheckoutSchema.parse(params); return strategy.createCheckoutSession(payload); @@ -61,10 +58,7 @@ class BillingGatewayService { async retrieveCheckoutSession( params: z.infer, ) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = RetrieveCheckoutSessionSchema.parse(params); return strategy.retrieveCheckoutSession(payload); @@ -78,10 +72,7 @@ class BillingGatewayService { async createBillingPortalSession( params: z.infer, ) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = CreateBillingPortalSessionSchema.parse(params); return strategy.createBillingPortalSession(payload); @@ -95,10 +86,7 @@ class BillingGatewayService { async cancelSubscription( params: z.infer, ) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = CancelSubscriptionParamsSchema.parse(params); return strategy.cancelSubscription(payload); @@ -110,10 +98,7 @@ class BillingGatewayService { * @param params */ async reportUsage(params: z.infer) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = ReportBillingUsageSchema.parse(params); return strategy.reportUsage(payload); @@ -125,10 +110,7 @@ class BillingGatewayService { * @param params */ async queryUsage(params: z.infer) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = QueryBillingUsageSchema.parse(params); return strategy.queryUsage(payload); @@ -141,12 +123,13 @@ class BillingGatewayService { async updateSubscriptionItem( params: z.infer, ) { - const strategy = await BillingGatewayFactoryService.GetProviderStrategy( - this.provider, - ); - + const strategy = await this.getStrategy(); const payload = UpdateSubscriptionParamsSchema.parse(params); - return strategy.updateSubscription(payload); + return strategy.updateSubscriptionItem(payload); + } + + getStrategy() { + return BillingGatewayFactoryService.GetProviderStrategy(this.provider); } } diff --git a/packages/billing/lemon-squeezy/package.json b/packages/billing/lemon-squeezy/package.json index c62401035..ef3b91503 100644 --- a/packages/billing/lemon-squeezy/package.json +++ b/packages/billing/lemon-squeezy/package.json @@ -25,9 +25,9 @@ "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", - "@types/react": "^18.2.79", + "@types/react": "^18.3.1", "next": "14.2.3", - "react": "18.2.0", + "react": "18.3.1", "zod": "^3.23.4" }, "eslintConfig": { diff --git a/packages/billing/lemon-squeezy/src/services/lemon-squeezy-billing-strategy.service.ts b/packages/billing/lemon-squeezy/src/services/lemon-squeezy-billing-strategy.service.ts index 8494bdf32..ddf688acd 100644 --- a/packages/billing/lemon-squeezy/src/services/lemon-squeezy-billing-strategy.service.ts +++ b/packages/billing/lemon-squeezy/src/services/lemon-squeezy-billing-strategy.service.ts @@ -307,7 +307,7 @@ export class LemonSqueezyBillingStrategyService * @description Queries the usage of the metered billing * @param params */ - async updateSubscription( + async updateSubscriptionItem( params: z.infer, ) { const logger = await getLogger(); diff --git a/packages/billing/stripe/package.json b/packages/billing/stripe/package.json index 1109aeb18..6c5437139 100644 --- a/packages/billing/stripe/package.json +++ b/packages/billing/stripe/package.json @@ -17,7 +17,7 @@ "dependencies": { "@stripe/react-stripe-js": "^2.7.0", "@stripe/stripe-js": "^3.3.0", - "stripe": "^15.3.0" + "stripe": "^15.4.0" }, "devDependencies": { "@kit/billing": "workspace:^", @@ -28,10 +28,10 @@ "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", - "@types/react": "^18.2.79", + "@types/react": "^18.3.1", "date-fns": "^3.6.0", "next": "14.2.3", - "react": "18.2.0", + "react": "18.3.1", "zod": "^3.23.4" }, "eslintConfig": { diff --git a/packages/billing/stripe/src/services/stripe-billing-strategy.service.ts b/packages/billing/stripe/src/services/stripe-billing-strategy.service.ts index d24c3f3df..15f77a24e 100644 --- a/packages/billing/stripe/src/services/stripe-billing-strategy.service.ts +++ b/packages/billing/stripe/src/services/stripe-billing-strategy.service.ts @@ -273,11 +273,11 @@ export class StripeBillingStrategyService } /** - * @name updateSubscription + * @name updateSubscriptionItem * @description Updates a subscription * @param params */ - async updateSubscription( + async updateSubscriptionItem( params: z.infer, ) { const stripe = await this.stripeProvider(); diff --git a/packages/cms/keystatic/package.json b/packages/cms/keystatic/package.json index 516b5dec4..249fc1f0f 100644 --- a/packages/cms/keystatic/package.json +++ b/packages/cms/keystatic/package.json @@ -15,7 +15,7 @@ "./route-handler": "./src/keystatic-route-handler.ts" }, "dependencies": { - "@keystatic/core": "0.5.12", + "@keystatic/core": "0.5.13", "@keystatic/next": "5.0.0" }, "devDependencies": { diff --git a/packages/database-webhooks/package.json b/packages/database-webhooks/package.json index adf4e7c6b..c25afcce5 100644 --- a/packages/database-webhooks/package.json +++ b/packages/database-webhooks/package.json @@ -23,7 +23,7 @@ "@kit/tailwind-config": "workspace:*", "@kit/team-accounts": "workspace:^", "@kit/tsconfig": "workspace:*", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "zod": "^3.23.4" }, "eslintConfig": { diff --git a/packages/features/accounts/package.json b/packages/features/accounts/package.json index 3bb768ce5..bbfecd3fc 100644 --- a/packages/features/accounts/package.json +++ b/packages/features/accounts/package.json @@ -32,15 +32,15 @@ "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", "@radix-ui/react-icons": "^1.3.0", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", - "lucide-react": "^0.373.0", + "@types/react": "^18.3.1", + "@types/react-dom": "^18.3.0", + "lucide-react": "^0.376.0", "next": "14.2.3", "next-themes": "0.3.0", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "^7.51.3", "react-i18next": "^14.1.1", "sonner": "^1.4.41", diff --git a/packages/features/admin/package.json b/packages/features/admin/package.json index 91fbefcab..eaf41faeb 100644 --- a/packages/features/admin/package.json +++ b/packages/features/admin/package.json @@ -20,14 +20,14 @@ "@kit/ui": "workspace:^", "@makerkit/data-loader-supabase-core": "^0.0.7", "@makerkit/data-loader-supabase-nextjs": "^1.1.0", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", "@tanstack/react-table": "^8.16.0", - "@types/react": "^18.2.79", - "lucide-react": "^0.373.0", + "@types/react": "^18.3.1", + "lucide-react": "^0.376.0", "next": "14.2.3", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "^7.51.3", "zod": "^3.23.4" }, diff --git a/packages/features/auth/package.json b/packages/features/auth/package.json index 82e898804..f3578bdf9 100644 --- a/packages/features/auth/package.json +++ b/packages/features/auth/package.json @@ -26,12 +26,12 @@ "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", - "@marsidev/react-turnstile": "^0.5.4", + "@marsidev/react-turnstile": "^0.6.0", "@radix-ui/react-icons": "^1.3.0", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", - "@types/react": "^18.2.79", - "lucide-react": "^0.373.0", + "@types/react": "^18.3.1", + "lucide-react": "^0.376.0", "next": "14.2.3", "react-hook-form": "^7.51.3", "react-i18next": "^14.1.1", diff --git a/packages/features/team-accounts/package.json b/packages/features/team-accounts/package.json index fdbf71fd3..b1c7c0fee 100644 --- a/packages/features/team-accounts/package.json +++ b/packages/features/team-accounts/package.json @@ -30,17 +30,17 @@ "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:^", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", "@tanstack/react-table": "^8.16.0", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", + "@types/react": "^18.3.1", + "@types/react-dom": "^18.3.0", "class-variance-authority": "^0.7.0", "date-fns": "^3.6.0", - "lucide-react": "^0.373.0", + "lucide-react": "^0.376.0", "next": "14.2.3", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-hook-form": "^7.51.3", "react-i18next": "^14.1.1", "sonner": "^1.4.41", diff --git a/packages/monitoring/api/package.json b/packages/monitoring/api/package.json index 64e49f4a8..293b4ff56 100644 --- a/packages/monitoring/api/package.json +++ b/packages/monitoring/api/package.json @@ -24,8 +24,8 @@ "@kit/sentry": "workspace:*", "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", - "@types/react": "^18.2.79", - "react": "18.2.0" + "@types/react": "^18.3.1", + "react": "18.3.1" }, "eslintConfig": { "root": true, diff --git a/packages/monitoring/baselime/package.json b/packages/monitoring/baselime/package.json index 6f9610d1b..fff87c760 100644 --- a/packages/monitoring/baselime/package.json +++ b/packages/monitoring/baselime/package.json @@ -25,8 +25,8 @@ "@kit/prettier-config": "workspace:*", "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", - "@types/react": "^18.2.79", - "react": "18.2.0", + "@types/react": "^18.3.1", + "react": "18.3.1", "zod": "^3.23.4" }, "eslintConfig": { diff --git a/packages/monitoring/core/package.json b/packages/monitoring/core/package.json index 064d98174..9c19a90f7 100644 --- a/packages/monitoring/core/package.json +++ b/packages/monitoring/core/package.json @@ -18,8 +18,8 @@ "@kit/prettier-config": "workspace:*", "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", - "@types/react": "^18.2.79", - "react": "18.2.0" + "@types/react": "^18.3.1", + "react": "18.3.1" }, "eslintConfig": { "root": true, diff --git a/packages/monitoring/sentry/package.json b/packages/monitoring/sentry/package.json index e302f7efd..c77df2dca 100644 --- a/packages/monitoring/sentry/package.json +++ b/packages/monitoring/sentry/package.json @@ -31,8 +31,8 @@ "@kit/prettier-config": "workspace:*", "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", - "@types/react": "^18.2.79", - "react": "18.2.0" + "@types/react": "^18.3.1", + "react": "18.3.1" }, "eslintConfig": { "root": true, diff --git a/packages/next/package.json b/packages/next/package.json index a6c7566a9..c718a4dff 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -21,7 +21,7 @@ "@kit/supabase": "workspace:^", "@kit/tailwind-config": "workspace:*", "@kit/tsconfig": "workspace:*", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "next": "14.2.3", "zod": "^3.23.4" }, diff --git a/packages/supabase/package.json b/packages/supabase/package.json index 554182c8d..33bce8dac 100644 --- a/packages/supabase/package.json +++ b/packages/supabase/package.json @@ -27,11 +27,11 @@ "@kit/tsconfig": "workspace:*", "@supabase/gotrue-js": "2.62.2", "@supabase/ssr": "^0.3.0", - "@supabase/supabase-js": "^2.42.6", + "@supabase/supabase-js": "^2.42.7", "@tanstack/react-query": "5.32.0", - "@types/react": "^18.2.79", + "@types/react": "^18.3.1", "next": "14.2.3", - "react": "18.2.0", + "react": "18.3.1", "zod": "^3.23.4" }, "eslintConfig": { diff --git a/packages/ui/package.json b/packages/ui/package.json index a5b4f6e96..d9f4f9140 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -30,7 +30,7 @@ "clsx": "^2.1.1", "cmdk": "1.0.0", "input-otp": "1.2.4", - "lucide-react": "^0.373.0", + "lucide-react": "^0.376.0", "react-top-loading-bar": "2.3.1", "tailwind-merge": "^2.3.0" }, @@ -41,8 +41,8 @@ "@kit/tsconfig": "workspace:*", "@radix-ui/react-icons": "^1.3.0", "@tanstack/react-table": "^8.16.0", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", + "@types/react": "^18.3.1", + "@types/react-dom": "^18.3.0", "class-variance-authority": "^0.7.0", "date-fns": "^3.6.0", "eslint": "^8.57.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c88764ceb..7d0c41f3d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,11 +4,6 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false -overrides: - next: 14.3.0-canary.7 - react: 18.2.0 - react-dom: 18.2.0 - importers: .: @@ -17,20 +12,20 @@ importers: specifier: ^0.21.4 version: 0.21.4 '@turbo/gen': - specifier: ^1.13.2 - version: 1.13.2(@types/node@20.12.7)(typescript@5.4.5) + specifier: ^1.13.3 + version: 1.13.3(@types/node@20.12.7)(typescript@5.4.5) cross-env: specifier: ^7.0.3 version: 7.0.3 pnpm: - specifier: ^8.15.7 - version: 8.15.7 + specifier: ^9.0.6 + version: 9.0.6 prettier: specifier: ^3.2.5 version: 3.2.5 turbo: - specifier: ^1.13.2 - version: 1.13.2 + specifier: ^1.13.3 + version: 1.13.3 typescript: specifier: ^5.4.5 version: 5.4.5 @@ -42,10 +37,10 @@ importers: dependencies: '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 @@ -67,10 +62,10 @@ importers: dependencies: '@edge-csrf/nextjs': specifier: 2.0.0 - version: 2.0.0(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)) + version: 2.0.0(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/accounts': specifier: workspace:^ version: link:../../packages/features/accounts @@ -121,61 +116,61 @@ importers: version: link:../../packages/ui '@makerkit/data-loader-supabase-core': specifier: ^0.0.7 - version: 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6) + version: 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7) '@makerkit/data-loader-supabase-nextjs': specifier: ^1.1.0 - version: 1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6)(@tanstack/react-query@5.32.0(react@18.2.0))(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7)(@tanstack/react-query@5.32.0(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@marsidev/react-turnstile': - specifier: ^0.5.4 - version: 0.5.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^0.6.0 + version: 0.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.0(react@18.3.1) '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@tanstack/react-query-next-experimental': specifier: ^5.32.0 - version: 5.32.0(@tanstack/react-query@5.32.0(react@18.2.0))(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 5.32.0(@tanstack/react-query@5.32.0(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) date-fns: specifier: ^3.6.0 version: 3.6.0 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-sitemap: specifier: ^4.2.3 - version: 4.2.3(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)) + version: 4.2.3(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) next-themes: specifier: 0.3.0 - version: 0.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts: specifier: ^2.12.6 - version: 2.12.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.12.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 @@ -205,11 +200,11 @@ importers: specifier: ^20.12.7 version: 20.12.7 '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 '@types/react-dom': - specifier: ^18.2.25 - version: 18.2.25 + specifier: ^18.3.0 + version: 18.3.0 autoprefixer: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.38) @@ -223,8 +218,8 @@ importers: specifier: ^3.2.5 version: 3.2.5 supabase: - specifier: ^1.163.2 - version: 1.163.2 + specifier: ^1.163.6 + version: 1.163.6 tailwindcss: specifier: 3.4.3 version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) @@ -260,7 +255,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/billing': specifier: workspace:^ version: link:../core @@ -292,29 +287,29 @@ importers: specifier: workspace:^ version: link:../../ui '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 date-fns: specifier: ^3.6.0 version: 3.6.0 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -350,14 +345,14 @@ importers: specifier: workspace:^ version: link:../../ui '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 zod: specifier: ^3.23.4 version: 3.23.4 @@ -366,13 +361,13 @@ importers: dependencies: '@stripe/react-stripe-js': specifier: ^2.7.0 - version: 2.7.0(@stripe/stripe-js@3.3.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.7.0(@stripe/stripe-js@3.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@stripe/stripe-js': specifier: ^3.3.0 version: 3.3.0 stripe: - specifier: ^15.3.0 - version: 15.3.0 + specifier: ^15.4.0 + version: 15.4.0 devDependencies: '@kit/billing': specifier: workspace:^ @@ -399,17 +394,17 @@ importers: specifier: workspace:^ version: link:../../ui '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 date-fns: specifier: ^3.6.0 version: 3.6.0 next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 zod: specifier: ^3.23.4 version: 3.23.4 @@ -432,11 +427,11 @@ importers: packages/cms/keystatic: dependencies: '@keystatic/core': - specifier: 0.5.12 - version: 0.5.12(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 0.5.13 + version: 0.5.13(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@keystatic/next': specifier: 5.0.0 - version: 5.0.0(@keystatic/core@0.5.12(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.0.0(@keystatic/core@0.5.13(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@kit/cms': specifier: workspace:^ @@ -517,8 +512,8 @@ importers: specifier: workspace:* version: link:../../tooling/typescript '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 zod: specifier: ^3.23.4 version: 3.23.4 @@ -527,7 +522,7 @@ importers: dependencies: '@react-email/components': specifier: 0.0.16 - version: 0.0.16(@types/react@18.2.79)(react@18.2.0) + version: 0.0.16(@types/react@18.3.1)(react@18.2.0) devDependencies: '@kit/eslint-config': specifier: workspace:* @@ -550,7 +545,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/billing-gateway': specifier: workspace:^ version: link:../../billing/gateway @@ -586,43 +581,43 @@ importers: version: link:../../ui '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.0(react@18.3.1) '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 '@types/react-dom': - specifier: ^18.2.25 - version: 18.2.25 + specifier: ^18.3.0 + version: 18.3.0 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-themes: specifier: 0.3.0 - version: 0.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -631,7 +626,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/eslint-config': specifier: workspace:* version: link:../../../tooling/eslint @@ -655,37 +650,37 @@ importers: version: link:../../ui '@makerkit/data-loader-supabase-core': specifier: ^0.0.7 - version: 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6) + version: 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7) '@makerkit/data-loader-supabase-nextjs': specifier: ^1.1.0 - version: 1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6)(@tanstack/react-query@5.32.0(react@18.2.0))(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7)(@tanstack/react-query@5.32.0(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -694,7 +689,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/eslint-config': specifier: workspace:* version: link:../../../tooling/eslint @@ -717,35 +712,35 @@ importers: specifier: workspace:^ version: link:../../ui '@marsidev/react-turnstile': - specifier: ^0.5.4 - version: 0.5.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^0.6.0 + version: 0.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.0(react@18.3.1) '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -758,7 +753,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@kit/accounts': specifier: workspace:^ version: link:../accounts @@ -796,20 +791,20 @@ importers: specifier: workspace:^ version: link:../../ui '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 '@types/react-dom': - specifier: ^18.2.25 - version: 18.2.25 + specifier: ^18.3.0 + version: 18.3.0 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -817,26 +812,26 @@ importers: specifier: ^3.6.0 version: 3.6.0 lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -870,10 +865,10 @@ importers: version: link:../../tooling/typescript '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) packages/mailers: dependencies: @@ -927,11 +922,11 @@ importers: specifier: workspace:* version: link:../../../tooling/typescript '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 packages/monitoring/baselime: dependencies: @@ -940,7 +935,7 @@ importers: version: 0.5.8(@trpc/server@10.45.2) '@baselime/react-rum': specifier: ^0.2.9 - version: 0.2.9(react@18.2.0) + version: 0.2.9(react@18.3.1) '@kit/monitoring-core': specifier: workspace:* version: link:../core @@ -958,11 +953,11 @@ importers: specifier: workspace:* version: link:../../../tooling/typescript '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 zod: specifier: ^3.23.4 version: 3.23.4 @@ -982,11 +977,11 @@ importers: specifier: workspace:* version: link:../../../tooling/typescript '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 packages/monitoring/sentry: dependencies: @@ -1001,7 +996,7 @@ importers: version: 1.24.0 '@sentry/nextjs': specifier: ^7.112.2 - version: 7.112.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 7.112.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@sentry/opentelemetry-node': specifier: ^7.112.2 version: 7.112.2(@opentelemetry/api@1.8.0)(@opentelemetry/core@1.24.0(@opentelemetry/api@1.8.0))(@opentelemetry/sdk-trace-base@1.24.0(@opentelemetry/api@1.8.0))(@opentelemetry/semantic-conventions@1.24.0) @@ -1022,11 +1017,11 @@ importers: specifier: workspace:* version: link:../../../tooling/typescript '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 packages/next: devDependencies: @@ -1052,11 +1047,11 @@ importers: specifier: workspace:* version: link:../../tooling/typescript '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) zod: specifier: ^3.23.4 version: 3.23.4 @@ -1081,7 +1076,7 @@ importers: version: link:../../tooling/typescript '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) packages/supabase: devDependencies: @@ -1102,22 +1097,22 @@ importers: version: 2.62.2 '@supabase/ssr': specifier: ^0.3.0 - version: 0.3.0(@supabase/supabase-js@2.42.6) + version: 0.3.0(@supabase/supabase-js@2.42.7) '@supabase/supabase-js': - specifier: ^2.42.6 - version: 2.42.6 + specifier: ^2.42.7 + version: 2.42.7 '@tanstack/react-query': specifier: 5.32.0 - version: 5.32.0(react@18.2.0) + version: 5.32.0(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 zod: specifier: ^3.23.4 version: 3.23.4 @@ -1126,73 +1121,73 @@ importers: dependencies: '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.3.1)) '@radix-ui/react-accordion': specifier: 1.1.2 - version: 1.1.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-alert-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-avatar': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-checkbox': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-dropdown-menu': specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-navigation-menu': specifier: ^1.1.4 - version: 1.1.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-popover': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-radio-group': specifier: ^1.1.3 - version: 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-scroll-area': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-select': specifier: ^2.0.0 - version: 2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-separator': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.2.79)(react@18.2.0) + version: 1.0.2(@types/react@18.3.1)(react@18.3.1) '@radix-ui/react-tabs': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-tooltip': specifier: 1.0.7 - version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: specifier: ^2.1.1 version: 2.1.1 cmdk: specifier: 1.0.0 - version: 1.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) input-otp: specifier: 1.2.4 - version: 1.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) lucide-react: - specifier: ^0.373.0 - version: 0.373.0(react@18.2.0) + specifier: ^0.376.0 + version: 0.376.0(react@18.3.1) react-top-loading-bar: specifier: 2.3.1 - version: 2.3.1(react@18.2.0) + version: 2.3.1(react@18.3.1) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 @@ -1211,16 +1206,16 @@ importers: version: link:../../tooling/typescript '@radix-ui/react-icons': specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.0(react@18.3.1) '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/react': - specifier: ^18.2.79 - version: 18.2.79 + specifier: ^18.3.1 + version: 18.3.1 '@types/react-dom': - specifier: ^18.2.25 - version: 18.2.25 + specifier: ^18.3.0 + version: 18.3.0 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -1231,26 +1226,26 @@ importers: specifier: ^8.57.0 version: 8.57.0 next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-themes: specifier: 0.3.0 - version: 0.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) prettier: specifier: ^3.2.5 version: 3.2.5 react-day-picker: specifier: ^8.10.1 - version: 8.10.1(date-fns@3.6.0)(react@18.2.0) + version: 8.10.1(date-fns@3.6.0)(react@18.3.1) react-hook-form: specifier: ^7.51.3 - version: 7.51.3(react@18.2.0) + version: 7.51.3(react@18.3.1) react-i18next: specifier: ^14.1.1 - version: 14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sonner: specifier: ^1.4.41 - version: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwindcss: specifier: 3.4.3 version: 3.4.3(ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5)) @@ -1271,37 +1266,37 @@ importers: version: 14.2.3 '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@trivago/prettier-plugin-sort-imports': specifier: ^4.3.0 version: 4.3.0(prettier@3.2.5) '@types/eslint': - specifier: ^8.56.9 - version: 8.56.9 + specifier: ^8.56.10 + version: 8.56.10 '@typescript-eslint/eslint-plugin': - specifier: ^7.7.0 - version: 7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.7.1 + version: 7.7.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': - specifier: ^7.7.0 - version: 7.7.0(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.7.1 + version: 7.7.1(eslint@8.57.0)(typescript@5.4.5) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.0) eslint-config-turbo: - specifier: ^1.13.2 - version: 1.13.2(eslint@8.57.0) + specifier: ^1.13.3 + version: 1.13.3(eslint@8.57.0) eslint-plugin-import: specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0) eslint-plugin-react: specifier: ^7.34.1 version: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: - specifier: ^4.6.0 - version: 4.6.0(eslint@8.57.0) + specifier: ^4.6.2 + version: 4.6.2(eslint@8.57.0) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 @@ -1329,10 +1324,10 @@ importers: version: 4.2.1(prettier@3.2.5) '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) prettier: specifier: ^3.2.5 version: 3.2.5 @@ -1357,13 +1352,13 @@ importers: dependencies: '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) autoprefixer: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.38) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) postcss: specifier: 8.4.38 version: 8.4.38 @@ -1403,10 +1398,10 @@ importers: dependencies: '@tanstack/react-table': specifier: ^8.16.0 - version: 8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next: - specifier: 14.3.0-canary.7 - version: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 14.2.3 + version: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.3.0 version: 2.3.0 @@ -1424,10 +1419,6 @@ packages: graphql: optional: true - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} @@ -1551,7 +1542,7 @@ packages: '@baselime/react-rum@0.2.9': resolution: {integrity: sha512-x5+eYsNCsasHD6jbfH02HmwA7i8A+3Ac3PS2tKwgFgoqi1EmIgktjAvdYFosTZe73VIQMal19peRXAu2/lGxAA==} peerDependencies: - react: 18.2.0 + react: ^18.2.0 '@braintree/sanitize-url@6.0.4': resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} @@ -1570,7 +1561,7 @@ packages: '@edge-csrf/nextjs@2.0.0': resolution: {integrity: sha512-WFFdt6SBIh61ENonSws0jYAVpxBvzT8hWdmoJlSDvk1wopu0A8le9eXgmfuRG+HKzAhJFe7dwm/LCu9GeuSdfA==} peerDependencies: - next: 14.3.0-canary.7 + next: ^13.0.0 || ^14.0.0 '@emotion/babel-plugin@11.11.0': resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} @@ -1629,14 +1620,14 @@ packages: '@floating-ui/react-dom@2.0.8': resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.8.0' + react-dom: '>=16.8.0' '@floating-ui/react@0.24.8': resolution: {integrity: sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.8.0' + react-dom: '>=16.8.0' '@floating-ui/utils@0.2.1': resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} @@ -1711,8 +1702,8 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} - '@isaacs/fs-minipass@4.0.0': - resolution: {integrity: sha512-S00nN1Qt3z3dSP6Db45fj/mksrAq5XWNIJ/SWXGP8XPT2jrzEuYRCSEx08JpJwBcG2F1xgiOtBMGDU0AZHmxew==} + '@isaacs/fs-minipass@4.0.1': + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} engines: {node: '>=18.0.0'} '@jridgewell/gen-mapping@0.3.5': @@ -1745,26 +1736,26 @@ packages: '@keystar/ui@0.7.2': resolution: {integrity: sha512-Z/GuSC/FhcQLcYSw5DXirqASwYIkKqJgmMcy3rtIzeNW+IB6p/iGBJlTWqtEYGLK1AXcIhBuQuzui1GydrsJeg==} peerDependencies: - next: 14.3.0-canary.7 - react: 18.2.0 - react-dom: 18.2.0 + next: 14.1.3 + react: ^18.2.0 + react-dom: ^18.2.0 peerDependenciesMeta: next: optional: true - '@keystatic/core@0.5.12': - resolution: {integrity: sha512-nJOGuVtObf5gQAb3roAbzW9eqGsXKfRmg7FhaZDnCT4rQI0/TuhBdmhTX0q+Cai1SJmY33UvcupU7rHLeQfG3A==} + '@keystatic/core@0.5.13': + resolution: {integrity: sha512-lqUm97TydS35z1xRP+XEcYhG3Gn73tnZOrCcFr9EVpFZZvTDIp9NVCPYumIwwhX+Lqlu677DnKDyF9bBLvXiQQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^18.2.0 + react-dom: ^18.2.0 '@keystatic/next@5.0.0': resolution: {integrity: sha512-aacEMkrSbXrhC/obKTPEbcVa1yC9POmpd8lfXNGVadSRUsoG5O+brULc1NeVeHe7MMS/PkhNzhIpWkApCf5Qhw==} peerDependencies: '@keystatic/core': '*' - next: 14.3.0-canary.7 - react: 18.2.0 - react-dom: 18.2.0 + next: 13 || 14 + react: ^18.2.0 + react-dom: ^18.2.0 '@lemonsqueezy/lemonsqueezy.js@2.2.0': resolution: {integrity: sha512-DsZTeowehSLTESUZ6xxoYPDhoE8BYepWsj3TCqibG7FvB8X1HERPXQlc6E/IeGj22SOfIM997b7GfFkeLWY8pA==} @@ -1781,8 +1772,8 @@ packages: peerDependencies: '@supabase/supabase-js': '>=2.0.0' '@tanstack/react-query': '>=5.0.0' - next: 14.3.0-canary.7 - react: 18.2.0 + next: '>=13.4.0' + react: '>=18.0.0' '@manypkg/cli@0.21.4': resolution: {integrity: sha512-EACxxb+c/t6G0l1FrlyewZeBnyR5V1cLkXjnBfsay5TN1UgbilFpG6POglzn+lVJet9NqnEKe3RLHABzkIDZ0Q==} @@ -1806,18 +1797,18 @@ packages: engines: {node: '>=14.7.0'} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: '*' peerDependenciesMeta: '@types/react': optional: true react: optional: true - '@marsidev/react-turnstile@0.5.4': - resolution: {integrity: sha512-cloUDkEcJm+G7p3J8DwPtRNNB2GZqVi/nlIbgu9o3VzNyV5K/bWcSfOyWouRiR3umAQZmsFpR3OFYa4mCmy4AQ==} + '@marsidev/react-turnstile@0.6.0': + resolution: {integrity: sha512-CXv2xy27f3a7Rn1PqFeTKGxkdv4uiD7Zpbazeb+1AbC3VEfTk0OFNiyQvIIFn+kCYWkeTLdY7pXRzsfebHH97w==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.8.0' + react-dom: '>=16.8.0' '@next/bundle-analyzer@14.3.0-canary.9': resolution: {integrity: sha512-HFMZ+3IF4WopTJYjTUsqWtoKMbQhUzf99z6TcOuQ8OIltBxsqMW9a9H2MLyf1J3RMXhR4Eu+S3FVxqmtCYUmlg==} @@ -1828,9 +1819,6 @@ packages: '@next/env@14.2.3': resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==} - '@next/env@14.3.0-canary.7': - resolution: {integrity: sha512-FXmIhrOXLCAC3CFfsphwr9B4sd42TdJWJ95UgvXJErnS2XgT0iv0BtMULybWOBzpJVWQavYzl+CkFDQC2EFJiw==} - '@next/eslint-plugin-next@14.2.3': resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} @@ -1840,108 +1828,54 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@14.3.0-canary.7': - resolution: {integrity: sha512-AwYIdp0HHJQFI+LDAzTp7gj4suyl9KZgWFvHd79DljG4DLJMVEDb669AXpwV1m9WgVzWgnUsTJgF/XHDhaIRfg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - '@next/swc-darwin-x64@14.2.3': resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@14.3.0-canary.7': - resolution: {integrity: sha512-NeXcmZdRycTNG3aMROgaTVuW3espy8CX9dVC7KQT9/YnRPItNhP/maU7kgIA5C43bgjCgwg1f9ABNB2NX99eWw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - '@next/swc-linux-arm64-gnu@14.2.3': resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-gnu@14.3.0-canary.7': - resolution: {integrity: sha512-Qct3FFELGR8Vl97GBHuend1X94ykEzF7Cvyi8TX1I1uCZZHhRzHzJMo7TjrI+YNbJF804sc/+VsNxVxR197/Nw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - '@next/swc-linux-arm64-musl@14.2.3': resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.3.0-canary.7': - resolution: {integrity: sha512-sxLnN5QKp8JwEuABmArZ6uV8wjO9ozt7qbne/Y1zhKIyYl+WSgoPxznJz98bEGjd7o7sntSm1djYwZd+Ra1v1w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - '@next/swc-linux-x64-gnu@14.2.3': resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-gnu@14.3.0-canary.7': - resolution: {integrity: sha512-s3i4CFmsk7QcSDyScrMOQQ9EZPNRzkw2pUXI/SweKQC0qLXQ6agthCH0Ks69b/niMxzG+P4pen50qm1svsBHog==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - '@next/swc-linux-x64-musl@14.2.3': resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.3.0-canary.7': - resolution: {integrity: sha512-I3Js4g8ylkFGUb8ICI4ya1j89D/jw/SnItrGce03UWQhOdczlWixSFabE2RqSYtVM+cOWVLJ8SSmeoi98YQPNg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - '@next/swc-win32-arm64-msvc@14.2.3': resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@14.3.0-canary.7': - resolution: {integrity: sha512-H8iTu2VPOmm2QXhWRkItS3Vfieh52pdg6IGBnm4xp+RJ6UVBEluTT2VDYB7vqjPnbof/dq6woflZkq2/KujSrQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - '@next/swc-win32-ia32-msvc@14.2.3': resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@next/swc-win32-ia32-msvc@14.3.0-canary.7': - resolution: {integrity: sha512-OwdUlF/N+nJRXqFdwdRtSuilFlBDctIJSV30TdNNTdnTCCYtI9cyrJ+8Sx3EVhQQVTxySPUgmhJitgmgyDMmkQ==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - '@next/swc-win32-x64-msvc@14.2.3': resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@14.3.0-canary.7': - resolution: {integrity: sha512-pirSoMkVeWG7VuBEw6kISWUT1AaMeRj6TtcDuj7lJUoD2AQUO17yxRXMDLJ7Kf1ymOAxOEUf+Toys9V8NpSjKA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -2131,8 +2065,8 @@ packages: peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' - '@opentelemetry/resource-detector-aws@1.4.1': - resolution: {integrity: sha512-QsPJwXDxlt+IWQazST7renk9KDOAK3hsywb0Mw6gEwgEoe12EvdVcT+mCknTc+hu5WzxiTmFMtnn1TWab7To1g==} + '@opentelemetry/resource-detector-aws@1.4.2': + resolution: {integrity: sha512-Rt4cztIz8UZZ32wRbotKPVbkRfukiMM8xfzf2C1M+Puv91Cw6kDJHAfWCqkx7FdNe0e6aF4u2lkFweE1849RCg==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': ^1.0.0 @@ -2284,8 +2218,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2297,8 +2231,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2310,8 +2244,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2323,8 +2257,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2336,8 +2270,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2349,8 +2283,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2362,8 +2296,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2374,7 +2308,7 @@ packages: resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2383,7 +2317,7 @@ packages: resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2393,8 +2327,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2405,7 +2339,7 @@ packages: resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2415,8 +2349,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2428,8 +2362,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2440,7 +2374,7 @@ packages: resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2450,8 +2384,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2461,13 +2395,13 @@ packages: '@radix-ui/react-icons@1.3.0': resolution: {integrity: sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==} peerDependencies: - react: 18.2.0 + react: ^16.x || ^17.x || ^18.x '@radix-ui/react-id@1.0.1': resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2477,8 +2411,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2490,8 +2424,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2503,8 +2437,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2516,8 +2450,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2529,8 +2463,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2542,8 +2476,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2555,8 +2489,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2568,8 +2502,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2581,8 +2515,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2594,8 +2528,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2607,8 +2541,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2620,8 +2554,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2633,8 +2567,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2645,7 +2579,7 @@ packages: resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2655,8 +2589,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2668,8 +2602,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2681,8 +2615,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2693,7 +2627,7 @@ packages: resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2702,7 +2636,7 @@ packages: resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2711,7 +2645,7 @@ packages: resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2720,7 +2654,7 @@ packages: resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2729,7 +2663,7 @@ packages: resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2738,7 +2672,7 @@ packages: resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2747,7 +2681,7 @@ packages: resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' - react: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2757,8 +2691,8 @@ packages: peerDependencies: '@types/react': '*' '@types/react-dom': '*' - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': optional: true @@ -2771,106 +2705,106 @@ packages: '@react-aria/actiongroup@3.7.3': resolution: {integrity: sha512-o1qw7w7GdL8vsOuzBc2mil+MM1CWWDDZ1+VhWnVwoDVt5Pxj36981leTh/WTS58IQ34N7p/jVdQMraQ25EJJyA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/breadcrumbs@3.5.11': resolution: {integrity: sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/button@3.9.3': resolution: {integrity: sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/calendar@3.5.6': resolution: {integrity: sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/checkbox@3.14.1': resolution: {integrity: sha512-b4rtrg5SpRSa9jBOqzJMmprJ+jDi3KyVvUh+DsvISe5Ti7gVAhMBgnca1D0xBp22w2jhk/o4gyu1bYxGLum0GA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/combobox@3.8.4': resolution: {integrity: sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/datepicker@3.9.3': resolution: {integrity: sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/dialog@3.5.12': resolution: {integrity: sha512-7UJR/h/Y364u6Ltpw0bT51B48FybTuIBacGpEJN5IxZlpxvQt0KQcBDiOWfAa/GQogw4B5hH6agaOO0nJcP49Q==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/dnd@3.5.3': resolution: {integrity: sha512-0gi6sRnr97fSQnGy+CMt+99/+vVqr+qv2T9Ts8X9TAzxHNokz5QfSL88QSlTU36EnAVLxPY18iZQWCExSjKpEQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/focus@3.16.2': resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/form@3.0.3': resolution: {integrity: sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/grid@3.8.8': resolution: {integrity: sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/gridlist@3.7.5': resolution: {integrity: sha512-RmHEJ++vngHYEWbUCtLLmGh7H3vNd2Y9S0q/9SgHFPbqPZycT5mxDZ2arqpOXeHRVRvPBaW9ZlMxI2bPOePrYw==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/i18n@3.10.2': resolution: {integrity: sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/interactions@3.21.1': resolution: {integrity: sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/label@3.7.6': resolution: {integrity: sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/landmark@3.0.0-beta.2': resolution: {integrity: sha512-PzRx/KwzxUUVk9bGbTNWHCtkzzGfnUL8yozd/sJjnCofa7BPrt71EnvB4W53W0MDD3hod8JDwk3TlzNyXPi/ww==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/link@3.6.5': resolution: {integrity: sha512-kg8CxKqkciQFzODvLAfxEs8gbqNXFZCW/ISOE2LHYKbh9pA144LVo71qO3SPeYVVzIjmZeW4vEMdZwqkNozecw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/listbox@3.11.5': resolution: {integrity: sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/live-announcer@3.3.2': resolution: {integrity: sha512-aOyPcsfyY9tLCBhuUaYCruwcd1IrYLc47Ou+J7wMzjeN9v4lsaEfiN12WFl8pDqOwfy6/7It2wmlm5hOuZY8wQ==} @@ -2878,122 +2812,122 @@ packages: '@react-aria/menu@3.13.1': resolution: {integrity: sha512-jF80YIcvD16Fgwm5pj7ViUE3Dj7z5iewQixLaFVdvpgfyE58SD/ZVU9/JkK5g/03DYM0sjpUKZGkdFxxw8eKnw==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/meter@3.4.11': resolution: {integrity: sha512-P1G3Jdh0f/uieUDqvc3Ee4wzqBJa7H077BVSC3KPRqEp6YY7JimZGWjOwbFlO2PXhryXm/dI8EzUmh+4ZXjq/g==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/numberfield@3.11.1': resolution: {integrity: sha512-JQ1Z+Ho5H+jeav7jt9A4vBsIQR/Dd2CFbObrULjGkqSrnWjARFZBv3gZwmfGCtplEPeAv9buYKHAqebPtJNUww==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/overlays@3.21.1': resolution: {integrity: sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/progress@3.4.11': resolution: {integrity: sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/radio@3.10.2': resolution: {integrity: sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/searchfield@3.7.3': resolution: {integrity: sha512-mnYI969R7tU3yMRIGmY1+peq7tmEW0W3MB/J2ImK36Obz/91tTtspHHEeFtPlQDLIyvVPB0Ucam4LIxCKPJm/Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/select@3.14.3': resolution: {integrity: sha512-9KCxI41FI+jTxEfUzRsMdJsZvjkCuuhL4UHig8MZXtXs0nsi7Ir3ezUDQ9m5MSG+ooBYM/CA9DyLDvo5Ioef+g==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/selection@3.17.5': resolution: {integrity: sha512-gO5jBUkc7WdkiFMlWt3x9pTSuj3Yeegsxfo44qU5NPlKrnGtPRZDWrlACNgkDHu645RNNPhlyoX0C+G8mUg1xA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/separator@3.3.11': resolution: {integrity: sha512-UTla+3P2pELpP73WSfbwZgP1y1wODFBQbEOHnUxxO8ocyaUyQLJdvc07bBLLpPoyutlggRG0v9ACo0Rui7AjOg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/spinbutton@3.6.3': resolution: {integrity: sha512-IlfhRu/pc9zOt2C5zSEB7NmmzddvWisGx2iGzw8BwIKMD+cN3uy+Qwp+sG6Z/JzFEBN0F6Mxm3l5lhbiqjpICQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/ssr@3.9.2': resolution: {integrity: sha512-0gKkgDYdnq1w+ey8KzG9l+H5Z821qh9vVjztk55rUg71vTk/Eaebeir+WtzcLLwTjw3m/asIjx8Y59y1lJZhBw==} engines: {node: '>= 12'} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/switch@3.6.2': resolution: {integrity: sha512-X5m/omyhXK+V/vhJFsHuRs2zmt9Asa/RuzlldbXnWohLdeuHMPgQnV8C9hg3f+sRi3sh9UUZ64H61pCtRoZNwg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/table@3.13.5': resolution: {integrity: sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/tabs@3.8.5': resolution: {integrity: sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/textfield@3.14.3': resolution: {integrity: sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/toast@3.0.0-beta.2': resolution: {integrity: sha512-PW+3ueOfMqzHlAb8ixocxBprRiLdz+xH7YEIn1E+iRregkdfcjfqchzU2PN3UQm7Othk1b3Bt9LemCOM66YRcA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/toggle@3.10.2': resolution: {integrity: sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/tooltip@3.7.2': resolution: {integrity: sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/utils@3.23.2': resolution: {integrity: sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-aria/virtualizer@3.9.10': resolution: {integrity: sha512-oDvGgexK6phB9XECWvAaKTq/nRKxHjmJSiZ2gv9j72JFoky4iVEHKAV6Qnar0VBcEpk16JcJVI/wf1xr9F+sjQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + 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 '@react-aria/visually-hidden@3.8.10': resolution: {integrity: sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-email/body@0.0.7': resolution: {integrity: sha512-vjJ5P1MUNWV0KNivaEWA6MGj/I3c764qQJMsKjCHlW6mkFJ4SXbm2OlQFtKAb++Bj8LDqBlnE6oW77bWcMc0NA==} @@ -3120,37 +3054,37 @@ packages: '@react-stately/calendar@3.4.4': resolution: {integrity: sha512-f9ZOd096gGGD+3LmU1gkmfqytGyQtrgi+Qjn+70GbM2Jy65pwOR4I9YrobbmeAFov5Tff13mQEa0yqWvbcDLZQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/checkbox@3.6.3': resolution: {integrity: sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/collections@3.10.5': resolution: {integrity: sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/combobox@3.8.2': resolution: {integrity: sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/data@3.11.2': resolution: {integrity: sha512-yhK2upk2WbJeiLBRWHrh/4G2CvmmozCzoivLaRAPYu53m1J3MyzVGCLJgnZMbMZvAbNcYWZK6IzO6VqZ2y1fOw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/datepicker@3.9.2': resolution: {integrity: sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/dnd@3.2.8': resolution: {integrity: sha512-oSo+2Bzum3Q1/d+3FuaDmpVHqqBB004tycuQDDFtad3N1BKm+fNfmslRK1ioLkPLK4sm1130V+BZBY3JXLe80A==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/flags@3.0.1': resolution: {integrity: sha512-h5PcDMj54aipQNO18ig/IMI1kzPwcvSwVq5M6Ib6XE1WIkOH0dIuW2eADdAOhcGi3KXJtXVdD29zh0Eox1TKgQ==} @@ -3158,227 +3092,227 @@ packages: '@react-stately/form@3.0.1': resolution: {integrity: sha512-T1Ul2Ou0uE/S4ECLcGKa0OfXjffdjEHfUFZAk7OZl0Mqq/F7dl5WpoLWJ4d4IyvZzGO6anFNenP+vODWbrF3NA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/grid@3.8.5': resolution: {integrity: sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/layout@3.13.7': resolution: {integrity: sha512-9HH/aSxpEHwUW1T1vGN3+iznkAXQUzoMrsoEepNzesOsUGSm/MFZmEk4+9cdPA7y3ou2eHpGNUB1YIDDVptElg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/list@3.10.3': resolution: {integrity: sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/menu@3.6.1': resolution: {integrity: sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/numberfield@3.9.1': resolution: {integrity: sha512-btBIcBEfSVCUm6NwJrMrMygoIu/fQGazzD0RhF7PNsfvkFiWn+TSOyQqSXcsUJVOnBfoS/dVWj6r57KA7zl3FA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/overlays@3.6.5': resolution: {integrity: sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/radio@3.10.2': resolution: {integrity: sha512-JW5ZWiNMKcZvMTsuPeWJQLHXD5rlqy7Qk6fwUx/ZgeibvMBW/NnW19mm2+IMinzmbtERXvR6nsiA837qI+4dew==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/searchfield@3.5.1': resolution: {integrity: sha512-9A8Wghx1avRHhMpNH1Nj+jFfiF1bhsff2GEC5PZgWYzhCykw3G5bywn3JAuUS4kh7Vpqhbu4KpHAhmWPSv4B/Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/select@3.6.2': resolution: {integrity: sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/selection@3.14.3': resolution: {integrity: sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/table@3.11.6': resolution: {integrity: sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/tabs@3.6.4': resolution: {integrity: sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/toast@3.0.0-beta.1': resolution: {integrity: sha512-NeWdLXpHfXu8UXjmn+6iZv39Xvan/D0uNWzIyCxkDOeNNOHt1N4kSwdvQ56ScQ3f7KBVPqKz32t7K466Zpa8Jg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/toggle@3.7.2': resolution: {integrity: sha512-SHCF2btcoK57c4lyhucRbyPBAFpp0Pdp0vcPdn3hUgqbu6e5gE0CwG/mgFmZRAQoc7PRc7XifL0uNw8diJJI0Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/tooltip@3.4.7': resolution: {integrity: sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/tree@3.7.6': resolution: {integrity: sha512-y8KvEoZX6+YvqjNCVGS3zA/BKw4D3XrUtUKIDme3gu5Mn6z97u+hUXKdXVCniZR7yvV3fHAIXwE5V2K8Oit4aw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/utils@3.9.1': resolution: {integrity: sha512-yzw75GE0iUWiyps02BOAPTrybcsMIxEJlzXqtvllAb01O9uX5n0i3X+u2eCpj2UoDF4zS08Ps0jPgWxg8xEYtA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-stately/virtualizer@3.6.8': resolution: {integrity: sha512-Pf06ihTwExRJltGhi72tmLIo0pcjkL55nu7ifMafAAdxZK4ONxRLSuUjjpvYf/0Rs92xRZy2t/XmHREnfirdkQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/actionbar@3.1.5': resolution: {integrity: sha512-Z3hfIoaOaW8wJxQm1NyWVvSftpNDYv9iWqpEWBEdhxuqsUkOVszZ7KcNaF4qsm4bJIcJWn3FNKhaTKGwISZcdQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/actiongroup@3.4.7': resolution: {integrity: sha512-VsyHn6mGqEHKEIGFiHTq7rSuzuQjGVZGtnhh/9jQXW6zoSJyoM4fAnHEt+RE92NdiRv5e3+OzzrwG0TZsi87cQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/breadcrumbs@3.7.3': resolution: {integrity: sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/button@3.9.2': resolution: {integrity: sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/calendar@3.4.4': resolution: {integrity: sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/checkbox@3.7.1': resolution: {integrity: sha512-kuGqjQFex0As/3gfWyk+e9njCcad/ZdnYLLiNvhlk15730xfa0MmnOdpqo9jfuFSXBjOcpxoofvEhvrRMtEdUA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/combobox@3.10.1': resolution: {integrity: sha512-XMno1rgVRNta49vf5nV7VJpVSVAV20tt79t618gG1qRKH5Kt2Cy8lz2fQ5vHG6UTv/6jUOvU8g5Pc93sLaTmoA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/datepicker@3.7.2': resolution: {integrity: sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/dialog@3.5.8': resolution: {integrity: sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/grid@3.2.4': resolution: {integrity: sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/link@3.5.3': resolution: {integrity: sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/listbox@3.4.7': resolution: {integrity: sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/menu@3.9.7': resolution: {integrity: sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/meter@3.3.7': resolution: {integrity: sha512-p+YJ0+Lpn5MLmlbFZbDH1P0ILv1+AuMcUbxLcXMIVMGn7o0FO7eVZnFuq76D+qTDm9all+TRLJix7bctOrP+5Q==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/numberfield@3.8.1': resolution: {integrity: sha512-GaCjLQgXUGCt40SLjKk3/COMWFlN2vV/3Xs3VSLAEdFZpk99b+Ik1oR21+7ZP5/iMHuQDc1MJRWdFfIjxCvVDQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/overlays@3.8.5': resolution: {integrity: sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/progress@3.5.2': resolution: {integrity: sha512-aQql22kusEudsHwDEzq6y/Mh29AM+ftRDKdS5E5g4MkCY5J4FMbOYco1T5So83NIvvG9+eKcxPoJUMjQQACAyA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/radio@3.7.1': resolution: {integrity: sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/searchfield@3.5.3': resolution: {integrity: sha512-gBfsT1WpY8UIb74yyYmnjiHpVasph2mdmGj9i8cGF2HUYwx5p+Fr85mtCGDph0uirvRoM5ExMp4snD+ueNAVCg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/select@3.9.2': resolution: {integrity: sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/shared@3.22.1': resolution: {integrity: sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/switch@3.5.1': resolution: {integrity: sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/table@3.9.3': resolution: {integrity: sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/tabs@3.3.5': resolution: {integrity: sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/textfield@3.9.1': resolution: {integrity: sha512-JBHY9M2CkL6xFaGSfWmUJVu3tEK09FaeB1dU3IEh6P41xxbFnPakYHSSAdnwMXBtXPoSHIVsUBickW/pjgfe5g==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@react-types/tooltip@3.4.7': resolution: {integrity: sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 '@rollup/plugin-commonjs@24.0.0': resolution: {integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==} @@ -3434,8 +3368,8 @@ packages: resolution: {integrity: sha512-cXxhNdvDRNg15D1fF0eo0AliRHj3eeiG1kpapKKr9rEDsVA+vRHquOyWf18X956gw5A81Y6s/BotBEWbaimioQ==} engines: {node: '>=8'} peerDependencies: - next: 14.3.0-canary.7 - react: 18.2.0 + next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 || ^14.0 + react: 16.x || 17.x || 18.x webpack: '>= 4.0.0' peerDependenciesMeta: webpack: @@ -3458,7 +3392,7 @@ packages: resolution: {integrity: sha512-Xf6mc1+/ncCk6ZFIj0oT4or2o0UxqqJZk09U/21RYNvVCn7+DNyCdJZ/F5wXWgPqVE67PrjydLLYaQWiqLibiA==} engines: {node: '>=8'} peerDependencies: - react: 18.2.0 + react: 15.x || 16.x || 17.x || 18.x '@sentry/replay@7.112.2': resolution: {integrity: sha512-7Ns/8D54WPsht1nlVj93Inf6rXyve2AZoibYN0YfcM2w3lI4NO51gPPHJU0lFEfMwzwK4ZBJWzOeW9098a+uEg==} @@ -3496,15 +3430,15 @@ packages: resolution: {integrity: sha512-kTkIZl2ZleBuDR9c6fDy/s4m33llII8a5al6BDAMSTrfVq/4gSZv3RBO5KS/xvnxS+fDapJ3bKvjD8Lqj+AKdQ==} peerDependencies: '@stripe/stripe-js': ^1.44.1 || ^2.0.0 || ^3.0.0 - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 '@stripe/stripe-js@3.3.0': resolution: {integrity: sha512-dUgAsko9KoYC1U2TIawHzbkQJzPoApxCc1Qf6/j318d1ArViyh6ROHVYTxnU3RlOQL/utUD9I4/QoyiCowsgrw==} engines: {node: '>=12.16'} - '@supabase/auth-js@2.64.0': - resolution: {integrity: sha512-tC1fhVvzYlPA6gpSLR/BH2hM06ZZzSpi0oUOkNLm4lGrOUpsDa552fJMx9uuiEQ2/fpIbTh7MwjXb+zxVXWz6Q==} + '@supabase/auth-js@2.64.1': + resolution: {integrity: sha512-tA2PXLoWEzhD0N1Vysree+HftfeWBbFV0E+taND5rj/pZTjkwKq/9GlrnXkbs5pnw+tsnABDRo2WLZmymihGdA==} '@supabase/functions-js@2.3.1': resolution: {integrity: sha512-QyzNle/rVzlOi4BbVqxLSH828VdGY1RElqGFAj+XeVypj6+PVtMlD21G8SDnsPQDtlqqTtoGRgdMlQZih5hTuw==} @@ -3530,8 +3464,8 @@ packages: '@supabase/storage-js@2.5.5': resolution: {integrity: sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w==} - '@supabase/supabase-js@2.42.6': - resolution: {integrity: sha512-3/dE1FnHsjk1btHpLs4xuF5rP2+CLpI8WVGuyqgiyE94eYjecoKDw8kj8fPrs/PuILRvk5vwH0LyW/DndKNy2Q==} + '@supabase/supabase-js@2.42.7': + resolution: {integrity: sha512-BEIEYe5KJpzd8Z3k4CKyjNuBmgSihDdE8MJO/Fg7O5h/lQg8qOp1MMWLWPP5aVKt4TYled/W82ePNJflqc2JbQ==} '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} @@ -3559,20 +3493,20 @@ packages: resolution: {integrity: sha512-qCroRXgyHu2vrxb/GFtgXTzARH8hhn1KnC4sO/F1oZePStQQS5Yar+qZ42bukypB1vitIVnUL0SOqymr8G04Fg==} peerDependencies: '@tanstack/react-query': ^5.32.0 - next: 14.3.0-canary.7 - react: 18.2.0 + next: ^13 || ^14 + react: ^18.0.0 '@tanstack/react-query@5.32.0': resolution: {integrity: sha512-+E3UudQtarnx9A6xhpgMZapyF+aJfNBGFMgI459FnduEZqT/9KhOWnMOneZahLRt52yzskSA0AuOyLkXHK0yBA==} peerDependencies: - react: 18.2.0 + react: ^18.0.0 '@tanstack/react-table@8.16.0': resolution: {integrity: sha512-rKRjnt8ostqN2fercRVOIH/dq7MAmOENCMvVlKx6P9Iokhh6woBGnIZEkqsY/vEJf1jN3TqLOb34xQGLVRuhAg==} engines: {node: '>=12'} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.8' + react-dom: '>=16.8' '@tanstack/table-core@8.16.0': resolution: {integrity: sha512-dCG8vQGk4js5v88/k83tTedWOwjGnIyONrKpHpfmSJB8jwFHl8GSu1sBBxbtACVAPtAQgwNxl0rw1d3RqRM1Tg==} @@ -3615,12 +3549,12 @@ packages: '@tsconfig/node16@1.0.4': resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - '@turbo/gen@1.13.2': - resolution: {integrity: sha512-6/Z90XAMbfQCFX3QUyVEy5Te1u8Bm/K2ob7FaD7OrFYLtnKnzTghH1pOglFqfmdHqLusCrGEF00J9lKz176BNQ==} + '@turbo/gen@1.13.3': + resolution: {integrity: sha512-l+EM1gGzckFMaaVQyj3BVRa0QJ+tpp8HfiHOhGpBWW3Vc0Hfj92AY87Di/7HGABa+HVY7ueatMi7DJG+zkJBYg==} hasBin: true - '@turbo/workspaces@1.13.2': - resolution: {integrity: sha512-m1kUcR6VRbJH4Ok0J+dA6blMu3Ywjq1d9rg/4OAMtkLPkO74LjGKtmqw7VNKhYlQBJd3oMyiI3mWn+QL7abtpg==} + '@turbo/workspaces@1.13.3': + resolution: {integrity: sha512-QYZ8g3IVQebqNM8IsBlWYOWmOKjBZY55e6lx4EDOLuch1iWmyk+U8CLAI9UomMrSaKTs1Sx+PDkt63EgakvhUw==} hasBin: true '@types/acorn@4.0.6': @@ -3659,8 +3593,8 @@ packages: '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - '@types/eslint@8.56.9': - resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==} + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} '@types/estree-jsx@1.0.5': resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} @@ -3731,11 +3665,11 @@ packages: '@types/prop-types@15.7.12': resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/react-dom@18.2.25': - resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==} + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} - '@types/react@18.2.79': - resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==} + '@types/react@18.3.1': + resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==} '@types/semver@6.2.7': resolution: {integrity: sha512-blctEWbzUFzQx799RZjzzIdBJOXmE37YYEyDtKkx5Dg+V7o/zyyAxLPiI98A2jdTtDgxZleMdfV+7p8WbRJ1OQ==} @@ -3761,8 +3695,8 @@ packages: '@types/ws@8.5.10': resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} - '@typescript-eslint/eslint-plugin@7.7.0': - resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==} + '@typescript-eslint/eslint-plugin@7.7.1': + resolution: {integrity: sha512-KwfdWXJBOviaBVhxO3p5TJiLpNuh2iyXyjmWN0f1nU87pwyvfS0EmjC6ukQVYVFJd/K1+0NWGPDXiyEyQorn0Q==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -3772,8 +3706,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.7.0': - resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==} + '@typescript-eslint/parser@7.7.1': + resolution: {integrity: sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -3782,12 +3716,12 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@7.7.0': - resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==} + '@typescript-eslint/scope-manager@7.7.1': + resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@7.7.0': - resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==} + '@typescript-eslint/type-utils@7.7.1': + resolution: {integrity: sha512-ZksJLW3WF7o75zaBPScdW1Gbkwhd/lyeXGf1kQCxJaOeITscoSl0MjynVvCzuV5boUz/3fOI06Lz8La55mu29Q==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -3796,12 +3730,12 @@ packages: typescript: optional: true - '@typescript-eslint/types@7.7.0': - resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==} + '@typescript-eslint/types@7.7.1': + resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/typescript-estree@7.7.0': - resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==} + '@typescript-eslint/typescript-estree@7.7.1': + resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -3809,14 +3743,14 @@ packages: typescript: optional: true - '@typescript-eslint/utils@7.7.0': - resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==} + '@typescript-eslint/utils@7.7.1': + resolution: {integrity: sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/visitor-keys@7.7.0': - resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==} + '@typescript-eslint/visitor-keys@7.7.1': + resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==} engines: {node: ^18.18.0 || >=20.0.0} '@ungap/structured-clone@1.2.0': @@ -4071,9 +4005,6 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001611: - resolution: {integrity: sha512-19NuN1/3PjA3QI8Eki55N8my4LzfkMCRLgCVfrl/slbSAchQfV0+GwjPrK3rq37As4UCLlM/DHajbKkAqbv92Q==} - caniuse-lite@1.0.30001612: resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==} @@ -4155,10 +4086,6 @@ packages: resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} engines: {node: '>=6'} - clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} - engines: {node: '>=6'} - clsx@2.1.1: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} @@ -4170,8 +4097,8 @@ packages: cmdk@1.0.0: resolution: {integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^18.0.0 + react-dom: ^18.0.0 color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -4491,8 +4418,8 @@ packages: engines: {node: '>=14'} hasBin: true - electron-to-chromium@1.4.740: - resolution: {integrity: sha512-Yvg5i+iyv7Xm18BRdVPVm8lc7kgxM3r6iwqCH2zB7QZy1kZRNmd0Zqm0zcD9XoFREE5/5rwIuIAOT+/mzGcnZg==} + electron-to-chromium@1.4.750: + resolution: {integrity: sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==} emery@1.4.3: resolution: {integrity: sha512-DrP24dscOZx5BJpOo32X1CjaWgbFojS4sAXKtlmTQmCJ01Vv2brjeWKIS6cQ4Rblt/hZIN+6pdV2L7Y9Rsh8EA==} @@ -4522,8 +4449,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-iterator-helpers@1.0.18: - resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} + es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} engines: {node: '>= 0.4'} es-object-atoms@1.0.0: @@ -4572,8 +4499,8 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-config-turbo@1.13.2: - resolution: {integrity: sha512-TzvsMwNJx/P4JYw79iFqbyQApnyT050gW7dBxnNeNVl3pVMnT2rwaFo9Q3Hc49Tp5NANxEwYN9RStF50P/IwGA==} + eslint-config-turbo@1.13.3: + resolution: {integrity: sha512-if/QtwEiWZ5b7Bg8yZBPSvS0TeCG2Zvfa/+XBYANS7uSYucjmW+BBC8enJB0PqpB/YLGGOumeo3x7h1Nuba9iw==} peerDependencies: eslint: '>6.6.0' @@ -4611,8 +4538,8 @@ packages: '@typescript-eslint/parser': optional: true - eslint-plugin-react-hooks@4.6.0: - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + eslint-plugin-react-hooks@4.6.2: + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 @@ -4623,8 +4550,8 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - eslint-plugin-turbo@1.13.2: - resolution: {integrity: sha512-QNaihF0hTRjfOBd1SLHrftm8V3pOU35CNS/C0/Z6qY1xxdL1PSv4IctEIldSMX7/A1jOPYwMPO7wYwPXgjgp/g==} + eslint-plugin-turbo@1.13.3: + resolution: {integrity: sha512-RjmlnqYsEqnJ+U3M3IS5jLJDjWv5NsvReCpsC61n5pJ4JMHTZ/lU0EIoL1ccuL1L5wP0APzdXdByBxERcPQ+Nw==} peerDependencies: eslint: '>6.6.0' @@ -5077,8 +5004,8 @@ packages: input-otp@1.2.4: resolution: {integrity: sha512-md6rhmD+zmMnUh5crQNSQxq3keBRYvE3odbr4Qb9g2NWzQv9azi+t1a3X4TBTbh98fsGHgEEJlzbe1q860uGCA==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 inquirer@7.3.3: resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} @@ -5442,8 +5369,8 @@ packages: resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} + lru-cache@10.2.1: + resolution: {integrity: sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==} engines: {node: 14 || >=16.14} lru-cache@4.1.5: @@ -5460,10 +5387,10 @@ packages: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - lucide-react@0.373.0: - resolution: {integrity: sha512-0kygFhk/DmK4mi+zf1t5mNStJQGaElACZdDdLiHOHFJzi7g3maC3SR86AcaUsxvDkZPId3XCd4vRngnjkPHu3Q==} + lucide-react@0.376.0: + resolution: {integrity: sha512-g91IX3ERD6yUR1TL2dsL4BkcGygpZz/EsqjAeL/kcRQV0EApIOr/9eBfKhYOVyQIcGGuotFGjF3xKLHMEz+b7g==} peerDependencies: - react: 18.2.0 + react: ^16.5.1 || ^17.0.0 || ^18.0.0 magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} @@ -5486,7 +5413,7 @@ packages: md-to-react-email@5.0.2: resolution: {integrity: sha512-x6kkpdzIzUhecda/yahltfEl53mH26QdWu4abUF9+S0Jgam8P//Ciro8cdhyMHnT5MQUJYrIbO6ORM2UxPiNNA==} peerDependencies: - react: 18.2.0 + react: 18.x mdast-util-find-and-replace@3.0.1: resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} @@ -5752,13 +5679,13 @@ packages: engines: {node: '>=14.18'} hasBin: true peerDependencies: - next: 14.3.0-canary.7 + next: '*' next-themes@0.3.0: resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8 || ^17 || ^18 + react-dom: ^16.8 || ^17 || ^18 next@14.2.3: resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==} @@ -5767,26 +5694,8 @@ packages: peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 - react: 18.2.0 - react-dom: 18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - '@playwright/test': - optional: true - sass: - optional: true - - next@14.3.0-canary.7: - resolution: {integrity: sha512-loPrWTCvHvZgOy3rgL9+2WpxNDxlRNt462ihqm/DUuyK8LUZV1F4H920YTAu1wEiYC8RrpNUbpz8K7KRYAkQiA==} - engines: {node: '>=18.17.0'} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 - react: 18.2.0 - react-dom: 18.2.0 + react: ^18.2.0 + react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -5912,8 +5821,8 @@ packages: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} ora@4.1.1: @@ -6067,9 +5976,9 @@ packages: engines: {node: '>=16'} hasBin: true - pnpm@8.15.7: - resolution: {integrity: sha512-yFzSG22hAzIVaxyiqnnAph7nrS6wRTuIqymSienoypPmCRIyslwHy/YfbfdxKNnISeXJrG5EhU29IRxJ86Z63A==} - engines: {node: '>=16.14'} + pnpm@9.0.6: + resolution: {integrity: sha512-9thjEwlzIHy3ozbWtDmiQqJqyAaAd99TDWqGBpQZhT3B/+ZAKexZSpxQWjpBDRlkPIcKumd2Mw9c/dzxCpwWFw==} + engines: {node: '>=18.12'} hasBin: true possible-typed-array-names@1.0.0: @@ -6270,29 +6179,34 @@ packages: resolution: {integrity: sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==} peerDependencies: date-fns: ^2.28.0 || ^3.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom@18.2.0: resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: - react: 18.2.0 + react: ^18.2.0 + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 react-error-boundary@4.0.13: resolution: {integrity: sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==} peerDependencies: - react: 18.2.0 + react: '>=16.13.1' react-hook-form@7.51.3: resolution: {integrity: sha512-cvJ/wbHdhYx8aviSWh28w9ImjmVsb5Y05n1+FW786vEZQJV5STNM0pW6ujS+oiBecb0ARBxJFyAnXj9+GHXACQ==} engines: {node: '>=12.22.0'} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17 || ^18 react-i18next@14.1.1: resolution: {integrity: sha512-QSiKw+ihzJ/CIeIYWrarCmXJUySHDwQr5y8uaNIkbxoGRm/5DukkxZs+RPla79IKyyDPzC/DRlgQCABHtrQuQQ==} peerDependencies: i18next: '>= 23.2.3' - react: 18.2.0 + react: '>= 16.8.0' react-dom: '*' react-native: '*' peerDependenciesMeta: @@ -6309,7 +6223,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -6319,7 +6233,7 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -6327,15 +6241,15 @@ packages: react-smooth@4.0.1: resolution: {integrity: sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-style-singleton@2.2.1: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -6344,18 +6258,22 @@ packages: resolution: {integrity: sha512-rQk2Nm+TOBrM1C4E3e6KwT65iXyRSgBHjCkr2FNja1S51WaPulRA5nKj/xazuQ3x89wDDdGsrqkqy0RBIfd0xg==} engines: {node: '>=10'} peerDependencies: - react: 18.2.0 + react: ^16 || ^17 || ^18 react-transition-group@4.4.5: resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.6.0' + react-dom: '>=16.6.0' react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -6390,8 +6308,8 @@ packages: resolution: {integrity: sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==} engines: {node: '>=14'} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 reflect.getprototypeof@1.0.6: resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} @@ -6506,8 +6424,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} scroll-into-view-if-needed@2.2.31: resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==} @@ -6590,8 +6508,8 @@ packages: slate-react@0.91.11: resolution: {integrity: sha512-2nS29rc2kuTTJrEUOXGyTkFATmTEw/R9KuUXadUYiz+UVwuFOUMnBKuwJWyuIBOsFipS+06SkIayEf5CKdARRQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: '>=16.8.0' + react-dom: '>=16.8.0' slate: '>=0.65.3' slate@0.91.4: @@ -6618,8 +6536,8 @@ packages: sonner@1.4.41: resolution: {integrity: sha512-uG511ggnnsw6gcn/X+YKkWPo5ep9il9wYi3QJxHsYe7yTZ4+cOd1wuodOUmOpFuXL+/RE3R04LczdNCDygTDgQ==} peerDependencies: - react: 18.2.0 - react-dom: 18.2.0 + react: ^18.0.0 + react-dom: ^18.0.0 source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} @@ -6707,8 +6625,8 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - stripe@15.3.0: - resolution: {integrity: sha512-5J1NUZaCy0DnFINyxKWR+107BQ7gkhhOwMRp+ckHQP8j7+0HbwE8cN2Vi/qnja3k3sFC2ft6g6hcvM7lmavEAQ==} + stripe@15.4.0: + resolution: {integrity: sha512-o3STlHYUmJh1ogAem434As7hCMEGG43R1fFkX0NuxabnmZoOQ9Ytxuu+e5Tq5NSE3LPUIV64jbjQebHoZvLTKw==} engines: {node: '>=12.*'} styled-jsx@5.1.1: @@ -6717,7 +6635,7 @@ packages: peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' - react: 18.2.0 + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' peerDependenciesMeta: '@babel/core': optional: true @@ -6732,8 +6650,8 @@ packages: engines: {node: '>=16 || 14 >=14.17'} hasBin: true - supabase@1.163.2: - resolution: {integrity: sha512-mA/lhdNsEk9HEF72HbHzpm4EO39TKw2rChizcp8+dwFhaa2ex/jvkLHXujAuPjsZMXgQzRvUj4ltHsY0Z1cUlA==} + supabase@1.163.6: + resolution: {integrity: sha512-GuanZQdIEGXCWz1UYIMPDmIsAdqD8IiqnATqfNSqlWMYK4y4X912HxyGW1sjYZjQar/10RSkSwPAsRLwDTAxrw==} engines: {npm: '>=8'} hasBin: true @@ -6860,38 +6778,38 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - turbo-darwin-64@1.13.2: - resolution: {integrity: sha512-CCSuD8CfmtncpohCuIgq7eAzUas0IwSbHfI8/Q3vKObTdXyN8vAo01gwqXjDGpzG9bTEVedD0GmLbD23dR0MLA==} + turbo-darwin-64@1.13.3: + resolution: {integrity: sha512-glup8Qx1qEFB5jerAnXbS8WrL92OKyMmg5Hnd4PleLljAeYmx+cmmnsmLT7tpaVZIN58EAAwu8wHC6kIIqhbWA==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@1.13.2: - resolution: {integrity: sha512-0HySm06/D2N91rJJ89FbiI/AodmY8B3WDSFTVEpu2+8spUw7hOJ8okWOT0e5iGlyayUP9gr31eOeL3VFZkpfCw==} + turbo-darwin-arm64@1.13.3: + resolution: {integrity: sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==} cpu: [arm64] os: [darwin] - turbo-linux-64@1.13.2: - resolution: {integrity: sha512-7HnibgbqZrjn4lcfIouzlPu8ZHSBtURG4c7Bedu7WJUDeZo+RE1crlrQm8wuwO54S0siYqUqo7GNHxu4IXbioQ==} + turbo-linux-64@1.13.3: + resolution: {integrity: sha512-G+HGrau54iAnbXLfl+N/PynqpDwi/uDzb6iM9hXEDG+yJnSJxaHMShhOkXYJPk9offm9prH33Khx2scXrYVW1g==} cpu: [x64] os: [linux] - turbo-linux-arm64@1.13.2: - resolution: {integrity: sha512-sUq4dbpk6SNKg/Hkwn256Vj2AEYSQdG96repio894h5/LEfauIK2QYiC/xxAeW3WBMc6BngmvNyURIg7ltrePg==} + turbo-linux-arm64@1.13.3: + resolution: {integrity: sha512-qWwEl5VR02NqRyl68/3pwp3c/olZuSp+vwlwrunuoNTm6JXGLG5pTeme4zoHNnk0qn4cCX7DFrOboArlYxv0wQ==} cpu: [arm64] os: [linux] - turbo-windows-64@1.13.2: - resolution: {integrity: sha512-DqzhcrciWq3dpzllJR2VVIyOhSlXYCo4mNEWl98DJ3FZ08PEzcI3ceudlH6F0t/nIcfSItK1bDP39cs7YoZHEA==} + turbo-windows-64@1.13.3: + resolution: {integrity: sha512-Nudr4bRChfJzBPzEmpVV85VwUYRCGKecwkBFpbp2a4NtrJ3+UP1VZES653ckqCu2FRyRuS0n03v9euMbAvzH+Q==} cpu: [x64] os: [win32] - turbo-windows-arm64@1.13.2: - resolution: {integrity: sha512-WnPMrwfCXxK69CdDfS1/j2DlzcKxSmycgDAqV0XCYpK/812KB0KlvsVAt5PjEbZGXkY88pCJ1BLZHAjF5FcbqA==} + turbo-windows-arm64@1.13.3: + resolution: {integrity: sha512-ouJCgsVLd3icjRLmRvHQDDZnmGzT64GBupM1Y+TjtYn2LVaEBoV6hicFy8x5DUpnqdLy+YpCzRMkWlwhmkX7sQ==} cpu: [arm64] os: [win32] - turbo@1.13.2: - resolution: {integrity: sha512-rX/d9f4MgRT3yK6cERPAkfavIxbpBZowDQpgvkYwGMGDQ0Nvw1nc0NVjruE76GrzXQqoxR1UpnmEP54vBARFHQ==} + turbo@1.13.3: + resolution: {integrity: sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==} hasBin: true type-check@0.4.0: @@ -6942,9 +6860,9 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - undici@6.13.0: - resolution: {integrity: sha512-Q2rtqmZWrbP8nePMq7mOJIN98M0fYvSgV89vwl/BQRT4mDOeY2GXZngfGpcBBhtky3woM7G24wZV3Q304Bv6cw==} - engines: {node: '>=18.0'} + undici@6.14.1: + resolution: {integrity: sha512-mAel3i4BsYhkeVPXeIPXVGPJKeBzqCieZYoFsbWfUzd68JmHByhc1Plit5WlylxXFaGpgkZB8mExlxnt+Q1p7A==} + engines: {node: '>=18.17'} unist-util-is@6.0.0: resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} @@ -6993,14 +6911,14 @@ packages: urql@4.0.7: resolution: {integrity: sha512-wnOONtZoYEobmamM5ushUBGil6UCUPd7SH5uEAqsz5Y/qBV88/2QG6jq7v6xP+413x5Lqy0h0hCGRB0KIeG6Kg==} peerDependencies: - react: 18.2.0 + react: '>= 16.8.0' use-callback-ref@1.3.2: resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -7010,15 +6928,15 @@ packages: engines: {node: '>=10'} peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true - use-sync-external-store@1.2.0: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + use-sync-external-store@1.2.2: + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} peerDependencies: - react: 18.2.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -7101,6 +7019,10 @@ packages: wonka@6.3.4: resolution: {integrity: sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==} + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} @@ -7210,8 +7132,8 @@ packages: engines: {node: '>=4.0.0'} hasBin: true - yjs@13.6.14: - resolution: {integrity: sha512-D+7KcUr0j+vBCUSKXXEWfA+bG4UQBviAwP3gYBhkstkgwy5+8diOPMx0iqLIOxNo/HxaREUimZRxqHGAHCL2BQ==} + yjs@13.6.15: + resolution: {integrity: sha512-moFv4uNYhp8BFxIk3AkpoAnnjts7gwdpiG8RtyFiKbMtxKCS0zVZ5wPaaGpwC3V2N/K8TK8MwtSI3+WO9CHWjQ==} engines: {node: '>=16.0.0', npm: '>=8.0.0'} yn@3.1.1: @@ -7234,8 +7156,6 @@ snapshots: optionalDependencies: graphql: 16.8.1 - '@aashutoshrathi/word-wrap@1.2.6': {} - '@alloc/quick-lru@5.2.0': {} '@ampproject/remapping@2.3.0': @@ -7346,7 +7266,7 @@ snapshots: '@babel/parser@7.24.4': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.17.0 '@babel/runtime-corejs3@7.24.4': dependencies: @@ -7410,24 +7330,24 @@ snapshots: '@opentelemetry/exporter-trace-otlp-http': 0.50.0(@opentelemetry/api@1.8.0) '@opentelemetry/instrumentation': 0.50.0(@opentelemetry/api@1.8.0) '@opentelemetry/instrumentation-http': 0.50.0(@opentelemetry/api@1.8.0) - '@opentelemetry/resource-detector-aws': 1.4.1(@opentelemetry/api@1.8.0) - '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/resource-detector-aws': 1.4.2(@opentelemetry/api@1.8.0) + '@opentelemetry/resources': 1.24.0(@opentelemetry/api@1.8.0) '@opentelemetry/sdk-node': 0.50.0(@opentelemetry/api@1.8.0) - '@opentelemetry/sdk-trace-node': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/sdk-trace-node': 1.24.0(@opentelemetry/api@1.8.0) '@trpc/server': 10.45.2 '@types/aws-lambda': 8.10.137 axios: 1.6.8 flat: 6.0.1 - undici: 6.13.0 + undici: 6.14.1 transitivePeerDependencies: - debug - supports-color - '@baselime/react-rum@0.2.9(react@18.2.0)': + '@baselime/react-rum@0.2.9(react@18.3.1)': dependencies: js-cookie: 3.0.5 - react: 18.2.0 - react-error-boundary: 4.0.13(react@18.2.0) + react: 18.3.1 + react-error-boundary: 4.0.13(react@18.3.1) web-vitals: 3.5.2 '@braintree/sanitize-url@6.0.4': {} @@ -7440,9 +7360,9 @@ snapshots: '@discoveryjs/json-ext@0.5.7': {} - '@edge-csrf/nextjs@2.0.0(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))': + '@edge-csrf/nextjs@2.0.0(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': dependencies: - next: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@emotion/babel-plugin@11.11.0': dependencies: @@ -7526,18 +7446,18 @@ snapshots: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 - '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/dom': 1.6.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react@0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react@0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/react-dom': 2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) tabbable: 6.2.0 '@floating-ui/utils@0.2.1': {} @@ -7582,9 +7502,9 @@ snapshots: protobufjs: 7.2.6 yargs: 17.7.2 - '@hookform/resolvers@3.3.4(react-hook-form@7.51.3(react@18.2.0))': + '@hookform/resolvers@3.3.4(react-hook-form@7.51.3(react@18.3.1))': dependencies: - react-hook-form: 7.51.3(react@18.2.0) + react-hook-form: 7.51.3(react@18.3.1) '@humanwhocodes/config-array@0.11.14': dependencies: @@ -7636,7 +7556,7 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@isaacs/fs-minipass@4.0.0': + '@isaacs/fs-minipass@4.0.1': dependencies: minipass: 7.0.4 @@ -7666,126 +7586,126 @@ snapshots: '@juggle/resize-observer@3.4.0': {} - '@keystar/ui@0.7.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@keystar/ui@0.7.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@emotion/css': 11.11.2 - '@floating-ui/react': 0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/react': 0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@internationalized/date': 3.5.2 - '@react-aria/actiongroup': 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/breadcrumbs': 3.5.11(react@18.2.0) - '@react-aria/button': 3.9.3(react@18.2.0) - '@react-aria/calendar': 3.5.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/checkbox': 3.14.1(react@18.2.0) - '@react-aria/combobox': 3.8.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/datepicker': 3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dialog': 3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dnd': 3.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/gridlist': 3.7.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/link': 3.6.5(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/actiongroup': 3.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/breadcrumbs': 3.5.11(react@18.3.1) + '@react-aria/button': 3.9.3(react@18.3.1) + '@react-aria/calendar': 3.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/checkbox': 3.14.1(react@18.3.1) + '@react-aria/combobox': 3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/datepicker': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/dialog': 3.5.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/dnd': 3.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/gridlist': 3.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/link': 3.6.5(react@18.3.1) + '@react-aria/listbox': 3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/menu': 3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/meter': 3.4.11(react@18.2.0) - '@react-aria/numberfield': 3.11.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/progress': 3.4.11(react@18.2.0) - '@react-aria/radio': 3.10.2(react@18.2.0) - '@react-aria/searchfield': 3.7.3(react@18.2.0) - '@react-aria/select': 3.14.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/separator': 3.3.11(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/switch': 3.6.2(react@18.2.0) - '@react-aria/table': 3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/tabs': 3.8.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/toast': 3.0.0-beta.2(react@18.2.0) - '@react-aria/tooltip': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/virtualizer': 3.9.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/calendar': 3.4.4(react@18.2.0) - '@react-stately/checkbox': 3.6.3(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/combobox': 3.8.2(react@18.2.0) - '@react-stately/data': 3.11.2(react@18.2.0) - '@react-stately/datepicker': 3.9.2(react@18.2.0) - '@react-stately/dnd': 3.2.8(react@18.2.0) - '@react-stately/layout': 3.13.7(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-stately/numberfield': 3.9.1(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/radio': 3.10.2(react@18.2.0) - '@react-stately/searchfield': 3.5.1(react@18.2.0) - '@react-stately/select': 3.6.2(react@18.2.0) - '@react-stately/table': 3.11.6(react@18.2.0) - '@react-stately/tabs': 3.6.4(react@18.2.0) - '@react-stately/toast': 3.0.0-beta.1(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-stately/tooltip': 3.4.7(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/actionbar': 3.1.5(react@18.2.0) - '@react-types/actiongroup': 3.4.7(react@18.2.0) - '@react-types/breadcrumbs': 3.7.3(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/datepicker': 3.7.2(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/numberfield': 3.8.1(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/switch': 3.5.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/meter': 3.4.11(react@18.3.1) + '@react-aria/numberfield': 3.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/progress': 3.4.11(react@18.3.1) + '@react-aria/radio': 3.10.2(react@18.3.1) + '@react-aria/searchfield': 3.7.3(react@18.3.1) + '@react-aria/select': 3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/separator': 3.3.11(react@18.3.1) + '@react-aria/ssr': 3.9.2(react@18.3.1) + '@react-aria/switch': 3.6.2(react@18.3.1) + '@react-aria/table': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/tabs': 3.8.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/textfield': 3.14.3(react@18.3.1) + '@react-aria/toast': 3.0.0-beta.2(react@18.3.1) + '@react-aria/tooltip': 3.7.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/virtualizer': 3.9.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-stately/calendar': 3.4.4(react@18.3.1) + '@react-stately/checkbox': 3.6.3(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/combobox': 3.8.2(react@18.3.1) + '@react-stately/data': 3.11.2(react@18.3.1) + '@react-stately/datepicker': 3.9.2(react@18.3.1) + '@react-stately/dnd': 3.2.8(react@18.3.1) + '@react-stately/layout': 3.13.7(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-stately/menu': 3.6.1(react@18.3.1) + '@react-stately/numberfield': 3.9.1(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-stately/radio': 3.10.2(react@18.3.1) + '@react-stately/searchfield': 3.5.1(react@18.3.1) + '@react-stately/select': 3.6.2(react@18.3.1) + '@react-stately/table': 3.11.6(react@18.3.1) + '@react-stately/tabs': 3.6.4(react@18.3.1) + '@react-stately/toast': 3.0.0-beta.1(react@18.3.1) + '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-stately/tooltip': 3.4.7(react@18.3.1) + '@react-stately/tree': 3.7.6(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-types/actionbar': 3.1.5(react@18.3.1) + '@react-types/actiongroup': 3.4.7(react@18.3.1) + '@react-types/breadcrumbs': 3.7.3(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-types/combobox': 3.10.1(react@18.3.1) + '@react-types/datepicker': 3.7.2(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/menu': 3.9.7(react@18.3.1) + '@react-types/numberfield': 3.8.1(react@18.3.1) + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/radio': 3.7.1(react@18.3.1) + '@react-types/select': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/switch': 3.5.1(react@18.3.1) + '@react-types/table': 3.9.3(react@18.3.1) + '@react-types/tabs': 3.3.5(react@18.3.1) emery: 1.4.3 facepaint: 1.2.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - next: 14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@keystatic/core@0.5.12(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@keystatic/core@0.5.13(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@braintree/sanitize-url': 6.0.4 '@emotion/css': 11.11.2 '@emotion/weak-memoize': 0.3.1 - '@floating-ui/react': 0.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/react': 0.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@internationalized/string': 3.2.1 - '@keystar/ui': 0.7.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@markdoc/markdoc': 0.4.0(@types/react@18.2.79)(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@keystar/ui': 0.7.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@markdoc/markdoc': 0.4.0(@types/react@18.3.1)(react@18.3.1) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@sindresorhus/slugify': 1.1.2 - '@toeverything/y-indexeddb': 0.10.0-canary.9(yjs@13.6.14) + '@toeverything/y-indexeddb': 0.10.0-canary.9(yjs@13.6.15) '@ts-gql/tag': 0.7.3(graphql@16.8.1) '@types/mdast': 4.0.3 '@types/node': 16.11.13 - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 '@urql/core': 4.3.0(graphql@16.8.1) '@urql/exchange-auth': 2.1.6(graphql@16.8.1) '@urql/exchange-graphcache': 6.5.1(graphql@16.8.1) @@ -7803,7 +7723,7 @@ snapshots: js-base64: 3.7.7 js-yaml: 4.1.0 lib0: 0.2.93 - lru-cache: 10.2.0 + lru-cache: 10.2.1 match-sorter: 6.3.4 mdast-util-from-markdown: 2.0.0 mdast-util-gfm: 3.0.0 @@ -7825,48 +7745,48 @@ snapshots: prosemirror-tables: 1.3.7 prosemirror-transform: 1.8.0 prosemirror-view: 1.33.5 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 3.1.0 slate: 0.91.4 slate-history: 0.86.0(slate@0.91.4) - slate-react: 0.91.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.91.4) + slate-react: 0.91.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.91.4) unist-util-visit: 5.0.0 - urql: 4.0.7(graphql@16.8.1)(react@18.2.0) - y-prosemirror: 1.2.3(prosemirror-model@1.20.0)(prosemirror-state@1.4.3)(prosemirror-view@1.33.5)(y-protocols@1.0.6(yjs@13.6.14))(yjs@13.6.14) - y-protocols: 1.0.6(yjs@13.6.14) - yjs: 13.6.14 + urql: 4.0.7(graphql@16.8.1)(react@18.3.1) + y-prosemirror: 1.2.3(prosemirror-model@1.20.0)(prosemirror-state@1.4.3)(prosemirror-view@1.33.5)(y-protocols@1.0.6(yjs@13.6.15))(yjs@13.6.15) + y-protocols: 1.0.6(yjs@13.6.15) + yjs: 13.6.15 zod: 3.23.4 transitivePeerDependencies: - next - supports-color - '@keystatic/next@5.0.0(@keystatic/core@0.5.12(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@keystatic/next@5.0.0(@keystatic/core@0.5.13(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@keystatic/core': 0.5.12(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/react': 18.2.79 + '@keystatic/core': 0.5.13(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/react': 18.3.1 chokidar: 3.6.0 - next: 14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) server-only: 0.0.1 '@lemonsqueezy/lemonsqueezy.js@2.2.0': {} - '@makerkit/data-loader-supabase-core@0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6)': + '@makerkit/data-loader-supabase-core@0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7)': dependencies: '@supabase/postgrest-js': 1.15.2 - '@supabase/supabase-js': 2.42.6 + '@supabase/supabase-js': 2.42.7 ts-case-convert: 2.0.7 - '@makerkit/data-loader-supabase-nextjs@1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6)(@tanstack/react-query@5.32.0(react@18.2.0))(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@makerkit/data-loader-supabase-nextjs@1.1.0(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7)(@tanstack/react-query@5.32.0(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@makerkit/data-loader-supabase-core': 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.6) - '@supabase/supabase-js': 2.42.6 - '@tanstack/react-query': 5.32.0(react@18.2.0) - next: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 + '@makerkit/data-loader-supabase-core': 0.0.7(@supabase/postgrest-js@1.15.2)(@supabase/supabase-js@2.42.7) + '@supabase/supabase-js': 2.42.7 + '@tanstack/react-query': 5.32.0(react@18.3.1) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 transitivePeerDependencies: - '@supabase/postgrest-js' @@ -7904,16 +7824,16 @@ snapshots: jju: 1.4.0 read-yaml-file: 1.1.0 - '@markdoc/markdoc@0.4.0(@types/react@18.2.79)(react@18.2.0)': + '@markdoc/markdoc@0.4.0(@types/react@18.3.1)(react@18.3.1)': optionalDependencies: '@types/markdown-it': 12.2.3 - '@types/react': 18.2.79 - react: 18.2.0 + '@types/react': 18.3.1 + react: 18.3.1 - '@marsidev/react-turnstile@0.5.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@marsidev/react-turnstile@0.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@next/bundle-analyzer@14.3.0-canary.9': dependencies: @@ -7926,8 +7846,6 @@ snapshots: '@next/env@14.2.3': {} - '@next/env@14.3.0-canary.7': {} - '@next/eslint-plugin-next@14.2.3': dependencies: glob: 10.3.10 @@ -7935,57 +7853,30 @@ snapshots: '@next/swc-darwin-arm64@14.2.3': optional: true - '@next/swc-darwin-arm64@14.3.0-canary.7': - optional: true - '@next/swc-darwin-x64@14.2.3': optional: true - '@next/swc-darwin-x64@14.3.0-canary.7': - optional: true - '@next/swc-linux-arm64-gnu@14.2.3': optional: true - '@next/swc-linux-arm64-gnu@14.3.0-canary.7': - optional: true - '@next/swc-linux-arm64-musl@14.2.3': optional: true - '@next/swc-linux-arm64-musl@14.3.0-canary.7': - optional: true - '@next/swc-linux-x64-gnu@14.2.3': optional: true - '@next/swc-linux-x64-gnu@14.3.0-canary.7': - optional: true - '@next/swc-linux-x64-musl@14.2.3': optional: true - '@next/swc-linux-x64-musl@14.3.0-canary.7': - optional: true - '@next/swc-win32-arm64-msvc@14.2.3': optional: true - '@next/swc-win32-arm64-msvc@14.3.0-canary.7': - optional: true - '@next/swc-win32-ia32-msvc@14.2.3': optional: true - '@next/swc-win32-ia32-msvc@14.3.0-canary.7': - optional: true - '@next/swc-win32-x64-msvc@14.2.3': optional: true - '@next/swc-win32-x64-msvc@14.3.0-canary.7': - optional: true - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -8216,11 +8107,11 @@ snapshots: '@opentelemetry/api': 1.8.0 '@opentelemetry/core': 1.24.0(@opentelemetry/api@1.8.0) - '@opentelemetry/resource-detector-aws@1.4.1(@opentelemetry/api@1.8.0)': + '@opentelemetry/resource-detector-aws@1.4.2(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 '@opentelemetry/core': 1.24.0(@opentelemetry/api@1.8.0) - '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/resources': 1.24.0(@opentelemetry/api@1.8.0) '@opentelemetry/semantic-conventions': 1.24.0 '@opentelemetry/resources@1.23.0(@opentelemetry/api@1.8.0)': @@ -8391,1088 +8282,1103 @@ snapshots: dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.2.0)': dependencies: '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.4 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-icons@1.3.0(react@18.2.0)': + '@radix-ui/react-icons@1.3.0(react@18.3.1)': dependencies: - react: 18.2.0 + react: 18.3.1 - '@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@floating-ui/react-dom': 2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) '@radix-ui/rect': 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-select@2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-select@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.2.0)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.4 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.1 + + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@radix-ui/rect': 1.0.1 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.25 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 '@radix-ui/rect@1.0.1': dependencies: '@babel/runtime': 7.24.4 - '@react-aria/actiongroup@3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/actiongroup@3.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/actiongroup': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-types/actiongroup': 3.4.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/breadcrumbs@3.5.11(react@18.2.0)': + '@react-aria/breadcrumbs@3.5.11(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/link': 3.6.5(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/breadcrumbs': 3.7.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/link': 3.6.5(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/breadcrumbs': 3.7.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/button@3.9.3(react@18.2.0)': + '@react-aria/button@3.9.3(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/calendar@3.5.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/calendar@3.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/calendar': 3.4.4(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/calendar': 3.4.4(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/checkbox@3.14.1(react@18.2.0)': + '@react-aria/checkbox@3.14.1(react@18.3.1)': dependencies: - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/toggle': 3.10.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/checkbox': 3.6.3(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/form': 3.0.3(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/toggle': 3.10.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/checkbox': 3.6.3(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/combobox@3.8.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/combobox@3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/listbox': 3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/menu': 3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/combobox': 3.8.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/textfield': 3.14.3(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/combobox': 3.8.2(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/combobox': 3.10.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/datepicker@3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/datepicker@3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 '@internationalized/number': 3.5.1 '@internationalized/string': 3.2.1 - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/spinbutton': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/datepicker': 3.9.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/datepicker': 3.7.2(react@18.2.0) - '@react-types/dialog': 3.5.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/form': 3.0.3(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/spinbutton': 3.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/datepicker': 3.9.2(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-types/datepicker': 3.7.2(react@18.3.1) + '@react-types/dialog': 3.5.8(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/dialog@3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/dialog@3.5.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/dialog': 3.5.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/dialog': 3.5.8(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/dnd@3.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/dnd@3.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/string': 3.2.1 - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/dnd': 3.2.8(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/dnd': 3.2.8(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/focus@3.16.2(react@18.2.0)': + '@react-aria/focus@3.16.2(react@18.3.1)': dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 clsx: 2.1.1 - react: 18.2.0 + react: 18.3.1 - '@react-aria/form@3.0.3(react@18.2.0)': + '@react-aria/form@3.0.3(react@18.3.1)': dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/grid@3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/grid@3.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/grid': 3.8.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/grid': 3.8.5(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/gridlist@3.7.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/gridlist@3.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/grid': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/grid': 3.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/i18n@3.10.2(react@18.2.0)': + '@react-aria/i18n@3.10.2(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 '@internationalized/message': 3.1.2 '@internationalized/number': 3.5.1 '@internationalized/string': 3.2.1 - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/ssr': 3.9.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/interactions@3.21.1(react@18.2.0)': + '@react-aria/interactions@3.21.1(react@18.3.1)': dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/ssr': 3.9.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/label@3.7.6(react@18.2.0)': + '@react-aria/label@3.7.6(react@18.3.1)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/landmark@3.0.0-beta.2(react@18.2.0)': + '@react-aria/landmark@3.0.0-beta.2(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - use-sync-external-store: 1.2.0(react@18.2.0) + react: 18.3.1 + use-sync-external-store: 1.2.2(react@18.3.1) - '@react-aria/link@3.6.5(react@18.2.0)': + '@react-aria/link@3.6.5(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/link': 3.5.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/listbox@3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/listbox@3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/listbox': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-types/listbox': 3.4.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@react-aria/live-announcer@3.3.2': dependencies: '@swc/helpers': 0.5.11 - '@react-aria/menu@3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/menu@3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/menu': 3.6.1(react@18.3.1) + '@react-stately/tree': 3.7.6(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/menu': 3.9.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/meter@3.4.11(react@18.2.0)': + '@react-aria/meter@3.4.11(react@18.3.1)': dependencies: - '@react-aria/progress': 3.4.11(react@18.2.0) - '@react-types/meter': 3.3.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/progress': 3.4.11(react@18.3.1) + '@react-types/meter': 3.3.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/numberfield@3.11.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/numberfield@3.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/spinbutton': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/numberfield': 3.9.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/numberfield': 3.8.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/spinbutton': 3.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/textfield': 3.14.3(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/numberfield': 3.9.1(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/numberfield': 3.8.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/overlays@3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/overlays@3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/ssr': 3.9.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/progress@3.4.11(react@18.2.0)': + '@react-aria/progress@3.4.11(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/progress': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/progress': 3.5.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/radio@3.10.2(react@18.2.0)': + '@react-aria/radio@3.10.2(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/radio': 3.10.2(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/form': 3.0.3(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/radio': 3.10.2(react@18.3.1) + '@react-types/radio': 3.7.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/searchfield@3.7.3(react@18.2.0)': + '@react-aria/searchfield@3.7.3(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/searchfield': 3.5.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/searchfield': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/textfield': 3.14.3(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/searchfield': 3.5.1(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/searchfield': 3.5.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/select@3.14.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/select@3.14.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/menu': 3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/select': 3.6.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/form': 3.0.3(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/listbox': 3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-stately/select': 3.6.2(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/select': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/selection@3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/selection@3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/separator@3.3.11(react@18.2.0)': + '@react-aria/separator@3.3.11(react@18.3.1)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/spinbutton@3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/spinbutton@3.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/ssr@3.9.2(react@18.2.0)': + '@react-aria/ssr@3.9.2(react@18.3.1)': dependencies: '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/switch@3.6.2(react@18.2.0)': + '@react-aria/switch@3.6.2(react@18.3.1)': dependencies: - '@react-aria/toggle': 3.10.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/switch': 3.5.1(react@18.2.0) + '@react-aria/toggle': 3.10.2(react@18.3.1) + '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-types/switch': 3.5.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/table@3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/table@3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/grid': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/grid': 3.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-stately/collections': 3.10.5(react@18.3.1) '@react-stately/flags': 3.0.1 - '@react-stately/table': 3.11.6(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) + '@react-stately/table': 3.11.6(react@18.3.1) + '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/table': 3.9.3(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/tabs@3.8.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/tabs@3.8.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tabs': 3.6.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/tabs': 3.6.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/tabs': 3.3.5(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/textfield@3.14.3(react@18.2.0)': + '@react-aria/textfield@3.14.3(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/textfield': 3.9.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/form': 3.0.3(react@18.3.1) + '@react-aria/label': 3.7.6(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/textfield': 3.9.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/toast@3.0.0-beta.2(react@18.2.0)': + '@react-aria/toast@3.0.0-beta.2(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/landmark': 3.0.0-beta.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toast': 3.0.0-beta.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/landmark': 3.0.0-beta.2(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/toast': 3.0.0-beta.1(react@18.3.1) + '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/toggle@3.10.2(react@18.2.0)': + '@react-aria/toggle@3.10.2(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/tooltip@3.7.2(react@18.2.0)': + '@react-aria/tooltip@3.7.2(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tooltip': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/tooltip': 3.4.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/tooltip': 3.4.7(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-aria/utils@3.23.2(react@18.2.0)': + '@react-aria/utils@3.23.2(react@18.3.1)': dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/ssr': 3.9.2(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 clsx: 2.1.1 - react: 18.2.0 + react: 18.3.1 - '@react-aria/virtualizer@3.9.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/virtualizer@3.9.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@react-aria/visually-hidden@3.8.10(react@18.2.0)': + '@react-aria/visually-hidden@3.8.10(react@18.3.1)': dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 '@react-email/body@0.0.7(react@18.2.0)': dependencies: @@ -9495,7 +9401,7 @@ snapshots: dependencies: react: 18.2.0 - '@react-email/components@0.0.16(@types/react@18.2.79)(react@18.2.0)': + '@react-email/components@0.0.16(@types/react@18.3.1)(react@18.2.0)': dependencies: '@react-email/body': 0.0.7(react@18.2.0) '@react-email/button': 0.0.14(react@18.2.0) @@ -9505,7 +9411,7 @@ snapshots: '@react-email/container': 0.0.11(react@18.2.0) '@react-email/font': 0.0.5(react@18.2.0) '@react-email/head': 0.0.7(react@18.2.0) - '@react-email/heading': 0.0.11(@types/react@18.2.79)(react@18.2.0) + '@react-email/heading': 0.0.11(@types/react@18.3.1)(react@18.2.0) '@react-email/hr': 0.0.7(react@18.2.0) '@react-email/html': 0.0.7(react@18.2.0) '@react-email/img': 0.0.7(react@18.2.0) @@ -9533,9 +9439,9 @@ snapshots: dependencies: react: 18.2.0 - '@react-email/heading@0.0.11(@types/react@18.2.79)(react@18.2.0)': + '@react-email/heading@0.0.11(@types/react@18.3.1)(react@18.2.0)': dependencies: - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - '@types/react' @@ -9588,365 +9494,365 @@ snapshots: dependencies: react: 18.2.0 - '@react-stately/calendar@3.4.4(react@18.2.0)': + '@react-stately/calendar@3.4.4(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/checkbox@3.6.3(react@18.2.0)': + '@react-stately/checkbox@3.6.3(react@18.3.1)': dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/collections@3.10.5(react@18.2.0)': + '@react-stately/collections@3.10.5(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/combobox@3.8.2(react@18.2.0)': + '@react-stately/combobox@3.8.2(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/select': 3.6.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-stately/select': 3.6.2(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/combobox': 3.10.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/data@3.11.2(react@18.2.0)': + '@react-stately/data@3.11.2(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/datepicker@3.9.2(react@18.2.0)': + '@react-stately/datepicker@3.9.2(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 '@internationalized/string': 3.2.1 - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/datepicker': 3.7.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/datepicker': 3.7.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/dnd@3.2.8(react@18.2.0)': + '@react-stately/dnd@3.2.8(react@18.3.1)': dependencies: - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 '@react-stately/flags@3.0.1': dependencies: '@swc/helpers': 0.4.36 - '@react-stately/form@3.0.1(react@18.2.0)': + '@react-stately/form@3.0.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/grid@3.8.5(react@18.2.0)': + '@react-stately/grid@3.8.5(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/layout@3.13.7(react@18.2.0)': + '@react-stately/layout@3.13.7(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/table': 3.11.6(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/table': 3.11.6(react@18.3.1) + '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/table': 3.9.3(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/list@3.10.3(react@18.2.0)': + '@react-stately/list@3.10.3(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/menu@3.6.1(react@18.2.0)': + '@react-stately/menu@3.6.1(react@18.3.1)': dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-types/menu': 3.9.7(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/numberfield@3.9.1(react@18.2.0)': + '@react-stately/numberfield@3.9.1(react@18.3.1)': dependencies: '@internationalized/number': 3.5.1 - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/numberfield': 3.8.1(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/numberfield': 3.8.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/overlays@3.6.5(react@18.2.0)': + '@react-stately/overlays@3.6.5(react@18.3.1)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/overlays': 3.8.5(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/radio@3.10.2(react@18.2.0)': + '@react-stately/radio@3.10.2(react@18.3.1)': dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/radio': 3.7.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/searchfield@3.5.1(react@18.2.0)': + '@react-stately/searchfield@3.5.1(react@18.3.1)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/searchfield': 3.5.3(react@18.2.0) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/searchfield': 3.5.3(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/select@3.6.2(react@18.2.0)': + '@react-stately/select@3.6.2(react@18.3.1)': dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.3.1) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-types/select': 3.9.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/selection@3.14.3(react@18.2.0)': + '@react-stately/selection@3.14.3(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/table@3.11.6(react@18.2.0)': + '@react-stately/table@3.11.6(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) '@react-stately/flags': 3.0.1 - '@react-stately/grid': 3.8.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) + '@react-stately/grid': 3.8.5(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/table': 3.9.3(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/tabs@3.6.4(react@18.2.0)': + '@react-stately/tabs@3.6.4(react@18.3.1)': dependencies: - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) + '@react-stately/list': 3.10.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/tabs': 3.3.5(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/toast@3.0.0-beta.1(react@18.2.0)': + '@react-stately/toast@3.0.0-beta.1(react@18.3.1)': dependencies: '@swc/helpers': 0.5.11 - react: 18.2.0 - use-sync-external-store: 1.2.0(react@18.2.0) + react: 18.3.1 + use-sync-external-store: 1.2.2(react@18.3.1) - '@react-stately/toggle@3.7.2(react@18.2.0)': + '@react-stately/toggle@3.7.2(react@18.3.1)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/checkbox': 3.7.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/tooltip@3.4.7(react@18.2.0)': + '@react-stately/tooltip@3.4.7(react@18.3.1)': dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) + '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-types/tooltip': 3.4.7(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/tree@3.7.6(react@18.2.0)': + '@react-stately/tree@3.7.6(react@18.3.1)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.1) + '@react-stately/selection': 3.14.3(react@18.3.1) + '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/utils@3.9.1(react@18.2.0)': + '@react-stately/utils@3.9.1(react@18.3.1)': dependencies: '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-stately/virtualizer@3.6.8(react@18.2.0)': + '@react-stately/virtualizer@3.6.8(react@18.3.1)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) '@swc/helpers': 0.5.11 - react: 18.2.0 + react: 18.3.1 - '@react-types/actionbar@3.1.5(react@18.2.0)': + '@react-types/actionbar@3.1.5(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/actiongroup@3.4.7(react@18.2.0)': + '@react-types/actiongroup@3.4.7(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/breadcrumbs@3.7.3(react@18.2.0)': + '@react-types/breadcrumbs@3.7.3(react@18.3.1)': dependencies: - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/link': 3.5.3(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/button@3.9.2(react@18.2.0)': + '@react-types/button@3.9.2(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/calendar@3.4.4(react@18.2.0)': + '@react-types/calendar@3.4.4(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/checkbox@3.7.1(react@18.2.0)': + '@react-types/checkbox@3.7.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/combobox@3.10.1(react@18.2.0)': + '@react-types/combobox@3.10.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/datepicker@3.7.2(react@18.2.0)': + '@react-types/datepicker@3.7.2(react@18.3.1)': dependencies: '@internationalized/date': 3.5.2 - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/dialog@3.5.8(react@18.2.0)': + '@react-types/dialog@3.5.8(react@18.3.1)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/grid@3.2.4(react@18.2.0)': + '@react-types/grid@3.2.4(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/link@3.5.3(react@18.2.0)': + '@react-types/link@3.5.3(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/listbox@3.4.7(react@18.2.0)': + '@react-types/listbox@3.4.7(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/menu@3.9.7(react@18.2.0)': + '@react-types/menu@3.9.7(react@18.3.1)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/meter@3.3.7(react@18.2.0)': + '@react-types/meter@3.3.7(react@18.3.1)': dependencies: - '@react-types/progress': 3.5.2(react@18.2.0) - react: 18.2.0 + '@react-types/progress': 3.5.2(react@18.3.1) + react: 18.3.1 - '@react-types/numberfield@3.8.1(react@18.2.0)': + '@react-types/numberfield@3.8.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/overlays@3.8.5(react@18.2.0)': + '@react-types/overlays@3.8.5(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/progress@3.5.2(react@18.2.0)': + '@react-types/progress@3.5.2(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/radio@3.7.1(react@18.2.0)': + '@react-types/radio@3.7.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/searchfield@3.5.3(react@18.2.0)': + '@react-types/searchfield@3.5.3(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/textfield': 3.9.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + '@react-types/textfield': 3.9.1(react@18.3.1) + react: 18.3.1 - '@react-types/select@3.9.2(react@18.2.0)': + '@react-types/select@3.9.2(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/shared@3.22.1(react@18.2.0)': + '@react-types/shared@3.22.1(react@18.3.1)': dependencies: - react: 18.2.0 + react: 18.3.1 - '@react-types/switch@3.5.1(react@18.2.0)': + '@react-types/switch@3.5.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/table@3.9.3(react@18.2.0)': + '@react-types/table@3.9.3(react@18.3.1)': dependencies: - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/tabs@3.3.5(react@18.2.0)': + '@react-types/tabs@3.3.5(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/textfield@3.9.1(react@18.2.0)': + '@react-types/textfield@3.9.1(react@18.3.1)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 - '@react-types/tooltip@3.4.7(react@18.2.0)': + '@react-types/tooltip@3.4.7(react@18.3.1)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-types/shared': 3.22.1(react@18.3.1) + react: 18.3.1 '@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)': dependencies: @@ -10026,20 +9932,20 @@ snapshots: '@sentry/utils': 7.112.2 localforage: 1.10.0 - '@sentry/nextjs@7.112.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@sentry/nextjs@7.112.2(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) '@sentry/core': 7.112.2 '@sentry/integrations': 7.112.2 '@sentry/node': 7.112.2 - '@sentry/react': 7.112.2(react@18.2.0) + '@sentry/react': 7.112.2(react@18.3.1) '@sentry/types': 7.112.2 '@sentry/utils': 7.112.2 '@sentry/vercel-edge': 7.112.2 '@sentry/webpack-plugin': 1.21.0 chalk: 3.0.0 - next: 14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 resolve: 1.22.8 rollup: 2.78.0 stacktrace-parser: 0.1.10 @@ -10065,14 +9971,14 @@ snapshots: '@sentry/types': 7.112.2 '@sentry/utils': 7.112.2 - '@sentry/react@7.112.2(react@18.2.0)': + '@sentry/react@7.112.2(react@18.3.1)': dependencies: '@sentry/browser': 7.112.2 '@sentry/core': 7.112.2 '@sentry/types': 7.112.2 '@sentry/utils': 7.112.2 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 '@sentry/replay@7.112.2': dependencies: @@ -10115,16 +10021,16 @@ snapshots: escape-string-regexp: 2.0.0 lodash.deburr: 4.1.0 - '@stripe/react-stripe-js@2.7.0(@stripe/stripe-js@3.3.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@stripe/react-stripe-js@2.7.0(@stripe/stripe-js@3.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@stripe/stripe-js': 3.3.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@stripe/stripe-js@3.3.0': {} - '@supabase/auth-js@2.64.0': + '@supabase/auth-js@2.64.1': dependencies: '@supabase/node-fetch': 2.6.15 @@ -10154,9 +10060,9 @@ snapshots: - bufferutil - utf-8-validate - '@supabase/ssr@0.3.0(@supabase/supabase-js@2.42.6)': + '@supabase/ssr@0.3.0(@supabase/supabase-js@2.42.7)': dependencies: - '@supabase/supabase-js': 2.42.6 + '@supabase/supabase-js': 2.42.7 cookie: 0.5.0 ramda: 0.29.1 @@ -10164,9 +10070,9 @@ snapshots: dependencies: '@supabase/node-fetch': 2.6.15 - '@supabase/supabase-js@2.42.6': + '@supabase/supabase-js@2.42.7': dependencies: - '@supabase/auth-js': 2.64.0 + '@supabase/auth-js': 2.64.1 '@supabase/functions-js': 2.3.1 '@supabase/node-fetch': 2.6.15 '@supabase/postgrest-js': 1.15.2 @@ -10202,31 +10108,31 @@ snapshots: '@tanstack/query-core@5.32.0': {} - '@tanstack/react-query-next-experimental@5.32.0(@tanstack/react-query@5.32.0(react@18.2.0))(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@tanstack/react-query-next-experimental@5.32.0(@tanstack/react-query@5.32.0(react@18.3.1))(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@tanstack/react-query': 5.32.0(react@18.2.0) - next: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 + '@tanstack/react-query': 5.32.0(react@18.3.1) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@tanstack/react-query@5.32.0(react@18.2.0)': + '@tanstack/react-query@5.32.0(react@18.3.1)': dependencies: '@tanstack/query-core': 5.32.0 - react: 18.2.0 + react: 18.3.1 - '@tanstack/react-table@8.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@tanstack/react-table@8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@tanstack/table-core': 8.16.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@tanstack/table-core@8.16.0': {} - '@toeverything/y-indexeddb@0.10.0-canary.9(yjs@13.6.14)': + '@toeverything/y-indexeddb@0.10.0-canary.9(yjs@13.6.15)': dependencies: idb: 7.1.1 nanoid: 5.0.7 - y-provider: 0.10.0-canary.9(yjs@13.6.14) - yjs: 13.6.14 + y-provider: 0.10.0-canary.9(yjs@13.6.15) + yjs: 13.6.15 '@tootallnate/quickjs-emscripten@0.23.0': {} @@ -10258,9 +10164,9 @@ snapshots: '@tsconfig/node16@1.0.4': {} - '@turbo/gen@1.13.2(@types/node@20.12.7)(typescript@5.4.5)': + '@turbo/gen@1.13.3(@types/node@20.12.7)(typescript@5.4.5)': dependencies: - '@turbo/workspaces': 1.13.2 + '@turbo/workspaces': 1.13.3 chalk: 2.4.2 commander: 10.0.1 fs-extra: 10.1.0 @@ -10278,7 +10184,7 @@ snapshots: - supports-color - typescript - '@turbo/workspaces@1.13.2': + '@turbo/workspaces@1.13.3': dependencies: chalk: 2.4.2 commander: 10.0.1 @@ -10327,7 +10233,7 @@ snapshots: dependencies: '@types/ms': 0.7.34 - '@types/eslint@8.56.9': + '@types/eslint@8.56.10': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 @@ -10400,11 +10306,11 @@ snapshots: '@types/prop-types@15.7.12': {} - '@types/react-dom@18.2.25': + '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@types/react@18.2.79': + '@types/react@18.3.1': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 @@ -10429,14 +10335,14 @@ snapshots: dependencies: '@types/node': 20.12.7 - '@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.7.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/type-utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/type-utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -10449,12 +10355,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -10462,15 +10368,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@7.7.0': + '@typescript-eslint/scope-manager@7.7.1': dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/visitor-keys': 7.7.1 - '@typescript-eslint/type-utils@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/type-utils@7.7.1(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) + '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.5) @@ -10479,12 +10385,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@7.7.0': {} + '@typescript-eslint/types@7.7.1': {} - '@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.7.1(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/visitor-keys': 7.7.0 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/visitor-keys': 7.7.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -10496,23 +10402,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.7.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/utils@7.7.1(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.7.0 - '@typescript-eslint/types': 7.7.0 - '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.7.1 + '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@7.7.0': + '@typescript-eslint/visitor-keys@7.7.1': dependencies: - '@typescript-eslint/types': 7.7.0 + '@typescript-eslint/types': 7.7.1 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} @@ -10719,7 +10625,7 @@ snapshots: autoprefixer@10.4.19(postcss@8.4.38): dependencies: browserslist: 4.23.0 - caniuse-lite: 1.0.30001611 + caniuse-lite: 1.0.30001612 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -10782,8 +10688,8 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001611 - electron-to-chromium: 1.4.740 + caniuse-lite: 1.0.30001612 + electron-to-chromium: 1.4.750 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -10836,8 +10742,6 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001611: {} - caniuse-lite@1.0.30001612: {} ccount@2.0.1: {} @@ -10931,18 +10835,16 @@ snapshots: clsx@2.0.0: {} - clsx@2.1.0: {} - clsx@2.1.1: {} cmd-shim@6.0.2: {} - cmdk@1.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -11243,7 +11145,7 @@ snapshots: minimatch: 9.0.1 semver: 7.6.0 - electron-to-chromium@1.4.740: {} + electron-to-chromium@1.4.750: {} emery@1.4.3: {} @@ -11312,7 +11214,7 @@ snapshots: es-errors@1.3.0: {} - es-iterator-helpers@1.0.18: + es-iterator-helpers@1.0.19: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -11371,10 +11273,10 @@ snapshots: dependencies: eslint: 8.57.0 - eslint-config-turbo@1.13.2(eslint@8.57.0): + eslint-config-turbo@1.13.3(eslint@8.57.0): dependencies: eslint: 8.57.0 - eslint-plugin-turbo: 1.13.2(eslint@8.57.0) + eslint-plugin-turbo: 1.13.3(eslint@8.57.0) eslint-import-resolver-node@0.3.9: dependencies: @@ -11384,17 +11286,17 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -11404,7 +11306,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.7.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -11415,13 +11317,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.7.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): + eslint-plugin-react-hooks@4.6.2(eslint@8.57.0): dependencies: eslint: 8.57.0 @@ -11433,7 +11335,7 @@ snapshots: array.prototype.toreversed: 1.1.2 array.prototype.tosorted: 1.1.3 doctrine: 2.1.0 - es-iterator-helpers: 1.0.18 + es-iterator-helpers: 1.0.19 eslint: 8.57.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 @@ -11447,7 +11349,7 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.11 - eslint-plugin-turbo@1.13.2(eslint@8.57.0): + eslint-plugin-turbo@1.13.3(eslint@8.57.0): dependencies: dotenv: 16.0.3 eslint: 8.57.0 @@ -11496,7 +11398,7 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -11970,10 +11872,10 @@ snapshots: ini@1.3.8: {} - input-otp@1.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + input-otp@1.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) inquirer@7.3.3: dependencies: @@ -12330,7 +12232,7 @@ snapshots: lowercase-keys@3.0.0: {} - lru-cache@10.2.0: {} + lru-cache@10.2.1: {} lru-cache@4.1.5: dependencies: @@ -12347,9 +12249,9 @@ snapshots: lru-cache@7.18.3: {} - lucide-react@0.373.0(react@18.2.0): + lucide-react@0.376.0(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 magic-string@0.27.0: dependencies: @@ -12866,20 +12768,20 @@ snapshots: netmask@2.0.2: {} - next-sitemap@4.2.3(next@14.3.0-canary.7(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)): + next-sitemap@4.2.3(next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): dependencies: '@corex/deepmerge': 4.0.43 '@next/env': 13.5.6 fast-glob: 3.3.2 minimist: 1.2.8 - next: 14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next: 14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - next-themes@0.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + next-themes@0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - next@14.2.3(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + next@14.2.3(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.2.3 '@swc/helpers': 0.5.5 @@ -12887,9 +12789,9 @@ snapshots: caniuse-lite: 1.0.30001612 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.3.1) optionalDependencies: '@next/swc-darwin-arm64': 14.2.3 '@next/swc-darwin-x64': 14.2.3 @@ -12906,33 +12808,6 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.3.0-canary.7(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(@playwright/test@1.43.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@next/env': 14.3.0-canary.7 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001612 - graceful-fs: 4.2.11 - postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0) - optionalDependencies: - '@next/swc-darwin-arm64': 14.3.0-canary.7 - '@next/swc-darwin-x64': 14.3.0-canary.7 - '@next/swc-linux-arm64-gnu': 14.3.0-canary.7 - '@next/swc-linux-arm64-musl': 14.3.0-canary.7 - '@next/swc-linux-x64-gnu': 14.3.0-canary.7 - '@next/swc-linux-x64-musl': 14.3.0-canary.7 - '@next/swc-win32-arm64-msvc': 14.3.0-canary.7 - '@next/swc-win32-ia32-msvc': 14.3.0-canary.7 - '@next/swc-win32-x64-msvc': 14.3.0-canary.7 - '@opentelemetry/api': 1.8.0 - '@playwright/test': 1.43.1 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - no-case@2.3.2: dependencies: lower-case: 1.1.4 @@ -13050,14 +12925,14 @@ snapshots: opener@1.5.2: {} - optionator@0.9.3: + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 ora@4.1.1: dependencies: @@ -13191,7 +13066,7 @@ snapshots: path-scurry@1.10.2: dependencies: - lru-cache: 10.2.0 + lru-cache: 10.2.1 minipass: 7.0.4 path-type@4.0.0: {} @@ -13237,7 +13112,7 @@ snapshots: optionalDependencies: fsevents: 2.3.2 - pnpm@8.15.7: {} + pnpm@9.0.6: {} possible-typed-array-names@1.0.0: {} @@ -13411,90 +13286,100 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-day-picker@8.10.1(date-fns@3.6.0)(react@18.2.0): + react-day-picker@8.10.1(date-fns@3.6.0)(react@18.3.1): dependencies: date-fns: 3.6.0 - react: 18.2.0 + react: 18.3.1 react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 react: 18.2.0 - scheduler: 0.23.0 + scheduler: 0.23.2 - react-error-boundary@4.0.13(react@18.2.0): + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react-error-boundary@4.0.13(react@18.3.1): dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 + react: 18.3.1 - react-hook-form@7.51.3(react@18.2.0): + react-hook-form@7.51.3(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - react-i18next@14.1.1(i18next@23.11.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-i18next@14.1.1(i18next@23.11.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.4 html-parse-stringify: 3.0.1 i18next: 23.11.2 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - react-dom: 18.2.0(react@18.2.0) + react-dom: 18.3.1(react@18.3.1) react-is@16.13.1: {} - react-remove-scroll-bar@2.3.6(@types/react@18.2.79)(react@18.2.0): + react-remove-scroll-bar@2.3.6(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.2.0): + react-remove-scroll@2.5.5(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.6(@types/react@18.2.79)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.1)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) tslib: 2.6.2 - use-callback-ref: 1.3.2(@types/react@18.2.79)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0) + use-callback-ref: 1.3.2(@types/react@18.3.1)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - react-smooth@4.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.2.0): + react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - react-top-loading-bar@2.3.1(react@18.2.0): + react-top-loading-bar@2.3.1(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.4 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react@18.2.0: dependencies: loose-envify: 1.4.0 + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -13532,15 +13417,15 @@ snapshots: dependencies: decimal.js-light: 2.5.1 - recharts@2.12.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + recharts@2.12.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - clsx: 2.1.0 + clsx: 2.1.1 eventemitter3: 4.0.7 lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 @@ -13667,7 +13552,7 @@ snapshots: safer-buffer@2.1.2: {} - scheduler@0.23.0: + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 @@ -13755,7 +13640,7 @@ snapshots: is-plain-object: 5.0.0 slate: 0.91.4 - slate-react@0.91.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.91.4): + slate-react@0.91.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.91.4): dependencies: '@juggle/resize-observer': 3.4.0 '@types/is-hotkey': 0.1.10 @@ -13764,8 +13649,8 @@ snapshots: is-hotkey: 0.1.8 is-plain-object: 5.0.0 lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 2.2.31 slate: 0.91.4 tiny-invariant: 1.0.6 @@ -13799,10 +13684,10 @@ snapshots: dependencies: atomic-sleep: 1.0.0 - sonner@1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + sonner@1.4.41(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) source-map-js@1.2.0: {} @@ -13898,15 +13783,15 @@ snapshots: strip-json-comments@3.1.1: {} - stripe@15.3.0: + stripe@15.4.0: dependencies: '@types/node': 20.12.7 qs: 6.12.1 - styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.2.0): + styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.3.1): dependencies: client-only: 0.0.1 - react: 18.2.0 + react: 18.3.1 optionalDependencies: '@babel/core': 7.24.4 @@ -13922,7 +13807,7 @@ snapshots: pirates: 4.0.6 ts-interface-checker: 0.1.13 - supabase@1.163.2: + supabase@1.163.6: dependencies: bin-links: 4.0.3 https-proxy-agent: 7.0.4 @@ -13985,7 +13870,7 @@ snapshots: tar@7.0.1: dependencies: - '@isaacs/fs-minipass': 4.0.0 + '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 5.0.0 minizlib: 3.0.1 @@ -14077,32 +13962,32 @@ snapshots: tslib@2.6.2: {} - turbo-darwin-64@1.13.2: + turbo-darwin-64@1.13.3: optional: true - turbo-darwin-arm64@1.13.2: + turbo-darwin-arm64@1.13.3: optional: true - turbo-linux-64@1.13.2: + turbo-linux-64@1.13.3: optional: true - turbo-linux-arm64@1.13.2: + turbo-linux-arm64@1.13.3: optional: true - turbo-windows-64@1.13.2: + turbo-windows-64@1.13.3: optional: true - turbo-windows-arm64@1.13.2: + turbo-windows-arm64@1.13.3: optional: true - turbo@1.13.2: + turbo@1.13.3: optionalDependencies: - turbo-darwin-64: 1.13.2 - turbo-darwin-arm64: 1.13.2 - turbo-linux-64: 1.13.2 - turbo-linux-arm64: 1.13.2 - turbo-windows-64: 1.13.2 - turbo-windows-arm64: 1.13.2 + turbo-darwin-64: 1.13.3 + turbo-darwin-arm64: 1.13.3 + turbo-linux-64: 1.13.3 + turbo-linux-arm64: 1.13.3 + turbo-windows-64: 1.13.3 + turbo-windows-arm64: 1.13.3 type-check@0.4.0: dependencies: @@ -14160,7 +14045,7 @@ snapshots: undici-types@5.26.5: {} - undici@6.13.0: {} + undici@6.14.1: {} unist-util-is@6.0.0: dependencies: @@ -14215,32 +14100,32 @@ snapshots: dependencies: punycode: 2.3.1 - urql@4.0.7(graphql@16.8.1)(react@18.2.0): + urql@4.0.7(graphql@16.8.1)(react@18.3.1): dependencies: '@urql/core': 5.0.2(graphql@16.8.1) - react: 18.2.0 + react: 18.3.1 wonka: 6.3.4 transitivePeerDependencies: - graphql - use-callback-ref@1.3.2(@types/react@18.2.79)(react@18.2.0): + use-callback-ref@1.3.2(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - use-sidecar@1.1.2(@types/react@18.2.79)(react@18.2.0): + use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1): dependencies: detect-node-es: 1.1.0 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - use-sync-external-store@1.2.0(react@18.2.0): + use-sync-external-store@1.2.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 util-deprecate@1.0.2: {} @@ -14366,6 +14251,8 @@ snapshots: wonka@6.3.4: {} + word-wrap@1.2.5: {} + wordwrap@1.0.0: {} wp-types@3.65.0: @@ -14401,23 +14288,23 @@ snapshots: ws@8.16.0: {} - y-prosemirror@1.2.3(prosemirror-model@1.20.0)(prosemirror-state@1.4.3)(prosemirror-view@1.33.5)(y-protocols@1.0.6(yjs@13.6.14))(yjs@13.6.14): + y-prosemirror@1.2.3(prosemirror-model@1.20.0)(prosemirror-state@1.4.3)(prosemirror-view@1.33.5)(y-protocols@1.0.6(yjs@13.6.15))(yjs@13.6.15): dependencies: lib0: 0.2.93 prosemirror-model: 1.20.0 prosemirror-state: 1.4.3 prosemirror-view: 1.33.5 - y-protocols: 1.0.6(yjs@13.6.14) - yjs: 13.6.14 + y-protocols: 1.0.6(yjs@13.6.15) + yjs: 13.6.15 - y-protocols@1.0.6(yjs@13.6.14): + y-protocols@1.0.6(yjs@13.6.15): dependencies: lib0: 0.2.93 - yjs: 13.6.14 + yjs: 13.6.15 - y-provider@0.10.0-canary.9(yjs@13.6.14): + y-provider@0.10.0-canary.9(yjs@13.6.15): dependencies: - yjs: 13.6.14 + yjs: 13.6.15 y18n@5.0.8: {} @@ -14447,7 +14334,7 @@ snapshots: yarn@1.22.22: {} - yjs@13.6.14: + yjs@13.6.15: dependencies: lib0: 0.2.93 diff --git a/tooling/eslint/package.json b/tooling/eslint/package.json index 7cada118e..a74083a69 100644 --- a/tooling/eslint/package.json +++ b/tooling/eslint/package.json @@ -16,14 +16,14 @@ "@next/eslint-plugin-next": "^14.2.3", "@tanstack/react-table": "^8.16.0", "@trivago/prettier-plugin-sort-imports": "^4.3.0", - "@types/eslint": "^8.56.9", - "@typescript-eslint/eslint-plugin": "^7.7.0", - "@typescript-eslint/parser": "^7.7.0", + "@types/eslint": "^8.56.10", + "@typescript-eslint/eslint-plugin": "^7.7.1", + "@typescript-eslint/parser": "^7.7.1", "eslint-config-prettier": "^9.1.0", - "eslint-config-turbo": "^1.13.2", + "eslint-config-turbo": "^1.13.3", "eslint-plugin-import": "^2.29.1", "eslint-plugin-react": "^7.34.1", - "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-hooks": "^4.6.2", "next": "14.2.3", "tailwind-merge": "^2.3.0", "zod": "^3.23.4"