@ctlyst.id/internal-ui 3.1.14 → 3.1.16

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.js CHANGED
@@ -1530,7 +1530,6 @@ var DataTable = React5.forwardRef((props, ref) => {
1530
1530
  import_react28.Flex,
1531
1531
  {
1532
1532
  tabIndex: 0,
1533
- display: "inline-flex",
1534
1533
  cursor: "auto",
1535
1534
  "data-test-id": `CT_Component_TableCell_Content-${cell.id}`,
1536
1535
  onMouseUp: (e) => e.stopPropagation(),
@@ -1538,6 +1537,13 @@ var DataTable = React5.forwardRef((props, ref) => {
1538
1537
  onClick: (e) => {
1539
1538
  e.stopPropagation();
1540
1539
  },
1540
+ overflow: "hidden",
1541
+ textOverflow: "ellipsis",
1542
+ sx: {
1543
+ display: "-webkit-inline-box",
1544
+ WebkitLineClamp: "2",
1545
+ WebkitBoxOrient: "vertical"
1546
+ },
1541
1547
  children: (0, import_react_table.flexRender)(cell.column.columnDef.cell, cell.getContext())
1542
1548
  }
1543
1549
  )
@@ -3474,6 +3480,10 @@ var PaginationButton = (0, import_react57.forwardRef)(({ className, style, isAct
3474
3480
  background: btnNotActiveBg,
3475
3481
  color: btnNotActiveColor
3476
3482
  } : {},
3483
+ _active: {
3484
+ background: "primary.500",
3485
+ color: "neutral.300"
3486
+ },
3477
3487
  _disabled: {
3478
3488
  background: (0, import_react57.useColorModeValue)("neutral.300", "mirage.900"),
3479
3489
  color: "neutral.600",