Skip to content

Commit 2291928

Browse files
committed
pin -> fixed column
1 parent b2aaaa2 commit 2291928

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
lines changed

.storybook/preview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Features = [
1717
'Pagination',
1818
'Fixed Header',
1919
'Horizontal Scroll',
20-
'Pin',
20+
'Fixed Column',
2121
'Virtualized',
2222
'Editable',
2323
'Data Grid',

.storybook/stories/Compact/pin.js renamed to .storybook/stories/Compact/fixed-column.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { useTheme } from '@table-library/react-table-library/theme';
66
import { DocumentationSee } from '../documentation';
77
import { nodes } from '../data';
88

9-
const key = 'Pin';
9+
const key = 'Fixed Column';
1010

1111
const Component = () => {
1212
const data = { nodes };
@@ -83,7 +83,7 @@ import { useTheme } from '@table-library/react-table-library/theme';
8383
import { DocumentationSee } from '../documentation';
8484
import { nodes } from '../data';
8585
86-
const key = 'Pin';
86+
const key = 'Fixed Column';
8787
8888
const Component = () => {
8989
const data = { nodes };

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import * as ExpandStory from './expand';
1616
import * as PaginationStory from './pagination';
1717
import * as FixedHeaderStory from './fixed-header';
1818
import * as HorizontalScrollStory from './horizontal-scroll';
19-
import * as PinStory from './pin';
19+
import * as FixedColumnStory from './fixed-column';
2020
import * as VirtualizedStory from './virtualized';
2121
import * as EditableStory from './editable';
2222
// import * as DataGridStory from './data-grid';
@@ -38,7 +38,7 @@ const stories = [
3838
PaginationStory,
3939
FixedHeaderStory,
4040
HorizontalScrollStory,
41-
PinStory,
41+
FixedColumnStory,
4242
VirtualizedStory,
4343
EditableStory,
4444
// DataGridStory,

.storybook/stories/Composites/resize-pin.js renamed to .storybook/stories/Composites/resize-fixed-column.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { useTheme } from '@table-library/react-table-library/theme';
1414

1515
import { nodes } from '../data';
1616

17-
storiesOf('Composites/Resize & Pin', module)
17+
storiesOf('Composites/Resize & Fixed Column', module)
1818
.addParameters({ component: Table })
1919
.add('base', () => {
2020
const data = { nodes };

.storybook/stories/Features/pin.story.js renamed to .storybook/stories/Features/fixed-column.story.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { useTheme } from '@table-library/react-table-library/theme';
1414

1515
import { nodes } from '../data';
1616

17-
storiesOf('Features/Pin', module)
17+
storiesOf('Features/Fixed Column', module)
1818
.addParameters({
1919
component: Table,
2020
subcomponents: {

.storybook/stories/Themes/Libraries/chakra-ui/pin.js renamed to .storybook/stories/Themes/Libraries/chakra-ui/fixed-column.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Box } from '@chakra-ui/react';
88
import { DocumentationSee } from '../../../documentation';
99
import { nodes } from '../../../data';
1010

11-
const key = 'Pin';
11+
const key = 'Fixed Column';
1212

1313
const Component = () => {
1414
const data = { nodes };
@@ -91,7 +91,7 @@ import { Box } from '@chakra-ui/react';
9191
import { DocumentationSee } from '../../../documentation';
9292
import { nodes } from '../../../data';
9393
94-
const key = 'Pin';
94+
const key = 'Fixed Column';
9595
9696
const Component = () => {
9797
const data = { nodes };

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import * as ExpandStory from './expand';
1919
import * as PaginationStory from './pagination';
2020
import * as FixedHeaderStory from './fixed-header';
2121
import * as HorizontalScrollStory from './horizontal-scroll';
22-
import * as PinStory from './pin';
22+
import * as FixedColumnStory from './fixed-column';
2323
import * as VirtualizedStory from './virtualized';
2424
import * as EditableStory from './editable';
2525
// import * as DataGridStory from './data-grid';
@@ -43,7 +43,7 @@ const stories = [
4343
PaginationStory,
4444
FixedHeaderStory,
4545
HorizontalScrollStory,
46-
PinStory,
46+
FixedColumnStory,
4747
VirtualizedStory,
4848
EditableStory,
4949
// DataGridStory,

0 commit comments

Comments
 (0)