@gisce/react-formiga-table
Advanced tools
Comparing version 1.10.0-alpha.1 to 1.10.0-alpha.2
export { Table } from "./components/Table"; | ||
export { InfiniteTable } from "./components/InfiniteTable/InfiniteTable"; | ||
export { PaginatedTable } from "./components/PaginatedTable/PaginatedTable"; | ||
export type { TableProps, TableRef } from "./types"; | ||
export type { InfiniteTableProps, InfiniteTableRef, } from "./components/InfiniteTable/InfiniteTable"; | ||
export type { PaginatedTableProps, PaginatedTableRef, } from "./components/PaginatedTable/PaginatedTable"; | ||
export type { ColumnState } from "ag-grid-community"; | ||
@@ -5,0 +8,0 @@ export type { BodyScrollEvent } from "ag-grid-community"; |
{ | ||
"name": "@gisce/react-formiga-table", | ||
"version": "1.10.0-alpha.1", | ||
"version": "1.10.0-alpha.2", | ||
"engines": { | ||
@@ -5,0 +5,0 @@ "node": "20.5.0" |
@@ -95,4 +95,9 @@ import { Column, ColumnState } from "ag-grid-community"; | ||
if (columnsPersistedStateRef.current) { | ||
if ( | ||
columnsPersistedStateRef.current && | ||
columnsPersistedStateRef.current.length > 0 | ||
) { | ||
applyPersistedState(); | ||
} else { | ||
applyAutoFitState(); | ||
} | ||
@@ -99,0 +104,0 @@ }, [applyPersistedState, columns, onGetColumnsState]); |
export { Table } from "./components/Table"; | ||
export { InfiniteTable } from "./components/InfiniteTable/InfiniteTable"; | ||
export { PaginatedTable } from "./components/PaginatedTable/PaginatedTable"; | ||
export type { TableProps, TableRef } from "./types"; | ||
export type { | ||
@@ -7,2 +9,6 @@ InfiniteTableProps, | ||
} from "./components/InfiniteTable/InfiniteTable"; | ||
export type { | ||
PaginatedTableProps, | ||
PaginatedTableRef, | ||
} from "./components/PaginatedTable/PaginatedTable"; | ||
@@ -9,0 +15,0 @@ export type { ColumnState } from "ag-grid-community"; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1083653
85
12291