@unifold/connect-react 0.1.12 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.js +239 -199
  2. package/dist/index.mjs +134 -94
  3. package/package.json +8 -8
package/dist/index.mjs CHANGED
@@ -1223,10 +1223,19 @@ function useUnifold() {
1223
1223
  // ../ui-react/dist/index.mjs
1224
1224
  import { useState as useState72, useEffect as useEffect62 } from "react";
1225
1225
 
1226
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
1226
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
1227
+ import { forwardRef as forwardRef2, createElement as createElement2 } from "react";
1228
+
1229
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/shared/src/utils.js
1230
+ var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
1231
+ var mergeClasses = (...classes) => classes.filter((className, index2, array) => {
1232
+ return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index2;
1233
+ }).join(" ").trim();
1234
+
1235
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
1227
1236
  import { forwardRef, createElement } from "react";
1228
1237
 
1229
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
1238
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/defaultAttributes.js
1230
1239
  var defaultAttributes = {
1231
1240
  xmlns: "http://www.w3.org/2000/svg",
1232
1241
  width: 24,
@@ -1239,11 +1248,19 @@ var defaultAttributes = {
1239
1248
  strokeLinejoin: "round"
1240
1249
  };
1241
1250
 
1242
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
1243
- var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().trim();
1244
- var createLucideIcon = (iconName, iconNode) => {
1245
- const Component = forwardRef(
1246
- ({ color = "currentColor", size: size4 = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children, ...rest }, ref) => createElement(
1251
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/Icon.js
1252
+ var Icon = forwardRef(
1253
+ ({
1254
+ color = "currentColor",
1255
+ size: size4 = 24,
1256
+ strokeWidth = 2,
1257
+ absoluteStrokeWidth,
1258
+ className = "",
1259
+ children,
1260
+ iconNode,
1261
+ ...rest
1262
+ }, ref) => {
1263
+ return createElement(
1247
1264
  "svg",
1248
1265
  {
1249
1266
  ref,
@@ -1252,112 +1269,133 @@ var createLucideIcon = (iconName, iconNode) => {
1252
1269
  height: size4,
1253
1270
  stroke: color,
1254
1271
  strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size4) : strokeWidth,
1255
- className: ["lucide", `lucide-${toKebabCase(iconName)}`, className].join(" "),
1272
+ className: mergeClasses("lucide", className),
1256
1273
  ...rest
1257
1274
  },
1258
1275
  [
1259
1276
  ...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
1260
1277
  ...Array.isArray(children) ? children : [children]
1261
1278
  ]
1262
- )
1279
+ );
1280
+ }
1281
+ );
1282
+
1283
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/createLucideIcon.js
1284
+ var createLucideIcon = (iconName, iconNode) => {
1285
+ const Component = forwardRef2(
1286
+ ({ className, ...props }, ref) => createElement2(Icon, {
1287
+ ref,
1288
+ iconNode,
1289
+ className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),
1290
+ ...props
1291
+ })
1263
1292
  );
1264
1293
  Component.displayName = `${iconName}`;
1265
1294
  return Component;
1266
1295
  };
1267
1296
 
1268
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/arrow-left.js
1297
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/arrow-left.js
1269
1298
  var ArrowLeft = createLucideIcon("ArrowLeft", [
1270
1299
  ["path", { d: "m12 19-7-7 7-7", key: "1l729n" }],
1271
1300
  ["path", { d: "M19 12H5", key: "x3x0zl" }]
1272
1301
  ]);
1273
1302
 
1274
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/check.js
1303
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/check.js
1275
1304
  var Check = createLucideIcon("Check", [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]]);
1276
1305
 
1277
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-down.js
1306
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-down.js
1278
1307
  var ChevronDown = createLucideIcon("ChevronDown", [
1279
1308
  ["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]
1280
1309
  ]);
1281
1310
 
1282
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-right.js
1311
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-right.js
1283
1312
  var ChevronRight = createLucideIcon("ChevronRight", [
1284
1313
  ["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]
1285
1314
  ]);
1286
1315
 
1287
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-up.js
1316
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/chevron-up.js
1288
1317
  var ChevronUp = createLucideIcon("ChevronUp", [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]]);
1289
1318
 
1290
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/clock.js
1319
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/clock.js
1291
1320
  var Clock = createLucideIcon("Clock", [
1292
1321
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
1293
1322
  ["polyline", { points: "12 6 12 12 16 14", key: "68esgv" }]
1294
1323
  ]);
1295
1324
 
1296
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/credit-card.js
1325
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/credit-card.js
1297
1326
  var CreditCard = createLucideIcon("CreditCard", [
1298
1327
  ["rect", { width: "20", height: "14", x: "2", y: "5", rx: "2", key: "ynyp8z" }],
1299
1328
  ["line", { x1: "2", x2: "22", y1: "10", y2: "10", key: "1b3vmo" }]
1300
1329
  ]);
1301
1330
 
1302
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/dollar-sign.js
1331
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/dollar-sign.js
1303
1332
  var DollarSign = createLucideIcon("DollarSign", [
1304
1333
  ["line", { x1: "12", x2: "12", y1: "2", y2: "22", key: "7eqyqh" }],
1305
1334
  ["path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6", key: "1b0p4s" }]
1306
1335
  ]);
1307
1336
 
1308
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/external-link.js
1337
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/external-link.js
1309
1338
  var ExternalLink = createLucideIcon("ExternalLink", [
1310
- ["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }],
1311
- ["polyline", { points: "15 3 21 3 21 9", key: "mznyad" }],
1312
- ["line", { x1: "10", x2: "21", y1: "14", y2: "3", key: "18c3s4" }]
1339
+ ["path", { d: "M15 3h6v6", key: "1q9fwt" }],
1340
+ ["path", { d: "M10 14 21 3", key: "gplh6r" }],
1341
+ ["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
1313
1342
  ]);
1314
1343
 
1315
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/file-text.js
1344
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/file-text.js
1316
1345
  var FileText = createLucideIcon("FileText", [
1317
- [
1318
- "path",
1319
- { d: "M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z", key: "1nnpy2" }
1320
- ],
1321
- ["polyline", { points: "14 2 14 8 20 8", key: "1ew0cm" }],
1322
- ["line", { x1: "16", x2: "8", y1: "13", y2: "13", key: "14keom" }],
1323
- ["line", { x1: "16", x2: "8", y1: "17", y2: "17", key: "17nazh" }],
1324
- ["line", { x1: "10", x2: "8", y1: "9", y2: "9", key: "1a5vjj" }]
1346
+ ["path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z", key: "1rqfz7" }],
1347
+ ["path", { d: "M14 2v4a2 2 0 0 0 2 2h4", key: "tnqrlb" }],
1348
+ ["path", { d: "M10 9H8", key: "b1mrlr" }],
1349
+ ["path", { d: "M16 13H8", key: "t4e002" }],
1350
+ ["path", { d: "M16 17H8", key: "z1uh3a" }]
1325
1351
  ]);
1326
1352
 
1327
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/info.js
1353
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/info.js
1328
1354
  var Info = createLucideIcon("Info", [
1329
1355
  ["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
1330
1356
  ["path", { d: "M12 16v-4", key: "1dtifu" }],
1331
1357
  ["path", { d: "M12 8h.01", key: "e9boi3" }]
1332
1358
  ]);
1333
1359
 
1334
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/search.js
1360
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/search.js
1335
1361
  var Search = createLucideIcon("Search", [
1336
1362
  ["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
1337
1363
  ["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
1338
1364
  ]);
1339
1365
 
1340
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/shield-check.js
1366
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/shield-check.js
1341
1367
  var ShieldCheck = createLucideIcon("ShieldCheck", [
1342
- ["path", { d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10", key: "1irkt0" }],
1368
+ [
1369
+ "path",
1370
+ {
1371
+ d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
1372
+ key: "oel41y"
1373
+ }
1374
+ ],
1343
1375
  ["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
1344
1376
  ]);
1345
1377
 
1346
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/x.js
1378
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/x.js
1347
1379
  var X = createLucideIcon("X", [
1348
1380
  ["path", { d: "M18 6 6 18", key: "1bl5f8" }],
1349
1381
  ["path", { d: "m6 6 12 12", key: "d8bk6v" }]
1350
1382
  ]);
1351
1383
 
1352
- // ../../node_modules/.pnpm/lucide-react@0.294.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/zap.js
1384
+ // ../../node_modules/.pnpm/lucide-react@0.454.0_react@18.3.1/node_modules/lucide-react/dist/esm/icons/zap.js
1353
1385
  var Zap = createLucideIcon("Zap", [
1354
- ["polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2", key: "45s27k" }]
1386
+ [
1387
+ "path",
1388
+ {
1389
+ d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
1390
+ key: "1xq2db"
1391
+ }
1392
+ ]
1355
1393
  ]);
1356
1394
 
1357
1395
  // ../ui-react/dist/index.mjs
1358
1396
  import * as React210 from "react";
1359
1397
 
1360
- // ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3_bwdzsrsjkenptt5ry5km67dkui/node_modules/@radix-ui/react-dialog/dist/index.mjs
1398
+ // ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2._c543yfkcelkno3idkccogkevua/node_modules/@radix-ui/react-dialog/dist/index.mjs
1361
1399
  import * as React24 from "react";
1362
1400
 
1363
1401
  // ../../node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs
@@ -1371,7 +1409,7 @@ function composeEventHandlers(originalEventHandler, ourEventHandler, { checkForD
1371
1409
  };
1372
1410
  }
1373
1411
 
1374
- // ../../node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.mjs
1412
+ // ../../node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.mjs
1375
1413
  import * as React from "react";
1376
1414
  function setRef(ref, value) {
1377
1415
  if (typeof ref === "function") {
@@ -1408,7 +1446,7 @@ function useComposedRefs(...refs) {
1408
1446
  return React.useCallback(composeRefs(...refs), refs);
1409
1447
  }
1410
1448
 
1411
- // ../../node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-context/dist/index.mjs
1449
+ // ../../node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-context/dist/index.mjs
1412
1450
  import * as React2 from "react";
1413
1451
  import { jsx as jsx2 } from "react/jsx-runtime";
1414
1452
  function createContext22(rootComponentName, defaultContext) {
@@ -1485,15 +1523,15 @@ function composeContextScopes(...scopes) {
1485
1523
  return createScope;
1486
1524
  }
1487
1525
 
1488
- // ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.mjs
1526
+ // ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.mjs
1489
1527
  import * as React4 from "react";
1490
1528
 
1491
- // ../../node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs
1529
+ // ../../node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs
1492
1530
  import * as React3 from "react";
1493
1531
  var useLayoutEffect2 = globalThis?.document ? React3.useLayoutEffect : () => {
1494
1532
  };
1495
1533
 
1496
- // ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.mjs
1534
+ // ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.mjs
1497
1535
  var useReactId = React4[" useId ".trim().toString()] || (() => void 0);
1498
1536
  var count = 0;
1499
1537
  function useId(deterministicId) {
@@ -1504,7 +1542,7 @@ function useId(deterministicId) {
1504
1542
  return deterministicId || (id ? `radix-${id}` : "");
1505
1543
  }
1506
1544
 
1507
- // ../../node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs
1545
+ // ../../node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs
1508
1546
  import * as React5 from "react";
1509
1547
  import * as React22 from "react";
1510
1548
  var useInsertionEffect = React5[" useInsertionEffect ".trim().toString()] || useLayoutEffect2;
@@ -1572,14 +1610,14 @@ function isFunction(value) {
1572
1610
  return typeof value === "function";
1573
1611
  }
1574
1612
 
1575
- // ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@18.3.7_@types+react@18.3.27__@types_u6tzwtgv5ghthzjquanrhjxpva/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
1613
+ // ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.9__@types+_ww6fouyx2m6cwmjzqm53vz7gdi/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
1576
1614
  import * as React10 from "react";
1577
1615
 
1578
- // ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18_yolw7mpxxngdeqhbiia4uh4qoe/node_modules/@radix-ui/react-primitive/dist/index.mjs
1616
+ // ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19._ttsd3lhl6vteekfa4w7yhzbari/node_modules/@radix-ui/react-primitive/dist/index.mjs
1579
1617
  import * as React7 from "react";
1580
1618
  import * as ReactDOM from "react-dom";
1581
1619
 
1582
- // ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.mjs
1620
+ // ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.mjs
1583
1621
  import * as React6 from "react";
1584
1622
  import { Fragment as Fragment2, jsx as jsx3 } from "react/jsx-runtime";
1585
1623
  // @__NO_SIDE_EFFECTS__
@@ -1674,7 +1712,7 @@ function getElementRef(element) {
1674
1712
  return element.props.ref || element.ref;
1675
1713
  }
1676
1714
 
1677
- // ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18_yolw7mpxxngdeqhbiia4uh4qoe/node_modules/@radix-ui/react-primitive/dist/index.mjs
1715
+ // ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19._ttsd3lhl6vteekfa4w7yhzbari/node_modules/@radix-ui/react-primitive/dist/index.mjs
1678
1716
  import { jsx as jsx4 } from "react/jsx-runtime";
1679
1717
  var NODES = [
1680
1718
  "a",
@@ -1712,7 +1750,7 @@ function dispatchDiscreteCustomEvent(target, event) {
1712
1750
  if (target) ReactDOM.flushSync(() => target.dispatchEvent(event));
1713
1751
  }
1714
1752
 
1715
- // ../../node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
1753
+ // ../../node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
1716
1754
  import * as React8 from "react";
1717
1755
  function useCallbackRef(callback) {
1718
1756
  const callbackRef = React8.useRef(callback);
@@ -1722,7 +1760,7 @@ function useCallbackRef(callback) {
1722
1760
  return React8.useMemo(() => (...args) => callbackRef.current?.(...args), []);
1723
1761
  }
1724
1762
 
1725
- // ../../node_modules/.pnpm/@radix-ui+react-use-escape-keydown@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs
1763
+ // ../../node_modules/.pnpm/@radix-ui+react-use-escape-keydown@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs
1726
1764
  import * as React9 from "react";
1727
1765
  function useEscapeKeydown(onEscapeKeyDownProp, ownerDocument = globalThis?.document) {
1728
1766
  const onEscapeKeyDown = useCallbackRef(onEscapeKeyDownProp);
@@ -1737,7 +1775,7 @@ function useEscapeKeydown(onEscapeKeyDownProp, ownerDocument = globalThis?.docum
1737
1775
  }, [onEscapeKeyDown, ownerDocument]);
1738
1776
  }
1739
1777
 
1740
- // ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@18.3.7_@types+react@18.3.27__@types_u6tzwtgv5ghthzjquanrhjxpva/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
1778
+ // ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.9__@types+_ww6fouyx2m6cwmjzqm53vz7gdi/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
1741
1779
  import { jsx as jsx5 } from "react/jsx-runtime";
1742
1780
  var DISMISSABLE_LAYER_NAME = "DismissableLayer";
1743
1781
  var CONTEXT_UPDATE = "dismissableLayer.update";
@@ -1942,7 +1980,7 @@ function handleAndDispatchCustomEvent(name, handler, detail, { discrete }) {
1942
1980
  }
1943
1981
  }
1944
1982
 
1945
- // ../../node_modules/.pnpm/@radix-ui+react-focus-scope@1.1.7_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@_vcdvmbqgklingdkgujb3ivph6i/node_modules/@radix-ui/react-focus-scope/dist/index.mjs
1983
+ // ../../node_modules/.pnpm/@radix-ui+react-focus-scope@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@1_tfxcpqbhv4yeom5omze5oqyk7a/node_modules/@radix-ui/react-focus-scope/dist/index.mjs
1946
1984
  import * as React11 from "react";
1947
1985
  import { jsx as jsx6 } from "react/jsx-runtime";
1948
1986
  var AUTOFOCUS_ON_MOUNT = "focusScope.autoFocusOnMount";
@@ -2146,7 +2184,7 @@ function removeLinks(items) {
2146
2184
  return items.filter((item) => item.tagName !== "A");
2147
2185
  }
2148
2186
 
2149
- // ../../node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3._7latw2vgc5q47ysk2odet7oazm/node_modules/@radix-ui/react-portal/dist/index.mjs
2187
+ // ../../node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9_nk6ushapd5m5qcefseikyaidiq/node_modules/@radix-ui/react-portal/dist/index.mjs
2150
2188
  import * as React12 from "react";
2151
2189
  import ReactDOM2 from "react-dom";
2152
2190
  import { jsx as jsx7 } from "react/jsx-runtime";
@@ -2160,7 +2198,7 @@ var Portal = React12.forwardRef((props, forwardedRef) => {
2160
2198
  });
2161
2199
  Portal.displayName = PORTAL_NAME;
2162
2200
 
2163
- // ../../node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18._rdlydof7lkhqrva5s2nvtprt3a/node_modules/@radix-ui/react-presence/dist/index.mjs
2201
+ // ../../node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2_lhxxu3bl2a5egptwobjoj75owm/node_modules/@radix-ui/react-presence/dist/index.mjs
2164
2202
  import * as React23 from "react";
2165
2203
  import * as React13 from "react";
2166
2204
  function useStateMachine(initialState, machine) {
@@ -2286,7 +2324,7 @@ function getElementRef2(element) {
2286
2324
  return element.props.ref || element.ref;
2287
2325
  }
2288
2326
 
2289
- // ../../node_modules/.pnpm/@radix-ui+react-focus-guards@1.1.3_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-focus-guards/dist/index.mjs
2327
+ // ../../node_modules/.pnpm/@radix-ui+react-focus-guards@1.1.3_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-focus-guards/dist/index.mjs
2290
2328
  import * as React14 from "react";
2291
2329
  var count2 = 0;
2292
2330
  function useFocusGuards() {
@@ -2346,19 +2384,19 @@ function __spreadArray(to, from, pack) {
2346
2384
  return to.concat(ar || Array.prototype.slice.call(from));
2347
2385
  }
2348
2386
 
2349
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js
2387
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js
2350
2388
  import * as React21 from "react";
2351
2389
 
2352
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js
2390
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js
2353
2391
  import * as React17 from "react";
2354
2392
 
2355
- // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/constants.js
2393
+ // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/constants.js
2356
2394
  var zeroRightClassName = "right-scroll-bar-position";
2357
2395
  var fullWidthClassName = "width-before-scroll-bar";
2358
2396
  var noScrollbarsClassName = "with-scroll-bars-hidden";
2359
2397
  var removedBarSizeVariable = "--removed-body-scroll-bar-size";
2360
2398
 
2361
- // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@18.3.27_react@18.3.1/node_modules/use-callback-ref/dist/es2015/assignRef.js
2399
+ // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.9_react@18.3.1/node_modules/use-callback-ref/dist/es2015/assignRef.js
2362
2400
  function assignRef(ref, value) {
2363
2401
  if (typeof ref === "function") {
2364
2402
  ref(value);
@@ -2368,7 +2406,7 @@ function assignRef(ref, value) {
2368
2406
  return ref;
2369
2407
  }
2370
2408
 
2371
- // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@18.3.27_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useRef.js
2409
+ // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.9_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useRef.js
2372
2410
  import { useState as useState8 } from "react";
2373
2411
  function useCallbackRef2(initialValue, callback) {
2374
2412
  var ref = useState8(function() {
@@ -2396,7 +2434,7 @@ function useCallbackRef2(initialValue, callback) {
2396
2434
  return ref.facade;
2397
2435
  }
2398
2436
 
2399
- // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@18.3.27_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useMergeRef.js
2437
+ // ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.2.9_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useMergeRef.js
2400
2438
  import * as React15 from "react";
2401
2439
  var useIsomorphicLayoutEffect = typeof window !== "undefined" ? React15.useLayoutEffect : React15.useEffect;
2402
2440
  var currentValues = /* @__PURE__ */ new WeakMap();
@@ -2428,7 +2466,7 @@ function useMergeRefs(refs, defaultValue) {
2428
2466
  return callbackRef;
2429
2467
  }
2430
2468
 
2431
- // ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@18.3.27_react@18.3.1/node_modules/use-sidecar/dist/es2015/medium.js
2469
+ // ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.9_react@18.3.1/node_modules/use-sidecar/dist/es2015/medium.js
2432
2470
  function ItoI(a) {
2433
2471
  return a;
2434
2472
  }
@@ -2514,7 +2552,7 @@ function createSidecarMedium(options) {
2514
2552
  return medium;
2515
2553
  }
2516
2554
 
2517
- // ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@18.3.27_react@18.3.1/node_modules/use-sidecar/dist/es2015/exports.js
2555
+ // ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.2.9_react@18.3.1/node_modules/use-sidecar/dist/es2015/exports.js
2518
2556
  import * as React16 from "react";
2519
2557
  var SideCar = function(_a) {
2520
2558
  var sideCar = _a.sideCar, rest = __rest(_a, ["sideCar"]);
@@ -2533,10 +2571,10 @@ function exportSidecar(medium, exported) {
2533
2571
  return SideCar;
2534
2572
  }
2535
2573
 
2536
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/medium.js
2574
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/medium.js
2537
2575
  var effectCar = createSidecarMedium();
2538
2576
 
2539
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js
2577
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js
2540
2578
  var nothing = function() {
2541
2579
  return;
2542
2580
  };
@@ -2568,13 +2606,13 @@ RemoveScroll.classNames = {
2568
2606
  zeroRight: zeroRightClassName
2569
2607
  };
2570
2608
 
2571
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
2609
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
2572
2610
  import * as React20 from "react";
2573
2611
 
2574
- // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js
2612
+ // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js
2575
2613
  import * as React19 from "react";
2576
2614
 
2577
- // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@18.3.27_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js
2615
+ // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.9_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js
2578
2616
  import * as React18 from "react";
2579
2617
 
2580
2618
  // ../../node_modules/.pnpm/get-nonce@1.0.1/node_modules/get-nonce/dist/es2015/index.js
@@ -2589,7 +2627,7 @@ var getNonce = function() {
2589
2627
  return void 0;
2590
2628
  };
2591
2629
 
2592
- // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@18.3.27_react@18.3.1/node_modules/react-style-singleton/dist/es2015/singleton.js
2630
+ // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.9_react@18.3.1/node_modules/react-style-singleton/dist/es2015/singleton.js
2593
2631
  function makeStyleTag() {
2594
2632
  if (!document)
2595
2633
  return null;
@@ -2635,7 +2673,7 @@ var stylesheetSingleton = function() {
2635
2673
  };
2636
2674
  };
2637
2675
 
2638
- // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@18.3.27_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js
2676
+ // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.9_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js
2639
2677
  var styleHookSingleton = function() {
2640
2678
  var sheet = stylesheetSingleton();
2641
2679
  return function(styles, isDynamic) {
@@ -2648,7 +2686,7 @@ var styleHookSingleton = function() {
2648
2686
  };
2649
2687
  };
2650
2688
 
2651
- // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@18.3.27_react@18.3.1/node_modules/react-style-singleton/dist/es2015/component.js
2689
+ // ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.2.9_react@18.3.1/node_modules/react-style-singleton/dist/es2015/component.js
2652
2690
  var styleSingleton = function() {
2653
2691
  var useStyle = styleHookSingleton();
2654
2692
  var Sheet = function(_a) {
@@ -2659,7 +2697,7 @@ var styleSingleton = function() {
2659
2697
  return Sheet;
2660
2698
  };
2661
2699
 
2662
- // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/utils.js
2700
+ // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/utils.js
2663
2701
  var zeroGap = {
2664
2702
  left: 0,
2665
2703
  top: 0,
@@ -2694,7 +2732,7 @@ var getGapWidth = function(gapMode) {
2694
2732
  };
2695
2733
  };
2696
2734
 
2697
- // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js
2735
+ // ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js
2698
2736
  var Style = styleSingleton();
2699
2737
  var lockAttribute = "data-scroll-locked";
2700
2738
  var getStyles = function(_a, allowRelative, gapMode, important) {
@@ -2734,7 +2772,7 @@ var RemoveScrollBar = function(_a) {
2734
2772
  return React19.createElement(Style, { styles: getStyles(gap, !noRelative, gapMode, !noImportant ? "!important" : "") });
2735
2773
  };
2736
2774
 
2737
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js
2775
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js
2738
2776
  var passiveSupported = false;
2739
2777
  if (typeof window !== "undefined") {
2740
2778
  try {
@@ -2753,7 +2791,7 @@ if (typeof window !== "undefined") {
2753
2791
  var options;
2754
2792
  var nonPassive = passiveSupported ? { passive: false } : false;
2755
2793
 
2756
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/handleScroll.js
2794
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/handleScroll.js
2757
2795
  var alwaysContainsScroll = function(node) {
2758
2796
  return node.tagName === "TEXTAREA";
2759
2797
  };
@@ -2853,7 +2891,7 @@ var handleScroll = function(axis, endTarget, event, sourceDelta, noOverscroll) {
2853
2891
  return shouldCancelScroll;
2854
2892
  };
2855
2893
 
2856
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
2894
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
2857
2895
  var getTouchXY = function(event) {
2858
2896
  return "changedTouches" in event ? [event.changedTouches[0].clientX, event.changedTouches[0].clientY] : [0, 0];
2859
2897
  };
@@ -3024,10 +3062,10 @@ function getOutermostShadowParent(node) {
3024
3062
  return shadowParent;
3025
3063
  }
3026
3064
 
3027
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/sidecar.js
3065
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/sidecar.js
3028
3066
  var sidecar_default = exportSidecar(effectCar, RemoveScrollSideCar);
3029
3067
 
3030
- // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@18.3.27_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js
3068
+ // ../../node_modules/.pnpm/react-remove-scroll@2.7.2_@types+react@19.2.9_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js
3031
3069
  var ReactRemoveScroll = React21.forwardRef(function(props, ref) {
3032
3070
  return React21.createElement(RemoveScroll, __assign({}, props, { ref, sideCar: sidecar_default }));
3033
3071
  });
@@ -3155,7 +3193,7 @@ var hideOthers = function(originalTarget, parentNode, markerName) {
3155
3193
  return applyAttributeToOthers(targets, activeParentNode, markerName, "aria-hidden");
3156
3194
  };
3157
3195
 
3158
- // ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3_bwdzsrsjkenptt5ry5km67dkui/node_modules/@radix-ui/react-dialog/dist/index.mjs
3196
+ // ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2._c543yfkcelkno3idkccogkevua/node_modules/@radix-ui/react-dialog/dist/index.mjs
3159
3197
  import { Fragment as Fragment5, jsx as jsx8, jsxs } from "react/jsx-runtime";
3160
3198
  var DIALOG_NAME = "Dialog";
3161
3199
  var [createDialogContext, createDialogScope] = createContextScope(DIALOG_NAME);
@@ -6303,7 +6341,7 @@ import { useState as useState32 } from "react";
6303
6341
  import { Fragment as Fragment23, jsx as jsx82, jsxs as jsxs6 } from "react/jsx-runtime";
6304
6342
  import * as React38 from "react";
6305
6343
 
6306
- // ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3._paqmzknjxz7bmndehagaq3tw4m/node_modules/@radix-ui/react-select/dist/index.mjs
6344
+ // ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9_5n4syhs66qrtkkphe44qzgdimq/node_modules/@radix-ui/react-select/dist/index.mjs
6307
6345
  import * as React34 from "react";
6308
6346
  import * as ReactDOM4 from "react-dom";
6309
6347
 
@@ -6312,7 +6350,7 @@ function clamp(value, [min2, max2]) {
6312
6350
  return Math.min(max2, Math.max(min2, value));
6313
6351
  }
6314
6352
 
6315
- // ../../node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@1_z3knhvmqmfpwh2up5z67ro7hte/node_modules/@radix-ui/react-collection/dist/index.mjs
6353
+ // ../../node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19_532r4g3s7qk4zcqxxtldqwghxu/node_modules/@radix-ui/react-collection/dist/index.mjs
6316
6354
  import React25 from "react";
6317
6355
  import { jsx as jsx9 } from "react/jsx-runtime";
6318
6356
  import React26 from "react";
@@ -6380,7 +6418,7 @@ function createCollection(name) {
6380
6418
  ];
6381
6419
  }
6382
6420
 
6383
- // ../../node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-direction/dist/index.mjs
6421
+ // ../../node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-direction/dist/index.mjs
6384
6422
  import * as React27 from "react";
6385
6423
  import { jsx as jsx10 } from "react/jsx-runtime";
6386
6424
  var DirectionContext = React27.createContext(void 0);
@@ -6389,7 +6427,7 @@ function useDirection(localDir) {
6389
6427
  return localDir || globalDir || "ltr";
6390
6428
  }
6391
6429
 
6392
- // ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3._p4txy2d56fahetuxnqliciup5q/node_modules/@radix-ui/react-popper/dist/index.mjs
6430
+ // ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9_64rpffaf3sso2bzgb3su5jbaxm/node_modules/@radix-ui/react-popper/dist/index.mjs
6393
6431
  import * as React31 from "react";
6394
6432
 
6395
6433
  // ../../node_modules/.pnpm/@floating-ui+utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
@@ -8282,7 +8320,7 @@ var arrow3 = (options, deps) => ({
8282
8320
  options: [options, deps]
8283
8321
  });
8284
8322
 
8285
- // ../../node_modules/.pnpm/@radix-ui+react-arrow@1.1.7_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3.2_jmx3zqqqg4wfq7l2bjgl4svbuu/node_modules/@radix-ui/react-arrow/dist/index.mjs
8323
+ // ../../node_modules/.pnpm/@radix-ui+react-arrow@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9__3k7jfnq3g5zq63z6pm7q63bd4u/node_modules/@radix-ui/react-arrow/dist/index.mjs
8286
8324
  import * as React29 from "react";
8287
8325
  import { jsx as jsx11 } from "react/jsx-runtime";
8288
8326
  var NAME = "Arrow";
@@ -8304,7 +8342,7 @@ var Arrow = React29.forwardRef((props, forwardedRef) => {
8304
8342
  Arrow.displayName = NAME;
8305
8343
  var Root2 = Arrow;
8306
8344
 
8307
- // ../../node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-size/dist/index.mjs
8345
+ // ../../node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-size/dist/index.mjs
8308
8346
  import * as React30 from "react";
8309
8347
  function useSize(element) {
8310
8348
  const [size4, setSize] = React30.useState(void 0);
@@ -8341,7 +8379,7 @@ function useSize(element) {
8341
8379
  return size4;
8342
8380
  }
8343
8381
 
8344
- // ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3._p4txy2d56fahetuxnqliciup5q/node_modules/@radix-ui/react-popper/dist/index.mjs
8382
+ // ../../node_modules/.pnpm/@radix-ui+react-popper@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9_64rpffaf3sso2bzgb3su5jbaxm/node_modules/@radix-ui/react-popper/dist/index.mjs
8345
8383
  import { jsx as jsx12 } from "react/jsx-runtime";
8346
8384
  var POPPER_NAME = "Popper";
8347
8385
  var [createPopperContext, createPopperScope] = createContextScope(POPPER_NAME);
@@ -8613,7 +8651,7 @@ var Anchor = PopperAnchor;
8613
8651
  var Content2 = PopperContent;
8614
8652
  var Arrow2 = PopperArrow;
8615
8653
 
8616
- // ../../node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-use-previous/dist/index.mjs
8654
+ // ../../node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-use-previous/dist/index.mjs
8617
8655
  import * as React32 from "react";
8618
8656
  function usePrevious(value) {
8619
8657
  const ref = React32.useRef({ value, previous: value });
@@ -8626,7 +8664,7 @@ function usePrevious(value) {
8626
8664
  }, [value]);
8627
8665
  }
8628
8666
 
8629
- // ../../node_modules/.pnpm/@radix-ui+react-visually-hidden@1.2.3_@types+react-dom@18.3.7_@types+react@18.3.27__@types+re_x2sn5lgxbz6p23eskwwwehakyi/node_modules/@radix-ui/react-visually-hidden/dist/index.mjs
8667
+ // ../../node_modules/.pnpm/@radix-ui+react-visually-hidden@1.2.3_@types+react-dom@19.2.3_@types+react@19.2.9__@types+rea_wt7sdqfyqu7fggokpnlq4zaz2e/node_modules/@radix-ui/react-visually-hidden/dist/index.mjs
8630
8668
  import * as React33 from "react";
8631
8669
  import { jsx as jsx13 } from "react/jsx-runtime";
8632
8670
  var VISUALLY_HIDDEN_STYLES = Object.freeze({
@@ -8658,7 +8696,7 @@ var VisuallyHidden = React33.forwardRef(
8658
8696
  VisuallyHidden.displayName = NAME2;
8659
8697
  var Root3 = VisuallyHidden;
8660
8698
 
8661
- // ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3._paqmzknjxz7bmndehagaq3tw4m/node_modules/@radix-ui/react-select/dist/index.mjs
8699
+ // ../../node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2.9_5n4syhs66qrtkkphe44qzgdimq/node_modules/@radix-ui/react-select/dist/index.mjs
8662
8700
  import { Fragment as Fragment6, jsx as jsx14, jsxs as jsxs2 } from "react/jsx-runtime";
8663
8701
  var OPEN_KEYS = [" ", "Enter", "ArrowUp", "ArrowDown"];
8664
8702
  var SELECTION_KEYS = [" ", "Enter"];
@@ -9779,7 +9817,7 @@ function wrapArray(array, startIndex) {
9779
9817
  var Root23 = Select;
9780
9818
  var Trigger = SelectTrigger;
9781
9819
  var Value = SelectValue;
9782
- var Icon = SelectIcon;
9820
+ var Icon2 = SelectIcon;
9783
9821
  var Portal3 = SelectPortal;
9784
9822
  var Content22 = SelectContent;
9785
9823
  var Viewport = SelectViewport;
@@ -9795,7 +9833,7 @@ var Separator = SelectSeparator;
9795
9833
  import { jsx as jsx92, jsxs as jsxs7 } from "react/jsx-runtime";
9796
9834
  import * as React42 from "react";
9797
9835
 
9798
- // ../../node_modules/.pnpm/@radix-ui+react-tooltip@1.2.8_@types+react-dom@18.3.7_@types+react@18.3.27__@types+react@18.3_hd4qp76o7ebwsrfrhqb6isuuvy/node_modules/@radix-ui/react-tooltip/dist/index.mjs
9836
+ // ../../node_modules/.pnpm/@radix-ui+react-tooltip@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.9__@types+react@19.2._aqltx4jspgwttwvtzmq3z5uagy/node_modules/@radix-ui/react-tooltip/dist/index.mjs
9799
9837
  import * as React35 from "react";
9800
9838
  import { jsx as jsx15, jsxs as jsxs3 } from "react/jsx-runtime";
9801
9839
  var [createTooltipContext, createTooltipScope] = createContextScope("Tooltip", [
@@ -10290,7 +10328,7 @@ import { Fragment as Fragment42, jsx as jsx20, jsxs as jsxs16 } from "react/jsx-
10290
10328
  import { jsx as jsx21 } from "react/jsx-runtime";
10291
10329
  import * as React52 from "react";
10292
10330
 
10293
- // ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@18.3.27_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.mjs
10331
+ // ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.9_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.mjs
10294
10332
  import * as React36 from "react";
10295
10333
  import { Fragment as Fragment22, jsx as jsx16 } from "react/jsx-runtime";
10296
10334
  var REACT_LAZY_TYPE = /* @__PURE__ */ Symbol.for("react.lazy");
@@ -11238,7 +11276,7 @@ var SelectTrigger2 = React38.forwardRef(({ className, children, ...props }, ref)
11238
11276
  ...props,
11239
11277
  children: [
11240
11278
  children,
11241
- /* @__PURE__ */ jsx92(Icon, { asChild: true, children: /* @__PURE__ */ jsx92(ChevronDown, { className: "uf-h-4 uf-w-4 uf-opacity-50" }) })
11279
+ /* @__PURE__ */ jsx92(Icon2, { asChild: true, children: /* @__PURE__ */ jsx92(ChevronDown, { className: "uf-h-4 uf-w-4 uf-opacity-50" }) })
11242
11280
  ]
11243
11281
  }
11244
11282
  ));
@@ -13405,7 +13443,9 @@ export {
13405
13443
  };
13406
13444
  /*! Bundled license information:
13407
13445
 
13446
+ lucide-react/dist/esm/shared/src/utils.js:
13408
13447
  lucide-react/dist/esm/defaultAttributes.js:
13448
+ lucide-react/dist/esm/Icon.js:
13409
13449
  lucide-react/dist/esm/createLucideIcon.js:
13410
13450
  lucide-react/dist/esm/icons/arrow-left.js:
13411
13451
  lucide-react/dist/esm/icons/check.js:
@@ -13424,7 +13464,7 @@ lucide-react/dist/esm/icons/x.js:
13424
13464
  lucide-react/dist/esm/icons/zap.js:
13425
13465
  lucide-react/dist/esm/lucide-react.js:
13426
13466
  (**
13427
- * @license lucide-react v0.294.0 - ISC
13467
+ * @license lucide-react v0.454.0 - ISC
13428
13468
  *
13429
13469
  * This source code is licensed under the ISC license.
13430
13470
  * See the LICENSE file in the root directory of this source tree.