@cfpb/cfpb-forms
Advanced tools
Comparing version 0.26.1 to 0.26.2
{ | ||
"name": "@cfpb/cfpb-forms", | ||
"version": "0.26.1", | ||
"version": "0.26.2", | ||
"description": "Design System form fields", | ||
@@ -12,6 +12,6 @@ "less": "src/cfpb-forms.less", | ||
"dependencies": { | ||
"@cfpb/cfpb-buttons": "^0.26.1", | ||
"@cfpb/cfpb-buttons": "^0.26.2", | ||
"@cfpb/cfpb-core": "^0.26.1", | ||
"@cfpb/cfpb-grid": "^0.26.0", | ||
"@cfpb/cfpb-icons": "^0.26.0" | ||
"@cfpb/cfpb-icons": "^0.26.2" | ||
}, | ||
@@ -21,4 +21,4 @@ "keywords": [ | ||
], | ||
"gitHead": "0b9c7451d9384c8b794e9a1d0ea7c55c5cfd4e6d", | ||
"gitHead": "c2c17929ec92589cb8c9eaa5ce18b14019d986eb", | ||
"type": "module" | ||
} |
@@ -165,3 +165,3 @@ import { | ||
* Highlights an option in the list. | ||
* @param {string} direction | ||
* @param {string} direction - | ||
* Direction to highlight compared to the current focus. | ||
@@ -413,4 +413,3 @@ */ | ||
target.checked = !checked; | ||
const evt = document.createEvent('HTMLEvents'); | ||
evt.initEvent('change', false, true); | ||
const evt = new Event('change', { bubbles: false, cancelable: true }); | ||
target.dispatchEvent(evt); | ||
@@ -417,0 +416,0 @@ } else if (key === KEY_ESCAPE) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
120248
789
Updated@cfpb/cfpb-buttons@^0.26.2
Updated@cfpb/cfpb-icons@^0.26.2