Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-schedule

Package Overview
Dependencies
Maintainers
3
Versions
238
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 20.4.44 to 20.4.48

10

CHANGELOG.md

@@ -9,2 +9,11 @@ # Changelog

- `#I422532` - An issue with swiping animation is slow on date navigation in iPad device has been fixed.
- `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
## 20.4.44 (2023-01-18)
### Schedule
#### Bug fixes
- `#I414149` - An issue with editor window not open in iPad device has been fixed.

@@ -29,3 +38,2 @@ - `#I425181` - An issue with wrongly shown the occurrence alert while editing title of single occurrence of daily recurrence event has been fixed.

- `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
- `#I425268` - An issue with drag and drop flickering with `eventDragArea` in timeline views has been fixed.

@@ -32,0 +40,0 @@ - `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.4.44
* version : 20.4.48
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

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

{
"_from": "@syncfusion/ej2-schedule@*",
"_id": "@syncfusion/ej2-schedule@20.4.43",
"_id": "@syncfusion/ej2-schedule@20.4.44",
"_inBundle": false,
"_integrity": "sha512-jL9idJQb54yB1L7lWEXeWZ6Dzpog5IPX6OOv4Pratf4S+WWObKIEM9obFKE3czX2qjmukBWuBSzpmSL8RZdOmg==",
"_integrity": "sha512-Chq8toDzHoZudpLLXZJKy5ukF5rES4F/VFTDj6WA4uPjMKy9rjXd5yVDSy5qyZr5B9jr2rpBzaRALo6KlTaG3w==",
"_location": "/@syncfusion/ej2-schedule",

@@ -26,4 +26,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.43.tgz",
"_shasum": "caeedb206a05f648deba6c92fb59c4f6decfe438",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.44.tgz",
"_shasum": "8b8beacb4ec2f56791c78378307c65f2c4da000b",
"_spec": "@syncfusion/ej2-schedule@*",

@@ -39,12 +39,12 @@ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~20.4.44",
"@syncfusion/ej2-buttons": "~20.4.44",
"@syncfusion/ej2-calendars": "~20.4.44",
"@syncfusion/ej2-data": "~20.4.44",
"@syncfusion/ej2-dropdowns": "~20.4.43",
"@syncfusion/ej2-excel-export": "~20.4.42",
"@syncfusion/ej2-inputs": "~20.4.42",
"@syncfusion/ej2-lists": "~20.4.42",
"@syncfusion/ej2-navigations": "~20.4.44",
"@syncfusion/ej2-popups": "~20.4.44"
"@syncfusion/ej2-base": "~20.4.48",
"@syncfusion/ej2-buttons": "~20.4.48",
"@syncfusion/ej2-calendars": "~20.4.48",
"@syncfusion/ej2-data": "~20.4.48",
"@syncfusion/ej2-dropdowns": "~20.4.48",
"@syncfusion/ej2-excel-export": "~20.4.48",
"@syncfusion/ej2-inputs": "~20.4.48",
"@syncfusion/ej2-lists": "~20.4.48",
"@syncfusion/ej2-navigations": "~20.4.48",
"@syncfusion/ej2-popups": "~20.4.48"
},

@@ -78,4 +78,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "20.4.44",
"version": "20.4.48",
"sideEffects": false
}

@@ -25,3 +25,2 @@ import { ActionBaseArgs, ResizeEdges, DragEventArgs, ResizeEventArgs } from '../base/interface';

getContentAreaDimension(): Record<string, any>;
getPageCoordinates(e: MouseEvent & TouchEvent): (MouseEvent & TouchEvent) | Touch;
getIndex(index: number): number;

@@ -28,0 +27,0 @@ updateTimePosition(date: Date, multiData?: Record<string, any>[]): void;

@@ -112,7 +112,2 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

};
ActionBase.prototype.getPageCoordinates = function (e) {
var eventArgs = e.event;
return eventArgs && eventArgs.changedTouches ? eventArgs.changedTouches[0] : e.changedTouches ? e.changedTouches[0] :
eventArgs || e;
};
ActionBase.prototype.getIndex = function (index) {

@@ -254,3 +249,3 @@ var contentElements = [].slice.call(this.parent.getContentTable().querySelector('tr').children);

ActionBase.prototype.getCursorElement = function (e) {
var pages = this.getPageCoordinates(e);
var pages = this.parent.eventBase.getPageCoordinates(e);
return document.elementFromPoint(pages.clientX, pages.clientY);

@@ -257,0 +252,0 @@ };

@@ -100,3 +100,3 @@ var __extends = (this && this.__extends) || (function () {

}
var pages = _this.getPageCoordinates(e);
var pages = _this.parent.eventBase.getPageCoordinates(e);
_this.actionObj.X = pages.pageX;

@@ -130,3 +130,3 @@ _this.actionObj.Y = pages.pageY;

}
var pages = this.getPageCoordinates(e);
var pages = this.parent.eventBase.getPageCoordinates(e);
if (this.parent.currentView === 'Month' || this.parent.currentView === 'TimelineYear') {

@@ -564,3 +564,3 @@ var doc = document.documentElement;

Resize.prototype.resizeValidation = function (e) {
var pages = this.getPageCoordinates(e);
var pages = this.parent.eventBase.getPageCoordinates(e);
var viewDimension = this.getContentAreaDimension();

@@ -567,0 +567,0 @@ var isTimeScale = this.parent.activeView.isTimelineView() && this.parent.activeViewOptions.timeScale.enable;

@@ -97,3 +97,3 @@ import { addClass, removeClass, Touch, remove, EventHandler, Browser } from '@syncfusion/ej2-base';

if (offsetDist > time && (e.distanceX > (this.parent.element.offsetWidth / 2))) {
this.element.style.transitionDuration = ((offsetDist / time) / 10) + 's';
this.element.style.transitionDuration = (((Browser.isDevice ? e.distanceX : offsetDist) / time) / 10) + 's';
}

@@ -228,2 +228,3 @@ this.confirmSwipe(e.swipeDirection);

this.element.style.transform = '';
this.element.style.transitionDuration = '';
util.removeChildren(this.element);

@@ -230,0 +231,0 @@ removeClass([this.element], cls.TRANSLATE_CLASS);

@@ -32,2 +32,3 @@ import { Predicate } from '@syncfusion/ej2-data';

sortByDateTime(appointments: Record<string, any>[]): Record<string, any>[];
private customSorting;
getSmallestMissingNumber(array: number[]): number;

@@ -89,4 +90,5 @@ splitEventByDay(event: Record<string, any>): Record<string, any>[];

createEventWrapper(type?: string, index?: number): HTMLElement;
getPageCoordinates(e: MouseEvent & TouchEvent): (MouseEvent & TouchEvent) | Touch;
private unWireEvents;
destroy(): void;
}

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

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 too big to display

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

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

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