Skip to content

Commit a90f9a6

Browse files
Merge branch 'master' into refactor/page
2 parents 0667120 + fb67b47 commit a90f9a6

40 files changed

+1697
-1360
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,55 @@
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.4.2-rc.12](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.11...v0.4.2-rc.12) (2019-08-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **AnalyticalTable:** Header is now resizable ([#76](https://github.com/SAP/ui5-webcomponents-react/issues/76)) ([eadd61a](https://github.com/SAP/ui5-webcomponents-react/commit/eadd61a))
12+
13+
14+
15+
16+
17+
## [0.4.2-rc.11](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.10...v0.4.2-rc.11) (2019-08-02)
18+
19+
20+
### Features
21+
22+
* **FilterItem:** Add MultiSelect option to FilterTypes ([#79](https://github.com/SAP/ui5-webcomponents-react/issues/79)) ([0665824](https://github.com/SAP/ui5-webcomponents-react/commit/0665824))
23+
24+
25+
26+
27+
28+
## [0.4.2-rc.10](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.9...v0.4.2-rc.10) (2019-08-02)
29+
30+
31+
### Code Refactoring
32+
33+
* **VariantManagement:** removed unused prop enabled ([#77](https://github.com/SAP/ui5-webcomponents-react/issues/77)) ([5080316](https://github.com/SAP/ui5-webcomponents-react/commit/5080316))
34+
35+
36+
### BREAKING CHANGES
37+
38+
* **VariantManagement:** Removed prop `enabled`, please use `disabled` instead. This change should not affect your applications, because `enabled` was never implemented.
39+
40+
41+
42+
43+
44+
## [0.4.2-rc.9](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.8...v0.4.2-rc.9) (2019-07-31)
45+
46+
47+
### Bug Fixes
48+
49+
* **VariantManagement:** initialSelectedKey prop is working as intended ([#75](https://github.com/SAP/ui5-webcomponents-react/issues/75)) ([a5e4267](https://github.com/SAP/ui5-webcomponents-react/commit/a5e4267))
50+
51+
52+
53+
54+
655
## [0.4.2-rc.8](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.7...v0.4.2-rc.8) (2019-07-29)
756

857
**Note:** Version bump only for package ui5-webcomponents-react

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.4.2-rc.8",
5+
"version": "0.4.2-rc.12",
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"command": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"webpack-cli": "^3.3.2"
121121
},
122122
"resolutions": {
123-
"@types/react": "16.8.19"
123+
"@types/react": "16.8.24"
124124
},
125125
"husky": {
126126
"hooks": {

packages/base/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.4.2-rc.12](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.11...v0.4.2-rc.12) (2019-08-02)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-react-base
9+
10+
11+
12+
13+
14+
## [0.4.2-rc.11](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.10...v0.4.2-rc.11) (2019-08-02)
15+
16+
**Note:** Version bump only for package @ui5/webcomponents-react-base
17+
18+
19+
20+
21+
22+
## [0.4.2-rc.10](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.9...v0.4.2-rc.10) (2019-08-02)
23+
24+
**Note:** Version bump only for package @ui5/webcomponents-react-base
25+
26+
27+
28+
29+
30+
## [0.4.2-rc.9](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.8...v0.4.2-rc.9) (2019-07-31)
31+
32+
**Note:** Version bump only for package @ui5/webcomponents-react-base
33+
34+
35+
36+
37+
638
## [0.4.2-rc.8](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.7...v0.4.2-rc.8) (2019-07-29)
739

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

packages/base/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-react-base",
3-
"version": "0.4.2-rc.8",
3+
"version": "0.4.2-rc.12",
44
"description": "Base for ui5-webcomponents-react",
55
"main": "index.cjs.js",
66
"module": "index.esm.js",

packages/charts/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.4.2-rc.12](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.11...v0.4.2-rc.12) (2019-08-02)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-react-charts
9+
10+
11+
12+
13+
14+
## [0.4.2-rc.11](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.10...v0.4.2-rc.11) (2019-08-02)
15+
16+
**Note:** Version bump only for package @ui5/webcomponents-react-charts
17+
18+
19+
20+
21+
22+
## [0.4.2-rc.10](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.9...v0.4.2-rc.10) (2019-08-02)
23+
24+
**Note:** Version bump only for package @ui5/webcomponents-react-charts
25+
26+
27+
28+
29+
30+
## [0.4.2-rc.9](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.8...v0.4.2-rc.9) (2019-07-31)
31+
32+
**Note:** Version bump only for package @ui5/webcomponents-react-charts
33+
34+
35+
36+
37+
638
## [0.4.2-rc.8](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.7...v0.4.2-rc.8) (2019-07-29)
739

840
**Note:** Version bump only for package @ui5/webcomponents-react-charts

packages/charts/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-react-charts",
3-
"version": "0.4.2-rc.8",
3+
"version": "0.4.2-rc.12",
44
"description": "Charts for ui5-webcomponents-react",
55
"main": "index.cjs.js",
66
"module": "index.esm.js",
@@ -20,7 +20,7 @@
2020
"@types/chart.js": "^2.7.56"
2121
},
2222
"dependencies": {
23-
"@ui5/webcomponents-react-base": "0.4.2-rc.8",
23+
"@ui5/webcomponents-react-base": "0.4.2-rc.12",
2424
"chart.js": "^2.8.0",
2525
"chartjs-plugin-datalabels": "^0.6.0",
2626
"deepmerge": "^4.0.0",

packages/cli/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.4.2-rc.12](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.11...v0.4.2-rc.12) (2019-08-02)
7+
8+
**Note:** Version bump only for package @ui5/webcomponents-react-cli
9+
10+
11+
12+
13+
14+
## [0.4.2-rc.11](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.10...v0.4.2-rc.11) (2019-08-02)
15+
16+
**Note:** Version bump only for package @ui5/webcomponents-react-cli
17+
18+
19+
20+
21+
22+
## [0.4.2-rc.10](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.9...v0.4.2-rc.10) (2019-08-02)
23+
24+
**Note:** Version bump only for package @ui5/webcomponents-react-cli
25+
26+
27+
28+
29+
30+
## [0.4.2-rc.9](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.8...v0.4.2-rc.9) (2019-07-31)
31+
32+
**Note:** Version bump only for package @ui5/webcomponents-react-cli
33+
34+
35+
36+
37+
638
## [0.4.2-rc.8](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.7...v0.4.2-rc.8) (2019-07-29)
739

840
**Note:** Version bump only for package @ui5/webcomponents-react-cli

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui5/webcomponents-react-cli",
33
"private": true,
4-
"version": "0.4.2-rc.8",
4+
"version": "0.4.2-rc.12",
55
"description": "CLI for creating React Components",
66
"repository": {
77
"type": "git",

packages/main/CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,55 @@
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.4.2-rc.12](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.11...v0.4.2-rc.12) (2019-08-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **AnalyticalTable:** Header is now resizable ([#76](https://github.com/SAP/ui5-webcomponents-react/issues/76)) ([eadd61a](https://github.com/SAP/ui5-webcomponents-react/commit/eadd61a))
12+
13+
14+
15+
16+
17+
## [0.4.2-rc.11](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.10...v0.4.2-rc.11) (2019-08-02)
18+
19+
20+
### Features
21+
22+
* **FilterItem:** Add MultiSelect option to FilterTypes ([#79](https://github.com/SAP/ui5-webcomponents-react/issues/79)) ([0665824](https://github.com/SAP/ui5-webcomponents-react/commit/0665824))
23+
24+
25+
26+
27+
28+
## [0.4.2-rc.10](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.9...v0.4.2-rc.10) (2019-08-02)
29+
30+
31+
### Code Refactoring
32+
33+
* **VariantManagement:** removed unused prop enabled ([#77](https://github.com/SAP/ui5-webcomponents-react/issues/77)) ([5080316](https://github.com/SAP/ui5-webcomponents-react/commit/5080316))
34+
35+
36+
### BREAKING CHANGES
37+
38+
* **VariantManagement:** Removed prop `enabled`, please use `disabled` instead. This change should not affect your applications, because `enabled` was never implemented.
39+
40+
41+
42+
43+
44+
## [0.4.2-rc.9](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.8...v0.4.2-rc.9) (2019-07-31)
45+
46+
47+
### Bug Fixes
48+
49+
* **VariantManagement:** initialSelectedKey prop is working as intended ([#75](https://github.com/SAP/ui5-webcomponents-react/issues/75)) ([a5e4267](https://github.com/SAP/ui5-webcomponents-react/commit/a5e4267))
50+
51+
52+
53+
54+
655
## [0.4.2-rc.8](https://github.com/SAP/ui5-webcomponents-react/compare/v0.4.2-rc.7...v0.4.2-rc.8) (2019-07-29)
756

857
**Note:** Version bump only for package @ui5/webcomponents-react

0 commit comments

Comments
 (0)