svelte-number-format
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

svelte-number-format

Number input component with prefixes and masks for Svelte 3.

Usage

Install with npm or yarn:

npm install --save svelte-number-format

Props

  • value - the value of the input
  • placeholder - the placeholder of the input (optional)
  • displayType - can be text or input (by default: input)
  • prefix - set characters before the input (optional)
  • mask - the mask of the input, (example: "+{7}(000)000-00-00") (optional)

Example

<script lang="ts">
  import NumberFormat from 'svelte-number-format'
  let inputValue = ''

  $: console.log(inputValue)
</script>

<NumberFormat
  mask="+{7}(000)000-00-00"
  bind:value="{inputValue}"
  displayType="input"
/>

License

MIT © Pitis Radu

Package Sidebar

Install

npm i svelte-number-format

Weekly Downloads

2

Version

0.0.2

License

MIT

Unpacked Size

3.76 kB

Total Files

6

Last publish

Collaborators

  • pitis