@lesterarte/sefin-ui 0.0.14 → 0.0.15-dev.1
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/package.json
CHANGED
|
@@ -1102,6 +1102,7 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
1102
1102
|
isExiting: boolean;
|
|
1103
1103
|
isPaused: boolean;
|
|
1104
1104
|
private dismissTimeout?;
|
|
1105
|
+
private exitAnimationTimeout?;
|
|
1105
1106
|
private remainingTime;
|
|
1106
1107
|
private startTime;
|
|
1107
1108
|
constructor(cdr: ChangeDetectorRef);
|
|
@@ -1109,6 +1110,7 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
1109
1110
|
ngOnDestroy(): void;
|
|
1110
1111
|
private startTimer;
|
|
1111
1112
|
private clearTimer;
|
|
1113
|
+
private clearExitAnimation;
|
|
1112
1114
|
pauseTimer(): void;
|
|
1113
1115
|
resumeTimer(): void;
|
|
1114
1116
|
dismiss(): void;
|
|
@@ -1249,7 +1251,7 @@ interface DateRange {
|
|
|
1249
1251
|
start: Date | null;
|
|
1250
1252
|
end: Date | null;
|
|
1251
1253
|
}
|
|
1252
|
-
declare class DatepickerComponent implements OnInit, OnChanges, AfterViewInit {
|
|
1254
|
+
declare class DatepickerComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
|
|
1253
1255
|
private cdr;
|
|
1254
1256
|
private ngZone;
|
|
1255
1257
|
containerRef?: ElementRef<HTMLDivElement>;
|
|
@@ -1280,13 +1282,16 @@ declare class DatepickerComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
1280
1282
|
constructor(cdr: ChangeDetectorRef, ngZone: NgZone);
|
|
1281
1283
|
ngOnInit(): void;
|
|
1282
1284
|
ngAfterViewInit(): void;
|
|
1285
|
+
ngOnDestroy(): void;
|
|
1283
1286
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1284
1287
|
private justOpened;
|
|
1285
1288
|
private isSelectingDate;
|
|
1289
|
+
private openingTimeout?;
|
|
1286
1290
|
onClickOutside(event: MouseEvent): void;
|
|
1287
1291
|
onKeyDown(event: KeyboardEvent): void;
|
|
1288
1292
|
private initializeDates;
|
|
1289
1293
|
toggleCalendar(): void;
|
|
1294
|
+
openCalendar(): void;
|
|
1290
1295
|
closeCalendar(): void;
|
|
1291
1296
|
toggleViewMode(event?: MouseEvent): void;
|
|
1292
1297
|
getYears(): number[];
|
|
@@ -1303,6 +1308,8 @@ declare class DatepickerComponent implements OnInit, OnChanges, AfterViewInit {
|
|
|
1303
1308
|
isToday(date: Date): boolean;
|
|
1304
1309
|
isSelected(date: Date): boolean;
|
|
1305
1310
|
isInRange(date: Date): boolean;
|
|
1311
|
+
isRangeStart(date: Date): boolean;
|
|
1312
|
+
isRangeEnd(date: Date): boolean;
|
|
1306
1313
|
isDisabled(date: Date): boolean;
|
|
1307
1314
|
onDayMouseDown(day: Date, event: MouseEvent): void;
|
|
1308
1315
|
selectDate(date: Date, event?: MouseEvent): void;
|