
Security News
PyPI Expands Trusted Publishing to GitLab Self-Managed as Adoption Passes 25 Percent
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads
@react-md/expansion-panel
Advanced tools
Create accessible expansion components for accordions and disclosures.
Expansion panels are used to create disclosure widgets that show additional information once the component has been toggled to an "open" state. In other words, expansion panels are a styled version of a details element.
An expansion panel can be rendered standalone or within a group with the
ExpansionList component and usePanels hook.
npm install --save @react-md/expansion-panel
This package is not super helpful on its own, so it is recommended to also install the following packages:
npm install --save @react-md/theme \
@react-md/typography \
@react-md/list \
@react-md/icon
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
Expansion panels are normally rendered within a list of two or more panels. To
create such a list, you'll want to use the ExpansionList and ExpansionPanel
components and usePanels hook:
import { render } from "react-dom";
import {
ExpansionList,
ExpansionPanel,
usePanels,
} from "@react-md/expansion-panel";
const App = () => {
const [panels, onKeyDown] = usePanels({
count: 3,
idPrefix: "my-panel-group",
});
const [panel1Props, panel2Props, panel3Props] = panels;
return (
<main>
<ExpansionList onKeyDown={onKeyDown}>
<ExpansionPanel {...panel1Props} headerChildren="Panel 1">
Panel 1 contents...
</ExpansionPanel>
<ExpansionPanel {...panel2Props} headerChildren={<span>Panel 2</span>}>
Panel 2 contents...
</ExpansionPanel>
<ExpansionPanel {...panel3Props} headerChildren="Panel 1">
Panel 3 contents...
</ExpansionPanel>
</ExpansionList>
</main>
);
};
render(<App />, document.getElementById("root"));
FAQs
Create accessible expansion components for accordions and disclosures.
The npm package @react-md/expansion-panel receives a total of 802 weekly downloads. As such, @react-md/expansion-panel popularity was classified as not popular.
We found that @react-md/expansion-panel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.