Add Storybook item for HorizontalScrollGrid (#475)

* Add Storybook item for HorizontalScrollGrid

* Add Lifecycle's as well

* Remove value in bool prop

* Update index.ts

* Fixed comments
This commit is contained in:
Stefan Ålund
2020-04-05 22:25:54 +02:00
committed by GitHub
parent cdf7d4ed39
commit 98fb97717d
4 changed files with 104 additions and 0 deletions
@@ -0,0 +1,37 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import HorizontalScrollGrid from './HorizontalScrollGrid';
const cardContentStyle = { height: 0, padding: 150, margin: 20 };
const containerStyle = { width: 800, height: 400, margin: 20 };
const opacityArray = [0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0];
export default {
title: 'HorizontalScrollGrid',
component: HorizontalScrollGrid,
};
export const Default = () => (
<div style={containerStyle}>
<HorizontalScrollGrid>
{opacityArray.map(element => {
const style = { backgroundColor: `rgba(0, 185, 151, ${element})` };
return <div style={{ ...style, ...cardContentStyle }} key={element} />;
})}
</HorizontalScrollGrid>
</div>
);
@@ -0,0 +1,33 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { AlphaLabel } from './Lifecycle';
export default {
title: 'Alpha Lifecycle',
component: AlphaLabel,
};
export const Default = () => (
<>
This feature is in <AlphaLabel />
</>
);
export const Shorthand = () => (
<>
This feature is in <AlphaLabel isShorthand />
</>
);
@@ -0,0 +1,33 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { BetaLabel } from './Lifecycle';
export default {
title: 'Beta Lifecycle',
component: BetaLabel,
};
export const Default = () => (
<>
This feature is in <BetaLabel />
</>
);
export const Shorthand = () => (
<>
This feature is in <BetaLabel isShorthand />
</>
);
+1
View File
@@ -32,6 +32,7 @@ export { default as HorizontalScrollGrid } from './components/HorizontalScrollGr
export { default as ProgressCard } from './components/ProgressCard';
export { default as CircleProgress } from './components/CircleProgress';
export { default as Progress } from './components/Progress';
export { AlphaLabel, BetaLabel } from './components/Lifecycle';
export { default as SupportButton } from './components/SupportButton';
export { default as SortableTable } from './components/SortableTable';
export { FeatureCalloutCircular } from './components/FeatureDiscovery/FeatureCalloutCircular';