@coreui/angular-pro 5.4.8 → 5.4.10
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.
|
@@ -2,7 +2,6 @@ import { AnimationEvent } from '@angular/animations';
|
|
|
2
2
|
import { InputSignal, InputSignalWithTransform, OutputEmitterRef } from '@angular/core';
|
|
3
3
|
import { TabsService } from '../tabs.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
type AnimateType = 'hide' | 'show';
|
|
6
5
|
type VisibleChangeEvent = {
|
|
7
6
|
itemKey: string | number;
|
|
8
7
|
visible: boolean;
|
|
@@ -27,6 +26,12 @@ export declare class TabPanelComponent {
|
|
|
27
26
|
* @required
|
|
28
27
|
*/
|
|
29
28
|
readonly itemKey: InputSignal<string | number>;
|
|
29
|
+
/**
|
|
30
|
+
* Element role.
|
|
31
|
+
* @type string
|
|
32
|
+
* @default 'tabpanel'
|
|
33
|
+
*/
|
|
34
|
+
readonly role: InputSignal<string>;
|
|
30
35
|
/**
|
|
31
36
|
* tabindex attribute.
|
|
32
37
|
* @type number
|
|
@@ -49,10 +54,8 @@ export declare class TabPanelComponent {
|
|
|
49
54
|
readonly propId: import("@angular/core").Signal<string>;
|
|
50
55
|
readonly attrAriaLabelledBy: import("@angular/core").Signal<string>;
|
|
51
56
|
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
52
|
-
get animationDisabled(): boolean;
|
|
53
|
-
get animateType(): AnimateType;
|
|
54
57
|
onAnimationDone($event: AnimationEvent): void;
|
|
55
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabPanelComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabPanelComponent, "c-tab-panel", ["cTabPanel"], { "ariaLabelledBy": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "itemKey": { "alias": "itemKey"; "required": true; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabPanelComponent, "c-tab-panel", ["cTabPanel"], { "ariaLabelledBy": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "itemKey": { "alias": "itemKey"; "required": true; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
|
|
57
60
|
}
|
|
58
61
|
export {};
|
|
@@ -24,7 +24,7 @@ export declare class TabsListComponent {
|
|
|
24
24
|
readonly role: InputSignal<string>;
|
|
25
25
|
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
26
26
|
readonly tabs: import("@angular/core").Signal<readonly TabDirective[]>;
|
|
27
|
-
|
|
27
|
+
onKeyDown($event: any): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsListComponent, never>;
|
|
29
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabsListComponent, "c-tabs-list", ["cTabsList"], { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, ["tabs"], ["*"], true, never>;
|
|
30
30
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.10",
|
|
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": "^19.2.0",
|
|
29
29
|
"@angular/forms": "^19.2.0",
|
|
30
30
|
"@angular/router": "^19.2.0",
|
|
31
|
-
"@coreui/coreui-pro": "~5.9.0 || ~5.10.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.4.
|
|
31
|
+
"@coreui/coreui-pro": "~5.9.0 || ~5.10.0 || ~5.11.0",
|
|
32
|
+
"@coreui/icons-angular": "~5.4.10",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|