Skip to content

Commit d2c624a

Browse files
authored
release: v4.4.0
1 parent 284a7b8 commit d2c624a

File tree

12 files changed

+569
-412
lines changed

12 files changed

+569
-412
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 4.4.0 (2020-02-10)
2+
3+
### :star: Highlights
4+
5+
Eva Material compatibility! :tada: [#517](https://github.com/akveo/react-native-ui-kitten/issues/517#issuecomment-584100452)
6+
7+
### :rocket: Features
8+
9+
* Add `onFocus` and `onBlur` props to input-based components ([#857](https://github.com/akveo/react-native-ui-kitten/issues/857)) ([422b523](https://github.com/akveo/react-native-ui-kitten/commit/422b523))
10+
* **Datepicker**: Add `backdropStyle` prop ([#849](https://github.com/akveo/react-native-ui-kitten/issues/849))([d69cc02](https://github.com/akveo/react-native-ui-kitten/commit/d69cc02))
11+
* **Autocomplete**: Add `placement` prop ([#845](https://github.com/akveo/react-native-ui-kitten/issues/845))([c61f63e](https://github.com/akveo/react-native-ui-kitten/commit/c61f63e))
12+
* **Demo App**: [Kitten Tricks](https://github.com/akveo/kittenTricks) is used as a runnable framework demo ([1b987c1](https://github.com/akveo/react-native-ui-kitten/commit/1b987c1))
13+
14+
### :bug: Bug Fixes
15+
16+
* **Modal**: State update during render ([#847](https://github.com/akveo/react-native-ui-kitten/issues/847)) ([39632ea](https://github.com/akveo/react-native-ui-kitten/commit/39632ea))
17+
* **Input**: Extra vertical padding on Android ([#609](https://github.com/akveo/react-native-ui-kitten/issues/609)) ([c27c610](https://github.com/akveo/react-native-ui-kitten/commit/c27c610))
18+
* **Documentation**: fix example usage of theme variable ([#871](https://github.com/akveo/react-native-ui-kitten/issues/871)) [617b40d](https://github.com/akveo/react-native-ui-kitten/commit/617b40d)
19+
120
## 4.4.0-beta.3 (2020-01-21)
221

322
### :star: Highlights

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-kitten",
3-
"version": "4.4.0-beta.3",
3+
"version": "4.4.0",
44
"private": true,
55
"license": "MIT",
66
"author": "akveo <[email protected]>",

src/components/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/components",
33
"description": "React Native components based on Eva Design System",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -21,8 +21,8 @@
2121
"access": "public"
2222
},
2323
"dependencies": {
24-
"@eva-design/dss": "^1.3.2",
25-
"@eva-design/processor": "^1.3.2",
24+
"@eva-design/dss": "^1.4.0",
25+
"@eva-design/processor": "^1.4.0",
2626
"hoist-non-react-statics": "^3.2.1",
2727
"lodash.merge": "^4.6.1",
2828
"fecha": "3.0.3"

src/date-fns/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/date-fns",
33
"description": "date-fns services for UI Kitten",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -24,7 +24,7 @@
2424
"date-fns": "^1.30.1"
2525
},
2626
"peerDependencies": {
27-
"@ui-kitten/components": "4.4.0-beta.3",
27+
"@ui-kitten/components": "4.4.0",
2828
"date-fns": "^1.30.1"
2929
},
3030
"sideEffects": false

src/eva-icons/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/eva-icons",
33
"description": "Eva Icons for React Native",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -27,7 +27,7 @@
2727
"react-native-svg": "^9.4.0"
2828
},
2929
"peerDependencies": {
30-
"@ui-kitten/components": "4.4.0-beta.3",
30+
"@ui-kitten/components": "4.4.0",
3131
"react-native-svg": "^9.4.0"
3232
},
3333
"sideEffects": false

src/moment/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/moment",
33
"description": "moment.js services for UI Kitten",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",
@@ -24,7 +24,7 @@
2424
"moment": "^2.24.0"
2525
},
2626
"peerDependencies": {
27-
"@ui-kitten/components": "4.4.0-beta.3",
27+
"@ui-kitten/components": "4.4.0",
2828
"moment": "^2.24.0"
2929
},
3030
"sideEffects": false

src/showcases/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui-kitten/showcases",
3-
"version": "4.4.0-beta.3",
3+
"version": "4.4.0",
44
"private": true,
55
"workspaces": {
66
"nohoist": [

src/template-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/template-js",
33
"description": "React Native template project with UI Kitten",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",

src/template-js/template/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"postinstall": "react-native link"
1111
},
1212
"dependencies": {
13-
"@eva-design/eva": "^1.3.2",
14-
"@ui-kitten/components": "4.4.0-beta.3",
15-
"@ui-kitten/eva-icons": "4.4.0-beta.3",
13+
"@eva-design/eva": "^1.4.0",
14+
"@ui-kitten/components": "4.4.0",
15+
"@ui-kitten/eva-icons": "4.4.0",
1616
"react": "16.9.0",
1717
"react-native": "0.61.5",
1818
"react-native-svg": "^9.13.3"

src/template-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ui-kitten/template-ts",
33
"description": "React Native template project with UI Kitten and TypeScript",
4-
"version": "4.4.0-beta.3",
4+
"version": "4.4.0",
55
"author": "akveo <[email protected]>",
66
"license": "MIT",
77
"homepage": "https://github.com/akveo/react-native-ui-kitten#readme",

0 commit comments

Comments
 (0)