fix(react-table): [v6] remove hideFilter prop (#42116)

* fix(react-table): [v6] remove `hideFilter` prop

> Renamed hideFilter -> filterable (Column option. Note the true/false value is now flipped.)
> https://github.com/tannerlinsley/react-table/blob/v6/CHANGELOG.md

* chore: added myself to authors for future reviews
This commit is contained in:
Andrew Luca 2020-02-10 20:13:30 +02:00 committed by GitHub
parent 1f060fbe8b
commit f4e6623d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@
// Andy S <https://github.com/andys8>,
// Grzegorz Rozdzialik <https://github.com/Gelio>
// Cam Pepin <https://github.com/cpepin>
// Andrew Luca <https://github.com/iamandrewluca>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
@ -521,9 +522,6 @@ export namespace Column {
*/
filterMethod: FilterFunction | DefaultFilterFunction;
/** Default: false */
hideFilter: boolean;
/** Default: ... */
Filter: FilterRender;
}