Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-schedule

Package Overview
Dependencies
Maintainers
3
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 20.4.40 to 20.4.42

8

CHANGELOG.md

@@ -5,2 +5,10 @@ # Changelog

### Schedule
#### Bug fixes
- `#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.
- `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.
## 20.4.38 (2022-12-21)

@@ -7,0 +15,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.4.40
* version : 20.4.42
* 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.38",
"_id": "@syncfusion/ej2-schedule@20.4.40",
"_inBundle": false,
"_integrity": "sha512-WSENUt9I4hjsxSboMnN5JhqQoW63+lAlR0HADtOUe5VwmM+C3R991M71ovTMkVV0Vkz0nDfd6AtkHd67rAadaw==",
"_integrity": "sha512-9rsvmSZiEnAoFmsqayqrhXwZQK3ISXuH9kztAub0i6kH7cph8UafC2VkbpClrP3xLbzm835csRxsj0X0zhekNg==",
"_location": "/@syncfusion/ej2-schedule",

@@ -22,6 +22,8 @@ "_phantomChildren": {},

"/@syncfusion/ej2",
"/@syncfusion/ej2-angular-schedule",
"/@syncfusion/ej2-react-schedule",
"/@syncfusion/ej2-vue-schedule"
],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.38.tgz",
"_shasum": "ce2bd73b771a0343e78f91f29ccd74d91a1f43ab",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.40.tgz",
"_shasum": "dce137821e239cbe7a7c49223badbe8bbbf9414f",
"_spec": "@syncfusion/ej2-schedule@*",

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

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

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

"typings": "index.d.ts",
"version": "20.4.40",
"version": "20.4.42",
"sideEffects": false
}

@@ -82,2 +82,2 @@ # JavaScript Schedule Control

© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

@@ -130,4 +130,13 @@ var __extends = (this && this.__extends) || (function () {

var pages = this.getPageCoordinates(e);
this.actionObj.pageX = pages.pageX;
this.actionObj.pageY = pages.pageY;
if (this.parent.currentView === 'Month' || this.parent.currentView === 'TimelineYear') {
var doc = document.documentElement;
var left = (window.pageXOffset || doc.scrollLeft) - (doc.clientLeft || 0);
var top_1 = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);
this.actionObj.pageX = pages.pageX - left;
this.actionObj.pageY = pages.pageY - top_1;
}
else {
this.actionObj.pageX = pages.pageX;
this.actionObj.pageY = pages.pageY;
}
this.updateScrollPosition(e);

@@ -477,2 +486,5 @@ this.updateResizingDirection(e);

Math.ceil(clnHeight / slotInterval) * slotInterval;
if (!isTop && this.actionObj.clone.offsetTop + clnHeight >= this.parent.getContentTable().offsetHeight) {
clnHeight = this.parent.getContentTable().offsetHeight - this.actionObj.clone.offsetTop;
}
var styles = {

@@ -479,0 +491,0 @@ height: formatUnit(clnHeight < this.actionObj.cellHeight ? Math.floor(clnHeight / slotInterval) * slotInterval : clnHeight),

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 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