fln-espranza 0.0.28 → 0.0.29

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.
@@ -39,38 +39,27 @@ export default function ETimeLineCard({ title, description, completed, disabled,
39
39
  {description}
40
40
  </EText>
41
41
  </View>
42
- {/* <View style={tw`ml-4`}>
43
- <ChevronRightIcon style={[tw``, { color: Colors['text-body'] }]} size={16} />
44
- </View> */}
45
- <View style={tw`ml-4`}>
46
- <EBadge
47
- completed={completed}
48
- text={
49
- badgeText ? badgeText : completed ? "Complete" : "Pending"}
50
- color={completed ? Colors['primary-base'] : Colors.warning}
51
- />
42
+ <View style={tw`ml-4`}>
43
+ <EBadge
44
+ completed={completed}
45
+ text={
46
+ badgeText ? badgeText : completed ? "Complete" : "Pending"}
47
+ color={completed ? Colors['primary-base'] : Colors.warning}
48
+ />
52
49
  </View>
53
50
  </View>
54
51
 
55
- <View style={tw`mt-6 flex-row items-center justify-between`}>
56
- {/* <EBadge
57
- completed={completed}
58
- text={completed ? "Complete" : "Pending"}
59
- color={completed ? Colors['primary-base'] : Colors.warning}
60
- /> */}
61
-
62
- {
63
- !disabled ? (
52
+ {
53
+ !disabled ? (
54
+ <View style={tw`mt-6 flex-row items-center justify-between`}>
64
55
  <TouchableOpacity style={tw`flex-row`} onPress={onPress}>
65
56
  <EText size="sm" style={[tw`ml-2 font-semibold`, { color: Colors['primary-base'] }]}>
66
57
  {buttonText}
67
58
  </EText>
68
59
  <EIconChevronRight size={20} style={[tw`ml-2`, { color: Colors['primary-base'] }]} />
69
60
  </TouchableOpacity>
70
-
71
- ) : <></>
72
- }
73
- </View>
61
+ </View>) : <></>
62
+ }
74
63
  </TouchableOpacity>
75
64
  )
76
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fln-espranza",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "All components used inside FLN Project of Espranza Innovations",
5
5
  "main": "index.ts",
6
6
  "scripts": {