diff --git a/CHANGELOG.md b/CHANGELOG.md index dbfc862d2..799c7b99f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ ## [3.1.0](https://github.com/akveo/react-native-ui-kitten/compare/v3.0.1...v3.1.0) (2018-09-19) - ### Bug Fixes * **rkTextInput:** non-editable rkTextInput crash on Android ([e755ce1](https://github.com/akveo/react-native-ui-kitten/commit/e755ce1)) @@ -18,6 +17,12 @@ * **rkGallery:** component implementation ([2a9f652](https://github.com/akveo/react-native-ui-kitten/commit/2a9f652)) * **rkGalleryImage:** component implementation ([794b117](https://github.com/akveo/react-native-ui-kitten/commit/794b117)) + +### Notes + +* **rkModalImg:** this component is deprecated since 3.1.0 version. Will be completely deleted in 3.2.0 version. +Use [rkGallery](https://akveo.github.io/react-native-ui-kitten/#/docs/ui-components/rkgallery) or [rkGalleryImage](https://akveo.github.io/react-native-ui-kitten/#/docs/ui-components/rkgalleryimage) instead. + ## [3.0.1](https://github.com/akveo/react-native-ui-kitten/compare/v3.0.0...v3.0.1) (2018-04-25) diff --git a/src/components/image/rkModalImg.js b/src/components/image/rkModalImg.js index 9cc2eba2e..e18a820b9 100644 --- a/src/components/image/rkModalImg.js +++ b/src/components/image/rkModalImg.js @@ -18,13 +18,22 @@ import { RkComponent } from '../rkComponent'; import { RkTheme } from '../../styles/themeManager'; /** + * `RkModalImg` is extension of basic `Image` that also opens it in full screen on tap. + * * @deprecated since version 3.1.0. Will be deleted in version 3.2.0. * Use `RkGallery` or `RkGalleryImage` instead. * - * `RkModalImg` is extension of basic `Image` that also opens it in full screen on tap. - * * @extends React.Component * + * @example Important notes + * + * Deprecated since version 3.1.0. Will be deleted in version 3.2.0. + * Use `RkGallery` or `RkGalleryImage` instead. + * + * ``` + * + * ``` + * * @example Simple usage: * * ```