@corp-products/ui-components 3.9.6 → 3.9.7
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, 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';
|
|
@@ -684,6 +684,7 @@ declare class DynamicSidebarV2Service {
|
|
|
684
684
|
}
|
|
685
685
|
|
|
686
686
|
declare class DualCalendarComponent {
|
|
687
|
+
calendarWrapper: ElementRef;
|
|
687
688
|
selectedDate: string;
|
|
688
689
|
control: FormControl<any>;
|
|
689
690
|
label: string;
|
|
@@ -700,8 +701,11 @@ declare class DualCalendarComponent {
|
|
|
700
701
|
isShown: boolean;
|
|
701
702
|
calendarContainer: ElementRef;
|
|
702
703
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
704
|
+
renderer: Renderer2;
|
|
703
705
|
constructor();
|
|
704
706
|
ngOnInit(): void;
|
|
707
|
+
ngAfterViewInit(): void;
|
|
708
|
+
moveElementToBody(): void;
|
|
705
709
|
setDate(value: string | null): void;
|
|
706
710
|
onDocumentClick(event: MouseEvent): void;
|
|
707
711
|
private structToNgbDate;
|