@ctlyst.id/internal-ui 2.0.25 → 2.0.26
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/config/theme/components/table.d.ts +3 -0
- package/dist/internal-ui.cjs.development.js +8 -11
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +3 -3
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +8 -11
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/internal-ui.esm.js
CHANGED
@@ -677,15 +677,9 @@ const DataTable = /*#__PURE__*/forwardRef$2((props, ref) => {
|
|
677
677
|
textTransform: "capitalize",
|
678
678
|
userSelect: "none",
|
679
679
|
align: "center",
|
680
|
-
|
681
|
-
}, /*#__PURE__*/createElement(Text, {
|
682
|
-
fontSize: "text.sm",
|
683
|
-
fontWeight: 400,
|
684
|
-
lineHeight: "18px",
|
685
|
-
color: useColorModeValue('neutral.900', 'white')
|
686
|
-
}, flexRender(header.column.columnDef.header, header.getContext())), /*#__PURE__*/createElement(Box, {
|
680
|
+
gap: 2
|
681
|
+
}, /*#__PURE__*/createElement(Text, null, flexRender(header.column.columnDef.header, header.getContext())), /*#__PURE__*/createElement(Box, {
|
687
682
|
as: "span",
|
688
|
-
pl: "2",
|
689
683
|
cursor: header.column.getCanSort() ? 'pointer' : 'default',
|
690
684
|
"data-test-id": `CT_Container_SortingIcon_${header.id}`,
|
691
685
|
onClick: header.column.getToggleSortingHandler()
|
@@ -4472,11 +4466,14 @@ const baseStyle$6 = /*#__PURE__*/definePartsStyle$6({
|
|
4472
4466
|
},
|
4473
4467
|
th: {
|
4474
4468
|
fontFamily: 'heading',
|
4475
|
-
fontWeight: '
|
4469
|
+
fontWeight: 'semibold',
|
4476
4470
|
textTransform: 'uppercase',
|
4477
|
-
letterSpacing: '
|
4471
|
+
letterSpacing: 'normal',
|
4478
4472
|
textAlign: 'start',
|
4479
|
-
height: '50px'
|
4473
|
+
height: '50px',
|
4474
|
+
color: /*#__PURE__*/mode('neutral.900', 'white'),
|
4475
|
+
fontSize: 'text.sm',
|
4476
|
+
lineHeight: '18px'
|
4480
4477
|
},
|
4481
4478
|
td: {
|
4482
4479
|
textAlign: 'start',
|