@coreui/angular-pro 5.6.1 → 5.6.3

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.1",
3
+ "version": "5.6.3",
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.1",
32
+ "@coreui/icons-angular": "~5.6.2",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {
@@ -2963,24 +2963,18 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2963
2963
  static ngAcceptInputType_active: unknown;
2964
2964
  }
2965
2965
 
2966
- declare class MultiSelectOptgroupComponent implements AfterContentInit, OnChanges {
2966
+ declare class MultiSelectOptgroupComponent implements AfterContentInit {
2967
2967
  #private;
2968
- private readonly multiSelectService;
2968
+ static ngAcceptInputType_disabled: BooleanInput$1;
2969
+ readonly label: _angular_core.InputSignal<string | undefined>;
2970
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2969
2971
  readonly visible: _angular_core.WritableSignal<boolean>;
2970
- label?: string;
2971
- disabled: boolean;
2972
- multiSelectOptions: QueryList<MultiSelectOptionComponent>;
2973
- get hostClasses(): {
2974
- 'form-multi-select-options': boolean;
2975
- 'd-none': boolean;
2976
- };
2972
+ readonly multiSelectOptions: _angular_core.Signal<readonly MultiSelectOptionComponent[]>;
2973
+ readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
2977
2974
  ngAfterContentInit(): void;
2978
- ngOnChanges(changes: SimpleChanges): void;
2979
- private updateMultiSelectOptions;
2980
2975
  private watchOptGroupContent;
2981
2976
  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;
2977
+ 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
2978
  }
2985
2979
 
2986
2980
  type SearchFn = (option: IOption, searchValue: string) => boolean;
@@ -3054,7 +3048,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3054
3048
  private readonly differ;
3055
3049
  readonly userOptionsArray$: BehaviorSubject<IOption[]>;
3056
3050
  readonly optionTags: _angular_core.WritableSignal<IOption[]>;
3057
- readonly optionsSelected: Map<any, IOption>;
3051
+ readonly optionsSelected: _angular_core.WritableSignal<Map<any, IOption>>;
3058
3052
  readonly value$: BehaviorSubject<TValue[]>;
3059
3053
  onChange: (value: any) => void;
3060
3054
  onTouched: () => void;
@@ -3263,11 +3257,11 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3263
3257
  onFirstUpdate?: (arg0: Partial<_popperjs_core.State>) => void;
3264
3258
  }>;
3265
3259
  readonly isDropdownVisible: _angular_core.WritableSignal<boolean>;
3266
- get selectedOptions(): IOption[];
3260
+ readonly selectedOptions: _angular_core.Signal<IOption[]>;
3267
3261
  get selectedOptionsText(): string;
3268
- get counterText(): string;
3269
- get counterTextType(): string;
3270
- get counterPlaceholderText(): string | null;
3262
+ readonly counterText: _angular_core.Signal<string>;
3263
+ readonly counterTextType: _angular_core.Signal<"string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function">;
3264
+ readonly counterPlaceholderText: _angular_core.Signal<string | null>;
3271
3265
  private focusMonitorSubscription;
3272
3266
  multiSelectOptionsContent: QueryList<MultiSelectOptionComponent>;
3273
3267
  multiSelectOptionsView: QueryList<MultiSelectOptionComponent>;
@@ -6298,7 +6292,7 @@ interface ITimeValue {
6298
6292
  disabled?: boolean;
6299
6293
  }
6300
6294
 
6301
- declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAccessor, AfterViewInit {
6295
+ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAccessor {
6302
6296
  #private;
6303
6297
  static ngAcceptInputType_disabled: BooleanInput$1;
6304
6298
  static ngAcceptInputType_inputReadOnly: BooleanInput$1;
@@ -6408,9 +6402,9 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
6408
6402
  readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
6409
6403
  readonly timeChange: _angular_core.OutputEmitterRef<Date | undefined>;
6410
6404
  onBlur(): void;
6411
- dropdownRef: ElementRef;
6412
- templates: any;
6413
- contentTemplates: QueryList<TemplateIdDirective>;
6405
+ readonly dropdownRef: _angular_core.Signal<ElementRef<any> | undefined>;
6406
+ readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
6407
+ readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
6414
6408
  listOfHours: ITimeValue[];
6415
6409
  listOfHours12: ITimeValue[];
6416
6410
  listOfMinutes: ITimeValue[];
@@ -6449,7 +6443,6 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
6449
6443
  emitTime(time: Date | undefined): void;
6450
6444
  ngOnInit(): void;
6451
6445
  ngOnChanges(changes: SimpleChanges): void;
6452
- ngAfterViewInit(): void;
6453
6446
  setTimeLists(): void;
6454
6447
  updateSelectTime(time?: Date | undefined): void;
6455
6448
  closestTime(timeArray: ITimeValue[], timeSegment: number): ITimeValue;