Skip to content

Commit

Permalink
Fix incorrect imports (v0.24.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
aesqe committed Jun 17, 2019
1 parent c8a1662 commit b8b1972
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
9 changes: 4 additions & 5 deletions components/EmptyStateView.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
8 changes: 4 additions & 4 deletions components/NumberInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
8 changes: 4 additions & 4 deletions components/SearchField.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit b8b1972

Please sign in to comment.