@fluentui/web-components 2.5.4 → 2.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,37 @@
2
2
  "name": "@fluentui/web-components",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 30 Aug 2022 07:41:19 GMT",
5
+ "date": "Wed, 07 Sep 2022 07:53:27 GMT",
6
+ "tag": "@fluentui/web-components_v2.5.5",
7
+ "version": "2.5.5",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "chhol@microsoft.com",
12
+ "package": "@fluentui/web-components",
13
+ "commit": "44bd582ade25f325c4707b75b94ab526fc657cb6",
14
+ "comment": "update fast-foundation to latest packages to resovle 24561"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 02 Sep 2022 07:48:52 GMT",
21
+ "tag": "@fluentui/web-components_v2.5.4",
22
+ "version": "2.5.4",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "aelkholy248@gmail.com",
27
+ "package": "@fluentui/web-components",
28
+ "commit": "6f68ec25042436f1fd33d8edb7ca82bd622b80d3",
29
+ "comment": "Fix typos in webpack integration instructions"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Tue, 30 Aug 2022 07:41:54 GMT",
6
36
  "tag": "@fluentui/web-components_v2.5.4",
7
37
  "version": "2.5.4",
8
38
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # Change Log - @fluentui/web-components
2
2
 
3
- This log was last generated on Tue, 30 Aug 2022 07:41:19 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 07 Sep 2022 07:53:27 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [2.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.5)
8
+
9
+ Wed, 07 Sep 2022 07:53:27 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.4..@fluentui/web-components_v2.5.5)
11
+
12
+ ### Patches
13
+
14
+ - update fast-foundation to latest packages to resovle 24561 ([PR #24657](https://github.com/microsoft/fluentui/pull/24657) by chhol@microsoft.com)
15
+
7
16
  ## [2.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.4)
8
17
 
9
- Tue, 30 Aug 2022 07:41:19 GMT
18
+ Tue, 30 Aug 2022 07:41:54 GMT
10
19
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.3..@fluentui/web-components_v2.5.4)
11
20
 
12
21
  ### Patches
@@ -6433,6 +6433,11 @@ class Accordion extends FoundationElement {
6433
6433
  };
6434
6434
 
6435
6435
  this.activeItemChange = event => {
6436
+ if (event.defaultPrevented || event.target !== event.currentTarget) {
6437
+ return;
6438
+ }
6439
+
6440
+ event.preventDefault();
6436
6441
  const selectedItem = event.target;
6437
6442
  this.activeid = selectedItem.getAttribute("id");
6438
6443
 
@@ -17332,6 +17337,7 @@ class Search$1 extends FormAssociatedSearch {
17332
17337
  handleClearInput() {
17333
17338
  this.value = "";
17334
17339
  this.control.focus();
17340
+ this.handleChange();
17335
17341
  }
17336
17342
  /**
17337
17343
  * Change event handler for inner control.
@@ -18804,6 +18810,10 @@ class Switch extends FormAssociatedSwitch {
18804
18810
  */
18805
18811
 
18806
18812
  this.keypressHandler = e => {
18813
+ if (this.readOnly) {
18814
+ return;
18815
+ }
18816
+
18807
18817
  switch (e.key) {
18808
18818
  case keyEnter:
18809
18819
  case keySpace: