chore: Update inputMode to inputmode

This commit is contained in:
BluJ
2023-04-20 15:06:51 -06:00
parent bd66c9c696
commit 72a7b02814
7 changed files with 13 additions and 13 deletions

View File

@@ -40,7 +40,7 @@ export class List<A extends ValueSpecList> extends IBuilder<A> {
maxLength?: number | null;
patterns: Pattern[];
/** Default = "text" */
inputMode?: ListValueSpecText["inputMode"];
inputmode?: ListValueSpecText["inputmode"];
},
) {
const spec = {
@@ -49,7 +49,7 @@ export class List<A extends ValueSpecList> extends IBuilder<A> {
minLength: null,
maxLength: null,
masked: false,
inputMode: "text" as const,
inputmode: "text" as const,
...aSpec,
};
return new List({