Socket
Socket
Sign inDemoInstall

@altiore/form

Package Overview
Dependencies
7
Maintainers
1
Versions
180
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.3.8 to 3.3.9

10

dist/create-submit/create-submit.js

@@ -52,3 +52,11 @@ var __assign = (this && this.__assign) || function () {

else {
formRef.current.requestSubmit();
if (formRef.current.submit) {
formRef.current.submit();
}
else if (formRef.current.requestSubmit) {
formRef.current.requestSubmit();
}
else {
onFormSubmit();
}
}

@@ -55,0 +63,0 @@ }, [onSubmit, formRef, onFormSubmit]);

2

package.json
{
"name": "@altiore/form",
"version": "3.3.8",
"version": "3.3.9",
"description": "Form helper for building powerful forms",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc