fln-espranza 0.0.16 → 0.0.17

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.
@@ -36,7 +36,7 @@ export default function Avatar({ size, source, nameFirstLetter, textColor }: Ava
36
36
  )}
37
37
  >
38
38
  {source ? <Image style={tw`w-full h-full `} source={source} /> :
39
- <EText style={tw`text-xl font-bold text-white`}>{nameFirstLetter}</EText>}
39
+ <EText style={tw`text-xl font-bold text-white capitalize`}>{nameFirstLetter}</EText>}
40
40
  </View>
41
41
  );
42
42
  }
@@ -8,7 +8,7 @@ import EIconClock from "./icons/EIconClock";
8
8
  interface IProps {
9
9
  date: string;
10
10
  month: string;
11
- day: string;
11
+ day?: string;
12
12
  time?: string;
13
13
 
14
14
  }
@@ -16,7 +16,7 @@ interface IProps {
16
16
  export default function EDateAndTimeCard({ date, month, day, time }: IProps) {
17
17
  return (
18
18
  <View
19
- style={[tw`flex-row pb-4 border-b`, { borderBottomColor: Colors.border }]}
19
+ style={[tw`flex-row pb-4`, { borderBottomColor: Colors.border }]}
20
20
  >
21
21
  <View
22
22
  style={[
@@ -32,9 +32,9 @@ export default function EDateAndTimeCard({ date, month, day, time }: IProps) {
32
32
  </EText>
33
33
  </View>
34
34
  <View style={tw`ml-3 justify-center`}>
35
- <EText size="base" style={tw`font-bold text-black opacity-80 -mb-1`}>
35
+ {/* <EText size="base" style={tw`font-bold text-black opacity-80 -mb-1`}>
36
36
  {day}
37
- </EText>
37
+ </EText> */}
38
38
  {
39
39
  time ?<View style={tw`flex-row justify-center items-center mt-2`}>
40
40
  <EIconClock size={16} style={tw`text-slate-500`} />
@@ -25,7 +25,7 @@ export default function EListPerson({
25
25
  noBorder ? "" : "border-b border-slate-200"
26
26
  }`}
27
27
  >
28
- <EText style={tw`font-bold text-slate-800 mb-0.5`} numberOfLines={1}>
28
+ <EText style={tw`font-bold text-slate-800 mb-0.5 capitalize`} numberOfLines={1}>
29
29
  {name}
30
30
  </EText>
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fln-espranza",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "All components used inside FLN Project of Espranza Innovations",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -9,18 +9,18 @@
9
9
  "author": "",
10
10
  "license": "ISC",
11
11
  "peerDependencies": {
12
+ "@react-native-community/datetimepicker": "6.1.2",
13
+ "@react-navigation/drawer": "^6.5.0",
14
+ "@react-navigation/native": "^6.0.10",
15
+ "@react-navigation/native-stack": "^6.6.2",
12
16
  "expo": "~45.0.0",
13
17
  "expo-status-bar": "~1.3.0",
18
+ "moment": "^2.29.4",
14
19
  "react": "17.0.2",
15
20
  "react-native": "0.68.2",
16
- "react-native-safe-area-context": "4.2.4",
17
- "twrnc": "^3.3.2",
18
- "@react-navigation/drawer": "^6.5.0",
19
- "@react-navigation/native": "^6.0.10",
20
- "@react-navigation/native-stack": "^6.6.2",
21
21
  "react-native-heroicons": "^2.2.0",
22
- "moment": "^2.29.4",
23
- "@react-native-community/datetimepicker": "6.1.2",
24
- "react-native-reanimated": "~2.8.0"
22
+ "react-native-reanimated": "~2.8.0",
23
+ "react-native-safe-area-context": "4.2.4",
24
+ "twrnc": "^3.3.2"
25
25
  }
26
26
  }