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.8.0 to 0.9.0

2

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

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

@@ -14,3 +14,3 @@ import { StyleSheet } from 'fela-tools'

},
label: ({ invalid, dirty }) => ({
label: ({ dirty, invalid, hasErrors }) => ({
userSelect: 'none',

@@ -22,7 +22,9 @@ position: 'absolute',

text({
color: dirty && invalid ? COLOR.CLAY : COLOR.SLATE
color: hasErrors || (dirty && invalid)
? COLOR.CLAY
: COLOR.SLATE
})
]
}),
field: ({ invalid, dirty }) => ({
field: ({ dirty, invalid, hasErrors }) => ({
display: 'block',

@@ -34,7 +36,9 @@ boxSizing: 'border-box',

border: {
color: dirty
? invalid
? COLOR.CLAY
: COLOR.LEAF
: COLOR.STONE
color: hasErrors
? COLOR.CLAY
: dirty
? invalid
? COLOR.CLAY
: COLOR.LEAF
: COLOR.STONE
},

@@ -62,5 +66,5 @@ placeholder: {

}),
icon: ({ dirty }) => ({
icon: ({ dirty, hasErrors }) => ({
padding: offset(HEIGHT, ICON.SMALL),
visibility: dirty ? 'visible' : 'hidden',
visibility: dirty || hasErrors ? 'visible' : 'hidden',
position: 'absolute',

@@ -67,0 +71,0 @@ left: '100%',

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