1.0.3 • Published 9 months ago

saformcontrol v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

SAFORMCONTROL

You no longer wish to write the JavaScript code for your form control? Don't hesitate to download 'saformcontrol'. 'saformcontrol' is a package that can prove to be useful for this purpose.

Installation :

npm install saformcontrol

Usage :

First you need to import the package :

  • For global import use :
import * as saFormControl from "saformcontrol";
  • If you only need a specific method, you can use :
import { allLetter } from "saformcontrol";

You need to know :

The currently available methods are :

  • allNumber
  • maxLength
  • allLetter
  • toCapitalize
  • toPascalCase
  • toLowerCase
  • toUpperCase

All of these methods take a parameter 'element,' which is the selected input. For the 'maxLength' method, you need to add a second parameter, which represents the input size.

eg :

import { maxLength } from "saformcontrol";

// Select an input element
const input = document.querySelector(".input");

// Restricting the size of values that can be entered in this input
maxLength(input, 10);
1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago