@syncfusion/ej2-calendars
Advanced tools
Comparing version 16.2.41 to 16.2.43
@@ -5,2 +5,10 @@ # Changelog | ||
### DateRangePicker | ||
#### Bug Fixes | ||
- Invalid value are not cleared in the textbox after resetting the form issue has been fixed. | ||
## 16.2.41 (2018-06-25) | ||
### Calendars | ||
@@ -7,0 +15,0 @@ |
@@ -0,1 +1,10 @@ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 16.2.43 | ||
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _calendars from '@syncfusion/ej2-calendars'; | ||
@@ -2,0 +11,0 @@ import * as _base from '@syncfusion/ej2-base'; |
{ | ||
"name": "@syncfusion/ej2-calendars", | ||
"version": "16.2.41", | ||
"version": "16.2.43", | ||
"description": "Essential JS 2 Calendar Components", | ||
@@ -13,3 +13,3 @@ "author": "Syncfusion Inc.", | ||
"@syncfusion/ej2-popups": "~16.2.41", | ||
"@syncfusion/ej2-inputs": "~16.2.41", | ||
"@syncfusion/ej2-inputs": "~16.2.43", | ||
"@syncfusion/ej2-lists": "~16.2.41", | ||
@@ -16,0 +16,0 @@ "@syncfusion/ej2-buttons": "~16.2.41" |
@@ -232,2 +232,4 @@ var __extends = (this && this.__extends) || (function () { | ||
this.value = null; | ||
ej2_base_3.attributes(this.inputElement, { 'aria-invalid': 'false' }); | ||
ej2_base_3.removeClass([this.inputWrapper.container], ERROR); | ||
} | ||
@@ -851,3 +853,3 @@ }; | ||
DatePicker.prototype.disabledDates = function () { | ||
var valueCopy = new Date(' ' + this.value); | ||
var valueCopy = new Date('' + this.value); | ||
var previousValCopy = this.previousDate; | ||
@@ -917,3 +919,3 @@ this.minMaxUpdates(); | ||
if (typeof newProp.value === 'string') { | ||
newProp.value = this.globalize.parseDate(newProp.value, options); | ||
newProp.value = this.checkDateValue(new Date('' + newProp.value)); | ||
this.setProperties({ value: newProp.value }, true); | ||
@@ -920,0 +922,0 @@ } |
@@ -134,2 +134,3 @@ /// <reference path="../calendar/calendar-model.d.ts" /> | ||
private preventFocus; | ||
private closeEventArgs; | ||
/** | ||
@@ -136,0 +137,0 @@ * Gets or sets the start and end date of the Calendar. |
@@ -1082,4 +1082,4 @@ var __extends = (this && this.__extends) || (function () { | ||
if (typeof newProp.value === 'string') { | ||
this.setProperties({ value: this.globalize.parseDate(newProp.value, options) }, true); | ||
newProp.value = this.globalize.parseDate(newProp.value, options); | ||
this.setProperties({ value: this.checkDateValue(new Date('' + newProp.value)) }, true); | ||
newProp.value = this.checkDateValue(new Date('' + newProp.value)); | ||
} | ||
@@ -1086,0 +1086,0 @@ newProp.value = this.validateValue(newProp.value); |
@@ -285,2 +285,3 @@ import { Internationalization } from '@syncfusion/ej2-base'; | ||
private getDateObject(text); | ||
private removeErrorClass(); | ||
private checkErrorState(val); | ||
@@ -287,0 +288,0 @@ private validateInterval(); |
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
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
18896123
194119