Skip to content

Commit 23257f4

Browse files
authored
chore(release): publish v0.11.0 (#426)
1 parent e6393ae commit 23257f4

File tree

9 files changed

+140
-8
lines changed

9 files changed

+140
-8
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,57 @@
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.11.0](https://github.com/SAP/ui5-webcomponents/compare/v0.10.1...v0.11.0) (2019-05-22)
7+
8+
9+
### Bug Fixes
10+
11+
* **ui5-checkbox:** correct default values of the boolean props ([#408](https://github.com/SAP/ui5-webcomponents/issues/408)) ([9bdd2c5](https://github.com/SAP/ui5-webcomponents/commit/9bdd2c5))
12+
* **ui5-messagestrip:** remove height 100% from element tag ([#387](https://github.com/SAP/ui5-webcomponents/issues/387)) ([4b64a9c](https://github.com/SAP/ui5-webcomponents/commit/4b64a9c))
13+
* **ui5-panel:** add missing dependency for ui5-icon ([#406](https://github.com/SAP/ui5-webcomponents/issues/406)) ([650bcb0](https://github.com/SAP/ui5-webcomponents/commit/650bcb0))
14+
* fix broken child property observation ([#423](https://github.com/SAP/ui5-webcomponents/issues/423)) ([b3e3b3f](https://github.com/SAP/ui5-webcomponents/commit/b3e3b3f))
15+
* fix API build for composite components ([#391](https://github.com/SAP/ui5-webcomponents/issues/391)) ([dcb829b](https://github.com/SAP/ui5-webcomponents/commit/dcb829b))
16+
* prevent dual event dispatching in no conflict mode ([#363](https://github.com/SAP/ui5-webcomponents/issues/363)) ([4cbe3de](https://github.com/SAP/ui5-webcomponents/commit/4cbe3de))
17+
* update tab container documentation ([#370](https://github.com/SAP/ui5-webcomponents/issues/370)) ([7117430](https://github.com/SAP/ui5-webcomponents/commit/7117430)), closes [#369](https://github.com/SAP/ui5-webcomponents/issues/369)
18+
19+
20+
### Code Refactoring
21+
22+
* make custom CSS theme independent ([#386](https://github.com/SAP/ui5-webcomponents/issues/386)) ([d6b4ab5](https://github.com/SAP/ui5-webcomponents/commit/d6b4ab5))
23+
* **ui5-datepicker:** rename event 'liveChange' to 'input' ([#394](https://github.com/SAP/ui5-webcomponents/pull/394))
24+
* **ui5-panel:** remove backgroundDesign property ([#384](https://github.com/SAP/ui5-webcomponents/pull/384))
25+
* **ui5-panel:** remove backgroundDesign property ([#383](https://github.com/SAP/ui5-webcomponents/pull/383))
26+
* **ui5-checkbox:** rename "readOnly" to "readonly" ([#413](https://github.com/SAP/ui5-webcomponents/pull/413))
27+
* **ui5-radiobutton:** rename "readOnly" to "readonly" ([#413](https://github.com/SAP/ui5-webcomponents/pull/413))
28+
29+
30+
### Features
31+
32+
* **ui5-multi-combobox:** initial implementation ([#379](https://github.com/SAP/ui5-webcomponents/issues/379)) ([115900b](https://github.com/SAP/ui5-webcomponents/commit/115900b))
33+
* **ui5-list:** selectionChange event provides previously selected items ([#418](https://github.com/SAP/ui5-webcomponents/issues/418)) ([f0fc8f2](https://github.com/SAP/ui5-webcomponents/commit/f0fc8f2))
34+
* **ui5-shellbar:** API improvements ([#421](https://github.com/SAP/ui5-webcomponents/issues/421)) ([e0ff36d](https://github.com/SAP/ui5-webcomponents/commit/e0ff36d))
35+
* add CSS variables section in API Ref ([#399](https://github.com/SAP/ui5-webcomponents/issues/399)) ([e198fa5](https://github.com/SAP/ui5-webcomponents/commit/e198fa5))
36+
* add data-ui5-compact-size attribute to root when compact is set ([#382](https://github.com/SAP/ui5-webcomponents/issues/382)) ([cbf00a8](https://github.com/SAP/ui5-webcomponents/commit/cbf00a8))
37+
* fetch ui5-datepicker assets from CDN ([#420](https://github.com/SAP/ui5-webcomponents/issues/420)) ([1f62dda](https://github.com/SAP/ui5-webcomponents/commit/1f62dda))
38+
* simplify slots usage ([e4907b9](https://github.com/SAP/ui5-webcomponents/commit/e4907b9))
39+
40+
41+
### BREAKING CHANGES
42+
43+
* **ui5-list:** the "selectionChange" event param "items" has been renamed to "selectedItems".
44+
* **ui5-list:** the "backgroundDesign" property has been removed, use the corresponding
45+
CSS variable (--_ui5_listitem_background_color) to alter the list items` background.
46+
* **ui5-panel:** the "backgroundDesign" property has been removed, use the corresponding
47+
CSS variables (--_ui5_panel_background_color) to alter the panel background.
48+
* **ui5-datepicker:** 'liveChange' event has been renamed to 'input'.
49+
* **ui5-checkbox:** property "readOnly" has been renamed to "readonly".
50+
* **ui5-radiobutton:** property "readOnly" has been renamed to "readonly".
51+
* the signature of the addCustomCSS method exported by "@ui5/webcomponents-base/Theming.js" is changed from addCustomCSS(tag, theme, css) to addCustomCSS(tag, css)
52+
53+
54+
55+
56+
657
## [0.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.10.0...v0.10.1) (2019-04-24)
758

859

packages/base/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
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.11.0](https://github.com/SAP/ui5-webcomponents/compare/v0.10.1...v0.11.0) (2019-05-22)
7+
8+
9+
### Bug Fixes
10+
11+
* broken child property observation ([#423](https://github.com/SAP/ui5-webcomponents/issues/423)) ([b3e3b3f](https://github.com/SAP/ui5-webcomponents/commit/b3e3b3f))
12+
* prevent dual event dispatching in no conflict mode ([#363](https://github.com/SAP/ui5-webcomponents/issues/363)) ([4cbe3de](https://github.com/SAP/ui5-webcomponents/commit/4cbe3de))
13+
14+
15+
### Code Refactoring
16+
17+
* make custom CSS theme independent ([#386](https://github.com/SAP/ui5-webcomponents/issues/386)) ([d6b4ab5](https://github.com/SAP/ui5-webcomponents/commit/d6b4ab5))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* the signature of the addCustomCSS method exported by "@ui5/webcomponents-base/Theming.js" is changed from addCustomCSS(tag, theme, css) to addCustomCSS(tag, css)
23+
24+
25+
26+
27+
628
## [0.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.10.0...v0.10.1) (2019-04-24)
729

830
**Note:** Version bump only for package @ui5/webcomponents-base

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.10.1",
3+
"version": "0.11.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
"lint": "eslint ."
2121
},
2222
"dependencies": {
23-
"@ui5/webcomponents-core": "0.10.1",
23+
"@ui5/webcomponents-core": "0.11.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.11.0](https://github.com/SAP/ui5-webcomponents/compare/v0.10.1...v0.11.0) (2019-05-22)
7+
8+
9+
### Features
10+
11+
* fetch ui5-datepicker assets from CDN ([#420](https://github.com/SAP/ui5-webcomponents/issues/420)) ([1f62dda](https://github.com/SAP/ui5-webcomponents/commit/1f62dda))
12+
13+
14+
15+
16+
617
## [0.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.10.0...v0.10.1) (2019-04-24)
718

819
**Note:** Version bump only for package @ui5/webcomponents-core

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.10.1",
3+
"version": "0.11.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: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,46 @@
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.11.0](https://github.com/SAP/ui5-webcomponents/compare/v0.10.1...v0.11.0) (2019-05-22)
7+
8+
9+
### Bug Fixes
10+
11+
* **ui5-checkbox:** correct default values of the boolean props ([#408](https://github.com/SAP/ui5-webcomponents/issues/408)) ([9bdd2c5](https://github.com/SAP/ui5-webcomponents/commit/9bdd2c5))
12+
* **ui5-messagestrip:** remove height 100% on element tag ([#387](https://github.com/SAP/ui5-webcomponents/issues/387)) ([4b64a9c](https://github.com/SAP/ui5-webcomponents/commit/4b64a9c))
13+
* **ui5-panel:** add missing dependency for ui5-icon ([#406](https://github.com/SAP/ui5-webcomponents/issues/406)) ([650bcb0](https://github.com/SAP/ui5-webcomponents/commit/650bcb0))
14+
15+
16+
### Code Refactoring
17+
18+
* **ui5-datepicker:** rename event 'liveChange' to 'input' ([#394](https://github.com/SAP/ui5-webcomponents/pull/394))
19+
* **ui5-panel:** remove backgroundDesign property ([#384](https://github.com/SAP/ui5-webcomponents/pull/384))
20+
* **ui5-panel:** remove backgroundDesign property ([#383](https://github.com/SAP/ui5-webcomponents/pull/383))
21+
* **ui5-checkbox:** rename "readOnly" to "readonly" ([#413](https://github.com/SAP/ui5-webcomponents/pull/413))
22+
23+
24+
### Features
25+
26+
* **ui5-list:** selectionChange event provides previousSelection items ([#418](https://github.com/SAP/ui5-webcomponents/issues/418)) ([f0fc8f2](https://github.com/SAP/ui5-webcomponents/commit/f0fc8f2))
27+
* **ui5-multi-combobox:** initial implementation ([#379](https://github.com/SAP/ui5-webcomponents/issues/379)) ([115900b](https://github.com/SAP/ui5-webcomponents/commit/115900b))
28+
* **ui5-shellbar:** API improvements ([#421](https://github.com/SAP/ui5-webcomponents/issues/421)) ([e0ff36d](https://github.com/SAP/ui5-webcomponents/commit/e0ff36d))
29+
30+
31+
### BREAKING CHANGES
32+
33+
* **ui5-list:** the "selectionChange" event param "items" has been renamed to "selectedItems".
34+
* **ui5-list:** the "backgroundDesign" property has been removed, use the corresponding
35+
CSS variable (--_ui5_listitem_background_color) to alter the list items` background.
36+
* **ui5-panel:** the "backgroundDesign" property has been removed, use the corresponding
37+
CSS variables (--_ui5_panel_background_color) to alter the panel background.
38+
* **ui5-datepicker:** 'liveChange' event has been renamed to 'input'.
39+
* **ui5-checkbox:** property "readOnly" has been renamed to "readonly".
40+
* **ui5-radiobutton:** property "readOnly" has been renamed to "readonly".
41+
42+
43+
44+
45+
646
## [0.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.10.0...v0.10.1) (2019-04-24)
747

848

packages/main/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "UI5 Web Components: webcomponents.main",
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",
@@ -87,8 +87,8 @@
8787
"url": "https://github.com/SAP/ui5-webcomponents.git"
8888
},
8989
"dependencies": {
90-
"@ui5/webcomponents-base": "0.10.1",
91-
"@ui5/webcomponents-core": "0.10.1"
90+
"@ui5/webcomponents-base": "0.11.0",
91+
"@ui5/webcomponents-core": "0.11.0"
9292
},
9393
"devDependencies": {
9494
"@babel/cli": "^7.1.2",

packages/playground/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.11.0](https://github.com/SAP/openui5/compare/v0.10.1...v0.11.0) (2019-05-22)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-playground
9+
10+
11+
12+
13+
614
## [0.10.1](https://github.com/SAP/openui5/compare/v0.10.0...v0.10.1) (2019-04-24)
715

816
**Note:** Version bump only for package @ui5/webcomponents-playground

packages/playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui5/webcomponents-playground",
33
"private": true,
4-
"version": "0.10.1",
4+
"version": "0.11.0",
55
"description": "UI5 Web Components Playground",
66
"author": "SAP SE (https://www.sap.com)",
77
"license": "Apache-2.0",
@@ -41,7 +41,7 @@
4141
"@openui5/sap.ui.core": "^1.60.2",
4242
"@openui5/sap.ui.layout": "^1.60.2",
4343
"@openui5/themelib_sap_belize": "^1.60.2",
44-
"@ui5/webcomponents": "0.10.1"
44+
"@ui5/webcomponents": "0.11.0"
4545
},
4646
"devDependencies": {
4747
"@ui5/cli": "^1.2.0",

0 commit comments

Comments
 (0)