@corp-products/ui-components 3.5.0 → 3.5.2
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
|
@@ -289,8 +289,10 @@ declare class SelectComponent extends BaseInputComponent {
|
|
|
289
289
|
variant: 'in' | 'over' | 'on';
|
|
290
290
|
change: EventEmitter<any>;
|
|
291
291
|
defaultColor: string;
|
|
292
|
+
allSelectd: boolean;
|
|
292
293
|
constructor();
|
|
293
294
|
toggleAll(event: any): void;
|
|
295
|
+
onMultiSelectClear(): void;
|
|
294
296
|
onChange(e: SelectChangeEvent): void;
|
|
295
297
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
296
298
|
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "stc-select", never, { "selectedItemTemplate": { "alias": "selectedItemTemplate"; "required": false; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "checkmark": { "alias": "checkmark"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "filterBy": { "alias": "filterBy"; "required": false; }; "selectAllLabel": { "alias": "selectAllLabel"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selectedItemsLabel": { "alias": "selectedItemsLabel"; "required": false; }; "basicInput": { "alias": "basicInput"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "defaultColor": { "alias": "defaultColor"; "required": false; }; }, { "change": "change"; }, never, never, true, never>;
|
|
@@ -641,15 +643,18 @@ declare class DualCalendarComponent {
|
|
|
641
643
|
selectedDate: string;
|
|
642
644
|
control: FormControl<any>;
|
|
643
645
|
label: string;
|
|
646
|
+
name: string;
|
|
644
647
|
withTime: boolean;
|
|
645
648
|
mode: 'gregorian' | 'hijri';
|
|
646
649
|
gregorianModel: NgbDateStruct;
|
|
647
650
|
hijriModel: NgbDateStruct;
|
|
648
|
-
currentLang:
|
|
651
|
+
currentLang: i0.WritableSignal<"ar" | "en">;
|
|
649
652
|
gregorianUTC: EventEmitter<string>;
|
|
653
|
+
gregorianUTCValue: string;
|
|
650
654
|
isCalendarOpen: boolean;
|
|
651
655
|
calendarContainer: ElementRef;
|
|
652
656
|
hijriCal: NgbCalendarIslamicUmalqura;
|
|
657
|
+
constructor();
|
|
653
658
|
ngOnInit(): void;
|
|
654
659
|
setDate(value: string | null): void;
|
|
655
660
|
onDocumentClick(event: MouseEvent): void;
|
|
@@ -659,7 +664,7 @@ declare class DualCalendarComponent {
|
|
|
659
664
|
showCalender(isOpen: boolean): void;
|
|
660
665
|
formatHijri(h: NgbDate): string;
|
|
661
666
|
static ɵfac: i0.ɵɵFactoryDeclaration<DualCalendarComponent, never>;
|
|
662
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DualCalendarComponent, "app-dual-calendar", never, { "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "withTime": { "alias": "withTime"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; }, { "gregorianUTC": "gregorianUTC"; }, never, never, true, never>;
|
|
667
|
+
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; }; "currentLang": { "alias": "currentLang"; "required": false; }; }, { "gregorianUTC": "gregorianUTC"; }, never, never, true, never>;
|
|
663
668
|
}
|
|
664
669
|
|
|
665
670
|
declare const WEEKDAYS: {
|