native-pytech 1.0.153 → 1.0.155

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.
@@ -1,6 +1,6 @@
1
1
  import { ScrollView } from 'react-native';
2
2
  import Table from '../../../../../libs/table';
3
- export default ({ children }) => (<ScrollView showsVerticalScrollIndicator={false}>
3
+ export default ({ children }) => (<ScrollView>
4
4
  <Table>
5
5
  {children}
6
6
  </Table>
@@ -6,7 +6,7 @@ export default memo(({ children }) => {
6
6
  const { colorScheme } = useApp();
7
7
  const Theme = colors.theme[colorScheme];
8
8
  return (<TouchableWithoutFeedback>
9
- <ScrollView showsVerticalScrollIndicator={false} contentContainerStyle={[styles.pagina, { backgroundColor: Theme.backgroundColor }]} automaticallyAdjustKeyboardInsets={true}>
9
+ <ScrollView contentContainerStyle={[styles.pagina, { backgroundColor: Theme.backgroundColor }]} automaticallyAdjustKeyboardInsets={true}>
10
10
  {children}
11
11
  </ScrollView>
12
12
  </TouchableWithoutFeedback>);
@@ -8,7 +8,7 @@ export default memo(({ children }) => {
8
8
  const Theme = colors.theme[colorScheme];
9
9
  return (<TouchableWithoutFeedback>
10
10
  <KeyboardAvoidingView behavior={'height'} style={{ flex: 1 }}>
11
- <ScrollView contentContainerStyle={{ minHeight: height, flexGrow: 1 }} keyboardShouldPersistTaps='handled' showsVerticalScrollIndicator={false}>
11
+ <ScrollView contentContainerStyle={{ minHeight: height, flexGrow: 1 }} keyboardShouldPersistTaps='handled'>
12
12
  <View style={[styles.pagina, { backgroundColor: Theme.backgroundColor }]}>
13
13
  {children}
14
14
  </View>
@@ -4,7 +4,7 @@ import { useSafeAreaInsets } from 'react-native-safe-area-context';
4
4
  export default memo(({ children, style }) => {
5
5
  const { bottom, top } = useSafeAreaInsets();
6
6
  return (<KeyboardAvoidingView style={{ flex: 1 }} behavior={'height'} keyboardVerticalOffset={bottom + top}>
7
- <ScrollView contentContainerStyle={[{ flexGrow: 1 }, style]} showsVerticalScrollIndicator={false}>
7
+ <ScrollView contentContainerStyle={[{ flexGrow: 1 }, style]}>
8
8
  {children}
9
9
  </ScrollView>
10
10
  </KeyboardAvoidingView>);
@@ -1,7 +1,7 @@
1
1
  import { memo } from 'react';
2
2
  import { ScrollView } from 'react-native';
3
3
  export default memo(({ children, style }) => {
4
- return (<ScrollView style={{ flex: 1 }} automaticallyAdjustKeyboardInsets={true} contentContainerStyle={style} showsVerticalScrollIndicator={false}>
4
+ return (<ScrollView style={{ flex: 1 }} automaticallyAdjustKeyboardInsets={true} contentContainerStyle={style}>
5
5
  {children}
6
6
  </ScrollView>);
7
7
  });
@@ -5,7 +5,7 @@ import { Provider } from '../../context/page';
5
5
  export default memo(({ children, selected, onSelectionChange }) => {
6
6
  const value = useMemo(() => ({ selected, onSelectionChange }), [selected]);
7
7
  return (<Provider value={value}>
8
- <ScrollView showsVerticalScrollIndicator={false}>
8
+ <ScrollView>
9
9
  <Table>
10
10
  {children}
11
11
  </Table>
@@ -1,5 +1,6 @@
1
1
  import { ColorSchemeType } from "../constants";
2
2
  import type Props from './types';
3
+ import './styles.css';
3
4
  declare const useApp: () => {
4
5
  colorScheme: ColorSchemeType;
5
6
  fontScale: number;
@@ -8,6 +8,7 @@ import LoginSvg from '../../assets/images/login_letras.svg';
8
8
  import LoginSvgDark from '../../assets/images/login_letras_dark.svg';
9
9
  import Hooks from '../../../libs/constants/hooks';
10
10
  import colors from "../constants";
11
+ import './styles.css';
11
12
  const [Provider, useApp] = Utils.createCtx();
12
13
  export { useApp };
13
14
  export default memo(({ listStackNames = [], getBackgroundColor, getSession, renderItemLoading = ({ colorScheme }) => (colorScheme === 'dark' ?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-pytech",
3
- "version": "1.0.153",
3
+ "version": "1.0.155",
4
4
  "description": "Libreria de React Native Pytech",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",