diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ec62d062..157dfb91f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## 5.1.0 (2021-04-16) + +### :rocket: Highlights: +* Added `onMonthChange` function to the Calendar component ([d70d978](https://github.com/akveo/react-native-ui-kitten/commit/d70d978)) +* Added `ghost` appearance for ButtonGroup component (#1382) ([849fb48](https://github.com/akveo/react-native-ui-kitten/commit/849fb48)), closes [#1382](https://github.com/akveo/react-native-ui-kitten/issues/1382) +* Improved input component caption structure (#1349) ([862a12f](https://github.com/akveo/react-native-ui-kitten/commit/862a12f)), closes [#1349](https://github.com/akveo/react-native-ui-kitten/issues/1349) +* ModalService can adjust position of items if StatusBar on Android is translucent (#1372) ([407356e](https://github.com/akveo/react-native-ui-kitten/commit/407356e)), closes [#1372](https://github.com/akveo/react-native-ui-kitten/issues/1372) [#743](https://github.com/akveo/react-native-ui-kitten/issues/743) +* ViewPager now has `swipeEnabled` prop ([c9e791f](https://github.com/akveo/react-native-ui-kitten/commit/c9e791f)) + +### :rocket: Features +* Update input styles when view & flex props are intersects each other (#1351) ([b9dbd58](https://github.com/akveo/react-native-ui-kitten/commit/b9dbd58)), closes [#1351](https://github.com/akveo/react-native-ui-kitten/issues/1351) + +### :bug: Bug Fixes +* **Modal**: Add change orientation event with modal render (#1346) ([15fb285](https://github.com/akveo/react-native-ui-kitten/commit/15fb285)), closes [#1346](https://github.com/akveo/react-native-ui-kitten/issues/1346) +* **Datepicker**: Make `autodismiss` prop optional ([123eb2b](https://github.com/akveo/react-native-ui-kitten/commit/123eb2b)) +* **Popover**: Popover now reacts to Android hardware back button press ([2a103ed](https://github.com/akveo/react-native-ui-kitten/commit/2a103ed)) +* **ViewPager**: Now skips if page is null ([c49753b](https://github.com/akveo/react-native-ui-kitten/pull/1165/commits/c49753b22167e9d182db7cedc5c8825d0fe3b5b2)) +* **Input**: Fixed cases when input does not detect press around the edges ([e992b66](https://github.com/akveo/react-native-ui-kitten/pull/1165/commits/e992b66fa27036bc85407a830c1cfca0708247a0)) +* **Autocomplete**: Async Autocomplete does not show options initially ([2ca80e1](https://github.com/akveo/react-native-ui-kitten/pull/1165/commits/2ca80e1caffd30ddde9f2d183e34d67b01f9e514)) + + ## 5.0.0 (2020-05-12) ### :star: Highlights diff --git a/package.json b/package.json index 324782ac0..31a7bff71 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui-kitten", - "version": "5.0.0", + "version": "5.1.0", "private": true, "license": "MIT", "author": "akveo ", @@ -29,8 +29,8 @@ "devDependencies": { "@babel/core": "^7.6.2", "@babel/plugin-proposal-decorators": "^7.6.2", - "@eva-design/eva": "^2.0.0", - "@eva-design/material": "^2.0.0", + "@eva-design/eva": "^2.1.0", + "@eva-design/material": "^2.1.0", "@types/gulp": "ts3.8", "@types/gulp-replace": "ts3.8", "@types/jest": "ts3.8", @@ -65,4 +65,4 @@ "react-native": "~0.61.5", "react-native-svg": "~9.13.3" } -} +} \ No newline at end of file diff --git a/src/components/package.json b/src/components/package.json index b8b605ad1..bc07b69ea 100644 --- a/src/components/package.json +++ b/src/components/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/components", "description": "React Native components based on Eva Design System", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", @@ -30,4 +30,4 @@ "peerDependencies": { "react-native-svg": "^9.13.6" } -} +} \ No newline at end of file diff --git a/src/date-fns/package.json b/src/date-fns/package.json index 05b296672..7f39b2fe4 100644 --- a/src/date-fns/package.json +++ b/src/date-fns/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/date-fns", "description": "date-fns services for UI Kitten", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", @@ -24,8 +24,8 @@ "date-fns": "2" }, "peerDependencies": { - "@ui-kitten/components": "5.0.0", + "@ui-kitten/components": "5.1.0", "date-fns": "^1.30.1" }, "sideEffects": false -} +} \ No newline at end of file diff --git a/src/eva-icons/package.json b/src/eva-icons/package.json index 5c850f153..33d4d89a1 100644 --- a/src/eva-icons/package.json +++ b/src/eva-icons/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/eva-icons", "description": "Eva Icons for React Native", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", @@ -24,7 +24,7 @@ "react-native-eva-icons": "^1.3.1" }, "peerDependencies": { - "@ui-kitten/components": "5.0.0", + "@ui-kitten/components": "5.1.0", "react-native-svg": "^9.13.6" }, "sideEffects": false diff --git a/src/metro-config/package.json b/src/metro-config/package.json index 2ecbacb35..76b9533bb 100644 --- a/src/metro-config/package.json +++ b/src/metro-config/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/metro-config", "description": "UI Kitten config for Metro Bundler", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", @@ -29,4 +29,4 @@ "peerDependencies": { "metro-config": "^0.58.0" } -} +} \ No newline at end of file diff --git a/src/moment/package.json b/src/moment/package.json index 053e073fd..cb5d6c03f 100644 --- a/src/moment/package.json +++ b/src/moment/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/moment", "description": "moment.js services for UI Kitten", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", @@ -24,7 +24,7 @@ "moment": "^2.24.0" }, "peerDependencies": { - "@ui-kitten/components": "5.0.0", + "@ui-kitten/components": "5.1.0", "moment": "^2.24.0" }, "sideEffects": false diff --git a/src/template-js/package.json b/src/template-js/package.json index ed251f2d5..73f5b1555 100644 --- a/src/template-js/package.json +++ b/src/template-js/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/template-js", "description": "React Native template project with UI Kitten", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", diff --git a/src/template-js/template/package.json b/src/template-js/template/package.json index 5fe56cfd2..c87f3b151 100644 --- a/src/template-js/template/package.json +++ b/src/template-js/template/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@eva-design/eva": "2.0.0", - "@ui-kitten/components": "5.0.0", - "@ui-kitten/eva-icons": "5.0.0", + "@ui-kitten/components": "5.1.0", + "@ui-kitten/eva-icons": "5.1.0", "react": "16.11.0", "react-native": "0.62.2", "react-native-svg": "^12.1.0" @@ -33,4 +33,4 @@ "preset": "react-native", "transformIgnorePatterns": [] } -} +} \ No newline at end of file diff --git a/src/template-ts/package.json b/src/template-ts/package.json index cca3e3d60..acfe3043c 100644 --- a/src/template-ts/package.json +++ b/src/template-ts/package.json @@ -1,7 +1,7 @@ { "name": "@ui-kitten/template-ts", "description": "React Native template project with UI Kitten and TypeScript", - "version": "5.0.0", + "version": "5.1.0", "author": "akveo ", "license": "MIT", "homepage": "https://github.com/akveo/react-native-ui-kitten#readme", diff --git a/src/template-ts/template/package.json b/src/template-ts/template/package.json index ae15adf0e..9651e051f 100644 --- a/src/template-ts/template/package.json +++ b/src/template-ts/template/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@eva-design/eva": "2.0.0", - "@ui-kitten/components": "5.0.0", - "@ui-kitten/eva-icons": "5.0.0", + "@ui-kitten/components": "5.1.0", + "@ui-kitten/eva-icons": "5.1.0", "react": "16.11.0", "react-native": "0.62.2", "react-native-svg": "^12.1.0" @@ -46,4 +46,4 @@ "node" ] } -} +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 500c68ef2..1144391b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1230,15 +1230,15 @@ resolved "https://registry.yarnpkg.com/@eva-design/dss/-/dss-2.0.0.tgz#d0038b43dfa3bcb925bc3ab4433e55d10bd92ea1" integrity sha512-jHMSLG9w/uhu92Oi8pViwYL5kbUxDolTpAoS28DSl9SAgGSLpdlyX1vtDKC7+nx1Ay5J5OWhNIcsMML3IGSbZg== -"@eva-design/eva@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@eva-design/eva/-/eva-2.0.0.tgz#6a6265322f66441a8765307f5197fd8117506d1e" - integrity sha512-6cf3PPAZOHGl59Wx8QmPW/BZgGxOSjiLZctErBlFezsAdMNtoduUfoAE/SRaPFt25bTTpbPFL8o2FrxrQvvFeA== +"@eva-design/eva@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@eva-design/eva/-/eva-2.1.0.tgz#210561abd37a6a894203420a727b1184d66e809a" + integrity sha512-n/8sUkjo0GWrO9dhsjijkqg+nlste2p8/3mOWT18wymm03hQXoT4kg31IhawjdWgzubjNzSjqPh+Pov5ShtsHQ== -"@eva-design/material@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@eva-design/material/-/material-2.0.0.tgz#b24402ad140fa5b0d707811875b66542bf5ef1a1" - integrity sha512-Pm/FQ6qiJlbP6a7e1vc0wt9FA2VIA87uzWNyJQTeGhagd3rsvNuh4sCn0dl3aupeZ278cQ7nbh14KNjQoaZ2Gw== +"@eva-design/material@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@eva-design/material/-/material-2.1.0.tgz#69617f6d78756ac4e450f07f30bb9b828e0d2d51" + integrity sha512-/U5LFq+4qEafXCrsYSP0daB0cnC7MrLFCZ6oQq6OW+gZlhdnfKoMrcVE8UQPjI+s/FVr7nD35Yl4I7yYKHLCew== "@eva-design/processor@^2.0.0": version "2.0.0"