Gathering detailed insights and metrics for @chakra-ui/transition
Gathering detailed insights and metrics for @chakra-ui/transition
Gathering detailed insights and metrics for @chakra-ui/transition
Gathering detailed insights and metrics for @chakra-ui/transition
@zag-js/transition
Core logic for the transition widget implemented as a state machine
@chakra-ui/c-motion
Chakra UI Vue | Chakra ui vue motion and transition components and utilities component
@hackr/chakra-ui-transition
Common transition components for Chakra UI
@teste-ui/transition
Common transition components for Chakra UI
Chakra UI is a component system for building SaaS products with speed ⚡️
npm install @chakra-ui/transition
Typescript
Module System
Node Version
NPM Version
@chakra-ui/cli@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.22.0
Updated on Jul 07, 2025
@chakra-ui/react@3.22.0
Updated on Jul 07, 2025
@chakra-ui/charts@3.22.0
Updated on Jul 07, 2025
@chakra-ui/panda-preset@3.21.1
Updated on Jun 28, 2025
@chakra-ui/charts@3.21.1
Updated on Jun 28, 2025
TypeScript (82.19%)
MDX (16.96%)
JavaScript (0.71%)
CSS (0.07%)
HTML (0.06%)
Dockerfile (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
39,350 Stars
10,957 Commits
3,443 Forks
201 Watchers
10 Branches
694 Contributors
Updated on Jul 12, 2025
Latest Version
2.1.0
Package Id
@chakra-ui/transition@2.1.0
Unpacked Size
176.87 kB
Size
21.17 kB
File Count
50
NPM Version
9.5.1
Node Version
18.16.1
Published on
Jul 18, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
2
4
1yarn add @chakra-ui/transition 2# or 3npm i @chakra-ui/transition
The Collapse component is used to create regions of content that can expand/collapse with a simple animation. It helps to hide content that's not immediately relevant to the user.
1import { Collapse } from "@chakra-ui/transition"
1function SampleSpring() { 2 const { isOpen, onToggle } = useDisclosure() 3 return ( 4 <> 5 <Button onClick={onToggle}>Click</Button> 6 <Collapse in={isOpen}> 7 Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus 8 terry richardson ad squid. Nihil anim keffiyeh helvetica, craft beer 9 labore wes anderson cred nesciunt sapiente ea proident. 10 </Collapse> 11 </> 12 ) 13}
1function Example() { 2 const [show, setShow] = React.useState(false) 3 4 const handleToggle = () => setShow(!show) 5 6 return ( 7 <> 8 <Collapse startingHeight={20} in={show}> 9 Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus 10 terry richardson ad squid. Nihil anim keffiyeh helvetica, craft beer 11 labore wes anderson cred nesciunt sapiente ea proident. 12 </Collapse> 13 <Button size="sm" onClick={handleToggle} mt="1rem"> 14 Show {show ? "Less" : "More"} 15 </Button> 16 </> 17 ) 18}
// TODO: Explain the framer-motion
part and how to customize the motion
variants
No vulnerabilities found.
Reason
30 commit(s) and 15 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
7 existing vulnerabilities detected
Details
Reason
Found 5/25 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More