diff --git a/src/core/models.ts b/src/core/models.ts index 5db1770..f0543e7 100644 --- a/src/core/models.ts +++ b/src/core/models.ts @@ -71,6 +71,14 @@ export class EmailInput extends InputBase { type = 'email'; } +export class NumberInput extends InputBase { + type = 'number'; +} + +export class UrlInput extends InputBase { + type = 'url'; +} + export class PasswordInput extends InputBase { type = 'password'; }