Security News
RubyGems.org Adds New Maintainer Role
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.
@hig/modal
Advanced tools
A modal is an overlay that focuses the customer's attention on a single task or set of controls. It creates a mode that disables the main window but keeps it visible with the modal window as a child window in front of it. Users must interact with the modal window before they can return to the parent application.
Read more about when and how to use the Modal component on the internal wiki.
yarn add @hig/modal @hig/theme-context @hig/theme-data
import Modal from '@hig/modal';
import '@hig/modal/build/index.css';
<Modal
title="Remove your item?"
open
>
<Typography>This action is irreversible.</Typography>
<Button title="Cancel" type="outline" />
<Button title="Remove" type="outline" />
</Modal>
You will likely want to provide your own styles for the Modal body content, including positioning for Typography and Button elements. Modal has a stylesheet
prop that accepts a function wherein you can modify Modal's styles. For instance
import Modal from "@hig/modal";
import Typography from "@hig/typography";
import Button from "@hig/button";
import merge from "lodash.merge";
function YourComponent() {
// ...
const modalStyles = styles =>
merge(styles, {
modal: {
bodyContent: {
display: "flex",
flexDirection: "column",
justifyContent: "space-between"
}
}
})
return (
<Modal open title="Your title" stylesheet={modalStyles}>
<Typography>Modal content</Typography>
<div style={{ alignSelf: "flex-end" }}>
<Button title="Ok" type="outline" />
</div>
</Modal>
)
}
FAQs
HIG Modal
The npm package @hig/modal receives a total of 71 weekly downloads. As such, @hig/modal popularity was classified as not popular.
We found that @hig/modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.