Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-inputs

Package Overview
Dependencies
Maintainers
2
Versions
249
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.3.22 to 16.3.24

8

CHANGELOG.md

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

### MaskedTextBox
#### Bug Fixes
- Issue with setting placeholder in IE browser when "floatLabelType" is set to "never" has been fixed.
## 16.3.22 (2018-09-25)
### FormValidator

@@ -7,0 +15,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.3.22
* version : 16.3.24
* 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.3.22",
"version": "16.3.24",
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users.",

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

"dependencies": {
"@syncfusion/ej2-base": "~16.3.21",
"@syncfusion/ej2-buttons": "~16.3.21",
"@syncfusion/ej2-popups": "~16.3.21",
"@syncfusion/ej2-splitbuttons": "~16.3.22"
"@syncfusion/ej2-base": "~16.3.24",
"@syncfusion/ej2-buttons": "~16.3.24",
"@syncfusion/ej2-popups": "~16.3.24",
"@syncfusion/ej2-splitbuttons": "~16.3.24"
},

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

@@ -23,3 +23,3 @@ var __extends = (this && this.__extends) || (function () {

*/
var VALIDATE_EMAIL = new RegExp('^[A-Za-z0-9._%+-]{3,}@[a-zA-Z0-9]{3,}([.]{1}[a-zA-Z]{2,5}' +
var VALIDATE_EMAIL = new RegExp('^[A-Za-z0-9._%+-]{1,}@[a-zA-Z0-9]{1,}([.]{1}[a-zA-Z]{2,5}' +
'|[.]{1}[a-zA-Z]{2,4}[.]{1}[a-zA-Z]{2,4})$');

@@ -26,0 +26,0 @@ var VALIDATE_URL = new RegExp('^((ftp|http|https):\/\/)?www\.([A-z]{2,})\.([A-z]{2,})$');

@@ -337,2 +337,5 @@ /**

function maskInputHandler(event) {
if (Browser.isIE === true && this.element.value === '' && this.floatLabelType === 'Never') {
return;
}
var eventArgs = { ctrlKey: false, keyCode: 229 };

@@ -894,4 +897,7 @@ // tslint:disable-next-line

this.maskKeyPress = true;
setElementValue.call(this, this.promptMask);
if (val !== '') {
if (val === null && this.floatLabelType === 'Never' && this.placeholder) {
setElementValue.call(this, this.promptMask);
}
else if (val !== '') {
setElementValue.call(this, this.promptMask);
this.element.selectionStart = 0;

@@ -898,0 +904,0 @@ this.element.selectionEnd = 0;

@@ -161,3 +161,3 @@ import { Component, EventHandler, Property, Event, EmitType, Complex, classList } from '@syncfusion/ej2-base';import { L10n, Internationalization, NumberFormatOptions } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, INotifyPropertyChanged, ChildProperty } from '@syncfusion/ej2-base';import { attributes, addClass, removeClass, setStyleAttribute, detach } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit, Browser } from '@syncfusion/ej2-base';import { Tooltip, Position, TooltipEventArgs } from '@syncfusion/ej2-popups';

* when increase / decrease button is clicked or press arrow keys or drag the thumb.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/ticks.html?lang=typescript#step)
* Refer the documentation [here](./ticks.html#step)
* to know more about this property with demo.

@@ -204,3 +204,3 @@ *

* It is used to render the slider ticks options such as placement and step values.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/ticks.html?lang=typescript)
* Refer the documentation [here](./ticks.html)
* to know more about this property with demo.

@@ -215,3 +215,3 @@ *

* It is used to limit the slider movement within certain limits.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/limits.html?lang=typescript)
* Refer the documentation [here](./limits.html)
* to know more about this property with demo

@@ -247,3 +247,3 @@ *

* which is used to change the slider value.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/getting-started.html?lang=typescript#buttons)
* Refer the documentation [here](./getting-started.html#buttons)
* to know more about this property with demo.

@@ -264,3 +264,3 @@ *

* It is used to render Slider in either horizontal or vertical orientation.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/getting-started.html?lang=typescript#orientation)
* Refer the documentation [here](./getting-started.html#orientation)
* to know more about this property with demo.

@@ -267,0 +267,0 @@ * @default 'Horizontal'

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

* when increase / decrease button is clicked or press arrow keys or drag the thumb.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/ticks.html?lang=typescript#step)
* Refer the documentation [here](./ticks.html#step)
* to know more about this property with demo.

@@ -322,3 +322,3 @@ *

* It is used to render the slider ticks options such as placement and step values.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/ticks.html?lang=typescript)
* Refer the documentation [here](./ticks.html)
* to know more about this property with demo.

@@ -332,3 +332,3 @@ *

* It is used to limit the slider movement within certain limits.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/limits.html?lang=typescript)
* Refer the documentation [here](./limits.html)
* to know more about this property with demo

@@ -360,3 +360,3 @@ *

* which is used to change the slider value.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/getting-started.html?lang=typescript#buttons)
* Refer the documentation [here](./getting-started.html#buttons)
* to know more about this property with demo.

@@ -375,3 +375,3 @@ *

* It is used to render Slider in either horizontal or vertical orientation.
* Refer the documentation [here](http://ej2.syncfusion.com/documentation/slider/getting-started.html?lang=typescript#orientation)
* Refer the documentation [here](./getting-started.html#orientation)
* to know more about this property with demo.

@@ -378,0 +378,0 @@ * @default 'Horizontal'

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

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