Skip to content

Commit 6e65556

Browse files
committed
virtualized
1 parent 664b57d commit 6e65556

File tree

15 files changed

+31
-33
lines changed

15 files changed

+31
-33
lines changed

.storybook/preview.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Features = [
1818
'Fixed Header',
1919
'Horizontal Scroll',
2020
'Pin',
21-
'Ten Thousand Rows',
21+
'Virtualized',
2222
'Data Grid',
2323
'Column Hiding',
2424
'Column Ordering',
@@ -37,7 +37,7 @@ export const parameters = {
3737
storySort: {
3838
order: [
3939
'Getting Started',
40-
['Introduction', 'Feature Requests', 'Roadmap', 'Support'],
40+
['Installation', 'FAQ'],
4141
'First Steps',
4242
['Compact Table', 'Composed Table'],
4343
'Types',

.storybook/stories/Compact/index.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import * as PaginationStory from './pagination';
1717
import * as FixedHeaderStory from './fixed-header';
1818
import * as HorizontalScrollStory from './horizontal-scroll';
1919
import * as PinStory from './pin';
20-
import * as TenThousandRowsStory from './thousand-rows';
20+
import * as TenThousandRowsStory from './virtualized';
2121
// import * as DataGridStory from './data-grid';
2222
import * as ColumnHideStory from './column-hide';
2323
import * as ColumnOrderStory from './column-order';

.storybook/stories/Compact/thousand-rows.js renamed to .storybook/stories/Compact/virtualized.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { CompactTable } from '@table-library/react-table-library/compact';
55
import { DocumentationSee } from '../documentation';
66
import { manyNodes } from '../data';
77

8-
const key = 'Ten Thousand Rows';
8+
const key = 'Virtualized';
99

1010
const Component = () => {
1111
const data = { nodes: manyNodes };
@@ -53,7 +53,7 @@ import { CompactTable } from '@table-library/react-table-library/compact';
5353
import { DocumentationSee } from '../documentation';
5454
import { manyNodes } from '../data';
5555
56-
const key = 'Ten Thousand Rows';
56+
const key = 'Virtualized';
5757
5858
const Component = () => {
5959
const data = { nodes: manyNodes };

.storybook/stories/Features/thousand-rows.story.js renamed to .storybook/stories/Features/virtualized.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const WithStickyHeader = React.forwardRef(({ children, ...rest }, ref) => (
3737
</div>
3838
));
3939

40-
storiesOf('Features/Ten Thousand Rows', module)
40+
storiesOf('Features/Virtualized', module)
4141
.addParameters({
4242
component: Table,
4343
subcomponents: {

.storybook/stories/FirstSteps/when-to-use.story.mdx renamed to .storybook/stories/FirstSteps/faq.story.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="First Steps/Which table should I use?" />
3+
<Meta title="First Steps/FAQ" />
4+
5+
# Which Table component(s) should I use?
46

57
While navigating through the documentation, you will see both, `CompactTable`s and Composed Tables. Therefore you will need to know when to use which:
68

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Getting Started/Feature Requests" />
3+
<Meta title="Getting Started/FAQ" />
44

5-
# Feature Requests
5+
# FAQ
6+
7+
## Feature Requests
68

79
This library got produced for a client of mine and hence runs in production for them. All features were tailored to this client, however, the plan is to make the library accessible for anyone, because all features were already implemented with a broader audience in mind. Therefore we decided to open source it.
810

911
If you and your company have any further [feature requests](https://github.com/table-library/react-table-library/issues), please contact me and we can negotiate the terms. If your company needs help to implement this library in their application, perhaps with [more advanced server-side features](https://www.robinwieruch.de/react-tree-list/), do not hesitate to ask for my help as a freelance developer.
12+
13+
## Roadmap
14+
15+
Follow the links to find ongoing [issues](https://github.com/table-library/react-table-library/issues) and [discussions](https://github.com/table-library/react-table-library/discussions).
16+
17+
## Support
18+
19+
Get help by creating an [issue](https://github.com/table-library/react-table-library/issues) or [discussion](https://github.com/table-library/react-table-library/discussions).

.storybook/stories/Introduction/hello.story.mdx renamed to .storybook/stories/Introduction/installation.story.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Meta } from '@storybook/addon-docs/blocks';
22

3-
<Meta title="Getting Started/Introduction" />
3+
<Meta title="Getting Started/Installation" />
44

55
# React Table Library
66

.storybook/stories/Introduction/roadmap.story.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

.storybook/stories/Introduction/support.story.mdx

Lines changed: 0 additions & 7 deletions
This file was deleted.

.storybook/stories/Themes/Libraries/chakra-ui/index.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import * as PaginationStory from './pagination';
2020
import * as FixedHeaderStory from './fixed-header';
2121
import * as HorizontalScrollStory from './horizontal-scroll';
2222
import * as PinStory from './pin';
23-
import * as TenThousandRowsStory from './thousand-rows';
23+
import * as TenThousandRowsStory from './virtualized';
2424
// import * as DataGridStory from './data-grid';
2525
import * as ColumnHideStory from './column-hide';
2626
import * as ColumnOrderStory from './column-order';

0 commit comments

Comments
 (0)