@fullcalendar/angular
Advanced tools
Comparing version 6.0.0-beta.2 to 6.0.0-beta.3
@@ -1,3 +0,5 @@ | ||
import { ElementRef, AfterViewInit, DoCheck, AfterContentChecked, OnDestroy } from '@angular/core'; | ||
import { TemplateRef, ElementRef, AfterViewInit, DoCheck, AfterContentChecked, OnDestroy, ChangeDetectorRef } from '@angular/core'; | ||
import { Calendar, CalendarOptions } from '@fullcalendar/core'; | ||
import { CustomRendering } from '@fullcalendar/core/internal'; | ||
import { CalendarOption, CalendarTemplateRef } from './private-types'; | ||
import * as i0 from "@angular/core"; | ||
@@ -8,5 +10,29 @@ export declare class FullCalendarComponent implements AfterViewInit, DoCheck, AfterContentChecked, OnDestroy { | ||
deepChangeDetection?: boolean; | ||
events?: CalendarOption<'events'>; | ||
eventSources?: CalendarOption<'eventSources'>; | ||
resources?: CalendarOption<'resources'>; | ||
dayHeaderContent?: CalendarTemplateRef<'dayHeaderContent'>; | ||
dayCellContent?: CalendarTemplateRef<'dayCellContent'>; | ||
weekNumberContent?: CalendarTemplateRef<'weekNumberContent'>; | ||
nowIndicatorContent?: CalendarTemplateRef<'nowIndicatorContent'>; | ||
eventContent?: CalendarTemplateRef<'eventContent'>; | ||
slotLaneContent?: CalendarTemplateRef<'slotLaneContent'>; | ||
slotLabelContent?: CalendarTemplateRef<'slotLabelContent'>; | ||
allDayContent?: CalendarTemplateRef<'allDayContent'>; | ||
moreLinkContent?: CalendarTemplateRef<'moreLinkContent'>; | ||
noEventsContent?: CalendarTemplateRef<'noEventsContent'>; | ||
resourceAreaHeaderContent?: CalendarTemplateRef<'resourceAreaHeaderContent'>; | ||
resourceGroupLabelContent?: CalendarTemplateRef<'resourceGroupLabelContent'>; | ||
resourceLabelContent?: CalendarTemplateRef<'resourceLabelContent'>; | ||
resourceLaneContent?: CalendarTemplateRef<'resourceLaneContent'>; | ||
resourceGroupLaneContent?: CalendarTemplateRef<'resourceGroupLaneContent'>; | ||
private calendar; | ||
private optionSnapshot; | ||
constructor(element: ElementRef); | ||
private handleCustomRendering; | ||
private customRenderingMap; | ||
private customRenderingArray?; | ||
templateMap: { | ||
[templateName: string]: TemplateRef<any>; | ||
}; | ||
constructor(element: ElementRef, changeDetector: ChangeDetectorRef); | ||
ngAfterViewInit(): void; | ||
@@ -16,5 +42,8 @@ ngDoCheck(): void; | ||
ngOnDestroy(): void; | ||
get customRenderings(): CustomRendering<any>[]; | ||
getApi(): Calendar; | ||
private buildInputOptions; | ||
private buildExtraOptions; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FullCalendarComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FullCalendarComponent, "full-calendar", never, { "options": "options"; "deepChangeDetection": "deepChangeDetection"; }, {}, never, never, false, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<FullCalendarComponent, "full-calendar", never, { "options": "options"; "deepChangeDetection": "deepChangeDetection"; "events": "events"; "eventSources": "eventSources"; "resources": "resources"; }, {}, ["dayHeaderContent", "dayCellContent", "weekNumberContent", "nowIndicatorContent", "eventContent", "slotLaneContent", "slotLabelContent", "allDayContent", "moreLinkContent", "noEventsContent", "resourceAreaHeaderContent", "resourceGroupLabelContent", "resourceLabelContent", "resourceLaneContent", "resourceGroupLaneContent"], never>; | ||
} |
import * as i0 from "@angular/core"; | ||
import * as i1 from "./full-calendar.component"; | ||
import * as i2 from "./utils/offscreen-fragment.component"; | ||
import * as i3 from "./utils/transport-container.component"; | ||
import * as i4 from "@angular/platform-browser"; | ||
export declare class FullCalendarModule { | ||
static ɵfac: i0.ɵɵFactoryDeclaration<FullCalendarModule, never>; | ||
static ɵmod: i0.ɵɵNgModuleDeclaration<FullCalendarModule, [typeof i1.FullCalendarComponent], never, [typeof i1.FullCalendarComponent]>; | ||
static ɵmod: i0.ɵɵNgModuleDeclaration<FullCalendarModule, [typeof i1.FullCalendarComponent, typeof i2.OffscreenFragmentComponent, typeof i3.TransportContainerComponent], [typeof i4.BrowserModule], [typeof i1.FullCalendarComponent]>; | ||
static ɵinj: i0.ɵɵInjectorDeclaration<FullCalendarModule>; | ||
} |
export declare const OPTION_IS_DEEP: { | ||
[optionName: string]: boolean; | ||
}; | ||
export declare const OPTION_INPUT_NAMES: string[]; | ||
export declare const OPTION_TEMPLATE_NAMES: string[]; |
{ | ||
"name": "@fullcalendar/angular", | ||
"version": "6.0.0-beta.2", | ||
"version": "6.0.0-beta.3", | ||
"title": "FullCalendar Angular Component", | ||
@@ -18,9 +18,8 @@ "description": "An official FullCalendar component for Angular", | ||
"dependencies": { | ||
"fast-deep-equal": "^3.1.3", | ||
"tslib": "^2.3.0" | ||
}, | ||
"peerDependencies": { | ||
"@angular/common": "9 - 15", | ||
"@angular/core": "9 - 15", | ||
"@fullcalendar/core": "6.0.0-beta.2" | ||
"@angular/common": "12 - 15", | ||
"@angular/core": "12 - 15", | ||
"@fullcalendar/core": "6.0.0-beta.3" | ||
}, | ||
@@ -32,3 +31,3 @@ "module": "fesm2015/fullcalendar-angular.mjs", | ||
"fesm2015": "fesm2015/fullcalendar-angular.mjs", | ||
"typings": "index.d.ts", | ||
"typings": "fullcalendar-angular.d.ts", | ||
"exports": { | ||
@@ -39,3 +38,3 @@ "./package.json": { | ||
".": { | ||
"types": "./index.d.ts", | ||
"types": "./fullcalendar-angular.d.ts", | ||
"esm2020": "./esm2020/fullcalendar-angular.mjs", | ||
@@ -42,0 +41,0 @@ "es2020": "./fesm2020/fullcalendar-angular.mjs", |
@@ -15,2 +15,2 @@ | ||
`@fullcalendar/angular` version 5 supports Angular 9 - 15. | ||
`@fullcalendar/angular` version 5 supports Angular 12 - 15. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
192613
4
27
1516
6
+ Added@fullcalendar/core@6.0.0-beta.3(transitive)
+ Addedpreact@10.25.0(transitive)
- Removedfast-deep-equal@^3.1.3
- Removed@fullcalendar/core@6.0.0-beta.2(transitive)
- Removedfast-deep-equal@3.1.3(transitive)
- Removedpreact@10.24.3(transitive)