Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
rc-material-sidebar
Advanced tools
rc-material-sidebar is a lightweight React component designed to streamline the implementation of a sidebar navigation system with support for collapsing and expanding views. This component is ideal for applications requiring a sidebar that can toggle between a compact (collapsed) and expanded state, enhancing user experience and optimizing screen real estate.
You can easily install rc-material-sidebar via your packeage manager.
npm install rc-material-sidebar
yarn add rc-material-sidebar
import Sidebar from "rc-material-sidebar";
const items = [
{
key: "1", //unique
label:"First Menu"
link:"/yourpath"
icon:<MailIcon/>//material icon
},
{
key: "2", //unique
label:"Second Menu" // have childrens
icon:<MailIcon/>//material icon
children:[
{
key: "3", //unique
label:"child menu one"
link:"/yourpath"
icon:<MailIcon/>//material icon
},
{
key: "4", //unique
label:"child menu two"
link:"/yourpath"
icon:<MailIcon/>//material icon
}
]
}
];
const onClick = (e, item) => {
console.log(e, item)
}
<style>
.sidebarMenu {
overflow: hidden;
}
.sidebarMenu > li > a.active .MuiTypography-root,
.active-menu .MuiTypography-root {
font-weight: 500;
color: var(--colorPrimary);
}
.sidebarMenu > li > a.active,
.active-menu {
background: rgb(from var(--colorPrimary) r g b / 7%);
}
</style>
return (
<Sidebar
items={items}
variant={open ? "full" : "mini"}
onClick={onClick}
//
/>
);
Collapse and Expand : Easily switch between a compact (collapsed) and expanded view of the sidebar. Flexible Integration: Seamlessly integrate into React applications to enhance navigation functionality. Customizable: Configure appearance and behavior to suit your application's design and user experience needs.
FAQs
rc material sidebar
The npm package rc-material-sidebar receives a total of 0 weekly downloads. As such, rc-material-sidebar popularity was classified as not popular.
We found that rc-material-sidebar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.