@mintplayer/ng-bootstrap 13.1.13 → 13.1.17

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.
Files changed (157) hide show
  1. package/_bootstrap.scss +14 -0
  2. package/esm2020/lib/components/accordion/accordion/accordion.component.mjs +2 -4
  3. package/esm2020/lib/components/accordion/accordion-tab/accordion-tab.component.mjs +1 -11
  4. package/esm2020/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.mjs +3 -8
  5. package/esm2020/lib/components/accordion/accordion.module.mjs +4 -8
  6. package/esm2020/lib/components/alert/alert/alert.component.mjs +2 -4
  7. package/esm2020/lib/components/alert/alert-close/alert-close.component.mjs +1 -3
  8. package/esm2020/lib/components/calendar/calendar.component.mjs +16 -15
  9. package/esm2020/lib/components/card/card/card.component.mjs +4 -10
  10. package/esm2020/lib/components/card/card-header/card-header.component.mjs +2 -6
  11. package/esm2020/lib/components/carousel/carousel/carousel.component.mjs +9 -7
  12. package/esm2020/lib/components/carousel/carousel-image/carousel-image.directive.mjs +1 -1
  13. package/esm2020/lib/components/code-snippet/code-snippet.component.mjs +28 -0
  14. package/esm2020/lib/components/code-snippet/code-snippet.module.mjs +34 -0
  15. package/esm2020/lib/components/code-snippet/index.mjs +3 -0
  16. package/esm2020/lib/components/context-menu/context-menu.directive.mjs +1 -1
  17. package/esm2020/lib/components/context-menu/context-menu.module.mjs +8 -4
  18. package/esm2020/lib/components/copy/copy.directive.mjs +45 -0
  19. package/esm2020/lib/components/copy/copy.module.mjs +26 -0
  20. package/esm2020/lib/components/copy/index.mjs +3 -0
  21. package/esm2020/lib/components/datatable/datatable/datatable.component.mjs +6 -8
  22. package/esm2020/lib/components/datatable/datatable-settings.mjs +1 -1
  23. package/esm2020/lib/components/datatable/datatable.module.mjs +1 -1
  24. package/esm2020/lib/components/datatable/row-template/row-template.directive.mjs +3 -3
  25. package/esm2020/lib/components/datepicker/datepicker.component.mjs +32 -7
  26. package/esm2020/lib/components/dropdown/dropdown/dropdown.directive.mjs +1 -1
  27. package/esm2020/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.mjs +12 -16
  28. package/esm2020/lib/components/for/for.directive.mjs +10 -4
  29. package/esm2020/lib/components/index.mjs +5 -1
  30. package/esm2020/lib/components/modal/component/index.mjs +3 -0
  31. package/esm2020/lib/components/modal/component/modal/modal.component.mjs +13 -0
  32. package/esm2020/lib/components/modal/component/modal-content/modal-content.component.mjs +27 -0
  33. package/esm2020/lib/components/modal/directives/index.mjs +4 -0
  34. package/esm2020/lib/components/modal/directives/modal-body/modal-body.directive.mjs +18 -0
  35. package/esm2020/lib/components/modal/directives/modal-footer/modal-footer.directive.mjs +18 -0
  36. package/esm2020/lib/components/modal/directives/modal-header/modal-header.directive.mjs +18 -0
  37. package/esm2020/lib/components/modal/index.mjs +5 -0
  38. package/esm2020/lib/components/modal/interfaces/index.mjs +2 -0
  39. package/esm2020/lib/components/modal/interfaces/modal-animation-meta.mjs +2 -0
  40. package/esm2020/lib/components/modal/modal.module.mjs +48 -0
  41. package/esm2020/lib/components/modal/providers/modal-content.provider.mjs +3 -0
  42. package/esm2020/lib/components/modal/service/modal.service.mjs +52 -0
  43. package/esm2020/lib/components/multiselect/component/multiselect.component.mjs +34 -0
  44. package/esm2020/lib/components/multiselect/directives/button-template/button-template.directive.mjs +18 -0
  45. package/esm2020/lib/components/multiselect/directives/footer-template/footer-template.directive.mjs +18 -0
  46. package/esm2020/lib/components/multiselect/directives/header-template/header-template.directive.mjs +18 -0
  47. package/esm2020/lib/components/multiselect/directives/index.mjs +4 -0
  48. package/esm2020/lib/components/multiselect/index.mjs +3 -2
  49. package/esm2020/lib/components/multiselect/multiselect.module.mjs +21 -6
  50. package/esm2020/lib/components/navbar/expand-button/expand-button.directive.mjs +18 -0
  51. package/esm2020/lib/components/navbar/index.mjs +4 -1
  52. package/esm2020/lib/components/navbar/navbar/navbar.component.mjs +5 -3
  53. package/esm2020/lib/components/navbar/navbar-brand/navbar-brand.component.mjs +22 -0
  54. package/esm2020/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.mjs +7 -6
  55. package/esm2020/lib/components/navbar/navbar-item/navbar-item.component.mjs +16 -5
  56. package/esm2020/lib/components/navbar/navbar-nav/navbar-nav.component.mjs +1 -1
  57. package/esm2020/lib/components/navbar/navbar-toggler/navbar-toggler.component.mjs +39 -0
  58. package/esm2020/lib/components/navbar/navbar.module.mjs +20 -5
  59. package/esm2020/lib/components/pagination/pagination/pagination.component.mjs +88 -71
  60. package/esm2020/lib/components/rating/index.mjs +3 -0
  61. package/esm2020/lib/components/rating/rating.component.mjs +72 -0
  62. package/esm2020/lib/components/rating/rating.module.mjs +26 -0
  63. package/esm2020/lib/components/select2/component/select2.component.mjs +7 -9
  64. package/esm2020/lib/components/snackbar/service/snackbar.service.mjs +4 -3
  65. package/esm2020/lib/components/snackbar/snackbar.module.mjs +8 -4
  66. package/esm2020/lib/components/tab-control/tab-control/tab-control.component.mjs +8 -7
  67. package/esm2020/lib/components/tab-control/tab-page/tab-page.component.mjs +4 -6
  68. package/esm2020/lib/components/toggle-button/toggle-button.component.mjs +19 -15
  69. package/esm2020/lib/components/tooltip/directive/tooltip.directive.mjs +4 -4
  70. package/esm2020/lib/components/tooltip/tooltip.module.mjs +8 -4
  71. package/esm2020/lib/interfaces/date-day-of-month.mjs +1 -1
  72. package/esm2020/lib/interfaces/index.mjs +2 -1
  73. package/esm2020/lib/interfaces/week.mjs +1 -1
  74. package/esm2020/lib/interfaces/weekday.mjs +2 -0
  75. package/esm2020/lib/pipes/format-bytes/index.mjs +3 -0
  76. package/esm2020/lib/pipes/index.mjs +2 -1
  77. package/esm2020/lib/services/calendar-month/calendar-month.service.mjs +34 -18
  78. package/fesm2015/mintplayer-ng-bootstrap.mjs +936 -383
  79. package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
  80. package/fesm2020/mintplayer-ng-bootstrap.mjs +927 -380
  81. package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
  82. package/lib/components/accordion/accordion/accordion.component.d.ts +1 -4
  83. package/lib/components/accordion/accordion-tab/accordion-tab.component.d.ts +1 -4
  84. package/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.d.ts +1 -4
  85. package/lib/components/accordion/accordion.module.d.ts +1 -2
  86. package/lib/components/alert/alert/alert.component.d.ts +1 -4
  87. package/lib/components/alert/alert-close/alert-close.component.d.ts +1 -3
  88. package/lib/components/calendar/calendar.component.d.ts +4 -5
  89. package/lib/components/card/card/card.component.d.ts +1 -6
  90. package/lib/components/card/card-header/card-header.component.d.ts +1 -4
  91. package/lib/components/carousel/carousel/carousel.component.d.ts +9 -9
  92. package/lib/components/code-snippet/code-snippet.component.d.ts +12 -0
  93. package/lib/components/code-snippet/code-snippet.module.d.ts +10 -0
  94. package/lib/components/code-snippet/index.d.ts +2 -0
  95. package/lib/components/context-menu/context-menu.directive.d.ts +2 -2
  96. package/lib/components/context-menu/context-menu.module.d.ts +2 -1
  97. package/lib/components/copy/copy.directive.d.ts +11 -0
  98. package/lib/components/copy/copy.module.d.ts +8 -0
  99. package/lib/components/copy/index.d.ts +2 -0
  100. package/lib/components/datatable/datatable/datatable.component.d.ts +4 -5
  101. package/lib/components/datatable/row-template/row-template.directive.d.ts +1 -1
  102. package/lib/components/datepicker/datepicker.component.d.ts +11 -7
  103. package/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.d.ts +3 -3
  104. package/lib/components/for/for.directive.d.ts +1 -0
  105. package/lib/components/index.d.ts +4 -0
  106. package/lib/components/modal/component/index.d.ts +2 -0
  107. package/lib/components/modal/component/modal/modal.component.d.ts +10 -0
  108. package/lib/components/modal/component/modal-content/modal-content.component.d.ts +13 -0
  109. package/lib/components/modal/directives/index.d.ts +3 -0
  110. package/lib/components/modal/directives/modal-body/modal-body.directive.d.ts +8 -0
  111. package/lib/components/modal/directives/modal-footer/modal-footer.directive.d.ts +8 -0
  112. package/lib/components/modal/directives/modal-header/modal-header.directive.d.ts +8 -0
  113. package/lib/components/modal/index.d.ts +4 -0
  114. package/lib/components/modal/interfaces/index.d.ts +1 -0
  115. package/lib/components/modal/interfaces/modal-animation-meta.d.ts +7 -0
  116. package/lib/components/modal/modal.module.d.ts +13 -0
  117. package/lib/components/modal/providers/modal-content.provider.d.ts +2 -0
  118. package/lib/components/modal/service/modal.service.d.ts +14 -0
  119. package/lib/components/multiselect/{multiselect.component.d.ts → component/multiselect.component.d.ts} +7 -6
  120. package/lib/components/multiselect/directives/button-template/button-template.directive.d.ts +8 -0
  121. package/lib/components/multiselect/directives/footer-template/footer-template.directive.d.ts +8 -0
  122. package/lib/components/multiselect/directives/header-template/header-template.directive.d.ts +8 -0
  123. package/lib/components/multiselect/directives/index.d.ts +3 -0
  124. package/lib/components/multiselect/index.d.ts +2 -1
  125. package/lib/components/multiselect/multiselect.module.d.ts +8 -5
  126. package/lib/components/navbar/expand-button/expand-button.directive.d.ts +8 -0
  127. package/lib/components/navbar/index.d.ts +3 -0
  128. package/lib/components/navbar/navbar/navbar.component.d.ts +3 -2
  129. package/lib/components/navbar/navbar-brand/navbar-brand.component.d.ts +7 -0
  130. package/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.d.ts +4 -4
  131. package/lib/components/navbar/navbar-item/navbar-item.component.d.ts +3 -4
  132. package/lib/components/navbar/navbar-toggler/navbar-toggler.component.d.ts +11 -0
  133. package/lib/components/navbar/navbar.module.d.ts +7 -4
  134. package/lib/components/pagination/pagination/pagination.component.d.ts +9 -10
  135. package/lib/components/rating/index.d.ts +2 -0
  136. package/lib/components/rating/rating.component.d.ts +22 -0
  137. package/lib/components/rating/rating.module.d.ts +8 -0
  138. package/lib/components/select2/component/select2.component.d.ts +4 -6
  139. package/lib/components/snackbar/snackbar.module.d.ts +2 -1
  140. package/lib/components/tab-control/tab-control/tab-control.component.d.ts +4 -6
  141. package/lib/components/tab-control/tab-page/tab-page.component.d.ts +3 -4
  142. package/lib/components/toggle-button/toggle-button.component.d.ts +5 -5
  143. package/lib/components/tooltip/directive/tooltip.directive.d.ts +1 -1
  144. package/lib/components/tooltip/tooltip.module.d.ts +2 -1
  145. package/lib/interfaces/date-day-of-month.d.ts +1 -0
  146. package/lib/interfaces/index.d.ts +1 -0
  147. package/lib/interfaces/week.d.ts +1 -1
  148. package/lib/interfaces/weekday.d.ts +4 -0
  149. package/lib/pipes/format-bytes/index.d.ts +2 -0
  150. package/lib/pipes/index.d.ts +1 -0
  151. package/lib/services/calendar-month/calendar-month.service.d.ts +2 -0
  152. package/package.json +3 -2
  153. package/src/styles/custom.scss +12 -0
  154. package/src/styles/ngx-highlight-themes/solarized-dark.scss +89 -0
  155. package/src/styles/utilities/cursor.scss +2 -6
  156. package/src/styles/utilities/white-space.scss +10 -0
  157. package/esm2020/lib/components/multiselect/multiselect.component.mjs +0 -36
@@ -1,9 +1,6 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';
3
2
  import * as i0 from "@angular/core";
4
- export declare class BsAccordionComponent implements OnInit {
5
- constructor();
6
- ngOnInit(): void;
3
+ export declare class BsAccordionComponent {
7
4
  tabPages: BsAccordionTabComponent[];
8
5
  activeTab: BsAccordionTabComponent | null;
9
6
  static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionComponent, never>;
@@ -1,11 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { BsAccordionComponent } from '../accordion/accordion.component';
3
2
  import * as i0 from "@angular/core";
4
- export declare class BsAccordionTabComponent implements OnInit {
3
+ export declare class BsAccordionTabComponent {
5
4
  accordion: BsAccordionComponent;
6
5
  constructor(accordion: BsAccordionComponent);
7
- ngOnInit(): void;
8
- headerClicked(event: MouseEvent): void;
9
6
  static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTabComponent, never>;
10
7
  static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabComponent, "bs-accordion-tab", never, {}, {}, never, ["bs-accordion-tab-header", "*"]>;
11
8
  }
@@ -1,14 +1,11 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';
3
2
  import { BsAccordionComponent } from '../accordion/accordion.component';
4
3
  import * as i0 from "@angular/core";
5
- export declare class BsAccordionTabHeaderComponent implements OnInit {
4
+ export declare class BsAccordionTabHeaderComponent {
6
5
  private accordionTab;
7
6
  private accordion;
8
7
  constructor(accordionTab: BsAccordionTabComponent, accordion: BsAccordionComponent);
9
- ngOnInit(): void;
10
8
  headerClicked(event: MouseEvent): void;
11
- foo(event: MouseEvent): void;
12
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTabHeaderComponent, never>;
13
10
  static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabHeaderComponent, "bs-accordion-tab-header", never, {}, {}, never, ["*"]>;
14
11
  }
@@ -3,9 +3,8 @@ import * as i1 from "./accordion/accordion.component";
3
3
  import * as i2 from "./accordion-tab/accordion-tab.component";
4
4
  import * as i3 from "./accordion-tab-header/accordion-tab-header.component";
5
5
  import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/platform-browser/animations";
7
6
  export declare class BsAccordionModule {
8
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsAccordionModule, [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent], [typeof i4.CommonModule, typeof i5.BrowserAnimationsModule], [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent]>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsAccordionModule, [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent], [typeof i4.CommonModule], [typeof i1.BsAccordionComponent, typeof i2.BsAccordionTabComponent, typeof i3.BsAccordionTabHeaderComponent]>;
10
9
  static ɵinj: i0.ɵɵInjectorDeclaration<BsAccordionModule>;
11
10
  }
@@ -1,9 +1,6 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { Color } from '../../../enums';
3
2
  import * as i0 from "@angular/core";
4
- export declare class BsAlertComponent implements OnInit {
5
- constructor();
6
- ngOnInit(): void;
3
+ export declare class BsAlertComponent {
7
4
  type: Color;
8
5
  colors: typeof Color;
9
6
  isVisible: boolean;
@@ -1,10 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { BsAlertComponent } from '../alert/alert.component';
3
2
  import * as i0 from "@angular/core";
4
- export declare class BsAlertCloseComponent implements OnInit {
3
+ export declare class BsAlertCloseComponent {
5
4
  private alert;
6
5
  constructor(alert: BsAlertComponent);
7
- ngOnInit(): void;
8
6
  closeAlert(): void;
9
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BsAlertCloseComponent, never>;
10
8
  static ɵcmp: i0.ɵɵComponentDeclaration<BsAlertCloseComponent, "bs-alert-close", never, {}, {}, never, never>;
@@ -1,16 +1,16 @@
1
- import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
1
+ import { EventEmitter, OnDestroy } from '@angular/core';
2
2
  import { BehaviorSubject, Observable } from 'rxjs';
3
3
  import { DateDayOfMonth } from '../../interfaces/date-day-of-month';
4
4
  import { Week } from '../../interfaces/week';
5
+ import { WeekDay } from '../../interfaces/weekday';
5
6
  import { BsCalendarMonthService } from '../../services/calendar-month/calendar-month.service';
6
7
  import * as i0 from "@angular/core";
7
8
  export declare class BsCalendarComponent implements OnDestroy {
8
9
  private calendarMonthService;
9
- private ref;
10
- constructor(calendarMonthService: BsCalendarMonthService, ref: ChangeDetectorRef);
10
+ constructor(calendarMonthService: BsCalendarMonthService);
11
11
  private destroyed$;
12
12
  weeks$: Observable<Week[]>;
13
- daysOfWeek$: Observable<string[]>;
13
+ daysOfWeek$: Observable<WeekDay[]>;
14
14
  currentMonth$: BehaviorSubject<Date>;
15
15
  currentMonthChange: EventEmitter<Date>;
16
16
  get currentMonth(): Date;
@@ -19,7 +19,6 @@ export declare class BsCalendarComponent implements OnDestroy {
19
19
  selectedDateChange: EventEmitter<Date>;
20
20
  get selectedDate(): Date;
21
21
  set selectedDate(value: Date);
22
- daysOfWeek: string[];
23
22
  ngOnDestroy(): void;
24
23
  previousMonth(): boolean;
25
24
  nextMonth(): boolean;
@@ -1,10 +1,5 @@
1
- import { AfterViewInit } from '@angular/core';
2
- import { OnInit } from '@angular/core';
3
1
  import * as i0 from "@angular/core";
4
- export declare class BsCardComponent implements OnInit, AfterViewInit {
5
- constructor();
6
- ngOnInit(): void;
7
- ngAfterViewInit(): void;
2
+ export declare class BsCardComponent {
8
3
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCardComponent, never>;
9
4
  static ɵcmp: i0.ɵɵComponentDeclaration<BsCardComponent, "bs-card", never, {}, {}, never, ["bs-card-header", "*"]>;
10
5
  }
@@ -1,8 +1,5 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class BsCardHeaderComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
2
+ export declare class BsCardHeaderComponent {
6
3
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCardHeaderComponent, never>;
7
4
  static ɵcmp: i0.ɵɵComponentDeclaration<BsCardHeaderComponent, "bs-card-header", never, {}, {}, never, ["*"]>;
8
5
  }
@@ -1,24 +1,24 @@
1
- import { AfterContentInit, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
1
+ import { AfterContentInit, OnDestroy, QueryList, TemplateRef } from '@angular/core';
2
2
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
3
3
  import { BsCarouselImageDirective } from '../carousel-image/carousel-image.directive';
4
4
  import * as i0 from "@angular/core";
5
- export declare class BsCarouselComponent implements OnInit, OnDestroy, AfterContentInit {
5
+ export declare class BsCarouselComponent implements OnDestroy, AfterContentInit {
6
6
  constructor();
7
- ngOnInit(): void;
8
- ngOnDestroy(): void;
9
- ngAfterContentInit(): void;
10
7
  animationsDisabled: boolean;
8
+ indicators: boolean;
9
+ images: QueryList<BsCarouselImageDirective>;
11
10
  private _animation;
12
- set animation(value: 'fade' | 'slide');
13
- get animation(): 'fade' | 'slide';
14
11
  destroyed$: Subject<unknown>;
15
12
  currentImageCounter$: BehaviorSubject<number>;
16
13
  currentImageIndex$: Observable<number>;
17
14
  currentImage$: Observable<TemplateRef<any> | null>;
15
+ ngOnDestroy(): void;
16
+ ngAfterContentInit(): void;
17
+ set animation(value: 'fade' | 'slide');
18
+ get animation(): 'fade' | 'slide';
18
19
  previousImage(): void;
19
20
  nextImage(): void;
20
21
  setCurrentImage(index: number): void;
21
- images: QueryList<BsCarouselImageDirective>;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<BsCarouselComponent, "bs-carousel", never, { "animation": "animation"; }, {}, ["images"], never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCarouselComponent, "bs-carousel", never, { "indicators": "indicators"; "animation": "animation"; }, {}, ["images"], never>;
24
24
  }
@@ -0,0 +1,12 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsSnackbarService } from '../snackbar/service/snackbar.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsCodeSnippetComponent {
5
+ private snackbarService;
6
+ constructor(snackbarService: BsSnackbarService);
7
+ htmlToCopy: string;
8
+ copiedTemplate: TemplateRef<any>;
9
+ copiedHtml(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCodeSnippetComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCodeSnippetComponent, "bs-code-snippet", never, { "htmlToCopy": "htmlToCopy"; }, {}, never, never>;
12
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./code-snippet.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../copy/copy.module";
5
+ import * as i4 from "ngx-highlightjs";
6
+ export declare class BsCodeSnippetModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCodeSnippetModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCodeSnippetModule, [typeof i1.BsCodeSnippetComponent], [typeof i2.CommonModule, typeof i3.BsCopyModule, typeof i4.HighlightModule], [typeof i1.BsCodeSnippetComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCodeSnippetModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './code-snippet.component';
2
+ export * from './code-snippet.module';
@@ -7,12 +7,12 @@ export declare class BsContextMenuDirective {
7
7
  private viewContainerRef;
8
8
  private element;
9
9
  constructor(overlay: Overlay, templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef, element: ElementRef);
10
+ private overlayRef;
11
+ private templatePortal;
10
12
  clickAnywhere(ev: MouseEvent): void;
11
13
  private onBlur;
12
14
  private close;
13
15
  private checkAndCloseExisting;
14
- private overlayRef;
15
- private templatePortal;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<BsContextMenuDirective, [null, null, null, { host: true; skipSelf: true; }]>;
17
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<BsContextMenuDirective, "[bsContextMenu]", never, {}, {}, never>;
18
18
  }
@@ -1,8 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./context-menu.directive";
3
3
  import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/cdk/overlay";
4
5
  export declare class BsContextMenuModule {
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<BsContextMenuModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsContextMenuModule, [typeof i1.BsContextMenuDirective], [typeof i2.CommonModule], [typeof i1.BsContextMenuDirective]>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsContextMenuModule, [typeof i1.BsContextMenuDirective], [typeof i2.CommonModule, typeof i3.OverlayModule], [typeof i1.BsContextMenuDirective]>;
7
8
  static ɵinj: i0.ɵɵInjectorDeclaration<BsContextMenuModule>;
8
9
  }
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsCopyDirective {
4
+ private doc;
5
+ constructor(doc: any);
6
+ bsCopy: string | null;
7
+ bsCopied: EventEmitter<string>;
8
+ click(event: MouseEvent): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCopyDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsCopyDirective, "[bsCopy]", never, { "bsCopy": "bsCopy"; }, { "bsCopied": "bsCopied"; }, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./copy.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsCopyModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCopyModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCopyModule, [typeof i1.BsCopyDirective], [typeof i2.CommonModule], [typeof i1.BsCopyDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCopyModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './copy.directive';
2
+ export * from './copy.module';
@@ -1,17 +1,16 @@
1
- import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
1
+ import { EventEmitter, TemplateRef } from '@angular/core';
2
2
  import { PaginationResponse } from '@mintplayer/ng-pagination';
3
3
  import { BsDatatableColumnDirective } from '../datatable-column/datatable-column.directive';
4
4
  import { DatatableSettings } from '../datatable-settings';
5
5
  import * as i0 from "@angular/core";
6
- export declare class BsDatatableComponent implements OnInit {
6
+ export declare class BsDatatableComponent {
7
7
  constructor();
8
8
  columns: BsDatatableColumnDirective[];
9
9
  settings: DatatableSettings;
10
10
  data?: PaginationResponse<any>;
11
11
  rowTemplate?: TemplateRef<any>;
12
- onReloadData: EventEmitter<any>;
12
+ reloadData: EventEmitter<any>;
13
13
  columnHeaderClicked(column: BsDatatableColumnDirective): void;
14
- ngOnInit(): void;
15
14
  static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<BsDatatableComponent, "bs-datatable", never, { "settings": "settings"; "data": "data"; }, { "onReloadData": "onReloadData"; }, ["columns"], never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatatableComponent, "bs-datatable", never, { "settings": "settings"; "data": "data"; }, { "reloadData": "reloadData"; }, ["columns"], never>;
17
16
  }
@@ -5,5 +5,5 @@ export declare class BsRowTemplateDirective {
5
5
  private datatableComponent;
6
6
  constructor(datatableComponent: BsDatatableComponent, templateRef: TemplateRef<any>);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BsRowTemplateDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<BsRowTemplateDirective, "[rowTemplate]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsRowTemplateDirective, "[bsRowTemplate]", never, {}, {}, never>;
9
9
  }
@@ -1,10 +1,14 @@
1
- import { OnInit } from '@angular/core';
1
+ import { EventEmitter } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare class BsDatepickerComponent implements OnInit {
4
- constructor();
5
- selectedDate: Date;
6
- currentMonth: Date;
7
- ngOnInit(): void;
3
+ export declare class BsDatepickerComponent {
4
+ _selectedDate: Date;
5
+ selectedDateChange: EventEmitter<Date>;
6
+ get selectedDate(): Date;
7
+ set selectedDate(value: Date);
8
+ _currentMonth: Date;
9
+ currentMonthChange: EventEmitter<Date>;
10
+ get currentMonth(): Date;
11
+ set currentMonth(value: Date);
8
12
  static ɵfac: i0.ɵɵFactoryDeclaration<BsDatepickerComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BsDatepickerComponent, "bs-datepicker", never, {}, {}, never, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatepickerComponent, "bs-datepicker", never, { "selectedDate": "selectedDate"; "currentMonth": "currentMonth"; }, { "selectedDateChange": "selectedDateChange"; "currentMonthChange": "currentMonthChange"; }, never, never>;
10
14
  }
@@ -8,13 +8,13 @@ export declare class BsDropdownMenuDirective extends ClickOutsideDirective {
8
8
  private viewContainerRef;
9
9
  private templateRef;
10
10
  private overlay;
11
- constructor(dropdown: BsDropdownDirective, document: any, viewContainerRef: ViewContainerRef, templateRef: TemplateRef<any>, overlay: Overlay, elementRef: ElementRef<any>, zone: NgZone, platformId: Object);
12
- clickedOutside(ev: MouseEvent): void;
11
+ constructor(dropdown: BsDropdownDirective, viewContainerRef: ViewContainerRef, templateRef: TemplateRef<any>, overlay: Overlay, elementRef: ElementRef<any>, zone: NgZone, platformId: any);
13
12
  private wait;
14
- private document;
15
13
  private destroyed$;
16
14
  private overlayRef;
17
15
  private templatePortal;
16
+ get show(): boolean;
17
+ clickedOutside(ev: MouseEvent): void;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownMenuDirective, never>;
19
19
  static ɵdir: i0.ɵɵDirectiveDeclaration<BsDropdownMenuDirective, "[bsDropdownMenu]", never, {}, {}, never>;
20
20
  }
@@ -1,5 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class BsForDirective {
3
+ defaultCursor: boolean;
3
4
  bsFor: any;
4
5
  onMouseClick(): void;
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<BsForDirective, never>;
@@ -3,17 +3,21 @@ export * from './alert';
3
3
  export * from './calendar';
4
4
  export * from './card';
5
5
  export * from './carousel';
6
+ export * from './code-snippet';
6
7
  export * from './context-menu';
8
+ export * from './copy';
7
9
  export * from './datatable';
8
10
  export * from './datepicker';
9
11
  export * from './dropdown';
10
12
  export * from './file-upload';
11
13
  export * from './for';
12
14
  export * from './list-group';
15
+ export * from './modal';
13
16
  export * from './multiselect';
14
17
  export * from './navbar';
15
18
  export * from './pagination';
16
19
  export * from './progress-bar';
20
+ export * from './rating';
17
21
  export * from './scrollspy';
18
22
  export * from './select2';
19
23
  export * from './snackbar';
@@ -0,0 +1,2 @@
1
+ export * from './modal/modal.component';
2
+ export * from './modal-content/modal-content.component';
@@ -0,0 +1,10 @@
1
+ import { TemplateRef } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsModalComponent {
4
+ constructor();
5
+ header: TemplateRef<any>;
6
+ body: TemplateRef<any>;
7
+ footer: TemplateRef<any>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsModalComponent, "bs-modal", never, {}, {}, never, never>;
10
+ }
@@ -0,0 +1,13 @@
1
+ import { AnimationEvent } from '@angular/animations';
2
+ import { EventEmitter, TemplateRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsModalContentComponent {
5
+ constructor(content: TemplateRef<any>);
6
+ content: TemplateRef<any>;
7
+ private instance;
8
+ animationState: string;
9
+ animationStateChanged: EventEmitter<AnimationEvent>;
10
+ onAnimationChanged(event: AnimationEvent): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalContentComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsModalContentComponent, "bs-modal-content", never, {}, {}, never, never>;
13
+ }
@@ -0,0 +1,3 @@
1
+ export * from './modal-header/modal-header.directive';
2
+ export * from './modal-body/modal-body.directive';
3
+ export * from './modal-footer/modal-footer.directive';
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsModalComponent } from '../../component/modal/modal.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsModalBodyDirective {
5
+ constructor(modal: BsModalComponent, template: TemplateRef<any>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalBodyDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsModalBodyDirective, "[bsModalBody]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsModalComponent } from '../../component/modal/modal.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsModalFooterDirective {
5
+ constructor(modal: BsModalComponent, template: TemplateRef<any>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalFooterDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsModalFooterDirective, "[bsModalFooter]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsModalComponent } from '../../component/modal/modal.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsModalHeaderDirective {
5
+ constructor(modal: BsModalComponent, template: TemplateRef<any>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalHeaderDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsModalHeaderDirective, "[bsModalHeader]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,4 @@
1
+ export * from './component';
2
+ export * from './directives';
3
+ export * from './modal.module';
4
+ export * from './service/modal.service';
@@ -0,0 +1 @@
1
+ export * from './modal-animation-meta';
@@ -0,0 +1,7 @@
1
+ import { OverlayRef } from "@angular/cdk/overlay";
2
+ import { ComponentRef } from "@angular/core";
3
+ import { BsModalContentComponent } from "../component/modal-content/modal-content.component";
4
+ export interface ModalAnimationMeta {
5
+ component: ComponentRef<BsModalContentComponent>;
6
+ overlay: OverlayRef;
7
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./directives/modal-header/modal-header.directive";
3
+ import * as i2 from "./directives/modal-body/modal-body.directive";
4
+ import * as i3 from "./directives/modal-footer/modal-footer.directive";
5
+ import * as i4 from "./component/modal/modal.component";
6
+ import * as i5 from "./component/modal-content/modal-content.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@angular/cdk/overlay";
9
+ export declare class BsModalModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsModalModule, [typeof i1.BsModalHeaderDirective, typeof i2.BsModalBodyDirective, typeof i3.BsModalFooterDirective, typeof i4.BsModalComponent, typeof i5.BsModalContentComponent], [typeof i6.CommonModule, typeof i7.OverlayModule], [typeof i1.BsModalHeaderDirective, typeof i2.BsModalBodyDirective, typeof i3.BsModalFooterDirective, typeof i4.BsModalComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsModalModule>;
13
+ }
@@ -0,0 +1,2 @@
1
+ import { InjectionToken, TemplateRef } from "@angular/core";
2
+ export declare const MODAL_CONTENT: InjectionToken<TemplateRef<any>>;
@@ -0,0 +1,14 @@
1
+ import { Overlay } from '@angular/cdk/overlay';
2
+ import { ComponentFactoryResolver, Injector, TemplateRef } from '@angular/core';
3
+ import { BsModalContentComponent } from '../component/modal-content/modal-content.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class BsModalService {
6
+ private overlay;
7
+ private parentInjector;
8
+ private componentFactoryResolver;
9
+ constructor(overlay: Overlay, parentInjector: Injector, componentFactoryResolver: ComponentFactoryResolver);
10
+ show(template: TemplateRef<any>): BsModalContentComponent;
11
+ hide(modal: BsModalContentComponent): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsModalService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<BsModalService>;
14
+ }
@@ -1,12 +1,13 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
1
+ import { TemplateRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare class BsMultiselectComponent implements OnInit {
4
- constructor();
5
- template: TemplateRef<any>;
3
+ export declare class BsMultiselectComponent {
4
+ headerTemplate: TemplateRef<any>;
5
+ footerTemplate: TemplateRef<any>;
6
+ buttonTemplate: TemplateRef<any>;
6
7
  items: any[];
7
8
  selectedItems: any[];
9
+ defaultButtonTemplate: TemplateRef<any>;
8
10
  itemChange(item: any, event: Event): void;
9
- ngOnInit(): void;
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<BsMultiselectComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<BsMultiselectComponent, "bs-multiselect", never, { "items": "items"; "selectedItems": "selectedItems"; }, {}, ["template"], never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsMultiselectComponent, "bs-multiselect", never, { "items": "items"; "selectedItems": "selectedItems"; }, {}, never, never>;
12
13
  }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsMultiselectComponent } from '../../component/multiselect.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsButtonTemplateDirective {
5
+ constructor(template: TemplateRef<any>, multiselect: BsMultiselectComponent);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsButtonTemplateDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsButtonTemplateDirective, "[bsButtonTemplate]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsMultiselectComponent } from '../../component/multiselect.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsFooterTemplateDirective {
5
+ constructor(template: TemplateRef<any>, multiselect: BsMultiselectComponent);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsFooterTemplateDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsFooterTemplateDirective, "[bsFooterTemplate]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsMultiselectComponent } from '../../component/multiselect.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsHeaderTemplateDirective {
5
+ constructor(template: TemplateRef<any>, multiselect: BsMultiselectComponent);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsHeaderTemplateDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsHeaderTemplateDirective, "[bsHeaderTemplate]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,3 @@
1
+ export * from './header-template/header-template.directive';
2
+ export * from './footer-template/footer-template.directive';
3
+ export * from './button-template/button-template.directive';
@@ -1,2 +1,3 @@
1
- export * from './multiselect.component';
1
+ export * from './component/multiselect.component';
2
+ export * from './directives';
2
3
  export * from './multiselect.module';
@@ -1,10 +1,13 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./multiselect.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../dropdown/dropdown.module";
5
- import * as i4 from "@mintplayer/ng-focus-on-load";
2
+ import * as i1 from "./component/multiselect.component";
3
+ import * as i2 from "./directives/header-template/header-template.directive";
4
+ import * as i3 from "./directives/footer-template/footer-template.directive";
5
+ import * as i4 from "./directives/button-template/button-template.directive";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "../dropdown/dropdown.module";
8
+ import * as i7 from "@mintplayer/ng-focus-on-load";
6
9
  export declare class BsMultiselectModule {
7
10
  static ɵfac: i0.ɵɵFactoryDeclaration<BsMultiselectModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsMultiselectModule, [typeof i1.BsMultiselectComponent], [typeof i2.CommonModule, typeof i3.BsDropdownModule, typeof i4.FocusOnLoadModule], [typeof i1.BsMultiselectComponent]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsMultiselectModule, [typeof i1.BsMultiselectComponent, typeof i2.BsHeaderTemplateDirective, typeof i3.BsFooterTemplateDirective, typeof i4.BsButtonTemplateDirective], [typeof i5.CommonModule, typeof i6.BsDropdownModule, typeof i7.FocusOnLoadModule], [typeof i1.BsMultiselectComponent, typeof i2.BsHeaderTemplateDirective, typeof i3.BsFooterTemplateDirective, typeof i4.BsButtonTemplateDirective]>;
9
12
  static ɵinj: i0.ɵɵInjectorDeclaration<BsMultiselectModule>;
10
13
  }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsNavbarComponent } from '../navbar/navbar.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsExpandButtonDirective {
5
+ constructor(navbar: BsNavbarComponent, templateRef: TemplateRef<any>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsExpandButtonDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsExpandButtonDirective, "[bsExpandButton]", never, {}, {}, never>;
8
+ }
@@ -1,8 +1,11 @@
1
1
  export * from './navbar.module';
2
2
  export * from './navbar/navbar.component';
3
+ export * from './navbar-brand/navbar-brand.component';
3
4
  export * from './navbar-nav/navbar-nav.component';
4
5
  export * from './navbar-dropdown/navbar-dropdown.component';
5
6
  export * from './navbar-item/navbar-item.component';
6
7
  export * from './navbar-content/navbar-content.directive';
8
+ export * from './expand-button/expand-button.directive';
9
+ export * from './navbar-toggler/navbar-toggler.component';
7
10
  export * from './dropdown-toggle/dropdown-toggle.directive';
8
11
  export * from './nav-link/nav-link.directive';
@@ -1,10 +1,11 @@
1
- import { ElementRef } from '@angular/core';
1
+ import { ElementRef, TemplateRef } from '@angular/core';
2
2
  import { BehaviorSubject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class BsNavbarComponent {
5
5
  nav: ElementRef;
6
+ expandButtonTemplate: TemplateRef<any> | null;
6
7
  isExpanded$: BehaviorSubject<boolean>;
7
8
  toggleExpanded(): void;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarComponent, "bs-navbar", never, {}, {}, never, ["*"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarComponent, "bs-navbar", never, {}, {}, never, ["bs-navbar-brand", "*"]>;
10
11
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsNavbarBrandComponent {
3
+ routerLink: any[];
4
+ mxAuto: boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsNavbarBrandComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsNavbarBrandComponent, "bs-navbar-brand", never, { "routerLink": "routerLink"; }, {}, never, ["*"]>;
7
+ }