From b6db8775ad5a2996bd3d749bb739f3a0e5d97006 Mon Sep 17 00:00:00 2001 From: jaapjanfrans Date: Mon, 29 Jul 2019 15:51:01 +0200 Subject: [PATCH 1/3] Small readme example update (#1412) in commit ea79cd838891a21db6754c387a73d3ea4fffd127 the`getRowProps` member of the headerGroup object changed into `getHeaderGroupProps` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bfae54..05b7c6d 100644 --- a/README.md +++ b/README.md @@ -481,7 +481,7 @@ function MyTable({ columns, data }) { {headerGroups.map(headerGroup => ( - + {headerGroup.headers.map(column => ( ))} From 6347157f80c9eaa388012a12e7b5dcdfdc662eb2 Mon Sep 17 00:00:00 2001 From: gargroh <42495927+gargroh@users.noreply.github.com> Date: Mon, 29 Jul 2019 20:16:56 +0530 Subject: [PATCH 2/3] correcting typos (#1413) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05b7c6d..ee0cac9 100644 --- a/README.md +++ b/README.md @@ -340,7 +340,7 @@ The following properties are available on the table instance returned from `useT - `headerGroups: Array` - An array of normalized header groups, each containing a flattened array of final column objects for that row. - - See [Header Group Properties](#header-group-properties) for more information + - See [Header Group Properties](#headergroup-properties) for more information - `columns: Array` - A **flat** array of all final column objects computed from the original columns configuration option. - See [Column Properties](#column-properties) for more information @@ -348,7 +348,7 @@ The following properties are available on the table instance returned from `useT - A **nested** array of final column objects, similar in structure to the original columns configuration option. - See [Column Properties](#column-properties) for more information - `rows: Array` - - An array of **materialized row objects** from theriginal `dat oa` array and `columns` passed into the table options + - An array of **materialized row objects** from the original `data` array and `columns` passed into the table options - See [Row Properties](#row-properties) for more information - `getTableProps: Function(?props)` - **Required** From 66bfec34a866a846f204dfe51ca3352ed265893b Mon Sep 17 00:00:00 2001 From: gargroh <42495927+gargroh@users.noreply.github.com> Date: Mon, 29 Jul 2019 21:07:48 +0530 Subject: [PATCH 3/3] [minor] Readme update (#1415) * correcting typos * [minor ] Readme update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee0cac9..b734f8e 100644 --- a/README.md +++ b/README.md @@ -361,7 +361,7 @@ The following properties are available on the table instance returned from `useT ### `HeaderGroup` Properties -Header Groups are The following additional properties are available on every `headerGroup` object returned by the table instance. +The following additional properties are available on every `headerGroup` object returned by the table instance. - `headers: Array` - **Required**
{column.render('Header')}