
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
react-zvui-modal
Advanced tools
This inspired from a jQuery library jschr's bootstrap modal. A equivalent to Twitter Bootstrap's Modal component in a React friendly way.
Forked some of the basic implementations from the original Bootstrap team.
import ZvuiModal from 'react-zvui-modal';
class App extends Component {
state = {
open: false,
};
close = () => {
this.setState({
open: false,
})
};
open = () => {
this.setState({
open: true,
})
};
render = () => {
return (
<section
className="app">
<ZvuiModal
medium
show={this.state.open}
onHide={this.close}>
<ZvuiModal.Header closeButton outside>
<ZvuiModal.Title>
Hello There
</ZvuiModal.Title>
</ZvuiModal.Header>
<ZvuiModal.Body>
<p>I am here and doing awesome</p>
<p>I am here and doing awesome</p>
</ZvuiModal.Body>
</ZvuiModal>
<button
className='f6 link dim br3 ph3 pv2 mb2 dib white bg-black'
onClick={this.open}
>
Open Modal
</button>
</section>
);
}
}
ReactDOM.render(<App />, document.getElementById('container'));
`` Styling You are free to use whatever styles you want inside the modal.
But for basic styles of the modal and wrappers please include the library css like so
import 'react-zvui-modal/build/react-zvui-modal.css';
import (less) './react-zvui-modal/build/react-zvui-modal.css';
show: Boolean, default false.small, sm, large, lg, full: Boolean , default false.backdrop: Boolean or String, default true.loader: Boolean, should the modal show a loader. default false.loadComplete: If loader is true then this needs to set to true for the Modal to show the content. default false.keyboard: Boolean. default true.animate: Boolean. default true.transition: componentOrElement. default true.container: componentOrElement or Function. default window.onShow: Function. default null.onHide: Function. default null.onEnter: Function. default null.onEntering: Function. default null.onEntered: Function. default null.onExit: Function. default null.onExiting: Function. default null.onExited: Function. default null.modalPrefix: String. default null.dialogClassName: String. default null.This is a modal title component.
This is a modal body component.
FAQs
React zvui modal component forked from react-overlay.
The npm package react-zvui-modal receives a total of 6 weekly downloads. As such, react-zvui-modal popularity was classified as not popular.
We found that react-zvui-modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.