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

@oasis-ui/button

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oasis-ui/button - npm Package Compare versions

Comparing version
0.0.7
to
0.0.8
+1
-1
package.json
{
"name": "@oasis-ui/button",
"version": "0.0.7",
"version": "0.0.8",
"description": "",

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

@@ -21,2 +21,3 @@ <template>

ghost: Boolean,
block: Boolean,
gradient: Boolean

@@ -23,0 +24,0 @@ }

@@ -9,2 +9,3 @@ <template>

_ghost ? 'o-Btn--ghost' : '',
_block ? 'o-Btn--block' : '',
_disabled ? 'is-disabled' : '',

@@ -15,3 +16,3 @@ _gradient ? 'o-Btn--gradient' : '',

class="o-Btn"
type="button"
:type="htmlType"
>

@@ -39,2 +40,6 @@ <div

},
htmlType: {
type: String,
default: 'button'
},
round: Boolean,

@@ -44,2 +49,3 @@ loading: Boolean,

ghost: Boolean,
block: Boolean,
gradient: Boolean

@@ -71,2 +77,5 @@ }

},
_block () {
return this.useGroup ? this.group.block || this.block : this.block
},
_disabled () {

@@ -73,0 +82,0 @@ return this.useGroup ? this.group.disabled || this.disabled : this.disabled