@agilant/toga-blox 1.0.94 → 1.0.95

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.
@@ -43,3 +43,4 @@ export interface Renderers {
43
43
  export declare function formatTableData(columnTitles: string[], accessors: string[], columnConfigs: SharedColumnConfig[], renderers?: Renderers): TableColumn[];
44
44
  /** Simple helper to generate the default "col1", "col2", ... accessors */
45
45
  export declare function generateAccessors(columnTitles: string[]): string[];
46
+ export default formatTableData;
@@ -78,3 +78,4 @@ export function formatTableData(columnTitles, accessors, columnConfigs, renderer
78
78
  export function generateAccessors(columnTitles) {
79
79
  return columnTitles.map((_, index) => `col${index + 1}`);
80
80
  }
81
+ export default formatTableData;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agilant/toga-blox",
3
3
  "private": false,
4
- "version": "1.0.94",
4
+ "version": "1.0.95",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",