Skip to content

Commit 679c889

Browse files
committed
3.2.1 release
2 parents 506f502 + d3a08e7 commit 679c889

22 files changed

+173
-131
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
The following is a curated list of changes in the Enact project, newest changes on the top.
44

5+
## [3.2.1] - 2019-10-22
6+
7+
### Fixed
8+
9+
- `moonstone/VirtualList` horizontal scrolling in RTL locales
10+
- `moonstone/EditableIntegerPicker` to include the `unit` in the ARIA read out
11+
- `ui/VirtualList.VirtualList` item rendering in RTL locales
12+
513
## [3.2.0] - 2019-10-18
614

715
### Added

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.8.0",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"command": {
55
"bootstrap": {
66
"npmClientArgs": [

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enact",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Monorepo for all Enact front end libraries.",
55
"private": true,
66
"scripts": {

packages/core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following is a curated list of changes in the Enact core module, newest changes on the top.
44

5+
## [3.2.1] - 2019-10-22
6+
7+
No significant changes.
8+
59
## [3.2.0] - 2019-10-18
610

711
No significant changes.

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enact/core",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.",
55
"main": "index.js",
66
"scripts": {

packages/i18n/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following is a curated list of changes in the Enact i18n module, newest changes on the top.
44

5+
## [3.2.1] - 2019-10-22
6+
7+
No significant changes.
8+
59
## [3.2.0] - 2019-10-18
610

711
### Changed

packages/i18n/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@enact/i18n",
33
"main": "./src/index.js",
4-
"version": "3.2.0",
4+
"version": "3.2.1",
55
"description": "Internationalization support for Enact using iLib",
66
"scripts": {
77
"clean": "enact clean",
@@ -41,7 +41,7 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@enact/core": "^3.2.0",
44+
"@enact/core": "^3.2.1",
4545
"prop-types": "^15.7.2",
4646
"ramda": "^0.24.1",
4747
"react": "^16.8.0",

packages/moonstone/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
The following is a curated list of changes in the Enact moonstone module, newest changes on the top.
44

5+
## [3.2.1] - 2019-10-22
6+
7+
### Fixed
8+
9+
- `moonstone/VirtualList` horizontal scrolling in RTL locales
10+
- `moonstone/EditableIntegerPicker` to include the `unit` in the ARIA read out
11+
512
## [3.2.0] - 2019-10-18
613

714
### Added

packages/moonstone/EditableIntegerPicker/EditableIntegerPicker.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,12 @@ const EditableIntegerPickerBase = kind({
301301
</PickerItem>
302302
);
303303
},
304+
ariaValueText: ({unit, value}) => unit ? `${value} ${unit}` : null,
304305
className: ({className, editMode, styler}) => editMode ? styler.append({editMode}) : className,
305306
disabled: ({disabled, max, min}) => min >= max ? true : disabled
306307
},
307308

308-
render: ({pickerRef, ...rest}) => {
309+
render: ({ariaValueText, pickerRef, ...rest}) => {
309310
delete rest.editMode;
310311
delete rest.inputRef;
311312
delete rest.onInputBlur;
@@ -314,7 +315,7 @@ const EditableIntegerPickerBase = kind({
314315
delete rest.unit;
315316

316317
return (
317-
<Picker {...rest} index={0} ref={pickerRef} />
318+
<Picker aria-valuetext={ariaValueText} {...rest} index={0} ref={pickerRef} />
318319
);
319320
}
320321
});

0 commit comments

Comments
 (0)