unicorn-demo-app 6.26.2 → 6.27.0

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": "unicorn-demo-app",
3
- "version": "6.26.2",
3
+ "version": "6.27.0",
4
4
  "main": "src/index.js",
5
5
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
6
6
  "license": "MIT",
@@ -1796,7 +1796,9 @@ exports[`AvatarScreen renders screen 1`] = `
1796
1796
  }
1797
1797
  style={
1798
1798
  Array [
1799
- undefined,
1799
+ Object {
1800
+ "tintColor": "#FFFFFF",
1801
+ },
1800
1802
  undefined,
1801
1803
  undefined,
1802
1804
  undefined,
@@ -21,18 +21,18 @@ export default class BadgesScreen extends Component {
21
21
 
22
22
  customElement1 = (
23
23
  <View row>
24
- <Image source={bell}/>
25
- <Image source={bell}/>
24
+ <Image tintColor={Colors.$iconDefaultLight} source={bell}/>
25
+ <Image tintColor={Colors.$iconDefaultLight} source={bell}/>
26
26
  </View>
27
27
  );
28
28
 
29
29
  customElement2 = (
30
30
  <View row>
31
- <Image source={bell}/>
32
- <Text white text90>
31
+ <Image tintColor={Colors.$iconSuccessLight} source={bell}/>
32
+ <Text $textSuccessLight text90>
33
33
  37
34
34
  </Text>
35
- <Image source={bell}/>
35
+ <Image tintColor={Colors.$iconSuccessLight} source={bell}/>
36
36
  </View>
37
37
  );
38
38
 
@@ -152,7 +152,7 @@ export default class BadgesScreen extends Component {
152
152
  </Text>
153
153
  <View row spread marginH-50>
154
154
  <Badge marginR-10 label={'17'} customElement={this.customElement1}/>
155
- <Badge marginR-10 customElement={this.customElement2} backgroundColor={Colors.$backgroundNeutralHeavy}/>
155
+ <Badge marginR-10 customElement={this.customElement2} backgroundColor={Colors.$backgroundDisabled}/>
156
156
  </View>
157
157
  </ScrollView>
158
158
  </View>