Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-schedule

Package Overview
Dependencies
Maintainers
3
Versions
235
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.3.47 to 20.3.49

8

CHANGELOG.md

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

#### Bug fixes
- `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
## 20.3.47 (2022-09-29)
### Schedule
#### New Features

@@ -9,0 +17,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 20.3.47
* version : 20.3.49
* 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@19.21.4",
"_id": "@syncfusion/ej2-schedule@20.3.47",
"_inBundle": false,
"_integrity": "sha512-M+BaZwECMrpaP1PoECh5YaWVfc0tXyXvJ97JMDWpzU5AX97NYPE5V+ofpVrSR8gvaixGMCkGlHq/kIFvHhL25Q==",
"_integrity": "sha512-mY9pHw0JrYsYwOWA27ejxr7OU/hoJuqKxJKfKP5lkSokLXN34IPY6slTHB//Z4EuleTB14+kpRYXYk6eR7qj+Q==",
"_location": "/@syncfusion/ej2-schedule",

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

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-schedule/-/ej2-schedule-19.21.4.tgz",
"_shasum": "ec843edf9eb8697f3ff6329d79eca23f1cabe730",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.3.47.tgz",
"_shasum": "2c9c56ea584275a1ff5960e0eb785a473de71655",
"_spec": "@syncfusion/ej2-schedule@*",

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

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

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

"typings": "index.d.ts",
"version": "20.3.47",
"version": "20.3.49",
"sideEffects": false
}

@@ -30,2 +30,3 @@ import { Schedule } from '../base/schedule';

renderResourceTree(): void;
private resourceTreeCreated;
private generateTreeData;

@@ -32,0 +33,0 @@ private renderResourceHeaderText;

@@ -335,3 +335,4 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

nodeTemplate: this.parent.resourceHeaderTemplate,
nodeClicked: this.resourceClick.bind(this)
nodeClicked: this.resourceClick.bind(this),
created: this.resourceTreeCreated.bind(this)
});

@@ -353,2 +354,8 @@ this.treeViewObj.appendTo(resourceTree);

};
ResourceBase.prototype.resourceTreeCreated = function () {
if (this.parent.portals) {
this.parent.portals = this.parent.portals.concat(this.treeViewObj.portals);
this.parent.renderTemplates();
}
};
ResourceBase.prototype.generateTreeData = function (isTimeLine) {

@@ -996,2 +1003,6 @@ var _this = this;

if (this.treeViewObj) {
if (this.treeViewObj.portals && this.treeViewObj.portals.length > 0) {
var treeViewTemplates = this.treeViewObj.portals.map(function (x) { return x.propName; });
this.parent.resetTemplates(treeViewTemplates);
}
this.treeViewObj.destroy();

@@ -998,0 +1009,0 @@ this.treeViewObj = null;

@@ -123,2 +123,3 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

ICalendarImport.prototype.processOccurrence = function (app) {
var _this = this;
var appoint = [];

@@ -146,2 +147,3 @@ var uId = 'UID';

var exdate = data[i][fields.recurrenceID];
data[i][fields.id] = _this.parent.eventBase.generateGuid();
data[i][fields.recurrenceID] = id;

@@ -151,5 +153,7 @@ data[i][fields.recurrenceException] = null;

exdate : parentObj[fields.recurrenceException] + ',' + exdate;
delete data[i][uId];
appoint.push(data[i]);
}
}
delete parentObj[uId];
appoint.push(parentObj);

@@ -159,2 +163,3 @@ // eslint-disable-next-line no-prototype-builtins

else if (!eventObj.hasOwnProperty(fields.recurrenceID)) {
delete eventObj[uId];
appoint.push(eventObj);

@@ -161,0 +166,0 @@ }

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

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