Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-inputs

Package Overview
Dependencies
Maintainers
2
Versions
247
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-inputs - npm Package Compare versions

Comparing version 16.2.49 to 16.2.50

6

CHANGELOG.md

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

### Uploader
#### Bug Fixes
- Resolved the issue with adding the additional form data in IE browser.
## 16.2.48 (2018-08-14)

@@ -7,0 +13,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.2.49
* version : 16.2.50
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"name": "@syncfusion/ej2-inputs",
"version": "16.2.49",
"version": "16.2.50",
"description": "Essential JS 2 Input Components",

@@ -11,6 +11,6 @@ "author": "Syncfusion Inc.",

"dependencies": {
"@syncfusion/ej2-base": "~16.2.49",
"@syncfusion/ej2-buttons": "~16.2.49",
"@syncfusion/ej2-popups": "~16.2.49",
"@syncfusion/ej2-splitbuttons": "~16.2.49"
"@syncfusion/ej2-base": "~16.2.50",
"@syncfusion/ej2-buttons": "~16.2.50",
"@syncfusion/ej2-popups": "~16.2.50",
"@syncfusion/ej2-splitbuttons": "~16.2.50"
},

@@ -17,0 +17,0 @@ "devDependencies": {

@@ -434,2 +434,11 @@ /**

}
function autoFillMaskInputValues(isRemove, oldEventVal, event) {
if (event.type === 'input') {
isRemove = false;
oldEventVal = this.element.value;
setElementValue.call(this, this.promptMask);
setMaskValue.call(this, oldEventVal);
}
return isRemove;
}
function removeMaskInputValues(event) {

@@ -442,6 +451,8 @@ var isRemove = false;

oldEventVal = this.element.value;
setElementValue.call(this, this.promptMask);
setMaskValue.call(this, oldEventVal);
isRemove = autoFillMaskInputValues.call(this, isRemove, oldEventVal, event);
mobileRemoveFunction.call(this);
}
if (this.element.value.length >= this.promptMask.length && event.type === 'input') {
isRemove = autoFillMaskInputValues.call(this, isRemove, oldEventVal, event);
}
var initStartIndex = this.element.selectionStart;

@@ -448,0 +459,0 @@ var initEndIndex = this.element.selectionEnd;

@@ -117,3 +117,9 @@ import { Component, EmitType } from '@syncfusion/ej2-base';

export interface ValidationMessages {
/**
* Returns the minimum file size validation message, if selected file size is less than specified minFileSize property.
*/
minSize?: string;
/**
* Returns the maximum file size validation message, if selected file size is less than specified maxFileSize property.
*/
maxSize?: string;

@@ -120,0 +126,0 @@ }

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc