Skip to content

Commit 11ce150

Browse files
authored
fix(svelte): add inputmode param to input (#4379)
1 parent 639f623 commit 11ce150

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/svelte/components/input.svelte

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
type = undefined,
1313
name = undefined,
1414
value = undefined,
15+
inputmode = undefined,
1516
placeholder = undefined,
1617
inputId = undefined,
1718
size = undefined,
@@ -382,6 +383,7 @@
382383
{placeholder}
383384
id={inputId}
384385
{size}
386+
{inputmode}
385387
{accept}
386388
{autocomplete}
387389
{autocorrect}
@@ -451,6 +453,7 @@
451453
{placeholder}
452454
id={inputId}
453455
{size}
456+
{inputmode}
454457
{accept}
455458
{autocomplete}
456459
{autocorrect}
@@ -561,6 +564,7 @@
561564
{placeholder}
562565
id={inputId}
563566
{size}
567+
{inputmode}
564568
{accept}
565569
{autocomplete}
566570
{autocorrect}
@@ -642,6 +646,7 @@
642646
{placeholder}
643647
id={inputId}
644648
{size}
649+
{inputmode}
645650
{accept}
646651
{autocomplete}
647652
{autocorrect}

0 commit comments

Comments
 (0)