File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 0.5.0
4
+
5
+ _ 2023-10-02_
6
+
7
+ ### Features
8
+
9
+ - uses a wrapper library to handle observing the table container for width/height changes
10
+ - initial flicker for variable-row-size tables should be mitigated
11
+ - more typescript specifications
12
+
3
13
## 0.4.10
4
14
5
15
_ 2023-09-30_
6
16
7
- ###
17
+ ### Features
8
18
9
19
- added ability to specify the ` footerHeight `
10
20
- removed some typescript warnings
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ import { Table } from "react-fluid-table";
23
23
24
24
const data = _ .range (100 ).map (i => ({
25
25
id: i + 1 ,
26
- firstName: faker . name . firstName (),
27
- lastName: faker . name . lastName (),
28
- email: faker . internet . email ()
26
+ firstName: randFirstName (),
27
+ lastName: randLastName (),
28
+ email: randEmail ()
29
29
}));
30
30
31
31
const columns = [
Original file line number Diff line number Diff line change @@ -137,6 +137,6 @@ const data: PropData[] = [
137
137
}
138
138
] ;
139
139
140
- const ColumnPropsTable = ( ) => < StyledTable data = { data } columns = { columns } tableHeight = { 400 } /> ;
140
+ const ColumnPropsTable = ( ) => < StyledTable borders data = { data } columns = { columns } tableHeight = { 400 } /> ;
141
141
142
142
export default ColumnPropsTable ;
You can’t perform that action at this time.
0 commit comments