setIsConfirmOpen(false)}
onConfirm={async () => {
- await cancelTtoBooking(order.bookingCode!, order.clinicId!);
+ cancelTtoBooking(
+ order.bookingCode!,
+ order.clinicId!,
+ order.medusaLineItemId!,
+ ).then(() => {
+ redirect(pathsConfig.app.myOrders);
+ });
}}
titleKey="orders:confirmBookingCancel.title"
descriptionKey="orders:confirmBookingCancel.description"
diff --git a/app/home/(user)/_lib/server/actions.ts b/app/home/(user)/_lib/server/actions.ts
index aae04d5..53e5279 100644
--- a/app/home/(user)/_lib/server/actions.ts
+++ b/app/home/(user)/_lib/server/actions.ts
@@ -5,7 +5,10 @@ import { StoreProductVariant } from '@medusajs/types';
import logRequestResult from '~/lib/services/audit.service';
import { handleAddToCart } from '~/lib/services/medusaCart.service';
-import { createInitialReservation } from '~/lib/services/reservation.service';
+import {
+ cancelReservation,
+ createInitialReservation,
+} from '~/lib/services/reservation.service';
import { RequestStatus } from '~/lib/types/audit';
import { ConnectedOnlineMethodName } from '~/lib/types/connected-online';
import { ExternalApi } from '~/lib/types/external';
@@ -46,11 +49,16 @@ export async function createInitialReservationAction(
}
}
-export async function cancelTtoBooking(bookingCode: string, clinicId: number) {
+export async function cancelTtoBooking(
+ bookingCode: string,
+ clinicId: number,
+ medusaLineItemId: string,
+) {
try {
- const response = await fetch(
+ await fetch(
`${process.env.CONNECTED_ONLINE_URL}/${ConnectedOnlineMethodName.ConfirmedCancel}`,
{
+ method: 'POST',
headers: {
'Content-Type': 'application/json; charset=utf-8',
},
@@ -60,7 +68,14 @@ export async function cancelTtoBooking(bookingCode: string, clinicId: number) {
},
);
- return null;
+ await cancelReservation(medusaLineItemId);
+
+ await logRequestResult(
+ ExternalApi.ConnectedOnline,
+ ConnectedOnlineMethodName.ConfirmedCancel,
+ RequestStatus.Success,
+ medusaLineItemId,
+ );
} catch (error) {
await logRequestResult(
ExternalApi.ConnectedOnline,
diff --git a/app/home/(user)/_lib/server/cart-actions.ts b/app/home/(user)/_lib/server/cart-actions.ts
index 77640b3..90f896e 100644
--- a/app/home/(user)/_lib/server/cart-actions.ts
+++ b/app/home/(user)/_lib/server/cart-actions.ts
@@ -9,8 +9,13 @@ import type { StoreCart, StoreOrder } from '@medusajs/types';
import jwt from 'jsonwebtoken';
import { z } from 'zod';
+import { getLogger } from '@kit/shared/logger';
+
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
-import { bookAppointment } from '~/lib/services/connected-online.service';
+import {
+ bookAppointment,
+ getConfirmedService,
+} from '~/lib/services/connected-online.service';
import { sendOrderToMedipost } from '~/lib/services/medipost/medipostPrivateMessage.service';
import { handleNavigateToPayment } from '~/lib/services/medusaCart.service';
import { getOrderedAnalysisIds } from '~/lib/services/medusaOrder.service';
@@ -141,6 +146,7 @@ export const initiatePayment = async ({
};
export async function handlePlaceOrder({ cart }: { cart: StoreCart }) {
+ const logger = await getLogger();
const { account } = await loadCurrentUserAccount();
if (!account) {
throw new Error('Account not found in context');
@@ -160,7 +166,7 @@ export async function handlePlaceOrder({ cart }: { cart: StoreCart }) {
const existingAnalysisOrder = await getAnalysisOrder({
medusaOrderId: medusaOrder.id,
});
- console.info(
+ logger.info(
`Analysis order already exists for medusaOrderId=${medusaOrder.id}, orderId=${existingAnalysisOrder.id}`,
);
return { success: true, orderId: existingAnalysisOrder.id };
@@ -185,7 +191,8 @@ export async function handlePlaceOrder({ cart }: { cart: StoreCart }) {
let bookServiceResults: {
success: boolean;
reason?: FailureReason;
- serviceId?: number;
+ bookingCode: string | null;
+ clinicKey: string | null;
}[] = [];
if (orderedTtoServices?.length) {
const bookingPromises = orderedTtoServices.map((service) =>
@@ -199,7 +206,6 @@ export async function handlePlaceOrder({ cart }: { cart: StoreCart }) {
);
bookServiceResults = await Promise.all(bookingPromises);
}
- // TODO: SEND EMAIL
if (email) {
if (analysisPackageOrder) {
@@ -209,22 +215,35 @@ export async function handlePlaceOrder({ cart }: { cart: StoreCart }) {
analysisPackageOrder,
});
} else {
- console.info(`Order has no analysis package, skipping email.`);
+ logger.info(`Order has no analysis package, skipping email.`);
}
if (analysisItemsOrder) {
// @TODO send email for separate analyses
- console.warn(
+ logger.warn(
`Order has analysis items, but no email template exists yet`,
);
} else {
- console.info(`Order has no analysis items, skipping email.`);
+ logger.info(`Order has no analysis items, skipping email.`);
}
} else {
- console.error('Missing email to send order result email', orderResult);
+ logger.error('Missing email to send order result email', orderResult);
}
- if (env().isEnabledDispatchOnMontonioCallback) {
+ if (bookServiceResults?.length) {
+ bookServiceResults.forEach(async ({ bookingCode, clinicKey }) => {
+ if (!bookingCode || !clinicKey) {
+ logger.info('A booking is missing either bookingCode or clinicKey', {
+ bookingCode,
+ clinicKey,
+ });
+ return;
+ }
+ await getConfirmedService(bookingCode, clinicKey);
+ });
+ }
+
+ if (env().isEnabledDispatchOnMontonioCallback && orderContainsSynlabItems) {
await sendOrderToMedipost({ medusaOrderId, orderedAnalysisElements });
}
diff --git a/app/home/[account]/members/_lib/server/members-page.loader.ts b/app/home/[account]/members/_lib/server/members-page.loader.ts
index 0f0c50e..9d4d3ac 100644
--- a/app/home/[account]/members/_lib/server/members-page.loader.ts
+++ b/app/home/[account]/members/_lib/server/members-page.loader.ts
@@ -65,18 +65,17 @@ async function loadAccountMembers(
const members = data ?? [];
- return members
- .sort((prev, next) => {
- if (prev.primary_owner_user_id === prev.user_id) {
- return -1;
- }
+ return members.sort((prev, next) => {
+ if (prev.primary_owner_user_id === prev.user_id) {
+ return -1;
+ }
- if (prev.role_hierarchy_level < next.role_hierarchy_level) {
- return -1;
- }
+ if (prev.role_hierarchy_level < next.role_hierarchy_level) {
+ return -1;
+ }
- return 1;
- });
+ return 1;
+ });
}
export async function loadAccountMembersBenefitsUsage(
diff --git a/lib/services/connected-online.service.ts b/lib/services/connected-online.service.ts
index ff4e241..ef53232 100644
--- a/lib/services/connected-online.service.ts
+++ b/lib/services/connected-online.service.ts
@@ -99,7 +99,12 @@ export async function bookAppointment(
syncUserID: number,
startTime: string,
comments = '',
-) {
+): Promise<{
+ success: boolean;
+ reason?: FailureReason;
+ bookingCode: string | null;
+ clinicKey: string | null;
+}> {
const logger = await getLogger();
const supabase = getSupabaseServerClient();
@@ -148,7 +153,7 @@ export async function bookAppointment(
supabase
.schema('medreport')
.from('connected_online_reservation')
- .select('id')
+ .select('id,location_sync_id')
.eq('clinic_id', clinicId)
.eq('service_id', serviceId)
.eq('start_time', formattedStartTime)
@@ -202,8 +207,8 @@ export async function bookAppointment(
},
param: JSON.stringify({
ClinicID: clinic.id,
- ServiceID: service.sync_id,
- ClinicServiceID: service.id,
+ ServiceID: service.id,
+ ClinicServiceID: service.sync_id,
UserID: appointmentUserId,
SyncUserID: syncUserID,
StartTime: startTime,
@@ -216,6 +221,7 @@ export async function bookAppointment(
AddToBasket: false,
Key: dbClinic.key,
Lang: 'et',
+ Location: dbReservation.location_sync_id,
}),
},
);
@@ -275,16 +281,34 @@ export async function bookAppointment(
'Booked time, updated reservation with id ' + updatedReservation?.id,
);
- await logRequestResult(
- ExternalApi.ConnectedOnline,
- ConnectedOnlineMethodName.BookTime,
- RequestStatus.Success,
- JSON.stringify(connectedOnlineBookingResponseData),
- startTime.toString(),
- service.id,
- clinicId,
- );
- return { success: true };
+ if (responseParts[1]) {
+ await logRequestResult(
+ ExternalApi.ConnectedOnline,
+ ConnectedOnlineMethodName.BookTime,
+ RequestStatus.Success,
+ JSON.stringify(connectedOnlineBookingResponseData),
+ startTime.toString(),
+ service.id,
+ clinicId,
+ );
+ return {
+ success: true,
+ bookingCode: responseParts[1],
+ clinicKey: dbClinic.key,
+ };
+ } else {
+ logger.error(`Missing booking code: ${responseParts}`);
+ await logRequestResult(
+ ExternalApi.ConnectedOnline,
+ ConnectedOnlineMethodName.BookTime,
+ RequestStatus.Fail,
+ JSON.stringify(error),
+ startTime.toString(),
+ serviceId,
+ clinicId,
+ );
+ return { success: false, bookingCode: null, clinicKey: null };
+ }
} catch (error) {
logger.error(`Failed to book time, error: ${JSON.stringify(error)}`);
await logRequestResult(
@@ -296,41 +320,33 @@ export async function bookAppointment(
serviceId,
clinicId,
);
- return { success: false, reason };
+ return { success: false, reason, bookingCode: null, clinicKey: null };
}
}
-export async function getConfirmedService(reservationCode: string) {
+export async function getConfirmedService(
+ reservationCode: string,
+ clinicKey: string,
+) {
try {
- const response = await axios.post(
- `${process.env.CONNECTED_ONLINE_URL!}/${ConnectedOnlineMethodName.ConfirmedLoad}`,
- {
- headers: {
- 'Content-Type': 'application/json; charset=utf-8',
- },
- param: JSON.stringify({ Value: `${reservationCode}|7T624nlu|et` }),
+ const url = new URL(process.env.CONNECTED_ONLINE_CONFIRMED_URL!);
+ url.searchParams.set('code1', reservationCode);
+ url.searchParams.set('key', clinicKey);
+ url.searchParams.set('lang', 'et');
+ await fetch(url, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json; charset=utf-8',
},
- );
-
- const responseData: ConfirmedLoadResponse = JSON.parse(response.data.d);
-
- if (responseData?.ErrorCode !== 0) {
- await logRequestResult(
- ExternalApi.ConnectedOnline,
- ConnectedOnlineMethodName.ConfirmedLoad,
- RequestStatus.Fail,
- JSON.stringify(responseData),
- );
- return null;
- }
+ });
await logRequestResult(
ExternalApi.ConnectedOnline,
ConnectedOnlineMethodName.ConfirmedLoad,
RequestStatus.Success,
- JSON.stringify(responseData),
+ 'ok',
);
- return responseData.Data;
+ return;
} catch (error) {
await logRequestResult(
ExternalApi.ConnectedOnline,
diff --git a/lib/services/medipost/medipostPrivateMessage.service.ts b/lib/services/medipost/medipostPrivateMessage.service.ts
index 12afeee..1fb1d58 100644
--- a/lib/services/medipost/medipostPrivateMessage.service.ts
+++ b/lib/services/medipost/medipostPrivateMessage.service.ts
@@ -438,9 +438,6 @@ export async function readPrivateMessageResponse({
medusaOrderId,
orderStatus: 'PARTIAL_ANALYSIS_RESPONSE',
});
- if (IS_ENABLED_DELETE_PRIVATE_MESSAGE) {
- await deletePrivateMessage(privateMessageId);
- }
hasAnalysisResponse = true;
hasPartialAnalysisResponse = true;
} else if (status.isCompleted) {
diff --git a/lib/types/order.ts b/lib/types/order.ts
index 9c6b891..34587d2 100644
--- a/lib/types/order.ts
+++ b/lib/types/order.ts
@@ -12,4 +12,5 @@ export type Order = {
location?: string;
bookingCode?: string | null;
clinicId?: number;
+ medusaLineItemId?: string | null;
};
diff --git a/packages/features/medusa-storefront/package.json b/packages/features/medusa-storefront/package.json
index 7335a09..6094749 100644
--- a/packages/features/medusa-storefront/package.json
+++ b/packages/features/medusa-storefront/package.json
@@ -16,8 +16,6 @@
},
"dependencies": {
"@headlessui/react": "^2.2.0",
- "@medusajs/js-sdk": "latest",
- "@medusajs/ui": "latest",
"@radix-ui/react-accordion": "^1.2.1",
"@stripe/react-stripe-js": "^1.7.2",
"@stripe/stripe-js": "^1.29.0",
@@ -34,8 +32,6 @@
},
"devDependencies": {
"@babel/core": "^7.17.5",
- "@medusajs/types": "latest",
- "@medusajs/ui-preset": "latest",
"@types/lodash": "^4.14.195",
"@types/node": "17.0.21",
"@types/pg": "^8.11.0",
diff --git a/packages/features/medusa-storefront/src/lib/data/cart.ts b/packages/features/medusa-storefront/src/lib/data/cart.ts
index ddb9350..a54fe1e 100644
--- a/packages/features/medusa-storefront/src/lib/data/cart.ts
+++ b/packages/features/medusa-storefront/src/lib/data/cart.ts
@@ -5,7 +5,7 @@ import { redirect } from 'next/navigation';
import { sdk } from '@lib/config';
import medusaError from '@lib/util/medusa-error';
-import { HttpTypes, StoreCart } from '@medusajs/types';
+import type { HttpTypes, StoreCart } from '@medusajs/types';
import {
getAuthHeaders,
diff --git a/packages/features/team-accounts/src/components/members/account-members-table.tsx b/packages/features/team-accounts/src/components/members/account-members-table.tsx
index d345ff7..05da3c8 100644
--- a/packages/features/team-accounts/src/components/members/account-members-table.tsx
+++ b/packages/features/team-accounts/src/components/members/account-members-table.tsx
@@ -84,22 +84,22 @@ export function AccountMembersTable({
});
const searchString = search.toLowerCase();
- const filteredMembers = searchString.length > 0
- ? members
- .filter((member) => {
- const displayName = (
- member.name ??
- member.email.split('@')[0] ??
- ''
- ).toLowerCase();
+ const filteredMembers =
+ searchString.length > 0
+ ? members.filter((member) => {
+ const displayName = (
+ member.name ??
+ member.email.split('@')[0] ??
+ ''
+ ).toLowerCase();
- return (
- displayName.includes(searchString) ||
- member.role.toLowerCase().includes(searchString) ||
- (member.personal_code || '').includes(searchString)
- );
- })
- : members;
+ return (
+ displayName.includes(searchString) ||
+ member.role.toLowerCase().includes(searchString) ||
+ (member.personal_code || '').includes(searchString)
+ );
+ })
+ : members;
return (
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3506ae7..123e42e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -471,10 +471,10 @@ importers:
dependencies:
'@keystatic/core':
specifier: 0.5.47
- version: 0.5.47(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.5.47(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@keystatic/next':
specifier: ^5.0.4
- version: 5.0.4(@keystatic/core@0.5.47(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 5.0.4(@keystatic/core@0.5.47(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@markdoc/markdoc':
specifier: ^0.5.1
version: 0.5.4(@types/react@19.1.4)(react@19.1.0)
@@ -572,7 +572,7 @@ importers:
version: link:../../tooling/typescript
'@react-email/preview-server':
specifier: 4.2.12
- version: 4.2.12(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(postcss@8.5.6)(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2))
+ version: 4.2.12(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2))
packages/features/accounts:
dependencies:
@@ -802,12 +802,6 @@ importers:
'@headlessui/react':
specifier: ^2.2.0
version: 2.2.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@medusajs/js-sdk':
- specifier: latest
- version: 2.10.3(awilix@8.0.1)
- '@medusajs/ui':
- specifier: latest
- version: 4.0.23(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(typescript@5.9.2)
'@radix-ui/react-accordion':
specifier: ^1.2.1
version: 1.2.12(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
@@ -851,12 +845,6 @@ importers:
'@babel/core':
specifier: ^7.17.5
version: 7.28.3
- '@medusajs/types':
- specifier: latest
- version: 2.10.3(awilix@8.0.1)
- '@medusajs/ui-preset':
- specifier: latest
- version: 2.10.3(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2)))
'@types/lodash':
specifier: ^4.14.195
version: 4.17.20
@@ -1173,7 +1161,7 @@ importers:
dependencies:
'@sentry/nextjs':
specifier: ^9.19.0
- version: 9.46.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.101.3)
+ version: 9.46.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.101.3)
import-in-the-middle:
specifier: 1.13.2
version: 1.13.2
@@ -18107,24 +18095,11 @@ snapshots:
'@discoveryjs/json-ext@0.5.7': {}
- '@dnd-kit/accessibility@3.1.1(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
-
'@dnd-kit/accessibility@3.1.1(react@19.1.0)':
dependencies:
react: 19.1.0
tslib: 2.8.1
- '@dnd-kit/core@6.3.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@dnd-kit/accessibility': 3.1.1(react@19.0.0-rc-66855b96-20241106)
- '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- tslib: 2.8.1
-
'@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@dnd-kit/accessibility': 3.1.1(react@19.1.0)
@@ -18133,13 +18108,6 @@ snapshots:
react-dom: 19.1.0(react@19.1.0)
tslib: 2.8.1
- '@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
-
'@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
dependencies:
'@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -18147,11 +18115,6 @@ snapshots:
react: 19.1.0
tslib: 2.8.1
- '@dnd-kit/utilities@3.2.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
-
'@dnd-kit/utilities@3.2.2(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -19232,7 +19195,7 @@ snapshots:
'@juggle/resize-observer@3.4.0': {}
- '@keystar/ui@0.7.19(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@keystar/ui@0.7.19(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@babel/runtime': 7.27.6
'@emotion/css': 11.13.5
@@ -19325,18 +19288,18 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- next: 15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
transitivePeerDependencies:
- supports-color
- '@keystatic/core@0.5.47(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@keystatic/core@0.5.47(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@babel/runtime': 7.27.6
'@braintree/sanitize-url': 6.0.4
'@emotion/weak-memoize': 0.3.1
'@floating-ui/react': 0.24.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@internationalized/string': 3.2.7
- '@keystar/ui': 0.7.19(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@keystar/ui': 0.7.19(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@markdoc/markdoc': 0.4.0(@types/react@19.1.4)(react@19.1.0)
'@react-aria/focus': 3.20.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -19407,13 +19370,13 @@ snapshots:
- next
- supports-color
- '@keystatic/next@5.0.4(@keystatic/core@0.5.47(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@keystatic/next@5.0.4(@keystatic/core@0.5.47(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@babel/runtime': 7.27.6
- '@keystatic/core': 0.5.47(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@keystatic/core': 0.5.47(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@types/react': 19.1.4
chokidar: 3.6.0
- next: 15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
server-only: 0.0.1
@@ -19465,10 +19428,6 @@ snapshots:
dependencies:
react: 19.1.0
- '@medusajs/icons@2.10.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
-
'@medusajs/icons@2.10.3(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -19488,45 +19447,12 @@ snapshots:
awilix: 8.0.1
bignumber.js: 9.3.0
- '@medusajs/ui-preset@2.10.3(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2)))':
- dependencies:
- '@tailwindcss/forms': 0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2)))
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2))
- tailwindcss-animate: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2)))
-
'@medusajs/ui-preset@2.10.3(tailwindcss@4.1.7)':
dependencies:
'@tailwindcss/forms': 0.5.10(tailwindcss@4.1.7)
tailwindcss: 4.1.7
tailwindcss-animate: 1.0.7(tailwindcss@4.1.7)
- '@medusajs/ui@4.0.23(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(typescript@5.9.2)':
- dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.0.0-rc-66855b96-20241106)
- '@dnd-kit/utilities': 3.2.2(react@19.0.0-rc-66855b96-20241106)
- '@medusajs/icons': 2.10.3(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dialog': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@tanstack/react-table': 8.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- clsx: 1.2.1
- copy-to-clipboard: 3.3.3
- cva: 1.0.0-beta.1(typescript@5.9.2)
- prism-react-renderer: 2.4.1(react@19.0.0-rc-66855b96-20241106)
- prismjs: 1.30.0
- radix-ui: 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-aria: 3.41.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react-currency-input-field: 3.10.0(react@19.0.0-rc-66855b96-20241106)
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-stately: 3.39.0(react@19.0.0-rc-66855b96-20241106)
- sonner: 1.7.4(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- tailwind-merge: 2.6.0
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- - typescript
-
'@medusajs/ui@4.0.23(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.9.2)':
dependencies:
'@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -20133,15 +20059,6 @@ snapshots:
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-accessible-icon@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-accessible-icon@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -20185,23 +20102,6 @@ snapshots:
'@types/react': 18.3.24
'@types/react-dom': 18.3.7(@types/react@18.3.24)
- '@radix-ui/react-accordion@1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-accordion@1.2.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20233,20 +20133,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-alert-dialog@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dialog': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-alert-dialog@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20261,15 +20147,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-arrow@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -20306,15 +20183,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-aspect-ratio@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-aspect-ratio@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -20337,18 +20205,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-avatar@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-avatar@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-context': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -20361,22 +20217,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-checkbox@1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20441,22 +20281,6 @@ snapshots:
'@types/react': 18.3.24
'@types/react-dom': 18.3.7(@types/react@18.3.24)
- '@radix-ui/react-collapsible@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20489,18 +20313,6 @@ snapshots:
'@types/react': 19.0.10
'@types/react-dom': 19.0.4(@types/react@19.0.10)
- '@radix-ui/react-collection@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-collection@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -20561,12 +20373,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-compose-refs@1.1.1(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -20591,20 +20397,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-context-menu@2.2.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-context-menu@2.2.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20619,12 +20411,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-context@1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-context@1.1.1(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -20671,28 +20457,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-dialog@1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- aria-hidden: 1.2.6
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-dialog@1.1.4(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20715,28 +20479,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-dialog@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- aria-hidden: 1.2.6
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-dialog@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20759,12 +20501,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-direction@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -20802,19 +20538,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20828,19 +20551,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-dismissable-layer@1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-dismissable-layer@1.1.4(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20910,21 +20620,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-dropdown-menu@2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-dropdown-menu@2.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -20940,12 +20635,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-focus-guards@1.1.1(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -20964,17 +20653,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -21008,20 +20686,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-form@0.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-label': 2.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-form@0.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21036,23 +20700,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-hover-card@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-hover-card@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21074,13 +20721,6 @@ snapshots:
dependencies:
react: 19.1.0
- '@radix-ui/react-id@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-id@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.4)(react@19.1.0)
@@ -21109,15 +20749,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-label@2.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-label@2.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -21188,32 +20819,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-menu@2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- aria-hidden: 1.2.6
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-menu@2.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21240,24 +20845,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-menubar@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-menubar@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21298,28 +20885,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-navigation-menu@1.2.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-navigation-menu@1.2.4(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21388,29 +20953,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-popover@1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- aria-hidden: 1.2.6
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-popover@1.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21434,24 +20976,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@floating-ui/react-dom': 2.1.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-arrow': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-popper@1.2.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@floating-ui/react-dom': 2.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -21524,16 +21048,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-portal@1.1.3(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -21574,16 +21088,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-presence@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -21634,15 +21138,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-primitive@2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-slot': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -21688,16 +21183,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-progress@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-progress@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-context': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -21718,24 +21203,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-radio-group@1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21772,23 +21239,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -21857,23 +21307,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-scroll-area@1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-scroll-area@1.2.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/number': 1.1.0
@@ -21891,35 +21324,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-select@2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- aria-hidden: 1.2.6
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- react-remove-scroll: 2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-select@2.1.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/number': 1.1.0
@@ -21978,15 +21382,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-separator@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-separator@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22005,25 +21400,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-slider@1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-slider@1.2.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/number': 1.1.0
@@ -22043,13 +21419,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-slot@1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-slot@1.1.1(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.4)(react@19.1.0)
@@ -22085,21 +21454,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-switch@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-switch@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22146,22 +21500,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-tabs@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-tabs@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22214,26 +21552,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-toast@1.2.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-toast@1.2.5(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22254,21 +21572,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-toggle-group@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toggle': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-toggle-group@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22299,17 +21602,6 @@ snapshots:
'@types/react': 19.0.10
'@types/react-dom': 19.0.4(@types/react@19.0.10)
- '@radix-ui/react-toggle@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-toggle@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22332,21 +21624,6 @@ snapshots:
'@types/react': 19.0.10
'@types/react-dom': 19.0.4(@types/react@19.0.10)
- '@radix-ui/react-toolbar@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-separator': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toggle-group': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-toolbar@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22362,26 +21639,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-tooltip@1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-tooltip@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -22442,12 +21699,6 @@ snapshots:
'@types/react': 19.1.4
'@types/react-dom': 19.1.5(@types/react@19.1.4)
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -22466,13 +21717,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.4)(react@19.1.0)
@@ -22525,13 +21769,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.4)(react@19.1.0)
@@ -22560,12 +21797,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -22590,12 +21821,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-previous@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -22608,13 +21833,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/rect': 1.1.0
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-rect@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/rect': 1.1.0
@@ -22636,13 +21854,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- optionalDependencies:
- '@types/react': 18.3.24
-
'@radix-ui/react-use-size@1.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.4)(react@19.1.0)
@@ -22664,15 +21875,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
'@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22737,17 +21939,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/breadcrumbs@3.5.26(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/link': 3.8.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/breadcrumbs': 3.7.14(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/breadcrumbs@3.5.26(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22771,18 +21962,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/button@3.13.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/toolbar': 3.0.0-beta.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toggle': 3.8.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/button@3.13.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22810,21 +21989,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/calendar@3.8.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/calendar': 3.8.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/calendar': 3.7.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/calendar@3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -22856,22 +22020,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/checkbox@3.15.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/toggle': 3.11.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/checkbox': 3.6.15(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toggle': 3.8.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/checkbox@3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22888,24 +22036,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/color@3.0.9(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/numberfield': 3.11.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/slider': 3.7.21(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/textfield': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/color': 3.8.6(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/color': 3.0.6(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/color@3.0.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -22945,27 +22075,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/combobox@3.12.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/listbox': 3.14.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/menu': 3.18.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/overlays': 3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/textfield': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/combobox': 3.10.6(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/combobox': 3.13.6(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/combobox@3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23010,29 +22119,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/datepicker@3.14.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@internationalized/number': 3.6.3
- '@internationalized/string': 3.2.7
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/form': 3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/datepicker': 3.14.2(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/calendar': 3.7.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/datepicker': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/dialog': 3.5.19(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/datepicker@3.14.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -23067,17 +22153,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/dialog@3.5.27(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/overlays': 3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/dialog': 3.5.19(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/dialog@3.5.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23089,16 +22164,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/disclosure@3.0.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/ssr': 3.9.9(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/disclosure': 3.0.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/disclosure@3.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/ssr': 3.9.9(react@19.1.0)
@@ -23125,22 +22190,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/dnd@3.10.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/string': 3.2.7
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/overlays': 3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/dnd': 3.6.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/dnd@3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@internationalized/string': 3.2.7
@@ -23177,16 +22226,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/focus@3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- clsx: 2.1.1
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/focus@3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23207,16 +22246,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/form@3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/form@3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23245,24 +22274,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/grid@3.14.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/grid': 3.11.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/grid': 3.3.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/grid@3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23297,22 +22308,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/gridlist@3.13.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/grid': 3.14.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tree': 3.9.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/gridlist@3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23329,19 +22324,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/i18n@3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@internationalized/message': 3.1.8
- '@internationalized/number': 3.6.3
- '@internationalized/string': 3.2.7
- '@react-aria/ssr': 3.9.9(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/i18n@3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -23375,16 +22357,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/interactions@3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/ssr': 3.9.9(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/flags': 3.1.2
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/interactions@3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/ssr': 3.9.9(react@19.1.0)
@@ -23395,14 +22367,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/label@3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/label@3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23411,15 +22375,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/landmark@3.0.4(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- use-sync-external-store: 1.5.0(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/landmark@3.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23439,16 +22394,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/link@3.8.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/link': 3.6.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/link@3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23473,20 +22418,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/listbox@3.14.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/listbox': 3.7.1(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/listbox@3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23524,25 +22455,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/menu@3.18.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/overlays': 3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/menu': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tree': 3.9.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/menu': 3.10.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/menu@3.18.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23562,15 +22474,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/meter@3.4.24(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/progress': 3.4.24(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/meter': 3.4.10(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/meter@3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/progress': 3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23596,22 +22499,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/numberfield@3.11.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/textfield': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/numberfield': 3.9.13(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/numberfield': 3.8.12(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/numberfield@3.11.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23644,22 +22531,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/overlays@3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/ssr': 3.9.9(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/overlays@3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23676,17 +22547,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/progress@3.4.24(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/progress': 3.5.13(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/progress@3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23713,21 +22573,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/radio@3.11.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/form': 3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/radio': 3.10.14(react@19.0.0-rc-66855b96-20241106)
- '@react-types/radio': 3.8.10(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/radio@3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23756,19 +22601,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/searchfield@3.8.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/textfield': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/searchfield': 3.5.13(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/searchfield': 3.6.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/searchfield@3.8.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23801,25 +22633,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/select@3.15.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/listbox': 3.14.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/menu': 3.18.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/select': 3.6.14(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/select': 3.9.13(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/select@3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23851,18 +22664,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/selection@3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/selection@3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23875,14 +22676,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/separator@3.4.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/separator@3.4.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23891,19 +22684,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/slider@3.7.21(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/slider': 3.6.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/slider': 3.7.12(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/slider@3.7.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23917,17 +22697,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/spinbutton@3.6.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/spinbutton@3.6.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23959,16 +22728,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/switch@3.7.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/toggle': 3.11.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toggle': 3.8.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/switch': 3.5.12(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/switch@3.7.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/toggle': 3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -23999,26 +22758,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/table@3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/grid': 3.14.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/flags': 3.1.2
- '@react-stately/table': 3.14.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/grid': 3.3.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/table': 3.13.1(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/table@3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24052,19 +22791,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/tabs@3.10.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tabs': 3.8.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/tabs': 3.3.16(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/tabs@3.10.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24093,21 +22819,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/tag@3.6.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/gridlist': 3.13.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/tag@3.6.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/gridlist': 3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24137,20 +22848,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/textfield@3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/textfield': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/textfield@3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24178,19 +22875,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/toast@3.0.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/landmark': 3.0.4(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toast': 3.1.1(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/toast@3.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24215,17 +22899,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/toggle@3.11.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toggle': 3.8.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/toggle@3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24247,16 +22920,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/toolbar@3.0.0-beta.18(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/toolbar@3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24278,17 +22941,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/tooltip@3.8.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tooltip': 3.5.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/tooltip': 3.4.18(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/tooltip@3.8.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24300,19 +22952,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/tree@3.1.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/gridlist': 3.13.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tree': 3.9.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/button': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/tree@3.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/gridlist': 3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24368,15 +23007,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-aria/visually-hidden@3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@react-aria/visually-hidden@3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -24470,7 +23100,7 @@ snapshots:
md-to-react-email: 5.0.5(react@19.1.0)
react: 19.1.0
- '@react-email/preview-server@4.2.12(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(postcss@8.5.6)(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2))':
+ '@react-email/preview-server@4.2.12(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2))':
dependencies:
'@babel/core': 7.26.10
'@babel/parser': 7.27.0
@@ -24510,7 +23140,7 @@ snapshots:
spamc: 0.0.5
stacktrace-parser: 0.1.11
tailwind-merge: 3.2.0
- tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2))
+ tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2))
use-debounce: 10.0.4(react@19.0.0)
zod: 3.24.3
transitivePeerDependencies:
@@ -24557,15 +23187,6 @@ snapshots:
dependencies:
react: 19.1.0
- '@react-stately/calendar@3.8.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/calendar': 3.7.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/calendar@3.8.2(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -24575,15 +23196,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/checkbox@3.6.15(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/checkbox@3.6.15(react@19.1.0)':
dependencies:
'@react-stately/form': 3.1.5(react@19.1.0)
@@ -24593,31 +23205,12 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/collections@3.12.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/collections@3.12.5(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/color@3.8.6(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/number': 3.6.3
- '@internationalized/string': 3.2.7
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/numberfield': 3.9.13(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/slider': 3.6.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/color': 3.0.6(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/color@3.8.6(react@19.1.0)':
dependencies:
'@internationalized/number': 3.6.3
@@ -24631,19 +23224,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/combobox@3.10.6(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/select': 3.6.14(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/combobox': 3.13.6(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/combobox@3.10.6(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -24657,30 +23237,12 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/data@3.13.1(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/data@3.13.1(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/datepicker@3.14.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@internationalized/string': 3.2.7
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/datepicker': 3.12.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/datepicker@3.14.2(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -24693,13 +23255,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/disclosure@3.0.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/disclosure@3.0.5(react@19.1.0)':
dependencies:
'@react-stately/utils': 3.10.7(react@19.1.0)
@@ -24707,13 +23262,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/dnd@3.6.0(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/dnd@3.6.0(react@19.1.0)':
dependencies:
'@react-stately/selection': 3.20.3(react@19.1.0)
@@ -24725,27 +23273,12 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.17
- '@react-stately/form@3.1.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/form@3.1.5(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/grid@3.11.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/grid': 3.3.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/grid@3.11.3(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -24767,15 +23300,6 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- '@react-stately/list@3.12.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/list@3.12.3(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -24785,14 +23309,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/menu@3.9.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-types/menu': 3.10.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/menu@3.9.5(react@19.1.0)':
dependencies:
'@react-stately/overlays': 3.6.17(react@19.1.0)
@@ -24801,15 +23317,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/numberfield@3.9.13(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/number': 3.6.3
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/numberfield': 3.8.12(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/numberfield@3.9.13(react@19.1.0)':
dependencies:
'@internationalized/number': 3.6.3
@@ -24819,13 +23326,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/overlays@3.6.17(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/overlays@3.6.17(react@19.1.0)':
dependencies:
'@react-stately/utils': 3.10.7(react@19.1.0)
@@ -24833,15 +23333,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/radio@3.10.14(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/radio': 3.8.10(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/radio@3.10.14(react@19.1.0)':
dependencies:
'@react-stately/form': 3.1.5(react@19.1.0)
@@ -24851,13 +23342,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/searchfield@3.5.13(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/searchfield': 3.6.3(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/searchfield@3.5.13(react@19.1.0)':
dependencies:
'@react-stately/utils': 3.10.7(react@19.1.0)
@@ -24865,16 +23349,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/select@3.6.14(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-types/select': 3.9.13(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/select@3.6.14(react@19.1.0)':
dependencies:
'@react-stately/form': 3.1.5(react@19.1.0)
@@ -24885,14 +23359,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/selection@3.20.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/selection@3.20.3(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -24901,14 +23367,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/slider@3.6.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/slider': 3.7.12(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/slider@3.6.5(react@19.1.0)':
dependencies:
'@react-stately/utils': 3.10.7(react@19.1.0)
@@ -24917,19 +23375,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/table@3.14.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/flags': 3.1.2
- '@react-stately/grid': 3.11.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/grid': 3.3.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/table': 3.13.1(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/table@3.14.3(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -24943,14 +23388,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/tabs@3.8.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/tabs': 3.3.16(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/tabs@3.8.3(react@19.1.0)':
dependencies:
'@react-stately/list': 3.12.3(react@19.1.0)
@@ -24965,26 +23402,12 @@ snapshots:
react: 19.1.0
use-sync-external-store: 1.5.0(react@19.1.0)
- '@react-stately/toast@3.1.1(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
- use-sync-external-store: 1.5.0(react@19.0.0-rc-66855b96-20241106)
-
'@react-stately/toast@3.1.1(react@19.1.0)':
dependencies:
'@swc/helpers': 0.5.17
react: 19.1.0
use-sync-external-store: 1.5.0(react@19.1.0)
- '@react-stately/toggle@3.8.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/checkbox': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/toggle@3.8.5(react@19.1.0)':
dependencies:
'@react-stately/utils': 3.10.7(react@19.1.0)
@@ -24993,13 +23416,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/tooltip@3.5.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-types/tooltip': 3.4.18(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/tooltip@3.5.5(react@19.1.0)':
dependencies:
'@react-stately/overlays': 3.6.17(react@19.1.0)
@@ -25007,15 +23423,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 19.1.0
- '@react-stately/tree@3.9.0(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/utils': 3.10.7(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@swc/helpers': 0.5.17
- react: 19.0.0-rc-66855b96-20241106
-
'@react-stately/tree@3.9.0(react@19.1.0)':
dependencies:
'@react-stately/collections': 3.12.5(react@19.1.0)
@@ -25053,80 +23460,39 @@ snapshots:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/breadcrumbs@3.7.14(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/link': 3.6.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/breadcrumbs@3.7.14(react@19.1.0)':
dependencies:
'@react-types/link': 3.6.2(react@19.1.0)
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/button@3.12.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/button@3.12.2(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/calendar@3.7.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/calendar@3.7.2(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/checkbox@3.9.5(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/checkbox@3.9.5(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/color@3.0.6(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/slider': 3.7.12(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/color@3.0.6(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
'@react-types/slider': 3.7.12(react@19.1.0)
react: 19.1.0
- '@react-types/combobox@3.13.6(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/combobox@3.13.6(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/datepicker@3.12.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@internationalized/date': 3.8.2
- '@react-types/calendar': 3.7.2(react@19.0.0-rc-66855b96-20241106)
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/datepicker@3.12.2(react@19.1.0)':
dependencies:
'@internationalized/date': 3.8.2
@@ -25135,127 +23501,64 @@ snapshots:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/dialog@3.5.19(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/dialog@3.5.19(react@19.1.0)':
dependencies:
'@react-types/overlays': 3.8.16(react@19.1.0)
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/grid@3.3.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/grid@3.3.3(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/link@3.6.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/link@3.6.2(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/listbox@3.7.1(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/listbox@3.7.1(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/menu@3.10.2(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/menu@3.10.2(react@19.1.0)':
dependencies:
'@react-types/overlays': 3.8.16(react@19.1.0)
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/meter@3.4.10(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/progress': 3.5.13(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/meter@3.4.10(react@19.1.0)':
dependencies:
'@react-types/progress': 3.5.13(react@19.1.0)
react: 19.1.0
- '@react-types/numberfield@3.8.12(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/numberfield@3.8.12(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/overlays@3.8.16(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/overlays@3.8.16(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/progress@3.5.13(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/progress@3.5.13(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/radio@3.8.10(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/radio@3.8.10(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/searchfield@3.6.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/textfield': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/searchfield@3.6.3(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
'@react-types/textfield': 3.12.3(react@19.1.0)
react: 19.1.0
- '@react-types/select@3.9.13(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/select@3.9.13(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
@@ -25269,64 +23572,32 @@ snapshots:
dependencies:
react: 19.1.0
- '@react-types/slider@3.7.12(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/slider@3.7.12(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/switch@3.5.12(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/switch@3.5.12(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/table@3.13.1(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/grid': 3.3.3(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/table@3.13.1(react@19.1.0)':
dependencies:
'@react-types/grid': 3.3.3(react@19.1.0)
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/tabs@3.3.16(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/tabs@3.3.16(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/textfield@3.12.3(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/textfield@3.12.3(react@19.1.0)':
dependencies:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- '@react-types/tooltip@3.4.18(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@react-types/overlays': 3.8.16(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
'@react-types/tooltip@3.4.18(react@19.1.0)':
dependencies:
'@react-types/overlays': 3.8.16(react@19.1.0)
@@ -25503,7 +23774,7 @@ snapshots:
'@sentry/core@9.46.0': {}
- '@sentry/nextjs@9.46.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.101.3)':
+ '@sentry/nextjs@9.46.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.101.3)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.34.0
@@ -25516,7 +23787,7 @@ snapshots:
'@sentry/vercel-edge': 9.46.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))
'@sentry/webpack-plugin': 3.5.0(webpack@5.101.3)
chalk: 3.0.0
- next: 15.3.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
resolve: 1.22.8
rollup: 4.35.0
stacktrace-parser: 0.1.11
@@ -25725,11 +23996,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@tailwindcss/forms@0.5.10(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2)))':
- dependencies:
- mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2))
-
'@tailwindcss/forms@0.5.10(tailwindcss@4.1.7)':
dependencies:
mini-svg-data-uri: 1.4.4
@@ -25814,12 +24080,6 @@ snapshots:
'@tanstack/query-core': 5.76.0
react: 19.1.0
- '@tanstack/react-table@8.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
- dependencies:
- '@tanstack/table-core': 8.20.5
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
'@tanstack/react-table@8.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@tanstack/table-core': 8.20.5
@@ -27680,7 +25940,7 @@ snapshots:
eslint: 9.34.0(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.34.0(jiti@2.5.1))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.34.0(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.34.0(jiti@2.5.1))
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.34.0(jiti@2.5.1))
eslint-plugin-react: 7.37.5(eslint@9.34.0(jiti@2.5.1))
eslint-plugin-react-hooks: 5.2.0(eslint@9.34.0(jiti@2.5.1))
@@ -27716,22 +25976,21 @@ snapshots:
tinyglobby: 0.2.14
unrs-resolver: 1.7.11
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.34.0(jiti@2.5.1))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.34.0(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.34.0(jiti@2.5.1)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0(jiti@2.5.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2)
eslint: 9.34.0(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.34.0(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.34.0(jiti@2.5.1)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint@9.34.0(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -27742,7 +26001,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.34.0(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.34.0(jiti@2.5.1))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -27754,7 +26013,7 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.33.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.32.1(eslint@9.34.0(jiti@2.5.1))(typescript@5.9.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -30092,6 +28351,31 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.5.2(@babel/core@7.28.3)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 15.5.2
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001723
+ postcss: 8.4.31
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.6(@babel/core@7.28.3)(babel-plugin-macros@3.1.0)(react@19.1.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.5.2
+ '@next/swc-darwin-x64': 15.5.2
+ '@next/swc-linux-arm64-gnu': 15.5.2
+ '@next/swc-linux-arm64-musl': 15.5.2
+ '@next/swc-linux-x64-gnu': 15.5.2
+ '@next/swc-linux-x64-musl': 15.5.2
+ '@next/swc-win32-arm64-msvc': 15.5.2
+ '@next/swc-win32-x64-msvc': 15.5.2
+ '@opentelemetry/api': 1.9.0
+ babel-plugin-react-compiler: 19.1.0-rc.2
+ sharp: 0.34.3
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
@@ -30481,13 +28765,13 @@ snapshots:
postcss: 8.5.6
ts-node: 10.9.2(@types/node@17.0.21)(typescript@5.9.2)
- postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2)):
+ postcss-load-config@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2)):
dependencies:
lilconfig: 3.1.3
yaml: 2.8.0
optionalDependencies:
postcss: 8.5.6
- ts-node: 10.9.2(@types/node@22.18.0)(typescript@5.9.2)
+ ts-node: 10.9.2(@types/node@24.3.0)(typescript@5.9.2)
postcss-merge-longhand@7.0.5(postcss@8.5.6):
dependencies:
@@ -30670,12 +28954,6 @@ snapshots:
clsx: 2.1.1
react: 19.0.0
- prism-react-renderer@2.4.1(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- '@types/prismjs': 1.26.5
- clsx: 2.1.1
- react: 19.0.0-rc-66855b96-20241106
-
prism-react-renderer@2.4.1(react@19.1.0):
dependencies:
'@types/prismjs': 1.26.5
@@ -30785,64 +29063,6 @@ snapshots:
quick-format-unescaped@4.0.4: {}
- radix-ui@1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-accessible-icon': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-accordion': 1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-alert-dialog': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-aspect-ratio': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-avatar': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-checkbox': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-context-menu': 2.2.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dialog': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dismissable-layer': 1.1.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-dropdown-menu': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-form': 0.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-hover-card': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-label': 2.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-menu': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-menubar': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-navigation-menu': 1.2.4(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popover': 1.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-progress': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-radio-group': 1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-scroll-area': 1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-select': 2.1.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-separator': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slider': 1.2.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-slot': 1.1.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-switch': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-tabs': 1.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toast': 1.2.5(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toggle': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toggle-group': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-toolbar': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-tooltip': 1.1.7(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
-
radix-ui@1.1.2(@types/react-dom@19.1.5(@types/react@19.1.4))(@types/react@19.1.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -30905,53 +29125,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- react-aria@3.41.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- '@internationalized/string': 3.2.7
- '@react-aria/breadcrumbs': 3.5.26(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/button': 3.13.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/calendar': 3.8.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/checkbox': 3.15.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/color': 3.0.9(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/combobox': 3.12.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/datepicker': 3.14.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/dialog': 3.5.27(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/disclosure': 3.0.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/dnd': 3.10.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/focus': 3.20.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/gridlist': 3.13.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/i18n': 3.12.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/interactions': 3.25.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/label': 3.7.19(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/landmark': 3.0.4(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/link': 3.8.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/listbox': 3.14.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/menu': 3.18.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/meter': 3.4.24(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/numberfield': 3.11.16(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/overlays': 3.27.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/progress': 3.4.24(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/radio': 3.11.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/searchfield': 3.8.6(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/select': 3.15.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/selection': 3.24.3(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/separator': 3.4.10(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/slider': 3.7.21(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/ssr': 3.9.9(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/switch': 3.7.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/table': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/tabs': 3.10.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/tag': 3.6.2(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/textfield': 3.17.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/toast': 3.0.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/tooltip': 3.8.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/tree': 3.1.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/utils': 3.29.1(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
react-aria@3.41.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
'@internationalized/string': 3.2.7
@@ -31003,10 +29176,6 @@ snapshots:
dependencies:
react: 19.0.0-rc-66855b96-20241106
- react-currency-input-field@3.10.0(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
-
react-currency-input-field@3.10.0(react@19.1.0):
dependencies:
react: 19.1.0
@@ -31081,14 +29250,6 @@ snapshots:
dependencies:
fast-deep-equal: 2.0.1
- react-remove-scroll-bar@2.3.8(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- react-style-singleton: 2.2.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 18.3.24
-
react-remove-scroll-bar@2.3.8(@types/react@19.0.10)(react@19.0.0):
dependencies:
react: 19.0.0
@@ -31105,17 +29266,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.4
- react-remove-scroll@2.7.1(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- react-remove-scroll-bar: 2.3.8(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- react-style-singleton: 2.2.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- use-sidecar: 1.1.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106)
- optionalDependencies:
- '@types/react': 18.3.24
-
react-remove-scroll@2.7.1(@types/react@19.0.10)(react@19.0.0):
dependencies:
react: 19.0.0
@@ -31146,36 +29296,6 @@ snapshots:
react-dom: 19.1.0(react@19.1.0)
react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-stately@3.39.0(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- '@react-stately/calendar': 3.8.2(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/checkbox': 3.6.15(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/collections': 3.12.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/color': 3.8.6(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/combobox': 3.10.6(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/data': 3.13.1(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/datepicker': 3.14.2(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/disclosure': 3.0.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/dnd': 3.6.0(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/form': 3.1.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/list': 3.12.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/menu': 3.9.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/numberfield': 3.9.13(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/overlays': 3.6.17(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/radio': 3.10.14(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/searchfield': 3.5.13(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/select': 3.6.14(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/selection': 3.20.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/slider': 3.6.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/table': 3.14.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tabs': 3.8.3(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toast': 3.1.1(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/toggle': 3.8.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tooltip': 3.5.5(react@19.0.0-rc-66855b96-20241106)
- '@react-stately/tree': 3.9.0(react@19.0.0-rc-66855b96-20241106)
- '@react-types/shared': 3.30.0(react@19.0.0-rc-66855b96-20241106)
- react: 19.0.0-rc-66855b96-20241106
-
react-stately@3.39.0(react@19.1.0):
dependencies:
'@react-stately/calendar': 3.8.2(react@19.1.0)
@@ -31206,14 +29326,6 @@ snapshots:
'@react-types/shared': 3.30.0(react@19.1.0)
react: 19.1.0
- react-style-singleton@2.2.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- get-nonce: 1.0.1
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 18.3.24
-
react-style-singleton@2.2.3(@types/react@19.0.10)(react@19.0.0):
dependencies:
get-nonce: 1.0.1
@@ -31694,11 +29806,6 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
- sonner@1.7.4(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
-
sonner@1.7.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
react: 19.1.0
@@ -31946,17 +30053,13 @@ snapshots:
tailwind-merge@3.3.1: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2))):
- dependencies:
- tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@17.0.21)(typescript@5.9.2))
-
tailwindcss-animate@1.0.7(tailwindcss@4.1.7):
dependencies:
tailwindcss: 4.1.7
tailwindcss-radix@2.9.0: {}
- tailwindcss@3.4.0(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2)):
+ tailwindcss@3.4.0(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -31975,7 +30078,7 @@ snapshots:
postcss: 8.5.6
postcss-import: 15.1.0(postcss@8.5.6)
postcss-js: 4.0.1(postcss@8.5.6)
- postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@22.18.0)(typescript@5.9.2))
+ postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2))
postcss-nested: 6.2.0(postcss@8.5.6)
postcss-selector-parser: 6.1.2
resolve: 1.22.10
@@ -32166,6 +30269,25 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ ts-node@10.9.2(@types/node@24.3.0)(typescript@5.9.2):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 24.3.0
+ acorn: 8.15.0
+ acorn-walk: 8.3.4
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.9.2
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optional: true
+
tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
@@ -32367,13 +30489,6 @@ snapshots:
react: 19.1.0
wonka: 6.3.5
- use-callback-ref@1.3.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 18.3.24
-
use-callback-ref@1.3.3(@types/react@19.0.10)(react@19.0.0):
dependencies:
react: 19.0.0
@@ -32392,14 +30507,6 @@ snapshots:
dependencies:
react: 19.0.0
- use-sidecar@1.1.3(@types/react@18.3.24)(react@19.0.0-rc-66855b96-20241106):
- dependencies:
- detect-node-es: 1.1.0
- react: 19.0.0-rc-66855b96-20241106
- tslib: 2.8.1
- optionalDependencies:
- '@types/react': 18.3.24
-
use-sidecar@1.1.3(@types/react@19.0.10)(react@19.0.0):
dependencies:
detect-node-es: 1.1.0