A customizable React hook for automatically saving and restoring form data with support for localStorage, sessionStorage, and external APIs.
Use the :focus-within pseudo-selector in CSS
A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.
Making SvelteKit forms a pleasure to use!
A higher order component decorator for forms using Redux and React
OpenTelemetry Node SDK provides automatic telemetry (tracing, metrics, etc) for Node.js applications
🏁 Framework agnostic, high performance, subscription-based form state management
React Hook Form validation resolvers: Yup, Joi, Superstruct, Zod, Vest, Class Validator, io-ts, Nope, computed-types, TypeBox, arktype, Typanion, Effect-TS and VineJS
Spec-compliant FormData implementation for Node.js
Metapackage which bundles opentelemetry node core and contrib instrumentations
A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.
Use the overflow shorthand in CSS
🏁 High performance subscription-based form state management for React
An input element that validates its value with a server endpoint.
Style form elements when they are empty
Utility functions for @rjsf/core
Fast HTTP benchmarking tool written in Node.js
Performant, flexible and extensible forms library for React Hooks
The ajv-8 based validator for @rjsf/core
CLI for webpack & friends
A simple React component capable of building HTML forms out of a JSON schema.
React components for Recurly.js
@ant-design/pro-form
<div align="center"> <img width="200" height="200" src="https://s3.amazonaws.com/pix.iemoji.com/images/emoji/apple/ios-11/256/crayon.png"> <h1>@jimp/plugin-dither</h1> <p>Apply a dither effect to an image.</p> </div>
Include gmail like auto-save on your forms
== DESCRIPTION: Creates a configuration controller and model that can be used to quickly create configuration table for your system so you can store system-wide variables that you'd like the user to be able to set. This gem contains a generator to create a simple configuration model, migration, and interface for your application, complete with working tests. == FEATURES * Generates the controller, model, and the associated files. * You can specify the model name and set the fields for the migrations via the generator. == SYNOPSIS: === Setup and overview Generate a new configuration system for your application by executing the generator from the root of your application. ruby script\generate rails_config_model Configuration You can also specify the model fields much like the scaffold_resource generator ruby script/generate rails_config_model Configuration contact_email:string site_name:string welcome_message:text max_number_of_events:integer Once installed, you modify the generated migration to include the fields you want to configure. There are a few defaults there to give you an idea. The generator will create a controller mounted at /configuration so you can edit your configurations. Modify this as needed to provide for security. === The Edit form The application's edit form uses the *form* helper method to auto-generate the fields. This may not be optimal and you may wish to actually write your own view instead. See app/views/configuration/edit.rhtml for more details. === Usage Configuration is simply a model for this table. It is designed to handle a single row of a table, and so additional rows cannot be created. If you have a table that looks like this: id contact_email site_name welcome_message max_number_of_events You simply grab the row from the table @configuration = Configuration.load and then grab the values out. email = @configuration.contact_email Or save new values @configuration = Configuration.load @configuration.welcome_message = "This is the default message." @configuraiton.save