@coreui/angular-pro 5.3.9 → 5.3.12
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 +986 -973
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/carousel/carousel-inner/carousel-inner.component.d.ts +4 -0
- package/lib/carousel/carousel.animation.d.ts +9 -4
- package/lib/offcanvas/offcanvas/offcanvas.component.d.ts +1 -3
- package/package.json +8 -8
|
@@ -9,6 +9,10 @@ export declare class CarouselInnerComponent implements AfterContentInit, AfterCo
|
|
|
9
9
|
left: boolean;
|
|
10
10
|
}>;
|
|
11
11
|
readonly transition: import("@angular/core").WritableSignal<string>;
|
|
12
|
+
readonly slideType: import("@angular/core").Signal<{
|
|
13
|
+
left: boolean;
|
|
14
|
+
type: string;
|
|
15
|
+
}>;
|
|
12
16
|
readonly contentItems: import("@angular/core").Signal<readonly CarouselItemComponent[]>;
|
|
13
17
|
ngAfterContentInit(): void;
|
|
14
18
|
ngAfterContentChecked(): void;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
export declare function
|
|
2
|
-
export declare function
|
|
3
|
-
export declare
|
|
4
|
-
export declare
|
|
1
|
+
export declare function toSlideLeft(fromState: any, toState: any): boolean;
|
|
2
|
+
export declare function toSlideRight(fromState: any, toState: any): boolean;
|
|
3
|
+
export declare function toFadeLeft(fromState: any, toState: any): boolean;
|
|
4
|
+
export declare function toFadeRight(fromState: any, toState: any): boolean;
|
|
5
|
+
export declare const slideAnimationLeft: import("@angular/animations").AnimationReferenceMetadata;
|
|
6
|
+
export declare const slideAnimationRight: import("@angular/animations").AnimationReferenceMetadata;
|
|
7
|
+
export declare const fadeAnimationLeft: import("@angular/animations").AnimationReferenceMetadata;
|
|
8
|
+
export declare const fadeAnimationRight: import("@angular/animations").AnimationReferenceMetadata;
|
|
9
|
+
export declare const carouselPlay: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -54,18 +54,16 @@ export declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
54
54
|
* @default false
|
|
55
55
|
*/
|
|
56
56
|
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
57
|
-
readonly visibleInputEffect: import("@angular/core").EffectRef;
|
|
58
57
|
readonly visible: import("@angular/core").WritableSignal<boolean>;
|
|
59
58
|
readonly visibleEffect: import("@angular/core").EffectRef;
|
|
60
59
|
/**
|
|
61
60
|
* Event triggered on visible change.
|
|
62
|
-
* @return
|
|
61
|
+
* @return <boolean>
|
|
63
62
|
*/
|
|
64
63
|
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
65
64
|
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
66
65
|
readonly ariaHidden: import("@angular/core").Signal<true | null>;
|
|
67
66
|
get tabIndex(): string | null;
|
|
68
|
-
get animateTrigger(): string;
|
|
69
67
|
get show(): boolean;
|
|
70
68
|
set show(value: boolean);
|
|
71
69
|
get responsiveBreakpoint(): string | false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.12",
|
|
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": "^19.1.
|
|
26
|
-
"@angular/cdk": "^19.1.
|
|
27
|
-
"@angular/common": "^19.1.
|
|
28
|
-
"@angular/core": "^19.1.
|
|
29
|
-
"@angular/forms": "^19.1.
|
|
30
|
-
"@angular/router": "^19.1.
|
|
25
|
+
"@angular/animations": "^19.1.0",
|
|
26
|
+
"@angular/cdk": "^19.1.0",
|
|
27
|
+
"@angular/common": "^19.1.0",
|
|
28
|
+
"@angular/core": "^19.1.0",
|
|
29
|
+
"@angular/forms": "^19.1.0",
|
|
30
|
+
"@angular/router": "^19.1.0",
|
|
31
31
|
"@coreui/coreui-pro": "^5.8.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.3.
|
|
32
|
+
"@coreui/icons-angular": "~5.3.12",
|
|
33
33
|
"rxjs": "^7.8.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|