@cellaware/utils 8.5.5 → 8.5.6

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.
@@ -127,7 +127,7 @@ export declare function codifyCondition(condition: DatagridCondition): string;
127
127
  */
128
128
  export declare function stripNumericValueFormat(value: string | number | undefined): any;
129
129
  /**
130
- * **Important:** `html` output will be limited to **500 rows** and **8 columns**.
130
+ * **Important:** `html` output will be limited to **1,000 rows** and **8 columns**.
131
131
  */
132
132
  export declare function transformDatagrid(rows: any[], datagridState: DatagridStateBase, locale: string, condition?: DatagridCondition): DatagridState;
133
133
  export {};
@@ -819,10 +819,10 @@ function buildHtmlRow(rowValues, rowStyles, columnStyles, columnCount) {
819
819
  return buf;
820
820
  }
821
821
  /**
822
- * **Important:** `html` output will be limited to **500 rows** and **8 columns**.
822
+ * **Important:** `html` output will be limited to **1,000 rows** and **8 columns**.
823
823
  */
824
824
  export function transformDatagrid(rows, datagridState, locale, condition) {
825
- const HTML_ROWS = 500;
825
+ const HTML_ROWS = 1000;
826
826
  const HTML_COLS = 8;
827
827
  const columnState = datagridState.columnState ?? [];
828
828
  const filterModel = datagridState.filterModel ?? {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.5.5",
3
+ "version": "8.5.6",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",