An Angular Material library for entering a birthday.
- Split a date into 3 input fields, day, month and year, then reassemble and save them into a given formControl.
- Automatically add
0
in front of the day/month number. - Remove
.
ande
from the possible input. - Does automatically focus the next field when needed.
- Based on the Vitaly Friedman article, Designing Birthday Picker UX: Simpler Is Better
fill | outlined |
---|---|
Supports:
- Angular >=15
- Angular Material >=15
npm i ngx-mat-birthday-input
Add NgxMatBirthdayInputComponent
to your component file:
imports: [NgxMatBirthdayInputComponent];
- Add
floatLabel
to yourmat-form-field
- Use a preset
formControlName
- This
formControlName
will be automatically updated, therefore giving you the possibility to add your ownmat-error
see the comment
<form #f="ngForm" [formGroup]="birthdayForm">
<mat-form-field
floatLabel="always"
>
<!-- <mat-label>Birthday</mat-label> -->
<ngx-mat-birthday-input
formControlName="birthday"
id="birthday"
>
</ngx-mat-birthday-input>
<!-- <mat-icon matSuffix>event</mat-icon>
<mat-error *ngIf="birthdayForm?.get('birthday').invalid">
{{ Invalide error message }}
</mat-error> -->
</mat-form-field>
</form>
Options | Type | Default | Description |
---|---|---|---|
formControlName | FormControl |
undefined |
Control to be updated |
autocomplete | "on" or "off" |
"on" |
Use the default browser autofill |
labels | string[] |
["DD", "MM", "YYYY"] |
Label used by the mat-input |
placeholders | string[] |
["", "", ""] |
with an s |
required | boolean |
undefined |
|
disabled | boolean |
undefined |
Name | Default | Explanation |
---|---|---|
--ngx-mat-birthday-input-gap |
16px |
Change the gap between the inputs |
- maintainer Raphaël Balet