Skip to content

Commit

Permalink
Release v1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Gould committed Aug 17, 2018
1 parent bac797f commit 0b42cee
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 14 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.23.0"
"version": "1.24.0"
}
2 changes: 1 addition & 1 deletion packages/core/dist/components/DateField/DateField.css

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

20 changes: 19 additions & 1 deletion packages/core/dist/components/DateField/DateField.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ var DateField = exports.DateField = function (_React$PureComponent) {
),
_react2.default.createElement(
'div',
{ className: 'ds-l-form-row' },
{ className: 'ds-l-form-row ds-u-align-items--end' },
_react2.default.createElement(_TextField2.default, _extends({}, sharedDateFieldProps, {
fieldClassName: (0, _classnames2.default)('ds-c-field--month', {
'ds-c-field--error': this.props.monthInvalid
Expand All @@ -157,6 +157,15 @@ var DateField = exports.DateField = function (_React$PureComponent) {
value: this.props.monthValue,
'aria-describedby': labelId
})),
_react2.default.createElement(
'span',
{
'aria-hidden': 'true',
role: 'presentation',
className: 'ds-c-datefield__separator'
},
'/'
),
_react2.default.createElement(_TextField2.default, _extends({}, sharedDateFieldProps, {
fieldClassName: (0, _classnames2.default)('ds-c-field--day', {
'ds-c-field--error': this.props.dayInvalid
Expand All @@ -173,6 +182,15 @@ var DateField = exports.DateField = function (_React$PureComponent) {
value: this.props.dayValue,
'aria-describedby': labelId
})),
_react2.default.createElement(
'span',
{
'aria-hidden': 'true',
role: 'presentation',
className: 'ds-c-datefield__separator'
},
'/'
),
_react2.default.createElement(_TextField2.default, _extends({}, sharedDateFieldProps, {
fieldClassName: (0, _classnames2.default)('ds-c-field--year', {
'ds-c-field--error': this.props.yearInvalid
Expand Down
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.23.0",
"version": "1.24.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.23.0",
"@cmsgov/design-system-support": "^1.24.0",
"classnames": "^2.2.5",
"core-js": "^2.5.3",
"downshift": "^1.28.2",
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.23.0",
"version": "1.24.0",
"private": true,
"description": "Design system's documentation website",
"repository": "CMSgov/design-system",
"dependencies": {
"@cmsgov/design-system-core": "^1.23.0",
"@cmsgov/design-system-layout": "^1.23.0",
"@cmsgov/design-system-support": "^1.23.0",
"@cmsgov/design-system-core": "^1.24.0",
"@cmsgov/design-system-layout": "^1.24.0",
"@cmsgov/design-system-support": "^1.24.0",
"classnames": "^2.2.5",
"core-js": "^2.5.3",
"lodash": "^4.17.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/layout/dist/index.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/layout/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@cmsgov/design-system-layout",
"version": "1.23.0",
"version": "1.24.0",
"publishConfig": {
"access": "public"
},
"description": "Responsive flexbox grid framework",
"repository": "CMSgov/design-system",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@cmsgov/design-system-support": "^1.23.0"
"@cmsgov/design-system-support": "^1.24.0"
}
}
2 changes: 1 addition & 1 deletion packages/support/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cmsgov/design-system-support",
"version": "1.23.0",
"version": "1.24.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit 0b42cee

Please sign in to comment.