labsense-ui-kit 1.3.85 → 1.3.86

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.
@@ -5,6 +5,7 @@ interface TableInterface {
5
5
  filter?: boolean;
6
6
  loading?: boolean;
7
7
  noDataText?: string;
8
+ loadingTitle?: string;
8
9
  }
9
10
  declare const Table: React.FC<TableInterface>;
10
11
  export default Table;
package/dist/index.js CHANGED
@@ -11449,7 +11449,8 @@ var Table = function Table(_ref9) {
11449
11449
  filter = _ref9$filter === void 0 ? false : _ref9$filter,
11450
11450
  loading = _ref9.loading,
11451
11451
  _ref9$noDataText = _ref9.noDataText,
11452
- noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText;
11452
+ noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText,
11453
+ loadingTitle = _ref9.loadingTitle;
11453
11454
  var themeColors = useTheme();
11454
11455
  var rowconfig = tableObject.rowconfig,
11455
11456
  tableheaderconfig = tableObject.tableheaderconfig;
@@ -11596,7 +11597,7 @@ var Table = function Table(_ref9) {
11596
11597
  "$justifyContent": 'center',
11597
11598
  "$padding": '24px 24px'
11598
11599
  }, React__default.createElement(Loader$1, {
11599
- title: 'Loading users'
11600
+ title: loadingTitle
11600
11601
  })) : rowconfig.length === 0 ? React__default.createElement(Container, {
11601
11602
  "$flexDirection": 'column',
11602
11603
  "$alignItems": 'center',