npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@thinknpm/vue-form-ui

v3.3.13

Published

Collection of Vue.js Form Components

Downloads

137

Readme

@thinknpm/vue-form-ui

A Collection of Vue.js Form Components

:abc: Text input (only allows letters)

:1234: Number input (only allows numbers)

:date: Date input (3 inputs split DD/MM/YYYY - only allows valid dates and has optional min/max age validation)

:e-mail: Email input (valid emails only)

:iphone: Phone input (UK mobile or home)

:radio_button: Radio buttons input (fieldset)

:ballot_box_with_check: Checkbox buttons input (fieldset)

:arrow_down_small: Select input

:pound: Currency input

Usage

Install the package from npm:

npm install @thinknpm/vue-form-ui --save

Include the components you wish to use

// import form components
import TextInput from '@thinknpm/vue-form-ui/src/components/textinput.vue'
import EmailInput from '@thinknpm/vue-form-ui/src/components/emailinput.vue'

// vue component
export default {
  name: 'Form',
  components: {
      'text-input': TextInput,
      'email-input': EmailInput,
      // lazyload/code split the component
      // components can be grouped using the same 'webpackChunkName'
      'phone-input': () => import(/* webpackChunkName: "code-split-1" */ '@thinknpm/vue-form-ui/src/components/phoneinput.vue')
  }
}
Add inputs to your template
<text-input inputname="firstName" label="First Name" :required="true" />
<email-input inputname="email" label="Email" :required="true" />
<phone-input inputname="mobile" label="Mobile number" type="mobile" />

All input types have the following props:

These are imported via a Vue mixin: import { basic_props } from '../mixins/basic-props.js'

inputname (string) required

name given to the input

label (string) required

string used to fill question and placerholder text

value (object)

used to prepopulate input value from an object e.g { value: 'prepopulated value' }

required (boolean)

basic validation - is the field required

helpText (string)

string which can be used to display a help message

sectionID (number)

number which is used when you want to validation form sections without triggering inputs in different 'sections'

customErrors (object)

This is not included via mixin because defaults are different for input types

Object containing custom error messages for each rule e.g. { required: 'Please provide your name' }

There is also additional props for some input types:

minLength (string)

components: TextInput, EmailInput, PhoneInput

Set the minimum length of input value

maxLength (string)

components: TextInput, EmailInput, PhoneInput

Set the maximum length of input value

minAge (number)

components: DateInput

Set the minimum age for date validation

maxAge (number)

components: DateInput

Set the maximum age for date validation

type (string)

components: PhoneInput

Set phone input type to either 'mobile' or 'home'

options (array)

components: ButtonsRadio, ButtonsCheckbox, SelectInput

An array of objects used to provide options for the buttons e.g. [{ 'value': true, 'name': 'Yes' }, { 'value': false, 'name': 'No' }]