Skip to content

Commit 15eb051

Browse files
authored
chore(release): publish v0.9.0 (#201)
1 parent cb34e96 commit 15eb051

File tree

13 files changed

+140
-15
lines changed

13 files changed

+140
-15
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18)
7+
8+
9+
### Features
10+
11+
* **ui5-messagestrip:** initial implementation ([#80](https://github.com/SAP/ui5-webcomponents/issues/80)) ([cbc9c75](https://github.com/SAP/ui5-webcomponents/commit/cbc9c75))
12+
13+
14+
### Bug Fixes
15+
16+
* correct calling unexisting method ([#157](https://github.com/SAP/ui5-webcomponents/issues/157)) ([0a8c8cd](https://github.com/SAP/ui5-webcomponents/commit/0a8c8cd))
17+
* correct device detection error on mobile ([#143](https://github.com/SAP/ui5-webcomponents/issues/143)) ([857754e](https://github.com/SAP/ui5-webcomponents/commit/857754e))
18+
* fix HCB colours for Icon, TextArea and TableCell content ([#128](https://github.com/SAP/ui5-webcomponents/issues/128)) ([9fb7dc5](https://github.com/SAP/ui5-webcomponents/commit/9fb7dc5))
19+
* **ui5-datepicker:** enable day selection in IE ([#162](https://github.com/SAP/ui5-webcomponents/issues/162)) ([18a3c43](https://github.com/SAP/ui5-webcomponents/commit/18a3c43))
20+
* **ui5-icon:** correct icon graphic vertical alignment in IE ([#142](https://github.com/SAP/ui5-webcomponents/issues/142)) ([98be562](https://github.com/SAP/ui5-webcomponents/commit/98be562))
21+
* **ui5-input:** fire change in sync with the native input ([#168](https://github.com/SAP/ui5-webcomponents/issues/168)) ([55fa533](https://github.com/SAP/ui5-webcomponents/commit/55fa533))
22+
* **ui5-label:** enable text truncation in IE ([#136](https://github.com/SAP/ui5-webcomponents/issues/136)) ([ef00170](https://github.com/SAP/ui5-webcomponents/commit/ef00170))
23+
* fix source maps ([#181](https://github.com/SAP/ui5-webcomponents/issues/181)) ([7084c96](https://github.com/SAP/ui5-webcomponents/commit/7084c96))
24+
* **ui5-list:** correct backward navigation with SHIFT+TAB ([#193](https://github.com/SAP/ui5-webcomponents/issues/193)) ([037409d](https://github.com/SAP/ui5-webcomponents/commit/037409d))
25+
26+
27+
### Code Refactoring
28+
29+
* **ui5-input:** fire input, instead of liveChange ([#159](https://github.com/SAP/ui5-webcomponents/issues/159)) ([b8d978a](https://github.com/SAP/ui5-webcomponents/commit/b8d978a))
30+
31+
32+
### BREAKING CHANGES
33+
34+
* **ui5-input:** liveChange event is no longer fired, listen for the input event instead.
35+
36+
37+
### NOTABLE CHANGES
38+
* The bundle size is reduced by removing unused functionality of core modules and making greater use of tree shaking.
39+
40+
41+
42+
643
# [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01)
744

845

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
"wsrun": "^3.6.4"
4040
},
4141
"resolutions": {
42-
"@ui5/webcomponents-core": "0.8.0",
43-
"@ui5/webcomponents-base": "0.8.0",
44-
"@ui5/webcomponents": "0.8.0",
45-
"@ui5/webcomponents-playground": "0.8.0",
4642
"abstract-syntax-tree": "1.0.3",
4743
"dir-glob": "2.0.0"
4844
},

packages/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-base
9+
10+
11+
12+
13+
614
# [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01)
715

816

packages/base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contains the base files for all Web Components.
99

1010
## Resources
1111
- [UI5 Web Components](https://sap.github.io/ui5-webcomponents)
12-
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html)
12+
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/)
1313

1414
## Support
1515
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/).

packages/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-base",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "UI5 Web Components: webcomponents.base",
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"@polymer/polymer": "^3.1.0",
23-
"@ui5/webcomponents-core": "^0.8.0",
23+
"@ui5/webcomponents-core": "0.9.0",
2424
"lit-html": "^1.0.0",
2525
"regenerator-runtime": "0.12.1",
2626
"url-search-params-polyfill": "^5.0.0"

packages/core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18)
7+
8+
9+
### Bug Fixes
10+
11+
* correct calling unexisting method ([#157](https://github.com/SAP/ui5-webcomponents/issues/157)) ([0a8c8cd](https://github.com/SAP/ui5-webcomponents/commit/0a8c8cd))
12+
* correct device detection error on mobile ([#143](https://github.com/SAP/ui5-webcomponents/issues/143)) ([857754e](https://github.com/SAP/ui5-webcomponents/commit/857754e))
13+
14+
15+
16+
17+
618
# [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01)
719

820

packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Wraps the OpenUI5 core and adapts it to the needs of the project.
99

1010
## Resources
1111
- [UI5 Web Components](https://sap.github.io/ui5-webcomponents)
12-
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html)
12+
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/)
1313

1414
## Support
1515
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/SAP/ui5-webcomponents/blob/master/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://join-ui5-slack.herokuapp.com/).

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": "@ui5/webcomponents-core",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "UI5 Web Components: webcomponents.core",
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",

packages/main/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18)
7+
8+
9+
### Features
10+
11+
* **ui5-messagestrip:** initial implementation ([#80](https://github.com/SAP/ui5-webcomponents/issues/80)) ([cbc9c75](https://github.com/SAP/ui5-webcomponents/commit/cbc9c75))
12+
13+
14+
### Bug Fixes
15+
16+
* fix HCB colours for Icon, TextArea and TableCell content ([#128](https://github.com/SAP/ui5-webcomponents/issues/128)) ([9fb7dc5](https://github.com/SAP/ui5-webcomponents/commit/9fb7dc5))
17+
* **ui5-datepicker:** enable day selection in IE ([#162](https://github.com/SAP/ui5-webcomponents/issues/162)) ([18a3c43](https://github.com/SAP/ui5-webcomponents/commit/18a3c43))
18+
* **ui5-icon:** correct icon graphic vertical alignment in IE ([#142](https://github.com/SAP/ui5-webcomponents/issues/142)) ([98be562](https://github.com/SAP/ui5-webcomponents/commit/98be562))
19+
* **ui5-input:** fire change in sync with the native input ([#168](https://github.com/SAP/ui5-webcomponents/issues/168)) ([55fa533](https://github.com/SAP/ui5-webcomponents/commit/55fa533))
20+
* **ui5-label:** enable text truncation in IE ([#136](https://github.com/SAP/ui5-webcomponents/issues/136)) ([ef00170](https://github.com/SAP/ui5-webcomponents/commit/ef00170))
21+
* fix source maps ([#181](https://github.com/SAP/ui5-webcomponents/issues/181)) ([7084c96](https://github.com/SAP/ui5-webcomponents/commit/7084c96))
22+
* **ui5-list:** correct backward navigation with SHIFT+TAB ([#193](https://github.com/SAP/ui5-webcomponents/issues/193)) ([037409d](https://github.com/SAP/ui5-webcomponents/commit/037409d))
23+
24+
25+
### Code Refactoring
26+
27+
* **ui5-input:** fire input, instead of liveChange ([#159](https://github.com/SAP/ui5-webcomponents/issues/159)) ([b8d978a](https://github.com/SAP/ui5-webcomponents/commit/b8d978a))
28+
29+
30+
### BREAKING CHANGES
31+
32+
* **ui5-input:** liveChange event is no longer fired, listen for the input event instead.
33+
34+
35+
36+
37+
638
# [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01)
739

840

packages/main/README.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ UI5 remains what it is: the best choice for…
3131

3232
## Resources
3333
- [UI5 Web Components](https://sap.github.io/ui5-webcomponents)
34-
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html)
34+
- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/)
3535

3636
## Requirements
3737
- [Node.js](https://nodejs.org/) (**version 8.5 or higher** ⚠️)
@@ -57,6 +57,34 @@ Then, you can use the custom element in an HTML page:
5757
<ui5-button>Hello world!</ui5-button>
5858
```
5959

60+
## Browser support
61+
62+
Currently only Chrome, Safari and Firefox support Web Components natively.
63+
64+
If your application should run on browsers without native Web Components support (Edge and/or IE11), import one the following modules before your first Web Component import:
65+
66+
### Edge only
67+
68+
```js
69+
import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/Edge";
70+
```
71+
72+
### Edge and IE11
73+
74+
```js
75+
import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/IE11";
76+
```
77+
78+
*Note:* Importing the module for IE11 support automatically enables Edge support as well, so there is no need to import them both explicitly.
79+
80+
Example:
81+
82+
```js
83+
import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/IE11"; // This will enable Edge and IE11 support for all Web Components below
84+
import "@ui5/webcomponents/dist/Button"; // loads ui5-button
85+
import "@ui5/webcomponents/dist/Label"; // loads ui5-label
86+
```
87+
6088
## Configure
6189
UI5 Web Components have built-in internalization and globalization support. Language, compact/cozy switch, date/time settings and theme can be changed with parameters.
6290

@@ -136,6 +164,7 @@ In a couple of guides we refer to the [Yarn](https://yarnpkg.com/) node package
136164
Keep in mind that linking the same module with npm and Yarn may cause issues. Also, Yarn can't work with links created by npm and vice versa.
137165

138166
### Where are the npm packages?
167+
- [UI5 Web Components](https://www.npmjs.com/package/@ui5/webcomponents)
139168
- [UI5 Web Components Base](https://www.npmjs.com/package/@ui5/webcomponents-base)
140169
- [UI5 Web Components Core](https://www.npmjs.com/package/@ui5/webcomponents-core)
141170

0 commit comments

Comments
 (0)