@mintplayer/ng-bootstrap 13.1.2 → 13.1.7

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 (74) hide show
  1. package/esm2020/index.mjs +2 -1
  2. package/esm2020/lib/components/calendar/calendar.component.mjs +77 -34
  3. package/esm2020/lib/components/card/card/card.component.mjs +1 -2
  4. package/esm2020/lib/components/carousel/carousel/carousel.component.mjs +11 -7
  5. package/esm2020/lib/components/carousel/carousel-image/carousel-image.directive.mjs +10 -7
  6. package/esm2020/lib/components/datatable/datatable/datatable.component.mjs +51 -0
  7. package/esm2020/lib/components/datatable/datatable-column/datatable-column-metadata.mjs +2 -0
  8. package/esm2020/lib/components/datatable/datatable-column/datatable-column.directive.mjs +19 -0
  9. package/esm2020/lib/components/datatable/datatable-settings.mjs +37 -0
  10. package/esm2020/lib/components/datatable/datatable.module.mjs +40 -0
  11. package/esm2020/lib/components/datatable/index.mjs +6 -0
  12. package/esm2020/lib/components/datatable/row-template/row-template.directive.mjs +19 -0
  13. package/esm2020/lib/components/datepicker/datepicker.component.mjs +22 -0
  14. package/esm2020/lib/components/datepicker/datepicker.module.mjs +34 -0
  15. package/esm2020/lib/components/datepicker/index.mjs +3 -0
  16. package/esm2020/lib/components/dropdown/dropdown/dropdown.directive.mjs +31 -0
  17. package/esm2020/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.mjs +64 -0
  18. package/esm2020/lib/components/dropdown/dropdown-toggle/dropdown-toggle.directive.mjs +29 -0
  19. package/esm2020/lib/components/dropdown/dropdown.module.mjs +40 -0
  20. package/esm2020/lib/components/dropdown/index.mjs +5 -0
  21. package/esm2020/lib/components/index.mjs +6 -1
  22. package/esm2020/lib/components/multiselect/index.mjs +3 -0
  23. package/esm2020/lib/components/multiselect/multiselect.component.mjs +33 -0
  24. package/esm2020/lib/components/multiselect/multiselect.module.mjs +30 -0
  25. package/esm2020/lib/components/navbar/nav-link/nav-link.directive.mjs +1 -1
  26. package/esm2020/lib/components/navbar/navbar/navbar.component.mjs +2 -2
  27. package/esm2020/lib/components/pagination/pagination/pagination.component.mjs +146 -0
  28. package/esm2020/lib/components/pagination/pagination.module.mjs +26 -0
  29. package/esm2020/lib/components/scrollspy/component/scrollspy.component.mjs +48 -0
  30. package/esm2020/lib/components/scrollspy/directives/scrollspy.directive.mjs +16 -0
  31. package/esm2020/lib/components/scrollspy/index.mjs +4 -0
  32. package/esm2020/lib/components/scrollspy/scrollspy.module.mjs +31 -0
  33. package/esm2020/lib/interfaces/index.mjs +2 -0
  34. package/esm2020/lib/interfaces/page-with-selection.mjs +2 -0
  35. package/esm2020/lib/pipes/month-name/month-name.pipe.mjs +7 -2
  36. package/esm2020/lib/types/page-number.type.mjs +2 -0
  37. package/fesm2015/mintplayer-ng-bootstrap.mjs +743 -56
  38. package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
  39. package/fesm2020/mintplayer-ng-bootstrap.mjs +739 -56
  40. package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
  41. package/index.d.ts +1 -0
  42. package/lib/components/calendar/calendar.component.d.ts +21 -13
  43. package/lib/components/carousel/carousel/carousel.component.d.ts +4 -3
  44. package/lib/components/carousel/carousel-image/carousel-image.directive.d.ts +5 -2
  45. package/lib/components/datatable/datatable/datatable.component.d.ts +17 -0
  46. package/lib/components/datatable/datatable-column/datatable-column-metadata.d.ts +4 -0
  47. package/lib/components/datatable/datatable-column/datatable-column.directive.d.ts +10 -0
  48. package/lib/components/datatable/datatable-settings.d.ts +15 -0
  49. package/lib/components/datatable/datatable.module.d.ts +11 -0
  50. package/lib/components/datatable/index.d.ts +5 -0
  51. package/lib/components/datatable/row-template/row-template.directive.d.ts +9 -0
  52. package/lib/components/datepicker/datepicker.component.d.ts +10 -0
  53. package/lib/components/datepicker/datepicker.module.d.ts +10 -0
  54. package/lib/components/datepicker/index.d.ts +2 -0
  55. package/lib/components/dropdown/dropdown/dropdown.directive.d.ts +13 -0
  56. package/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.d.ts +17 -0
  57. package/lib/components/dropdown/dropdown-toggle/dropdown-toggle.directive.d.ts +11 -0
  58. package/lib/components/dropdown/dropdown.module.d.ts +11 -0
  59. package/lib/components/dropdown/index.d.ts +4 -0
  60. package/lib/components/index.d.ts +5 -0
  61. package/lib/components/multiselect/index.d.ts +2 -0
  62. package/lib/components/multiselect/multiselect.component.d.ts +11 -0
  63. package/lib/components/multiselect/multiselect.module.d.ts +9 -0
  64. package/lib/components/pagination/pagination/pagination.component.d.ts +45 -0
  65. package/lib/components/pagination/pagination.module.d.ts +8 -0
  66. package/lib/components/scrollspy/component/scrollspy.component.d.ts +15 -0
  67. package/lib/components/scrollspy/directives/scrollspy.directive.d.ts +8 -0
  68. package/lib/components/scrollspy/index.d.ts +3 -0
  69. package/lib/components/scrollspy/scrollspy.module.d.ts +9 -0
  70. package/lib/interfaces/index.d.ts +1 -0
  71. package/lib/interfaces/page-with-selection.d.ts +5 -0
  72. package/lib/pipes/month-name/month-name.pipe.d.ts +1 -1
  73. package/lib/types/page-number.type.d.ts +1 -0
  74. package/package.json +3 -1
@@ -1 +1 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/src/lib/enums/color.enum.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert/alert.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert/alert.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert-close/alert-close.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert-close/alert-close.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card/card.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card/card.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card-header/card-header.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card-header/card-header.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/services/calendar-month/calendar-month.service.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/uc-first/uc-first.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/month-name/month-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/month-name/month-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/uc-first/uc-first.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/weekday-name/weekday-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/weekday-name/weekday-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel-image/carousel-image.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel/carousel.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel/carousel.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group-item/list-group-item.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group-item/list-group-item.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group/list-group.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group/list-group.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar/navbar.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar/navbar.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-nav/navbar-nav.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-nav/navbar-nav.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-item/navbar-item.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-item/navbar-item.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/dropdown-toggle/dropdown-toggle.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/nav-link/nav-link.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-content/navbar-content.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab/accordion-tab.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab/accordion-tab.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion/accordion.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion/accordion.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-page/tab-page.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-page/tab-page.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control/tab-control.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control/tab-control.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/mintplayer-ng-bootstrap.ts"],"sourcesContent":["export enum Color {\n primary,\n secondary,\n success,\n danger,\n warning,\n info,\n light,\n dark,\n body,\n white,\n transparent\n}","import { Component, HostBinding, Input, OnInit } from '@angular/core';\nimport { SlideUpDownAnimation, FadeInOutAnimation } from '@mintplayer/ng-animations';\nimport { Color } from '../../../enums';\n\n@Component({\n selector: 'bs-alert',\n templateUrl: './alert.component.html',\n styleUrls: ['./alert.component.scss'],\n animations: [ SlideUpDownAnimation, FadeInOutAnimation ]\n})\nexport class BsAlertComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit(): void {\n }\n\n @Input() public type: Color = Color.primary;\n colors = Color;\n\n isVisible: boolean = true;\n}\n","<div class=\"mb-3 overflow-hidden\" *ngIf=\"isVisible\" [@fadeInOut]>\n <div class=\"alert mb-0\" [ngClass]=\"'alert-' + colors[type]\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, OnInit } from '@angular/core';\nimport { BsAlertComponent } from '../alert/alert.component';\n\n@Component({\n selector: 'bs-alert-close',\n templateUrl: './alert-close.component.html',\n styleUrls: ['./alert-close.component.scss']\n})\nexport class BsAlertCloseComponent implements OnInit {\n\n constructor(private alert: BsAlertComponent) {\n }\n\n ngOnInit() {\n }\n\n closeAlert() {\n this.alert.isVisible = false;\n }\n \n}\n","<button class=\"btn float-end\" (click)=\"closeAlert()\">\n <span class=\"text-dark\">×</span>\n</button>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsAlertComponent } from './alert/alert.component';\nimport { BsAlertCloseComponent } from './alert-close/alert-close.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsAlertComponent,\n BsAlertCloseComponent\n ],\n exports: [\n BsAlertComponent,\n BsAlertCloseComponent\n ]\n})\nexport class BsAlertModule {}\n","import { AfterViewInit, ContentChild } from '@angular/core';\nimport { Component, OnInit } from '@angular/core';\nimport { BsCardHeaderComponent } from '../card-header/card-header.component';\n\n@Component({\n selector: 'bs-card',\n templateUrl: './card.component.html',\n styleUrls: ['./card.component.scss']\n})\nexport class BsCardComponent implements OnInit, AfterViewInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n ngAfterViewInit() {\n // console.log('header', this.header);\n }\n\n // @ContentChild(CardHeaderComponent) header!: CardHeaderComponent;\n}\n","<div class=\"card\" style=\"width: 18rem;\">\n <ng-content select=\"bs-card-header\"></ng-content>\n <div class=\"card-block\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-card-header',\n templateUrl: './card-header.component.html',\n styleUrls: ['./card-header.component.scss']\n})\nexport class BsCardHeaderComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n}\n","<div class=\"card-header\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCardComponent } from './card/card.component';\nimport { BsCardHeaderComponent } from './card-header/card-header.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsCardComponent,\n BsCardHeaderComponent\n ],\n exports: [\n BsCardComponent,\n BsCardHeaderComponent\n ]\n})\nexport class BsCardModule {}\n","import { Injectable } from '@angular/core';\nimport { DateDayOfMonth } from '../../interfaces/date-day-of-month';\nimport { FirstAndLastDate } from '../../interfaces/first-and-last-date';\nimport { Week } from '../../interfaces/week';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BsCalendarMonthService {\n\n constructor() {\n }\n\n public getWeeks(month: Date) {\n let firstAndLast = this.getFirstAndLastDayOfMonth(month);\n let days = this.dateDiff(firstAndLast.first, firstAndLast.last) + 1;\n let allDays: (DateDayOfMonth | null)[] = [\n ...this.generateList(this.dayOfWeekMondayBased(firstAndLast.first)).map(d => null),\n ...this.generateList(days).map(d => {\n return {\n date: new Date(firstAndLast.first.getFullYear(), firstAndLast.first.getMonth(), firstAndLast.first.getDate() + d),\n dayOfMonth: d + 1,\n };\n }),\n ...this.generateList(6 - this.dayOfWeekMondayBased(firstAndLast.last)).map(d => null),\n ];\n let weeks = this.chunk(allDays, 7);\n let weeksMapped = weeks.map<Week>((w, i) => {\n return {\n number: this.weekOfYear(new Date(month.getFullYear(), month.getMonth(), w.find(d => d !== null)?.dayOfMonth)),\n week: w\n }\n });\n return weeksMapped;\n }\n \n generateList(count: number) {\n return [...Array(count).keys()];\n }\n\n dayOfWeekMondayBased(date: Date) {\n let d = date.getDay() - 1;\n if (d < 0) {\n return 6;\n } else {\n return d;\n }\n }\n\n weekOfYear(date: Date) {\n let dateClone = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate()));\n dateClone.setUTCDate(dateClone.getUTCDate() + 4 - (dateClone.getUTCDay() || 7));\n let yearStart = new Date(Date.UTC(dateClone.getUTCFullYear(), 0, 1));\n let utcDiff = this.toUTC(dateClone) - this.toUTC(yearStart);\n return Math.ceil((utcDiff / (1000 * 60 * 60 * 24) + 1) / 7);\n }\n\n getFirstAndLastDayOfMonth(date: Date) {\n return <FirstAndLastDate>{\n first: new Date(date.getFullYear(), date.getMonth(), 1),\n last: new Date(date.getFullYear(), date.getMonth() + 1, 0)\n };\n }\n\n dateDiff(date1: Date, date2: Date) {\n const utc1 = this.toUTC(date1);\n const utc2 = this.toUTC(date2);\n const msPerDay = 1000 * 60 * 60 * 24;\n return Math.floor((utc2 - utc1) / msPerDay);\n }\n\n dayOfYear(date: Date) {\n const start = new Date(date.getFullYear(), 0, 0);\n return this.dateDiff(start, date);\n }\n\n toUTC(date: Date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());\n }\n\n chunk<T>(items: T[], size: number) {\n let result: T[][] = [];\n for (let i = 0; i < items.length; i += size) {\n result.push(items.slice(i, i + size));\n }\n return result;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'ucFirst'\n})\nexport class UcFirstPipe implements PipeTransform {\n\n transform(value: string, ...args: any[]) {\n return value[0].toUpperCase() + value.slice(1);\n }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'monthName'\n})\nexport class MonthNamePipe implements PipeTransform {\n\n transform(date: Date, ...args: any[]) {\n return date.toLocaleString(\"default\", { month: 'long' });\n }\n\n}\n","import { Component, OnInit } from '@angular/core';\nimport { Week } from '../../interfaces/week';\nimport { BsCalendarMonthService } from '../../services/calendar-month/calendar-month.service';\n\n@Component({\n selector: 'bs-calendar',\n templateUrl: './calendar.component.html',\n styleUrls: ['./calendar.component.scss']\n})\nexport class BsCalendarComponent implements OnInit {\n\n constructor(private calendarMonthService: BsCalendarMonthService) {\n }\n\n daysOfWeek: string[] = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'];\n ngOnInit() {\n this.month = new Date();\n }\n\n //#region SelectedDate\n selectedDate: Date = new Date();\n //#endregion\n //#region Month\n private _month!: Date;\n public get month() {\n return this._month;\n }\n public set month(value: Date) {\n this._month = value;\n this.weeks = this.calendarMonthService.getWeeks(this.month);\n }\n //#endregion\n //#region Weeks\n private _weeks: Week[] = []\n get weeks() {\n return this._weeks;\n }\n set weeks(value: Week[]) {\n this._weeks = value;\n if (this._weeks.length > 1) {\n this.daysOfWeek = this._weeks[1].week.map(d => {\n let date = new Date(this.month.getFullYear(), this.month.getMonth(), d?.dayOfMonth);\n return date.toLocaleString(\"default\", { weekday: 'short' });\n });\n }\n }\n //#endregion\n\n previousMonth() {\n this.month = new Date(this.month.getFullYear(), this.month.getMonth() - 1, 1);\n return false;\n }\n\n nextMonth() {\n this.month = new Date(this.month.getFullYear(), this.month.getMonth() + 1, 1);\n return false;\n }\n\n isSameDate(date1: Date, date2: Date) {\n return (date1.getFullYear() === date2.getFullYear())\n && (date1.getMonth() === date2.getMonth())\n && (date1.getDate() === date2.getDate());\n }\n}\n","<table class=\"table w-auto\">\n <tr>\n <td>\n <button class=\"btn btn-default\" (click)=\"previousMonth()\">\n <i class=\"bi bi-chevron-left fw-bolder\"></i>\n </button>\n </td>\n <td colspan=\"6\" class=\"fw-bolder\">\n {{ month | monthName | ucFirst }}\n {{ month.getFullYear() }}\n </td>\n <td>\n <button class=\"btn btn-default border-bottom-0\" (click)=\"nextMonth()\">\n <i class=\"bi bi-chevron-right fw-bolder\"></i>\n </button>\n </td>\n </tr>\n <tr>\n <th></th>\n <th *ngFor=\"let dayOfWeek of daysOfWeek\">\n {{ dayOfWeek }}\n </th>\n </tr>\n <tr *ngFor=\"let week of weeks\">\n <th>\n {{ week.number }}\n </th>\n <td [class.selected]=\"day === null ? false : isSameDate(selectedDate, day.date)\" *ngFor=\"let day of week.week\" (click)=\"day && selectedDate = day.date\">\n <span *ngIf=\"day !== null\">{{ day.dayOfMonth }}</span>\n </td>\n </tr>\n</table>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MonthNamePipe } from './month-name.pipe';\n\n@NgModule({\n declarations: [\n MonthNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n MonthNamePipe\n ]\n})\nexport class BsMonthNamePipeModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { UcFirstPipe } from './uc-first.pipe';\n\n@NgModule({\n declarations: [\n UcFirstPipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n UcFirstPipe\n ]\n})\nexport class BsUcFirstPipeModule { }\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'weekdayName'\n})\nexport class WeekdayNamePipe implements PipeTransform {\n\n transform(date: Date, ...args: any[]): unknown {\n return date.toLocaleString(\"default\", { weekday: 'short' });\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { WeekdayNamePipe } from './weekday-name.pipe';\n\n\n\n@NgModule({\n declarations: [\n WeekdayNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n WeekdayNamePipe\n ]\n})\nexport class BsWeekdayNameModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCalendarComponent } from './calendar.component';\nimport { BsMonthNamePipeModule } from '../../pipes/month-name/month-name.module';\nimport { BsUcFirstPipeModule } from '../../pipes/uc-first/uc-first.module';\nimport { BsWeekdayNameModule } from '../../pipes/weekday-name/weekday-name.module';\n\n@NgModule({\n declarations: [\n BsCalendarComponent\n ],\n imports: [\n CommonModule,\n BsUcFirstPipeModule,\n BsMonthNamePipeModule,\n BsWeekdayNameModule\n ],\n exports: [\n BsCalendarComponent\n ]\n})\nexport class BsCalendarModule { }\n","import { Directive } from '@angular/core';\n\n@Directive({\n selector: 'img[bsCarouselImage]'\n})\nexport class BsCarouselImageDirective {\n\n constructor() { }\n\n}\n","import { AfterContentInit, Component, ContentChildren, ElementRef, HostBinding, Input, OnDestroy, OnInit, QueryList } from '@angular/core';\nimport { FadeInOutAnimation, CarouselSlideAnimation } from '@mintplayer/ng-animations';\nimport { BehaviorSubject, Observable, Subject } from 'rxjs';\nimport { map, take, takeUntil } from 'rxjs/operators';\nimport { BsCarouselImageDirective } from '../carousel-image/carousel-image.directive';\n\n@Component({\n selector: 'bs-carousel',\n templateUrl: './carousel.component.html',\n styleUrls: ['./carousel.component.scss'],\n animations: [FadeInOutAnimation, CarouselSlideAnimation]\n})\nexport class BsCarouselComponent implements OnInit, OnDestroy, AfterContentInit {\n\n constructor() {\n this.currentImageIndex$ = this.currentImageCounter$\n .pipe(map((counter) => {\n const l = this.images.length;\n return ((counter % l) + l) % l;\n }))\n .pipe(takeUntil(this.destroyed$));\n this.currentImage$ = this.currentImageIndex$\n .pipe(map((index) => this.images.get(index) ?? null))\n .pipe(takeUntil(this.destroyed$));\n }\n\n ngOnInit(): void { }\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n ngAfterContentInit() {\n if (this.images.length > 0) {\n this.currentImageCounter$.next(0);\n } else {\n this.currentImageCounter$.next(-1);\n }\n }\n \n // @HostBinding('@.disabled')\n // public animationsDisabled = false;\n\n @Input() public animation: 'fade' | 'slide' = 'slide';\n\n destroyed$ = new Subject();\n currentImageCounter$ = new BehaviorSubject<number>(-1);\n currentImageIndex$: Observable<number>;\n currentImage$: Observable<ElementRef<HTMLImageElement> | null>;\n\n previousImage() {\n this.currentImageCounter$\n .pipe(take(1))\n .subscribe((currentImageCounter) => {\n this.currentImageCounter$.next(currentImageCounter - 1);\n });\n }\n\n nextImage() {\n this.currentImageCounter$\n .pipe(take(1))\n .subscribe((currentImageCounter) => {\n this.currentImageCounter$.next(currentImageCounter + 1);\n });\n }\n\n setCurrentImage(index: number) {\n this.currentImageCounter$.next(index);\n }\n\n @ContentChildren(BsCarouselImageDirective, { read: ElementRef }) images!: QueryList<ElementRef<HTMLImageElement>>;\n\n}\n","<div class=\"carousel slide\">\n <div class=\"carousel-indicators\">\n <button *ngFor=\"let image of images; let i = index\" type=\"button\" (click)=\"setCurrentImage(i)\" data-bs-target\n [class.active]=\"(currentImageIndex$ | async) === i\"\n [attr.aria-current]=\"(currentImageIndex$ | async) === i ? true : null\"\n [attr.aria-label]=\"'Slide ' + i\"></button>\n </div>\n\n\n\n <!-- [@carouselSlide]=\"currentImageCounter$ | async\" -->\n <div class=\"carousel-inner\" [@carouselSlide]=\"currentImageCounter$ | async\" *ngIf=\"animation === 'slide'\">\n <ng-container *ngFor=\"let image of images; let i = index\">\n <div class=\"carousel-item\" [class.active]=\"true\" *ngIf=\"(currentImageIndex$ | async) === i\">\n <img [src]=\"image.nativeElement.src\" class=\"d-block\" [attr.alt]=\"image.nativeElement.alt\" [class.w-100]=\"true\">\n </div>\n </ng-container>\n </div>\n <div class=\"carousel-inner\" *ngIf=\"animation === 'fade'\">\n <ng-container *ngFor=\"let image of images; let i = index\">\n <div class=\"carousel-item\" [class.active]=\"true\" @fadeInOut *ngIf=\"(currentImageIndex$ | async) === i\">\n <img [src]=\"image.nativeElement.src\" class=\"d-block\" [attr.alt]=\"image.nativeElement.alt\" [class.w-100]=\"true\">\n </div>\n </ng-container>\n </div>\n\n\n\n <button class=\"carousel-control-prev\" type=\"button\" (click)=\"previousImage()\">\n <span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\n <span class=\"visually-hidden\">Previous</span>\n </button>\n <button class=\"carousel-control-next\" type=\"button\" (click)=\"nextImage()\">\n <span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\n <span class=\"visually-hidden\">Next</span>\n </button>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCarouselComponent } from './carousel/carousel.component';\nimport { BsCarouselImageDirective } from './carousel-image/carousel-image.directive';\n\n@NgModule({\n declarations: [\n BsCarouselComponent,\n BsCarouselImageDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsCarouselComponent,\n BsCarouselImageDirective\n ]\n})\nexport class BsCarouselModule { }\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-list-group-item',\n templateUrl: './list-group-item.component.html',\n styleUrls: ['./list-group-item.component.scss']\n})\nexport class BsListGroupItemComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n}\n","<li class=\"list-group-item\">\n <ng-content></ng-content>\n</li>","import { Component, ContentChildren, OnInit, QueryList } from '@angular/core';\nimport { BsListGroupItemComponent } from '../list-group-item/list-group-item.component';\n\n@Component({\n selector: 'bs-list-group',\n templateUrl: './list-group.component.html',\n styleUrls: ['./list-group.component.scss']\n})\nexport class BsListGroupComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n @ContentChildren(BsListGroupItemComponent) items!: QueryList<BsListGroupItemComponent>;\n\n}\n","<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsListGroupComponent } from './list-group/list-group.component';\nimport { BsListGroupItemComponent } from './list-group-item/list-group-item.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ],\n exports: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ]\n})\nexport class BsListGroupModule {}\n","import { Component, ElementRef, ViewChild } from '@angular/core';\n\n@Component({\n selector: 'bs-navbar',\n templateUrl: './navbar.component.html',\n styleUrls: ['./navbar.component.scss'],\n})\nexport class BsNavbarComponent {\n\n constructor() {\n }\n\n isExpanded = false;\n toggleExpanded() {\n this.isExpanded = !this.isExpanded;\n }\n\n @ViewChild('nav') nav!: ElementRef;\n}\n","<nav #nav class=\"navbar navbar-expand-md position-fixed navbar-dark bg-dark\">\n <div class=\"container-fluid\">\n <div class=\"d-flex w-100 w-md-auto\">\n <a class=\"navbar-brand mx-auto mx-md-unset\" href=\"#\">Navbar 2</a>\n <button (click)=\"toggleExpanded()\" class=\"navbar-toggler align-self-end\" type=\"button\" data-toggle=\"collapse\">\n <span class=\"navbar-toggler-icon\"></span>\n </button>\n </div>\n <ng-content></ng-content>\n </div>\n</nav>","import { Component, Input, OnInit } from '@angular/core';\nimport { BsNavbarComponent } from '../navbar/navbar.component';\nimport { SlideUpDownAnimation } from '@mintplayer/ng-animations';\n\n@Component({\n selector: 'bs-navbar-nav',\n templateUrl: './navbar-nav.component.html',\n styleUrls: ['./navbar-nav.component.scss'],\n animations: [SlideUpDownAnimation]\n})\nexport class BsNavbarNavComponent implements OnInit {\n\n constructor(bsNavbar: BsNavbarComponent) {\n this.bsNavbar = bsNavbar;\n }\n\n ngOnInit(): void {\n }\n\n bsNavbar: BsNavbarComponent;\n\n //#region collapse\n private _collapse: boolean = true;\n @Input() public set collapse(value: boolean) {\n this._collapse = value;\n }\n public get collapse() {\n return this._collapse;\n }\n //#endregion\n}\n","<div class=\"navbar-collapse collapse w-100 show\" [@slideUpDown]=\"bsNavbar.isExpanded ? 'down' : 'up'\">\n <ul class=\"navbar-nav mr-auto\">\n <ng-content></ng-content>\n </ul>\n</div>","import { AfterContentChecked, Component, ContentChildren, ElementRef, forwardRef, Input, OnInit, Optional, QueryList } from '@angular/core';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Component({\n selector: 'bs-navbar-item',\n templateUrl: './navbar-item.component.html',\n styleUrls: ['./navbar-item.component.scss']\n})\nexport class BsNavbarItemComponent implements OnInit, AfterContentChecked {\n\n constructor(@Optional() parentDropdown: BsNavbarDropdownComponent, private element: ElementRef) {\n this.parentDropdown = parentDropdown;\n }\n\n parentDropdown: BsNavbarDropdownComponent;\n hasDropdown: boolean = false;\n anchorTag: HTMLAnchorElement | null = null;\n\n ngOnInit(): void {\n }\n\n ngAfterContentChecked() {\n if (this.hasDropdown) {\n (<any>window).element = this.element.nativeElement;\n this.anchorTag = this.element.nativeElement.querySelector('li a');\n (this.anchorTag) && this.anchorTag.classList.add('dropdown-toggle');\n\n if (this.anchorTag && !this.anchorTag.onclick) {\n this.anchorTag.onclick = (ev: Event) => {\n ev.preventDefault();\n // Normally there should be only one dropdown in this list\n this.dropdowns.forEach((dropdown) => {\n if (!(dropdown.isVisible = !dropdown.isVisible)) {\n dropdown.childDropdowns.forEach((child) => {\n child.isVisible = false;\n });\n }\n });\n return false;\n }\n }\n }\n }\n\n @ContentChildren(forwardRef(() => BsNavbarDropdownComponent)) dropdowns!: QueryList<BsNavbarDropdownComponent>;\n}\n","<li [class.nav-item]=\"parentDropdown === null\" [class.dropdown]=\"(dropdowns.length > 0) && (parentDropdown === null)\" [class.dropend]=\"(dropdowns.length > 0) && (parentDropdown !== null)\">\n <ng-content></ng-content>\n</li>","import { Component, ContentChildren, ElementRef, forwardRef, Host, Inject, OnInit, Optional, QueryList, SkipSelf } from '@angular/core';\nimport { BsNavbarItemComponent } from '../navbar-item/navbar-item.component';\n\n@Component({\n selector: 'bs-navbar-dropdown',\n templateUrl: './navbar-dropdown.component.html',\n styleUrls: ['./navbar-dropdown.component.scss']\n})\nexport class BsNavbarDropdownComponent implements OnInit {\n\n constructor(\n @SkipSelf() @Host() @Optional() parentDropdown: BsNavbarDropdownComponent,\n @Host() @Inject(forwardRef(() => BsNavbarItemComponent)) navbarItem: BsNavbarItemComponent\n ) {\n this.parentDropdown = parentDropdown;\n this.navbarItem = navbarItem;\n }\n\n isVisible: boolean = false;\n navbarItem: BsNavbarItemComponent;\n parentDropdown: BsNavbarDropdownComponent;\n\n get elementsToExclude() {\n return [this.navbarItem.anchorTag].filter((a) => a).map((a) => <HTMLElement>a);\n }\n\n ngOnInit(): void {\n }\n\n // @ContentChildren(BsNavbarDropdownComponent, { descendants: true }) childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n @ContentChildren(forwardRef(() => BsNavbarDropdownComponent), { descendants: true }) childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n}\n","<ul class=\"dropdown-menu\" [class.show]=\"isVisible\" [class.submenu]=\"!!parentDropdown\" (clickOutside)=\"isVisible = false\" [exclude]=\"elementsToExclude\" aria-labelledby=\"navbarDropdown\">\n <ng-content></ng-content>\n</ul>","import { AfterContentInit, Component, ContentChildren, Directive, ElementRef, forwardRef, Inject, Optional, QueryList } from '@angular/core';\nimport { BsNavbarItemComponent } from '../navbar-item/navbar-item.component';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Directive({\n // selector: 'bs-navbar-item > a[routerLink]',\n selector: 'bs-navbar-item',\n queries: {\n childDropdowns: new ContentChildren(BsNavbarDropdownComponent)\n }\n})\nexport class DropdownToggleDirective implements AfterContentInit {\n\n constructor(\n private elementRef: ElementRef<HTMLAnchorElement>,\n @Inject(forwardRef(() => BsNavbarItemComponent)) private bsNavbarItem: BsNavbarItemComponent,\n @Optional() @Inject(forwardRef(() => BsNavbarDropdownComponent)) parentDropdown: BsNavbarDropdownComponent\n ) {\n }\n\n childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n\n ngAfterContentInit() {\n if (this.bsNavbarItem.dropdowns.length > 0) {\n this.bsNavbarItem.hasDropdown = true;\n }\n }\n}","import { Component, Directive, ElementRef, forwardRef, Inject, Optional } from '@angular/core';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Directive({\n selector: 'bs-navbar-item > a[routerLink]'\n})\nexport class NavLinkDirective {\n\n constructor(\n private elementRef: ElementRef<HTMLAnchorElement>,\n @Optional() @Inject(forwardRef(() => BsNavbarDropdownComponent)) parentDropdown: BsNavbarDropdownComponent\n ) {\n if (parentDropdown == null) {\n this.elementRef.nativeElement.classList.add('nav-link');\n } else {\n this.elementRef.nativeElement.classList.add('dropdown-item');\n }\n }\n\n}","import { AfterViewInit, Directive, ElementRef, Input, OnDestroy } from '@angular/core';\nimport { BsNavbarComponent } from '../navbar/navbar.component';\n\n@Directive({\n selector: '[navbarContent]'\n})\nexport class NavbarContentDirective implements AfterViewInit, OnDestroy {\n\n constructor(private element: ElementRef) {\n this.resizeObserver = new ResizeObserver((entries) => {\n let height = entries[0].contentRect.height;\n this.element.nativeElement.style.paddingTop = (this.initialPadding + height) + 'px';\n });\n }\n\n @Input('navbarContent') navbar!: BsNavbarComponent;\n\n ngAfterViewInit() {\n let p = parseInt(this.element.nativeElement.style.paddingTop.replace(/px$/, ''));\n this.initialPadding = isNaN(p) ? 0 : p;\n this.resizeObserver.observe(this.navbar.nav.nativeElement);\n }\n\n ngOnDestroy() {\n this.resizeObserver.unobserve(this.navbar.nav.nativeElement);\n }\n\n resizeObserver: ResizeObserver;\n initialPadding: number = 0;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { RouterModule } from '@angular/router';\nimport { ClickOutsideModule } from '@mintplayer/ng-click-outside';\nimport { BsNavbarComponent } from './navbar/navbar.component';\nimport { BsNavbarNavComponent } from './navbar-nav/navbar-nav.component';\nimport { BsNavbarDropdownComponent } from './navbar-dropdown/navbar-dropdown.component';\nimport { BsNavbarItemComponent } from './navbar-item/navbar-item.component';\nimport { DropdownToggleDirective } from './dropdown-toggle/dropdown-toggle.directive';\nimport { NavLinkDirective } from './nav-link/nav-link.directive';\nimport { NavbarContentDirective } from './navbar-content/navbar-content.directive';\n\n@NgModule({\n declarations: [\n BsNavbarComponent,\n BsNavbarNavComponent,\n BsNavbarDropdownComponent,\n BsNavbarItemComponent,\n\n DropdownToggleDirective,\n NavLinkDirective,\n NavbarContentDirective\n ],\n imports: [\n CommonModule,\n RouterModule,\n ClickOutsideModule\n ],\n exports: [\n BsNavbarComponent,\n BsNavbarNavComponent,\n BsNavbarDropdownComponent,\n BsNavbarItemComponent,\n\n DropdownToggleDirective,\n NavLinkDirective,\n NavbarContentDirective\n ]\n})\nexport class BsNavbarModule { }\n","import { Component, Input, OnInit } from '@angular/core';\nimport { SlideUpDownAnimation } from '@mintplayer/ng-animations';\nimport { BsAccordionComponent } from '../accordion/accordion.component';\n\n@Component({\n selector: 'bs-accordion-tab',\n templateUrl: './accordion-tab.component.html',\n styleUrls: ['./accordion-tab.component.scss'],\n animations: [SlideUpDownAnimation]\n})\nexport class BsAccordionTabComponent implements OnInit {\n\n accordion: BsAccordionComponent;\n constructor(accordion: BsAccordionComponent) {\n this.accordion = accordion;\n }\n\n ngOnInit() {\n }\n\n headerClicked(event: MouseEvent) {\n if (this.accordion.activeTab === this) {\n this.accordion.activeTab = null;\n } else {\n this.accordion.activeTab = this;\n }\n }\n}\n","<div class=\"card\">\n <ng-content select=\"bs-accordion-tab-header\"></ng-content>\n <div class=\"card-block overflow-hidden\" [@slideUpDown]=\"(accordion.activeTab === this) ? 'down' : 'up'\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, ContentChildren, OnInit } from '@angular/core';\nimport { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';\n\n@Component({\n selector: 'bs-accordion',\n templateUrl: './accordion.component.html',\n styleUrls: ['./accordion.component.scss']\n})\nexport class BsAccordionComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n @ContentChildren(BsAccordionTabComponent) tabPages!: BsAccordionTabComponent[];\n activeTab: BsAccordionTabComponent | null = null;\n}\n","<ng-content></ng-content>","import { Component, OnInit } from '@angular/core';\nimport { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';\nimport { BsAccordionComponent } from '../accordion/accordion.component';\n\n@Component({\n selector: 'bs-accordion-tab-header',\n templateUrl: './accordion-tab-header.component.html',\n styleUrls: ['./accordion-tab-header.component.scss']\n})\nexport class BsAccordionTabHeaderComponent implements OnInit {\n\n constructor(private accordionTab: BsAccordionTabComponent, private accordion: BsAccordionComponent) {\n }\n\n ngOnInit() {\n }\n\n headerClicked(event: MouseEvent) {\n if (this.accordion.activeTab === this.accordionTab) {\n this.accordion.activeTab = null;\n } else {\n this.accordion.activeTab = this.accordionTab;\n }\n }\n}\n","<div class=\"card-header cursor-pointer\" (click)=\"headerClicked($event)\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { BsAccordionComponent } from './accordion/accordion.component';\nimport { BsAccordionTabComponent } from './accordion-tab/accordion-tab.component';\nimport { BsAccordionTabHeaderComponent } from './accordion-tab-header/accordion-tab-header.component';\n\n@NgModule({\n declarations: [\n BsAccordionComponent,\n BsAccordionTabComponent,\n BsAccordionTabHeaderComponent\n ],\n imports: [\n CommonModule,\n BrowserAnimationsModule\n ],\n exports: [\n BsAccordionComponent,\n BsAccordionTabComponent,\n BsAccordionTabHeaderComponent\n ]\n})\nexport class BsAccordionModule { }\n","import { Component, OnInit, ContentChild, TemplateRef, Input } from '@angular/core';\nimport { BsTabControlComponent } from '../tab-control/tab-control.component';\n\n@Component({\n selector: 'bs-tab-page',\n templateUrl: './tab-page.component.html',\n styleUrls: ['./tab-page.component.scss']\n})\nexport class BsTabPageComponent implements OnInit {\n\n tabControl: BsTabControlComponent;\n constructor(tabControl: BsTabControlComponent) {\n this.tabControl = tabControl;\n }\n\n @ContentChild(TemplateRef) headerTemplate!: TemplateRef<any>;\n\n @Input() disabled: boolean = false;\n\n ngOnInit() {\n }\n\n}\n","<ng-content *ngIf=\"tabControl.activeTab === this\"></ng-content>","import { Component, ContentChildren, OnInit } from '@angular/core';\nimport { BsTabPageComponent } from '../tab-page/tab-page.component';\n\n@Component({\n selector: 'bs-tab-control',\n templateUrl: './tab-control.component.html',\n styleUrls: ['./tab-control.component.scss']\n})\nexport class BsTabControlComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n setActiveTab(tab: BsTabPageComponent) {\n if (!tab.disabled) {\n this.activeTab = tab;\n }\n return false;\n }\n\n @ContentChildren(BsTabPageComponent) tabPages!: BsTabPageComponent[];\n activeTab: BsTabPageComponent | null = null;\n}\n","<ul class=\"nav nav-tabs\">\n <ng-container *ngFor=\"let tab of tabPages\">\n <li class=\"nav-item\" (click)=\"setActiveTab(tab)\" *ngIf=\"!!tab.headerTemplate\">\n <a class=\"nav-link\" [class.active]=\"activeTab === tab\" [class.disabled]=\"tab.disabled\" [attr.aria-current]=\"activeTab === tab ? 'page' : null\" [attr.aria-disabled]=\"tab.disabled\" href=\"\">\n <ng-container [ngTemplateOutlet]=\"tab.headerTemplate\"></ng-container>\n </a>\n </li>\n </ng-container>\n</ul>\n<!-- <div class=\"container\"> -->\n <ng-content></ng-content>\n<!-- </div> -->","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsTabControlComponent } from './tab-control/tab-control.component';\nimport { BsTabPageComponent } from './tab-page/tab-page.component';\n\n@NgModule({\n declarations: [\n BsTabControlComponent,\n BsTabPageComponent,\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsTabControlComponent,\n BsTabPageComponent,\n ]\n})\nexport class BsTabControlModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"mintplayer-ng-bootstrap.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/src/lib/enums/color.enum.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert/alert.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert/alert.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert-close/alert-close.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert-close/alert-close.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/alert/alert.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card/card.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card/card.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card-header/card-header.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card-header/card-header.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/card/card.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/services/calendar-month/calendar-month.service.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/uc-first/uc-first.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/month-name/month-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/month-name/month-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/uc-first/uc-first.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/weekday-name/weekday-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/pipes/weekday-name/weekday-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/calendar/calendar.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel-image/carousel-image.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel/carousel.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel/carousel.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/carousel/carousel.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/datatable-column/datatable-column.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/datatable-settings.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/pagination/pagination/pagination.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/pagination/pagination/pagination.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/datatable/datatable.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/datatable/datatable.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/row-template/row-template.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/pagination/pagination.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datatable/datatable.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group-item/list-group-item.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group-item/list-group-item.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group/list-group.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group/list-group.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/list-group/list-group.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar/navbar.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar/navbar.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-nav/navbar-nav.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-nav/navbar-nav.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-item/navbar-item.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-item/navbar-item.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-dropdown/navbar-dropdown.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/dropdown-toggle/dropdown-toggle.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/nav-link/nav-link.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar-content/navbar-content.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/navbar/navbar.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab/accordion-tab.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab/accordion-tab.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion/accordion.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion/accordion.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion-tab-header/accordion-tab-header.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/accordion/accordion.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-page/tab-page.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-page/tab-page.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control/tab-control.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control/tab-control.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/tab-control/tab-control.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/scrollspy/directives/scrollspy.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/scrollspy/component/scrollspy.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/scrollspy/component/scrollspy.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/scrollspy/scrollspy.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/dropdown/dropdown-menu/dropdown-menu.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/dropdown/dropdown-toggle/dropdown-toggle.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/dropdown/dropdown/dropdown.directive.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/dropdown/dropdown.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datepicker/datepicker.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datepicker/datepicker.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/datepicker/datepicker.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/multiselect/multiselect.component.ts","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/multiselect/multiselect.component.html","../../../../libs/mintplayer-ng-bootstrap/src/lib/components/multiselect/multiselect.module.ts","../../../../libs/mintplayer-ng-bootstrap/src/mintplayer-ng-bootstrap.ts"],"sourcesContent":["export enum Color {\n primary,\n secondary,\n success,\n danger,\n warning,\n info,\n light,\n dark,\n body,\n white,\n transparent\n}","import { Component, HostBinding, Input, OnInit } from '@angular/core';\nimport { SlideUpDownAnimation, FadeInOutAnimation } from '@mintplayer/ng-animations';\nimport { Color } from '../../../enums';\n\n@Component({\n selector: 'bs-alert',\n templateUrl: './alert.component.html',\n styleUrls: ['./alert.component.scss'],\n animations: [ SlideUpDownAnimation, FadeInOutAnimation ]\n})\nexport class BsAlertComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit(): void {\n }\n\n @Input() public type: Color = Color.primary;\n colors = Color;\n\n isVisible: boolean = true;\n}\n","<div class=\"mb-3 overflow-hidden\" *ngIf=\"isVisible\" [@fadeInOut]>\n <div class=\"alert mb-0\" [ngClass]=\"'alert-' + colors[type]\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, OnInit } from '@angular/core';\nimport { BsAlertComponent } from '../alert/alert.component';\n\n@Component({\n selector: 'bs-alert-close',\n templateUrl: './alert-close.component.html',\n styleUrls: ['./alert-close.component.scss']\n})\nexport class BsAlertCloseComponent implements OnInit {\n\n constructor(private alert: BsAlertComponent) {\n }\n\n ngOnInit() {\n }\n\n closeAlert() {\n this.alert.isVisible = false;\n }\n \n}\n","<button class=\"btn float-end\" (click)=\"closeAlert()\">\n <span class=\"text-dark\">×</span>\n</button>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsAlertComponent } from './alert/alert.component';\nimport { BsAlertCloseComponent } from './alert-close/alert-close.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsAlertComponent,\n BsAlertCloseComponent\n ],\n exports: [\n BsAlertComponent,\n BsAlertCloseComponent\n ]\n})\nexport class BsAlertModule {}\n","import { AfterViewInit, ContentChild } from '@angular/core';\nimport { Component, OnInit } from '@angular/core';\nimport { BsCardHeaderComponent } from '../card-header/card-header.component';\n\n@Component({\n selector: 'bs-card',\n templateUrl: './card.component.html',\n styleUrls: ['./card.component.scss']\n})\nexport class BsCardComponent implements OnInit, AfterViewInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n ngAfterViewInit() {\n }\n\n // @ContentChild(CardHeaderComponent) header!: CardHeaderComponent;\n}\n","<div class=\"card\" style=\"width: 18rem;\">\n <ng-content select=\"bs-card-header\"></ng-content>\n <div class=\"card-block\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-card-header',\n templateUrl: './card-header.component.html',\n styleUrls: ['./card-header.component.scss']\n})\nexport class BsCardHeaderComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n}\n","<div class=\"card-header\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCardComponent } from './card/card.component';\nimport { BsCardHeaderComponent } from './card-header/card-header.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsCardComponent,\n BsCardHeaderComponent\n ],\n exports: [\n BsCardComponent,\n BsCardHeaderComponent\n ]\n})\nexport class BsCardModule {}\n","import { Injectable } from '@angular/core';\nimport { DateDayOfMonth } from '../../interfaces/date-day-of-month';\nimport { FirstAndLastDate } from '../../interfaces/first-and-last-date';\nimport { Week } from '../../interfaces/week';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BsCalendarMonthService {\n\n constructor() {\n }\n\n public getWeeks(month: Date) {\n let firstAndLast = this.getFirstAndLastDayOfMonth(month);\n let days = this.dateDiff(firstAndLast.first, firstAndLast.last) + 1;\n let allDays: (DateDayOfMonth | null)[] = [\n ...this.generateList(this.dayOfWeekMondayBased(firstAndLast.first)).map(d => null),\n ...this.generateList(days).map(d => {\n return {\n date: new Date(firstAndLast.first.getFullYear(), firstAndLast.first.getMonth(), firstAndLast.first.getDate() + d),\n dayOfMonth: d + 1,\n };\n }),\n ...this.generateList(6 - this.dayOfWeekMondayBased(firstAndLast.last)).map(d => null),\n ];\n let weeks = this.chunk(allDays, 7);\n let weeksMapped = weeks.map<Week>((w, i) => {\n return {\n number: this.weekOfYear(new Date(month.getFullYear(), month.getMonth(), w.find(d => d !== null)?.dayOfMonth)),\n week: w\n }\n });\n return weeksMapped;\n }\n \n generateList(count: number) {\n return [...Array(count).keys()];\n }\n\n dayOfWeekMondayBased(date: Date) {\n let d = date.getDay() - 1;\n if (d < 0) {\n return 6;\n } else {\n return d;\n }\n }\n\n weekOfYear(date: Date) {\n let dateClone = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate()));\n dateClone.setUTCDate(dateClone.getUTCDate() + 4 - (dateClone.getUTCDay() || 7));\n let yearStart = new Date(Date.UTC(dateClone.getUTCFullYear(), 0, 1));\n let utcDiff = this.toUTC(dateClone) - this.toUTC(yearStart);\n return Math.ceil((utcDiff / (1000 * 60 * 60 * 24) + 1) / 7);\n }\n\n getFirstAndLastDayOfMonth(date: Date) {\n return <FirstAndLastDate>{\n first: new Date(date.getFullYear(), date.getMonth(), 1),\n last: new Date(date.getFullYear(), date.getMonth() + 1, 0)\n };\n }\n\n dateDiff(date1: Date, date2: Date) {\n const utc1 = this.toUTC(date1);\n const utc2 = this.toUTC(date2);\n const msPerDay = 1000 * 60 * 60 * 24;\n return Math.floor((utc2 - utc1) / msPerDay);\n }\n\n dayOfYear(date: Date) {\n const start = new Date(date.getFullYear(), 0, 0);\n return this.dateDiff(start, date);\n }\n\n toUTC(date: Date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());\n }\n\n chunk<T>(items: T[], size: number) {\n let result: T[][] = [];\n for (let i = 0; i < items.length; i += size) {\n result.push(items.slice(i, i + size));\n }\n return result;\n }\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'ucFirst'\n})\nexport class UcFirstPipe implements PipeTransform {\n\n transform(value: string, ...args: any[]) {\n return value[0].toUpperCase() + value.slice(1);\n }\n\n}\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'monthName'\n})\nexport class MonthNamePipe implements PipeTransform {\n\n transform(date: Date | null, ...args: any[]) {\n if (date) {\n return date.toLocaleString(\"default\", { month: 'long' });\n } else {\n return '';\n }\n }\n\n}\n","import {\n ChangeDetectorRef,\n Component,\n EventEmitter,\n Input,\n OnDestroy,\n OnInit,\n Output,\n} from '@angular/core';\nimport {\n BehaviorSubject,\n filter,\n map,\n Observable,\n Subject,\n take,\n takeUntil,\n} from 'rxjs';\nimport { DateDayOfMonth } from '../../interfaces/date-day-of-month';\nimport { Week } from '../../interfaces/week';\nimport { BsCalendarMonthService } from '../../services/calendar-month/calendar-month.service';\n\n@Component({\n selector: 'bs-calendar',\n templateUrl: './calendar.component.html',\n styleUrls: ['./calendar.component.scss'],\n})\nexport class BsCalendarComponent implements OnDestroy {\n constructor(\n private calendarMonthService: BsCalendarMonthService,\n private ref: ChangeDetectorRef\n ) {\n this.weeks$ = this.currentMonth$\n .pipe(map((month) => this.calendarMonthService.getWeeks(month)))\n .pipe(takeUntil(this.destroyed$));\n this.daysOfWeek$ = this.weeks$\n .pipe(filter((weeks) => weeks.length > 1))\n .pipe(map((weeks) => weeks[1].week))\n .pipe(\n map((week) => {\n const firstDay = week[0];\n if (firstDay) {\n return week.map((d) => {\n const date = new Date(\n firstDay.date.getFullYear(),\n firstDay.date.getMonth(),\n d?.dayOfMonth\n );\n return date.toLocaleString('default', { weekday: 'short' });\n });\n } else {\n return [];\n }\n })\n );\n this.selectedDate$.pipe(takeUntil(this.destroyed$)).subscribe((date) => {\n this.selectedDateChange.emit(date);\n });\n this.currentMonth$.pipe(takeUntil(this.destroyed$)).subscribe((month) => {\n this.currentMonthChange.emit(month);\n });\n }\n\n private destroyed$ = new Subject();\n weeks$: Observable<Week[]>;\n daysOfWeek$: Observable<string[]>;\n\n //#region CurrentMonth\n currentMonth$ = new BehaviorSubject<Date>(new Date());\n @Output() public currentMonthChange = new EventEmitter<Date>();\n get currentMonth() {\n return this.currentMonth$.value;\n }\n @Input() set currentMonth(value: Date) {\n this.currentMonth$.next(value);\n }\n //#endregion\n //#region SelectedDate\n selectedDate$ = new BehaviorSubject<Date>(new Date());\n @Output() public selectedDateChange = new EventEmitter<Date>();\n get selectedDate() {\n return this.selectedDate$.value;\n }\n @Input() set selectedDate(value: Date) {\n this.selectedDate$.next(value);\n }\n //#endregion\n\n daysOfWeek: string[] = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'];\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n previousMonth() {\n this.currentMonth$.pipe(take(1)).subscribe((month) => {\n this.currentMonth$.next(\n new Date(month.getFullYear(), month.getMonth() - 1, 1)\n );\n });\n\n return false;\n }\n\n nextMonth() {\n this.currentMonth$.pipe(take(1)).subscribe((month) => {\n this.currentMonth$.next(\n new Date(month.getFullYear(), month.getMonth() + 1, 1)\n );\n });\n\n return false;\n }\n\n isSameDate(date1: Date | null, date2: Date | null) {\n if (date1 === null && date2 === null) return true;\n if (date1 === null || date2 === null) return false;\n\n return (\n date1.getFullYear() === date2.getFullYear() &&\n date1.getMonth() === date2.getMonth() &&\n date1.getDate() === date2.getDate()\n );\n }\n\n goto(day: DateDayOfMonth | null) {\n if (day) {\n this.selectedDate$.next(day.date);\n }\n }\n}\n","<table class=\"table w-auto mb-0\">\n <tr>\n <td>\n <button class=\"btn btn-default\" (click)=\"previousMonth()\">\n <i class=\"bi bi-chevron-left fw-bolder\"></i>\n </button>\n </td>\n <td colspan=\"6\" class=\"fw-bolder\">\n {{ currentMonth$ | async | monthName | ucFirst }}\n {{ (currentMonth$ | async)?.getFullYear() }}\n </td>\n <td>\n <button class=\"btn btn-default border-bottom-0\" (click)=\"nextMonth()\">\n <i class=\"bi bi-chevron-right fw-bolder\"></i>\n </button>\n </td>\n </tr>\n <tr>\n <th></th>\n <th *ngFor=\"let dayOfWeek of daysOfWeek\">\n {{ dayOfWeek }}\n </th>\n </tr>\n <tr *ngFor=\"let week of (weeks$ | async)\">\n <th>\n {{ week.number }}\n </th>\n <td [class.selected]=\"day === null ? false : isSameDate(selectedDate$ | async, day.date)\" *ngFor=\"let day of week.week\" (click)=\"goto(day)\">\n <span *ngIf=\"day !== null\">{{ day.dayOfMonth }}</span>\n </td>\n </tr>\n</table>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MonthNamePipe } from './month-name.pipe';\n\n@NgModule({\n declarations: [\n MonthNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n MonthNamePipe\n ]\n})\nexport class BsMonthNamePipeModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { UcFirstPipe } from './uc-first.pipe';\n\n@NgModule({\n declarations: [\n UcFirstPipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n UcFirstPipe\n ]\n})\nexport class BsUcFirstPipeModule { }\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'weekdayName'\n})\nexport class WeekdayNamePipe implements PipeTransform {\n\n transform(date: Date, ...args: any[]): unknown {\n return date.toLocaleString(\"default\", { weekday: 'short' });\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { WeekdayNamePipe } from './weekday-name.pipe';\n\n\n\n@NgModule({\n declarations: [\n WeekdayNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n WeekdayNamePipe\n ]\n})\nexport class BsWeekdayNameModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCalendarComponent } from './calendar.component';\nimport { BsMonthNamePipeModule } from '../../pipes/month-name/month-name.module';\nimport { BsUcFirstPipeModule } from '../../pipes/uc-first/uc-first.module';\nimport { BsWeekdayNameModule } from '../../pipes/weekday-name/weekday-name.module';\n\n@NgModule({\n declarations: [\n BsCalendarComponent\n ],\n imports: [\n CommonModule,\n BsUcFirstPipeModule,\n BsMonthNamePipeModule,\n BsWeekdayNameModule\n ],\n exports: [\n BsCalendarComponent\n ]\n})\nexport class BsCalendarModule { }\n","import { Directive, TemplateRef } from '@angular/core';\n\n@Directive({\n selector: '*[bsCarouselImage]'\n})\nexport class BsCarouselImageDirective {\n\n public itemTemplate: TemplateRef<any>;\n \n constructor(private templateRef: TemplateRef<any>) {\n this.itemTemplate = this.templateRef;\n }\n\n}\n","import { AfterContentInit, Component, ContentChildren, ElementRef, HostBinding, Input, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';\nimport { FadeInOutAnimation, CarouselSlideAnimation } from '@mintplayer/ng-animations';\nimport { BehaviorSubject, Observable, Subject } from 'rxjs';\nimport { map, tap, take, takeUntil } from 'rxjs/operators';\nimport { BsCarouselImageDirective } from '../carousel-image/carousel-image.directive';\n\n@Component({\n selector: 'bs-carousel',\n templateUrl: './carousel.component.html',\n styleUrls: ['./carousel.component.scss'],\n animations: [FadeInOutAnimation, CarouselSlideAnimation]\n})\nexport class BsCarouselComponent implements OnInit, OnDestroy, AfterContentInit {\n\n constructor() {\n this.currentImageIndex$ = this.currentImageCounter$\n .pipe(map((counter) => {\n const l = this.images.length;\n return ((counter % l) + l) % l;\n }))\n .pipe(takeUntil(this.destroyed$));\n this.currentImage$ = this.currentImageIndex$\n .pipe(map((index) => this.images.get(index)?.itemTemplate ?? null))\n .pipe(takeUntil(this.destroyed$));\n }\n\n ngOnInit(): void { }\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n ngAfterContentInit() {\n if (this.images.length > 0) {\n this.currentImageCounter$.next(0);\n } else {\n this.currentImageCounter$.next(-1);\n }\n }\n \n // @HostBinding('@.disabled')\n // public animationsDisabled = false;\n\n @Input() public animation: 'fade' | 'slide' = 'slide';\n\n destroyed$ = new Subject();\n currentImageCounter$ = new BehaviorSubject<number>(-1);\n currentImageIndex$: Observable<number>;\n currentImage$: Observable<TemplateRef<any> | null>;\n\n previousImage() {\n this.currentImageCounter$\n .pipe(take(1))\n .subscribe((currentImageCounter) => {\n this.currentImageCounter$.next(currentImageCounter - 1);\n });\n }\n\n nextImage() {\n this.currentImageCounter$\n .pipe(take(1))\n .subscribe((currentImageCounter) => {\n this.currentImageCounter$.next(currentImageCounter + 1);\n });\n }\n\n setCurrentImage(index: number) {\n const currentValue = this.currentImageCounter$.value;\n const l = this.images.length;\n const counterMod = ((currentValue % l) + l) % l;\n const newValue = currentValue - counterMod + index;\n this.currentImageCounter$.next(newValue);\n }\n\n @ContentChildren(BsCarouselImageDirective) images!: QueryList<BsCarouselImageDirective>;\n\n}\n","<div class=\"carousel slide\">\n <div class=\"carousel-indicators\">\n <button *ngFor=\"let image of images; let i = index\" type=\"button\" (click)=\"setCurrentImage(i)\"\n [class.active]=\"(currentImageIndex$ | async) === i\" data-bs-target\n [attr.aria-current]=\"(currentImageIndex$ | async) === i ? true : null\"\n [attr.aria-label]=\"'Slide ' + i\"></button>\n </div>\n\n <div class=\"carousel-inner\" [@carouselSlide]=\"currentImageCounter$ | async\" *ngIf=\"animation === 'slide'\">\n <ng-container *ngFor=\"let image of images; let i = index\">\n <div class=\"carousel-item\" [class.active]=\"true\" *ngIf=\"(currentImageIndex$ | async) === i\">\n <ng-container [ngTemplateOutlet]=\"image.itemTemplate\"></ng-container> \n </div>\n </ng-container>\n </div>\n <div class=\"carousel-inner\" *ngIf=\"animation === 'fade'\">\n <ng-container *ngFor=\"let image of images; let i = index\">\n <div class=\"carousel-item\" [class.active]=\"true\" @fadeInOut *ngIf=\"(currentImageIndex$ | async) === i\">\n <ng-container [ngTemplateOutlet]=\"image.itemTemplate\"></ng-container> \n </div>\n </ng-container>\n </div>\n\n <button class=\"carousel-control-prev\" type=\"button\" (click)=\"previousImage()\">\n <span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\n <span class=\"visually-hidden\">Previous</span>\n </button>\n <button class=\"carousel-control-next\" type=\"button\" (click)=\"nextImage()\">\n <span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\n <span class=\"visually-hidden\">Next</span>\n </button>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCarouselComponent } from './carousel/carousel.component';\nimport { BsCarouselImageDirective } from './carousel-image/carousel-image.directive';\n\n@NgModule({\n declarations: [\n BsCarouselComponent,\n BsCarouselImageDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsCarouselComponent,\n BsCarouselImageDirective\n ]\n})\nexport class BsCarouselModule { }\n","import { Directive, Input, TemplateRef } from '@angular/core';\nimport { DatatableColumnMetadata } from './datatable-column-metadata';\n\n@Directive({\n selector: '[bsDatatableColumn]'\n})\nexport class BsDatatableColumnDirective {\n\n constructor(templateRef: TemplateRef<any>) {\n this.templateRef = templateRef;\n }\n\n templateRef: TemplateRef<any>;\n @Input() public bsDatatableColumn: DatatableColumnMetadata = { name: '', sortable: true };\n\n}\n","import { PaginationRequest } from \"@mintplayer/ng-pagination\";\n\nexport class DatatableSettings {\n constructor(data?: Partial<DatatableSettings>) {\n Object.assign(this, data);\n\n if (data && data.perPage) {\n this.perPage = data.perPage;\n } else {\n // Set default value\n this.perPage = {\n values: [10, 20, 50],\n selected: 20\n };\n }\n \n if (data && data.page) {\n this.page = data.page;\n } else {\n // Set default value\n this.page = {\n values: [1],\n selected: 1\n };\n }\n }\n\n public sortProperty: string = '';\n public sortDirection: 'ascending' | 'descending' = 'ascending';\n public perPage: { values: number[], selected: number };\n public page: { values: number[], selected: number };\n\n public toPagination() {\n const res = <PaginationRequest>{\n sortProperty: this.sortProperty,\n sortDirection: this.sortDirection,\n perPage: this.perPage.selected,\n page: this.page.selected\n };\n return res;\n }\n}","import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core';\nimport { BehaviorSubject, combineLatest, map, Observable, Subject, takeUntil } from 'rxjs';\nimport { PageWithSelection } from '../../../interfaces/page-with-selection';\n\n@Component({\n selector: 'bs-pagination',\n templateUrl: './pagination.component.html',\n styleUrls: ['./pagination.component.scss']\n})\nexport class BsPaginationComponent implements OnInit, OnDestroy {\n\n constructor() {\n this.destroyed$ = new Subject();\n\n this.visibleNumberOfNumberBoxes$ =\n combineLatest([this.numberOfBoxes$, this.pageNumbers$, this.showArrows$])\n .pipe(takeUntil(this.destroyed$))\n .pipe(map(([numberOfBoxes, pageNumbers, showArrows]) => {\n if (numberOfBoxes <= 0) {\n return pageNumbers.length;\n } else if (!showArrows) {\n return Math.min(numberOfBoxes, pageNumbers.length);\n } else if (numberOfBoxes <= 2) {\n return Math.min(1, pageNumbers.length);\n } else {\n return Math.min(numberOfBoxes - 2, pageNumbers.length);\n }\n }));\n\n this.shownPageNumbers$ = \n combineLatest([this.pageNumbers$, this.selectedPageNumber$, this.visibleNumberOfNumberBoxes$])\n .pipe(takeUntil(this.destroyed$))\n .pipe(map(([pageNumbers, selectedPageNumber, visibleNumberOfNumberBoxes]) => {\n let startIndex = 0;\n \n const half = Math.round((visibleNumberOfNumberBoxes - 1) / 2);\n if (pageNumbers.indexOf(selectedPageNumber) < half) {\n startIndex = 0;\n } else if (pageNumbers.indexOf(selectedPageNumber) >= (pageNumbers.length - half)) {\n startIndex = pageNumbers.length - visibleNumberOfNumberBoxes;\n } else {\n startIndex = pageNumbers.indexOf(selectedPageNumber) - half;\n }\n\n return [...Array(visibleNumberOfNumberBoxes).keys()]\n .map(p => p + startIndex)\n .map(p => <PageWithSelection>{\n page: pageNumbers[p],\n selected: pageNumbers[p] === selectedPageNumber\n });\n }));\n\n this.isFirstPage$ =\n combineLatest([this.pageNumbers$, this.selectedPageNumber$])\n .pipe(takeUntil(this.destroyed$))\n .pipe(map(([pageNumbers, selectedPageNumber]) => {\n return pageNumbers.indexOf(selectedPageNumber) === 0;\n }));\n \n this.isLastPage$ =\n combineLatest([this.pageNumbers$, this.selectedPageNumber$])\n .pipe(takeUntil(this.destroyed$))\n .pipe(map(([pageNumbers, selectedPageNumber]) => {\n return pageNumbers.indexOf(selectedPageNumber) === (pageNumbers.length - 1);\n }));\n \n this.selectedPageNumber$\n .pipe(takeUntil(this.destroyed$))\n .subscribe((selectedPageNumber) => {\n this.selectedPageNumberChange.emit(selectedPageNumber);\n });\n }\n\n ngOnInit() {\n }\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n onSelectPage(event: MouseEvent, page: number) {\n this.selectedPageNumber$.next(page);\n return false;\n }\n\n onPrevious() {\n this.selectedPageNumber$.next(this.selectedPageNumber$.value - 1);\n return false;\n }\n\n onNext() {\n this.selectedPageNumber$.next(this.selectedPageNumber$.value + 1);\n return false;\n }\n\n /** All page numbers. */\n pageNumbers$ = new BehaviorSubject<number[]>([]);\n /** Page numbers to be displayed to the user. */\n shownPageNumbers$: Observable<PageWithSelection[]>;\n /** Selected number. */\n selectedPageNumber$ = new BehaviorSubject<number>(1);\n /** Number of boxes. */\n numberOfBoxes$ = new BehaviorSubject<number>(0);\n /** Display previous/next arrows. */\n showArrows$ = new BehaviorSubject<boolean>(true);\n\n /** Indicates if first value is selected. */\n isFirstPage$ = new Observable<boolean>();\n /** Indicates if last value is selected. */\n isLastPage$ = new Observable<boolean>();\n /** The number of boxes (excluding arrows) that's being shown on the pagination component. */\n visibleNumberOfNumberBoxes$ = new Observable<number>();\n /** Monitor OnDestroyed hook. */\n private destroyed$: Subject<any>;\n\n\n \n private _selectedPageNumber: number = 0;\n @Output() public selectedPageNumberChange = new EventEmitter<number>();\n @Input() set selectedPageNumber(value: number) {\n this._selectedPageNumber = value;\n this.selectedPageNumber$.next(value);\n }\n get selectedPageNumber() {\n return this._selectedPageNumber;\n }\n \n private _numberOfBoxes: number = 0;\n @Input() set numberOfBoxes(value: number) {\n this._numberOfBoxes = value;\n this.numberOfBoxes$.next(value);\n }\n get numberOfBoxes() {\n return this._numberOfBoxes;\n }\n \n private _pageNumbers: number[] = [];\n @Input() set pageNumbers(value: number[]) {\n this._pageNumbers = value;\n this.pageNumbers$.next(value);\n }\n get pageNumbers() {\n return this._pageNumbers;\n }\n \n private _showArrows: boolean = true;\n @Input() set showArrows(value: boolean) {\n this._showArrows = value;\n this.showArrows$.next(value);\n }\n get showArrows() {\n return this._showArrows;\n }\n\n}\n","<ul class=\"pagination\">\n <li class=\"page-item\" *ngIf=\"showArrows$ | async\" [class.disabled]=\"isFirstPage$ | async\">\n <a class=\"page-link\" href=\"\" (click)=\"onPrevious()\" aria-label=\"Previous\">\n <span aria-hidden=\"true\">&laquo;</span>\n <span class=\"visually-hidden\">Previous</span>\n </a>\n </li>\n <li *ngFor=\"let pageNumber of (shownPageNumbers$ | async)\" class=\"page-item\"\n [ngClass]=\"{ 'active': pageNumber.selected }\">\n <a class=\"page-link\" href=\"\" (click)=\"onSelectPage($event, pageNumber.page)\" *ngIf=\"pageNumber.page != '...'\">\n {{ pageNumber.page }}\n <span class=\"visually-hidden\" *ngIf=\"pageNumber.selected\">(current)</span>\n </a>\n </li>\n <li class=\"page-item\" *ngIf=\"showArrows$ | async\" [class.disabled]=\"isLastPage$ | async\">\n <a class=\"page-link\" href=\"\" (click)=\"onNext()\" aria-label=\"Next\">\n <span aria-hidden=\"true\">&raquo;</span>\n <span class=\"visually-hidden\">Next</span>\n </a>\n </li>\n</ul>","import { Component, ContentChildren, EventEmitter, Input, OnInit, Output, TemplateRef } from '@angular/core';\nimport { PaginationResponse } from '@mintplayer/ng-pagination';\nimport { BsDatatableColumnDirective } from '../datatable-column/datatable-column.directive';\nimport { DatatableSettings } from '../datatable-settings';\n\n@Component({\n selector: 'bs-datatable',\n templateUrl: './datatable.component.html',\n styleUrls: ['./datatable.component.scss']\n})\nexport class BsDatatableComponent implements OnInit {\n\n constructor() {\n this.settings = new DatatableSettings();\n this.settings.sortProperty = '';\n this.settings.sortDirection = 'ascending';\n this.settings.perPage = { values: [10, 20, 50], selected: 20 };\n this.settings.page = { values: [1], selected: 1 };\n }\n\n @ContentChildren(BsDatatableColumnDirective) columns: BsDatatableColumnDirective[] = [];\n @Input() settings: DatatableSettings;\n @Input() data?: PaginationResponse<any>;\n rowTemplate?: TemplateRef<any>;\n @Output() onReloadData: EventEmitter<any> = new EventEmitter();\n\n columnHeaderClicked(column: BsDatatableColumnDirective) {\n if (column.bsDatatableColumn.sortable) {\n if (this.settings.sortProperty !== column.bsDatatableColumn.name) {\n this.settings.sortProperty = column.bsDatatableColumn.name;\n this.settings.sortDirection = 'ascending';\n } else if (this.settings.sortDirection === 'descending') {\n this.settings.sortDirection = 'ascending';\n } else {\n this.settings.sortDirection = 'descending';\n }\n this.onReloadData.emit();\n }\n }\n\n ngOnInit() {\n }\n \n}\n","<div class=\"table-responsive overflow-y-hidden mb-3\">\n <table class=\"table table-striped table-hover w-100 mb-0\" cellspacing=\"0\" role=\"grid\">\n <thead>\n <tr>\n <th *ngFor=\"let column of columns\" class=\"text-nowrap\"\n [class.sort]=\"column.bsDatatableColumn.sortable\"\n [class.sort-asc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty === column.bsDatatableColumn.name) && (settings.sortDirection === 'ascending')\"\n [class.sort-desc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty === column.bsDatatableColumn.name) && (settings.sortDirection === 'descending')\"\n (click)=\"columnHeaderClicked(column)\">\n <ng-container *ngTemplateOutlet=\"column.templateRef\"></ng-container>\n </th>\n </tr>\n </thead>\n <tbody>\n <ng-container *ngIf=\"!!data && !!rowTemplate\">\n <ng-container *ngFor=\"let item of data.data\">\n <ng-container *ngTemplateOutlet=\"rowTemplate; context: { $implicit: item }\"></ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n </table>\n</div>\n<div class=\"container-fluid\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <bs-pagination class=\"float-start\" [pageNumbers]=\"settings.perPage.values\"\n [(selectedPageNumber)]=\"settings.perPage.selected\" (selectedPageNumberChange)=\"onReloadData.emit()\"\n [showArrows]=\"false\"></bs-pagination>\n <bs-pagination class=\"float-end\" [pageNumbers]=\"settings.page.values\"\n [(selectedPageNumber)]=\"settings.page.selected\" (selectedPageNumberChange)=\"onReloadData.emit()\"\n [showArrows]=\"true\"></bs-pagination>\n </div>\n </div>\n</div>","import { Directive, TemplateRef } from '@angular/core';\nimport { BsDatatableComponent } from '../datatable/datatable.component';\n\n@Directive({\n selector: '[rowTemplate]'\n})\nexport class BsRowTemplateDirective {\n\n constructor(private datatableComponent: BsDatatableComponent, templateRef: TemplateRef<any>) {\n this.datatableComponent.rowTemplate = templateRef;\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsPaginationComponent } from './pagination/pagination.component';\n\n\n\n@NgModule({\n declarations: [\n BsPaginationComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsPaginationComponent\n ]\n})\nexport class BsPaginationModule { }\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsDatatableComponent } from './datatable/datatable.component';\nimport { BsRowTemplateDirective } from './row-template/row-template.directive';\nimport { BsPaginationModule } from '../pagination/pagination.module';\nimport { BsDatatableColumnDirective } from './datatable-column/datatable-column.directive';\n\n\n\n@NgModule({\n declarations: [\n BsDatatableComponent,\n BsRowTemplateDirective,\n BsDatatableColumnDirective\n ],\n imports: [\n CommonModule,\n BsPaginationModule\n ],\n exports: [\n BsDatatableComponent,\n BsRowTemplateDirective,\n BsDatatableColumnDirective\n ]\n})\nexport class BsDatatableModule { }\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-list-group-item',\n templateUrl: './list-group-item.component.html',\n styleUrls: ['./list-group-item.component.scss']\n})\nexport class BsListGroupItemComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n}\n","<li class=\"list-group-item\">\n <ng-content></ng-content>\n</li>","import { Component, ContentChildren, OnInit, QueryList } from '@angular/core';\nimport { BsListGroupItemComponent } from '../list-group-item/list-group-item.component';\n\n@Component({\n selector: 'bs-list-group',\n templateUrl: './list-group.component.html',\n styleUrls: ['./list-group.component.scss']\n})\nexport class BsListGroupComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n @ContentChildren(BsListGroupItemComponent) items!: QueryList<BsListGroupItemComponent>;\n\n}\n","<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsListGroupComponent } from './list-group/list-group.component';\nimport { BsListGroupItemComponent } from './list-group-item/list-group-item.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ],\n exports: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ]\n})\nexport class BsListGroupModule {}\n","import { Component, ElementRef, ViewChild } from '@angular/core';\n\n@Component({\n selector: 'bs-navbar',\n templateUrl: './navbar.component.html',\n styleUrls: ['./navbar.component.scss'],\n})\nexport class BsNavbarComponent {\n\n constructor() {\n }\n\n isExpanded = false;\n toggleExpanded() {\n this.isExpanded = !this.isExpanded;\n }\n\n @ViewChild('nav') nav!: ElementRef;\n}\n","<nav #nav class=\"navbar navbar-expand-md position-fixed navbar-dark bg-dark\">\n <div class=\"container-fluid\">\n <div class=\"d-flex w-100 w-md-auto\">\n <a class=\"navbar-brand mx-auto mx-md-unset\" href=\"#\">Navbar 2</a>\n <button (click)=\"toggleExpanded()\" class=\"navbar-toggler align-self-end\" type=\"button\" data-toggle=\"collapse\">\n <span class=\"navbar-toggler-icon\"></span>\n </button>\n </div>\n <ng-content></ng-content>\n </div>\n</nav>","import { Component, Input, OnInit } from '@angular/core';\nimport { BsNavbarComponent } from '../navbar/navbar.component';\nimport { SlideUpDownAnimation } from '@mintplayer/ng-animations';\n\n@Component({\n selector: 'bs-navbar-nav',\n templateUrl: './navbar-nav.component.html',\n styleUrls: ['./navbar-nav.component.scss'],\n animations: [SlideUpDownAnimation]\n})\nexport class BsNavbarNavComponent implements OnInit {\n\n constructor(bsNavbar: BsNavbarComponent) {\n this.bsNavbar = bsNavbar;\n }\n\n ngOnInit(): void {\n }\n\n bsNavbar: BsNavbarComponent;\n\n //#region collapse\n private _collapse: boolean = true;\n @Input() public set collapse(value: boolean) {\n this._collapse = value;\n }\n public get collapse() {\n return this._collapse;\n }\n //#endregion\n}\n","<div class=\"navbar-collapse collapse w-100 show\" [@slideUpDown]=\"bsNavbar.isExpanded ? 'down' : 'up'\">\n <ul class=\"navbar-nav mr-auto\">\n <ng-content></ng-content>\n </ul>\n</div>","import { AfterContentChecked, Component, ContentChildren, ElementRef, forwardRef, Input, OnInit, Optional, QueryList } from '@angular/core';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Component({\n selector: 'bs-navbar-item',\n templateUrl: './navbar-item.component.html',\n styleUrls: ['./navbar-item.component.scss']\n})\nexport class BsNavbarItemComponent implements OnInit, AfterContentChecked {\n\n constructor(@Optional() parentDropdown: BsNavbarDropdownComponent, private element: ElementRef) {\n this.parentDropdown = parentDropdown;\n }\n\n parentDropdown: BsNavbarDropdownComponent;\n hasDropdown: boolean = false;\n anchorTag: HTMLAnchorElement | null = null;\n\n ngOnInit(): void {\n }\n\n ngAfterContentChecked() {\n if (this.hasDropdown) {\n (<any>window).element = this.element.nativeElement;\n this.anchorTag = this.element.nativeElement.querySelector('li a');\n (this.anchorTag) && this.anchorTag.classList.add('dropdown-toggle');\n\n if (this.anchorTag && !this.anchorTag.onclick) {\n this.anchorTag.onclick = (ev: Event) => {\n ev.preventDefault();\n // Normally there should be only one dropdown in this list\n this.dropdowns.forEach((dropdown) => {\n if (!(dropdown.isVisible = !dropdown.isVisible)) {\n dropdown.childDropdowns.forEach((child) => {\n child.isVisible = false;\n });\n }\n });\n return false;\n }\n }\n }\n }\n\n @ContentChildren(forwardRef(() => BsNavbarDropdownComponent)) dropdowns!: QueryList<BsNavbarDropdownComponent>;\n}\n","<li [class.nav-item]=\"parentDropdown === null\" [class.dropdown]=\"(dropdowns.length > 0) && (parentDropdown === null)\" [class.dropend]=\"(dropdowns.length > 0) && (parentDropdown !== null)\">\n <ng-content></ng-content>\n</li>","import { Component, ContentChildren, ElementRef, forwardRef, Host, Inject, OnInit, Optional, QueryList, SkipSelf } from '@angular/core';\nimport { BsNavbarItemComponent } from '../navbar-item/navbar-item.component';\n\n@Component({\n selector: 'bs-navbar-dropdown',\n templateUrl: './navbar-dropdown.component.html',\n styleUrls: ['./navbar-dropdown.component.scss']\n})\nexport class BsNavbarDropdownComponent implements OnInit {\n\n constructor(\n @SkipSelf() @Host() @Optional() parentDropdown: BsNavbarDropdownComponent,\n @Host() @Inject(forwardRef(() => BsNavbarItemComponent)) navbarItem: BsNavbarItemComponent\n ) {\n this.parentDropdown = parentDropdown;\n this.navbarItem = navbarItem;\n }\n\n isVisible: boolean = false;\n navbarItem: BsNavbarItemComponent;\n parentDropdown: BsNavbarDropdownComponent;\n\n get elementsToExclude() {\n return [this.navbarItem.anchorTag].filter((a) => a).map((a) => <HTMLElement>a);\n }\n\n ngOnInit(): void {\n }\n\n // @ContentChildren(BsNavbarDropdownComponent, { descendants: true }) childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n @ContentChildren(forwardRef(() => BsNavbarDropdownComponent), { descendants: true }) childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n}\n","<ul class=\"dropdown-menu\" [class.show]=\"isVisible\" [class.submenu]=\"!!parentDropdown\" (clickOutside)=\"isVisible = false\" [exclude]=\"elementsToExclude\" aria-labelledby=\"navbarDropdown\">\n <ng-content></ng-content>\n</ul>","import { AfterContentInit, Component, ContentChildren, Directive, ElementRef, forwardRef, Inject, Optional, QueryList } from '@angular/core';\nimport { BsNavbarItemComponent } from '../navbar-item/navbar-item.component';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Directive({\n // selector: 'bs-navbar-item > a[routerLink]',\n selector: 'bs-navbar-item',\n queries: {\n childDropdowns: new ContentChildren(BsNavbarDropdownComponent)\n }\n})\nexport class DropdownToggleDirective implements AfterContentInit {\n\n constructor(\n private elementRef: ElementRef<HTMLAnchorElement>,\n @Inject(forwardRef(() => BsNavbarItemComponent)) private bsNavbarItem: BsNavbarItemComponent,\n @Optional() @Inject(forwardRef(() => BsNavbarDropdownComponent)) parentDropdown: BsNavbarDropdownComponent\n ) {\n }\n\n childDropdowns!: QueryList<BsNavbarDropdownComponent>;\n\n ngAfterContentInit() {\n if (this.bsNavbarItem.dropdowns.length > 0) {\n this.bsNavbarItem.hasDropdown = true;\n }\n }\n}","import { Directive, ElementRef, forwardRef, Inject, Optional } from '@angular/core';\nimport { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';\n\n@Directive({\n selector: 'bs-navbar-item > a[routerLink]'\n})\nexport class NavLinkDirective {\n\n constructor(\n private elementRef: ElementRef<HTMLAnchorElement>,\n @Optional() @Inject(forwardRef(() => BsNavbarDropdownComponent)) parentDropdown: BsNavbarDropdownComponent\n ) {\n if (parentDropdown == null) {\n this.elementRef.nativeElement.classList.add('nav-link');\n } else {\n this.elementRef.nativeElement.classList.add('dropdown-item');\n }\n }\n\n}","import { AfterViewInit, Directive, ElementRef, Input, OnDestroy } from '@angular/core';\nimport { BsNavbarComponent } from '../navbar/navbar.component';\n\n@Directive({\n selector: '[navbarContent]'\n})\nexport class NavbarContentDirective implements AfterViewInit, OnDestroy {\n\n constructor(private element: ElementRef) {\n this.resizeObserver = new ResizeObserver((entries) => {\n let height = entries[0].contentRect.height;\n this.element.nativeElement.style.paddingTop = (this.initialPadding + height) + 'px';\n });\n }\n\n @Input('navbarContent') navbar!: BsNavbarComponent;\n\n ngAfterViewInit() {\n let p = parseInt(this.element.nativeElement.style.paddingTop.replace(/px$/, ''));\n this.initialPadding = isNaN(p) ? 0 : p;\n this.resizeObserver.observe(this.navbar.nav.nativeElement);\n }\n\n ngOnDestroy() {\n this.resizeObserver.unobserve(this.navbar.nav.nativeElement);\n }\n\n resizeObserver: ResizeObserver;\n initialPadding: number = 0;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { RouterModule } from '@angular/router';\nimport { ClickOutsideModule } from '@mintplayer/ng-click-outside';\nimport { BsNavbarComponent } from './navbar/navbar.component';\nimport { BsNavbarNavComponent } from './navbar-nav/navbar-nav.component';\nimport { BsNavbarDropdownComponent } from './navbar-dropdown/navbar-dropdown.component';\nimport { BsNavbarItemComponent } from './navbar-item/navbar-item.component';\nimport { DropdownToggleDirective } from './dropdown-toggle/dropdown-toggle.directive';\nimport { NavLinkDirective } from './nav-link/nav-link.directive';\nimport { NavbarContentDirective } from './navbar-content/navbar-content.directive';\n\n@NgModule({\n declarations: [\n BsNavbarComponent,\n BsNavbarNavComponent,\n BsNavbarDropdownComponent,\n BsNavbarItemComponent,\n\n DropdownToggleDirective,\n NavLinkDirective,\n NavbarContentDirective\n ],\n imports: [\n CommonModule,\n RouterModule,\n ClickOutsideModule\n ],\n exports: [\n BsNavbarComponent,\n BsNavbarNavComponent,\n BsNavbarDropdownComponent,\n BsNavbarItemComponent,\n\n DropdownToggleDirective,\n NavLinkDirective,\n NavbarContentDirective\n ]\n})\nexport class BsNavbarModule { }\n","import { Component, Input, OnInit } from '@angular/core';\nimport { SlideUpDownAnimation } from '@mintplayer/ng-animations';\nimport { BsAccordionComponent } from '../accordion/accordion.component';\n\n@Component({\n selector: 'bs-accordion-tab',\n templateUrl: './accordion-tab.component.html',\n styleUrls: ['./accordion-tab.component.scss'],\n animations: [SlideUpDownAnimation]\n})\nexport class BsAccordionTabComponent implements OnInit {\n\n accordion: BsAccordionComponent;\n constructor(accordion: BsAccordionComponent) {\n this.accordion = accordion;\n }\n\n ngOnInit() {\n }\n\n headerClicked(event: MouseEvent) {\n if (this.accordion.activeTab === this) {\n this.accordion.activeTab = null;\n } else {\n this.accordion.activeTab = this;\n }\n }\n}\n","<div class=\"card\">\n <ng-content select=\"bs-accordion-tab-header\"></ng-content>\n <div class=\"card-block overflow-hidden\" [@slideUpDown]=\"(accordion.activeTab === this) ? 'down' : 'up'\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, ContentChildren, OnInit } from '@angular/core';\nimport { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';\n\n@Component({\n selector: 'bs-accordion',\n templateUrl: './accordion.component.html',\n styleUrls: ['./accordion.component.scss']\n})\nexport class BsAccordionComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n @ContentChildren(BsAccordionTabComponent) tabPages!: BsAccordionTabComponent[];\n activeTab: BsAccordionTabComponent | null = null;\n}\n","<ng-content></ng-content>","import { Component, OnInit } from '@angular/core';\nimport { BsAccordionTabComponent } from '../accordion-tab/accordion-tab.component';\nimport { BsAccordionComponent } from '../accordion/accordion.component';\n\n@Component({\n selector: 'bs-accordion-tab-header',\n templateUrl: './accordion-tab-header.component.html',\n styleUrls: ['./accordion-tab-header.component.scss']\n})\nexport class BsAccordionTabHeaderComponent implements OnInit {\n\n constructor(private accordionTab: BsAccordionTabComponent, private accordion: BsAccordionComponent) {\n }\n\n ngOnInit() {\n }\n\n headerClicked(event: MouseEvent) {\n if (this.accordion.activeTab === this.accordionTab) {\n this.accordion.activeTab = null;\n } else {\n this.accordion.activeTab = this.accordionTab;\n }\n }\n}\n","<div class=\"card-header cursor-pointer\" (click)=\"headerClicked($event)\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { BsAccordionComponent } from './accordion/accordion.component';\nimport { BsAccordionTabComponent } from './accordion-tab/accordion-tab.component';\nimport { BsAccordionTabHeaderComponent } from './accordion-tab-header/accordion-tab-header.component';\n\n@NgModule({\n declarations: [\n BsAccordionComponent,\n BsAccordionTabComponent,\n BsAccordionTabHeaderComponent\n ],\n imports: [\n CommonModule,\n BrowserAnimationsModule\n ],\n exports: [\n BsAccordionComponent,\n BsAccordionTabComponent,\n BsAccordionTabHeaderComponent\n ]\n})\nexport class BsAccordionModule { }\n","import { Component, OnInit, ContentChild, TemplateRef, Input } from '@angular/core';\nimport { BsTabControlComponent } from '../tab-control/tab-control.component';\n\n@Component({\n selector: 'bs-tab-page',\n templateUrl: './tab-page.component.html',\n styleUrls: ['./tab-page.component.scss']\n})\nexport class BsTabPageComponent implements OnInit {\n\n tabControl: BsTabControlComponent;\n constructor(tabControl: BsTabControlComponent) {\n this.tabControl = tabControl;\n }\n\n @ContentChild(TemplateRef) headerTemplate!: TemplateRef<any>;\n\n @Input() disabled: boolean = false;\n\n ngOnInit() {\n }\n\n}\n","<ng-content *ngIf=\"tabControl.activeTab === this\"></ng-content>","import { Component, ContentChildren, OnInit } from '@angular/core';\nimport { BsTabPageComponent } from '../tab-page/tab-page.component';\n\n@Component({\n selector: 'bs-tab-control',\n templateUrl: './tab-control.component.html',\n styleUrls: ['./tab-control.component.scss']\n})\nexport class BsTabControlComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n setActiveTab(tab: BsTabPageComponent) {\n if (!tab.disabled) {\n this.activeTab = tab;\n }\n return false;\n }\n\n @ContentChildren(BsTabPageComponent) tabPages!: BsTabPageComponent[];\n activeTab: BsTabPageComponent | null = null;\n}\n","<ul class=\"nav nav-tabs\">\n <ng-container *ngFor=\"let tab of tabPages\">\n <li class=\"nav-item\" (click)=\"setActiveTab(tab)\" *ngIf=\"!!tab.headerTemplate\">\n <a class=\"nav-link\" [class.active]=\"activeTab === tab\" [class.disabled]=\"tab.disabled\" [attr.aria-current]=\"activeTab === tab ? 'page' : null\" [attr.aria-disabled]=\"tab.disabled\" href=\"\">\n <ng-container [ngTemplateOutlet]=\"tab.headerTemplate\"></ng-container>\n </a>\n </li>\n </ng-container>\n</ul>\n<!-- <div class=\"container\"> -->\n <ng-content></ng-content>\n<!-- </div> -->","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsTabControlComponent } from './tab-control/tab-control.component';\nimport { BsTabPageComponent } from './tab-page/tab-page.component';\n\n@NgModule({\n declarations: [\n BsTabControlComponent,\n BsTabPageComponent,\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsTabControlComponent,\n BsTabPageComponent,\n ]\n})\nexport class BsTabControlModule { }\n","import { Directive, ElementRef, HostListener, OnDestroy, OnInit } from '@angular/core';\n\n@Directive({\n selector: '[bsScrollspy]'\n})\nexport class BsScrollspyDirective {\n\n constructor(element: ElementRef) {\n this.element = element;\n }\n\n element: ElementRef;\n\n}\n","import { DOCUMENT } from '@angular/common';\nimport { AfterViewInit, Component, ContentChildren, ElementRef, HostListener, Inject, OnInit, QueryList } from '@angular/core';\nimport { BsScrollspyDirective } from '../directives/scrollspy.directive';\n\n@Component({\n selector: 'bs-scrollspy',\n templateUrl: './scrollspy.component.html',\n styleUrls: ['./scrollspy.component.scss']\n})\nexport class BsScrollspyComponent implements OnInit, AfterViewInit {\n\n constructor(@Inject(DOCUMENT) document: any) {\n this.doc = <Document>document;\n }\n\n @ContentChildren(BsScrollspyDirective, { descendants: true })\n directives!: QueryList<BsScrollspyDirective>;\n\n doc: Document;\n activeDirective: BsScrollspyDirective | null = null;\n\n ngOnInit() {\n }\n\n ngAfterViewInit() {\n this.onWindowScroll();\n }\n \n @HostListener('window:scroll', ['$event'])\n onWindowScroll() {\n const dirs = this.directives.filter((d) => d.element.nativeElement.getBoundingClientRect().y <= 0);\n if (this.directives.length === 0) {\n this.activeDirective = null;\n } else if (dirs.length === 0) {\n this.activeDirective = this.directives.get(0) ?? null;\n } else {\n this.activeDirective = dirs[dirs.length - 1];\n }\n }\n \n scrollToHeader(directive: BsScrollspyDirective) {\n const header = directive.element.nativeElement;\n header.scrollIntoView();\n }\n\n}\n","<div class=\"spy\">\n <ul class=\"text-muted\">\n <li *ngFor=\"let dir of directives\">\n <span class=\"cursor-pointer\" [ngClass]=\"'nav' + dir.element.nativeElement.tagName\" [class.fw-bold]=\"activeDirective?.element === dir.element\" (click)=\"scrollToHeader(dir)\" [title]=\"dir.element.nativeElement.textContent\">\n {{ dir.element.nativeElement.textContent }}\n </span>\n </li>\n </ul>\n</div>\n<div class=\"content\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsScrollspyComponent } from './component/scrollspy.component';\nimport { BsScrollspyDirective } from './directives/scrollspy.directive';\n\n\n\n@NgModule({\n declarations: [\n BsScrollspyComponent,\n BsScrollspyDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsScrollspyComponent,\n BsScrollspyDirective\n ]\n})\nexport class BsScrollspyModule { }\n","import { DOCUMENT } from '@angular/common';\nimport { Directive, ElementRef, EmbeddedViewRef, forwardRef, Inject, Renderer2, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { Overlay, OverlayRef } from '@angular/cdk/overlay';\nimport { Subject, takeUntil } from 'rxjs';\nimport { BsDropdownDirective } from '../dropdown/dropdown.directive';\nimport { TemplatePortal } from '@angular/cdk/portal';\n\n@Directive({\n selector: '[bsDropdownMenu]',\n host: {\n '[class.show]': 'dropdown.isOpen',\n },\n})\nexport class BsDropdownMenuDirective {\n constructor(\n @Inject(forwardRef(() => BsDropdownDirective)) private dropdown: BsDropdownDirective,\n @Inject(DOCUMENT) document: any,\n private viewContainerRef: ViewContainerRef,\n private templateRef: TemplateRef<any>,\n private overlay: Overlay\n ) {\n this.document = <Document>document;\n this.dropdown.isOpen$\n .pipe(takeUntil(this.destroyed$))\n .subscribe((isOpen) => {\n if (isOpen) {\n this.overlayRef = this.overlay.create({\n hasBackdrop: this.dropdown.hasBackdrop,\n scrollStrategy: this.overlay.scrollStrategies.reposition(),\n positionStrategy: this.overlay.position()\n .flexibleConnectedTo(this.dropdown.toggle.toggleButton)\n .withPositions([\n { originX: \"start\", \"originY\": \"bottom\", overlayX: \"start\", overlayY: \"top\", offsetY: 0 },\n { originX: \"start\", \"originY\": \"top\", overlayX: \"start\", overlayY: \"bottom\", offsetY: 0 },\n ]),\n });\n\n this.overlayRef.backdropClick().subscribe(() => this.dropdown.isOpen$.next(false));\n \n this.templatePortal = new TemplatePortal(this.templateRef, this.viewContainerRef);\n this.overlayRef.attach(this.templatePortal);\n } else {\n if (this.overlayRef) {\n this.overlayRef.detach();\n this.overlayRef.dispose();\n }\n }\n });\n }\n\n private document: Document;\n private destroyed$ = new Subject();\n private overlayRef: OverlayRef | null = null;\n private templatePortal: TemplatePortal<any> | null = null;\n\n}\n","import { Directive, ElementRef, HostListener } from '@angular/core';\nimport { take } from 'rxjs';\nimport { BsDropdownDirective } from '../dropdown/dropdown.directive';\n\n@Directive({\n selector: '[bsDropdownToggle]'\n})\nexport class BsDropdownToggleDirective {\n\n constructor(\n private dropdown: BsDropdownDirective,\n toggleButton: ElementRef) {\n this.toggleButton = toggleButton;\n }\n\n toggleButton: ElementRef;\n\n\n @HostListener('click')\n onClick() {\n console.log('clicked');\n this.dropdown.isOpen$.pipe(take(1)).subscribe((isOpen) => {\n this.dropdown.isOpen$.next(!isOpen);\n });\n }\n}\n","import { ContentChild, Directive, Input } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\nimport { BsDropdownMenuDirective } from '../dropdown-menu/dropdown-menu.directive';\nimport { BsDropdownToggleDirective } from '../dropdown-toggle/dropdown-toggle.directive';\n\n@Directive({\n selector: '[bsDropdown]'\n})\nexport class BsDropdownDirective {\n\n public isOpen$ = new BehaviorSubject<boolean>(false);\n\n @ContentChild(BsDropdownMenuDirective, {static: false}) menu!: BsDropdownMenuDirective;\n @ContentChild(BsDropdownToggleDirective, {static: false}) toggle!: BsDropdownToggleDirective;\n \n @Input() public hasBackdrop = false;\n @Input() public closeOnClickOutside = false;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OverlayModule } from '@angular/cdk/overlay';\nimport { BsDropdownDirective } from './dropdown/dropdown.directive';\nimport { BsDropdownMenuDirective } from './dropdown-menu/dropdown-menu.directive';\nimport { BsDropdownToggleDirective } from './dropdown-toggle/dropdown-toggle.directive';\n\n\n\n@NgModule({\n declarations: [\n BsDropdownDirective,\n BsDropdownToggleDirective,\n BsDropdownMenuDirective\n ],\n imports: [\n CommonModule,\n OverlayModule\n ],\n exports: [\n BsDropdownDirective,\n BsDropdownToggleDirective,\n BsDropdownMenuDirective\n ]\n})\nexport class BsDropdownModule { }\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-datepicker',\n templateUrl: './datepicker.component.html',\n styleUrls: ['./datepicker.component.scss']\n})\nexport class BsDatepickerComponent implements OnInit {\n\n constructor() {\n this.selectedDate = new Date();\n this.currentMonth = new Date();\n }\n\n selectedDate: Date;\n currentMonth: Date;\n\n ngOnInit(): void {\n }\n\n}\n","<div bsDropdown [hasBackdrop]=\"true\" [closeOnClickOutside]=\"true\">\n <button bsDropdownToggle class=\"btn btn-primary\">{{ selectedDate | date }}</button>\n <div *bsDropdownMenu>\n <bs-calendar [(selectedDate)]=\"selectedDate\" [(currentMonth)]=\"currentMonth\"></bs-calendar>\n </div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsDatepickerComponent } from './datepicker.component';\nimport { BsCalendarModule } from '../calendar/calendar.module';\nimport { BsDropdownModule } from '../dropdown/dropdown.module';\n\n\n\n@NgModule({\n declarations: [\n BsDatepickerComponent\n ],\n imports: [\n CommonModule,\n BsCalendarModule,\n BsDropdownModule\n ],\n exports: [\n BsDatepickerComponent\n ]\n})\nexport class BsDatepickerModule { }\n","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'bs-multiselect',\n templateUrl: './multiselect.component.html',\n styleUrls: ['./multiselect.component.scss']\n})\nexport class BsMultiselectComponent implements OnInit {\n\n constructor() { }\n\n @Input() public items: any[] = [];\n @Input() public selectedItems: any[] = [];\n\n itemChange(item: any, event: Event) {\n if (!!(<any>event.target).checked) {\n this.selectedItems.push(item);\n } else {\n this.selectedItems.splice(this.selectedItems.findIndex((i) => i === item), 1);\n }\n }\n \n ngOnInit(): void {\n }\n\n\n}\n","<div bsDropdown [hasBackdrop]=\"true\" [closeOnClickOutside]=\"true\">\n <button bsDropdownToggle class=\"btn btn-primary\">{{ selectedItems.length }} selected</button>\n <div *bsDropdownMenu class=\"bg-white p-3 border shadow\">\n <label *ngFor=\"let item of items\" class=\"form-check\">\n <input type=\"checkbox\" [checked]=\"selectedItems.indexOf(item) > -1\" (change)=\"itemChange(item, $event)\" class=\"form-check-input\">\n <span class=\"form-check-label\">{{ item }}</span>\n </label>\n </div>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsMultiselectComponent } from './multiselect.component';\nimport { BsDropdownModule } from '../dropdown/dropdown.module';\n\n@NgModule({\n declarations: [\n BsMultiselectComponent\n ],\n imports: [\n CommonModule,\n BsDropdownModule\n ],\n exports: [\n BsMultiselectComponent\n ]\n})\nexport class BsMultiselectModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["map","takeUntil","take"],"mappings":"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"}
package/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './lib/components';
2
2
  export * from './lib/enums';
3
+ export * from './lib/interfaces';
@@ -1,22 +1,30 @@
1
- import { OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
2
+ import { BehaviorSubject, Observable } from 'rxjs';
3
+ import { DateDayOfMonth } from '../../interfaces/date-day-of-month';
2
4
  import { Week } from '../../interfaces/week';
3
5
  import { BsCalendarMonthService } from '../../services/calendar-month/calendar-month.service';
4
6
  import * as i0 from "@angular/core";
5
- export declare class BsCalendarComponent implements OnInit {
7
+ export declare class BsCalendarComponent implements OnDestroy {
6
8
  private calendarMonthService;
7
- constructor(calendarMonthService: BsCalendarMonthService);
9
+ private ref;
10
+ constructor(calendarMonthService: BsCalendarMonthService, ref: ChangeDetectorRef);
11
+ private destroyed$;
12
+ weeks$: Observable<Week[]>;
13
+ daysOfWeek$: Observable<string[]>;
14
+ currentMonth$: BehaviorSubject<Date>;
15
+ currentMonthChange: EventEmitter<Date>;
16
+ get currentMonth(): Date;
17
+ set currentMonth(value: Date);
18
+ selectedDate$: BehaviorSubject<Date>;
19
+ selectedDateChange: EventEmitter<Date>;
20
+ get selectedDate(): Date;
21
+ set selectedDate(value: Date);
8
22
  daysOfWeek: string[];
9
- ngOnInit(): void;
10
- selectedDate: Date;
11
- private _month;
12
- get month(): Date;
13
- set month(value: Date);
14
- private _weeks;
15
- get weeks(): Week[];
16
- set weeks(value: Week[]);
23
+ ngOnDestroy(): void;
17
24
  previousMonth(): boolean;
18
25
  nextMonth(): boolean;
19
- isSameDate(date1: Date, date2: Date): boolean;
26
+ isSameDate(date1: Date | null, date2: Date | null): boolean;
27
+ goto(day: DateDayOfMonth | null): void;
20
28
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCalendarComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<BsCalendarComponent, "bs-calendar", never, {}, {}, never, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCalendarComponent, "bs-calendar", never, { "currentMonth": "currentMonth"; "selectedDate": "selectedDate"; }, { "currentMonthChange": "currentMonthChange"; "selectedDateChange": "selectedDateChange"; }, never, never>;
22
30
  }
@@ -1,5 +1,6 @@
1
- import { AfterContentInit, ElementRef, OnDestroy, OnInit, QueryList } from '@angular/core';
1
+ import { AfterContentInit, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
2
2
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
3
+ import { BsCarouselImageDirective } from '../carousel-image/carousel-image.directive';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class BsCarouselComponent implements OnInit, OnDestroy, AfterContentInit {
5
6
  constructor();
@@ -10,11 +11,11 @@ export declare class BsCarouselComponent implements OnInit, OnDestroy, AfterCont
10
11
  destroyed$: Subject<unknown>;
11
12
  currentImageCounter$: BehaviorSubject<number>;
12
13
  currentImageIndex$: Observable<number>;
13
- currentImage$: Observable<ElementRef<HTMLImageElement> | null>;
14
+ currentImage$: Observable<TemplateRef<any> | null>;
14
15
  previousImage(): void;
15
16
  nextImage(): void;
16
17
  setCurrentImage(index: number): void;
17
- images: QueryList<ElementRef<HTMLImageElement>>;
18
+ images: QueryList<BsCarouselImageDirective>;
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselComponent, never>;
19
20
  static ɵcmp: i0.ɵɵComponentDeclaration<BsCarouselComponent, "bs-carousel", never, { "animation": "animation"; }, {}, ["images"], never>;
20
21
  }
@@ -1,6 +1,9 @@
1
+ import { TemplateRef } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class BsCarouselImageDirective {
3
- constructor();
4
+ private templateRef;
5
+ itemTemplate: TemplateRef<any>;
6
+ constructor(templateRef: TemplateRef<any>);
4
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselImageDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<BsCarouselImageDirective, "img[bsCarouselImage]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsCarouselImageDirective, "*[bsCarouselImage]", never, {}, {}, never>;
6
9
  }
@@ -0,0 +1,17 @@
1
+ import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
+ import { PaginationResponse } from '@mintplayer/ng-pagination';
3
+ import { BsDatatableColumnDirective } from '../datatable-column/datatable-column.directive';
4
+ import { DatatableSettings } from '../datatable-settings';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BsDatatableComponent implements OnInit {
7
+ constructor();
8
+ columns: BsDatatableColumnDirective[];
9
+ settings: DatatableSettings;
10
+ data?: PaginationResponse<any>;
11
+ rowTemplate?: TemplateRef<any>;
12
+ onReloadData: EventEmitter<any>;
13
+ columnHeaderClicked(column: BsDatatableColumnDirective): void;
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatatableComponent, "bs-datatable", never, { "settings": "settings"; "data": "data"; }, { "onReloadData": "onReloadData"; }, ["columns"], never>;
17
+ }
@@ -0,0 +1,4 @@
1
+ export interface DatatableColumnMetadata {
2
+ name: string;
3
+ sortable: boolean;
4
+ }
@@ -0,0 +1,10 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { DatatableColumnMetadata } from './datatable-column-metadata';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsDatatableColumnDirective {
5
+ constructor(templateRef: TemplateRef<any>);
6
+ templateRef: TemplateRef<any>;
7
+ bsDatatableColumn: DatatableColumnMetadata;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableColumnDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsDatatableColumnDirective, "[bsDatatableColumn]", never, { "bsDatatableColumn": "bsDatatableColumn"; }, {}, never>;
10
+ }
@@ -0,0 +1,15 @@
1
+ import { PaginationRequest } from "@mintplayer/ng-pagination";
2
+ export declare class DatatableSettings {
3
+ constructor(data?: Partial<DatatableSettings>);
4
+ sortProperty: string;
5
+ sortDirection: 'ascending' | 'descending';
6
+ perPage: {
7
+ values: number[];
8
+ selected: number;
9
+ };
10
+ page: {
11
+ values: number[];
12
+ selected: number;
13
+ };
14
+ toPagination(): PaginationRequest;
15
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datatable/datatable.component";
3
+ import * as i2 from "./row-template/row-template.directive";
4
+ import * as i3 from "./datatable-column/datatable-column.directive";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "../pagination/pagination.module";
7
+ export declare class BsDatatableModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsDatatableModule, [typeof i1.BsDatatableComponent, typeof i2.BsRowTemplateDirective, typeof i3.BsDatatableColumnDirective], [typeof i4.CommonModule, typeof i5.BsPaginationModule], [typeof i1.BsDatatableComponent, typeof i2.BsRowTemplateDirective, typeof i3.BsDatatableColumnDirective]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsDatatableModule>;
11
+ }
@@ -0,0 +1,5 @@
1
+ export * from './datatable.module';
2
+ export * from './datatable/datatable.component';
3
+ export * from './row-template/row-template.directive';
4
+ export * from './datatable-column/datatable-column.directive';
5
+ export * from './datatable-settings';
@@ -0,0 +1,9 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BsDatatableComponent } from '../datatable/datatable.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsRowTemplateDirective {
5
+ private datatableComponent;
6
+ constructor(datatableComponent: BsDatatableComponent, templateRef: TemplateRef<any>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsRowTemplateDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsRowTemplateDirective, "[rowTemplate]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
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;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatepickerComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatepickerComponent, "bs-datepicker", never, {}, {}, never, never>;
10
+ }