@ballistix.digital/react-components 3.3.2 → 3.3.3

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.d.ts CHANGED
@@ -495,6 +495,11 @@ declare const base$e: {
495
495
  container: string;
496
496
  row: string;
497
497
  checkbox: string;
498
+ column: {
499
+ pinned: {
500
+ cell: string;
501
+ };
502
+ };
498
503
  cell: {
499
504
  container: string;
500
505
  text: string;
package/dist/index.esm.js CHANGED
@@ -6064,7 +6064,7 @@ var TableList2 = function (props) {
6064
6064
  : ChevronDownIcon;
6065
6065
  }
6066
6066
  return (jsx("th", { colSpan: header.colSpan, className: toClassName(styles.body.table.head.cell.container, 'border-b', header.column.getCanSort() && 'cursor-pointer', header.column.getIsPinned() &&
6067
- styles.body.table.body.column.pinned.cell), onClick: header.column.getToggleSortingHandler(), style: __assign$1({ minWidth: !!header.column.columnDef.size &&
6067
+ styles.body.table.head.column.pinned.cell), onClick: header.column.getToggleSortingHandler(), style: __assign$1({ minWidth: !!header.column.columnDef.size &&
6068
6068
  header.column.columnDef.size !== 150
6069
6069
  ? "".concat(header.column.columnDef.size, "px")
6070
6070
  : 'auto' }, getCommonPinningStyles(header.column)), children: jsxs("div", { className: "grid gap-x-1 items-center", style: {
@@ -6111,6 +6111,11 @@ var base$c = {
6111
6111
  container: '',
6112
6112
  row: '',
6113
6113
  checkbox: 'absolute left-4 top-1/2 -mt-2 h-4 w-4 rounded border-gray-300 text-primary-600 focus:ring-primary-500 sm:left-6',
6114
+ column: {
6115
+ pinned: {
6116
+ cell: 'bg-white sticky z-10 overflow-hidden text-ellipsis',
6117
+ },
6118
+ },
6114
6119
  cell: {
6115
6120
  container: ' py-3.5 px-3 text-left text-sm font-semibold text-gray-900 group',
6116
6121
  text: 'whitespace-normal break-words',