Skip to content

Commit

Permalink
Release v1.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Pierce committed Feb 18, 2019
1 parent 5c483d4 commit 57b2bea
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 17 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"packages/*",
"packages/themes/*"
],
"version": "1.30.3"
"version": "1.31.0"
}
2 changes: 1 addition & 1 deletion packages/core/dist/components/Button/Button.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/dist/components/ChoiceList/Choice.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions packages/core/dist/components/ChoiceList/Choice.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,12 @@ var Choice = exports.Choice = function (_React$PureComponent) {

return _react2.default.createElement(
'div',
{ className: className },
{
className: className,
'aria-live': checkedChildren ? 'polite' : null,
'aria-relevant': checkedChildren ? 'additions text' : null,
'aria-atomic': checkedChildren ? 'false' : null
},
_react2.default.createElement('input', _extends({
className: inputClasses,
id: this.id,
Expand Down Expand Up @@ -195,7 +200,9 @@ Choice.propTypes = {
*/
checked: _propTypes2.default.bool,
/**
* Content to be shown when the choice is checked
* Content to be shown when the choice is checked. See
* **Checked children and the expose within pattern** on
* the Guidance tab for detailed instructions.
*/
checkedChildren: _propTypes2.default.node,
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/core/dist/components/HelpDrawer/HelpDrawer.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/dist/index.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cmsgov/design-system-core",
"version": "1.30.3",
"version": "1.31.0",
"publishConfig": {
"access": "public"
},
Expand All @@ -9,7 +9,7 @@
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/index.js",
"dependencies": {
"@cmsgov/design-system-support": "^1.30.3",
"@cmsgov/design-system-support": "^1.31.0",
"classnames": "^2.2.5",
"core-js": "^2.5.3",
"downshift": "1.31.16",
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@cmsgov/design-system-docs",
"version": "1.30.3",
"version": "1.31.0",
"private": true,
"description": "Design system's documentation website",
"repository": "CMSgov/design-system",
"dependencies": {
"@cmsgov/design-system-core": "^1.30.3",
"@cmsgov/design-system-layout": "^1.30.3",
"@cmsgov/design-system-support": "^1.30.3",
"@cmsgov/design-system-core": "^1.31.0",
"@cmsgov/design-system-layout": "^1.31.0",
"@cmsgov/design-system-support": "^1.31.0",
"classnames": "^2.2.5",
"core-js": "^2.5.3",
"lodash": "^4.17.5",
Expand Down
Loading

0 comments on commit 57b2bea

Please sign in to comment.