Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svelte-otp

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-otp

svelte Otp

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
32
decreased by-20%
Maintainers
1
Weekly downloads
 
Created
Source

Svelte Otp

Netlify Status

A Otp Component that can be used with Svelte.

Install

npm install svelte-otp --save

yarn add svelte-otp

Demo

To view a demo online: https://svelte-otp.netlify.app/

To view demo examples locally clone the repo and run npm install && npm run dev

import SvelteOtp from 'svelte-otp';

// main 
<SvelteOtp	
    separator="-"
    placeholder="0000"
    ...
/>

Usage

<SvelteOtp	
		separator="-"
		placeholder="0000"
        ...
	/>

numberOfInputs prop

    <SvelteOtp numberOfInputs={6} />

numberOfInputs along with separatorprop

<SvelteOtp numberOfInputs={4} separator="-"  />

Using numberOfInputs, separator and placeholder props

<SvelteOtp separator="-" placeholder="******" numberOfInputs={6}  />

Masking Input

<SvelteOtp separator="-" placeholder="****" numberOfInputs={4} maskInput={true} />

Change Focus on Input/Delete

<SvelteOtp 
	...
	autoFocusNextOnInput={true}
	focusPreviousOnDelete={true}
/>

Programtic Access of value of Otp

    let otpInstance: {getValue: () => void};
    function handleClick() {
        console.log('value on click', 
            otpInstance?.getValue());
    }
	...
<SvelteOtp 
		...
		bind:this={otpInstance}
	/>

Prefill value on some other events/actions

function callbackFunction(event: CustomEvent) {
    console.log('emittedValue', event.detail);
}
function handlePrefill() {
    value = '123456';
}
<SvelteOtp
		...
        bind:initialValue={value}
		on:notify={callbackFunction}
		...
		emitEventOnPrefill={false}
	/>
<div class="button-otp" on:click={handleClick}> Get Value </div>

Event on Otp Filled completely

function callbackFunction(event: CustomEvent) {
    console.log('emittedValue', event.detail);
}

<SvelteOtp
		...
		on:notify={callbackFunction}
		...
		emitEventOnPrefill={false}
	/>

Available props

PropTypeDefaultDescription
numberOfInputsNumber4Number of Inputs to be shown
separatorStringseparator between inputs
placeholderStringplaceholder for text inputs.
maskInputBooleanfalsemask input values
autoFocusNextOnInputBooleantruefocus on next input after entering value
focusPreviousOnDeleteBooleantruemove focus to previous element on delete
emitEventOnPrefillBooleanfalseemits events on filling all input fields

Events

Only emitted event.

eventObj = { completevalue: string; isInputComplete: boolean; }

EventOutputDescription
notifyeventObjEven is emitted when input is complete

Authors

@shubhadip

Keywords

FAQs

Package last updated on 11 Sep 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc