@atlaskit/react-select 1.6.1 → 1.6.2

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.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/react-select
2
2
 
3
+ ## 1.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#102821](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102821)
8
+ [`911b2ffd1013f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/911b2ffd1013f) -
9
+ Remove stopPropagation call in Escape key press events
10
+
3
11
  ## 1.6.1
4
12
 
5
13
  ### Patch Changes
@@ -760,7 +760,6 @@ var Select = exports.default = /*#__PURE__*/function (_Component) {
760
760
  prevInputValue: inputValue
761
761
  });
762
762
  _this.onMenuClose();
763
- (0, _platformFeatureFlags.fg)('design_system_select-a11y-improvement') && event.stopPropagation(); // keep ESC on select from dismissing parent layers
764
763
  } else if (isClearable && escapeClearsValue) {
765
764
  _this.clearValue();
766
765
  }
@@ -737,7 +737,6 @@ export default class Select extends Component {
737
737
  prevInputValue: inputValue
738
738
  });
739
739
  this.onMenuClose();
740
- fg('design_system_select-a11y-improvement') && event.stopPropagation(); // keep ESC on select from dismissing parent layers
741
740
  } else if (isClearable && escapeClearsValue) {
742
741
  this.clearValue();
743
742
  }
@@ -751,7 +751,6 @@ var Select = /*#__PURE__*/function (_Component) {
751
751
  prevInputValue: inputValue
752
752
  });
753
753
  _this.onMenuClose();
754
- fg('design_system_select-a11y-improvement') && event.stopPropagation(); // keep ESC on select from dismissing parent layers
755
754
  } else if (isClearable && escapeClearsValue) {
756
755
  _this.clearValue();
757
756
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/react-select",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "A forked version of react-select to only be used in atlaskit/select",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",