New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

material-dialog

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

material-dialog

A simple js library to show material-design dialog.

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Material Dialog

A simple js library to display material-design styled modal or dialog.

How To Install

npm install --save material-dialog

How To Use

Browser

<script src="dist/material-dialog.js"></script>
<script>
new Dialog({
  title: 'Use Google\'s location service?',
  body: 'Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.',
  size: 'medium'
}).show()
</script>

Moduled Style

import Dialog from 'material-dialog'

new Dialog({
  title: 'Use Google\'s location service?',
  body: 'Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.',
  size: 'medium'
}).show()

License

The project is open-sourced software licensed under the MIT license.

Keywords

Material

FAQs

Package last updated on 22 May 2018

Did you know?

Socket

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.

Install

Related posts