@mintplayer/ng-bootstrap 13.3.1 → 13.3.5
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/esm2020/lib/components/navbar/navbar/navbar.component.mjs +2 -2
- package/esm2020/lib/components/navbar/navbar-content/navbar-content.directive.mjs +47 -12
- package/esm2020/lib/components/navbar/navbar-item/navbar-item.component.mjs +17 -17
- package/fesm2015/mintplayer-ng-bootstrap.mjs +65 -29
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +62 -29
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
- package/lib/components/navbar/navbar-content/navbar-content.directive.d.ts +8 -4
- package/package.json +1 -1
|
@@ -3,12 +3,16 @@ import { BsNavbarComponent } from '../navbar/navbar.component';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class NavbarContentDirective implements AfterViewInit, OnDestroy {
|
|
5
5
|
private element;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
private platformId;
|
|
7
|
+
constructor(element: ElementRef, platformId: any);
|
|
8
|
+
private destroyed$;
|
|
9
|
+
private viewInit$;
|
|
10
|
+
private navbar$;
|
|
11
|
+
resizeObserver: ResizeObserver | null;
|
|
12
|
+
initialPadding: number;
|
|
13
|
+
set navbar(value: BsNavbarComponent);
|
|
8
14
|
ngAfterViewInit(): void;
|
|
9
15
|
ngOnDestroy(): void;
|
|
10
|
-
resizeObserver: ResizeObserver;
|
|
11
|
-
initialPadding: number;
|
|
12
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarContentDirective, never>;
|
|
13
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavbarContentDirective, "[navbarContent]", never, { "navbar": "navbarContent"; }, {}, never>;
|
|
14
18
|
}
|