Skip to content

Commit f62e2fc

Browse files
committed
1.12.2 release
2 parents 2182d6a + e831b89 commit f62e2fc

21 files changed

+124
-128
lines changed

CHANGELOG.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,37 @@
22

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

5+
## [1.12.2] - 2017-11-15
6+
7+
### Fixed
8+
9+
- `moonstone/VirtualList` to scroll and focus properly by pageUp and pageDown when disabled items are in it
10+
- `moonstone/Button` to correctly specify minimum width when in large text mode
11+
- `moonstone/Scroller.Scrollable` to restore last focused index when panel is changed
12+
- `moonstone/VideoPlayer` to display time correctly in RTL locale
13+
- `moonstone/VirtualList` to scroll correctly using page down key with disabled items
14+
- `moonstone/Scrollable` to not cause a script error when scrollbar is not rendered
15+
- `moonstone/Picker` incrementer and decrementer to not change size when focused
16+
- `moonstone/Header` to use a slightly smaller font size for `title` in non-latin locales and a line-height for `titleBelow` and `subTitleBelow` that better meets the needs of tall-glyph languages like Tamil and Thai, as well as latin locales
17+
- `moonstone/Scroller` and `moonstone/VirtualList` to keep spotlight when pressing a 5-way control while scrolling
18+
- `moonstone/Panels` to prevent user interaction with panel contents during transition
19+
- `moonstone/Slider` and related components to correctly position knob for `detachedKnob` on mouse down and fire value where mouse was positioned on mouse up
20+
- `moonstone/DayPicker` to update day names when changing locale
21+
- `moonstone/ExpandableItem` and all other `Expandable` components to revert 1.12.1 change to pull down from the top
22+
- `spotlight` to handle non-5-way keys correctly to focus on next 5-way keys
23+
- `spotlight/Spottable` to forward `onMouseEnter` and `onMouseLeave`
24+
- `ui/Remeasurable` to update on every trigger change
25+
- `ui/Transition` to revert 1.12.1 change to support `clip` transition-type directions and endering optimizations
26+
527
## [1.12.1] - 2017-11-07
628

729
### Fixed
830

931
- `moonstone/ExpandableItem` and all other `Expandable` components to now pull down from the top instead of being revealed from the bottom, matching Enyo's design
10-
- `moonstone/VirtualListNative` to scroll properly with page up/down keys if there is an disabled item
32+
- `moonstone/VirtualListNative` to scroll properly with page up/down keys if there is a disabled item
1133
- `moonstone/RangePicker` to display negative values correctly in RTL
1234
- `moonstone/Scrollable` to not blur scroll buttons when wheeling
13-
- `moonstone/Scrollbar` to hide scroll thumb immediately without delay after scroll position to be min or max
35+
- `moonstone/Scrollbar` to hide scroll thumb immediately without delay after scroll position reaches min or max
1436
- `moonstone/Divider` to pass `marqueeOn` prop
1537
- `moonstone/Slider` to fire `onChange` on mouse up and key up
1638
- `moonstone/VideoPlayer` to show knob when pressed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lerna": "2.0.0-beta.30",
3-
"version": "1.12.1"
3+
"version": "1.12.2"
44
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enact",
3-
"version": "1.12.1",
3+
"version": "1.12.2",
44
"description": "Monorepo for all Enact front end libraries.",
55
"private": true,
66
"scripts": {

packages/core/CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22

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

5-
## [unreleased]
5+
## [1.12.2] - 2017-11-15
66

7-
### Added
8-
9-
### Changed
10-
11-
### Fixed
7+
No significant changes.
128

139
## [1.12.1] - 2017-11-07
1410

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enact/core",
3-
"version": "1.12.1",
3+
"version": "1.12.2",
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

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22

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

5-
## [unreleased]
5+
## [1.12.2] - 2017-11-15
66

7-
### Added
8-
9-
### Changed
10-
11-
### Fixed
7+
No significant changes.
128

139
## [1.12.1] - 2017-11-07
1410

packages/i18n/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@enact/i18n",
33
"main": "./src/index.js",
4-
"version": "1.12.1",
4+
"version": "1.12.2",
55
"description": "Internationalization support for Enact using iLib",
66
"scripts": {
77
"clean": "enact clean",
@@ -34,7 +34,7 @@
3434
"extends": "enact/strict"
3535
},
3636
"dependencies": {
37-
"@enact/core": "^1.12.1",
37+
"@enact/core": "^1.12.2",
3838
"prop-types": "~15.6.0",
3939
"ramda": "~0.24.1",
4040
"react": "~15.6.1",

packages/moonstone/CHANGELOG.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22

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

5-
## [unreleased]
6-
7-
### Added
8-
9-
### Changed
5+
## [1.12.2] - 2017-11-15
106

117
### Fixed
128

@@ -17,21 +13,22 @@ The following is a curated list of changes in the Enact moonstone module, newest
1713
- `moonstone/VirtualList` to scroll correctly using page down key with disabled items
1814
- `moonstone/Scrollable` to not cause a script error when scrollbar is not rendered
1915
- `moonstone/Picker` incrementer and decrementer to not change size when focused
20-
- `moonstone/Header` to use a slightly smaller font size for `title` in non-latin locales and a line-height for `titleBelow` and `subTitleBelow` that better meets the needs of tall-glyph languages like Tamil and Thai
16+
- `moonstone/Header` to use a slightly smaller font size for `title` in non-latin locales and a line-height for `titleBelow` and `subTitleBelow` that better meets the needs of tall-glyph languages like Tamil and Thai, as well as latin locales
2117
- `moonstone/Scroller` and `moonstone/VirtualList` to keep spotlight when pressing a 5-way control while scrolling
2218
- `moonstone/Panels` to prevent user interaction with panel contents during transition
2319
- `moonstone/Slider` and related components to correctly position knob for `detachedKnob` on mouse down and fire value where mouse was positioned on mouse up
2420
- `moonstone/DayPicker` to update day names when changing locale
21+
- `moonstone/ExpandableItem` and all other `Expandable` components to revert 1.12.1 change to pull down from the top
2522

2623
## [1.12.1] - 2017-11-07
2724

2825
### Fixed
2926

3027
- `moonstone/ExpandableItem` and all other `Expandable` components to now pull down from the top instead of being revealed from the bottom, matching Enyo's design
31-
- `moonstone/VirtualListNative` to scroll properly with page up/down keys if there is an disabled item
28+
- `moonstone/VirtualListNative` to scroll properly with page up/down keys if there is a disabled item
3229
- `moonstone/RangePicker` to display negative values correctly in RTL
3330
- `moonstone/Scrollable` to not blur scroll buttons when wheeling
34-
- `moonstone/Scrollbar` to hide scroll thumb immediately without delay after scroll position to be min or max
31+
- `moonstone/Scrollbar` to hide scroll thumb immediately without delay after scroll position reaches min or max
3532
- `moonstone/Divider` to pass `marqueeOn` prop
3633
- `moonstone/Slider` to fire `onChange` on mouse up and key up
3734
- `moonstone/VideoPlayer` to show knob when pressed

packages/moonstone/Panels/Header.less

+2-5
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,9 @@
6060
.moon-locale-non-latin({line-height: @moon-non-latin-medium-header-line-height;});
6161
}
6262

63-
.titleBelow {
64-
line-height: 48px;
65-
}
66-
63+
.titleBelow,
6764
.subTitleBelow {
68-
line-height: 45px;
65+
line-height: 1.4em;
6966
}
7067
}
7168

packages/moonstone/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enact/moonstone",
3-
"version": "1.12.1",
3+
"version": "1.12.2",
44
"description": "Large-screen/TV support library for Enact, containing a variety of UI components.",
55
"main": "index.js",
66
"scripts": {
@@ -28,10 +28,10 @@
2828
"extends": "enact/strict"
2929
},
3030
"dependencies": {
31-
"@enact/core": "^1.12.1",
32-
"@enact/i18n": "^1.12.1",
33-
"@enact/spotlight": "^1.12.1",
34-
"@enact/ui": "^1.12.1",
31+
"@enact/core": "^1.12.2",
32+
"@enact/i18n": "^1.12.2",
33+
"@enact/spotlight": "^1.12.2",
34+
"@enact/ui": "^1.12.2",
3535
"classnames": "~2.2.5",
3636
"eases": "~1.0.8",
3737
"invariant": "~2.2.2",

packages/sampler/CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22

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

5-
## [unreleased]
5+
## [1.12.2] - 2017-11-15
66

7-
### Added
8-
9-
### Changed
10-
11-
### Fixed
7+
No significant changes.
128

139
## [1.12.1] - 2017-11-07
1410

0 commit comments

Comments
 (0)