@syncfusion/ej2-calendars
Advanced tools
Comparing version 25.2.7 to 26.1.35
@@ -18,3 +18,4 @@ { | ||
"sourceType": "module" | ||
}, | ||
}, | ||
"ignorePatterns": ["*.d.ts", "*.js"], | ||
"plugins": [ | ||
@@ -188,3 +189,3 @@ "@typescript-eslint", | ||
], | ||
"@typescript-eslint/no-explicit-any": "error", | ||
"@typescript-eslint/no-explicit-any": "warn", | ||
"no-cond-assign": [ | ||
@@ -191,0 +192,0 @@ "error", |
/*! | ||
* filename: index.d.ts | ||
* version : 25.2.7 | ||
* version : 26.1.35 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-calendars@*", | ||
"_id": "@syncfusion/ej2-calendars@25.2.5", | ||
"_id": "@syncfusion/ej2-calendars@18.32.5", | ||
"_inBundle": false, | ||
"_integrity": "sha512-HGiEhUeFlueKRI/SCBUnHrLzTJ4r+lKPikPc7+df0+64eM+WGtOfsfjFPq1XamTCju/vhX14/VGRUdlARFreDQ==", | ||
"_integrity": "sha512-O94+yxbtE71OtLyLIVu8AKHjAhlyYG3VLgqJu6f0y/0i3jjsbev7DfH+PT5jskNEH1gHz9wJ8UsatRfP77myjQ==", | ||
"_location": "/@syncfusion/ej2-calendars", | ||
@@ -34,6 +34,6 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-calendars/-/ej2-calendars-25.2.5.tgz", | ||
"_shasum": "bf1931781dcaa7ab229cd7ff0c8280a13777c32b", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-calendars/-/ej2-calendars-18.32.5.tgz", | ||
"_shasum": "d3563a237a72a2b7cc11cce7bb2199cde963c506", | ||
"_spec": "@syncfusion/ej2-calendars@*", | ||
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included", | ||
"_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included", | ||
"author": { | ||
@@ -47,7 +47,7 @@ "name": "Syncfusion Inc." | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~25.2.7", | ||
"@syncfusion/ej2-buttons": "~25.2.7", | ||
"@syncfusion/ej2-inputs": "~25.2.6", | ||
"@syncfusion/ej2-lists": "~25.2.3", | ||
"@syncfusion/ej2-popups": "~25.2.7" | ||
"@syncfusion/ej2-base": "~26.1.35", | ||
"@syncfusion/ej2-buttons": "~26.1.35", | ||
"@syncfusion/ej2-inputs": "~26.1.35", | ||
"@syncfusion/ej2-lists": "~26.1.35", | ||
"@syncfusion/ej2-popups": "~26.1.35" | ||
}, | ||
@@ -85,4 +85,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "25.2.7", | ||
"version": "26.1.35", | ||
"sideEffects": false | ||
} |
@@ -51,3 +51,3 @@ import { Component, Internationalization, ModuleDeclaration } from '@syncfusion/ej2-base'; | ||
protected todayDate: Date; | ||
protected islamicPreviousHeader: any; | ||
protected islamicPreviousHeader: string; | ||
protected calendarElement: HTMLElement; | ||
@@ -65,3 +65,2 @@ protected isPopupClicked: boolean; | ||
protected preventChange: boolean; | ||
protected isAngular: boolean; | ||
protected previousDates: boolean; | ||
@@ -68,0 +67,0 @@ /** |
@@ -305,3 +305,4 @@ /** | ||
var splityear = this.calendarInstance.headerElement.textContent.split('-'); | ||
if ((!isNullOrUndefined(e) && (splityear[0] !== startHdrYr) && e.action === 'home') || (!isNullOrUndefined(e) && e.type === 'keydown' && e.action === 'end')) { | ||
if ((!isNullOrUndefined(e) && (splityear[0] !== startHdrYr) && e.action === 'home') || | ||
(!isNullOrUndefined(e) && e.type === 'keydown' && e.action === 'end')) { | ||
startHdrYr = this.calendarInstance.headerElement.textContent.split('-')[0].trim(); | ||
@@ -316,4 +317,4 @@ endHdrYr = this.calendarInstance.headerElement.textContent.split('-')[1].trim(); | ||
if (this.calendarInstance.previousIconClicked) { | ||
// eslint-disable-next-line no-var | ||
for (var i = 0; i <= splityear.length; i++) { | ||
var i = 0; | ||
for (i = 0; i <= splityear.length; i++) { | ||
endHdrYr = endHdrYr - splityear[i] === 2 || splityear[i] | ||
@@ -347,10 +348,10 @@ - endHdrYr === 2 ? (parseInt(endHdrYr, 10) + 1).toString() : | ||
if (this.calendarInstance.nextIconClicked) { | ||
for (var i_1 = 0; i_1 <= splityear.length; i_1++) { | ||
if (startHdrYr - splityear[i_1] === 0 || splityear[i_1] - startHdrYr === 0) { | ||
for (var i = 0; i <= splityear.length; i++) { | ||
if (startHdrYr - splityear[i] === 0 || splityear[i] - startHdrYr === 0) { | ||
startHdrYr = (parseInt(startHdrYr, 10) + 1).toString(); | ||
} | ||
if (startHdrYr - splityear[i_1] === 2 && startHdrYr > splityear[i_1].trim()) { | ||
if (startHdrYr - splityear[i] === 2 && startHdrYr > splityear[i].trim()) { | ||
startHdrYr = (parseInt(startHdrYr, 10) - 1).toString(); | ||
} | ||
if (splityear[i_1] - startHdrYr === 1 && startHdrYr < splityear[i_1].trim()) { | ||
if (splityear[i] - startHdrYr === 1 && startHdrYr < splityear[i].trim()) { | ||
startHdrYr = (parseInt(startHdrYr, 10) + 2).toString(); | ||
@@ -357,0 +358,0 @@ } |
@@ -61,3 +61,2 @@ /// <reference path="../calendar/calendar-model.d.ts" /> | ||
protected mobilePopupWrapper: HTMLElement; | ||
protected isAngular: boolean; | ||
protected preventChange: boolean; | ||
@@ -64,0 +63,0 @@ protected isIconClicked: boolean; |
@@ -171,3 +171,2 @@ /// <reference path="../calendar/calendar-model.d.ts" /> | ||
private mobileRangePopupWrap; | ||
protected isAngular: boolean; | ||
protected preventChange: boolean; | ||
@@ -174,0 +173,0 @@ protected touchRangeModule: Touch; |
@@ -289,4 +289,4 @@ import { L10n, getValue, getDefaultDateObject, cldrData } from '@syncfusion/ej2-base'; | ||
newDateValue.setMonth(month - 1); | ||
if (month >= 10 || month == 1) { | ||
if (this.isLeadingZero && month == 1) { | ||
if (month >= 10 || month === 1) { | ||
if (this.isLeadingZero && month === 1) { | ||
this.isNavigate = month.toString().length === 1; | ||
@@ -444,3 +444,2 @@ this.isLeadingZero = false; | ||
this.periodCharacter += newVal[start - 1].toLowerCase(); | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
var periodString = (this.getCulturedValue('dayPeriods.format.wide')); | ||
@@ -466,4 +465,3 @@ var periodkeys = Object.keys(periodString); | ||
MaskedDateTime.prototype.formatCheck = function () { | ||
// eslint-disable-next-line @typescript-eslint/no-this-alias | ||
var proxy = this; | ||
var proxy = null || this; | ||
function formatValueSpecifier(formattext) { | ||
@@ -470,0 +468,0 @@ var result; |
@@ -186,3 +186,2 @@ import { Internationalization } from '@syncfusion/ej2-base'; | ||
private mobileTimePopupWrap; | ||
protected isAngular: boolean; | ||
protected preventChange: boolean; | ||
@@ -189,0 +188,0 @@ protected maskedDateValue: string; |
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 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
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
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
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
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
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
14167946
525
174720
+ Added@syncfusion/ej2-base@26.1.42(transitive)
+ Added@syncfusion/ej2-buttons@26.1.40(transitive)
+ Added@syncfusion/ej2-data@26.1.42(transitive)
+ Added@syncfusion/ej2-icons@26.1.35(transitive)
+ Added@syncfusion/ej2-inputs@26.1.42(transitive)
+ Added@syncfusion/ej2-lists@26.1.35(transitive)
+ Added@syncfusion/ej2-popups@26.1.42(transitive)
+ Added@syncfusion/ej2-splitbuttons@26.1.35(transitive)
- Removed@syncfusion/ej2-base@25.2.7(transitive)
- Removed@syncfusion/ej2-buttons@25.2.7(transitive)
- Removed@syncfusion/ej2-data@25.2.3(transitive)
- Removed@syncfusion/ej2-icons@25.2.3(transitive)
- Removed@syncfusion/ej2-inputs@25.2.6(transitive)
- Removed@syncfusion/ej2-lists@25.2.3(transitive)
- Removed@syncfusion/ej2-popups@25.2.7(transitive)
- Removed@syncfusion/ej2-splitbuttons@25.2.4(transitive)