@open-rlb/ng-bootstrap 3.1.24 → 3.1.25
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/package.json
CHANGED
|
@@ -1765,9 +1765,13 @@ declare class ModalDirective implements OnDestroy, AfterViewInit, OnInit {
|
|
|
1765
1765
|
|
|
1766
1766
|
declare const MODALS: (typeof ModalContainerComponent)[];
|
|
1767
1767
|
|
|
1768
|
-
declare class NavbarDropdownItemComponent
|
|
1768
|
+
declare class NavbarDropdownItemComponent {
|
|
1769
1769
|
element: HTMLElement;
|
|
1770
|
-
private
|
|
1770
|
+
private dropdownInstance?;
|
|
1771
|
+
private viewContainerRef;
|
|
1772
|
+
private renderer;
|
|
1773
|
+
private destroyRef;
|
|
1774
|
+
template: _angular_core.Signal<TemplateRef<any>>;
|
|
1771
1775
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1772
1776
|
dropdown: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1773
1777
|
href: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1777,11 +1781,10 @@ declare class NavbarDropdownItemComponent implements OnInit, OnDestroy {
|
|
|
1777
1781
|
click: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
1778
1782
|
statusChanged: _angular_core.OutputEmitterRef<VisibilityEventBase>;
|
|
1779
1783
|
_autoClose: _angular_core.Signal<"inside" | "outside" | "true" | "false">;
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
ngOnDestroy(): void;
|
|
1784
|
+
constructor();
|
|
1785
|
+
open(): void;
|
|
1786
|
+
close(): void;
|
|
1787
|
+
toggleDropdown(): void;
|
|
1785
1788
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarDropdownItemComponent, never>;
|
|
1786
1789
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarDropdownItemComponent, "rlb-navbar-dropdown-item", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "dropdown": { "alias": "dropdown"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "cssClass": { "alias": "class"; "required": false; "isSignal": true; }; "toggle": { "alias": "toggle"; "required": false; "isSignal": true; }; "autoClose": { "alias": "auto-close"; "required": false; "isSignal": true; }; }, { "click": "click"; "statusChanged": "status-changed"; }, never, [":not(rlb-dropdown-container)", "rlb-dropdown-container"], false, never>;
|
|
1787
1790
|
}
|