Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.29 KB

NOTES.md

File metadata and controls

53 lines (37 loc) · 1.29 KB

Stat

  • Support animate prop, so the number can animate in on-mount

ListTransition

  • Stack can animate automatically by leveraging staggerChildren in framer-motion.
<ListTransition motion="scale" childMotion="scale-fade">
  <div>Welcome</div>
  <div>Welcome</div>
  <div>Welcome</div>
</ListTransition>

Tabs

  • Use Shared animation for the Tabs indicator

Drawer

  • Leverage framer motions's drag feature to implement "Swipe to close"
  • Move to dialog package
  • Figure out how to add permanent drawer

Transition

Create motion presets for the following

Tag Group

  • Add support for children animation so that when a new tag is added or removed, there's some smooth transition effect.
  • Use the Wrap component

Move use-descendant and use-clickable to hooks package

Toast