New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

lp741-vue-components

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lp741-vue-components

Set of useful components for Vue3

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

Vue 3 Components library

Set of useful components for Vue3

1. InputPin

<script setup>
  import InputPin from 'lp741-vue-components';
</script>
<template>
  <InputPin
      numeberOfDigits="6"
      v-model="otp"
      border-color="#9CA3AF"
      focused-border-color="#FCD34D"
      border-width="4px"
      radius="12px"
      bg-color="#efefef"
  ></InputPin>  
</template>

Options:

  numberOfDigits: {
    type: Number,
    default: 6
  },
  modelValue: {
    type: String,
    default: ''
  },
  borderColor: {
    type: String,
    default: '#000'
  },
  focusedBorderColor: {
    type: String,
    default: '#3B82F6'
  },
  bgColor: {
    type: String,
    default: '#FFFFFF'
  },
  color: {
    type: String,
    default: 'inherit'
  },
  radius: {
    type: String,
    default: '100%'
  },
  borderWidth: {
    type: String,
    default: '3px'
  }

FAQs

Package last updated on 06 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts