@cfpb/cfpb-forms
Advanced tools
Comparing version 0.7.4 to 0.7.6
{ | ||
"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
161609
3243
Updated@cfpb/cfpb-buttons@^0.7.6
Updated@cfpb/cfpb-core@^0.7.6