@bizy/core 19.0.4 → 19.0.5
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/bizy-core.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import * as echarts from 'echarts';
|
|
|
6
6
|
import html2canvas from 'html2canvas';
|
|
7
7
|
import { Subscription, BehaviorSubject, Subject, filter, take, skip, auditTime, throttleTime, debounceTime, interval, fromEvent, merge, timer, of } from 'rxjs';
|
|
8
8
|
import * as i2 from 'angular-calendar';
|
|
9
|
-
import { CalendarNativeDateFormatter, CalendarModule, CalendarUtils, DateAdapter, CalendarDateFormatter } from 'angular-calendar';
|
|
9
|
+
import { CalendarNativeDateFormatter, CalendarModule, CalendarUtils, CalendarA11y, DateAdapter, CalendarDateFormatter } from 'angular-calendar';
|
|
10
10
|
import { isSameMonth, isSameDay } from 'date-fns';
|
|
11
11
|
import { adapterFactory } from 'angular-calendar/date-adapters/date-fns';
|
|
12
12
|
import localeEs from '@angular/common/locales/es';
|
|
@@ -727,6 +727,7 @@ class BizyCalendarComponent {
|
|
|
727
727
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: BizyCalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
728
728
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.1", type: BizyCalendarComponent, isStandalone: true, selector: "bizy-calendar", inputs: { id: "id", hideHeaderDate: "hideHeaderDate", dayStartHour: "dayStartHour", dayEndHour: "dayEndHour", hourMinutesDuration: "hourMinutesDuration", hourSegments: "hourSegments", language: "language", excludeDays: "excludeDays", weekendDays: "weekendDays", weekStartsOn: "weekStartsOn", mode: "mode", customCalendarWeekEventTemplate: "customCalendarWeekEventTemplate", viewDate: "viewDate", events: "events" }, outputs: { onEventSelect: "onEventSelect", onDateSelect: "onDateSelect", onEventDelete: "onEventDelete" }, providers: [
|
|
729
729
|
CalendarUtils,
|
|
730
|
+
CalendarA11y,
|
|
730
731
|
{
|
|
731
732
|
provide: DateAdapter,
|
|
732
733
|
useFactory: adapterFactory,
|
|
@@ -741,6 +742,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.1", ngImpor
|
|
|
741
742
|
type: Component,
|
|
742
743
|
args: [{ selector: 'bizy-calendar', imports: [CommonModule, CalendarModule], providers: [
|
|
743
744
|
CalendarUtils,
|
|
745
|
+
CalendarA11y,
|
|
744
746
|
{
|
|
745
747
|
provide: DateAdapter,
|
|
746
748
|
useFactory: adapterFactory,
|