Skip to content

Commit

Permalink
2.0.0-alpha.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JayCanuck committed Apr 4, 2018
2 parents 5a7bab7 + a2e5268 commit 1c6fca9
Show file tree
Hide file tree
Showing 20 changed files with 1,096 additions and 593 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@

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

## [2.0.0-alpha.7 - 2018-04-03]

### Removed

- `moonstone/VirtualList.VirtualList` and `moonstone/VirtualList.VirtualGridList` property `data`
- `ui/VirtualList.VirtualList` and `ui/VirtualList.VirtualGridList` prop `data`

### Added

- `moonstone/VideoPlayer` property `noSpinner` to allow apps to show/hide spinner while loading video
- `webos/LS2Request` `send()` parameters `onTimeout` and `timeout`
- `webos/LS2Request` `send()` default `onFailure` and `onTimeout` handlers

### Changed

- `moonstone/VideoPlayer` to disable play/pause button when media controls are disabled
- `moonstone/VideoPlayer` property `moreButtonColor` to allow setting underline colors for more button
- `moonstone/VirtualList.VirtualList` and `moonstone/VirtualList.VirtualGridList` prop `isItemDisabled`, which accepts a function that checks if the item at the supplied index is disabled
- `moonstone/Panels.Header` support for `headerInput` so the Header can be used as an Input. See documentation for usage examples.
- `moonstone/ProgressBar` property `tooltipSide` to configure tooltip position relative to the progress bar
- `moonstone/ProgressBar` colors (affecting `moonstone/Slider` as well) for light and dark theme to match the latest designs and make them more visible when drawn over arbitrary background colors

### Fixed

- `moonstone/VideoPlayer` to correctly adjust spaces when the number of components changes in `leftComponents` and `rightComponents`
- `moonstone/VideoPlayer` to read out audio guidance every time `source` changes
- `moonstone/VideoPlayer` to display custom thumbnail node
- `moonstone/VideoPlayer` to hide more icon when right components are removed
- `moonstone/Picker` to correctly update pressed state when dragging off buttons
- `moonstone/Notification` to display when it's opened
- `moonstone/VirtualList` and `moonstone/VirtualGridList` to show Spotlight properly while navigating with page up and down keys
- `moonstone/Input` to allow navigating via left or right to other components when the input is active and the selection is at start or end of the text, respectively
- `moonstone/Panels.ActivityPanels` to correctly lay out the existing panel after adding additional panels
- `spotlight` to partition and prioritize next spottable elements for more natural 5-way behavior
- `ui/Scroller` horizontal scrolling in RTL locales

## [2.0.0-alpha.6] - 2018-03-22

### Removed
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"lerna": "2.8.0",
"version": "2.0.0-alpha.6"
"version": "2.0.0-alpha.7"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enact",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "Monorepo for all Enact front end libraries.",
"private": true,
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [2.0.0-alpha.7 - 2018-04-03]

No significant changes.

## [2.0.0-alpha.6] - 2018-03-22

### Removed
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/core",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/i18n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [2.0.0-alpha.7 - 2018-04-03]

No significant changes.

## [2.0.0-alpha.6] - 2018-03-22

No significant changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@enact/i18n",
"main": "./src/index.js",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "Internationalization support for Enact using iLib",
"scripts": {
"clean": "enact clean",
Expand Down Expand Up @@ -34,7 +34,7 @@
"extends": "enact/strict"
},
"dependencies": {
"@enact/core": "^2.0.0-alpha.6",
"@enact/core": "^2.0.0-alpha.7",
"prop-types": "^15.6.0",
"ramda": "^0.24.1",
"react": "^16.2.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/moonstone/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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

## [unreleased]
## [2.0.0-alpha.7 - 2018-04-03]

### Removed

- `moonstone/VirtualList.VirtualList` and `moonstone/VirtualList.VirtualGridList` prop `data`
- `moonstone/VirtualList.VirtualList` and `moonstone/VirtualList.VirtualGridList` property `data`

### Added

Expand All @@ -18,7 +18,7 @@ The following is a curated list of changes in the Enact moonstone module, newest
- `moonstone/VideoPlayer` property `moreButtonColor` to allow setting underline colors for more button
- `moonstone/VirtualList.VirtualList` and `moonstone/VirtualList.VirtualGridList` prop `isItemDisabled`, which accepts a function that checks if the item at the supplied index is disabled
- `moonstone/Panels.Header` support for `headerInput` so the Header can be used as an Input. See documentation for usage examples.
- `moonstone/ProgressBar` prop `tooltipSide` to configure tooltip position relative to the progress bar
- `moonstone/ProgressBar` property `tooltipSide` to configure tooltip position relative to the progress bar
- `moonstone/ProgressBar` colors (affecting `moonstone/Slider` as well) for light and dark theme to match the latest designs and make them more visible when drawn over arbitrary background colors

### Fixed
Expand All @@ -29,7 +29,7 @@ The following is a curated list of changes in the Enact moonstone module, newest
- `moonstone/VideoPlayer` to hide more icon when right components are removed
- `moonstone/Picker` to correctly update pressed state when dragging off buttons
- `moonstone/Notification` to display when it's opened
- `moonstone/VirtualList` and `moonstone/VirtualGridList`, to show Spotlight properly while navigating them with page up and down keys
- `moonstone/VirtualList` and `moonstone/VirtualGridList` to show Spotlight properly while navigating with page up and down keys
- `moonstone/Input` to allow navigating via left or right to other components when the input is active and the selection is at start or end of the text, respectively
- `moonstone/Panels.ActivityPanels` to correctly lay out the existing panel after adding additional panels

Expand Down
10 changes: 5 additions & 5 deletions packages/moonstone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/moonstone",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "Large-screen/TV support library for Enact, containing a variety of UI components.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -28,10 +28,10 @@
"extends": "enact/strict"
},
"dependencies": {
"@enact/core": "^2.0.0-alpha.6",
"@enact/i18n": "^2.0.0-alpha.6",
"@enact/spotlight": "^2.0.0-alpha.6",
"@enact/ui": "^2.0.0-alpha.6",
"@enact/core": "^2.0.0-alpha.7",
"@enact/i18n": "^2.0.0-alpha.7",
"@enact/spotlight": "^2.0.0-alpha.7",
"@enact/ui": "^2.0.0-alpha.7",
"classnames": "^2.2.5",
"eases": "^1.0.8",
"invariant": "^2.2.2",
Expand Down
4 changes: 4 additions & 0 deletions packages/sampler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [2.0.0-alpha.7 - 2018-04-03]

No significant changes.

## [2.0.0-alpha.6] - 2018-03-22

No significant changes.
Expand Down
Loading

0 comments on commit 1c6fca9

Please sign in to comment.