Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

form-validation-react-native

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

form-validation-react-native - npm Package Compare versions

Comparing version
1.6.3
to
1.6.4
+1
-1
package.json
{
"name": "form-validation-react-native",
"version": "1.6.3",
"version": "1.6.4",
"description": "Form Validator for IOS and Android",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -31,2 +31,3 @@ import React, { useEffect, useState } from 'react';

topLabelStyle?: any;
containerStyle?: any;
}

@@ -44,2 +45,3 @@ const SearchableDropdown = ({

topLabelStyle,
containerStyle,
}: Props) => {

@@ -94,3 +96,3 @@ let questionValue = question?.value ?? [];

return (
<SafeAreaView style={styles.container}>
<SafeAreaView style={containerStyle ?? styles.container}>
<AnimatedLabel

@@ -249,3 +251,3 @@ question={{ value: search || (!!singleChoice && questionValue), label: question?.label }}

margin: Platform.OS === 'ios' ? 12 : 2,
marginBottom: 10,
marginBottom: Platform.OS === 'ios' ? 10 : 1,
padding: 10,

@@ -252,0 +254,0 @@ flexDirection: 'column',