fln-espranza 0.0.11 → 0.0.13

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.
@@ -11,7 +11,7 @@ interface IProps{
11
11
 
12
12
  export default function EEmptyPlaceholder( { text }: IProps) {
13
13
  return (
14
- <View style={tw`w-full h-full flex justify-center items-center`}>
14
+ <View style={tw`flex justify-center items-center`}>
15
15
  <ImageBackground source={require("../assets/images/empty.png")} style={{width: 200, height: 200}} />
16
16
  <EText size="lg" style={tw`text-center text-gray-500 mt-5`}>
17
17
  {text}
@@ -1,8 +1,8 @@
1
1
  import React, { useState } from 'react';
2
2
  import { TouchableOpacity, View, TouchableOpacityProps } from 'react-native';
3
- import { Colors } from 'react-native/Libraries/NewAppScreen';
4
3
  import tw from '../../../lib/tailwind';
5
4
  import EText from './EText';
5
+ import { Colors } from "../utils/Color";
6
6
 
7
7
 
8
8
  interface RadioButtonProps extends TouchableOpacityProps {
@@ -1,6 +1,6 @@
1
1
  import React from 'react'
2
- import { Colors } from 'react-native/Libraries/NewAppScreen';
3
2
  import tw from '../lib/tailwind';
3
+ import { Colors } from '../utils/Color';
4
4
  import EText from './EText';
5
5
  // import { EText } from '../../../components'
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fln-espranza",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "All components used inside FLN Project of Espranza Innovations",
5
5
  "main": "index.ts",
6
6
  "scripts": {