chore: prettier."

This commit is contained in:
BluJ
2023-03-31 09:38:36 -06:00
parent ce9c2a0db2
commit f3f3d8c10c
9 changed files with 292 additions and 80 deletions

View File

@@ -140,7 +140,7 @@ export interface ListValueSpecString {
pattern: string | null;
patternDescription: string | null;
masked: boolean; // default = false
inputmode: 'text' | 'email' | 'tel' | 'url'; // default = 'text'
inputmode: "text" | "email" | "tel" | "url"; // default = 'text'
placeholder: string | null;
}
@@ -150,6 +150,7 @@ export interface ListValueSpecNumber {
range: string;
integral: boolean; // default = false
units: string | null;
inputmode: "numeric" | "decimal"; // default = 'decimal'
placeholder: string | null;
}