Sreesanth46 / valid-input

Vue imput component with build in validation

Home Page:https://www.npmjs.com/package/@harv46/valid-input

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

valid-input

This npm package includes an input box with built-in validation and displays errors.

Valid-Input demo

Installation

npm install @harv46/valid-input

You can import the library directly to components

<script>
import { VInput } from "@harv46/valid-input";
import "@harv46/valid-input/dist/style.css";
</script>

Basic usage

<template>
    <div>
        <VInput v-model="inputValue" :validationType="`email`">Email</VInput>
    </div>
</template>

<script>
import { VInput } from "@harv46/valid-input";
import "@harv46/valid-input/dist/style.css";

export default {
    components: {
        VInput,
    },

    data() {
        return {
            inputValue: "",
        };
    },
};
</script>

Props

Prop Description Default
type Input type text
minLength Minimum length validation 0
maxLength Maximum length validation 500
required Required validation false
validationType Type of validation using
regex Validation regex - if validationType = 'regex' See usage
placeholder The input placeholder attribute

validationType values

  • email - Accepts valid email addresses.
  • alpha -Accepts only alphabet characters.
  • alphaNum - Accepts only alphanumerics.
  • numeric - Accepts only numerics. String numbers are also numeric.
  • regex - Accepts valid regular expressions, also should provide :regex property.

Regex example

<template>
    <div>
        <VInput
            v-model="inputValue"
            :minLength="4"
            :maxLength="10"
            :placeholder="Username"
            :validationType="`regex`"
            :regex="/[a-z]+/g"
            >Username</VInput
        >
    </div>
</template>

<script>
import { VInput } from "../../src/main";
import "../../dist/style.css";

export default {
    components: {
        VInput,
    },

    data() {
        return {
            inputValue: "",
        };
    },
};
</script>

About

Vue imput component with build in validation

https://www.npmjs.com/package/@harv46/valid-input

License:MIT License


Languages

Language:Vue 79.1%Language:JavaScript 14.0%Language:HTML 6.9%