Skip to content

Commit

Permalink
built
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhudson committed May 6, 2020
1 parent de9273f commit c7f3b2d
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 21 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Responsive and dynamically-sized fixed headers, footers, and columns for tables.
## Features

- 0 dependencies, no css import necessary, no js, highly performant.
- 0 or 1 sticky header, left column, right column, footer
- 0, 1, or AS MANY sticky headers, left columns, right columns, footers as you want.
- Responsive table dimensions (wrap it in any size container and it will fill that container)
- Dynamic row height & column width (no need to specify fixed width/height in pixels)
- Table rows/columns resize as content resizes
Expand All @@ -18,7 +18,6 @@ Responsive and dynamically-sized fixed headers, footers, and columns for tables.

### Top todos

- Any number of fixed rows/columns
- Use VirtualDom implementation
- Support IE <= 11

Expand Down Expand Up @@ -58,15 +57,15 @@ export default class BasicExample extends Component {
## Props

- sticky count
- `stickyHeaderCount`: `0` or `1` - default: `1`
- `leftStickyColumnCount`: `0` or `1` - default: `1`
- `rightStickyColumnCount`: `0` or `1` - default: `0`
- `stickyFooterCount`: `0` or `1` - default: `0`
- `stickyHeaderCount`: `int` - default: `1`
- `leftStickyColumnCount`: `int` - default: `1`
- `rightStickyColumnCount`: `int` - default: `0`
- `stickyFooterCount`: `int` - default: `0`
- z-index
- `headerZ`: default: `2` (sticky corners are the greater of their two sides + 1)
- `leftColumnZ`: default: `2`
- `rightColumnZ`: default: `2`
- `footerZ`: default: `2`
- `headerZ`: `int` - default: `2` (sticky corners are the greater of their two sides + 1)
- `leftColumnZ`: `int` - default: `2`
- `rightColumnZ`: `int` - default: `2`
- `footerZ`: `int` - default: `2`
- border
- `borderWidth`: default: `'2px'`
- `borderColor`: default: `'#e5e5e5'`
Expand Down
2 changes: 1 addition & 1 deletion docs/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@
}</script><style>#root[hidden],
#docs-root[hidden] {
display: none !important;
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.a51c32c31ffa292ebb0b.bundle.js"></script><script src="vendors~main.a51c32c31ffa292ebb0b.bundle.js"></script><script src="main.a51c32c31ffa292ebb0b.bundle.js"></script></body></html>
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.47d31635e0453176e20b.bundle.js"></script><script src="vendors~main.47d31635e0453176e20b.bundle.js"></script><script src="main.47d31635e0453176e20b.bundle.js"></script></body></html>
2 changes: 2 additions & 0 deletions docs/main.47d31635e0453176e20b.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/main.47d31635e0453176e20b.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions docs/main.a51c32c31ffa292ebb0b.bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/main.a51c32c31ffa292ebb0b.bundle.js.map

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/runtime~main.47d31635e0453176e20b.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion docs/runtime~main.a51c32c31ffa292ebb0b.bundle.js.map

This file was deleted.

3 changes: 3 additions & 0 deletions docs/vendors~main.47d31635e0453176e20b.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/vendors~main.47d31635e0453176e20b.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions docs/vendors~main.a51c32c31ffa292ebb0b.bundle.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/vendors~main.a51c32c31ffa292ebb0b.bundle.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-sticky-table",
"description": "Dynamically sized fixed header and columns for tables",
"version": "4.3.1",
"version": "5.0.0",
"author": "Henrybuilt",
"bugs": {
"url": "https://github.com/henrybuilt/react-sticky-table/issues"
Expand Down

0 comments on commit c7f3b2d

Please sign in to comment.