
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@wedgekit/accordion
Advanced tools
An accordion is an area that can be collapsed and opened. The component consists of a title bar and children that will be revealed when the accordion is open.
Terms for understanding accordions include:
Accordion Header: Label for or thumbnail representing a section of content that also serves as a control for showing, and in some implementations, hiding the section of content.
Accordion Panel: Section of content associated with an accordion header.
More on the Accordion here.
import styled from 'styled-components';
import Accordion from '@wedgekit/accordion';
import Card from '@wedgekit/card';
import { Text } from '@wedgekit/core';
const StyledCard = styled(Card)`
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 8px;
margin: 8px 32px;
`;
const Example = () => {
const [open, setOpen] = React.useState(false);
return (
<Accordion
open={open}
header={<Text style={{ margin: 'auto 0px' }}>This is the Accordion Header</Text>}
onToggle={() => setOpen(!open)}
>
<>
<StyledCard>
<Text>Task Title</Text>
<Text>01/02/21</Text>
<Text>01/02/21</Text>
</StyledCard>
<StyledCard>
<Text>Task Title</Text>
<Text>01/02/21</Text>
<Text>01/02/21</Text>
</StyledCard>
</>
</Accordion>
);
};
render(<Example />);
Type: JSX.Element
Required: ✅
Children is the panel
content of the Accordion. Panel content will be shown if open
is true
and hidden if open
is false
.
Type: string
required: ❌
This is exposed but is only here so that styled-components will be able to style components correctly. Please do not use this unless you really know what you are doing.
Type: JSX.Element
Required: ✅
JSX that renders as the header of the Accordion. Header will be displayed if Accordion is open or collapsed.
Type: boolean
Required: ✅
Determines whether or not the accordion children are displayed or not.
Type: (e: React.SyntheticEvent) => void
Required: ✅
Event notifying the intent of the Accordion to toggle between open and closed.
FAQs
## Purpose
We found that @wedgekit/accordion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.