@facter/ds-core 1.21.0 → 1.22.0

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
@@ -1464,14 +1464,14 @@ function useAutoPageSize(options = {}) {
1464
1464
  isReady: hasCalculated.current
1465
1465
  };
1466
1466
  }
1467
- var Table = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
1467
+ var Table = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1468
1468
  "table",
1469
1469
  {
1470
1470
  ref,
1471
1471
  className: cn("w-full caption-bottom text-sm", className),
1472
1472
  ...props
1473
1473
  }
1474
- ) }));
1474
+ ));
1475
1475
  Table.displayName = "Table";
1476
1476
  var TableHeader = React10.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("thead", { ref, className: cn("[&_tr]:border-b", className), ...props }));
1477
1477
  TableHeader.displayName = "TableHeader";