@atlaskit/select 18.8.0 → 18.8.1

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,14 @@
1
1
  # @atlaskit/select
2
2
 
3
+ ## 18.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#174836](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/174836)
8
+ [`8d2c4dcde79da`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d2c4dcde79da) -
9
+ Update use of deprecated aria-label to proper label in PopupSelect
10
+ - Updated dependencies
11
+
3
12
  ## 18.8.0
4
13
 
5
14
  ### Minor Changes
@@ -422,7 +422,7 @@ var PopupSelect = exports.default = /*#__PURE__*/function (_PureComponent) {
422
422
  disabled: !focusLockEnabled,
423
423
  returnFocus: true
424
424
  }, /*#__PURE__*/_react.default.createElement(_Select.default, (0, _extends2.default)({
425
- "aria-label": providedAriaLabel
425
+ label: providedAriaLabel
426
426
  // TODO: Popup Select does not work well with active-descendant
427
427
  ,
428
428
  "aria-live": (/iPad|iPhone|iPod/.test(navigator.userAgent) || navigator.platform === 'MacIntel') &&
@@ -11,7 +11,7 @@ var _createSelect = _interopRequireDefault(require("./createSelect"));
11
11
  /* eslint-disable @repo/internal/react/require-jsdoc */
12
12
 
13
13
  var packageName = "@atlaskit/select";
14
- var packageVersion = "18.8.0";
14
+ var packageVersion = "18.8.1";
15
15
  var SelectWithoutAnalytics = exports.SelectWithoutAnalytics = (0, _createSelect.default)(_async.default);
16
16
  var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
17
17
  var Select = (0, _analyticsNext.withAnalyticsContext)({
@@ -400,7 +400,7 @@ export default class PopupSelect extends PureComponent {
400
400
  disabled: !focusLockEnabled,
401
401
  returnFocus: true
402
402
  }, /*#__PURE__*/React.createElement(Select, _extends({
403
- "aria-label": providedAriaLabel
403
+ label: providedAriaLabel
404
404
  // TODO: Popup Select does not work well with active-descendant
405
405
  ,
406
406
  "aria-live": (/iPad|iPhone|iPod/.test(navigator.userAgent) || navigator.platform === 'MacIntel') &&
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
3
3
  import AsyncSelect from '@atlaskit/react-select/async';
4
4
  import createSelect from './createSelect';
5
5
  const packageName = "@atlaskit/select";
6
- const packageVersion = "18.8.0";
6
+ const packageVersion = "18.8.1";
7
7
  export const SelectWithoutAnalytics = createSelect(AsyncSelect);
8
8
  const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
9
9
  const Select = withAnalyticsContext({
@@ -413,7 +413,7 @@ var PopupSelect = /*#__PURE__*/function (_PureComponent) {
413
413
  disabled: !focusLockEnabled,
414
414
  returnFocus: true
415
415
  }, /*#__PURE__*/React.createElement(Select, _extends({
416
- "aria-label": providedAriaLabel
416
+ label: providedAriaLabel
417
417
  // TODO: Popup Select does not work well with active-descendant
418
418
  ,
419
419
  "aria-live": (/iPad|iPhone|iPod/.test(navigator.userAgent) || navigator.platform === 'MacIntel') &&
@@ -3,7 +3,7 @@ import { createAndFireEvent, withAnalyticsContext, withAnalyticsEvents } from '@
3
3
  import AsyncSelect from '@atlaskit/react-select/async';
4
4
  import createSelect from './createSelect';
5
5
  var packageName = "@atlaskit/select";
6
- var packageVersion = "18.8.0";
6
+ var packageVersion = "18.8.1";
7
7
  export var SelectWithoutAnalytics = createSelect(AsyncSelect);
8
8
  var createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
9
9
  var Select = withAnalyticsContext({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/select",
3
- "version": "18.8.0",
3
+ "version": "18.8.1",
4
4
  "description": "Select allows users to make a single selection or multiple selections from a list of options.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@atlaskit/analytics-next": "^10.1.0",
44
44
  "@atlaskit/ds-lib": "^3.3.0",
45
- "@atlaskit/icon": "^23.0.0",
45
+ "@atlaskit/icon": "^23.1.0",
46
46
  "@atlaskit/platform-feature-flags": "^0.3.0",
47
47
  "@atlaskit/primitives": "^13.3.0",
48
48
  "@atlaskit/react-select": "^1.5.0",