I'm wondering if it is possible to create custom input types other than the native ones that are listed here
If it's possible, how? I'm thinking of a directive which preserves the native input types but extends it with new, custom ones with custom functionality.
e.g. I want to have a IBAN input type, that has a input mask & validation given because of the directive:
<input type="iban" [(ngModel)]="iban" />
Hope someone can help me out with that!