@coreui/angular-pro 5.5.3 → 5.5.5
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 +1 -1
- package/fesm2022/coreui-angular-pro.mjs +1888 -1912
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +31 -33
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -386,6 +386,7 @@ interface IBreadcrumbItem {
|
|
|
386
386
|
}
|
|
387
387
|
|
|
388
388
|
declare class BreadcrumbItemComponent {
|
|
389
|
+
#private;
|
|
389
390
|
/**
|
|
390
391
|
* Toggle the active state for the component. [docs]
|
|
391
392
|
* @return boolean
|
|
@@ -393,23 +394,24 @@ declare class BreadcrumbItemComponent {
|
|
|
393
394
|
readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
394
395
|
/**
|
|
395
396
|
* The `url` prop for the inner `[routerLink]` directive. [docs]
|
|
396
|
-
* @
|
|
397
|
+
* @return string
|
|
397
398
|
*/
|
|
398
399
|
readonly url: _angular_core.InputSignal<string | any[] | undefined>;
|
|
399
400
|
/**
|
|
400
401
|
* Additional html attributes for link. [docs]
|
|
401
|
-
* @
|
|
402
|
+
* @return INavAttributes
|
|
402
403
|
*/
|
|
403
|
-
readonly
|
|
404
|
+
readonly attribs: _angular_core.InputSignal<INavAttributes$1 | undefined>;
|
|
405
|
+
protected readonly _attributes: _angular_core.InputSignal<INavAttributes$1 | undefined>;
|
|
404
406
|
/**
|
|
405
407
|
* Some `NavigationExtras` props for the inner `[routerLink]` directive and `routerLinkActiveOptions`. [docs]
|
|
406
|
-
* @
|
|
408
|
+
* @return INavLinkProps
|
|
407
409
|
*/
|
|
408
410
|
readonly linkProps: _angular_core.InputSignal<INavLinkProps$1 | undefined>;
|
|
409
411
|
readonly ariaCurrent: _angular_core.Signal<string | null>;
|
|
410
412
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
411
413
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
|
|
412
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbItemComponent, "c-breadcrumb-item", ["breadcrumbItem"], { "active": { "alias": "active"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "
|
|
414
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbItemComponent, "c-breadcrumb-item", ["breadcrumbItem"], { "active": { "alias": "active"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "attribs": { "alias": "attribs"; "required": false; "isSignal": true; }; "_attributes": { "alias": "attributes"; "required": false; "isSignal": true; }; "linkProps": { "alias": "linkProps"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
413
415
|
}
|
|
414
416
|
|
|
415
417
|
declare class BreadcrumbComponent {
|
|
@@ -429,30 +431,27 @@ declare class BreadcrumbComponent {
|
|
|
429
431
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbComponent, "c-breadcrumb", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
430
432
|
}
|
|
431
433
|
|
|
432
|
-
declare class
|
|
434
|
+
declare class BreadcrumbRouterComponent {
|
|
433
435
|
#private;
|
|
434
|
-
outlet: string;
|
|
435
|
-
readonly breadcrumbs$: Observable<IBreadcrumbItem[]>;
|
|
436
|
-
constructor();
|
|
437
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbRouterService, never>;
|
|
438
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BreadcrumbRouterService>;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
declare class BreadcrumbRouterComponent implements OnDestroy, OnInit {
|
|
442
|
-
readonly service: BreadcrumbRouterService;
|
|
443
436
|
/**
|
|
444
437
|
* Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior. [docs]
|
|
445
438
|
* @return IBreadcrumbItem[]
|
|
446
439
|
*/
|
|
447
440
|
readonly items: _angular_core.InputSignal<IBreadcrumbItem[] | undefined>;
|
|
448
|
-
breadcrumbs:
|
|
449
|
-
ngOnInit(): void;
|
|
450
|
-
readonly setup: _angular_core.EffectRef;
|
|
451
|
-
ngOnDestroy(): void;
|
|
441
|
+
readonly breadcrumbs: _angular_core.Signal<IBreadcrumbItem[]>;
|
|
452
442
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbRouterComponent, never>;
|
|
453
443
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbRouterComponent, "c-breadcrumb-router, [cBreadcrumbRouter]", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
454
444
|
}
|
|
455
445
|
|
|
446
|
+
declare class BreadcrumbRouterService {
|
|
447
|
+
#private;
|
|
448
|
+
outlet: string;
|
|
449
|
+
readonly breadcrumbs$: Observable<IBreadcrumbItem[]>;
|
|
450
|
+
constructor();
|
|
451
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbRouterService, never>;
|
|
452
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<BreadcrumbRouterService>;
|
|
453
|
+
}
|
|
454
|
+
|
|
456
455
|
declare class BreadcrumbModule {
|
|
457
456
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
|
|
458
457
|
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<BreadcrumbModule, never, [typeof BreadcrumbComponent, typeof BreadcrumbItemComponent, typeof BreadcrumbRouterComponent], [typeof BreadcrumbComponent, typeof BreadcrumbItemComponent, typeof BreadcrumbRouterComponent]>;
|
|
@@ -3853,9 +3852,10 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3853
3852
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
3854
3853
|
static ngAcceptInputType_highlightOnlySelected: BooleanInput$1;
|
|
3855
3854
|
static ngAcceptInputType_readOnly: BooleanInput$1;
|
|
3855
|
+
constructor();
|
|
3856
3856
|
/**
|
|
3857
3857
|
* The default icon to display when the item is selected.
|
|
3858
|
-
* @
|
|
3858
|
+
* @returns: string | string[]
|
|
3859
3859
|
*/
|
|
3860
3860
|
readonly activeIcon: InputSignalWithTransform<string[], string | string[]>;
|
|
3861
3861
|
/**
|
|
@@ -3866,7 +3866,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3866
3866
|
readonly allowClear: InputSignalWithTransform<boolean, unknown>;
|
|
3867
3867
|
/**
|
|
3868
3868
|
* Toggle the disabled state for the component.
|
|
3869
|
-
* @
|
|
3869
|
+
* @returns: boolean
|
|
3870
3870
|
* @default: false
|
|
3871
3871
|
*/
|
|
3872
3872
|
readonly disabled: InputSignalWithTransform<boolean, unknown>;
|
|
@@ -3878,7 +3878,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3878
3878
|
readonly highlightOnlySelected: InputSignalWithTransform<boolean, unknown>;
|
|
3879
3879
|
/**
|
|
3880
3880
|
* The default icon to display when the item is not selected.
|
|
3881
|
-
* @
|
|
3881
|
+
* @returns: string | string[]
|
|
3882
3882
|
*/
|
|
3883
3883
|
readonly icon: InputSignalWithTransform<string[], string | string[]>;
|
|
3884
3884
|
/**
|
|
@@ -3896,7 +3896,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3896
3896
|
readonly precision: InputSignalWithTransform<number, unknown>;
|
|
3897
3897
|
/**
|
|
3898
3898
|
* Allows to click fractions
|
|
3899
|
-
* @
|
|
3899
|
+
* @returns: boolean
|
|
3900
3900
|
* @default: false
|
|
3901
3901
|
*/
|
|
3902
3902
|
/**
|
|
@@ -3907,26 +3907,26 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3907
3907
|
readonly readOnly: InputSignalWithTransform<boolean, unknown>;
|
|
3908
3908
|
/**
|
|
3909
3909
|
* Size the component small, large, or custom if you define custom icons with custom height.
|
|
3910
|
-
* @
|
|
3910
|
+
* @returns: 'sm' | 'lg' | 'custom' | undefined
|
|
3911
3911
|
* @default: undefined
|
|
3912
3912
|
*/
|
|
3913
3913
|
readonly size: _angular_core.InputSignal<"sm" | "lg" | "custom" | undefined>;
|
|
3914
3914
|
/**
|
|
3915
3915
|
* Enable tooltips with default values or set specific labels for each icon.
|
|
3916
|
-
* @
|
|
3916
|
+
* @returns: boolean | string[] | undefined
|
|
3917
3917
|
* @default: undefined
|
|
3918
3918
|
*/
|
|
3919
3919
|
readonly tooltips: _angular_core.InputSignal<boolean | string[] | undefined>;
|
|
3920
3920
|
/**
|
|
3921
3921
|
* The `value` attribute of component.
|
|
3922
|
-
* @
|
|
3922
|
+
* @returns: number | null
|
|
3923
3923
|
* @default: null
|
|
3924
3924
|
* Emits `valueChange` on value change
|
|
3925
3925
|
*/
|
|
3926
3926
|
readonly value: _angular_core.ModelSignal<number | null>;
|
|
3927
3927
|
/**
|
|
3928
3928
|
* Event emitted on hoverValue change.
|
|
3929
|
-
* @
|
|
3929
|
+
* @returns: number | null
|
|
3930
3930
|
*/
|
|
3931
3931
|
readonly hoverValue: _angular_core.WritableSignal<number | null>;
|
|
3932
3932
|
readonly hoverValueChange: _angular_core.OutputEmitterRef<number | null>;
|
|
@@ -3941,16 +3941,13 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
3941
3941
|
readonly ratingItems: _angular_core.Signal<number[][]>;
|
|
3942
3942
|
readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
|
|
3943
3943
|
readonly ratingItemLabelsEffect: _angular_core.EffectRef;
|
|
3944
|
-
|
|
3944
|
+
readonly hostClasses: _angular_core.Signal<{
|
|
3945
3945
|
[x: string]: boolean | "sm" | "lg" | "custom" | undefined;
|
|
3946
3946
|
rating: boolean;
|
|
3947
3947
|
disabled: boolean;
|
|
3948
3948
|
readonly: boolean;
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
|
-
get ariaValueMax(): number;
|
|
3952
|
-
get role(): string;
|
|
3953
|
-
onKeydown($event: any): false | undefined;
|
|
3949
|
+
}>;
|
|
3950
|
+
onKeyDown($event: KeyboardEvent): void;
|
|
3954
3951
|
onChange: (value: number | null) => void;
|
|
3955
3952
|
onTouched: () => void;
|
|
3956
3953
|
registerOnChange(fn: any): void;
|
|
@@ -5892,6 +5889,7 @@ declare class TabDirective implements FocusableOption, OnInit {
|
|
|
5892
5889
|
declare class TabsListComponent {
|
|
5893
5890
|
#private;
|
|
5894
5891
|
readonly tabsService: TabsService;
|
|
5892
|
+
constructor();
|
|
5895
5893
|
/**
|
|
5896
5894
|
* Specify a layout type for component.
|
|
5897
5895
|
* @type 'fill' | 'justified' | undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.5",
|
|
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": "^20.0
|
|
26
|
-
"@angular/cdk": "^20.0
|
|
27
|
-
"@angular/common": "^20.0
|
|
28
|
-
"@angular/core": "^20.0
|
|
29
|
-
"@angular/forms": "^20.0
|
|
30
|
-
"@angular/router": "^20.0
|
|
25
|
+
"@angular/animations": "^20.1.0",
|
|
26
|
+
"@angular/cdk": "^20.1.0",
|
|
27
|
+
"@angular/common": "^20.1.0",
|
|
28
|
+
"@angular/core": "^20.1.0",
|
|
29
|
+
"@angular/forms": "^20.1.0",
|
|
30
|
+
"@angular/router": "^20.1.0",
|
|
31
31
|
"@coreui/coreui-pro": "~5.15.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
32
|
+
"@coreui/icons-angular": "~5.5.5",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|