Socket
Socket
Sign inDemoInstall

react-hook-form

Package Overview
Dependencies
Maintainers
1
Versions
1030
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-hook-form - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

16

dist/index.es.js

@@ -185,20 +185,12 @@ import { useRef, useState, useEffect } from 'react';

return;
const eventAttached = options[radioOptionIndex].eventAttached;
if (eventAttached) {
removeAllEventListeners(ref, validateWithStateUpdate);
}
else {
if (!options[radioOptionIndex].eventAttached) {
options[radioOptionIndex].ref.addEventListener(isOnChange ? 'change' : 'blur', validateWithStateUpdate);
options[radioOptionIndex].eventAttached = true;
}
options[radioOptionIndex].eventAttached = !eventAttached;
}
else {
const eventAttached = field.eventAttached;
if (eventAttached) {
removeAllEventListeners(ref, validateWithStateUpdate);
}
else {
if (!field.eventAttached) {
ref.addEventListener(isOnChange ? 'input' : 'blur', validateWithStateUpdate);
field.eventAttached = true;
}
field.eventAttached = !eventAttached;
}

@@ -205,0 +197,0 @@ }

@@ -187,20 +187,12 @@ 'use strict';

return;
const eventAttached = options[radioOptionIndex].eventAttached;
if (eventAttached) {
removeAllEventListeners(ref, validateWithStateUpdate);
}
else {
if (!options[radioOptionIndex].eventAttached) {
options[radioOptionIndex].ref.addEventListener(isOnChange ? 'change' : 'blur', validateWithStateUpdate);
options[radioOptionIndex].eventAttached = true;
}
options[radioOptionIndex].eventAttached = !eventAttached;
}
else {
const eventAttached = field.eventAttached;
if (eventAttached) {
removeAllEventListeners(ref, validateWithStateUpdate);
}
else {
if (!field.eventAttached) {
ref.addEventListener(isOnChange ? 'input' : 'blur', validateWithStateUpdate);
field.eventAttached = true;
}
field.eventAttached = !eventAttached;
}

@@ -207,0 +199,0 @@ }

{
"name": "react-hook-form",
"version": "0.1.5",
"version": "0.1.6",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "module": "dist/index.es.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc