@zenkigen-inc/component-ui 1.10.0 → 1.10.1
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 +7 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/table/table-cell.d.ts +2 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -32314,10 +32314,14 @@ Tab.Item = TabItem;
|
|
|
32314
32314
|
|
|
32315
32315
|
function TableCell({
|
|
32316
32316
|
children,
|
|
32317
|
-
className
|
|
32317
|
+
className,
|
|
32318
|
+
isHeader = false
|
|
32318
32319
|
}) {
|
|
32320
|
+
const classes = clsx$1('border-b border-uiBorder01', {
|
|
32321
|
+
'sticky top-0 z-10 bg-white': isHeader
|
|
32322
|
+
}, className);
|
|
32319
32323
|
return /*#__PURE__*/jsx("div", {
|
|
32320
|
-
className:
|
|
32324
|
+
className: classes,
|
|
32321
32325
|
children: children
|
|
32322
32326
|
});
|
|
32323
32327
|
}
|