@corp-products/ui-components 3.9.9 → 4.1.0
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
|
@@ -683,7 +683,7 @@ declare class DynamicSidebarV2Service {
|
|
|
683
683
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicSidebarV2Service>;
|
|
684
684
|
}
|
|
685
685
|
|
|
686
|
-
declare class DualCalendarComponent implements OnInit, OnChanges {
|
|
686
|
+
declare class DualCalendarComponent implements OnInit, OnChanges, OnDestroy {
|
|
687
687
|
calendarWrapper: ElementRef;
|
|
688
688
|
selectedDate: string;
|
|
689
689
|
control: FormControl<any>;
|
|
@@ -699,6 +699,7 @@ declare class DualCalendarComponent implements OnInit, OnChanges {
|
|
|
699
699
|
onClose: EventEmitter<boolean>;
|
|
700
700
|
gregorianUTCValue: string;
|
|
701
701
|
isShown: boolean;
|
|
702
|
+
appedToBody: boolean;
|
|
702
703
|
calendarContainer: ElementRef;
|
|
703
704
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
704
705
|
renderer: Renderer2;
|
|
@@ -716,8 +717,9 @@ declare class DualCalendarComponent implements OnInit, OnChanges {
|
|
|
716
717
|
onSelectHijri(date: NgbDateStruct): void;
|
|
717
718
|
showCalender(isOpen: boolean): void;
|
|
718
719
|
formatHijri(h: NgbDate): string;
|
|
720
|
+
ngOnDestroy(): void;
|
|
719
721
|
static ɵfac: i0.ɵɵFactoryDeclaration<DualCalendarComponent, never>;
|
|
720
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DualCalendarComponent, "app-dual-calendar", never, { "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "withTime": { "alias": "withTime"; "required": false; }; "isDatePickerShow": { "alias": "isDatePickerShow"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "isShown": { "alias": "isShown"; "required": false; }; }, { "gregorianUTC": "gregorianUTC"; "onClose": "onClose"; }, never, never, true, never>;
|
|
722
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DualCalendarComponent, "app-dual-calendar", never, { "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "withTime": { "alias": "withTime"; "required": false; }; "isDatePickerShow": { "alias": "isDatePickerShow"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "isShown": { "alias": "isShown"; "required": false; }; "appedToBody": { "alias": "appedToBody"; "required": false; }; }, { "gregorianUTC": "gregorianUTC"; "onClose": "onClose"; }, never, never, true, never>;
|
|
721
723
|
}
|
|
722
724
|
|
|
723
725
|
declare const WEEKDAYS: {
|