@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 +5 -0
- package/dist/index.esm.js +6 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6066,7 +6066,7 @@ var TableList2 = function (props) {
|
|
|
6066
6066
|
: solid.ChevronDownIcon;
|
|
6067
6067
|
}
|
|
6068
6068
|
return (jsxRuntime.jsx("th", { colSpan: header.colSpan, className: toClassName(styles.body.table.head.cell.container, 'border-b', header.column.getCanSort() && 'cursor-pointer', header.column.getIsPinned() &&
|
|
6069
|
-
styles.body.table.
|
|
6069
|
+
styles.body.table.head.column.pinned.cell), onClick: header.column.getToggleSortingHandler(), style: __assign$1({ minWidth: !!header.column.columnDef.size &&
|
|
6070
6070
|
header.column.columnDef.size !== 150
|
|
6071
6071
|
? "".concat(header.column.columnDef.size, "px")
|
|
6072
6072
|
: 'auto' }, getCommonPinningStyles(header.column)), children: jsxRuntime.jsxs("div", { className: "grid gap-x-1 items-center", style: {
|
|
@@ -6113,6 +6113,11 @@ var base$c = {
|
|
|
6113
6113
|
container: '',
|
|
6114
6114
|
row: '',
|
|
6115
6115
|
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',
|
|
6116
|
+
column: {
|
|
6117
|
+
pinned: {
|
|
6118
|
+
cell: 'bg-white sticky z-10 overflow-hidden text-ellipsis',
|
|
6119
|
+
},
|
|
6120
|
+
},
|
|
6116
6121
|
cell: {
|
|
6117
6122
|
container: ' py-3.5 px-3 text-left text-sm font-semibold text-gray-900 group',
|
|
6118
6123
|
text: 'whitespace-normal break-words',
|