Skip to content

Commit fbaa5cb

Browse files
committed
update readme and changelog
1 parent eecc4dc commit fbaa5cb

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
# CHANGELOG
22

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+
313
## 0.4.10
414

515
_2023-09-30_
616

7-
###
17+
### Features
818

919
- added ability to specify the `footerHeight`
1020
- removed some typescript warnings

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import { Table } from "react-fluid-table";
2323

2424
const data = _.range(100).map(i => ({
2525
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()
2929
}));
3030

3131
const columns = [

example/src/ColumnProps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ const data: PropData[] = [
137137
}
138138
];
139139

140-
const ColumnPropsTable = () => <StyledTable data={data} columns={columns} tableHeight={400} />;
140+
const ColumnPropsTable = () => <StyledTable borders data={data} columns={columns} tableHeight={400} />;
141141

142142
export default ColumnPropsTable;

0 commit comments

Comments
 (0)