@shoutem/ui 7.1.0-beta.7 → 7.1.0-beta.9
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.
- package/components/EmptyListImage.js +7 -1
- package/components/Video/Video.js +1 -1
- package/package.json +2 -2
- package/theme.js +1 -2
|
@@ -37,9 +37,15 @@ class EmptyListImage extends PureComponent {
|
|
|
37
37
|
} = this.props;
|
|
38
38
|
const EmptyStateImage = this.resolveImage();
|
|
39
39
|
|
|
40
|
+
// SVG cannot receive array of style elements on Web
|
|
41
|
+
const resolvedStyle = {
|
|
42
|
+
...style.image,
|
|
43
|
+
...imageStyle,
|
|
44
|
+
};
|
|
45
|
+
|
|
40
46
|
return (
|
|
41
47
|
<View styleName="vertical h-center ">
|
|
42
|
-
<EmptyStateImage style={
|
|
48
|
+
<EmptyStateImage style={resolvedStyle} />
|
|
43
49
|
<Title styleName="title" style={[style.title, titleStyle]}>
|
|
44
50
|
{title}
|
|
45
51
|
</Title>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shoutem/ui",
|
|
3
|
-
"version": "7.1.0-beta.
|
|
3
|
+
"version": "7.1.0-beta.9",
|
|
4
4
|
"description": "Styleable set of components for React Native applications",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"lint": "eslint .",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"react-native-linear-gradient": "2.8.3",
|
|
36
36
|
"react-native-modal": "13.0.1",
|
|
37
37
|
"react-native-render-html": "6.3.4",
|
|
38
|
-
"react-native-svg": "
|
|
38
|
+
"react-native-svg": "15.4.0",
|
|
39
39
|
"react-native-svg-transformer": "1.3.0",
|
|
40
40
|
"react-native-toast-message": "2.1.5",
|
|
41
41
|
"react-native-vimeo-iframe": "^1.2.1",
|