barsa-calendar 2.3.41 → 2.3.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/barsa-calendar.mjs +22 -11
- package/fesm2022/barsa-calendar.mjs.map +1 -1
- package/index.d.ts +7 -4
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, Pipe, EventEmitter, HostListener, HostBinding, Output, Input, ChangeDetectionStrategy, Component,
|
|
2
|
+
import { inject, Injectable, Pipe, EventEmitter, HostListener, HostBinding, Output, Input, ChangeDetectionStrategy, Component, ViewChild, ChangeDetectorRef, ComponentFactoryResolver, NO_ERRORS_SCHEMA, NgModule } from '@angular/core';
|
|
3
3
|
import { takeUntil, distinctUntilChanged, map, switchMap } from 'rxjs/operators';
|
|
4
4
|
import * as i2$1 from 'barsa-novin-ray-core';
|
|
5
|
-
import {
|
|
6
|
-
import { BehaviorSubject, combineLatest, of } from 'rxjs';
|
|
5
|
+
import { LogService, getDateService, getUniqueId, BaseComponent, PreventDefaulEvent, PortalService, DateService, BbbTranslatePipe, BarsaApi, ReportViewBaseComponent, BaseModule, DynamicComponentService, BarsaNovinRayCoreModule } from 'barsa-novin-ray-core';
|
|
6
|
+
import { Subject, BehaviorSubject, combineLatest, of } from 'rxjs';
|
|
7
7
|
import moment from 'moment/moment';
|
|
8
8
|
import * as i1 from '@angular/common';
|
|
9
9
|
import { CommonModule, TitleCasePipe } from '@angular/common';
|
|
@@ -48,14 +48,19 @@ class CalendarMonthInfo {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
class CalendarService
|
|
51
|
+
class CalendarService {
|
|
52
52
|
constructor() {
|
|
53
|
-
|
|
53
|
+
this._onDestroy$ = new Subject();
|
|
54
54
|
this._calendarsSource = new BehaviorSubject([]);
|
|
55
55
|
this._modeSource = new BehaviorSubject('month');
|
|
56
56
|
this._currentMonthIndexSource = new BehaviorSubject(-1);
|
|
57
57
|
this._weekModeDaysSource = new BehaviorSubject([]);
|
|
58
58
|
this._daysSource = new BehaviorSubject([]);
|
|
59
|
+
this._log = inject(LogService);
|
|
60
|
+
}
|
|
61
|
+
ngOnDestroy() {
|
|
62
|
+
this._onDestroy$.next();
|
|
63
|
+
this._onDestroy$.complete();
|
|
59
64
|
}
|
|
60
65
|
get todayMonthInfo() {
|
|
61
66
|
return this._todayMonthInfo;
|
|
@@ -658,7 +663,7 @@ class CalendarService extends BaseComponent {
|
|
|
658
663
|
};
|
|
659
664
|
return { day, isInMonth };
|
|
660
665
|
}
|
|
661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarService, deps:
|
|
666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
662
667
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarService }); }
|
|
663
668
|
}
|
|
664
669
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarService, decorators: [{
|
|
@@ -2766,7 +2771,9 @@ const components = [
|
|
|
2766
2771
|
EventButtonComponent,
|
|
2767
2772
|
DayEventListComponent,
|
|
2768
2773
|
EventButtonEndArrowComponent,
|
|
2769
|
-
EventButtonStartArrowComponent
|
|
2774
|
+
EventButtonStartArrowComponent,
|
|
2775
|
+
DateTimePickerComponent,
|
|
2776
|
+
CalendarSelectionDaysComponent
|
|
2770
2777
|
];
|
|
2771
2778
|
const pipes = [DaysInWeekPipe, EventDatePipe, EventTimePipe, FromToTimePipe, EqualDatePipe];
|
|
2772
2779
|
class BarsaCalendarModule extends BaseModule {
|
|
@@ -2793,7 +2800,9 @@ class BarsaCalendarModule extends BaseModule {
|
|
|
2793
2800
|
EventButtonComponent,
|
|
2794
2801
|
DayEventListComponent,
|
|
2795
2802
|
EventButtonEndArrowComponent,
|
|
2796
|
-
EventButtonStartArrowComponent,
|
|
2803
|
+
EventButtonStartArrowComponent,
|
|
2804
|
+
DateTimePickerComponent,
|
|
2805
|
+
CalendarSelectionDaysComponent, DaysInWeekPipe, EventDatePipe, EventTimePipe, FromToTimePipe, EqualDatePipe], imports: [CommonModule,
|
|
2797
2806
|
FormsModule,
|
|
2798
2807
|
BarsaNovinRayCoreModule,
|
|
2799
2808
|
FundamentalNgxCoreModule,
|
|
@@ -2812,7 +2821,9 @@ class BarsaCalendarModule extends BaseModule {
|
|
|
2812
2821
|
EventButtonComponent,
|
|
2813
2822
|
DayEventListComponent,
|
|
2814
2823
|
EventButtonEndArrowComponent,
|
|
2815
|
-
EventButtonStartArrowComponent,
|
|
2824
|
+
EventButtonStartArrowComponent,
|
|
2825
|
+
DateTimePickerComponent,
|
|
2826
|
+
CalendarSelectionDaysComponent] }); }
|
|
2816
2827
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BarsaCalendarModule, providers: [TitleCasePipe, CalendarService, ...pipes], imports: [CommonModule,
|
|
2817
2828
|
FormsModule,
|
|
2818
2829
|
BarsaNovinRayCoreModule,
|
|
@@ -2834,9 +2845,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
2834
2845
|
CardModule,
|
|
2835
2846
|
QuickViewModule
|
|
2836
2847
|
],
|
|
2837
|
-
declarations: [...components, ...pipes
|
|
2848
|
+
declarations: [...components, ...pipes],
|
|
2838
2849
|
providers: [TitleCasePipe, CalendarService, ...pipes],
|
|
2839
|
-
exports: [...components
|
|
2850
|
+
exports: [...components]
|
|
2840
2851
|
}]
|
|
2841
2852
|
}], ctorParameters: () => [] });
|
|
2842
2853
|
|