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

@croudtech/vue-connect-ui

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@croudtech/vue-connect-ui - npm Package Compare versions

Comparing version 0.3.1 to 0.4.0

2

package.json
{
"name": "@croudtech/vue-connect-ui",
"version": "0.3.1",
"version": "0.4.0",
"description": "Vue plugin providing a suite of Croud UI components",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/CroudSupport/connect-vue-ui-kit#readme",

@@ -55,2 +55,5 @@ import {

},
minWidth: {
type: [ String, Number ]
},
display: {

@@ -57,0 +60,0 @@ type: String,

@@ -11,7 +11,7 @@ import { StyleSheet } from 'fela-tools'

export default StyleSheet.create({
button: ({ color, disabled, outline, outerSize, isSolid }) => ({
button: ({ color, disabled, outline, minWidth, outerSize, isSolid }) => ({
pointerEvents: disabled ? 'none' : null,
opacity: disabled ? 0.5 : null,
borderRadius: outerSize * 0.5,
minWidth: outerSize,
minWidth: minWidth ? minWidth : outerSize,
height: outerSize,

@@ -62,10 +62,18 @@ extend: [

const paddingLeft = icon ? 2 : padding
return edges({
prefix: 'padding',
edges: {
right: padding,
left: paddingLeft
}
})
return {
extend: [
flex({
grow: 1,
shrink: 0
}),
edges({
prefix: 'padding',
edges: {
right: padding,
left: paddingLeft
}
})
]
}
}
})

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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