@mintplayer/ng-bootstrap 13.1.21 → 13.1.23

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.
@@ -3,9 +3,10 @@ import { BehaviorSubject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class BsNavbarComponent {
5
5
  nav: ElementRef;
6
+ autoclose: boolean;
6
7
  expandButtonTemplate: TemplateRef<any> | null;
7
8
  isExpanded$: BehaviorSubject<boolean>;
8
9
  toggleExpanded(): void;
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarComponent, "bs-navbar", never, {}, {}, never, ["bs-navbar-brand", "*"]>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarComponent, "bs-navbar", never, { "autoclose": "autoclose"; }, {}, never, ["bs-navbar-brand", "*"]>;
11
12
  }
@@ -1,14 +1,16 @@
1
1
  import { AfterContentChecked, ElementRef, QueryList } from '@angular/core';
2
+ import { BsNavbarComponent } from '../../navbar/navbar/navbar.component';
2
3
  import { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class BsNavbarItemComponent implements AfterContentChecked {
6
+ private navbar;
5
7
  private element;
6
- constructor(parentDropdown: BsNavbarDropdownComponent, element: ElementRef);
8
+ constructor(navbar: BsNavbarComponent, parentDropdown: BsNavbarDropdownComponent, element: ElementRef);
7
9
  parentDropdown: BsNavbarDropdownComponent;
8
10
  hasDropdown: boolean;
9
11
  anchorTag: HTMLAnchorElement | null;
10
12
  dropdowns: QueryList<BsNavbarDropdownComponent>;
11
13
  ngAfterContentChecked(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarItemComponent, [{ optional: true; }, null]>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarItemComponent, [null, { optional: true; }, null]>;
13
15
  static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarItemComponent, "bs-navbar-item", never, {}, {}, ["dropdowns"], ["*"]>;
14
16
  }
@@ -5,7 +5,7 @@ export declare class BsNavbarTogglerComponent {
5
5
  stateChange: EventEmitter<"open" | "closed">;
6
6
  get state(): 'open' | 'closed';
7
7
  set state(value: 'open' | 'closed');
8
- toggleState(): void;
8
+ toggleState(ev: MouseEvent): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarTogglerComponent, never>;
10
10
  static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarTogglerComponent, "bs-navbar-toggler", never, { "state": "state"; }, { "stateChange": "stateChange"; }, never, never>;
11
11
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mintplayer/ng-bootstrap",
3
3
  "private": false,
4
- "version": "13.1.21",
4
+ "version": "13.1.23",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/MintPlayer/mintplayer-ng-bootstrap"