react-native-ui-lib 7.40.1-snapshot.6830 → 7.40.1-snapshot.6831

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": "7.40.1-snapshot.6830",
3
+ "version": "7.40.1-snapshot.6831",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -5,9 +5,7 @@ interface DrawerItemProps {
5
5
  width?: number;
6
6
  background?: string;
7
7
  text?: string;
8
- textColor?: string;
9
8
  icon?: number;
10
- iconColor?: string;
11
9
  onPress?: Function;
12
10
  keepOpen?: boolean;
13
11
  style?: ViewStyle;
@@ -229,14 +229,14 @@ class Drawer extends PureComponent {
229
229
  {!item.customElement && item.icon && <Animated.Image source={item.icon} style={[styles.actionIcon, {
230
230
  width: itemsIconSize,
231
231
  height: itemsIconSize,
232
- tintColor: item.iconColor || itemsTintColor,
232
+ tintColor: itemsTintColor,
233
233
  opacity,
234
234
  transform: [{
235
235
  scale
236
236
  }]
237
237
  }]} />}
238
238
  {!item.customElement && item.text && <Animated.Text style={[styles.actionText, {
239
- color: item.textColor || itemsTintColor,
239
+ color: itemsTintColor,
240
240
  opacity,
241
241
  transform: [{
242
242
  scale