@coreui/angular-pro 5.5.5 → 5.5.7
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/fesm2022/coreui-angular-pro.mjs +1086 -1119
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +37 -53
- package/package.json +3 -3
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,
|
|
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
|
-
* @
|
|
2609
|
+
* @return ('checkbox' | 'text')
|
|
2613
2610
|
* @default 'checkbox'
|
|
2614
2611
|
*/
|
|
2615
|
-
optionsStyle:
|
|
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
|
-
* @
|
|
2647
|
+
* @return boolean
|
|
2651
2648
|
*/
|
|
2652
|
-
readonly selectedChange:
|
|
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
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
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;
|
|
@@ -4477,22 +4464,20 @@ declare class SidebarNavComponent implements OnChanges {
|
|
|
4477
4464
|
}
|
|
4478
4465
|
|
|
4479
4466
|
declare class SidebarNavDividerComponent {
|
|
4480
|
-
item:
|
|
4467
|
+
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
4481
4468
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavDividerComponent, never>;
|
|
4482
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavDividerComponent, "c-sidebar-nav-divider", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
4469
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavDividerComponent, "c-sidebar-nav-divider", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4483
4470
|
}
|
|
4484
4471
|
|
|
4485
4472
|
declare class SidebarNavLinkContentComponent {
|
|
4486
4473
|
readonly helper: SidebarNavHelper;
|
|
4487
|
-
item
|
|
4474
|
+
readonly item: _angular_core.InputSignal<INavData>;
|
|
4488
4475
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavLinkContentComponent, never>;
|
|
4489
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
4476
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4490
4477
|
}
|
|
4491
4478
|
declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
|
|
4492
4479
|
readonly router: Router;
|
|
4493
|
-
|
|
4494
|
-
set item(item: INavData);
|
|
4495
|
-
get item(): INavData;
|
|
4480
|
+
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
4496
4481
|
readonly linkClick: _angular_core.OutputEmitterRef<void>;
|
|
4497
4482
|
linkType: string;
|
|
4498
4483
|
href: string;
|
|
@@ -4508,34 +4493,27 @@ declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
|
|
|
4508
4493
|
isExternalLink(): boolean;
|
|
4509
4494
|
linkClicked(): void;
|
|
4510
4495
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavLinkComponent, never>;
|
|
4511
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkComponent, "c-sidebar-nav-link", never, { "item": { "alias": "item"; "required": false; }; }, { "linkClick": "linkClick"; }, never, never, true, never>;
|
|
4496
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkComponent, "c-sidebar-nav-link", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, { "linkClick": "linkClick"; }, never, never, true, never>;
|
|
4512
4497
|
}
|
|
4513
4498
|
|
|
4514
|
-
declare class SidebarNavTitleComponent
|
|
4499
|
+
declare class SidebarNavTitleComponent {
|
|
4515
4500
|
#private;
|
|
4516
|
-
item:
|
|
4517
|
-
ngOnInit(): void;
|
|
4501
|
+
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
4518
4502
|
private addAttribs;
|
|
4519
4503
|
private setStyle;
|
|
4520
4504
|
private addClass;
|
|
4521
4505
|
private setAttrib;
|
|
4522
4506
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavTitleComponent, never>;
|
|
4523
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavTitleComponent, "c-sidebar-nav-title", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
4507
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavTitleComponent, "c-sidebar-nav-title", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4524
4508
|
}
|
|
4525
4509
|
|
|
4526
|
-
declare class SidebarNavLabelComponent
|
|
4510
|
+
declare class SidebarNavLabelComponent {
|
|
4527
4511
|
readonly helper: SidebarNavHelper;
|
|
4528
|
-
item:
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
ngOnInit(): void;
|
|
4532
|
-
getItemClass(): {
|
|
4533
|
-
'c-nav-label': boolean;
|
|
4534
|
-
'c-active': boolean;
|
|
4535
|
-
};
|
|
4536
|
-
getLabelIconClass(): {};
|
|
4512
|
+
readonly item: _angular_core.InputSignal<INavData>;
|
|
4513
|
+
readonly itemClass: _angular_core.Signal<Record<string, boolean>>;
|
|
4514
|
+
readonly labelIconClass: _angular_core.Signal<Record<string, boolean>>;
|
|
4537
4515
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavLabelComponent, never>;
|
|
4538
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLabelComponent, "c-sidebar-nav-label", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
|
|
4516
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLabelComponent, "c-sidebar-nav-label", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4539
4517
|
}
|
|
4540
4518
|
|
|
4541
4519
|
declare class SidebarNavIconPipe implements PipeTransform {
|
|
@@ -5643,6 +5621,12 @@ declare class TableActiveDirective {
|
|
|
5643
5621
|
|
|
5644
5622
|
declare class TableDirective {
|
|
5645
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;
|
|
5646
5630
|
/**
|
|
5647
5631
|
* Set the vertical alignment.
|
|
5648
5632
|
* @return string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.7",
|
|
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.
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
31
|
+
"@coreui/coreui-pro": "~5.18.0",
|
|
32
|
+
"@coreui/icons-angular": "~5.5.7",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|