New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cfpb/cfpb-forms

Package Overview
Dependencies
Maintainers
8
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cfpb/cfpb-forms - npm Package Compare versions

Comparing version 0.7.4 to 0.7.6

8

package.json
{
"name": "@cfpb/cfpb-forms",
"version": "0.7.4",
"version": "0.7.6",
"description": "Design System form fields",

@@ -11,4 +11,4 @@ "less": "src/cfpb-forms.less",

"dependencies": {
"@cfpb/cfpb-buttons": "^0.7.4",
"@cfpb/cfpb-core": "^0.7.4",
"@cfpb/cfpb-buttons": "^0.7.6",
"@cfpb/cfpb-core": "^0.7.6",
"@cfpb/cfpb-grid": "^0.7.2",

@@ -20,3 +20,3 @@ "@cfpb/cfpb-icons": "^0.7.2"

],
"gitHead": "c6ca18562518d259c6148e2261b2df89e9f5f043"
"gitHead": "adeb995978f6fa215ab1617168648b53f6459401"
}

@@ -148,3 +148,3 @@ // Required modules.

type: 'text',
placeholder: _placeholder || 'Choose up to five',
placeholder: _placeholder || 'Select up to five',
inside: _headerDom,

@@ -389,2 +389,12 @@ id: _name,

_headerDom.addEventListener( 'mousemove', function( event ) {
const target = event.target;
// Check if we're over the down-arrow on the right side of the input.
if ( event.layerX > target.offsetWidth - 35 ) {
target.style.cursor = 'pointer';
} else {
target.style.cursor = 'auto';
}
} );
_searchDom.addEventListener( 'input', function() {

@@ -391,0 +401,0 @@ _evaluate( this.value );

Sorry, the diff of this file is not supported yet

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