@atlaskit/select 18.9.3 → 18.9.4

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/select
2
2
 
3
+ ## 18.9.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#106683](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/106683)
8
+ [`77ffefbd46831`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77ffefbd46831) -
9
+ Remove aria-label from visual-only search indicator
10
+
3
11
  ## 18.9.3
4
12
 
5
13
  ### Patch Changes
@@ -75,8 +75,7 @@ var DropdownIndicator = function DropdownIndicator() {
75
75
  css: dropdownStyles
76
76
  }, (0, _react2.jsx)(_searchEditorSearch.default, {
77
77
  color: "currentColor",
78
- spacing: "spacious",
79
- label: "open"
78
+ label: ""
80
79
  }));
81
80
  };
82
81
  var controlStyles = (0, _react2.css)({
@@ -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.9.3";
14
+ var packageVersion = "18.9.4";
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)({
@@ -66,8 +66,7 @@ const DropdownIndicator = () => jsx("div", {
66
66
  css: dropdownStyles
67
67
  }, jsx(SearchIcon, {
68
68
  color: "currentColor",
69
- spacing: "spacious",
70
- label: "open"
69
+ label: ""
71
70
  }));
72
71
  const controlStyles = css({
73
72
  padding: `${"var(--ds-space-100, 8px)"} ${"var(--ds-space-100, 8px)"} ${"var(--ds-space-050, 4px)"}`
@@ -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.9.3";
6
+ const packageVersion = "18.9.4";
7
7
  export const SelectWithoutAnalytics = createSelect(AsyncSelect);
8
8
  const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
9
9
  const Select = withAnalyticsContext({
@@ -70,8 +70,7 @@ var DropdownIndicator = function DropdownIndicator() {
70
70
  css: dropdownStyles
71
71
  }, jsx(SearchIcon, {
72
72
  color: "currentColor",
73
- spacing: "spacious",
74
- label: "open"
73
+ label: ""
75
74
  }));
76
75
  };
77
76
  var controlStyles = css({
@@ -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.9.3";
6
+ var packageVersion = "18.9.4";
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.9.3",
3
+ "version": "18.9.4",
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/"
@@ -49,7 +49,7 @@
49
49
  "@atlaskit/react-select": "^1.6.0",
50
50
  "@atlaskit/spinner": "^16.3.0",
51
51
  "@atlaskit/theme": "^14.0.0",
52
- "@atlaskit/tokens": "^3.1.0",
52
+ "@atlaskit/tokens": "^3.2.0",
53
53
  "@atlaskit/visually-hidden": "^1.5.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@emotion/react": "^11.7.1",
@@ -1,15 +0,0 @@
1
- import React from 'react';
2
- import Select from '../src';
3
-
4
- const options = [
5
- { label: 'Adelaide', value: 'adelaide' },
6
- { label: 'Brisbane', value: 'brisbane' },
7
- { label: 'Canberra', value: 'canberra' },
8
- { label: 'Darwin', value: 'darwin' },
9
- { label: 'Hobart', value: 'hobart' },
10
- { label: 'Melbourne', value: 'melbourne' },
11
- { label: 'Perth', value: 'perth' },
12
- { label: 'Sydney', value: 'sydney' },
13
- ];
14
-
15
- export default () => <Select options={options} placeholder="Choose a City" />;