Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

material

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

material - npm Package Compare versions

Comparing version 0.3.12 to 0.3.13

2

package.json
{
"name": "material",
"version": "0.3.12",
"version": "0.3.13",
"description": "A lightweight implementation of Material Design Components - ES6",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -150,5 +150,5 @@ 'use strict'

if (value) {
this.check()
this.check(value)
} else {
this.unCheck()
this.unCheck(value)
}

@@ -155,0 +155,0 @@ }

@@ -11,2 +11,3 @@ 'use strict'

import Button from './button'
import Divider from './divider'

@@ -59,8 +60,13 @@ const defaults = {

var item
if (info.type === 'divider') {
item = new Divider()
} else {
item = new Button({
name: info.name,
text: info.text || info.name
})
item = new Button({
name: info.name,
text: info.text || info.name
})
}
return item

@@ -67,0 +73,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc