diff --git a/components/EmptyStateView.js b/components/EmptyStateView.js index 1d848842..d0614c62 100644 --- a/components/EmptyStateView.js +++ b/components/EmptyStateView.js @@ -3,11 +3,10 @@ import PropTypes from 'prop-types'; import { connectStyle } from '@shoutem/theme'; -import Icon from './Icon'; -import View from './View'; -import Text from './Text'; -import Button from './Button'; -import Subtitle from './Subtitle'; +import { Icon } from './Icon'; +import { View } from './View'; +import { Button } from './Button'; +import { Subtitle, Text } from './Text'; class EmptyStateView extends PureComponent { static defaultProps = { diff --git a/components/NumberInput.js b/components/NumberInput.js index bb472772..5446dfcd 100644 --- a/components/NumberInput.js +++ b/components/NumberInput.js @@ -5,10 +5,10 @@ import _ from 'lodash'; import { connectStyle } from '@shoutem/theme'; import { connectAnimation } from '@shoutem/animation'; -import Icon from './Icon'; -import View from './View'; -import Button from './Button'; -import TextInput from './TextInput'; +import { Icon } from './Icon'; +import { View } from './View'; +import { Button } from './Button'; +import { TextInput } from './TextInput'; const { func, number, object, oneOfType, shape, string } = PropTypes; diff --git a/components/SearchField.js b/components/SearchField.js index 84dbc051..c8297807 100644 --- a/components/SearchField.js +++ b/components/SearchField.js @@ -4,10 +4,10 @@ import PropTypes from 'prop-types'; import { connectStyle } from '@shoutem/theme'; import { connectAnimation } from '@shoutem/animation'; -import Icon from './Icon'; -import View from './View'; -import Button from './Button'; -import TextInput from './TextInput'; +import { Icon } from './Icon'; +import { View } from './View'; +import { Button } from './Button'; +import { TextInput } from './TextInput'; const { func, object, shape, string } = PropTypes; diff --git a/package.json b/package.json index af0ef9e9..49558e97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@shoutem/ui", - "version": "0.24.0", + "version": "0.24.1", "description": "Styleable set of components for React Native applications", "dependencies": { "@shoutem/animation": "~0.12.3",