@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.mjs CHANGED
@@ -1193,7 +1193,6 @@ var DataTable = React5.forwardRef((props, ref) => {
1193
1193
  Flex2,
1194
1194
  {
1195
1195
  tabIndex: 0,
1196
- display: "inline-flex",
1197
1196
  cursor: "auto",
1198
1197
  "data-test-id": `CT_Component_TableCell_Content-${cell.id}`,
1199
1198
  onMouseUp: (e) => e.stopPropagation(),
@@ -1201,6 +1200,13 @@ var DataTable = React5.forwardRef((props, ref) => {
1201
1200
  onClick: (e) => {
1202
1201
  e.stopPropagation();
1203
1202
  },
1203
+ overflow: "hidden",
1204
+ textOverflow: "ellipsis",
1205
+ sx: {
1206
+ display: "-webkit-inline-box",
1207
+ WebkitLineClamp: "2",
1208
+ WebkitBoxOrient: "vertical"
1209
+ },
1204
1210
  children: flexRender(cell.column.columnDef.cell, cell.getContext())
1205
1211
  }
1206
1212
  )
@@ -3240,6 +3246,10 @@ var PaginationButton = forwardRef9(({ className, style, isActive, children, ...r
3240
3246
  background: btnNotActiveBg,
3241
3247
  color: btnNotActiveColor
3242
3248
  } : {},
3249
+ _active: {
3250
+ background: "primary.500",
3251
+ color: "neutral.300"
3252
+ },
3243
3253
  _disabled: {
3244
3254
  background: useColorModeValue4("neutral.300", "mirage.900"),
3245
3255
  color: "neutral.600",