@corp-products/ui-components 3.9.7 → 3.9.9
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, Renderer2 } 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,7 @@ 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
687
|
calendarWrapper: ElementRef;
|
|
688
688
|
selectedDate: string;
|
|
689
689
|
control: FormControl<any>;
|
|
@@ -703,9 +703,12 @@ declare class DualCalendarComponent {
|
|
|
703
703
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
704
704
|
renderer: Renderer2;
|
|
705
705
|
constructor();
|
|
706
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
706
707
|
ngOnInit(): void;
|
|
707
708
|
ngAfterViewInit(): void;
|
|
708
709
|
moveElementToBody(): void;
|
|
710
|
+
wrapperVisible(): void;
|
|
711
|
+
wrapperHidden(): void;
|
|
709
712
|
setDate(value: string | null): void;
|
|
710
713
|
onDocumentClick(event: MouseEvent): void;
|
|
711
714
|
private structToNgbDate;
|