Skip to content

Commit 893941a

Browse files
committed
chore: release v0.31.14
1 parent c44c23f commit 893941a

28 files changed

+150
-40
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.31.14](https://github.com/SAP/ui5-webcomponents/compare/v0.31.13...v0.31.14) (2021-08-03)
7+
8+
9+
### Bug Fixes
10+
11+
* **ui5-dialog:** fix text selection on chrome ([#3532](https://github.com/SAP/ui5-webcomponents/issues/3532)) ([c44c23f](https://github.com/SAP/ui5-webcomponents/commit/c44c23f)), closes [WICG/webcomponents#773](https://github.com/WICG/webcomponents/issues/773) [#3466](https://github.com/SAP/ui5-webcomponents/issues/3466)
12+
* **ui5-input:** fire change on the initial tab press after suggestion is selected ([#3514](https://github.com/SAP/ui5-webcomponents/issues/3514)) ([b3cd01b](https://github.com/SAP/ui5-webcomponents/commit/b3cd01b))
13+
14+
15+
### Features
16+
17+
* **ui5-badge:** update design ([#3529](https://github.com/SAP/ui5-webcomponents/issues/3529)) ([227efdb](https://github.com/SAP/ui5-webcomponents/commit/227efdb))
18+
* **ui5-timeline:** enable horizontal layout ([13be2c4](https://github.com/SAP/ui5-webcomponents/commit/13be2c4))
19+
20+
21+
622
## [0.31.13](https://github.com/SAP/ui5-webcomponents/compare/v0.31.12...v0.31.13) (2021-07-26)
723

824

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"packages/fiori",
1111
"packages/ie"
1212
],
13-
"version": "0.31.13",
13+
"version": "0.31.14",
1414
"command": {
1515
"publish": {
1616
"conventionalCommits": true

packages/base/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.31.14](https://github.com/SAP/ui5-webcomponents/compare/v0.31.13...v0.31.14) (2021-08-03)
7+
8+
9+
### Features
10+
11+
* **ui5-timeline:** enable horizontal layout ([13be2c4](https://github.com/SAP/ui5-webcomponents/commit/13be2c4))
12+
13+
14+
15+
16+
617
## [0.31.13](https://github.com/SAP/ui5-webcomponents/compare/v0.31.12...v0.31.13) (2021-07-26)
718

819
**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.31.13",
3+
"version": "0.31.14",
44
"description": "UI5 Web Components: webcomponents.base",
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",
@@ -27,7 +27,7 @@
2727
"lit-html": "^1.0.0"
2828
},
2929
"devDependencies": {
30-
"@ui5/webcomponents-tools": "0.31.13",
30+
"@ui5/webcomponents-tools": "0.31.14",
3131
"array-uniq": "^2.0.0",
3232
"chromedriver": "88.0.0",
3333
"copy-and-watch": "^0.1.4",

packages/base/src/InitialConfiguration.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ const applyOpenUI5Configuration = () => {
119119
initialConfig = merge(initialConfig, OpenUI5Config);
120120
};
121121

122-
123122
const initConfiguration = () => {
124123
if (initialized) {
125124
return;

packages/base/src/MediaRange.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ const MediaRange = {
104104
getCurrentRange: _getCurrentRange,
105105
};
106106

107-
108107
MediaRange.initRangeSet(MediaRange.RANGESETS.RANGE_4STEPS, [600, 1024, 1440], ["S", "M", "L", "XL"]);
109108

110109
export default MediaRange;

packages/base/src/Render.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ let mutationObserverTimer;
1515

1616
let queuePromise;
1717

18-
1918
/**
2019
* Schedules a render task (if not already scheduled) to render the component
2120
*

packages/base/src/util/PopupUtils.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ const getClosedPopupParent = el => {
6969
return getClosedPopupParent(parent);
7070
};
7171

72-
7372
const getNextZIndex = () => {
7473
const OpenUI5Support = getFeature("OpenUI5Support");
7574
if (OpenUI5Support && OpenUI5Support.isLoaded()) { // use OpenUI5 for getting z-index values, if loaded

packages/fiori/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.31.14](https://github.com/SAP/ui5-webcomponents/compare/v0.31.13...v0.31.14) (2021-08-03)
7+
8+
9+
### Features
10+
11+
* **ui5-timeline:** enable horizontal layout ([13be2c4](https://github.com/SAP/ui5-webcomponents/commit/13be2c4))
12+
13+
14+
15+
16+
617
## [0.31.13](https://github.com/SAP/ui5-webcomponents/compare/v0.31.12...v0.31.13) (2021-07-26)
718

819

packages/fiori/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-fiori",
3-
"version": "0.31.13",
3+
"version": "0.31.14",
44
"description": "UI5 Web Components: webcomponents.fiori",
55
"ui5": {
66
"webComponentsPackage": true
@@ -30,14 +30,14 @@
3030
"directory": "packages/fiori"
3131
},
3232
"dependencies": {
33-
"@ui5/webcomponents": "0.31.13",
34-
"@ui5/webcomponents-base": "0.31.13",
35-
"@ui5/webcomponents-icons": "0.31.13",
36-
"@ui5/webcomponents-ie11": "0.31.13",
37-
"@ui5/webcomponents-theme-base": "0.31.13"
33+
"@ui5/webcomponents": "0.31.14",
34+
"@ui5/webcomponents-base": "0.31.14",
35+
"@ui5/webcomponents-icons": "0.31.14",
36+
"@ui5/webcomponents-ie11": "0.31.14",
37+
"@ui5/webcomponents-theme-base": "0.31.14"
3838
},
3939
"devDependencies": {
40-
"@ui5/webcomponents-tools": "0.31.13",
40+
"@ui5/webcomponents-tools": "0.31.14",
4141
"chromedriver": "88.0.0"
4242
}
4343
}

0 commit comments

Comments
 (0)