@datarailsshared/datarailsshared 1.5.285 → 1.5.286
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/datarailsshared-datarailsshared-1.5.286.tgz +0 -0
- package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.mjs +12 -2
- package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.mjs +7 -2
- package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.mjs +3 -2
- package/fesm2022/datarailsshared-datarailsshared.mjs +19 -3
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.d.ts +3 -2
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.5.285.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { DrDatePickerComponent } from '../dr-date-picker/dr-date-picker.component';
|
|
3
3
|
import { DateAdapter } from '@angular/material/core';
|
|
4
4
|
import { DrDatePickerService } from '../services/dr-date-picker.service';
|
|
@@ -6,7 +6,7 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
6
6
|
import { DateTags, IDatePickerFormatConfig, TimeframeOption } from '../../../models/datePicker';
|
|
7
7
|
import { Moment } from 'moment';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class DrDatePickerWithTimeframeComponent extends DrDatePickerComponent implements ControlValueAccessor, AfterViewInit, OnDestroy, OnInit {
|
|
9
|
+
export declare class DrDatePickerWithTimeframeComponent extends DrDatePickerComponent implements ControlValueAccessor, AfterViewInit, OnDestroy, OnInit, OnChanges {
|
|
10
10
|
protected cdr: ChangeDetectorRef;
|
|
11
11
|
protected dateAdapter: DateAdapter<any>;
|
|
12
12
|
datePickerService: DrDatePickerService;
|
|
@@ -30,6 +30,7 @@ export declare class DrDatePickerWithTimeframeComponent extends DrDatePickerComp
|
|
|
30
30
|
private onChangeDebounced$;
|
|
31
31
|
constructor(cdr: ChangeDetectorRef, dateAdapter: DateAdapter<any>, datePickerService: DrDatePickerService);
|
|
32
32
|
ngOnInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
33
34
|
pagingClicked(forward: boolean): void;
|
|
34
35
|
pagingDateChange(newValue: Moment): void;
|
|
35
36
|
/**
|
package/package.json
CHANGED
|
Binary file
|