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.24 to 16.3.25

16

CHANGELOG.md

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

### TextBox
#### Bug Fixes
- The issue with adding multiple classes in `cssClass` property has been fixed.
### MaskedTextBox

@@ -10,2 +16,12 @@

- Issue with entering the first character in masked text box when "floatLabelType" is set to "Never" has been fixed.
- Always last MaskedTextBox component get focus on initial page load in IE browser, issue has been fixed.
## 16.3.24 (2018-10-09)
### MaskedTextBox
#### Bug Fixes
- Issue with setting placeholder in IE browser when "floatLabelType" is set to "never" has been fixed.

@@ -12,0 +28,0 @@

10

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

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

import * as _inputs from '@syncfusion/ej2-inputs';
import * as _base from '@syncfusion/ej2-base';
import * as _buttons from '@syncfusion/ej2-buttons';
import * as _popups from '@syncfusion/ej2-popups';
import * as _splitbuttons from '@syncfusion/ej2-splitbuttons';
export declare namespace ej {
const inputs: typeof _inputs;
const base: typeof _base;
const buttons: typeof _buttons;
const popups: typeof _popups;
const splitbuttons: typeof _splitbuttons;
}

6

package.json
{
"name": "@syncfusion/ej2-inputs",
"version": "16.3.24",
"version": "16.3.25",
"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.",

@@ -12,4 +12,4 @@ "author": "Syncfusion Inc.",

"@syncfusion/ej2-base": "~16.3.24",
"@syncfusion/ej2-buttons": "~16.3.24",
"@syncfusion/ej2-popups": "~16.3.24",
"@syncfusion/ej2-buttons": "~16.3.25",
"@syncfusion/ej2-popups": "~16.3.25",
"@syncfusion/ej2-splitbuttons": "~16.3.24"

@@ -16,0 +16,0 @@ },

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

else {
this.errorRules = [];
for (var _i = 0, rules_1 = rules; _i < rules_1.length; _i++) {

@@ -576,3 +577,3 @@ var name_1 = rules_1[_i];

if (!this.infoElement) {
this.infoElement = select(this.errorElement + '.' + this.errorClass + '[for="' + name + '"]');
this.infoElement = select(this.errorElement + '.' + this.errorClass + '[for="' + name + '"]', this.element);
}

@@ -579,0 +580,0 @@ return this.infoElement;

@@ -1,1 +0,6 @@

export * from './index';
import * as inputs from './index';
import * as base from '@syncfusion/ej2-base';
import * as buttons from '@syncfusion/ej2-buttons';
import * as popups from '@syncfusion/ej2-popups';
import * as splitbuttons from '@syncfusion/ej2-splitbuttons';
export { inputs, base, buttons, popups, splitbuttons };

@@ -314,6 +314,6 @@ import { createElement, attributes, addClass, removeClass, detach, classList, closest, isNullOrUndefined } from '@syncfusion/ej2-base';

if (!isNullOrUndefined(oldClass) && oldClass !== '') {
removeClass(elements, oldClass);
removeClass(elements, oldClass.split(' '));
}
if (!isNullOrUndefined(cssClass) && cssClass !== '') {
addClass(elements, cssClass);
addClass(elements, cssClass.split(' '));
}

@@ -320,0 +320,0 @@ }

@@ -596,2 +596,8 @@ /**

var collec = void 0;
var key = event.key;
if (key && key.length === 1 && this.floatLabelType === 'Never' && this.undoCollec.length > 0) {
if (this.undoCollec[this.undoCollec.length - 1].value === this.element.value) {
validateValue.call(this, key, event.ctrlKey, event);
}
}
if (!this.maskKeyPress && event.keyCode === 229) {

@@ -598,0 +604,0 @@ var oldEventVal = void 0;

@@ -1,2 +0,2 @@

import { Component, Event, Property, EmitType, NotifyPropertyChanges, INotifyPropertyChanged, BaseEventArgs } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit, getValue, setValue, attributes, addClass, detach, createElement } from '@syncfusion/ej2-base';import { removeClass } from '@syncfusion/ej2-base';import { Input, InputObject, FloatLabelType } from '../../input/input';import { regularExpressions, createMask, applyMask, wireEvents, unwireEvents, unstrippedValue, strippedValue } from '../base/index';import { setMaskValue, MaskUndo, setElementValue, bindClearEvent } from '../base/index';import { maskInputBlurHandler } from '../base/mask-base';
import { Component, Event, Property, EmitType, NotifyPropertyChanges, INotifyPropertyChanged, BaseEventArgs } from '@syncfusion/ej2-base';import { isNullOrUndefined, formatUnit, getValue, setValue, attributes, addClass, detach, createElement } from '@syncfusion/ej2-base';import { removeClass , Browser} from '@syncfusion/ej2-base';import { Input, InputObject, FloatLabelType } from '../../input/input';import { regularExpressions, createMask, applyMask, wireEvents, unwireEvents, unstrippedValue, strippedValue } from '../base/index';import { setMaskValue, MaskUndo, setElementValue, bindClearEvent } from '../base/index';import { maskInputBlurHandler } from '../base/mask-base';
import {MaskChangeEventArgs,MaskFocusEventArgs} from "./maskedtextbox";

@@ -3,0 +3,0 @@ import {ComponentModel} from '@syncfusion/ej2-base';

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

import { isNullOrUndefined, formatUnit, getValue, setValue, addClass, detach } from '@syncfusion/ej2-base';
import { removeClass } from '@syncfusion/ej2-base';
import { removeClass, Browser } from '@syncfusion/ej2-base';
import { Input } from '../../input/input';

@@ -119,2 +119,5 @@ import { regularExpressions, createMask, applyMask, wireEvents, unwireEvents, unstrippedValue, strippedValue } from '../base/index';

this.preEleVal = this.element.value;
if (!Browser.isDevice && (Browser.info.version === '11.0' || Browser.info.name === 'edge')) {
this.element.blur();
}
}

@@ -121,0 +124,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 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

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