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

vue-dynamic-input-component

v0.1.6

Published

<div align="center"> <h1>Vue Dynamic Input Component</h1> <p>A Vue component library for building interactive UI elements.</p>

Downloads

43

Readme

npm

License

This project is licensed under the MIT License.

Probs

  • modelValue (required): The v-model binding for the input value.
  • type: The type of the input field (e.g., "text", "number", "password").
  • placeholder: The placeholder text for the input field.
  • background-color: The background color of the input field.
  • border-radius: The border radius of the input field.
  • color: The text color of the input field.
  • border-color: The border color of the input field.
  • min-length: The minimum length of the input value.
  • max-length: The maximum length of the input value.
  • pattern: A regular expression pattern for input validation.
  • width: Width of design input.
  • height: Height of design input
  • min-width: Min width of design input
  • max-width: Max width of design input
  • min-height: Min height of design input
  • max-height: Max height of design input

Installation

npm i vue-dynamic-input-component

or

yarn add vue-dynamic-input-component

Usage

import {VInput} from 'vue-dynamic-input-component' <br>
import 'vue-dynamic-input-component/dist/style.css';

Props

The following table describes the props that can be passed to the component for customization:

| Prop | Type | Description | |----------------------|------------------|-----------------------------------------------------------------------| | modelValue | String/Number | The v-model binding for the input value. | | typeValue | String | The type of the input field. Possible values: "string", "number", "password". | | placeValue | String | The placeholder text for the input field. | | backgroundColor | String | The background color of the input field. | | borderRadius | String | The border radius of the input field. | | color | String | The text color of the input field. | | borderColor | String | The border color of the input field. | | focusBorderColor | String | The border color of the input field when it is focused. | | focusBackgroundColor | String | The background color of the input field when it is focused. | | minLength | String | The minimum length of the input value. | | maxLength | String | The maximum length of the input value. | | pattern | String | A regular expression pattern for input validation. | | minWidth | String | The minimum width of the input field. | | maxWidth | String | The maximum width of the input field. | | width | String | The width of the input field. | | height | String | The height of the input field. | | minHeight | String | The minimum height of the input field. | | maxHeight | String | The maximum height of the input field. |

Example

<template>
  <VInput
    v-model="inputValue"
    typeValue="text"
    placeValue="Enter your name"
    backgroundColor="#f2f2f2"
    borderRadius="5px"
    color="#333"
    borderColor="#ccc"
    focusBorderColor="red"
    focusBackgroundColor="#fff"
    minLength="2"
    maxLength="20"
    pattern="[a-zA-Z]+"
    minWidth="200px"
    maxWidth="500px"
    width="100%"
    height="40px"
    minHeight="40px"
    maxHeight="60px"
  ></VInput>
</template>

<script>
import { VInput } from 'vue-dynamic-input-component';
## Props

License

This project is licensed under the MIT License.