@instructure/ui-options 7.7.1 → 7.11.0

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
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.11.0](https://github.com/instructure/instructure-ui/compare/v7.10.0...v7.11.0) (2021-09-17)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-options
9
+
10
+ # [7.10.0](https://github.com/instructure/instructure-ui/compare/v7.9.0...v7.10.0) (2021-08-27)
11
+
12
+ **Note:** Version bump only for package @instructure/ui-options
13
+
14
+ # [7.9.0](https://github.com/instructure/instructure-ui/compare/v7.8.0...v7.9.0) (2021-07-16)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **ui-options:** add aria-hidden to Options label span ([cdacf07](https://github.com/instructure/instructure-ui/commit/cdacf07))
19
+
20
+ # [7.8.0](https://github.com/instructure/instructure-ui/compare/v7.7.1...v7.8.0) (2021-06-18)
21
+
22
+ **Note:** Version bump only for package @instructure/ui-options
23
+
6
24
  ## [7.7.1](https://github.com/instructure/instructure-ui/compare/v7.7.0...v7.7.1) (2021-06-09)
7
25
 
8
26
  **Note:** Version bump only for package @instructure/ui-options
@@ -82,6 +82,7 @@ var Options = (_dec = testable(), _dec2 = themeable(theme, styles), _dec(_class
82
82
  return /*#__PURE__*/React.createElement("span", {
83
83
  id: this._labelId,
84
84
  role: "presentation",
85
+ "aria-hidden": "true",
85
86
  className: classnames(_defineProperty({}, styles.label, true))
86
87
  }, callRenderProp(renderLabel));
87
88
  }
@@ -86,6 +86,7 @@ var Options = (_dec = (0, _uiTestable.testable)(), _dec2 = (0, _uiThemeable.them
86
86
  return /*#__PURE__*/_react.default.createElement("span", {
87
87
  id: this._labelId,
88
88
  role: "presentation",
89
+ "aria-hidden": "true",
89
90
  className: (0, _classnames2.default)((0, _defineProperty2.default)({}, styles.label, true))
90
91
  }, (0, _uiReactUtils.callRenderProp)(renderLabel));
91
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-options",
3
- "version": "7.7.1",
3
+ "version": "7.11.0",
4
4
  "description": "A view-only component for composing interactive lists and menus.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -23,20 +23,20 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "^7.7.1",
27
- "@instructure/ui-color-utils": "^7.7.1",
28
- "@instructure/ui-test-locator": "^7.7.1",
29
- "@instructure/ui-test-utils": "^7.7.1"
26
+ "@instructure/ui-babel-preset": "^7.11.0",
27
+ "@instructure/ui-color-utils": "^7.11.0",
28
+ "@instructure/ui-test-locator": "^7.11.0",
29
+ "@instructure/ui-test-utils": "^7.11.0"
30
30
  },
31
31
  "dependencies": {
32
32
  "@babel/runtime": "^7.9.2",
33
- "@instructure/ui-icons": "^7.7.1",
34
- "@instructure/ui-prop-types": "^7.7.1",
35
- "@instructure/ui-react-utils": "^7.7.1",
36
- "@instructure/ui-testable": "^7.7.1",
37
- "@instructure/ui-themeable": "^7.7.1",
38
- "@instructure/ui-view": "^7.7.1",
39
- "@instructure/uid": "^7.7.1",
33
+ "@instructure/ui-icons": "^7.11.0",
34
+ "@instructure/ui-prop-types": "^7.11.0",
35
+ "@instructure/ui-react-utils": "^7.11.0",
36
+ "@instructure/ui-testable": "^7.11.0",
37
+ "@instructure/ui-themeable": "^7.11.0",
38
+ "@instructure/ui-view": "^7.11.0",
39
+ "@instructure/uid": "^7.11.0",
40
40
  "classnames": "^2",
41
41
  "prop-types": "^15"
42
42
  },
@@ -99,6 +99,7 @@ class Options extends Component {
99
99
  <span
100
100
  id={this._labelId}
101
101
  role="presentation"
102
+ aria-hidden="true"
102
103
  className={classnames({
103
104
  [styles.label]: true
104
105
  })}