Skip to content

Commit bd1980b

Browse files
committed
2.0.0-beta.7 release
2 parents 0f4474e + a803eee commit bd1980b

18 files changed

Lines changed: 270 additions & 218 deletions

CHANGELOG.md

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

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

5+
## [2.0.0-beta.7] - 2018-06-11
6+
7+
### Removed
8+
9+
- `i18n/Uppercase` property `preserveCase`, replaced by `casing`
10+
- `moonstone/Dialog` properties `preserveCase` and `showDivider`, replaced by `casing` and `noDivider` respectively
11+
- `moonstone/Divider` property `preserveCase`, replaced by `casing`
12+
- `moonstone/ExpandableInput` property `onInputChange`, replaced by `onChange`
13+
- `moonstone/MoonstoneDecorator.TextSizeDecorator`, replaced by `moonstone/MoonstoneDecorator.AccessibilityDecorator`
14+
- `moonstone/Panels.Header` property `preserveCase`, replaced by `casing`
15+
- `moonstone/Panels.Panel` property `noAutoFocus`, replaced by `autoFocus`
16+
- `moonstone/TooltipDecorator` property `tooltipPreserveCase`, replaced by `tooltipCasing`
17+
18+
### Added
19+
20+
- `ui/FloatingLayer.FloatingLayerBase` export
21+
22+
### Changed
23+
24+
- `moonstone/VideoPlayer` to allow spotlight focus to move left and right from `MediaControls`
25+
- `moonstone/VideoPlayer` to disable bottom controls when loading until it's playable
26+
- `ui/FloatingLayer` to call `onOpen` only after it is rendered
27+
28+
### Fixed
29+
30+
- `moonstone/EditableIntegerPicker` to disable itself when on a range consisting of a single static value
31+
- `moonstone/Picker` to disable itself when containing fewer than two items
32+
- `moonstone/Popup` to spot its content correctly when `open` by default
33+
- `moonstone/RangePicker` to disable itself when on a range consisting of a single static value
34+
- `moonstone/TooltipDecorator` to hide when `onDismiss` has been invoked
35+
- `moonstone/VideoPlayer` to show media controls when pressing down in pointer mode
36+
- `moonstone/VideoPlayer` to provide a more natural 5-way focus behavior
37+
- `moonstone/VideoPlayer.MediaControls` to handle left and right key to jump when `moonstone/VideoPlayer` is focused
38+
- `ui/MarqueeDecorator` to stop marqueeing when using hover and pointer hides
39+
540
## [2.0.0-beta.6] - 2018-06-04
641

742
### Removed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lerna": "2.8.0",
3-
"version": "2.0.0-beta.6"
3+
"version": "2.0.0-beta.7"
44
}

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": "2.0.0-beta.6",
3+
"version": "2.0.0-beta.7",
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+
## [2.0.0-beta.7] - 2018-06-11
6+
7+
No significant changes.
8+
59
## [2.0.0-beta.6] - 2018-06-04
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": "2.0.0-beta.6",
3+
"version": "2.0.0-beta.7",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## [unreleased]
5+
## [2.0.0-beta.7] - 2018-06-11
66

77
### Removed
88

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": "2.0.0-beta.6",
4+
"version": "2.0.0-beta.7",
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": "^2.0.0-beta.6",
37+
"@enact/core": "^2.0.0-beta.7",
3838
"prop-types": "^15.6.0",
3939
"ramda": "^0.24.1",
4040
"react": "^16.3.2",

packages/moonstone/CHANGELOG.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +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]
5+
## [2.0.0-beta.7] - 2018-06-11
66

77
### Removed
88

@@ -14,21 +14,21 @@ The following is a curated list of changes in the Enact moonstone module, newest
1414
- `moonstone/Panels.Panel` property `noAutoFocus`, replaced by `autoFocus`
1515
- `moonstone/TooltipDecorator` property `tooltipPreserveCase`, replaced by `tooltipCasing`
1616

17+
### Changed
18+
19+
- `moonstone/VideoPlayer` to allow spotlight focus to move left and right from `MediaControls`
20+
- `moonstone/VideoPlayer` to disable bottom controls when loading until it's playable
21+
1722
### Fixed
1823

19-
- `moonston/EditableIntegerPicker` to disable itself when on a range producing a single static value.
20-
- `moonston/Picker` to disable itself when containing only one or zero items.
21-
- `moonston/RangePicker` to disable itself when on a range producing a single static value.
24+
- `moonstone/EditableIntegerPicker` to disable itself when on a range consisting of a single static value
25+
- `moonstone/Picker` to disable itself when containing fewer than two items
26+
- `moonstone/Popup` to spot its content correctly when `open` by default
27+
- `moonstone/RangePicker` to disable itself when on a range consisting of a single static value
2228
- `moonstone/TooltipDecorator` to hide when `onDismiss` has been invoked
2329
- `moonstone/VideoPlayer` to show media controls when pressing down in pointer mode
30+
- `moonstone/VideoPlayer` to provide a more natural 5-way focus behavior
2431
- `moonstone/VideoPlayer.MediaControls` to handle left and right key to jump when `moonstone/VideoPlayer` is focused
25-
- `moonstone/Popup` to spot its content correctly when `open` by default
26-
27-
### Changed
28-
29-
- `moonstone/VideoPlayer` to roam spotlight focus freely to left and right from `MediaControls`
30-
- `moonstone/VideoPlayer` to disable bottom controls when loading until it's playable
31-
- `moonstone/VideoPlayer` container changes to provide a more natural 5-way focus behavior
3232

3333
## [2.0.0-beta.6] - 2018-06-04
3434

packages/moonstone/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enact/moonstone",
3-
"version": "2.0.0-beta.6",
3+
"version": "2.0.0-beta.7",
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": "^2.0.0-beta.6",
32-
"@enact/i18n": "^2.0.0-beta.6",
33-
"@enact/spotlight": "^2.0.0-beta.6",
34-
"@enact/ui": "^2.0.0-beta.6",
31+
"@enact/core": "^2.0.0-beta.7",
32+
"@enact/i18n": "^2.0.0-beta.7",
33+
"@enact/spotlight": "^2.0.0-beta.7",
34+
"@enact/ui": "^2.0.0-beta.7",
3535
"classnames": "^2.2.5",
3636
"eases": "^1.0.8",
3737
"invariant": "^2.2.2",

packages/sampler/CHANGELOG.md

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

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

5-
## [2.0.0-beta.6] - 2018-06-04
5+
## [2.0.0-beta.7] - 2018-06-11
66

77
No significant changes.
88

9-
### Fixed
9+
## [2.0.0-beta.6] - 2018-06-04
1010

11-
- `Slider` in QA sampler to deprecate `data` prop in `moonstone/VirtualList`
11+
No significant changes.
1212

1313
## [2.0.0-beta.5] - 2018-05-29
1414

0 commit comments

Comments
 (0)