Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Gillardo committed May 5, 2020
1 parent 7c9c863 commit 81de022
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ To use the component, import the `DatetimePopupModule` via your .ts code, and ad
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { DatepickerModule } from 'ngx-bootstrap/datepicker';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
Expand All @@ -28,6 +29,7 @@ import { AppComponent } from './app.component';
imports: [
FormsModule,
BrowserModule,
BrowserAnimationsModule,
BsDropdownModule.forRoot(),
DatepickerModule.forRoot(),
TimepickerModule.forRoot(),
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-bootstrap-datetime-popup",
"version": "5.1.0-beta.2",
"version": "5.1.0-beta.3",
"author": {
"name": "Darren Gillard",
"email": "[email protected]"
Expand All @@ -15,6 +15,7 @@
"license": "MIT",
"url": "https://github.com/gillardo/ngx-bootstrap-datetime-popup#readme",
"main": "./dist/ngx-bootstrap-datetime-popup/bundles/ngx-bootstrap-datetime-popup.umd.js",
"module": "./dist/ngx-bootstrap-datetime-popup/esm5/ngx-bootstrap-datetime-popup.js",
"typings": "./dist/ngx-bootstrap-datetime-popup/ngx-bootstrap-datetime-popup.d.ts",
"scripts": {
"ng": "ng",
Expand Down
3 changes: 2 additions & 1 deletion projects/demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { DatepickerModule } from 'ngx-bootstrap/datepicker';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
Expand All @@ -17,6 +17,7 @@ import { DateComponent } from './date.component';
],
imports: [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
DatepickerModule.forRoot(),
TimepickerModule.forRoot(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ModuleWithProviders, NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { DatepickerModule } from 'ngx-bootstrap/datepicker';
Expand All @@ -17,7 +16,6 @@ import { OffClickDirective } from './offclick.directive';
imports: [
CommonModule,
FormsModule,
BrowserAnimationsModule,
DatepickerModule,
TimepickerModule,
BsDropdownModule
Expand Down

0 comments on commit 81de022

Please sign in to comment.