barsa-calendar 2.3.147 → 2.3.149
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 +17 -10
- package/fesm2022/barsa-calendar.mjs.map +1 -1
- package/index.d.ts +4 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { OnChanges, EventEmitter, SimpleChanges, OnInit, TemplateRef, ElementRef, WritableSignal, AfterViewInit, OnDestroy, PipeTransform, ComponentFactoryResolver } from '@angular/core';
|
|
3
3
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
4
4
|
import * as i24 from 'barsa-novin-ray-core';
|
|
5
|
-
import { DateInfo, CalendarMetaobjectDataModel, BaseComponent, AbbrevationDeviceSize, CultureTypes, CalendarFields, MetaobjectDataModel, ReportViewBaseComponent, UiReportViewBaseSetting, EffectiveReportLayoutPolicy, DateService, BaseModule, DynamicComponentService } from 'barsa-novin-ray-core';
|
|
5
|
+
import { DateInfo, CalendarMetaobjectDataModel, BaseComponent, AbbrevationDeviceSize, CultureTypes, CalendarFields, MetaobjectDataModel, SortDirection, ReportViewBaseComponent, UiReportViewBaseSetting, EffectiveReportLayoutPolicy, DateService, BaseModule, DynamicComponentService } from 'barsa-novin-ray-core';
|
|
6
6
|
import * as i25 from '@fundamental-ngx/core';
|
|
7
7
|
import { FdDate, TimeComponent, InputGroupComponent, PopoverComponent, ButtonType } from '@fundamental-ngx/core';
|
|
8
8
|
import * as i22 from '@angular/common';
|
|
@@ -531,6 +531,7 @@ declare class CalendarMonthComponent extends BaseComponent implements OnChanges,
|
|
|
531
531
|
dayMouseUp: EventEmitter<Day>;
|
|
532
532
|
dayMouseDown: EventEmitter<Day>;
|
|
533
533
|
showEvent: EventEmitter<CalendarMetaobjectDataModel>;
|
|
534
|
+
sortDirection: typeof SortDirection;
|
|
534
535
|
defaultWeeksCountD: number;
|
|
535
536
|
defaultFirstWeekIndex: number;
|
|
536
537
|
selectedWeekDays: string[];
|
|
@@ -658,7 +659,7 @@ declare class CalendarListContainerComponent extends BaseComponent {
|
|
|
658
659
|
calendarFields: CalendarFields;
|
|
659
660
|
deleteEvent: EventEmitter<MetaobjectDataModel>;
|
|
660
661
|
editEvent: EventEmitter<MetaobjectDataModel>;
|
|
661
|
-
eventList: WritableSignal<
|
|
662
|
+
eventList: WritableSignal<CalendarMetaobjectDataModel[]>;
|
|
662
663
|
ngOnChanges(changes: SimpleChanges): void;
|
|
663
664
|
trackById(_index: number, item: any): string;
|
|
664
665
|
protected _prepareEvents(days: Day[]): void;
|
|
@@ -696,7 +697,7 @@ declare class CalendarContainerComponent extends ReportViewBaseComponent<UiRepor
|
|
|
696
697
|
calendars: CalendarMonthInfo[];
|
|
697
698
|
showEvents: boolean;
|
|
698
699
|
width: number;
|
|
699
|
-
|
|
700
|
+
calendarHeight: number;
|
|
700
701
|
selectedMonth$: Observable<CalendarMonthInfo>;
|
|
701
702
|
today: Date;
|
|
702
703
|
weekDaysMin: string[];
|