New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

formsy-kit

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

formsy-kit

Librería de componentes de formularios y utilidades para Next.js.

latest
Source
npmnpm
Version
1.0.6
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

formsy-kit

Librería de componentes y utilidades para formularios en React.

MIT License

Instalación

Install my-project with npm

  npm install formsy-kit

Usage/Examples

import { FormularioGenerico, EstructuraFormulario } from 'formsy-kit'

const estructura: EstructuraFormulario = {
  email: {
    label: 'Correo electrónico',
    type: 'email',
    required: true
  },
  password: {
    label: 'Contraseña',
    type: 'password',
    required: true
  }
}

export default function MiFormulario() {
  return <FormularioGenerico estructura={estructura} />
}

Componentes incluidos

  • AutoComplete
  • CalendarPicker
  • CheckBoxCustom
  • CheckBoxGroupCustom
  • DropZone
  • FormularioGenerico
  • InputDate
  • InputDateTime
  • InputGenerico
  • InputPhone
  • InputRangeDate
  • InputTime
  • SelectCustom
  • SignatureCustom
  • TextAreaCustom
  • TextAreaSimpleCustom

Contribuir

¡Las contribuciones son bienvenidas! Abre un issue o pull request en el repositorio.

Authors

Keywords

react

FAQs

Package last updated on 31 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts