@corp-products/ui-components 3.9.6 → 3.9.8
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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Button } from 'primeng/button';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { TemplateRef, OnInit, EventEmitter, PipeTransform, OnDestroy, SimpleChanges, Type, EnvironmentInjector, ApplicationRef, ViewContainerRef, ElementRef } from '@angular/core';
|
|
3
|
+
import { TemplateRef, OnInit, EventEmitter, PipeTransform, OnDestroy, SimpleChanges, Type, EnvironmentInjector, ApplicationRef, ViewContainerRef, OnChanges, ElementRef, Renderer2 } from '@angular/core';
|
|
4
4
|
import { Params, Router, ActivatedRoute } from '@angular/router';
|
|
5
5
|
import { DynamicDialogRef, DialogService, DynamicDialogConfig } from 'primeng/dynamicdialog';
|
|
6
6
|
import { FormGroup, FormControl, ValidationErrors, AbstractControl, ValidatorFn } from '@angular/forms';
|
|
@@ -683,7 +683,8 @@ declare class DynamicSidebarV2Service {
|
|
|
683
683
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicSidebarV2Service>;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
-
declare class DualCalendarComponent {
|
|
686
|
+
declare class DualCalendarComponent implements OnInit, OnChanges {
|
|
687
|
+
calendarWrapper: ElementRef;
|
|
687
688
|
selectedDate: string;
|
|
688
689
|
control: FormControl<any>;
|
|
689
690
|
label: string;
|
|
@@ -700,8 +701,13 @@ declare class DualCalendarComponent {
|
|
|
700
701
|
isShown: boolean;
|
|
701
702
|
calendarContainer: ElementRef;
|
|
702
703
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
704
|
+
renderer: Renderer2;
|
|
703
705
|
constructor();
|
|
706
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
704
707
|
ngOnInit(): void;
|
|
708
|
+
ngAfterViewInit(): void;
|
|
709
|
+
moveElementToBody(): void;
|
|
710
|
+
removeFromBody(): void;
|
|
705
711
|
setDate(value: string | null): void;
|
|
706
712
|
onDocumentClick(event: MouseEvent): void;
|
|
707
713
|
private structToNgbDate;
|