Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.

Commit 8a8b4cd

Browse files
author
Michael Dougall
committed
fix(docs): correct spelling mistakes and pointing to simple reveal
1 parent 5fcc5e6 commit 8a8b4cd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/yubaba/src/__docs__/4-custom-animations/docs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ beforeAnimate = (elements, onFinish, setChildProps) => {
188188
opacity: 1,
189189
transformOrigin: 'center',
190190
- transform: 'rotate(360deg)',
191-
+ transform: `${prevStyle.transfrom} rotate(360deg)`,
191+
+ transform: `${prevStyle.transform} rotate(360deg)`,
192192
}),
193193
});
194194

packages/yubaba/src/animations/Reveal/stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ storiesOf('yubaba/Reveal', module).add('ChildrenHeightChanging', () => (
1919
<Container>
2020
<Toggler>
2121
{toggler => (
22-
<Baba name="simple-reveal" key={`${toggler.shown}`}>
22+
<Baba name="reveal" key={`${toggler.shown}`}>
2323
<Reveal>
2424
{baba => (
2525
<div {...baba}>

packages/yubaba/src/animations/RevealReshapingContainer/__docz__/docs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import * as Styled from './styled';
1111

1212
# RevealReshapingContainer
1313

14-
A composite component that is made up of [SimpleReveal](/simple-reveal) and [ReshapingContainer](/reshaping-container).
14+
A composite component that is made up of [Reveal](/reveal) and [ReshapingContainer](/reshaping-container).
1515
It will do everything the reshaping container does plus keeping the children within the container when resizing.
1616

1717
This is useful for any experience that does not change its position,

0 commit comments

Comments
 (0)