@symply.io/basic-components 1.4.3 → 1.4.4-beta.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.
@@ -27,6 +27,6 @@ import TableCell from "@mui/material/TableCell";
27
27
  import TableBodyRow from "./TableBodyRow";
28
28
  function TBody(props) {
29
29
  var rows = props.rows, columns = props.columns, _a = props.noDataText, noDataText = _a === void 0 ? "No Data!" : _a, rest = __rest(props, ["rows", "columns", "noDataText"]);
30
- return (_jsx(TableBody, { children: rows.length > 0 ? (rows.map(function (row, index) { return (_jsx(TableBodyRow, __assign({ row: row, rows: rows, columns: columns }, rest), "DataTable_".concat(index))); })) : (_jsx(TableRow, { children: _jsx(TableCell, __assign({ colSpan: columns.length, align: "center" }, { children: noDataText })) })) }));
30
+ return (_jsx(TableBody, { children: rows.length > 0 ? (rows.map(function (row, index) { return (_jsx(TableBodyRow, __assign({ rowIndex: index, row: row, rows: rows, columns: columns }, rest), "DataTable_".concat(index))); })) : (_jsx(TableRow, { children: _jsx(TableCell, __assign({ colSpan: columns.length, align: "center" }, { children: noDataText })) })) }));
31
31
  }
32
32
  export default TBody;
@@ -16,7 +16,7 @@ import TableCell from "@mui/material/TableCell";
16
16
  import useMediaQuery from "@mui/material/useMediaQuery";
17
17
  import useTheme from "@mui/material/styles/useTheme";
18
18
  function TableBodyRow(props) {
19
- var row = props.row, rows = props.rows, columns = props.columns, leftShadowVisible = props.leftShadowVisible, rightShadowVisible = props.rightShadowVisible, onRowClick = props.onRowClick, onCustomizeRowBgColor = props.onCustomizeRowBgColor;
19
+ var row = props.row, rows = props.rows, columns = props.columns, rowIndex = props.rowIndex, leftShadowVisible = props.leftShadowVisible, rightShadowVisible = props.rightShadowVisible, onRowClick = props.onRowClick, onCustomizeRowBgColor = props.onCustomizeRowBgColor;
20
20
  var _a = useState(), rowEl = _a[0], setRowEl = _a[1];
21
21
  var theme = useTheme();
22
22
  var isUpMd = useMediaQuery(theme.breakpoints.up("md"));
@@ -80,14 +80,14 @@ function TableBodyRow(props) {
80
80
  boxShadow: "inset 10px 0 10px -8px rgba(0, 0, 0, 0.1)"
81
81
  }
82
82
  : undefined
83
- } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row }) }), accessor));
83
+ } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row, rowIndex: rowIndex }) }), accessor));
84
84
  }), dynamicCols.map(function (col) {
85
85
  var accessor = col.accessor, Cell = col.Cell, width = col.width, _a = col.align, align = _a === void 0 ? "center" : _a;
86
86
  return (_jsx(TableCell, __assign({ align: align, sx: {
87
87
  width: width,
88
88
  zIndex: 9,
89
89
  backgroundColor: onRowClick && rowEl ? hover : normal
90
- } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row }) }), accessor));
90
+ } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row, rowIndex: rowIndex }) }), accessor));
91
91
  }), fixedRightCols.map(function (col, index) {
92
92
  var accessor = col.accessor, Cell = col.Cell, width = col.width, _a = col.align, align = _a === void 0 ? "center" : _a;
93
93
  var right = fixedRightCols
@@ -112,7 +112,7 @@ function TableBodyRow(props) {
112
112
  boxShadow: "inset -10px 0 10px -8px rgba(0, 0, 0, 0.1)"
113
113
  }
114
114
  : undefined
115
- } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row }) }), accessor));
115
+ } }, { children: cloneElement(Cell, { column: col, rows: rows, row: row, rowIndex: rowIndex }) }), accessor));
116
116
  })] })));
117
117
  }
118
118
  export default TableBodyRow;
@@ -69,6 +69,7 @@ export declare type TableBodyProps<RowProps extends KvProps, ExtendedProps exten
69
69
  };
70
70
  export declare type TableBodyRowProps<RowProps extends KvProps, ExtendedProps extends KvProps> = Omit<TableBodyProps<RowProps, ExtendedProps>, "noDataText"> & {
71
71
  row: RowProps;
72
+ rowIndex: number;
72
73
  };
73
74
  export declare type TableFooterProps<RowProps extends KvProps, ExtendedProps extends KvProps> = {
74
75
  footers: Array<TableFooterCellProps<RowProps, ExtendedProps>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symply.io/basic-components",
3
- "version": "1.4.3",
3
+ "version": "1.4.4-beta.1",
4
4
  "description": "Basic and reusable components for all frontend of Symply apps",
5
5
  "keywords": [
6
6
  "react",