Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-schedule

Package Overview
Dependencies
Maintainers
2
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-schedule - npm Package Compare versions

Comparing version 16.3.21 to 16.3.22

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.3.21
* version : 16.3.22
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"name": "@syncfusion/ej2-schedule",
"version": "16.3.21",
"version": "16.3.22",
"author": "Syncfusion Inc.",

@@ -11,3 +11,3 @@ "license": "SEE LICENSE IN license",

"@syncfusion/ej2-base": "~16.3.21",
"@syncfusion/ej2-data": "~16.3.21",
"@syncfusion/ej2-data": "~16.3.22",
"@syncfusion/ej2-popups": "~16.3.21",

@@ -18,4 +18,4 @@ "@syncfusion/ej2-calendars": "~16.3.21",

"@syncfusion/ej2-buttons": "~16.3.21",
"@syncfusion/ej2-inputs": "~16.3.21",
"@syncfusion/ej2-lists": "~16.3.21"
"@syncfusion/ej2-inputs": "~16.3.22",
"@syncfusion/ej2-lists": "~16.3.22"
},

@@ -22,0 +22,0 @@ "devDependencies": {

@@ -42,4 +42,6 @@ # ej2-schedule

* [**Views**](https://ej2.syncfusion.com/16.2.41/demos/#/material/schedule/views.html) - Schedule is now availed with 6 different view modes – day, week, work week, month, agenda and month agenda. It is possible to configure view-based settings on each view mode. The `Week` view is set as active view by default.
* [**Views**](https://ej2.syncfusion.com/16.2.41/demos/#/material/schedule/views.html) - Schedule is now availed with 10 different view modes – day, week, work week, month, timeline day, timeline week, timeline work-week, timeline month, agenda and month agenda. It is possible to configure view-based settings on each view mode. The `Week` view is set as active view by default.
* [**Data binding**](https://ej2.syncfusion.com/16.2.41/demos/#/material/schedule/remote-data.html) - Seamless data binding with various client-side and remote data sources thus allowing the data to load on demand by default to reduce the data transfer and loading time.
* [**Drag and drop**] - Appointments can be easily rescheduled to another time by dragging and dropping them onto the required time slots.
* [**Appointment resize**] - An appointment’s time can be easily extended by resizing its start or end handlers.
* [**Multiple resources**](https://ej2.syncfusion.com/16.2.41/demos/#/material/schedule/group.html) - Supports planning and management of events for multiple resources and allows to group them under appropriate resources. Also, supports date-wise grouping, linked appointments and other group related customizations.

@@ -46,0 +48,0 @@ * [**Recurrence**](https://ej2.syncfusion.com/16.2.41/demos/#/material/schedule/recurrence-events.html) - Allows the user to repeat a set of events on a daily, weekly, monthly, or yearly basis.

@@ -416,3 +416,3 @@ import { extend, isNullOrUndefined, createElement, EventHandler, addClass, append, removeClass, remove, closest, classList } from '@syncfusion/ej2-base';

if (isSetModel) {
this.parent.eventWindow.refreshResourceDataSource();
this.parent.eventWindow.refresh();
}

@@ -419,0 +419,0 @@ };

@@ -114,2 +114,5 @@ var __extends = (this && this.__extends) || (function () {

this.renderElements(isSetModel);
if (isSetModel) {
this.eventWindow.refresh();
}
}

@@ -796,3 +799,2 @@ };

this.initializeResources(true);
this.eventWindow.refresh();
break;

@@ -799,0 +801,0 @@ case 'timeScale':

@@ -72,3 +72,2 @@ import { Dialog } from '@syncfusion/ej2-popups';

private onEventDetailsUpdate(eventObj);
refreshResourceDataSource(): void;
private renderRecurrenceEditor();

@@ -75,0 +74,0 @@ private updateRepeatLabel(repeatRule);

@@ -36,2 +36,3 @@ import { Dialog, Popup } from '@syncfusion/ej2-popups';

private isSameEventClick(events);
private getInnerHtmlFromElements(elements);
private eventClick(events);

@@ -38,0 +39,0 @@ private getResourceText(args, type);

@@ -1,2 +0,2 @@

import { closest, EventHandler, isNullOrUndefined, formatUnit } from '@syncfusion/ej2-base';
import { closest, EventHandler, isNullOrUndefined, formatUnit, append } from '@syncfusion/ej2-base';
import { addClass, removeClass, createElement, remove, extend } from '@syncfusion/ej2-base';

@@ -330,3 +330,3 @@ import { Dialog, Popup, isCollide } from '@syncfusion/ej2-popups';

if (this.parent.quickInfoTemplates.header) {
headerTemplate = this.parent.getQuickInfoTemplatesHeader()(templateArgs)[0].innerHTML;
headerTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesHeader()(templateArgs));
}

@@ -339,3 +339,3 @@ if (!headerTemplate) {

if (this.parent.quickInfoTemplates.content) {
contentTemplate = this.parent.getQuickInfoTemplatesContent()(templateArgs)[0].innerHTML;
contentTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesContent()(templateArgs));
}

@@ -354,3 +354,3 @@ if (!contentTemplate) {

if (this.parent.quickInfoTemplates.footer) {
footerTemplate = this.parent.getQuickInfoTemplatesFooter()(templateArgs)[0].innerHTML;
footerTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesFooter()(templateArgs));
}

@@ -407,2 +407,7 @@ if (!footerTemplate) {

};
QuickPopups.prototype.getInnerHtmlFromElements = function (elements) {
var tempEle = createElement('div');
append(elements, tempEle);
return tempEle.innerHTML;
};
QuickPopups.prototype.eventClick = function (events) {

@@ -428,3 +433,3 @@ if (this.parent.eventTooltip) {

if (this.parent.quickInfoTemplates.header) {
headerTemplate = this.parent.getQuickInfoTemplatesHeader()(templateArgs)[0].innerHTML;
headerTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesHeader()(templateArgs));
}

@@ -441,3 +446,3 @@ if (!headerTemplate) {

if (this.parent.quickInfoTemplates.content) {
contentTemplate = this.parent.getQuickInfoTemplatesContent()(templateArgs)[0].innerHTML;
contentTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesContent()(templateArgs));
}

@@ -466,3 +471,3 @@ if (!contentTemplate) {

if (this.parent.quickInfoTemplates.footer) {
footerTemplate = this.parent.getQuickInfoTemplatesFooter()(templateArgs)[0].innerHTML;
footerTemplate = this.getInnerHtmlFromElements(this.parent.getQuickInfoTemplatesFooter()(templateArgs));
}

@@ -469,0 +474,0 @@ if (!footerTemplate) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc