@coreui/angular-pro 5.6.1 → 5.6.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.2",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^21.0.0",
|
|
30
30
|
"@angular/router": "^21.0.0",
|
|
31
31
|
"@coreui/coreui-pro": "^5.22.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.6.
|
|
32
|
+
"@coreui/icons-angular": "~5.6.2",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
@@ -2963,24 +2963,17 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
2963
2963
|
static ngAcceptInputType_active: unknown;
|
|
2964
2964
|
}
|
|
2965
2965
|
|
|
2966
|
-
declare class MultiSelectOptgroupComponent implements AfterContentInit
|
|
2966
|
+
declare class MultiSelectOptgroupComponent implements AfterContentInit {
|
|
2967
2967
|
#private;
|
|
2968
|
-
|
|
2968
|
+
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
2969
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2969
2970
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
multiSelectOptions: QueryList<MultiSelectOptionComponent>;
|
|
2973
|
-
get hostClasses(): {
|
|
2974
|
-
'form-multi-select-options': boolean;
|
|
2975
|
-
'd-none': boolean;
|
|
2976
|
-
};
|
|
2971
|
+
readonly multiSelectOptions: _angular_core.Signal<readonly MultiSelectOptionComponent[]>;
|
|
2972
|
+
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2977
2973
|
ngAfterContentInit(): void;
|
|
2978
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
2979
|
-
private updateMultiSelectOptions;
|
|
2980
2974
|
private watchOptGroupContent;
|
|
2981
2975
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectOptgroupComponent, never>;
|
|
2982
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptgroupComponent, "c-multi-select-optgroup", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["multiSelectOptions"], ["*"], true, never>;
|
|
2983
|
-
static ngAcceptInputType_disabled: unknown;
|
|
2976
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptgroupComponent, "c-multi-select-optgroup", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, ["multiSelectOptions"], ["*"], true, never>;
|
|
2984
2977
|
}
|
|
2985
2978
|
|
|
2986
2979
|
type SearchFn = (option: IOption, searchValue: string) => boolean;
|
|
@@ -6298,7 +6291,7 @@ interface ITimeValue {
|
|
|
6298
6291
|
disabled?: boolean;
|
|
6299
6292
|
}
|
|
6300
6293
|
|
|
6301
|
-
declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAccessor
|
|
6294
|
+
declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAccessor {
|
|
6302
6295
|
#private;
|
|
6303
6296
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
6304
6297
|
static ngAcceptInputType_inputReadOnly: BooleanInput$1;
|
|
@@ -6408,9 +6401,9 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6408
6401
|
readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6409
6402
|
readonly timeChange: _angular_core.OutputEmitterRef<Date | undefined>;
|
|
6410
6403
|
onBlur(): void;
|
|
6411
|
-
dropdownRef: ElementRef
|
|
6412
|
-
|
|
6413
|
-
|
|
6404
|
+
readonly dropdownRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
6405
|
+
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
6406
|
+
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
6414
6407
|
listOfHours: ITimeValue[];
|
|
6415
6408
|
listOfHours12: ITimeValue[];
|
|
6416
6409
|
listOfMinutes: ITimeValue[];
|
|
@@ -6449,7 +6442,6 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6449
6442
|
emitTime(time: Date | undefined): void;
|
|
6450
6443
|
ngOnInit(): void;
|
|
6451
6444
|
ngOnChanges(changes: SimpleChanges): void;
|
|
6452
|
-
ngAfterViewInit(): void;
|
|
6453
6445
|
setTimeLists(): void;
|
|
6454
6446
|
updateSelectTime(time?: Date | undefined): void;
|
|
6455
6447
|
closestTime(timeArray: ITimeValue[], timeSegment: number): ITimeValue;
|