@microsoft/fast-foundation
Advanced tools
Comparing version 2.46.13 to 2.46.14
# Change Log - @microsoft/fast-foundation | ||
This log was last generated on Sat, 27 Aug 2022 16:52:37 GMT and should not be manually modified. | ||
This log was last generated on Fri, 02 Sep 2022 17:17:04 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 2.46.14 | ||
Fri, 02 Sep 2022 17:17:04 GMT | ||
### Patches | ||
- accordion verifies change events (stephcomeau@msn.com) | ||
- ensure switch cannot be invoked via keyboard when in readonly mode (chhol@microsoft.com) | ||
- call change when search component clear button is clicked (jes@microsoft.com) | ||
## 2.46.13 | ||
Sat, 27 Aug 2022 16:52:37 GMT | ||
Sat, 27 Aug 2022 16:53:58 GMT | ||
@@ -11,0 +21,0 @@ ### Patches |
@@ -81,2 +81,6 @@ import { __decorate } from "tslib"; | ||
this.activeItemChange = (event) => { | ||
if (event.defaultPrevented || event.target !== event.currentTarget) { | ||
return; | ||
} | ||
event.preventDefault(); | ||
const selectedItem = event.target; | ||
@@ -83,0 +87,0 @@ this.activeid = selectedItem.getAttribute("id"); |
@@ -104,2 +104,3 @@ import { __decorate } from "tslib"; | ||
this.control.focus(); | ||
this.handleChange(); | ||
} | ||
@@ -106,0 +107,0 @@ /** |
@@ -35,2 +35,5 @@ import { __decorate } from "tslib"; | ||
this.keypressHandler = (e) => { | ||
if (this.readOnly) { | ||
return; | ||
} | ||
switch (e.key) { | ||
@@ -37,0 +40,0 @@ case keyEnter: |
@@ -5,3 +5,3 @@ { | ||
"sideEffects": false, | ||
"version": "2.46.13", | ||
"version": "2.46.14", | ||
"author": { | ||
@@ -8,0 +8,0 @@ "name": "Microsoft", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4273723
111374