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

@@ -63,7 +63,7 @@ export interface ValueSpecColor extends WithStandalone {
export interface ValueSpecDatetime extends WithStandalone {
type: "datetime";
required: boolean;
inputMode: "date" | "time" | "datetime-local";
inputmode: "date" | "time" | "datetime-local";
min: string | null;
max: string | null;
step: string | null;
@@ -150,7 +150,7 @@ export interface ListValueSpecText {
minLength: number | null;
maxLength: number | null;
masked: boolean;
inputMode: "text" | "email" | "tel" | "url";
inputmode: "text" | "email" | "tel" | "url";
placeholder: string | null;
}
export interface ListValueSpecNumber {