@coreui/angular-pro 5.3.11 → 5.3.14
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 +1262 -1248
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/carousel/carousel-control/carousel-control.component.d.ts +0 -3
- package/lib/carousel/carousel-inner/carousel-inner.component.d.ts +6 -0
- package/lib/carousel/carousel-item/carousel-item.component.d.ts +7 -1
- package/lib/carousel/carousel-state.type.d.ts +4 -3
- package/lib/carousel/carousel.animation.d.ts +9 -4
- package/lib/dropdown/dropdown/dropdown.component.d.ts +43 -39
- package/lib/dropdown/dropdown-close/dropdown-close.directive.d.ts +11 -12
- package/lib/dropdown/dropdown-item/dropdown-item.directive.d.ts +17 -15
- package/lib/dropdown/dropdown-menu/dropdown-menu.directive.d.ts +8 -10
- package/lib/progress/progress-bar.directive.d.ts +1 -1
- package/package.json +8 -8
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class CarouselControlComponent {
|
|
4
3
|
#private;
|
|
@@ -20,8 +19,6 @@ export declare class CarouselControlComponent {
|
|
|
20
19
|
readonly role: import("@angular/core").InputSignal<string>;
|
|
21
20
|
readonly hostClasses: import("@angular/core").Signal<string>;
|
|
22
21
|
readonly carouselControlIconClass: import("@angular/core").Signal<string>;
|
|
23
|
-
readonly content: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
24
|
-
readonly hasContent: import("@angular/core").Signal<any>;
|
|
25
22
|
onKeyUp($event: KeyboardEvent): void;
|
|
26
23
|
onClick($event: MouseEvent): void;
|
|
27
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselControlComponent, never>;
|
|
@@ -5,10 +5,16 @@ export declare class CarouselInnerComponent implements AfterContentInit, AfterCo
|
|
|
5
5
|
#private;
|
|
6
6
|
readonly activeIndex: import("@angular/core").WritableSignal<number | undefined>;
|
|
7
7
|
readonly animate: import("@angular/core").WritableSignal<boolean>;
|
|
8
|
+
readonly interval: import("@angular/core").WritableSignal<number>;
|
|
8
9
|
readonly slide: import("@angular/core").WritableSignal<{
|
|
9
10
|
left: boolean;
|
|
10
11
|
}>;
|
|
11
12
|
readonly transition: import("@angular/core").WritableSignal<string>;
|
|
13
|
+
readonly slideType: import("@angular/core").Signal<{
|
|
14
|
+
left: boolean;
|
|
15
|
+
type: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly ariaLive: import("@angular/core").Signal<"off" | "polite">;
|
|
12
18
|
readonly contentItems: import("@angular/core").Signal<readonly CarouselItemComponent[]>;
|
|
13
19
|
ngAfterContentInit(): void;
|
|
14
20
|
ngAfterContentChecked(): void;
|
|
@@ -13,7 +13,13 @@ export declare class CarouselItemComponent {
|
|
|
13
13
|
* @default -1
|
|
14
14
|
*/
|
|
15
15
|
readonly interval: import("@angular/core").InputSignal<number>;
|
|
16
|
+
/**
|
|
17
|
+
* Carousel item role.
|
|
18
|
+
* @return string
|
|
19
|
+
* @default 'group'
|
|
20
|
+
*/
|
|
21
|
+
readonly role: import("@angular/core").InputSignal<string>;
|
|
16
22
|
constructor();
|
|
17
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemComponent, "c-carousel-item", ["cCarouselItem"], { "activeInput": { "alias": "active"; "required": false; "isSignal": true; }; "interval": { "alias": "interval"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemComponent, "c-carousel-item", ["cCarouselItem"], { "activeInput": { "alias": "active"; "required": false; "isSignal": true; }; "interval": { "alias": "interval"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
19
25
|
}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { CarouselItemComponent } from './carousel-item/carousel-item.component';
|
|
2
2
|
export interface ICarouselOptions {
|
|
3
|
-
interval?: number;
|
|
4
|
-
animate?: boolean;
|
|
5
3
|
activeIndex?: number;
|
|
4
|
+
animate?: boolean;
|
|
6
5
|
direction?: 'next' | 'prev';
|
|
6
|
+
interval?: number;
|
|
7
7
|
transition?: 'slide' | 'crossfade';
|
|
8
8
|
}
|
|
9
9
|
export interface ICarouselState {
|
|
10
10
|
activeItemIndex?: number;
|
|
11
11
|
animate?: boolean;
|
|
12
|
-
items?: CarouselItemComponent[];
|
|
13
12
|
direction?: 'next' | 'prev';
|
|
13
|
+
interval?: number;
|
|
14
|
+
items?: CarouselItemComponent[];
|
|
14
15
|
transition?: 'slide' | 'crossfade';
|
|
15
16
|
}
|
|
@@ -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;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef,
|
|
1
|
+
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { Options, Placement } from '@popperjs/core';
|
|
3
3
|
import { DropdownMenuDirective } from '../dropdown-menu/dropdown-menu.directive';
|
|
4
4
|
import { DropdownService } from '../dropdown.service';
|
|
@@ -11,39 +11,38 @@ export declare class DropdownToggleDirective implements AfterViewInit {
|
|
|
11
11
|
readonly elementRef: ElementRef<any>;
|
|
12
12
|
dropdown: DropdownToken | null;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
15
|
-
* @
|
|
14
|
+
* Reference to dropdown component.
|
|
15
|
+
* @return DropdownComponent | undefined
|
|
16
16
|
* @default undefined
|
|
17
17
|
*/
|
|
18
|
-
dropdownComponent
|
|
18
|
+
readonly dropdownComponent: import("@angular/core").InputSignal<DropdownComponent | undefined>;
|
|
19
19
|
/**
|
|
20
20
|
* Disables the toggler.
|
|
21
|
-
* @
|
|
21
|
+
* @return boolean
|
|
22
22
|
* @default false
|
|
23
23
|
*/
|
|
24
|
-
disabled: boolean
|
|
24
|
+
readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
25
25
|
/**
|
|
26
26
|
* Enables pseudo element caret on toggler.
|
|
27
|
-
* @
|
|
27
|
+
* @return boolean
|
|
28
28
|
*/
|
|
29
|
-
caret: boolean
|
|
29
|
+
readonly caret: import("@angular/core").InputSignal<boolean>;
|
|
30
30
|
/**
|
|
31
31
|
* Create split button dropdowns with virtually the same markup as single button dropdowns,
|
|
32
32
|
* but with the addition of `.dropdown-toggle-split` class for proper spacing around the dropdown caret.
|
|
33
|
-
* @
|
|
33
|
+
* @return boolean
|
|
34
34
|
* @default false
|
|
35
35
|
*/
|
|
36
|
-
split: boolean
|
|
37
|
-
|
|
36
|
+
readonly split: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
37
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
38
38
|
get ariaExpanded(): boolean;
|
|
39
39
|
onClick($event: MouseEvent): void;
|
|
40
40
|
ngAfterViewInit(): void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownToggleDirective, never>;
|
|
42
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[cDropdownToggle]", ["cDropdownToggle"], { "dropdownComponent": { "alias": "dropdownComponent"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "caret": { "alias": "caret"; "required": false; }; "split": { "alias": "split"; "required": false; }; }, {}, never, never, true, never>;
|
|
43
|
-
static ngAcceptInputType_disabled: unknown;
|
|
44
|
-
static ngAcceptInputType_split: unknown;
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[cDropdownToggle]", ["cDropdownToggle"], { "dropdownComponent": { "alias": "dropdownComponent"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "caret": { "alias": "caret"; "required": false; "isSignal": true; }; "split": { "alias": "split"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
45
43
|
}
|
|
46
|
-
export declare class DropdownComponent implements AfterContentInit,
|
|
44
|
+
export declare class DropdownComponent implements AfterContentInit, OnDestroy, OnInit {
|
|
45
|
+
#private;
|
|
47
46
|
private document;
|
|
48
47
|
private elementRef;
|
|
49
48
|
private renderer;
|
|
@@ -53,47 +52,51 @@ export declare class DropdownComponent implements AfterContentInit, OnChanges, O
|
|
|
53
52
|
constructor(document: Document, elementRef: ElementRef, renderer: Renderer2, ngZone: NgZone, changeDetectorRef: ChangeDetectorRef, dropdownService: DropdownService);
|
|
54
53
|
/**
|
|
55
54
|
* Set alignment of dropdown menu.
|
|
56
|
-
* @
|
|
55
|
+
* @return {'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'}}
|
|
56
|
+
*/
|
|
57
|
+
readonly alignment: import("@angular/core").InputSignal<string | undefined>;
|
|
58
|
+
/**
|
|
59
|
+
* Automatically close dropdown when clicking outside the dropdown menu.
|
|
57
60
|
*/
|
|
58
|
-
|
|
59
|
-
autoClose: boolean | 'inside' | 'outside';
|
|
61
|
+
readonly autoClose: import("@angular/core").InputSignal<boolean | "inside" | "outside">;
|
|
60
62
|
/**
|
|
61
63
|
* Sets a specified direction and location of the dropdown menu.
|
|
62
|
-
* @
|
|
64
|
+
* @return 'dropup' | 'dropend' | 'dropstart'
|
|
63
65
|
*/
|
|
64
|
-
direction
|
|
66
|
+
readonly direction: import("@angular/core").InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
|
|
65
67
|
/**
|
|
66
68
|
* Describes the placement of your component after Popper.js has applied all the modifiers
|
|
67
69
|
* that may have flipped or altered the originally provided placement property.
|
|
68
|
-
* @
|
|
70
|
+
* @return Placement
|
|
69
71
|
*/
|
|
70
|
-
placement: Placement
|
|
72
|
+
readonly placement: import("@angular/core").InputSignal<Placement>;
|
|
71
73
|
/**
|
|
72
74
|
* If you want to disable dynamic positioning set this property to `false`.
|
|
73
|
-
* @
|
|
75
|
+
* @return boolean
|
|
74
76
|
* @default true
|
|
75
77
|
*/
|
|
76
|
-
popper: boolean
|
|
78
|
+
readonly popper: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
77
79
|
/**
|
|
78
80
|
* Optional popper Options object, placement prop takes precedence over
|
|
79
|
-
* @
|
|
81
|
+
* @return Partial<Options>
|
|
80
82
|
*/
|
|
83
|
+
readonly popperOptionsInput: import("@angular/core").InputSignal<Partial<Options>>;
|
|
84
|
+
readonly popperOptionsEffect: import("@angular/core").EffectRef;
|
|
81
85
|
set popperOptions(value: Partial<Options>);
|
|
82
86
|
get popperOptions(): Partial<Options>;
|
|
83
|
-
private _popperOptions;
|
|
84
87
|
/**
|
|
85
88
|
* Set the dropdown variant to a btn-group, dropdown, input-group, and nav-item.
|
|
86
89
|
*/
|
|
87
|
-
variant
|
|
90
|
+
readonly variant: import("@angular/core").InputSignal<"btn-group" | "dropdown" | "input-group" | "nav-item" | undefined>;
|
|
88
91
|
/**
|
|
89
92
|
* Toggle the visibility of dropdown menu component.
|
|
90
|
-
* @
|
|
93
|
+
* @return boolean
|
|
91
94
|
* @default false
|
|
92
95
|
*/
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
visibleChange:
|
|
96
|
+
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
97
|
+
readonly visible: import("@angular/core").WritableSignal<boolean>;
|
|
98
|
+
readonly visibleEffect: import("@angular/core").EffectRef;
|
|
99
|
+
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
97
100
|
dropdownContext: {
|
|
98
101
|
$implicit: boolean;
|
|
99
102
|
};
|
|
@@ -104,16 +107,19 @@ export declare class DropdownComponent implements AfterContentInit, OnChanges, O
|
|
|
104
107
|
private dropdownStateSubscription;
|
|
105
108
|
private popperInstance;
|
|
106
109
|
private listeners;
|
|
107
|
-
|
|
108
|
-
|
|
110
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
111
|
+
readonly hostStyle: import("@angular/core").Signal<{
|
|
112
|
+
display: string;
|
|
113
|
+
} | {
|
|
114
|
+
display?: undefined;
|
|
115
|
+
}>;
|
|
109
116
|
private clickedTarget;
|
|
110
|
-
|
|
117
|
+
onHostClick($event: MouseEvent): void;
|
|
111
118
|
dropdownStateSubscribe(subscribe?: boolean): void;
|
|
112
119
|
toggleDropdown(): void;
|
|
113
120
|
onClick(event: any): void;
|
|
114
121
|
ngAfterContentInit(): void;
|
|
115
122
|
ngOnInit(): void;
|
|
116
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
117
123
|
ngOnDestroy(): void;
|
|
118
124
|
setVisibleState(value: boolean): void;
|
|
119
125
|
createPopperInstance(): void;
|
|
@@ -121,7 +127,5 @@ export declare class DropdownComponent implements AfterContentInit, OnChanges, O
|
|
|
121
127
|
private setListeners;
|
|
122
128
|
private clearListeners;
|
|
123
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "c-dropdown", ["cDropdown"], { "alignment": { "alias": "alignment"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "popper": { "alias": "popper"; "required": false; }; "
|
|
125
|
-
static ngAcceptInputType_popper: unknown;
|
|
126
|
-
static ngAcceptInputType_visible: unknown;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "c-dropdown", ["cDropdown"], { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "autoClose": { "alias": "autoClose"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "popper": { "alias": "popper"; "required": false; "isSignal": true; }; "popperOptionsInput": { "alias": "popperOptions"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, ["_toggler", "_menu", "_menuElementRef"], ["*"], true, [{ directive: typeof i1.ThemeDirective; inputs: { "dark": "dark"; }; outputs: {}; }]>;
|
|
127
131
|
}
|
|
@@ -6,19 +6,18 @@ export declare class DropdownCloseDirective implements AfterViewInit {
|
|
|
6
6
|
dropdown?: DropdownComponent | null | undefined;
|
|
7
7
|
/**
|
|
8
8
|
* Disables a dropdown-close directive.
|
|
9
|
-
* @
|
|
10
|
-
* @default
|
|
9
|
+
* @return boolean
|
|
10
|
+
* @default false
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
13
|
+
readonly disabled: import("@angular/core").WritableSignal<true | null>;
|
|
14
|
+
readonly dropdownComponent: import("@angular/core").InputSignal<DropdownComponent | undefined>;
|
|
14
15
|
ngAfterViewInit(): void;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
private onClick;
|
|
21
|
-
private onKeyUp;
|
|
16
|
+
readonly tabIndexInput: import("@angular/core").InputSignal<string | number | null>;
|
|
17
|
+
readonly tabIndex: import("@angular/core").WritableSignal<string | number | null>;
|
|
18
|
+
onClick($event: MouseEvent): void;
|
|
19
|
+
onKeyUp($event: KeyboardEvent): void;
|
|
20
|
+
private handleToggle;
|
|
22
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownCloseDirective, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownCloseDirective, "[cDropdownClose]", ["cDropdownClose"], { "
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownCloseDirective, "[cDropdownClose]", ["cDropdownClose"], { "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "dropdownComponent": { "alias": "dropdownComponent"; "required": false; "isSignal": true; }; "tabIndexInput": { "alias": "tabIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
23
|
}
|
|
@@ -6,32 +6,34 @@ export declare class DropdownItemDirective implements FocusableOption {
|
|
|
6
6
|
dropdown?: DropdownComponent | null | undefined;
|
|
7
7
|
/**
|
|
8
8
|
* Set active state to a dropdown-item.
|
|
9
|
-
* @
|
|
9
|
+
* @return boolean
|
|
10
10
|
* @default undefined
|
|
11
11
|
*/
|
|
12
|
-
active
|
|
12
|
+
readonly active: import("@angular/core").InputSignal<boolean | undefined>;
|
|
13
13
|
/**
|
|
14
14
|
* Configure dropdown-item close dropdown behavior.
|
|
15
|
-
* @
|
|
15
|
+
* @return boolean
|
|
16
16
|
* @default true
|
|
17
17
|
*/
|
|
18
|
-
autoClose: boolean
|
|
18
|
+
readonly autoClose: import("@angular/core").InputSignal<boolean>;
|
|
19
19
|
/**
|
|
20
20
|
* Disables a dropdown-item.
|
|
21
|
-
* @
|
|
21
|
+
* @return boolean
|
|
22
22
|
* @default undefined
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
25
|
+
readonly disabledEffect: import("@angular/core").WritableSignal<boolean>;
|
|
26
|
+
set disabled(value: boolean);
|
|
27
|
+
get disabled(): boolean;
|
|
25
28
|
focus(origin?: FocusOrigin | undefined): void;
|
|
26
29
|
getLabel?(): string;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private
|
|
34
|
-
private onKeyUp;
|
|
30
|
+
readonly ariaCurrent: import("@angular/core").Signal<"true" | null>;
|
|
31
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
32
|
+
readonly tabIndexInput: import("@angular/core").InputSignal<string | number | null>;
|
|
33
|
+
readonly tabIndex: import("@angular/core").WritableSignal<string | number | null>;
|
|
34
|
+
onClick($event: MouseEvent): void;
|
|
35
|
+
onKeyUp($event: KeyboardEvent): void;
|
|
36
|
+
private handleInteraction;
|
|
35
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemDirective, never>;
|
|
36
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownItemDirective, "[cDropdownItem]", ["cDropdownItem"], { "active": { "alias": "active"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "
|
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownItemDirective, "[cDropdownItem]", ["cDropdownItem"], { "active": { "alias": "active"; "required": false; "isSignal": true; }; "autoClose": { "alias": "autoClose"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "tabIndexInput": { "alias": "tabIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
37
39
|
}
|
|
@@ -7,19 +7,17 @@ export declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
7
7
|
readonly elementRef: ElementRef;
|
|
8
8
|
/**
|
|
9
9
|
* Set alignment of dropdown menu.
|
|
10
|
-
* @
|
|
10
|
+
* @return 'start' | 'end'
|
|
11
11
|
*/
|
|
12
|
-
alignment
|
|
12
|
+
readonly alignment: import("@angular/core").InputSignal<string | undefined>;
|
|
13
13
|
/**
|
|
14
14
|
* Toggle the visibility of dropdown menu component.
|
|
15
|
-
* @
|
|
15
|
+
* @return boolean
|
|
16
16
|
*/
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
display: string | null;
|
|
22
|
-
};
|
|
17
|
+
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
18
|
+
readonly visible: import("@angular/core").WritableSignal<boolean>;
|
|
19
|
+
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
20
|
+
readonly hostStyles: import("@angular/core").Signal<Record<string, any>>;
|
|
23
21
|
onKeyDown($event: KeyboardEvent): void;
|
|
24
22
|
onKeyUp($event: KeyboardEvent): void;
|
|
25
23
|
dropdownItemsContent: QueryList<DropdownItemDirective>;
|
|
@@ -27,5 +25,5 @@ export declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
27
25
|
ngOnInit(): void;
|
|
28
26
|
private focusKeyManagerInit;
|
|
29
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuDirective, never>;
|
|
30
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownMenuDirective, "[cDropdownMenu]", ["cDropdownMenu"], { "alignment": { "alias": "alignment"; "required": false; }; "
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownMenuDirective, "[cDropdownMenu]", ["cDropdownMenu"], { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, {}, ["dropdownItemsContent"], never, true, [{ directive: typeof i1.ThemeDirective; inputs: { "dark": "dark"; }; outputs: {}; }]>;
|
|
31
29
|
}
|
|
@@ -17,7 +17,7 @@ export declare class ProgressBarDirective {
|
|
|
17
17
|
* @return number
|
|
18
18
|
* @default 0
|
|
19
19
|
*/
|
|
20
|
-
readonly value: import("@angular/core").InputSignalWithTransform<number
|
|
20
|
+
readonly value: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
21
21
|
/**
|
|
22
22
|
* Set the progress bar variant to optional striped.
|
|
23
23
|
* @values 'striped'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.14",
|
|
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": {
|