@bigbinary/neetoui 4.1.17 → 4.1.18

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/CHANGELOG.md CHANGED
@@ -23,6 +23,10 @@ Prefix the change with one of these keywords:
23
23
  - *Fixed*: for any bug fixes.
24
24
  - *Security*: in case of vulnerabilities.
25
25
 
26
+ ## 4.1.18 - 2022-12-02
27
+
28
+ Added: `shouldDynamicallyRenderRowSize` to calculate rows per page dynamically based on viewport height.
29
+
26
30
  ## 4.1.17 - 2022-12-01
27
31
 
28
32
  Fixed: Issue with class instance producing undefined in the host application.
package/index.d.ts CHANGED
@@ -362,6 +362,7 @@ export interface TableProps {
362
362
  scrollToFirstRowOnChange?: boolean;
363
363
  };
364
364
  rowSelection?: any;
365
+ shouldDynamicallyRenderRowSize?: boolean;
365
366
  [key: string]: any;
366
367
  }
367
368