react-native-ui-lib 8.0.0-snapshot.7442 → 8.0.0-snapshot.7445

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "8.0.0-snapshot.7442",
3
+ "version": "8.0.0-snapshot.7445",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -3,16 +3,32 @@ export const images = {
3
3
  return {uri: require('./gradient.png'), width: 56, height: 2};
4
4
  },
5
5
  get gradientOverlay() {
6
- return {uri: require('./gradientOverlay.png'), width: 76, height: 48};
6
+ return {
7
+ uri: 'https://wixmp-1d257fba8470f1b562a0f5f2.wixmp.com/one-app-assets/public/v1/images/gradientOverlay.png',
8
+ width: 76,
9
+ height: 48
10
+ };
7
11
  },
8
12
  get gradientOverlayHigh() {
9
- return {uri: require('./gradientOverlayHigh.png'), width: 1, height: 297};
13
+ return {
14
+ uri: 'https://wixmp-1d257fba8470f1b562a0f5f2.wixmp.com/one-app-assets/public/v1/images/gradientOverlayHigh.png',
15
+ width: 1,
16
+ height: 297
17
+ };
10
18
  },
11
19
  get gradientOverlayLow() {
12
- return {uri: require('./gradientOverlayLow.png'), width: 1, height: 297};
20
+ return {
21
+ uri: 'https://wixmp-1d257fba8470f1b562a0f5f2.wixmp.com/one-app-assets/public/v1/images/gradientOverlayLow.png',
22
+ width: 1,
23
+ height: 297
24
+ };
13
25
  },
14
26
  get gradientOverlayMedium() {
15
- return {uri: require('./gradientOverlayMedium.png'), width: 1, height: 297};
27
+ return {
28
+ uri: 'https://wixmp-1d257fba8470f1b562a0f5f2.wixmp.com/one-app-assets/public/v1/images/gradientOverlayMedium.png',
29
+ width: 1,
30
+ height: 297
31
+ };
16
32
  },
17
33
  get hintTipMiddle() {
18
34
  return {uri: require('./hintTipMiddle.png'), width: 20, height: 7};
@@ -23,7 +23,7 @@ const Toast = props => {
23
23
  icon,
24
24
  iconColor,
25
25
  preset,
26
- zIndex = 100,
26
+ zIndex = Constants.isAndroid ? 100 : undefined,
27
27
  elevation,
28
28
  style,
29
29
  containerStyle,