svelte-number-format
v0.0.2
Published
Svelte component to format number in an input or as a text.
Downloads
3
Maintainers
Readme
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 inputplaceholder
- the placeholder of the input (optional)displayType
- can betext
orinput
(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