@ballistix.digital/react-components 0.4.99 → 0.4.101

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.esm.js CHANGED
@@ -3405,7 +3405,7 @@ var base$g = {
3405
3405
  button: 'inline-flex justify-center w-full rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-primary-500',
3406
3406
  compact: 'bg-gray-100 rounded-full flex items-center text-gray-400 hover:text-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-primary-500',
3407
3407
  dots: 'h-7 w-7 p-1',
3408
- items: 'z-20 absolute mt-2 w-56 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 divide-y divide-gray-100 focus:outline-none',
3408
+ items: 'z-10 absolute mt-2 w-56 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 divide-y divide-gray-100 focus:outline-none',
3409
3409
  };
3410
3410
  var button = {};
3411
3411
  var compact = {};
@@ -4282,7 +4282,8 @@ var TableList2 = function (props) {
4282
4282
  }
4283
4283
  }, [onChange, state]);
4284
4284
  return (jsxs("div", __assign({ className: styles$a.container }, { children: [jsx("div", __assign({ className: styles$a.head }, { children: head && head(state) })), jsx("div", __assign({ className: "" }, { children: jsx("div", __assign({ className: "flow-root" }, { children: jsx("div", __assign({ className: "overflow-scroll" }, { children: jsxs("div", __assign({ className: "inline-block min-w-full align-middle" }, { children: [jsxs("table", __assign({ className: "min-w-full border-separate border-spacing-0 " }, { children: [jsx("thead", __assign({ className: "" }, { children: table === null || table === void 0 ? void 0 : table.getHeaderGroups().map(function (headerGroup) { return (jsx("tr", { children: headerGroup.headers.map(function (header) { return (jsxs("th", __assign({ colSpan: header.colSpan, className: toClassName(styles$a.body.table.head.cell, 'border-b', header.column.getCanSort() && 'cursor-pointer'), onClick: header.column.getToggleSortingHandler(), style: {
4285
- minWidth: header.column.columnDef.size
4285
+ minWidth: !!header.column.columnDef.size &&
4286
+ header.column.columnDef.size !== 150
4286
4287
  ? "".concat(header.column.columnDef.size, "px")
4287
4288
  : 'auto',
4288
4289
  } }, { children: [header.isPlaceholder
@@ -4759,7 +4760,7 @@ var ModalOverlay = function (props) {
4759
4760
  };
4760
4761
 
4761
4762
  var base$4 = {
4762
- container: 'relative z-10',
4763
+ container: 'relative z-20',
4763
4764
  background: {
4764
4765
  container: 'fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity',
4765
4766
  transition: {
@@ -4859,7 +4860,7 @@ var NotificationOverlay = {
4859
4860
 
4860
4861
  var base$3 = {
4861
4862
  container: {
4862
- outer: 'pointer-events-none fixed inset-0 flex items-end px-4 py-6 sm:items-start sm:p-6 z-20',
4863
+ outer: 'pointer-events-none fixed inset-0 flex items-end px-4 py-6 sm:items-start sm:p-6 z-30',
4863
4864
  inner: 'flex w-full flex-col items-center space-y-4 sm:items-end',
4864
4865
  },
4865
4866
  item: {