@coreui/angular-pro 5.5.24 → 5.6.0
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/README.md +5 -5
- package/fesm2022/coreui-angular-pro.mjs +1550 -1727
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/package.json +11 -11
- package/{index.d.ts → types/coreui-angular-pro.d.ts} +56 -64
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/animations": "^
|
|
26
|
-
"@angular/cdk": "^
|
|
27
|
-
"@angular/common": "^
|
|
28
|
-
"@angular/core": "^
|
|
29
|
-
"@angular/forms": "^
|
|
30
|
-
"@angular/router": "^
|
|
31
|
-
"@coreui/coreui-pro": "^5.
|
|
32
|
-
"@coreui/icons-angular": "~5.
|
|
25
|
+
"@angular/animations": "^21.0.0",
|
|
26
|
+
"@angular/cdk": "^21.0.0",
|
|
27
|
+
"@angular/common": "^21.0.0",
|
|
28
|
+
"@angular/core": "^21.0.0",
|
|
29
|
+
"@angular/forms": "^21.0.0",
|
|
30
|
+
"@angular/router": "^21.0.0",
|
|
31
|
+
"@coreui/coreui-pro": "^5.22.0",
|
|
32
|
+
"@coreui/icons-angular": "~5.6.0",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"save": true
|
|
56
56
|
},
|
|
57
57
|
"module": "fesm2022/coreui-angular-pro.mjs",
|
|
58
|
-
"typings": "
|
|
58
|
+
"typings": "types/coreui-angular-pro.d.ts",
|
|
59
59
|
"exports": {
|
|
60
60
|
"./package.json": {
|
|
61
61
|
"default": "./package.json"
|
|
62
62
|
},
|
|
63
63
|
".": {
|
|
64
|
-
"types": "./
|
|
64
|
+
"types": "./types/coreui-angular-pro.d.ts",
|
|
65
65
|
"default": "./fesm2022/coreui-angular-pro.mjs"
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -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, WritableSignal, OnChanges, SimpleChanges, Renderer2,
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, WritableSignal, OnChanges, SimpleChanges, Renderer2, ComponentRef, Injector, NgModuleRef } from '@angular/core';
|
|
4
4
|
import * as _coreui_angular_pro from '@coreui/angular-pro';
|
|
5
5
|
import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
|
|
6
6
|
import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
|
|
@@ -648,8 +648,8 @@ declare class BackdropService {
|
|
|
648
648
|
readonly backdropClick$: rxjs.Observable<boolean>;
|
|
649
649
|
activeBackdrop: any;
|
|
650
650
|
scrollbarWidth: string;
|
|
651
|
-
setBackdrop(type?: string):
|
|
652
|
-
clearBackdrop(backdropElement:
|
|
651
|
+
setBackdrop(type?: string): HTMLDivElement;
|
|
652
|
+
clearBackdrop(backdropElement: HTMLElement): any;
|
|
653
653
|
hideScrollbar(): void;
|
|
654
654
|
resetScrollbar(): void;
|
|
655
655
|
onClickHandler(): void;
|
|
@@ -1171,7 +1171,6 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1171
1171
|
* @default 'days'
|
|
1172
1172
|
*/
|
|
1173
1173
|
readonly view: _angular_core.ModelSignal<"days" | "months" | "years">;
|
|
1174
|
-
readonly viewEffect: _angular_core.EffectRef;
|
|
1175
1174
|
/**
|
|
1176
1175
|
* Set length or format of day name.
|
|
1177
1176
|
* @type number | 'long' | 'narrow' | 'short'
|
|
@@ -2025,8 +2024,8 @@ interface IDropdownState {
|
|
|
2025
2024
|
dropdown?: any;
|
|
2026
2025
|
}
|
|
2027
2026
|
declare class DropdownService {
|
|
2028
|
-
private
|
|
2029
|
-
dropdownState$: rxjs.Observable<any>;
|
|
2027
|
+
#private;
|
|
2028
|
+
readonly dropdownState$: rxjs.Observable<any>;
|
|
2030
2029
|
toggle(state: IDropdownState): void;
|
|
2031
2030
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownService, never>;
|
|
2032
2031
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DropdownService>;
|
|
@@ -3263,7 +3262,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3263
3262
|
strategy?: _popperjs_core.PositioningStrategy | undefined;
|
|
3264
3263
|
onFirstUpdate?: (arg0: Partial<_popperjs_core.State>) => void;
|
|
3265
3264
|
}>;
|
|
3266
|
-
isDropdownVisible: boolean
|
|
3265
|
+
readonly isDropdownVisible: _angular_core.WritableSignal<boolean>;
|
|
3267
3266
|
get selectedOptions(): IOption[];
|
|
3268
3267
|
get selectedOptionsText(): string;
|
|
3269
3268
|
get counterText(): string;
|
|
@@ -3285,18 +3284,16 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3285
3284
|
dropdown: ElementRef;
|
|
3286
3285
|
dropdownToggle: ElementRef;
|
|
3287
3286
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
private get tabIndex();
|
|
3293
|
-
private set tabIndex(value);
|
|
3287
|
+
readonly multiselectClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3288
|
+
readonly multiselectSelectionClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3289
|
+
protected get tabIndex(): number | null;
|
|
3290
|
+
protected set tabIndex(value: number | null);
|
|
3294
3291
|
private _tabIndex;
|
|
3295
3292
|
onBlur(): void;
|
|
3296
3293
|
onKeyUp($event: KeyboardEvent): void;
|
|
3297
3294
|
onKeyDown($event: KeyboardEvent): void;
|
|
3298
3295
|
onClick($event: MouseEvent): void;
|
|
3299
|
-
visibleOptions: _angular_core.WritableSignal<boolean>;
|
|
3296
|
+
readonly visibleOptions: _angular_core.WritableSignal<boolean>;
|
|
3300
3297
|
get subtreeFocused(): boolean;
|
|
3301
3298
|
set subtreeFocused(focused: boolean);
|
|
3302
3299
|
private _subtreeFocused;
|
|
@@ -3900,6 +3897,8 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
|
|
|
3900
3897
|
protected readonly hostClasses: _angular_core.Signal<{
|
|
3901
3898
|
[x: string]: boolean;
|
|
3902
3899
|
'form-otp': boolean;
|
|
3900
|
+
'is-valid': boolean;
|
|
3901
|
+
'is-invalid': boolean;
|
|
3903
3902
|
}>;
|
|
3904
3903
|
protected readonly inputRefs: _angular_core.Signal<readonly OtpDirective[]>;
|
|
3905
3904
|
protected readonly inputCount: _angular_core.Signal<number>;
|
|
@@ -4603,8 +4602,8 @@ interface ISidebarAction {
|
|
|
4603
4602
|
id?: string;
|
|
4604
4603
|
}
|
|
4605
4604
|
declare class SidebarService {
|
|
4606
|
-
private
|
|
4607
|
-
sidebarState$: rxjs.Observable<ISidebarAction>;
|
|
4605
|
+
#private;
|
|
4606
|
+
readonly sidebarState$: rxjs.Observable<ISidebarAction>;
|
|
4608
4607
|
toggle(action: ISidebarAction): void;
|
|
4609
4608
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarService, never>;
|
|
4610
4609
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SidebarService>;
|
|
@@ -4813,18 +4812,21 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
|
|
|
4813
4812
|
#private;
|
|
4814
4813
|
readonly helper: SidebarNavHelper;
|
|
4815
4814
|
constructor();
|
|
4816
|
-
item:
|
|
4817
|
-
dropdownMode:
|
|
4818
|
-
show
|
|
4819
|
-
compact
|
|
4820
|
-
|
|
4821
|
-
|
|
4815
|
+
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
4816
|
+
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
4817
|
+
readonly show: _angular_core.InputSignal<boolean | undefined>;
|
|
4818
|
+
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
4819
|
+
readonly hostClasses: _angular_core.Signal<{
|
|
4820
|
+
'nav-group': boolean;
|
|
4821
|
+
show: boolean | undefined;
|
|
4822
|
+
}>;
|
|
4823
|
+
readonly sidebarNav: _angular_core.Signal<ElementRef<any>>;
|
|
4822
4824
|
navigationEndObservable: Observable<NavigationEnd>;
|
|
4823
4825
|
navSubscription: Subscription;
|
|
4824
4826
|
navGroupSubscription: Subscription;
|
|
4825
|
-
open: boolean
|
|
4826
|
-
navItems: INavData[]
|
|
4827
|
-
display: any
|
|
4827
|
+
readonly open: _angular_core.WritableSignal<boolean | undefined>;
|
|
4828
|
+
readonly navItems: _angular_core.WritableSignal<INavData[]>;
|
|
4829
|
+
readonly display: _angular_core.WritableSignal<any>;
|
|
4828
4830
|
ngOnInit(): void;
|
|
4829
4831
|
samePath(url: string): boolean;
|
|
4830
4832
|
openGroup(open: boolean): void;
|
|
@@ -4833,27 +4835,28 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
|
|
|
4833
4835
|
onAnimationStart($event: AnimationEvent): void;
|
|
4834
4836
|
onAnimationDone($event: AnimationEvent): void;
|
|
4835
4837
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavGroupComponent, never>;
|
|
4836
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavGroupComponent, "c-sidebar-nav-group", never, { "item": { "alias": "item"; "required": false; }; "dropdownMode": { "alias": "dropdownMode"; "required": false; }; "show": { "alias": "show"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4837
|
-
static ngAcceptInputType_compact: unknown;
|
|
4838
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavGroupComponent, "c-sidebar-nav-group", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "dropdownMode": { "alias": "dropdownMode"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4838
4839
|
}
|
|
4839
4840
|
declare class SidebarNavComponent implements OnChanges {
|
|
4840
4841
|
#private;
|
|
4841
4842
|
readonly sidebar: SidebarComponent | null;
|
|
4842
4843
|
readonly helper: SidebarNavHelper;
|
|
4843
4844
|
readonly router: Router;
|
|
4844
|
-
navItems
|
|
4845
|
-
dropdownMode:
|
|
4846
|
-
groupItems
|
|
4847
|
-
compact
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4845
|
+
readonly navItems: _angular_core.InputSignal<INavData[] | undefined>;
|
|
4846
|
+
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
4847
|
+
readonly groupItems: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
4848
|
+
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
4849
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
4850
|
+
readonly hostClasses: _angular_core.Signal<{
|
|
4851
|
+
'sidebar-nav': boolean;
|
|
4852
|
+
'nav-group-items': boolean | undefined;
|
|
4853
|
+
compact: boolean | undefined;
|
|
4854
|
+
}>;
|
|
4855
|
+
readonly navItemsArray: _angular_core.WritableSignal<INavData[]>;
|
|
4851
4856
|
ngOnChanges(changes: SimpleChanges): void;
|
|
4852
4857
|
hideMobile(): void;
|
|
4853
4858
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavComponent, never>;
|
|
4854
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavComponent, "c-sidebar-nav", never, { "navItems": { "alias": "navItems"; "required": false; }; "dropdownMode": { "alias": "dropdownMode"; "required": false; }; "groupItems": { "alias": "groupItems"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
4855
|
-
static ngAcceptInputType_groupItems: unknown;
|
|
4856
|
-
static ngAcceptInputType_compact: unknown;
|
|
4859
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavComponent, "c-sidebar-nav", never, { "navItems": { "alias": "navItems"; "required": false; "isSignal": true; }; "dropdownMode": { "alias": "dropdownMode"; "required": false; "isSignal": true; }; "groupItems": { "alias": "groupItems"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
4857
4860
|
}
|
|
4858
4861
|
|
|
4859
4862
|
declare class SidebarNavDividerComponent {
|
|
@@ -5047,17 +5050,13 @@ declare class SmartPaginationModule {
|
|
|
5047
5050
|
|
|
5048
5051
|
declare class SmartTableFilterComponent {
|
|
5049
5052
|
#private;
|
|
5050
|
-
readonly value
|
|
5051
|
-
filterLabel: string
|
|
5052
|
-
filterPlaceholder: string
|
|
5053
|
-
sizing
|
|
5054
|
-
|
|
5055
|
-
get labelClasses(): {
|
|
5056
|
-
[x: string]: boolean;
|
|
5057
|
-
'col-form-label': boolean;
|
|
5058
|
-
};
|
|
5053
|
+
readonly value: _angular_core.WritableSignal<string>;
|
|
5054
|
+
readonly filterLabel: _angular_core.InputSignal<string>;
|
|
5055
|
+
readonly filterPlaceholder: _angular_core.InputSignal<string>;
|
|
5056
|
+
readonly sizing: _angular_core.InputSignal<"sm" | "lg" | undefined>;
|
|
5057
|
+
readonly labelClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
5059
5058
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SmartTableFilterComponent, never>;
|
|
5060
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SmartTableFilterComponent, "c-smart-table-filter", never, { "filterLabel": { "alias": "filterLabel"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "sizing": { "alias": "sizing"; "required": false; }; }, {}, never, never, true, never>;
|
|
5059
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SmartTableFilterComponent, "c-smart-table-filter", never, { "filterLabel": { "alias": "filterLabel"; "required": false; "isSignal": true; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5061
5060
|
}
|
|
5062
5061
|
|
|
5063
5062
|
interface ITable {
|
|
@@ -5518,15 +5517,15 @@ declare class SmartTableComponent implements ISmartTable, AfterContentInit, OnCh
|
|
|
5518
5517
|
tableFootProps?: ITableSectionProps;
|
|
5519
5518
|
tableHeadProps?: ITableSectionProps;
|
|
5520
5519
|
tableProps?: ITable;
|
|
5521
|
-
readonly selectedItemsChange:
|
|
5522
|
-
readonly sorterValueChange:
|
|
5523
|
-
readonly activePageChange:
|
|
5524
|
-
readonly itemsPerPageChange:
|
|
5525
|
-
readonly rowClick:
|
|
5526
|
-
readonly columnFilterValueChange:
|
|
5527
|
-
readonly filteredItemsChange:
|
|
5528
|
-
readonly tableFilterValueChange:
|
|
5529
|
-
readonly cleanerClick:
|
|
5520
|
+
readonly selectedItemsChange: _angular_core.OutputEmitterRef<IItem[]>;
|
|
5521
|
+
readonly sorterValueChange: _angular_core.OutputEmitterRef<ISorterValue>;
|
|
5522
|
+
readonly activePageChange: _angular_core.OutputEmitterRef<number>;
|
|
5523
|
+
readonly itemsPerPageChange: _angular_core.OutputEmitterRef<number>;
|
|
5524
|
+
readonly rowClick: _angular_core.OutputEmitterRef<any>;
|
|
5525
|
+
readonly columnFilterValueChange: _angular_core.OutputEmitterRef<IColumnFilterValue>;
|
|
5526
|
+
readonly filteredItemsChange: _angular_core.OutputEmitterRef<IItemInternal[]>;
|
|
5527
|
+
readonly tableFilterValueChange: _angular_core.OutputEmitterRef<string>;
|
|
5528
|
+
readonly cleanerClick: _angular_core.OutputEmitterRef<void>;
|
|
5530
5529
|
columnTemplates: QueryList<TemplateIdDirective>;
|
|
5531
5530
|
templates: {
|
|
5532
5531
|
[key: string]: TemplateRef<any> | null;
|
|
@@ -6425,14 +6424,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6425
6424
|
set timeInputValue(value: string);
|
|
6426
6425
|
get timeInputValue(): string;
|
|
6427
6426
|
private _timeInputValue;
|
|
6428
|
-
readonly timePickerClasses: _angular_core.Signal<
|
|
6429
|
-
[x: string]: boolean;
|
|
6430
|
-
'time-picker': boolean;
|
|
6431
|
-
'form-control': boolean;
|
|
6432
|
-
'is-valid': boolean;
|
|
6433
|
-
'is-invalid': boolean;
|
|
6434
|
-
disabled: boolean;
|
|
6435
|
-
}>;
|
|
6427
|
+
readonly timePickerClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
6436
6428
|
readonly selectTime: FormGroup<{
|
|
6437
6429
|
selectHours: FormControl<number | null>;
|
|
6438
6430
|
selectMinutes: FormControl<number | null>;
|