@coreui/angular-pro 5.5.6 → 5.5.8

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
@@ -1,6 +1,6 @@
1
1
  import { IsActiveMatchOptions, UrlTree, Router, NavigationEnd } from '@angular/router';
2
2
  import * as _angular_core from '@angular/core';
3
- import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, EventEmitter, WritableSignal, OnChanges, SimpleChanges, Renderer2, ComponentRef, Injector, NgModuleRef } from '@angular/core';
3
+ import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, EventEmitter, Renderer2, WritableSignal, ComponentRef, Injector, NgModuleRef } from '@angular/core';
4
4
  import { AnimationEvent } from '@angular/animations';
5
5
  import * as rxjs from 'rxjs';
6
6
  import { Observable, Subscription, BehaviorSubject } from 'rxjs';
@@ -2604,15 +2604,12 @@ declare class MultiSelectOptgroupLabelComponent {
2604
2604
  declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOption {
2605
2605
  #private;
2606
2606
  readonly elementRef: ElementRef<any>;
2607
- private readonly changeDetectorRef;
2608
- private readonly focusMonitor;
2609
- private readonly multiSelectService;
2610
2607
  /**
2611
2608
  * Option style
2612
- * @type ('checkbox' | 'text')
2609
+ * @return ('checkbox' | 'text')
2613
2610
  * @default 'checkbox'
2614
2611
  */
2615
- optionsStyle: 'checkbox' | 'text';
2612
+ readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
2616
2613
  /**
2617
2614
  * Option label
2618
2615
  * @type string
@@ -2647,9 +2644,9 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2647
2644
  get selected(): boolean | undefined;
2648
2645
  /**
2649
2646
  * Emits option selected change
2650
- * @type boolean
2647
+ * @return boolean
2651
2648
  */
2652
- readonly selectedChange: EventEmitter<boolean>;
2649
+ readonly selectedChange: _angular_core.OutputEmitterRef<boolean>;
2653
2650
  /**
2654
2651
  * Option value.
2655
2652
  * @type string | number
@@ -2657,29 +2654,19 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2657
2654
  */
2658
2655
  set value(value: string | number);
2659
2656
  get value(): string | number;
2660
- private contentDiv?;
2661
- hasContent: WritableSignal<boolean>;
2662
2657
  set active(value: boolean);
2663
2658
  get active(): boolean;
2664
- readonly focusChange: EventEmitter<MultiSelectOptionComponent>;
2665
- private get role();
2666
- get hostClasses(): {
2667
- [x: string]: boolean | undefined;
2668
- 'form-multi-select-option': boolean;
2669
- 'form-multi-selected': boolean | undefined;
2670
- disabled: boolean;
2671
- 'd-none': boolean;
2672
- active: boolean;
2673
- focused: boolean;
2674
- };
2675
- private get tabIndex();
2676
- private get ariaDisabled();
2677
- private get ariaSelected();
2678
- onKeyDown($event: KeyboardEvent): void;
2679
- onBlur(): void;
2680
- onFocus(): void;
2681
- onKeyUp($event: KeyboardEvent): void;
2682
- onClick($event: MouseEvent): void;
2659
+ readonly role: _angular_core.InputSignal<string>;
2660
+ readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
2661
+ readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
2662
+ protected get tabIndex(): 0 | -1;
2663
+ protected get ariaDisabled(): true | null;
2664
+ readonly ariaSelected: _angular_core.Signal<boolean>;
2665
+ protected onBlur(): void;
2666
+ protected onFocus(): void;
2667
+ protected onKeyDown($event: KeyboardEvent): void;
2668
+ protected onKeyUp($event: KeyboardEvent): void;
2669
+ protected onClick($event: MouseEvent): void;
2683
2670
  ngAfterViewInit(): void;
2684
2671
  /** Get the label for this element which is required by the FocusableOption interface. */
2685
2672
  getLabel(): string;
@@ -2687,7 +2674,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2687
2674
  private setSubscriptions;
2688
2675
  isSelected(value?: string | number): boolean;
2689
2676
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectOptionComponent, never>;
2690
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "optionsStyle": { "alias": "optionsStyle"; "required": false; }; "label": { "alias": "label"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; "active": { "alias": "active"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, { "selectedChange": "selectedChange"; "focusChange": "focusChange"; }, never, ["*"], true, never>;
2677
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "optionsStyle": { "alias": "optionsStyle"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; "active": { "alias": "active"; "required": false; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, { "selectedChange": "selectedChange"; "focusChange": "focusChange"; }, never, ["*"], true, never>;
2691
2678
  static ngAcceptInputType_visible: unknown;
2692
2679
  static ngAcceptInputType_disabled: unknown;
2693
2680
  static ngAcceptInputType_active: unknown;
@@ -5634,6 +5621,12 @@ declare class TableActiveDirective {
5634
5621
 
5635
5622
  declare class TableDirective {
5636
5623
  #private;
5624
+ static ngAcceptInputType_bordered: BooleanInput$1;
5625
+ static ngAcceptInputType_borderless: BooleanInput$1;
5626
+ static ngAcceptInputType_hover: BooleanInput$1;
5627
+ static ngAcceptInputType_small: BooleanInput$1;
5628
+ static ngAcceptInputType_striped: BooleanInput$1;
5629
+ static ngAcceptInputType_stripedColumns: BooleanInput$1;
5637
5630
  /**
5638
5631
  * Set the vertical alignment.
5639
5632
  * @return string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.5.6",
3
+ "version": "5.5.8",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
6
6
  "homepage": "https://coreui.io/angular",
@@ -28,8 +28,8 @@
28
28
  "@angular/core": "^20.1.0",
29
29
  "@angular/forms": "^20.1.0",
30
30
  "@angular/router": "^20.1.0",
31
- "@coreui/coreui-pro": "~5.16.0",
32
- "@coreui/icons-angular": "~5.5.6",
31
+ "@coreui/coreui-pro": "~5.18.0",
32
+ "@coreui/icons-angular": "~5.5.8",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {