@coreui/angular-pro 5.7.15 → 5.7.17
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.17",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/forms": "^22.1.0",
|
|
32
32
|
"@angular/router": "^22.1.0",
|
|
33
33
|
"@coreui/coreui-pro": "^5.27.0",
|
|
34
|
-
"@coreui/icons-angular": "~5.7.
|
|
34
|
+
"@coreui/icons-angular": "~5.7.16",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -1985,7 +1985,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1985
1985
|
endDate: Date | null;
|
|
1986
1986
|
} | null;
|
|
1987
1987
|
/**
|
|
1988
|
-
* Set length or format of day name.
|
|
1988
|
+
* Set the length or format of the day name.
|
|
1989
1989
|
* @return WeekdayFormatType
|
|
1990
1990
|
* @default 'short'
|
|
1991
1991
|
*/
|
|
@@ -6569,7 +6569,7 @@ interface ITimeValue {
|
|
|
6569
6569
|
disabled?: boolean;
|
|
6570
6570
|
}
|
|
6571
6571
|
|
|
6572
|
-
declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAccessor {
|
|
6572
|
+
declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, ControlValueAccessor {
|
|
6573
6573
|
#private;
|
|
6574
6574
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
6575
6575
|
static ngAcceptInputType_inputReadOnly: BooleanInput$1;
|
|
@@ -6633,7 +6633,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6633
6633
|
*/
|
|
6634
6634
|
readonly locale: _angular_core.InputSignal<string>;
|
|
6635
6635
|
/**
|
|
6636
|
-
* Specifies short hint visible in time input.
|
|
6636
|
+
* Specifies a short hint visible in time input.
|
|
6637
6637
|
* @return string
|
|
6638
6638
|
* @default 'Select time'
|
|
6639
6639
|
*/
|
|
@@ -6651,7 +6651,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6651
6651
|
*/
|
|
6652
6652
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
6653
6653
|
/**
|
|
6654
|
-
*
|
|
6654
|
+
* Initially selected time.
|
|
6655
6655
|
* @return Date | string | null | number
|
|
6656
6656
|
* @default undefined
|
|
6657
6657
|
*/
|
|
@@ -6682,7 +6682,9 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6682
6682
|
*/
|
|
6683
6683
|
readonly timeChange: _angular_core.OutputEmitterRef<Date | undefined>;
|
|
6684
6684
|
onBlur(): void;
|
|
6685
|
-
readonly
|
|
6685
|
+
protected readonly inputRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
6686
|
+
protected readonly dropdownRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
6687
|
+
protected readonly dropdownComponent: _angular_core.Signal<DropdownComponent | undefined>;
|
|
6686
6688
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
6687
6689
|
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
6688
6690
|
listOfHours: ITimeValue[];
|
|
@@ -6723,6 +6725,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6723
6725
|
clearTime(): void;
|
|
6724
6726
|
emitTime(time: Date | undefined): void;
|
|
6725
6727
|
ngOnInit(): void;
|
|
6728
|
+
ngAfterViewInit(): void;
|
|
6726
6729
|
ngOnChanges(changes: SimpleChanges): void;
|
|
6727
6730
|
setTimeLists(): void;
|
|
6728
6731
|
updateSelectTime(time?: Date | undefined): void;
|
|
@@ -6740,8 +6743,8 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6740
6743
|
setDisabledState(isDisabled: boolean): void;
|
|
6741
6744
|
handleTimeInputChange($event: any): void;
|
|
6742
6745
|
handleClear($event: MouseEvent): void;
|
|
6743
|
-
handleBlur($event
|
|
6744
|
-
handleFocus($event
|
|
6746
|
+
handleBlur($event?: FocusEvent): void;
|
|
6747
|
+
handleFocus($event?: FocusEvent): void;
|
|
6745
6748
|
setChangeHandlers(): void;
|
|
6746
6749
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimePickerComponent, never>;
|
|
6747
6750
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimePickerComponent, "c-time-picker", ["cTimePicker"], { "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "dateTimeFormatOptions": { "alias": "dateTimeFormatOptions"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "filterHours": { "alias": "filterHours"; "required": false; "isSignal": true; }; "filterMinutes": { "alias": "filterMinutes"; "required": false; "isSignal": true; }; "filterSeconds": { "alias": "filterSeconds"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "inputReadOnly": { "alias": "inputReadOnly"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "seconds": { "alias": "seconds"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "time": { "alias": "time"; "required": false; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "timeChange": "timeChange"; }, ["contentTemplates"], never, true, never>;
|