Angular Bootstrap Date Time Picker
npm install ng-bootstrap-datetime-angular

This package supports Angular 8
Description
---
This picker is responsive design, so feel free to try it in your desktops, tablets and mobile devices.
src="https://raw.githubusercontent.com/danilomx/ng-bootstrap-datetime-angular/master/src/assets/example.png">
1. Install with npm:npm install ng-bootstrap-datetime-angular --save
2. Add NgBootstrapDatetimeAngularModule to your @NgModule like example below
``typescript
import { BrowserModule } from "@angular/platform-browser";
import { NgModule } from "@angular/core";
import { AppComponent } from "./app.component";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
import { CommonModule } from "@angular/common";
import { NgBootstrapDatetimeAngularModule } from "ng-bootstrap-datetime-angular";
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
NgBootstrapDatetimeAngularModule,
CommonModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
`
3. Add your input into form like example below
`html`
4. Connect to your __component__
`typescript
import { Component, OnInit } from "@angular/core";
import { FormGroup, FormControl, Validators } from "@angular/forms";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"]
})
export class AppComponent implements OnInit {
title = "Date";
formGroup: FormGroup;
ngOnInit() {
this.formGroup = new FormGroup({
activeEndDate: new FormControl(null, {
validators: [Validators.required]
})
});
}
}
``
License
-------
* License: MIT
Author
-------
Danilo Meneses Loaisiga