@orderly.network/ui 2.8.8 → 2.8.9

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.
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- import * as React67 from 'react';
2
- import React67__default, { forwardRef, useMemo, useRef, useCallback, useState, useEffect, useId, createContext, Fragment as Fragment$1, memo, useImperativeHandle, useContext, useReducer } from 'react';
1
+ import * as React68 from 'react';
2
+ import React68__default, { forwardRef, useMemo, useRef, useCallback, useState, useEffect, useId, createContext, Fragment as Fragment$1, memo, useImperativeHandle, useContext, useReducer } from 'react';
3
3
  import { createTV, tv as tv$1, cnBase, cn } from 'tailwind-variants';
4
4
  export { cnBase as cn } from 'tailwind-variants';
5
5
  import { Slot } from '@radix-ui/react-slot';
@@ -435,7 +435,7 @@ var boxVariants = tv({
435
435
  __size: false
436
436
  }
437
437
  });
438
- var Box = React67__default.forwardRef((props, forwardedRef) => {
438
+ var Box = React68__default.forwardRef((props, forwardedRef) => {
439
439
  const {
440
440
  asChild = false,
441
441
  as: TAG = "div",
@@ -669,7 +669,7 @@ var Spinner = (props) => {
669
669
  /* @__PURE__ */ jsx("span", { className: "oui-sr-only", children: "Loading..." })
670
670
  ] });
671
671
  };
672
- var BaseButton = React67__default.forwardRef(
672
+ var BaseButton = React68__default.forwardRef(
673
673
  (props, forwardedRef) => {
674
674
  const {
675
675
  asChild = false,
@@ -685,7 +685,7 @@ var BaseButton = React67__default.forwardRef(
685
685
  const Comp = asChild ? Slot : "button";
686
686
  const isDisabled = typeof disabled !== "undefined" ? disabled : loading;
687
687
  const iconElement = useMemo(() => {
688
- return icon ? React67__default.cloneElement(icon, {
688
+ return icon ? React68__default.cloneElement(icon, {
689
689
  size: size === "xs" ? 12 : size === "sm" ? 12 : size === "md" ? 14 : size === "lg" ? 16 : size === "xl" ? 18 : 12,
690
690
  className: "oui-text-inherit",
691
691
  opacity: loading ? 0 : 1
@@ -936,7 +936,7 @@ var buttonVariants = tv$1(
936
936
  responsiveVariants: ["md", "lg"]
937
937
  }
938
938
  );
939
- var Button = React67__default.forwardRef(
939
+ var Button = React68__default.forwardRef(
940
940
  ({
941
941
  className,
942
942
  variant,
@@ -969,7 +969,7 @@ var Button = React67__default.forwardRef(
969
969
  }
970
970
  );
971
971
  Button.displayName = "Button";
972
- var ThrottledButton = React67__default.forwardRef(({ onClick, throttleDuration = 700, ...props }, ref) => {
972
+ var ThrottledButton = React68__default.forwardRef(({ onClick, throttleDuration = 700, ...props }, ref) => {
973
973
  const lastCall = useRef(0);
974
974
  const throttle = useCallback(
975
975
  (delay, fn) => {
@@ -1056,7 +1056,7 @@ var gridVariants = tv({
1056
1056
  // autoFlow: "row",
1057
1057
  }
1058
1058
  });
1059
- var Grid = React67__default.forwardRef((props, ref) => {
1059
+ var Grid = React68__default.forwardRef((props, ref) => {
1060
1060
  const { className, cols, rows, gap, gapX, gapY, autoFlow, ...rest } = props;
1061
1061
  return /* @__PURE__ */ jsx(
1062
1062
  Box,
@@ -1150,7 +1150,7 @@ var iconVariants = tv$1({
1150
1150
  color: "black"
1151
1151
  }
1152
1152
  });
1153
- var BaseIcon = React67__default.forwardRef(
1153
+ var BaseIcon = React68__default.forwardRef(
1154
1154
  (props, ref) => {
1155
1155
  const {
1156
1156
  size = 24,
@@ -1185,6 +1185,9 @@ var avatarVariants = tv({
1185
1185
  },
1186
1186
  variants: {
1187
1187
  size: {
1188
+ "3xs": {
1189
+ root: "oui-w-3.5 oui-h-3.5"
1190
+ },
1188
1191
  "2xs": {
1189
1192
  root: "oui-w-4 oui-h-4"
1190
1193
  },
@@ -1209,7 +1212,7 @@ var avatarVariants = tv({
1209
1212
  size: "sm"
1210
1213
  }
1211
1214
  });
1212
- var AvatarBase = React67.forwardRef(({ className, size, ...props }, ref) => {
1215
+ var AvatarBase = React68.forwardRef(({ className, size, ...props }, ref) => {
1213
1216
  const { root } = avatarVariants({ size });
1214
1217
  return /* @__PURE__ */ jsx(
1215
1218
  AvatarPrimitive.Root,
@@ -1221,7 +1224,7 @@ var AvatarBase = React67.forwardRef(({ className, size, ...props }, ref) => {
1221
1224
  );
1222
1225
  });
1223
1226
  AvatarBase.displayName = AvatarPrimitive.Root.displayName;
1224
- var AvatarImage = React67.forwardRef(({ className, ...props }, ref) => {
1227
+ var AvatarImage = React68.forwardRef(({ className, ...props }, ref) => {
1225
1228
  const { image } = avatarVariants();
1226
1229
  return /* @__PURE__ */ jsx(
1227
1230
  AvatarPrimitive.Image,
@@ -1233,12 +1236,12 @@ var AvatarImage = React67.forwardRef(({ className, ...props }, ref) => {
1233
1236
  );
1234
1237
  });
1235
1238
  AvatarImage.displayName = AvatarPrimitive.Image.displayName;
1236
- var AvatarFallback = React67.forwardRef(({ className, ...props }, ref) => {
1239
+ var AvatarFallback = React68.forwardRef(({ className, ...props }, ref) => {
1237
1240
  const { fallback } = avatarVariants({ className });
1238
1241
  return /* @__PURE__ */ jsx(AvatarPrimitive.Fallback, { ref, className: fallback(), ...props });
1239
1242
  });
1240
1243
  AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
1241
- var Avatar = React67.forwardRef((props, ref) => {
1244
+ var Avatar = React68.forwardRef((props, ref) => {
1242
1245
  const { size, src, fallback, delayMs, alt, onLoadingStatusChange, ...rest } = props;
1243
1246
  return /* @__PURE__ */ jsxs(AvatarBase, { ...rest, ref, size, children: [
1244
1247
  /* @__PURE__ */ jsx(
@@ -1252,7 +1255,7 @@ var Avatar = React67.forwardRef((props, ref) => {
1252
1255
  typeof fallback !== "undefined" && /* @__PURE__ */ jsx(AvatarFallback, { delayMs, children: fallback })
1253
1256
  ] });
1254
1257
  });
1255
- var EVMAvatar = React67.forwardRef((props, ref) => {
1258
+ var EVMAvatar = React68.forwardRef((props, ref) => {
1256
1259
  const { address, ...rest } = props;
1257
1260
  const src = useMemo(() => makeBlockie(address), [props.address]);
1258
1261
  return /* @__PURE__ */ jsx(Avatar, { ...rest, src });
@@ -1319,7 +1322,7 @@ var CombineIcon = (props) => {
1319
1322
  subElement
1320
1323
  ] });
1321
1324
  };
1322
- var CloseIcon = React67__default.forwardRef(
1325
+ var CloseIcon = React68__default.forwardRef(
1323
1326
  (props, ref) => {
1324
1327
  const { opacity = 0.54, ...rest } = props;
1325
1328
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1333,7 +1336,7 @@ var CloseIcon = React67__default.forwardRef(
1333
1336
  }
1334
1337
  );
1335
1338
  CloseIcon.displayName = "CloseIcon";
1336
- var BaseIconWithPath = React67__default.forwardRef((props, ref) => {
1339
+ var BaseIconWithPath = React68__default.forwardRef((props, ref) => {
1337
1340
  const { opacity = 0.54, d, ...rest } = props;
1338
1341
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1339
1342
  "path",
@@ -1346,7 +1349,7 @@ var BaseIconWithPath = React67__default.forwardRef((props, ref) => {
1346
1349
  }
1347
1350
  ) });
1348
1351
  });
1349
- var CheckIcon = React67__default.forwardRef(
1352
+ var CheckIcon = React68__default.forwardRef(
1350
1353
  (props, ref) => {
1351
1354
  const { opacity = 0.54, ...rest } = props;
1352
1355
  return /* @__PURE__ */ jsx(
@@ -1360,7 +1363,7 @@ var CheckIcon = React67__default.forwardRef(
1360
1363
  }
1361
1364
  );
1362
1365
  CheckIcon.displayName = "CheckIcon";
1363
- var ChevronDownIcon = React67__default.forwardRef(
1366
+ var ChevronDownIcon = React68__default.forwardRef(
1364
1367
  (props, ref) => {
1365
1368
  const { opacity = 0.54, ...rest } = props;
1366
1369
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1374,7 +1377,7 @@ var ChevronDownIcon = React67__default.forwardRef(
1374
1377
  }
1375
1378
  );
1376
1379
  ChevronDownIcon.displayName = "ChevronDownIcon";
1377
- var ChevronUpIcon = React67__default.forwardRef(
1380
+ var ChevronUpIcon = React68__default.forwardRef(
1378
1381
  (props, ref) => {
1379
1382
  const { opacity = 0.54, ...rest } = props;
1380
1383
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1388,7 +1391,7 @@ var ChevronUpIcon = React67__default.forwardRef(
1388
1391
  }
1389
1392
  );
1390
1393
  ChevronUpIcon.displayName = "ChevronUpIcon";
1391
- var CaretUpIcon = React67__default.forwardRef(
1394
+ var CaretUpIcon = React68__default.forwardRef(
1392
1395
  (props, ref) => {
1393
1396
  const { opacity = 0.54, ...rest } = props;
1394
1397
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1402,7 +1405,7 @@ var CaretUpIcon = React67__default.forwardRef(
1402
1405
  }
1403
1406
  );
1404
1407
  CaretUpIcon.displayName = "CaretUpIcon";
1405
- var CaretDownIcon = React67__default.forwardRef(
1408
+ var CaretDownIcon = React68__default.forwardRef(
1406
1409
  (props, ref) => {
1407
1410
  return /* @__PURE__ */ jsx(
1408
1411
  BaseIconWithPath,
@@ -1415,7 +1418,7 @@ var CaretDownIcon = React67__default.forwardRef(
1415
1418
  }
1416
1419
  );
1417
1420
  CaretDownIcon.displayName = "CaretDownIcon";
1418
- var CaretLeftIcon = React67__default.forwardRef(
1421
+ var CaretLeftIcon = React68__default.forwardRef(
1419
1422
  (props, ref) => {
1420
1423
  const { opacity = 0.54, ...rest } = props;
1421
1424
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1429,7 +1432,7 @@ var CaretLeftIcon = React67__default.forwardRef(
1429
1432
  }
1430
1433
  );
1431
1434
  CaretLeftIcon.displayName = "CaretLeftIcon";
1432
- var CaretRightIcon = React67__default.forwardRef(
1435
+ var CaretRightIcon = React68__default.forwardRef(
1433
1436
  (props, ref) => {
1434
1437
  const { opacity = 0.54, ...rest } = props;
1435
1438
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1443,7 +1446,7 @@ var CaretRightIcon = React67__default.forwardRef(
1443
1446
  }
1444
1447
  );
1445
1448
  CaretRightIcon.displayName = "CaretRightIcon";
1446
- var ChevronLeftIcon = React67__default.forwardRef(
1449
+ var ChevronLeftIcon = React68__default.forwardRef(
1447
1450
  (props, ref) => {
1448
1451
  return /* @__PURE__ */ jsx(
1449
1452
  BaseIconWithPath,
@@ -1456,7 +1459,7 @@ var ChevronLeftIcon = React67__default.forwardRef(
1456
1459
  }
1457
1460
  );
1458
1461
  ChevronLeftIcon.displayName = "ChevronLeftIcon";
1459
- var ChevronRightIcon = React67__default.forwardRef(
1462
+ var ChevronRightIcon = React68__default.forwardRef(
1460
1463
  (props, ref) => {
1461
1464
  const { opacity = 0.54, ...rest } = props;
1462
1465
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1470,7 +1473,7 @@ var ChevronRightIcon = React67__default.forwardRef(
1470
1473
  }
1471
1474
  );
1472
1475
  ChevronRightIcon.displayName = "ChevronRightIcon";
1473
- var CalendarMinusIcon = React67__default.forwardRef(
1476
+ var CalendarMinusIcon = React68__default.forwardRef(
1474
1477
  (props, ref) => {
1475
1478
  return /* @__PURE__ */ jsx(
1476
1479
  BaseIconWithPath,
@@ -1483,7 +1486,7 @@ var CalendarMinusIcon = React67__default.forwardRef(
1483
1486
  }
1484
1487
  );
1485
1488
  CalendarMinusIcon.displayName = "CalendarMinusIcon";
1486
- var SettingIcon = React67__default.forwardRef(
1489
+ var SettingIcon = React68__default.forwardRef(
1487
1490
  (props, ref) => {
1488
1491
  const { opacity = 0.54, ...rest } = props;
1489
1492
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1497,7 +1500,7 @@ var SettingIcon = React67__default.forwardRef(
1497
1500
  }
1498
1501
  );
1499
1502
  SettingIcon.displayName = "SettingIcon";
1500
- var CloseSquareFillIcon = React67__default.forwardRef((props, ref) => {
1503
+ var CloseSquareFillIcon = React68__default.forwardRef((props, ref) => {
1501
1504
  const { opacity = 0.54, ...rest } = props;
1502
1505
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1503
1506
  "path",
@@ -1509,7 +1512,7 @@ var CloseSquareFillIcon = React67__default.forwardRef((props, ref) => {
1509
1512
  ) });
1510
1513
  });
1511
1514
  CloseSquareFillIcon.displayName = "CloseSquareFillIcon";
1512
- var CloseCircleFillIcon = React67__default.forwardRef((props, ref) => {
1515
+ var CloseCircleFillIcon = React68__default.forwardRef((props, ref) => {
1513
1516
  const { opacity = 0.54, ...rest } = props;
1514
1517
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1515
1518
  "path",
@@ -1521,7 +1524,7 @@ var CloseCircleFillIcon = React67__default.forwardRef((props, ref) => {
1521
1524
  ) });
1522
1525
  });
1523
1526
  CloseCircleFillIcon.displayName = "CloseCircleFillIcon";
1524
- var CheckedCircleFillIcon = React67__default.forwardRef((props, ref) => {
1527
+ var CheckedCircleFillIcon = React68__default.forwardRef((props, ref) => {
1525
1528
  return /* @__PURE__ */ jsx(
1526
1529
  BaseIconWithPath,
1527
1530
  {
@@ -1532,7 +1535,7 @@ var CheckedCircleFillIcon = React67__default.forwardRef((props, ref) => {
1532
1535
  );
1533
1536
  });
1534
1537
  CheckedCircleFillIcon.displayName = "CheckedCircleFillIcon";
1535
- var CheckedSquareFillIcon = React67__default.forwardRef((props, ref) => {
1538
+ var CheckedSquareFillIcon = React68__default.forwardRef((props, ref) => {
1536
1539
  const { opacity = 0.54, ...rest } = props;
1537
1540
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1538
1541
  "path",
@@ -1546,7 +1549,7 @@ var CheckedSquareFillIcon = React67__default.forwardRef((props, ref) => {
1546
1549
  ) });
1547
1550
  });
1548
1551
  CheckedSquareFillIcon.displayName = "CheckSquareFillIcon";
1549
- var CheckSquareEmptyIcon = React67__default.forwardRef(
1552
+ var CheckSquareEmptyIcon = React68__default.forwardRef(
1550
1553
  (props, ref) => {
1551
1554
  const { opacity = 0.54, ...rest } = props;
1552
1555
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1562,7 +1565,7 @@ var CheckSquareEmptyIcon = React67__default.forwardRef(
1562
1565
  }
1563
1566
  );
1564
1567
  CheckSquareEmptyIcon.displayName = "CheckSquareEmptyIcon";
1565
- var PlusIcon = React67__default.forwardRef(
1568
+ var PlusIcon = React68__default.forwardRef(
1566
1569
  (props, ref) => {
1567
1570
  const { opacity = 0.54, ...rest } = props;
1568
1571
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1576,7 +1579,7 @@ var PlusIcon = React67__default.forwardRef(
1576
1579
  }
1577
1580
  );
1578
1581
  PlusIcon.displayName = "PlusIcon";
1579
- var ReduceIcon = React67__default.forwardRef(
1582
+ var ReduceIcon = React68__default.forwardRef(
1580
1583
  (props, ref) => {
1581
1584
  const { opacity = 0.54, ...rest } = props;
1582
1585
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1594,7 +1597,7 @@ var ReduceIcon = React67__default.forwardRef(
1594
1597
  }
1595
1598
  );
1596
1599
  ReduceIcon.displayName = "ReduceIcon";
1597
- var CircleOutlinedIcon = React67__default.forwardRef((props, ref) => {
1600
+ var CircleOutlinedIcon = React68__default.forwardRef((props, ref) => {
1598
1601
  const { opacity = 0.54, ...rest } = props;
1599
1602
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1600
1603
  "path",
@@ -1606,7 +1609,7 @@ var CircleOutlinedIcon = React67__default.forwardRef((props, ref) => {
1606
1609
  ) });
1607
1610
  });
1608
1611
  CircleOutlinedIcon.displayName = "CircleOutlinedIcon";
1609
- var SquareOutlinedIcon = React67__default.forwardRef((props, ref) => {
1612
+ var SquareOutlinedIcon = React68__default.forwardRef((props, ref) => {
1610
1613
  const { opacity = 0.54, ...rest } = props;
1611
1614
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1612
1615
  "path",
@@ -1618,7 +1621,7 @@ var SquareOutlinedIcon = React67__default.forwardRef((props, ref) => {
1618
1621
  ) });
1619
1622
  });
1620
1623
  SquareOutlinedIcon.displayName = "SquareOutlinedIcon";
1621
- var ExclamationFillIcon = React67__default.forwardRef((props, ref) => {
1624
+ var ExclamationFillIcon = React68__default.forwardRef((props, ref) => {
1622
1625
  const { ...rest } = props;
1623
1626
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1624
1627
  "path",
@@ -1629,7 +1632,7 @@ var ExclamationFillIcon = React67__default.forwardRef((props, ref) => {
1629
1632
  ) });
1630
1633
  });
1631
1634
  ExclamationFillIcon.displayName = "ExclamationFillIcon";
1632
- var QuestionFillIcon = React67__default.forwardRef(
1635
+ var QuestionFillIcon = React68__default.forwardRef(
1633
1636
  (props, ref) => {
1634
1637
  const { opacity = 0.54, ...rest } = props;
1635
1638
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1643,7 +1646,7 @@ var QuestionFillIcon = React67__default.forwardRef(
1643
1646
  }
1644
1647
  );
1645
1648
  QuestionFillIcon.displayName = "ExclamationFillIcon";
1646
- var ArrowLeftRightIcon = React67__default.forwardRef((props, ref) => {
1649
+ var ArrowLeftRightIcon = React68__default.forwardRef((props, ref) => {
1647
1650
  return /* @__PURE__ */ jsx(
1648
1651
  BaseIconWithPath,
1649
1652
  {
@@ -1654,7 +1657,7 @@ var ArrowLeftRightIcon = React67__default.forwardRef((props, ref) => {
1654
1657
  );
1655
1658
  });
1656
1659
  ArrowLeftRightIcon.displayName = "ArrowLeftRightIcon";
1657
- var ArrowDownUpIcon = React67__default.forwardRef(
1660
+ var ArrowDownUpIcon = React68__default.forwardRef(
1658
1661
  (props, ref) => {
1659
1662
  return /* @__PURE__ */ jsx(
1660
1663
  BaseIconWithPath,
@@ -1667,7 +1670,7 @@ var ArrowDownUpIcon = React67__default.forwardRef(
1667
1670
  }
1668
1671
  );
1669
1672
  ArrowDownUpIcon.displayName = "ArrowDownUpIconIcon";
1670
- var ArrowUpSquareFillIcon = React67__default.forwardRef((props, ref) => {
1673
+ var ArrowUpSquareFillIcon = React68__default.forwardRef((props, ref) => {
1671
1674
  return /* @__PURE__ */ jsx(
1672
1675
  BaseIconWithPath,
1673
1676
  {
@@ -1678,7 +1681,7 @@ var ArrowUpSquareFillIcon = React67__default.forwardRef((props, ref) => {
1678
1681
  );
1679
1682
  });
1680
1683
  ArrowUpSquareFillIcon.displayName = "ArrowUpSquareFillIconIcon";
1681
- var ArrowDownSquareFillIcon = React67__default.forwardRef((props, ref) => {
1684
+ var ArrowDownSquareFillIcon = React68__default.forwardRef((props, ref) => {
1682
1685
  const { opacity = 0.54, ...rest } = props;
1683
1686
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
1684
1687
  "path",
@@ -1690,7 +1693,7 @@ var ArrowDownSquareFillIcon = React67__default.forwardRef((props, ref) => {
1690
1693
  ) });
1691
1694
  });
1692
1695
  ArrowDownSquareFillIcon.displayName = "ArrowDownSquareFillIconIcon";
1693
- var ArrowLeftRightSquareFill = React67__default.forwardRef((props, ref) => {
1696
+ var ArrowLeftRightSquareFill = React68__default.forwardRef((props, ref) => {
1694
1697
  return /* @__PURE__ */ jsx(
1695
1698
  "svg",
1696
1699
  {
@@ -1716,7 +1719,7 @@ var ArrowLeftRightSquareFill = React67__default.forwardRef((props, ref) => {
1716
1719
  if (process.env.NODE_ENV !== "production") {
1717
1720
  ArrowLeftRightSquareFill.displayName = "ArrowLeftRightSquareFill";
1718
1721
  }
1719
- var ArrowRightUpSquareFillIcon = React67__default.forwardRef((props, ref) => {
1722
+ var ArrowRightUpSquareFillIcon = React68__default.forwardRef((props, ref) => {
1720
1723
  return /* @__PURE__ */ jsx(
1721
1724
  BaseIconWithPath,
1722
1725
  {
@@ -1892,7 +1895,7 @@ var BattleSolidInactiveIcon = (props) => {
1892
1895
  }
1893
1896
  ) });
1894
1897
  };
1895
- var FeeTierIcon = React67__default.forwardRef(
1898
+ var FeeTierIcon = React68__default.forwardRef(
1896
1899
  (props, ref) => {
1897
1900
  return /* @__PURE__ */ jsx(
1898
1901
  BaseIconWithPath,
@@ -1961,7 +1964,7 @@ var EarnInactiveIcon = (props) => {
1961
1964
  )
1962
1965
  ] }) });
1963
1966
  };
1964
- var EditIcon = React67__default.forwardRef(
1967
+ var EditIcon = React68__default.forwardRef(
1965
1968
  (props, ref) => {
1966
1969
  const { opacity = 0.54, ...rest } = props;
1967
1970
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1975,7 +1978,7 @@ var EditIcon = React67__default.forwardRef(
1975
1978
  }
1976
1979
  );
1977
1980
  EditIcon.displayName = "EditIcon";
1978
- var EyeIcon = React67__default.forwardRef(
1981
+ var EyeIcon = React68__default.forwardRef(
1979
1982
  (props, ref) => {
1980
1983
  const { opacity = 0.54, ...rest } = props;
1981
1984
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -1989,7 +1992,7 @@ var EyeIcon = React67__default.forwardRef(
1989
1992
  }
1990
1993
  );
1991
1994
  EyeIcon.displayName = "EyeIcon";
1992
- var ShareIcon = React67__default.forwardRef(
1995
+ var ShareIcon = React68__default.forwardRef(
1993
1996
  (props, ref) => {
1994
1997
  const { opacity = 0.54, ...rest } = props;
1995
1998
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -2003,7 +2006,7 @@ var ShareIcon = React67__default.forwardRef(
2003
2006
  }
2004
2007
  );
2005
2008
  ShareIcon.displayName = "ShareIcon";
2006
- var EyeCloseIcon = React67__default.forwardRef(
2009
+ var EyeCloseIcon = React68__default.forwardRef(
2007
2010
  (props, ref) => {
2008
2011
  const { opacity = 0.54, ...rest } = props;
2009
2012
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -2017,7 +2020,7 @@ var EyeCloseIcon = React67__default.forwardRef(
2017
2020
  }
2018
2021
  );
2019
2022
  EyeCloseIcon.displayName = "EyeCloseIcon";
2020
- var RefreshIcon = React67__default.forwardRef(
2023
+ var RefreshIcon = React68__default.forwardRef(
2021
2024
  (props, ref) => {
2022
2025
  const { opacity = 0.54, ...rest } = props;
2023
2026
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -2175,7 +2178,7 @@ var EsOrderlyIcon = (props) => {
2175
2178
  }
2176
2179
  );
2177
2180
  };
2178
- var InfoCircleIcon = React67__default.forwardRef(
2181
+ var InfoCircleIcon = React68__default.forwardRef(
2179
2182
  (props, ref) => {
2180
2183
  const { className, opacity = 0.36, ...rest } = props;
2181
2184
  return /* @__PURE__ */ jsx(
@@ -2209,7 +2212,7 @@ var WalletIcon = (props) => {
2209
2212
  }, [props.name]);
2210
2213
  return /* @__PURE__ */ jsx(Avatar, { size: props.size, src: url, alt: `${props.name}` });
2211
2214
  };
2212
- var CalendarIcon = React67__default.forwardRef(
2215
+ var CalendarIcon = React68__default.forwardRef(
2213
2216
  (props, ref) => {
2214
2217
  return /* @__PURE__ */ jsx(
2215
2218
  BaseIconWithPath,
@@ -2222,7 +2225,7 @@ var CalendarIcon = React67__default.forwardRef(
2222
2225
  }
2223
2226
  );
2224
2227
  CalendarIcon.displayName = "CaretLeftIcon";
2225
- var CopyIcon = React67__default.forwardRef(
2228
+ var CopyIcon = React68__default.forwardRef(
2226
2229
  (props, ref) => {
2227
2230
  return /* @__PURE__ */ jsx(
2228
2231
  BaseIconWithPath,
@@ -2235,7 +2238,7 @@ var CopyIcon = React67__default.forwardRef(
2235
2238
  }
2236
2239
  );
2237
2240
  CopyIcon.displayName = "CopyIcon";
2238
- var ServerFillIcon = React67__default.forwardRef(
2241
+ var ServerFillIcon = React68__default.forwardRef(
2239
2242
  (props, ref) => {
2240
2243
  return /* @__PURE__ */ jsx(
2241
2244
  BaseIconWithPath,
@@ -2248,7 +2251,7 @@ var ServerFillIcon = React67__default.forwardRef(
2248
2251
  }
2249
2252
  );
2250
2253
  ServerFillIcon.displayName = "ServerFillIcon";
2251
- var SortingAscIcon = React67__default.forwardRef(
2254
+ var SortingAscIcon = React68__default.forwardRef(
2252
2255
  (props, ref) => {
2253
2256
  const { opacity = 0.54, ...rest } = props;
2254
2257
  return /* @__PURE__ */ jsxs(BaseIcon, { ref, ...rest, children: [
@@ -2272,7 +2275,7 @@ var SortingAscIcon = React67__default.forwardRef(
2272
2275
  }
2273
2276
  );
2274
2277
  SortingAscIcon.displayName = "SortingAscIcon";
2275
- var SortingDescIcon = React67__default.forwardRef(
2278
+ var SortingDescIcon = React68__default.forwardRef(
2276
2279
  (props, ref) => {
2277
2280
  const { opacity = 0.54, ...rest } = props;
2278
2281
  return /* @__PURE__ */ jsxs(BaseIcon, { ref, ...rest, children: [
@@ -2296,7 +2299,7 @@ var SortingDescIcon = React67__default.forwardRef(
2296
2299
  }
2297
2300
  );
2298
2301
  SortingDescIcon.displayName = "SortingDescIcon";
2299
- var ArrowUpShortIcon = React67__default.forwardRef(
2302
+ var ArrowUpShortIcon = React68__default.forwardRef(
2300
2303
  (props, ref) => {
2301
2304
  return /* @__PURE__ */ jsx(
2302
2305
  BaseIconWithPath,
@@ -2308,7 +2311,7 @@ var ArrowUpShortIcon = React67__default.forwardRef(
2308
2311
  );
2309
2312
  }
2310
2313
  );
2311
- var ArrowDownShortIcon = React67__default.forwardRef(
2314
+ var ArrowDownShortIcon = React68__default.forwardRef(
2312
2315
  (props, ref) => {
2313
2316
  return /* @__PURE__ */ jsx(
2314
2317
  BaseIconWithPath,
@@ -2320,7 +2323,7 @@ var ArrowDownShortIcon = React67__default.forwardRef(
2320
2323
  );
2321
2324
  }
2322
2325
  );
2323
- var ArrowLeftShortIcon = React67__default.forwardRef(
2326
+ var ArrowLeftShortIcon = React68__default.forwardRef(
2324
2327
  (props, ref) => {
2325
2328
  return /* @__PURE__ */ jsx(
2326
2329
  BaseIconWithPath,
@@ -2332,7 +2335,7 @@ var ArrowLeftShortIcon = React67__default.forwardRef(
2332
2335
  );
2333
2336
  }
2334
2337
  );
2335
- var ArrowRightShortIcon = React67__default.forwardRef(
2338
+ var ArrowRightShortIcon = React68__default.forwardRef(
2336
2339
  (props, ref) => {
2337
2340
  return /* @__PURE__ */ jsx(
2338
2341
  BaseIconWithPath,
@@ -2348,7 +2351,7 @@ ArrowUpShortIcon.displayName = "ArrowUpShortIcon";
2348
2351
  ArrowDownShortIcon.displayName = "ArrowDownShortIcon";
2349
2352
  ArrowLeftShortIcon.displayName = "ArrowLeftShortIcon";
2350
2353
  ArrowRightShortIcon.displayName = "ArrowRightShortIcon";
2351
- var SortingIcon = React67__default.forwardRef(
2354
+ var SortingIcon = React68__default.forwardRef(
2352
2355
  (props, ref) => {
2353
2356
  const { opacity = 0.54, ...rest } = props;
2354
2357
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -3394,16 +3397,18 @@ var StarChildChatInactiveIcon = (props) => {
3394
3397
  )
3395
3398
  ] });
3396
3399
  };
3397
- var CloseRoundFillIcon = (props) => {
3398
- return /* @__PURE__ */ jsx(BaseIcon, { ...props, viewBox: "0 0 28 28", children: /* @__PURE__ */ jsx(
3400
+ var CloseRoundFillIcon = React68__default.forwardRef((props, ref) => {
3401
+ const { opacity = 0.54, ...rest } = props;
3402
+ return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, viewBox: "0 0 28 28", children: /* @__PURE__ */ jsx(
3399
3403
  "path",
3400
3404
  {
3401
3405
  d: "M13.9987 2.27881C7.55546 2.27881 2.33206 7.50198 2.33206 13.9455C2.33206 20.389 7.55546 25.6121 13.9987 25.6121C20.4422 25.6121 25.6654 20.389 25.6654 13.9455C25.6654 7.50198 20.4422 2.27881 13.9987 2.27881ZM10.4987 9.27881C10.7972 9.27881 11.1095 9.37915 11.3373 9.60665L13.9987 12.2678L16.6599 9.60665C16.8886 9.37915 17.2001 9.27881 17.4987 9.27881C17.7974 9.27881 18.1089 9.37915 18.3376 9.60665C18.7926 10.0628 18.7926 10.8281 18.3376 11.2843L15.6764 13.9455L18.3376 16.6066C18.7926 17.0628 18.7926 17.8281 18.3376 18.2843C17.8814 18.7393 17.1161 18.7393 16.6599 18.2843L13.9987 15.6231L11.3373 18.2843C10.8817 18.7393 10.1158 18.7393 9.66012 18.2843C9.20454 17.8281 9.20454 17.0628 9.66012 16.6066L12.3211 13.9455L9.66012 11.2843C9.20454 10.8281 9.20454 10.0628 9.66012 9.60665C9.88809 9.37915 10.2002 9.27881 10.4987 9.27881Z",
3402
- fill: "white",
3403
- fillOpacity: "0.54"
3406
+ fill: "currentcolor",
3407
+ fillOpacity: opacity
3404
3408
  }
3405
3409
  ) });
3406
- };
3410
+ });
3411
+ CloseRoundFillIcon.displayName = "CloseRoundFillIcon";
3407
3412
  var SelectedChoicesFillIcon = (props) => {
3408
3413
  return /* @__PURE__ */ jsx(BaseIcon, { ...props, viewBox: "0 0 14 14", children: /* @__PURE__ */ jsx(
3409
3414
  "path",
@@ -3592,7 +3597,7 @@ function EmptyStateIcon() {
3592
3597
  );
3593
3598
  }
3594
3599
  var emptyData_default = EmptyStateIcon;
3595
- var VectorIcon = React67__default.forwardRef(
3600
+ var VectorIcon = React68__default.forwardRef(
3596
3601
  (props, ref) => {
3597
3602
  return /* @__PURE__ */ jsx(
3598
3603
  "svg",
@@ -3690,7 +3695,7 @@ var PersonIcon = () => {
3690
3695
  }
3691
3696
  );
3692
3697
  };
3693
- var SettingFillIcon = React67__default.forwardRef(
3698
+ var SettingFillIcon = React68__default.forwardRef(
3694
3699
  (props, ref) => {
3695
3700
  const { opacity = 0.54, ...rest } = props;
3696
3701
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -3725,7 +3730,7 @@ var TradingLeftNavIcon = (props) => {
3725
3730
  }
3726
3731
  );
3727
3732
  };
3728
- var VaultsIcon = React67__default.forwardRef(
3733
+ var VaultsIcon = React68__default.forwardRef(
3729
3734
  (props, ref) => {
3730
3735
  return /* @__PURE__ */ jsxs(
3731
3736
  "svg",
@@ -3796,7 +3801,7 @@ var LeftNavVaultsIcon = forwardRef(
3796
3801
  if (process.env.NODE_ENV !== "production") {
3797
3802
  LeftNavVaultsIcon.displayName = "LeftNavVaultsIcon";
3798
3803
  }
3799
- var NewsFillIcon = React67__default.forwardRef(
3804
+ var NewsFillIcon = React68__default.forwardRef(
3800
3805
  (props, ref) => {
3801
3806
  const { opacity = 1, ...rest } = props;
3802
3807
  return /* @__PURE__ */ jsx(BaseIcon, { ref, ...rest, children: /* @__PURE__ */ jsx(
@@ -3810,7 +3815,7 @@ var NewsFillIcon = React67__default.forwardRef(
3810
3815
  }
3811
3816
  );
3812
3817
  NewsFillIcon.displayName = "NewsFillIcon";
3813
- var BellIcon = React67__default.forwardRef(
3818
+ var BellIcon = React68__default.forwardRef(
3814
3819
  (props, ref) => {
3815
3820
  return /* @__PURE__ */ jsx(
3816
3821
  BaseIconWithPath,
@@ -3891,7 +3896,7 @@ var ReferralSolidIcon = (props) => {
3891
3896
  }
3892
3897
  ) });
3893
3898
  };
3894
- var AddCircleIcon = React67__default.forwardRef(
3899
+ var AddCircleIcon = React68__default.forwardRef(
3895
3900
  (props, ref) => {
3896
3901
  const { className, opacity = 0.54, ...rest } = props;
3897
3902
  return /* @__PURE__ */ jsxs(
@@ -3984,7 +3989,7 @@ var textVariants = tv({
3984
3989
  }
3985
3990
  }
3986
3991
  });
3987
- var Text = React67__default.forwardRef((props, forwardedRef) => {
3992
+ var Text = React68__default.forwardRef((props, forwardedRef) => {
3988
3993
  const {
3989
3994
  children,
3990
3995
  className,
@@ -4073,7 +4078,7 @@ var isTextRule = (rule) => {
4073
4078
  };
4074
4079
  var DEFAULT_SYMBOL_FORMAT = "base-quote";
4075
4080
  var DEFAULT_DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";
4076
- var FormattedText = React67__default.forwardRef(
4081
+ var FormattedText = React68__default.forwardRef(
4077
4082
  (props, ref) => {
4078
4083
  const {
4079
4084
  rule,
@@ -4185,7 +4190,7 @@ var gradientTextVariants = tv({
4185
4190
  }
4186
4191
  }
4187
4192
  });
4188
- var GradientText = React67__default.forwardRef((props, ref) => {
4193
+ var GradientText = React68__default.forwardRef((props, ref) => {
4189
4194
  const { color, className, angle, ...rest } = props;
4190
4195
  const style = parseAngleProps({ angle });
4191
4196
  return (
@@ -4364,7 +4369,7 @@ var statisticVariants = tv({
4364
4369
  // color: "default",
4365
4370
  }
4366
4371
  });
4367
- var StatisticLabel = React67__default.forwardRef(
4372
+ var StatisticLabel = React68__default.forwardRef(
4368
4373
  (props, ref) => {
4369
4374
  const { label: labelClassName } = statisticVariants({});
4370
4375
  return /* @__PURE__ */ jsx(
@@ -4380,7 +4385,7 @@ var StatisticLabel = React67__default.forwardRef(
4380
4385
  }
4381
4386
  );
4382
4387
  StatisticLabel.displayName = "StatisticLabel";
4383
- var Statistic = React67__default.forwardRef((props, ref) => {
4388
+ var Statistic = React68__default.forwardRef((props, ref) => {
4384
4389
  const { label, valueProps, align, className, classNames, children, ...rest } = props;
4385
4390
  const { root, value: valueClassName } = statisticVariants({ align });
4386
4391
  const value = useMemo(() => {
@@ -4723,7 +4728,7 @@ var inputVariants = tv(
4723
4728
  responsiveVariants: ["md", "lg"]
4724
4729
  }
4725
4730
  );
4726
- var Input = React67__default.forwardRef((props, ref) => {
4731
+ var Input = React68__default.forwardRef((props, ref) => {
4727
4732
  const {
4728
4733
  size,
4729
4734
  disabled,
@@ -4794,7 +4799,7 @@ var Input = React67__default.forwardRef((props, ref) => {
4794
4799
  )
4795
4800
  ] });
4796
4801
  });
4797
- var ClearButton = React67__default.forwardRef((props, ref) => {
4802
+ var ClearButton = React68__default.forwardRef((props, ref) => {
4798
4803
  return /* @__PURE__ */ jsx(
4799
4804
  "button",
4800
4805
  {
@@ -4855,7 +4860,7 @@ var popoverVariants = tv({
4855
4860
  var PopoverRoot = PopoverPrimitive.Root;
4856
4861
  var PopoverTrigger = PopoverPrimitive.Trigger;
4857
4862
  var PopoverAnchor = PopoverPrimitive.Anchor;
4858
- var PopoverContent = React67.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx(
4863
+ var PopoverContent = React68.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx(
4859
4864
  PopoverPrimitive.Content,
4860
4865
  {
4861
4866
  ref,
@@ -4906,7 +4911,7 @@ var scrollAreaVariants = tv({
4906
4911
  }
4907
4912
  }
4908
4913
  });
4909
- var ScrollArea = React67__default.forwardRef((oriProps, ref) => {
4914
+ var ScrollArea = React68__default.forwardRef((oriProps, ref) => {
4910
4915
  const {
4911
4916
  className,
4912
4917
  classNames,
@@ -4936,7 +4941,7 @@ var ScrollArea = React67__default.forwardRef((oriProps, ref) => {
4936
4941
  );
4937
4942
  });
4938
4943
  ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
4939
- var ScrollBar = React67__default.forwardRef((oriProps, ref) => {
4944
+ var ScrollBar = React68__default.forwardRef((oriProps, ref) => {
4940
4945
  const { className, orientation = "vertical", ...props } = oriProps;
4941
4946
  const { bar, tumb } = scrollAreaVariants({ className, orientation });
4942
4947
  return /* @__PURE__ */ jsx(
@@ -5109,7 +5114,7 @@ var selectVariants = tv(
5109
5114
  var SelectRoot = SelectPrimitive.Root;
5110
5115
  var SelectGroup = SelectPrimitive.Group;
5111
5116
  var SelectValue = SelectPrimitive.Value;
5112
- var SelectTrigger = React67.forwardRef(
5117
+ var SelectTrigger = React68.forwardRef(
5113
5118
  ({
5114
5119
  className,
5115
5120
  children,
@@ -5163,7 +5168,7 @@ var SelectTrigger = React67.forwardRef(
5163
5168
  }
5164
5169
  );
5165
5170
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
5166
- var SelectScrollUpButton = React67.forwardRef(({ className, ...props }, ref) => {
5171
+ var SelectScrollUpButton = React68.forwardRef(({ className, ...props }, ref) => {
5167
5172
  const { scrollUpButton } = selectVariants();
5168
5173
  return /* @__PURE__ */ jsx(
5169
5174
  SelectPrimitive.ScrollUpButton,
@@ -5176,7 +5181,7 @@ var SelectScrollUpButton = React67.forwardRef(({ className, ...props }, ref) =>
5176
5181
  );
5177
5182
  });
5178
5183
  SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
5179
- var SelectScrollDownButton = React67.forwardRef(({ className, ...props }, ref) => {
5184
+ var SelectScrollDownButton = React68.forwardRef(({ className, ...props }, ref) => {
5180
5185
  const { scrollDownButton } = selectVariants();
5181
5186
  return /* @__PURE__ */ jsx(
5182
5187
  SelectPrimitive.ScrollDownButton,
@@ -5189,7 +5194,7 @@ var SelectScrollDownButton = React67.forwardRef(({ className, ...props }, ref) =
5189
5194
  );
5190
5195
  });
5191
5196
  SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
5192
- var SelectContent = React67.forwardRef(({ className, children, position = "popper", ...props }, ref) => {
5197
+ var SelectContent = React68.forwardRef(({ className, children, position = "popper", ...props }, ref) => {
5193
5198
  const { content, viewport } = selectVariants({ position, className });
5194
5199
  return /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsx(
5195
5200
  SelectPrimitive.Content,
@@ -5203,7 +5208,7 @@ var SelectContent = React67.forwardRef(({ className, children, position = "poppe
5203
5208
  ) });
5204
5209
  });
5205
5210
  SelectContent.displayName = SelectPrimitive.Content.displayName;
5206
- var SelectLabel = React67.forwardRef(({ className, ...props }, ref) => {
5211
+ var SelectLabel = React68.forwardRef(({ className, ...props }, ref) => {
5207
5212
  const { label } = selectVariants();
5208
5213
  return /* @__PURE__ */ jsx(
5209
5214
  SelectPrimitive.Label,
@@ -5215,12 +5220,12 @@ var SelectLabel = React67.forwardRef(({ className, ...props }, ref) => {
5215
5220
  );
5216
5221
  });
5217
5222
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
5218
- var SelectItem = React67.forwardRef(({ className, children, size, ...props }, ref) => {
5223
+ var SelectItem = React68.forwardRef(({ className, children, size, ...props }, ref) => {
5219
5224
  const { item } = selectVariants({ size });
5220
5225
  return /* @__PURE__ */ jsx(SelectPrimitive.Item, { ref, className: item({ className }), ...props, children: /* @__PURE__ */ jsx(SelectPrimitive.ItemText, { children }) });
5221
5226
  });
5222
5227
  SelectItem.displayName = SelectPrimitive.Item.displayName;
5223
- var SelectSeparator = React67.forwardRef(({ className, ...props }, ref) => {
5228
+ var SelectSeparator = React68.forwardRef(({ className, ...props }, ref) => {
5224
5229
  const { separator } = selectVariants();
5225
5230
  return /* @__PURE__ */ jsx(
5226
5231
  SelectPrimitive.Separator,
@@ -5414,7 +5419,7 @@ var SelectWithOptions = (props) => {
5414
5419
  ...rest
5415
5420
  } = props;
5416
5421
  return /* @__PURE__ */ jsx(Select, { ...rest, children: /* @__PURE__ */ jsx(SelectGroup, { children: options.map((option, index) => {
5417
- return React67__default.cloneElement(optionRenderer(option, currentValue), {
5422
+ return React68__default.cloneElement(optionRenderer(option, currentValue), {
5418
5423
  size: props.size,
5419
5424
  key: index,
5420
5425
  index
@@ -5575,7 +5580,7 @@ var tooltipVariants = tv({
5575
5580
  "data-[side=top]:oui-slide-in-from-bottom-2"
5576
5581
  ]
5577
5582
  });
5578
- var TooltipContent = React67.forwardRef(({ className, sideOffset = 4, ...props }, ref) => {
5583
+ var TooltipContent = React68.forwardRef(({ className, sideOffset = 4, ...props }, ref) => {
5579
5584
  return /* @__PURE__ */ jsx(
5580
5585
  TooltipPrimitive.Content,
5581
5586
  {
@@ -5606,7 +5611,7 @@ var TooltipArrow = (props) => {
5606
5611
  }
5607
5612
  );
5608
5613
  };
5609
- var Tooltip = React67.forwardRef((originalProps, ref) => {
5614
+ var Tooltip = React68.forwardRef((originalProps, ref) => {
5610
5615
  const {
5611
5616
  children,
5612
5617
  content,
@@ -5856,7 +5861,7 @@ var inputHelpTextVariants = tv$1({
5856
5861
  }
5857
5862
  }
5858
5863
  });
5859
- var InputHelpText = React67__default.forwardRef(
5864
+ var InputHelpText = React68__default.forwardRef(
5860
5865
  (props, ref) => {
5861
5866
  const { className, asChild, color, ...rest } = props;
5862
5867
  const Comp = asChild ? Slot : "div";
@@ -5894,7 +5899,7 @@ var textFieldVariants = tv({
5894
5899
  direction: "column"
5895
5900
  }
5896
5901
  });
5897
- var TextField = React67__default.forwardRef((props, ref) => {
5902
+ var TextField = React68__default.forwardRef((props, ref) => {
5898
5903
  const { label, helpText, direction, className, ...inputProps } = props;
5899
5904
  const { root, label: labelClassName } = textFieldVariants({ direction });
5900
5905
  return /* @__PURE__ */ jsxs("div", { className: root({ className, direction }), children: [
@@ -5912,7 +5917,7 @@ var TextField = React67__default.forwardRef((props, ref) => {
5912
5917
  ] });
5913
5918
  });
5914
5919
  TextField.displayName = "TextField";
5915
- var InputLabel = React67__default.forwardRef(
5920
+ var InputLabel = React68__default.forwardRef(
5916
5921
  (props, ref) => {
5917
5922
  const { asChild = false, className, ...rest } = props;
5918
5923
  const Comp = asChild ? Slot : "label";
@@ -5964,7 +5969,7 @@ var checkboxVariants = tv$1({
5964
5969
  // style: "checkBox",
5965
5970
  }
5966
5971
  });
5967
- var Checkbox = React67.forwardRef(({ className, color = "white", variant = "checkBox", ...props }, ref) => {
5972
+ var Checkbox = React68.forwardRef(({ className, color = "white", variant = "checkBox", ...props }, ref) => {
5968
5973
  return /* @__PURE__ */ jsx(
5969
5974
  CheckboxPrimitive.Root,
5970
5975
  {
@@ -6092,7 +6097,7 @@ var switchVariants = tv$1({
6092
6097
  color: "primary"
6093
6098
  }
6094
6099
  });
6095
- var Switch = React67__default.forwardRef(({ className, color, ...props }, ref) => {
6100
+ var Switch = React68__default.forwardRef(({ className, color, ...props }, ref) => {
6096
6101
  const { root, thumb } = switchVariants({
6097
6102
  className,
6098
6103
  color
@@ -6213,7 +6218,7 @@ function Badge({ className, variant, color, size, ...props }) {
6213
6218
  }
6214
6219
  );
6215
6220
  }
6216
- var Logo = React67__default.forwardRef(({ src, alt, href }, ref) => {
6221
+ var Logo = React68__default.forwardRef(({ src, alt, href }, ref) => {
6217
6222
  return /* @__PURE__ */ jsx("div", { className: "logo oui-px-3", ref, children: /* @__PURE__ */ jsx("a", { href: href ?? "/", children: /* @__PURE__ */ jsx(
6218
6223
  "img",
6219
6224
  {
@@ -6797,7 +6802,7 @@ var Pagination = ({ className, ...props }) => /* @__PURE__ */ jsx(
6797
6802
  }
6798
6803
  );
6799
6804
  Pagination.displayName = "Pagination";
6800
- var PaginationContent = React67__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
6805
+ var PaginationContent = React68__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
6801
6806
  "ul",
6802
6807
  {
6803
6808
  ref,
@@ -6809,7 +6814,7 @@ var PaginationContent = React67__default.forwardRef(({ className, ...props }, re
6809
6814
  }
6810
6815
  ));
6811
6816
  PaginationContent.displayName = "PaginationContent";
6812
- var PaginationItem = React67__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cnBase("oui-leading-[0px]", className), ...props }));
6817
+ var PaginationItem = React68__default.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, className: cnBase("oui-leading-[0px]", className), ...props }));
6813
6818
  PaginationItem.displayName = "PaginationItem";
6814
6819
  var PaginationLink = ({
6815
6820
  className,
@@ -7809,7 +7814,7 @@ var Sheet = DialogPrimitive.Root;
7809
7814
  var SheetTrigger = DialogPrimitive.Trigger;
7810
7815
  var SheetClose = DialogPrimitive.Close;
7811
7816
  var SheetPortal = DialogPrimitive.Portal;
7812
- var SheetOverlay = React67.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
7817
+ var SheetOverlay = React68.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
7813
7818
  DialogPrimitive.Overlay,
7814
7819
  {
7815
7820
  className: cnBase(
@@ -7835,7 +7840,7 @@ var sheetVariants = tv$1({
7835
7840
  side: "bottom"
7836
7841
  }
7837
7842
  });
7838
- var SheetContent = React67.forwardRef(
7843
+ var SheetContent = React68.forwardRef(
7839
7844
  ({
7840
7845
  side = "bottom",
7841
7846
  closeable = true,
@@ -7931,7 +7936,7 @@ var SheetFooter = ({
7931
7936
  }
7932
7937
  );
7933
7938
  SheetFooter.displayName = "SheetFooter";
7934
- var SheetTitle = React67.forwardRef(({ className, leading, ...props }, ref) => /* @__PURE__ */ jsxs(
7939
+ var SheetTitle = React68.forwardRef(({ className, leading, ...props }, ref) => /* @__PURE__ */ jsxs(
7935
7940
  "div",
7936
7941
  {
7937
7942
  className: "oui-sheet-header oui-grid oui-grid-cols-[40px_1fr_40px] oui-items-center",
@@ -7952,7 +7957,7 @@ var SheetTitle = React67.forwardRef(({ className, leading, ...props }, ref) => /
7952
7957
  }
7953
7958
  ));
7954
7959
  SheetTitle.displayName = DialogPrimitive.Title.displayName;
7955
- var SheetDescription = React67.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
7960
+ var SheetDescription = React68.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
7956
7961
  DialogPrimitive.Description,
7957
7962
  {
7958
7963
  ref,
@@ -8345,7 +8350,7 @@ var dividerVariants = tv({
8345
8350
  intensity: 4
8346
8351
  }
8347
8352
  });
8348
- var Divider = React67__default.forwardRef((props, ref) => {
8353
+ var Divider = React68__default.forwardRef((props, ref) => {
8349
8354
  const { className, intensity, direction, lineStyle, mx, my, ...rest } = props;
8350
8355
  return /* @__PURE__ */ jsx(
8351
8356
  "div",
@@ -8553,7 +8558,7 @@ var Dialog = DialogPrimitive.Root;
8553
8558
  var DialogTrigger = DialogPrimitive.Trigger;
8554
8559
  var DialogPortal = DialogPrimitive.Portal;
8555
8560
  var DialogClose = DialogPrimitive.Close;
8556
- var DialogOverlay = React67.forwardRef(({ className, ...props }, ref) => {
8561
+ var DialogOverlay = React68.forwardRef(({ className, ...props }, ref) => {
8557
8562
  const { overlay } = dialogVariants();
8558
8563
  return /* @__PURE__ */ jsx(
8559
8564
  DialogPrimitive.Overlay,
@@ -8565,7 +8570,7 @@ var DialogOverlay = React67.forwardRef(({ className, ...props }, ref) => {
8565
8570
  );
8566
8571
  });
8567
8572
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
8568
- var DialogContent = React67.forwardRef(
8573
+ var DialogContent = React68.forwardRef(
8569
8574
  ({
8570
8575
  overlyClassName,
8571
8576
  className,
@@ -8627,7 +8632,7 @@ var DialogFooter = ({
8627
8632
  return /* @__PURE__ */ jsx("div", { className: footer({ className }), ...props });
8628
8633
  };
8629
8634
  DialogFooter.displayName = "DialogFooter";
8630
- var DialogTitle = React67.forwardRef(({ className, ...props }, ref) => {
8635
+ var DialogTitle = React68.forwardRef(({ className, ...props }, ref) => {
8631
8636
  const { title } = dialogVariants();
8632
8637
  return /* @__PURE__ */ jsx(
8633
8638
  DialogPrimitive.Title,
@@ -8639,7 +8644,7 @@ var DialogTitle = React67.forwardRef(({ className, ...props }, ref) => {
8639
8644
  );
8640
8645
  });
8641
8646
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
8642
- var DialogDescription = React67.forwardRef(({ className, ...props }, ref) => {
8647
+ var DialogDescription = React68.forwardRef(({ className, ...props }, ref) => {
8643
8648
  const { desc } = dialogVariants();
8644
8649
  return /* @__PURE__ */ jsx(
8645
8650
  DialogPrimitive.Description,
@@ -9803,13 +9808,13 @@ var tabsVariants = tv({
9803
9808
  }
9804
9809
  });
9805
9810
  var TabsBase = TabsPrimitive.Root;
9806
- var TabsList = React67.forwardRef((originProps, ref) => {
9811
+ var TabsList = React68.forwardRef((originProps, ref) => {
9807
9812
  const { className, size, variant, ...props } = originProps;
9808
9813
  const { list } = tabsVariants({ size, variant });
9809
9814
  return /* @__PURE__ */ jsx(TabsPrimitive.List, { ref, className: list({ className }), ...props });
9810
9815
  });
9811
9816
  TabsList.displayName = TabsPrimitive.List.displayName;
9812
- var TabsTrigger = React67.forwardRef((originProps, ref) => {
9817
+ var TabsTrigger = React68.forwardRef((originProps, ref) => {
9813
9818
  const { className, size, children, icon, variant, ...props } = originProps;
9814
9819
  const { trigger, icon: iconClassName } = tabsVariants({ size, variant });
9815
9820
  return /* @__PURE__ */ jsxs(
@@ -9819,14 +9824,14 @@ var TabsTrigger = React67.forwardRef((originProps, ref) => {
9819
9824
  className: trigger({ className }),
9820
9825
  ...props,
9821
9826
  children: [
9822
- typeof icon !== "undefined" ? React67.cloneElement(icon, { className: iconClassName(), opacity: 1 }) : null,
9827
+ typeof icon !== "undefined" ? React68.cloneElement(icon, { className: iconClassName(), opacity: 1 }) : null,
9823
9828
  /* @__PURE__ */ jsx("span", { children })
9824
9829
  ]
9825
9830
  }
9826
9831
  );
9827
9832
  });
9828
9833
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
9829
- var TabsContent = React67.forwardRef((oriProps, ref) => {
9834
+ var TabsContent = React68.forwardRef((oriProps, ref) => {
9830
9835
  const { className, size, children, ...props } = oriProps;
9831
9836
  const { content } = tabsVariants({ size });
9832
9837
  return /* @__PURE__ */ jsx(
@@ -10160,7 +10165,7 @@ var cardVariants = tv({
10160
10165
  intensity: 900
10161
10166
  }
10162
10167
  });
10163
- var CardBase = React67__default.forwardRef(
10168
+ var CardBase = React68__default.forwardRef(
10164
10169
  ({ className, intensity, children, ...props }, ref) => {
10165
10170
  return /* @__PURE__ */ jsx(
10166
10171
  "div",
@@ -10174,7 +10179,7 @@ var CardBase = React67__default.forwardRef(
10174
10179
  }
10175
10180
  );
10176
10181
  CardBase.displayName = "CardBase";
10177
- var CardHeader = React67__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10182
+ var CardHeader = React68__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10178
10183
  "div",
10179
10184
  {
10180
10185
  ref,
@@ -10187,7 +10192,7 @@ var CardHeader = React67__default.forwardRef(({ className, children, ...props },
10187
10192
  }
10188
10193
  ));
10189
10194
  CardHeader.displayName = "CardHeader";
10190
- var CardTitle = React67__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10195
+ var CardTitle = React68__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10191
10196
  "h3",
10192
10197
  {
10193
10198
  ref,
@@ -10200,7 +10205,7 @@ var CardTitle = React67__default.forwardRef(({ className, children, ...props },
10200
10205
  }
10201
10206
  ));
10202
10207
  CardTitle.displayName = "CardTitle";
10203
- var CardDescription = React67__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10208
+ var CardDescription = React68__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10204
10209
  "p",
10205
10210
  {
10206
10211
  ref,
@@ -10209,7 +10214,7 @@ var CardDescription = React67__default.forwardRef(({ className, children, ...pro
10209
10214
  children
10210
10215
  }
10211
10216
  ));
10212
- var CardContent = React67__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10217
+ var CardContent = React68__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
10213
10218
  "div",
10214
10219
  {
10215
10220
  ref,
@@ -10219,7 +10224,7 @@ var CardContent = React67__default.forwardRef(({ className, children, ...props }
10219
10224
  }
10220
10225
  ));
10221
10226
  CardContent.displayName = "CardContent";
10222
- var CardFooter = React67__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className, ...props, children }));
10227
+ var CardFooter = React68__default.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className, ...props, children }));
10223
10228
  CardFooter.displayName = "CardFooter";
10224
10229
  var Card = forwardRef(
10225
10230
  (props, ref) => {
@@ -10234,7 +10239,7 @@ var Card = forwardRef(
10234
10239
  Card.displayName = "Card";
10235
10240
  var HoverCardRoot = HoverCardPrimitive.Root;
10236
10241
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
10237
- var HoverCardContent = React67.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
10242
+ var HoverCardContent = React68.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
10238
10243
  HoverCardPrimitive.Content,
10239
10244
  {
10240
10245
  ref,
@@ -10388,7 +10393,7 @@ var sliderVariants = tv({
10388
10393
  }
10389
10394
  }
10390
10395
  });
10391
- var BaseSlider = React67.forwardRef((oriProps, ref) => {
10396
+ var BaseSlider = React68.forwardRef((oriProps, ref) => {
10392
10397
  const {
10393
10398
  className,
10394
10399
  color,
@@ -10404,8 +10409,8 @@ var BaseSlider = React67.forwardRef((oriProps, ref) => {
10404
10409
  const { track, range, thumb, root, trackInner, mark, tips } = sliderVariants({
10405
10410
  color
10406
10411
  });
10407
- const [innerValue, setInvalue] = React67.useState(__propsValue);
10408
- React67.useEffect(() => {
10412
+ const [innerValue, setInvalue] = React68.useState(__propsValue);
10413
+ React68.useEffect(() => {
10409
10414
  setInvalue((prev) => {
10410
10415
  if (!prev) {
10411
10416
  return __propsValue;
@@ -10583,7 +10588,7 @@ var SliderTip = (props) => {
10583
10588
  const percent = convertValueToPercentage(value, min, max);
10584
10589
  return /* @__PURE__ */ jsx("span", { className, style: { lineHeight: "19px" }, children: props.tipFormatter?.(value, min, max, percent) ?? `${percent.toFixed()}%` });
10585
10590
  };
10586
- var SingleSlider = React67.forwardRef((props, ref) => {
10591
+ var SingleSlider = React68.forwardRef((props, ref) => {
10587
10592
  const _value = useMemo(() => [props.value], [props.value]);
10588
10593
  return /* @__PURE__ */ jsx(
10589
10594
  BaseSlider,
@@ -10603,7 +10608,7 @@ var SingleSlider = React67.forwardRef((props, ref) => {
10603
10608
  SingleSlider.displayName = "SingleSlider";
10604
10609
  var Slider = BaseSlider;
10605
10610
  Slider.single = SingleSlider;
10606
- var ToastErrorIcon = React67__default.forwardRef(
10611
+ var ToastErrorIcon = React68__default.forwardRef(
10607
10612
  (props, ref) => {
10608
10613
  const { opacity = 1, viewBox = "0 0 20 20", ...rest } = props;
10609
10614
  return /* @__PURE__ */ jsx(BaseIcon, { ref, viewBox, ...rest, children: /* @__PURE__ */ jsx(
@@ -10616,7 +10621,7 @@ var ToastErrorIcon = React67__default.forwardRef(
10616
10621
  ) });
10617
10622
  }
10618
10623
  );
10619
- var ToastSuccessIcon = React67__default.forwardRef(
10624
+ var ToastSuccessIcon = React68__default.forwardRef(
10620
10625
  (props, ref) => {
10621
10626
  const { opacity = 1, viewBox = "0 0 20 20", ...rest } = props;
10622
10627
  return /* @__PURE__ */ jsx(BaseIcon, { ref, viewBox, ...rest, children: /* @__PURE__ */ jsx(
@@ -10630,7 +10635,7 @@ var ToastSuccessIcon = React67__default.forwardRef(
10630
10635
  ) });
10631
10636
  }
10632
10637
  );
10633
- var ToastLoadingIcon = React67__default.forwardRef(
10638
+ var ToastLoadingIcon = React68__default.forwardRef(
10634
10639
  (props, ref) => {
10635
10640
  const { opacity = 1, viewBox = "0 0 20 20", ...rest } = props;
10636
10641
  return /* @__PURE__ */ jsx(BaseIcon, { ref, viewBox, ...rest, children: /* @__PURE__ */ jsx(
@@ -10838,7 +10843,7 @@ var ListViewInner = (props, ref) => {
10838
10843
  }
10839
10844
  );
10840
10845
  }
10841
- return props.dataSource.map((item, index) => /* @__PURE__ */ jsx(React67__default.Fragment, { children: props.renderItem(item, index, props.extraData) }, index));
10846
+ return props.dataSource.map((item, index) => /* @__PURE__ */ jsx(React68__default.Fragment, { children: props.renderItem(item, index, props.extraData) }, index));
10842
10847
  }, [emptyDataSouce, props.dataSource, props.extraData, props.emptyView]);
10843
10848
  const loadingViewElement = useMemo(() => {
10844
10849
  if ((props.dataSource?.length || 0) === 0)
@@ -11012,7 +11017,7 @@ var Marquee = (props) => {
11012
11017
  const [emblaRef, emblaApi] = useEmblaCarousel__default(emblaOptions, [
11013
11018
  AutoScroll__default(autoScrollPluginOptions)
11014
11019
  ]);
11015
- React67__default.useEffect(() => {
11020
+ React68__default.useEffect(() => {
11016
11021
  if (emblaApi && setApi) {
11017
11022
  setApi(emblaApi);
11018
11023
  }
@@ -11164,7 +11169,7 @@ var dropdownMenuVariants = tv$1({
11164
11169
  size: "lg"
11165
11170
  }
11166
11171
  });
11167
- var DropdownMenuContent = React67.forwardRef(({ className, sideOffset = 4, size, ...props }, ref) => {
11172
+ var DropdownMenuContent = React68.forwardRef(({ className, sideOffset = 4, size, ...props }, ref) => {
11168
11173
  const { content } = dropdownMenuVariants({ size });
11169
11174
  return /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
11170
11175
  DropdownMenuPrimitive.Content,
@@ -11177,7 +11182,7 @@ var DropdownMenuContent = React67.forwardRef(({ className, sideOffset = 4, size,
11177
11182
  ) });
11178
11183
  });
11179
11184
  DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
11180
- var DropdownMenuItem = React67.forwardRef(({ className, inset, size, ...props }, ref) => {
11185
+ var DropdownMenuItem = React68.forwardRef(({ className, inset, size, ...props }, ref) => {
11181
11186
  const { item } = dropdownMenuVariants({ size });
11182
11187
  return /* @__PURE__ */ jsx(
11183
11188
  DropdownMenuPrimitive.Item,
@@ -11189,7 +11194,7 @@ var DropdownMenuItem = React67.forwardRef(({ className, inset, size, ...props },
11189
11194
  );
11190
11195
  });
11191
11196
  DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
11192
- var DropdownMenuLabel = React67.forwardRef(({ className, inset, ...props }, ref) => {
11197
+ var DropdownMenuLabel = React68.forwardRef(({ className, inset, ...props }, ref) => {
11193
11198
  const { label } = dropdownMenuVariants({
11194
11199
  inset
11195
11200
  });
@@ -11203,7 +11208,7 @@ var DropdownMenuLabel = React67.forwardRef(({ className, inset, ...props }, ref)
11203
11208
  );
11204
11209
  });
11205
11210
  DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
11206
- var DropdownMenuSeparator = React67.forwardRef(({ className, ...props }, ref) => {
11211
+ var DropdownMenuSeparator = React68.forwardRef(({ className, ...props }, ref) => {
11207
11212
  const { separator } = dropdownMenuVariants();
11208
11213
  return /* @__PURE__ */ jsx(
11209
11214
  DropdownMenuPrimitive.Separator,