-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: EpicTable component. #189
Conversation
New dependencies added: overlayscrollbarsAuthor: KingSora | Rene Haas Description: A javascript scrollbar plugin which hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling. Homepage: https://kingsora.github.io/OverlayScrollbars
overlayscrollbars-reactAuthor: KingSora | Rene Haas Description: OverlayScrollbars wrapper for React. Homepage: https://kingsora.github.io/OverlayScrollbars
|
Created | about 2 years ago |
Last Updated | 14 days ago |
License | MIT |
Maintainers | 9 |
Releases | 98 |
Keywords | react |
@types/overlayscrollbars
Author: Unknown
Description: TypeScript definitions for OverlayScrollbars
Homepage: http://npmjs.com/package/@types/overlayscrollbars
Created | 10 months ago |
Last Updated | 1 day ago |
License | MIT |
Maintainers | 1 |
Releases | 4 |
Direct Dependencies |
README
Installation
npm install --save @types/overlayscrollbars
Summary
This package contains type definitions for OverlayScrollbars (https://kingsora.github.io/OverlayScrollbars).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/overlayscrollbars
Additional Details
- Last updated: Mon, 29 Jul 2019 21:34:42 GMT
- Dependencies: none
- Global values: OverlayScrollbars
Credits
These definitions were written by KingSora https://github.com/KingSora.
Codecov Report
@@ Coverage Diff @@
## master #189 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 49 62 +13
Lines 1239 1337 +98
Branches 227 237 +10
=====================================
+ Hits 1239 1337 +98
Continue to review full report at Codecov.
|
a941eef
to
89aefae
Compare
src/table/EpicTable/helpers/FixedHeader/useClosestHeaderIndex.ts
Outdated
Show resolved
Hide resolved
370579a
to
bb8ab7f
Compare
The EpicTable is a table based on Andrew Colyle's article "Design better data tables" which can be found here: https://uxdesign.cc/design-better-data-tables-4ecc99d23356 The features the EpicTable supports: 1. Fixed headers which follow the user. 2. A fixed left column which follows the user. 3. Optionally a fixed right column which follows the user. 4. Expanding rows which can contain extra data. 5. Click to go to details inside of the table. 6. Selection of rows, and a select all. 7. Filtering per column. 8. Resizing of columns. 9. Multiple headers
bb8ab7f
to
5bc722b
Compare
The EpicTable is a table based on Andrew Colyle's article
"Design better data tables" which can be found here:
https://uxdesign.cc/design-better-data-tables-4ecc99d23356
The features the EpicTable supports: