[ADF-1095] Date Range picker remains on screen remove md-data-picker (#2190)

* [ADF-1095] Date Range picker remains on screen

* created date widget component  with md datepicker.

* [ADF-1095] Date Range picker remains on screen.

* Changed mdl date picker to md date picker.
* Updated en.josn with new fields.
* Added md libraires to  spec files .

* [ADF-1095] Date Range picker remains on screen

* Removed old id's for start and end date inputs.

* remove md-date-time-picker

* use local MaterialModule in test

* [activiti-analytics] remove encapsulation and fix test

* remove from vendor md-date-time-picker
This commit is contained in:
Eugenio Romano
2017-08-14 13:59:22 +01:00
committed by Mario Romano
parent 6d30752386
commit 56e65cd652
44 changed files with 275 additions and 344 deletions

View File

@@ -26,7 +26,8 @@ import {
OnInit,
Output,
SimpleChanges,
ViewChild
ViewChild,
ViewEncapsulation
} from '@angular/core';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
import * as moment from 'moment';
@@ -45,7 +46,8 @@ declare let dialogPolyfill: any;
@Component({
selector: 'adf-analytics-report-parameters, analytics-report-parameters',
templateUrl: './analytics-report-parameters.component.html',
styleUrls: ['./analytics-report-parameters.component.css']
styleUrls: ['./analytics-report-parameters.component.css'],
encapsulation: ViewEncapsulation.None
})
export class AnalyticsReportParametersComponent implements OnInit, OnChanges, OnDestroy, AfterViewChecked, AfterContentChecked {