A simple time picker component using Angular Material.
Version | Angular |
---|---|
2.11.0 | 18 |
2.10.0 | 17 |
2.9.0 | 16 |
2.8.0 | 15 |
2.6.0 | 14 |
2.5.0 | 13 |
2.4.0 | 12 |
2.3.0 | 11 |
2.2.0 | 10 |
2.1.0 | 9 |
2.0.0 | 7 |
npm i @candidosales/material-time-picker
import { Component } from "@angular/core";
import { MaterialTimePickerComponent } from "material-time-picker";
@Component({
standalone: true,
selector: "d-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"],
imports: [MaterialTimePickerComponent],
})
export class AppComponent {
title = "demo";
exportTime = { hour: 7, minute: 15, meriden: "PM", format: 24 };
onChangeHour(event) {
console.log("event", event);
}
}
<material-timepicker color="primary" label="Hour 2" appearance="fill" [userTime]="exportTime" (change)="onChangeHour($event)" revertLabel="Remove" submitLabel="Ok" [disabled]="disabled" [readonly]="readonly"></material-timepicker>
Check the demo.
If you want to say thank you and/or support the active development this project:
- Add a GitHub Star to the project.
- Tweet about the project on your Twitter.
- Write a review or tutorial on Medium, Dev.to or personal blog.
- Support the project by donating a cup of coffee.
If you want to support Material Time Picker, you can ☕ buy a coffee here
- Cândido Sales - @candidosales
Code and documentation copyright 2020-2030 the Authors and Code released under the MIT License. Docs released under Creative Commons.
npm run lib:build
npm run start