svelte-input-mask
svelte-input-mask copied to clipboard
Input masking component for Svelte with simple API and rich customization
There does not appear to be an example in the demo that uses reformat.
I am new to Svelte to forgive me if I am missing something. But It seems really weird that the only way to get the actual data from the input...
It would be good to have a select on focus as the inputEl is not exposed. ` function handleFocus(e) { canSetSelection = true; if(selectOnFocus){ inputEl && typeof inputEl.select === 'function'...
Seems like when browser trigger autofill value for NumberInput, it doesn't trigger on:change event ```svelte { data.requestAmount } Rp data.requestAmount = (detail.inputState.maskedValue + '').replace(/[^0-9]+/g, "")}/> ``` When I input manually...
Is it possible to add support for decimal separators and thousand separators in numberformat? suggested parameters: decimals="." thousands="," Like: "1.897,99" => European "1,545.00" => US and UK
Hi. Supposing this example: ```svelte class Order { document?: string; } let order = new Order(); ``` it would be nice to add TypeScript solving problems like this: ``` (JSX...
Bumps [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) from 3.49.0 to 4.2.19. Release notes Sourced from svelte's releases. [email protected] Patch Changes fix: ensure typings for <svelte:options> are picked up (#12902) fix: escape < in attribute strings...