@ctlyst.id/internal-ui 3.1.15 → 3.1.17

Sign up to get free protection for your applications and to get access to all the features.
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,10 @@ var DataTable = React5.forwardRef((props, ref) => {
1201
1200
  onClick: (e) => {
1202
1201
  e.stopPropagation();
1203
1202
  },
1203
+ noOfLines: 2,
1204
+ sx: {
1205
+ display: "-webkit-inline-box"
1206
+ },
1204
1207
  children: flexRender(cell.column.columnDef.cell, cell.getContext())
1205
1208
  }
1206
1209
  )