From 227e7258e22a8446e331d7443b123744633ef81e Mon Sep 17 00:00:00 2001 From: Adrian Bobev Date: Mon, 18 Mar 2019 14:58:10 +0200 Subject: [PATCH] chore(release): publish v0.9.0 --- CHANGELOG.md | 37 ++++++++++++++++++++++++++++++++ package.json | 4 ---- packages/base/CHANGELOG.md | 8 +++++++ packages/base/README.md | 2 +- packages/base/package.json | 4 ++-- packages/core/CHANGELOG.md | 12 +++++++++++ packages/core/README.md | 2 +- packages/core/package.json | 2 +- packages/main/CHANGELOG.md | 32 +++++++++++++++++++++++++++ packages/main/README.md | 31 +++++++++++++++++++++++++- packages/main/package.json | 6 +++--- packages/playground/CHANGELOG.md | 11 ++++++++++ packages/playground/package.json | 4 ++-- 13 files changed, 140 insertions(+), 15 deletions(-) create mode 100644 packages/playground/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d26458779b..72ab431fadb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,43 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18) + + +### Features + +* **ui5-messagestrip:** initial implementation ([#80](https://github.com/SAP/ui5-webcomponents/issues/80)) ([cbc9c75](https://github.com/SAP/ui5-webcomponents/commit/cbc9c75)) + + +### Bug Fixes + +* correct calling unexisting method ([#157](https://github.com/SAP/ui5-webcomponents/issues/157)) ([0a8c8cd](https://github.com/SAP/ui5-webcomponents/commit/0a8c8cd)) +* correct device detection error on mobile ([#143](https://github.com/SAP/ui5-webcomponents/issues/143)) ([857754e](https://github.com/SAP/ui5-webcomponents/commit/857754e)) +* 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)) +* **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)) +* **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)) +* **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)) +* **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)) +* fix source maps ([#181](https://github.com/SAP/ui5-webcomponents/issues/181)) ([7084c96](https://github.com/SAP/ui5-webcomponents/commit/7084c96)) +* **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)) + + +### Code Refactoring + +* **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)) + + +### BREAKING CHANGES + +* **ui5-input:** liveChange event is no longer fired, listen for the input event instead. + + +### NOTABLE CHANGES +* The bundle size is reduced by removing unused functionality of core modules and making greater use of tree shaking. + + + + # [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01) diff --git a/package.json b/package.json index f08da51cdf70..e999206662ba 100644 --- a/package.json +++ b/package.json @@ -39,10 +39,6 @@ "wsrun": "^3.6.4" }, "resolutions": { - "@ui5/webcomponents-core": "0.8.0", - "@ui5/webcomponents-base": "0.8.0", - "@ui5/webcomponents": "0.8.0", - "@ui5/webcomponents-playground": "0.8.0", "abstract-syntax-tree": "1.0.3", "dir-glob": "2.0.0" }, diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index 73746beb21e3..f714c35feb07 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18) + +**Note:** Version bump only for package @ui5/webcomponents-base + + + + + # [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01) diff --git a/packages/base/README.md b/packages/base/README.md index 7bde745122d4..1c14084d3bb4 100644 --- a/packages/base/README.md +++ b/packages/base/README.md @@ -9,7 +9,7 @@ Contains the base files for all Web Components. ## Resources - [UI5 Web Components](https://sap.github.io/ui5-webcomponents) -- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html) +- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/) ## Support 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/). diff --git a/packages/base/package.json b/packages/base/package.json index 86066a0c3746..bf198ac105ac 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-base", - "version": "0.8.0", + "version": "0.9.0", "description": "UI5 Web Components: webcomponents.base", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -20,7 +20,7 @@ }, "dependencies": { "@polymer/polymer": "^3.1.0", - "@ui5/webcomponents-core": "^0.8.0", + "@ui5/webcomponents-core": "0.9.0", "lit-html": "^1.0.0", "regenerator-runtime": "0.12.1", "url-search-params-polyfill": "^5.0.0" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 30fd6211bd6e..f6c74f0b316a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18) + + +### Bug Fixes + +* correct calling unexisting method ([#157](https://github.com/SAP/ui5-webcomponents/issues/157)) ([0a8c8cd](https://github.com/SAP/ui5-webcomponents/commit/0a8c8cd)) +* correct device detection error on mobile ([#143](https://github.com/SAP/ui5-webcomponents/issues/143)) ([857754e](https://github.com/SAP/ui5-webcomponents/commit/857754e)) + + + + + # [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01) diff --git a/packages/core/README.md b/packages/core/README.md index 06dbe1f16f18..ed3920b85cb4 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -9,7 +9,7 @@ Wraps the OpenUI5 core and adapts it to the needs of the project. ## Resources - [UI5 Web Components](https://sap.github.io/ui5-webcomponents) -- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html) +- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/) ## Support 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/). diff --git a/packages/core/package.json b/packages/core/package.json index a281b8181ca6..6496a3620be9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-core", - "version": "0.8.0", + "version": "0.9.0", "description": "UI5 Web Components: webcomponents.core", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index daae60c288b3..223e1a557ef0 100644 --- a/packages/main/CHANGELOG.md +++ b/packages/main/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.9.0](https://github.com/SAP/ui5-webcomponents/compare/v0.8.0...v0.9.0) (2019-03-18) + + +### Features + +* **ui5-messagestrip:** initial implementation ([#80](https://github.com/SAP/ui5-webcomponents/issues/80)) ([cbc9c75](https://github.com/SAP/ui5-webcomponents/commit/cbc9c75)) + + +### Bug Fixes + +* 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)) +* **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)) +* **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)) +* **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)) +* **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)) +* fix source maps ([#181](https://github.com/SAP/ui5-webcomponents/issues/181)) ([7084c96](https://github.com/SAP/ui5-webcomponents/commit/7084c96)) +* **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)) + + +### Code Refactoring + +* **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)) + + +### BREAKING CHANGES + +* **ui5-input:** liveChange event is no longer fired, listen for the input event instead. + + + + + # [0.8.0](https://github.com/SAP/ui5-webcomponents/compare/v0.7.0...v0.8.0) (2019-03-01) diff --git a/packages/main/README.md b/packages/main/README.md index 1225713f8bf8..7983e53ecde6 100644 --- a/packages/main/README.md +++ b/packages/main/README.md @@ -31,7 +31,7 @@ UI5 remains what it is: the best choice for… ## Resources - [UI5 Web Components](https://sap.github.io/ui5-webcomponents) -- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground.html) +- [UI5 Web Components - Playground and API Reference](https://sap.github.io/ui5-webcomponents/playground/) ## Requirements - [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: Hello world! ``` +## Browser support + +Currently only Chrome, Safari and Firefox support Web Components natively. + +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: + +### Edge only + +```js +import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/Edge"; +``` + +### Edge and IE11 + +```js +import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/IE11"; +``` + +*Note:* Importing the module for IE11 support automatically enables Edge support as well, so there is no need to import them both explicitly. + +Example: + +```js +import "@ui5/webcomponents-base/src/sap/ui/webcomponents/base/browsersupport/IE11"; // This will enable Edge and IE11 support for all Web Components below +import "@ui5/webcomponents/dist/Button"; // loads ui5-button +import "@ui5/webcomponents/dist/Label"; // loads ui5-label +``` + ## Configure UI5 Web Components have built-in internalization and globalization support. Language, compact/cozy switch, date/time settings and theme can be changed with parameters. @@ -136,6 +164,7 @@ In a couple of guides we refer to the [Yarn](https://yarnpkg.com/) node package 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. ### Where are the npm packages? +- [UI5 Web Components](https://www.npmjs.com/package/@ui5/webcomponents) - [UI5 Web Components Base](https://www.npmjs.com/package/@ui5/webcomponents-base) - [UI5 Web Components Core](https://www.npmjs.com/package/@ui5/webcomponents-core) diff --git a/packages/main/package.json b/packages/main/package.json index a2e7e9c942ab..fe272d06e8fc 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents", - "version": "0.8.0", + "version": "0.9.0", "description": "UI5 Web Components: webcomponents.main", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -84,8 +84,8 @@ "url": "https://github.com/SAP/ui5-webcomponents.git" }, "dependencies": { - "@ui5/webcomponents-base": "^0.8.0", - "@ui5/webcomponents-core": "^0.8.0" + "@ui5/webcomponents-base": "0.9.0", + "@ui5/webcomponents-core": "0.9.0" }, "devDependencies": { "@babel/cli": "^7.1.2", diff --git a/packages/playground/CHANGELOG.md b/packages/playground/CHANGELOG.md new file mode 100644 index 000000000000..9e1d0c645530 --- /dev/null +++ b/packages/playground/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.9.0](https://github.com/SAP/openui5/compare/v0.8.0...v0.9.0) (2019-03-18) + + +### Features + +* **ui5-messagestrip:** initial implementation ([#80](https://github.com/SAP/openui5/issues/80)) ([cbc9c75](https://github.com/SAP/openui5/commit/cbc9c75)) diff --git a/packages/playground/package.json b/packages/playground/package.json index 426d0fd71377..42eb1b70025b 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -1,7 +1,7 @@ { "name": "@ui5/webcomponents-playground", "private": true, - "version": "0.8.0", + "version": "0.9.0", "description": "UI5 Web Components Playground", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "@openui5/sap.ui.core": "^1.60.2", "@openui5/sap.ui.layout": "^1.60.2", "@openui5/themelib_sap_belize": "^1.60.2", - "@ui5/webcomponents": "^0.8.0" + "@ui5/webcomponents": "0.9.0" }, "devDependencies": { "@ui5/cli": "^1.2.0",