aq-fe-framework 0.1.867 → 0.1.869

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.
@@ -22,4 +22,4 @@ interface MyDataTableProps<TData extends MRT_RowData> extends MRT_TableOptions<T
22
22
  }
23
23
  declare function MyDataTable<TData extends MRT_RowData>({ rowActionSize, columns, data, setSelectedRow, isError, isLoading, pagination, idSelectionOne, setIdSelectionOne, renderTopToolbarCustomActions, visibleFields, ...rest }: MyDataTableProps<TData>): react_jsx_runtime.JSX.Element;
24
24
 
25
- export { type MyDataTableProps as M, type PaginationState as P, type MyDataTableInternalProps as a, MyDataTable as b };
25
+ export { type MyDataTableInternalProps as M, type PaginationState as P, type MyDataTableProps as a, MyDataTable as b };
@@ -177,7 +177,7 @@ function createMapper(fieldMap) {
177
177
  if (typeof mapping === "string") {
178
178
  result[uiKey] = raw[mapping];
179
179
  } else {
180
- result[uiKey] = mapping.fromApi(raw);
180
+ result[uiKey] = mapping.toUi(raw);
181
181
  }
182
182
  }
183
183
  );