@shoutem/ui 7.0.2-rc.0 → 7.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -83,7 +83,6 @@ import playlistPlay from './playlist-play.svg';
|
|
|
83
83
|
import plusButton from './plus-button.svg';
|
|
84
84
|
import podcasts from './podcasts.svg';
|
|
85
85
|
import products from './products.svg';
|
|
86
|
-
import queue from './queue.svg';
|
|
87
86
|
import radio from './radio.svg';
|
|
88
87
|
import radiobuttonOff from './radiobutton-off.svg';
|
|
89
88
|
import radiobuttonOn from './radiobutton-on.svg';
|
|
@@ -211,7 +210,6 @@ export const defaultConfig = [
|
|
|
211
210
|
{ name: 'plus-button', icon: plusButton },
|
|
212
211
|
{ name: 'podcasts', icon: podcasts },
|
|
213
212
|
{ name: 'products', icon: products },
|
|
214
|
-
{ name: 'queue', icon: queue },
|
|
215
213
|
{ name: 'radio', icon: radio },
|
|
216
214
|
{ name: 'radiobutton-off', icon: radiobuttonOff },
|
|
217
215
|
{ name: 'radiobutton-on', icon: radiobuttonOn },
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React, { PureComponent } from 'react';
|
|
2
2
|
import { Image, Modal, TouchableOpacity, View } from 'react-native';
|
|
3
|
+
import { ImagePropTypes } from 'deprecated-react-native-prop-types';
|
|
3
4
|
import autoBindReact from 'auto-bind/react';
|
|
4
5
|
import PropTypes from 'prop-types';
|
|
5
6
|
import { makeZoomable } from '@shoutem/animation';
|
|
@@ -84,7 +85,7 @@ class ImagePreview extends PureComponent {
|
|
|
84
85
|
ImagePreview.propTypes = {
|
|
85
86
|
style: PropTypes.object.isRequired,
|
|
86
87
|
height: PropTypes.number,
|
|
87
|
-
source:
|
|
88
|
+
source: ImagePropTypes.source,
|
|
88
89
|
width: PropTypes.number,
|
|
89
90
|
};
|
|
90
91
|
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" ?><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 2h20v4H0V2zm0 8h20v2H0v-2zm0 6h20v2H0v-2z"/></svg>
|