@syncfusion/ej2-schedule
Advanced tools
Comparing version 22.2.8 to 22.2.11
/*! | ||
* filename: index.d.ts | ||
* version : 22.2.8 | ||
* version : 22.2.11 | ||
* 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@22.2.5", | ||
"_id": "@syncfusion/ej2-schedule@22.2.8", | ||
"_inBundle": false, | ||
"_integrity": "sha512-ZZHWpfm3u01zXFvMxeG4FnLxImHvYMrrF21zy4FEnfeYXwrKNF7eFEZXhK8hXaNRsyebvUCc8NWV6n07xOrCzQ==", | ||
"_integrity": "sha512-Kx0CfzH9nk0XZaYgJGZpQXWGCWARyl7WB9pF2s8F7U749gjOQ/9T/+jYXY/9ViAcoH0YKgy1LsvCy1fl2Pa6cQ==", | ||
"_location": "/@syncfusion/ej2-schedule", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-22.2.5.tgz", | ||
"_shasum": "2df651a9adbba15d66af5bf503cf4da5503a2e24", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-22.2.8.tgz", | ||
"_shasum": "d4abd42dfb2c617501dbb6a65a870fd9e915774e", | ||
"_spec": "@syncfusion/ej2-schedule@*", | ||
@@ -39,12 +39,12 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~22.2.5", | ||
"@syncfusion/ej2-buttons": "~22.2.8", | ||
"@syncfusion/ej2-calendars": "~22.2.8", | ||
"@syncfusion/ej2-base": "~22.2.10", | ||
"@syncfusion/ej2-buttons": "~22.2.9", | ||
"@syncfusion/ej2-calendars": "~22.2.11", | ||
"@syncfusion/ej2-data": "~22.2.5", | ||
"@syncfusion/ej2-dropdowns": "~22.2.8", | ||
"@syncfusion/ej2-dropdowns": "~22.2.11", | ||
"@syncfusion/ej2-excel-export": "~22.2.5", | ||
"@syncfusion/ej2-inputs": "~22.2.7", | ||
"@syncfusion/ej2-lists": "~22.2.8", | ||
"@syncfusion/ej2-navigations": "~22.2.8", | ||
"@syncfusion/ej2-popups": "~22.2.7" | ||
"@syncfusion/ej2-inputs": "~22.2.9", | ||
"@syncfusion/ej2-lists": "~22.2.11", | ||
"@syncfusion/ej2-navigations": "~22.2.11", | ||
"@syncfusion/ej2-popups": "~22.2.11" | ||
}, | ||
@@ -78,4 +78,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "22.2.8", | ||
"version": "22.2.11", | ||
"sideEffects": false | ||
} |
@@ -32,2 +32,15 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
var calArray = iCalString.replace(new RegExp('\\r', 'g'), '').split('\n'); | ||
var descriptionIndex = calArray.findIndex(function (line) { return line.startsWith('DESCRIPTION:'); }); | ||
if (descriptionIndex !== -1) { | ||
var description = calArray[descriptionIndex].substring('DESCRIPTION:'.length); | ||
for (var i = descriptionIndex + 1; i < calArray.length; i++) { | ||
if (calArray[i].startsWith(' ') || !(/[A-Z]{3}:/.test(calArray[i]))) { | ||
description += calArray[i]; | ||
} | ||
else { | ||
calArray[descriptionIndex] = 'DESCRIPTION:' + description; | ||
break; | ||
} | ||
} | ||
} | ||
var isEvent = false; | ||
@@ -100,3 +113,6 @@ var curEvent; | ||
case 'DESCRIPTION': | ||
curEvent[fields.description] = value; | ||
if (!(curEvent[fields.description])) { | ||
curEvent[fields.description] = value.replace(/\\,/g, ',') | ||
.replace(/\\n/g, '\n'); | ||
} | ||
break; | ||
@@ -103,0 +119,0 @@ case 'ISREADONLY': |
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 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
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
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
21620467
251730