@coreui/angular-pro 5.3.12 → 5.3.15
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 +1422 -1447
- 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 +2 -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/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/form/form/form.directive.d.ts +1 -2
- package/lib/form/form-floating/form-floating.directive.d.ts +0 -1
- package/lib/modal/modal-dismiss/modal-toggle.directive.d.ts +1 -1
- package/lib/navbar/navbar-toggler/navbar-toggler.directive.d.ts +1 -1
- package/lib/progress/progress-bar.directive.d.ts +1 -1
- package/lib/shared/template-id.directive.d.ts +3 -2
- package/lib/sidebar/sidebar/sidebar.component.d.ts +43 -34
- package/lib/sidebar/sidebar-brand/sidebar-brand.component.d.ts +7 -9
- package/lib/sidebar/sidebar-nav/sidebar-nav-link.component.d.ts +2 -2
- package/lib/sidebar/sidebar-toggle/sidebar-toggle.directive.d.ts +7 -8
- package/lib/sidebar/sidebar-toggler/sidebar-toggler.directive.d.ts +2 -3
- package/lib/smart-table/smart-table/smart-table.component.d.ts +1 -1
- package/lib/smart-table/smart-table-head/smart-table-head.component.d.ts +18 -20
- package/lib/smart-table/smart-table.type.d.ts +27 -10
- package/lib/smart-table/smart-table.utils.d.ts +3 -5
- package/lib/utilities/text-bg-color.directive.d.ts +1 -1
- package/lib/utilities/text-color.directive.d.ts +3 -1
- package/package.json +3 -3
|
@@ -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,6 +5,7 @@ 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
|
}>;
|
|
@@ -13,6 +14,7 @@ export declare class CarouselInnerComponent implements AfterContentInit, AfterCo
|
|
|
13
14
|
left: boolean;
|
|
14
15
|
type: string;
|
|
15
16
|
}>;
|
|
17
|
+
readonly ariaLive: import("@angular/core").Signal<"off" | "polite">;
|
|
16
18
|
readonly contentItems: import("@angular/core").Signal<readonly CarouselItemComponent[]>;
|
|
17
19
|
ngAfterContentInit(): void;
|
|
18
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,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
|
}
|
|
@@ -2,11 +2,10 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class FormDirective {
|
|
3
3
|
/**
|
|
4
4
|
* Mark a form as validated. If you set it `true`, all validation styles will be applied to the form. [docs]
|
|
5
|
-
* @
|
|
5
|
+
* @return boolean
|
|
6
6
|
* @default false
|
|
7
7
|
*/
|
|
8
8
|
readonly validated: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
9
|
-
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormDirective, never>;
|
|
11
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FormDirective, "form[cForm]", never, { "validated": { "alias": "validated"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
11
|
}
|
|
@@ -5,7 +5,6 @@ export declare class FormFloatingDirective {
|
|
|
5
5
|
* @type boolean
|
|
6
6
|
*/
|
|
7
7
|
readonly floating: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
8
|
-
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFloatingDirective, never>;
|
|
10
9
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FormFloatingDirective, "[cFormFloating]", never, { "floating": { "alias": "cFormFloating"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
10
|
}
|
|
@@ -6,7 +6,7 @@ export declare class ModalToggleDirective {
|
|
|
6
6
|
* @default undefined
|
|
7
7
|
*/
|
|
8
8
|
readonly toggle: import("@angular/core").InputSignal<string | undefined>;
|
|
9
|
-
dismiss($event:
|
|
9
|
+
dismiss($event: Event): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalToggleDirective, never>;
|
|
11
11
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalToggleDirective, "[cModalToggle]", never, { "toggle": { "alias": "cModalToggle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -21,7 +21,7 @@ export declare class NavbarTogglerDirective {
|
|
|
21
21
|
* @default 'Toggle navigation'
|
|
22
22
|
*/
|
|
23
23
|
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
24
|
-
handleClick(): void;
|
|
24
|
+
handleClick($event: MouseEvent): void;
|
|
25
25
|
addDefaultIcon(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarTogglerDirective, never>;
|
|
27
27
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavbarTogglerDirective, "[cNavbarToggler]", never, { "collapseRef": { "alias": "cNavbarToggler"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -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'
|
|
@@ -2,7 +2,8 @@ import { TemplateRef } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TemplateIdDirective {
|
|
4
4
|
readonly templateRef: TemplateRef<any>;
|
|
5
|
-
|
|
5
|
+
readonly cTemplateId: import("@angular/core").InputSignal<string>;
|
|
6
|
+
get id(): string;
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateIdDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateIdDirective, "[cTemplateId]", never, { "
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateIdDirective, "[cTemplateId]", never, { "cTemplateId": { "alias": "cTemplateId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
9
|
}
|
|
@@ -1,70 +1,83 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ISidebarAction } from '../sidebar.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
5
5
|
#private;
|
|
6
|
-
state: ISidebarAction
|
|
6
|
+
readonly state: import("@angular/core").WritableSignal<ISidebarAction>;
|
|
7
7
|
/**
|
|
8
|
-
* Sets if the color of text should be colored for a light or dark background.
|
|
9
|
-
*
|
|
10
|
-
* @type 'dark' | 'light'
|
|
8
|
+
* Sets if the color of text should be colored for a light or dark background.
|
|
9
|
+
* @return 'dark' | 'light'
|
|
11
10
|
*/
|
|
12
|
-
colorScheme
|
|
11
|
+
readonly colorScheme: import("@angular/core").InputSignal<"dark" | "light" | undefined>;
|
|
13
12
|
/**
|
|
14
|
-
* Sets html attribute id.
|
|
15
|
-
*
|
|
16
|
-
* @type string
|
|
13
|
+
* Sets html attribute id.
|
|
14
|
+
* @return string
|
|
17
15
|
*/
|
|
18
|
-
id
|
|
16
|
+
readonly id: import("@angular/core").InputSignal<string | undefined>;
|
|
19
17
|
/**
|
|
20
|
-
* Make sidebar narrow.
|
|
21
|
-
* @
|
|
18
|
+
* Make sidebar narrow.
|
|
19
|
+
* @return boolean
|
|
22
20
|
* @default false
|
|
23
21
|
*/
|
|
24
|
-
|
|
22
|
+
readonly narrowInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
|
+
set narrow(value: boolean);
|
|
24
|
+
get narrow(): boolean;
|
|
25
25
|
/**
|
|
26
26
|
* Set sidebar to overlaid variant.
|
|
27
|
-
* @
|
|
27
|
+
* @return boolean
|
|
28
28
|
* @default false
|
|
29
29
|
*/
|
|
30
|
-
overlaid: boolean
|
|
30
|
+
readonly overlaid: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
31
31
|
/**
|
|
32
|
-
* Components placement, there’s no default placement.
|
|
33
|
-
* @
|
|
32
|
+
* Components placement, there’s no default placement.
|
|
33
|
+
* @return 'start' | 'end'
|
|
34
34
|
*/
|
|
35
|
-
placement
|
|
35
|
+
readonly placement: import("@angular/core").InputSignal<"start" | "end" | undefined>;
|
|
36
36
|
/**
|
|
37
|
-
* Place sidebar in non-static positions.
|
|
37
|
+
* Place sidebar in non-static positions.
|
|
38
|
+
* @return 'fixed' | 'sticky'
|
|
38
39
|
* @default 'fixed'
|
|
39
40
|
*/
|
|
40
|
-
position:
|
|
41
|
+
readonly position: import("@angular/core").InputSignal<"fixed" | "sticky">;
|
|
41
42
|
/**
|
|
42
|
-
* Size the component small, large, or extra large.
|
|
43
|
+
* Size the component small, large, or extra large.
|
|
44
|
+
* @return 'sm' | 'lg' | 'xl'
|
|
43
45
|
*/
|
|
44
|
-
size
|
|
46
|
+
readonly size: import("@angular/core").InputSignal<"sm" | "lg" | "xl" | undefined>;
|
|
45
47
|
/**
|
|
46
|
-
* Expand narrowed sidebar on hover.
|
|
48
|
+
* Expand narrowed sidebar on hover.
|
|
47
49
|
* @type boolean
|
|
48
50
|
* @default false
|
|
49
51
|
*/
|
|
50
|
-
|
|
52
|
+
readonly unfoldableInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
53
|
+
readonly unfoldable: import("@angular/core").WritableSignal<boolean>;
|
|
51
54
|
/**
|
|
52
|
-
* Toggle the visibility of sidebar component.
|
|
55
|
+
* Toggle the visibility of sidebar component.
|
|
53
56
|
* @type boolean
|
|
54
57
|
* @default false
|
|
55
58
|
*/
|
|
59
|
+
readonly visibleInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
56
60
|
set visible(value: boolean);
|
|
57
61
|
get visible(): boolean;
|
|
58
62
|
/**
|
|
59
|
-
* Event emitted on visibility change.
|
|
60
|
-
* @
|
|
63
|
+
* Event emitted on visibility change.
|
|
64
|
+
* @return boolean
|
|
61
65
|
*/
|
|
62
|
-
visibleChange:
|
|
66
|
+
readonly visibleChange: import("@angular/core").OutputEmitterRef<boolean>;
|
|
63
67
|
set sidebarState(value: ISidebarAction);
|
|
64
68
|
get sidebarState(): ISidebarAction;
|
|
65
69
|
get getMobileBreakpoint(): string;
|
|
66
70
|
constructor();
|
|
67
|
-
|
|
71
|
+
readonly hostClasses: import("@angular/core").Signal<{
|
|
72
|
+
[x: string]: boolean | "toggle" | undefined;
|
|
73
|
+
sidebar: boolean;
|
|
74
|
+
'sidebar-fixed': boolean;
|
|
75
|
+
'sidebar-narrow': boolean;
|
|
76
|
+
'sidebar-narrow-unfoldable': boolean;
|
|
77
|
+
'sidebar-overlaid': boolean;
|
|
78
|
+
show: boolean | "toggle" | undefined;
|
|
79
|
+
hide: boolean;
|
|
80
|
+
}>;
|
|
68
81
|
ngOnInit(): void;
|
|
69
82
|
ngOnDestroy(): void;
|
|
70
83
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -72,9 +85,5 @@ export declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
72
85
|
private stateToggleSubscribe;
|
|
73
86
|
layoutChangeSubscribe(subscribe?: boolean): void;
|
|
74
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "c-sidebar", ["cSidebar"], { "colorScheme": { "alias": "colorScheme"; "required": false; }; "id": { "alias": "id"; "required": false; }; "
|
|
76
|
-
static ngAcceptInputType_narrow: unknown;
|
|
77
|
-
static ngAcceptInputType_overlaid: unknown;
|
|
78
|
-
static ngAcceptInputType_unfoldable: unknown;
|
|
79
|
-
static ngAcceptInputType_visible: unknown;
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "c-sidebar", ["cSidebar"], { "colorScheme": { "alias": "colorScheme"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "narrowInput": { "alias": "narrow"; "required": false; "isSignal": true; }; "overlaid": { "alias": "overlaid"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "unfoldableInput": { "alias": "unfoldable"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
|
|
80
89
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type UrlTree } from '@angular/router';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SidebarBrandComponent
|
|
4
|
-
brandFull
|
|
5
|
-
brandNarrow
|
|
6
|
-
routerLink
|
|
7
|
-
|
|
8
|
-
brandImg: boolean;
|
|
9
|
-
ngOnInit(): void;
|
|
3
|
+
export declare class SidebarBrandComponent {
|
|
4
|
+
readonly brandFull: import("@angular/core").InputSignal<any>;
|
|
5
|
+
readonly brandNarrow: import("@angular/core").InputSignal<any>;
|
|
6
|
+
readonly routerLink: import("@angular/core").InputSignal<string | any[] | UrlTree | null | undefined>;
|
|
7
|
+
readonly brandImg: import("@angular/core").Signal<boolean>;
|
|
10
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarBrandComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarBrandComponent, "c-sidebar-brand", never, { "brandFull": { "alias": "brandFull"; "required": false; }; "brandNarrow": { "alias": "brandNarrow"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarBrandComponent, "c-sidebar-brand", never, { "brandFull": { "alias": "brandFull"; "required": false; "isSignal": true; }; "brandNarrow": { "alias": "brandNarrow"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
12
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { SidebarNavHelper } from './sidebar-nav.service';
|
|
4
4
|
import { INavData } from './sidebar-nav';
|
|
@@ -14,7 +14,7 @@ export declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
|
|
|
14
14
|
protected _item: INavData;
|
|
15
15
|
set item(item: INavData);
|
|
16
16
|
get item(): INavData;
|
|
17
|
-
linkClick:
|
|
17
|
+
readonly linkClick: import("@angular/core").OutputEmitterRef<void>;
|
|
18
18
|
linkType: string;
|
|
19
19
|
href: string;
|
|
20
20
|
linkActive: boolean;
|
|
@@ -5,19 +5,18 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class SidebarToggleDirective {
|
|
6
6
|
#private;
|
|
7
7
|
/**
|
|
8
|
-
* Id of sidebar for toggle action.
|
|
9
|
-
*
|
|
10
|
-
* @type string
|
|
8
|
+
* Id of sidebar for toggle action.
|
|
9
|
+
* @return string
|
|
11
10
|
*/
|
|
12
|
-
id
|
|
11
|
+
readonly id: import("@angular/core").InputSignal<string | undefined>;
|
|
13
12
|
/**
|
|
14
|
-
* Sidebar property name for toggle action.
|
|
13
|
+
* Sidebar property name for toggle action.
|
|
15
14
|
*
|
|
16
|
-
* @
|
|
15
|
+
* @return 'visible' | 'unfoldable'
|
|
17
16
|
* @default 'visible'
|
|
18
17
|
*/
|
|
19
|
-
toggle:
|
|
18
|
+
readonly toggle: import("@angular/core").InputSignal<"visible" | "unfoldable">;
|
|
20
19
|
toggleOpen($event: any): void;
|
|
21
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarToggleDirective, never>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SidebarToggleDirective, "[cSidebarToggle]", ["cSidebarToggle"], { "id": { "alias": "cSidebarToggle"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SidebarToggleDirective, "[cSidebarToggle]", ["cSidebarToggle"], { "id": { "alias": "cSidebarToggle"; "required": false; "isSignal": true; }; "toggle": { "alias": "toggle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
23
22
|
}
|