Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@syncfusion/ej2-inputs

Package Overview
Dependencies
Maintainers
2
Versions
253
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.4.47 to 16.4.48

14

CHANGELOG.md

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

## 16.4.48 (2019-01-22)
### Uploader
#### New Features
- Provided template support for preloaded files also to customize its default file list structure.
#### Bug Fixes
- Provided option to hide generated promise error manually on ajax failed event.
## 16.4.47 (2019-01-16)
### TextBox

@@ -7,0 +21,0 @@

9

dist/global/index.d.ts

@@ -1,10 +0,1 @@

/*!
* filename: index.d.ts
* version : 16.4.47
* Copyright Syncfusion Inc. 2001 - 2019. 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 _inputs from '@syncfusion/ej2-inputs';

@@ -11,0 +2,0 @@

2

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

@@ -5,0 +5,0 @@ "author": "Syncfusion Inc.",

@@ -583,3 +583,3 @@ /**

var eventArgs = {};
this.changeEventArgs = { value: this.element.value, maskedValue: this.element.value, isInteraction: false };
this.changeEventArgs = { value: this.element.value, maskedValue: this.element.value, isInteracted: false };
if (this.mask) {

@@ -589,3 +589,3 @@ this.changeEventArgs.value = strippedValue.call(this, this.element);

if (!isNullOrUndefined(event)) {
this.changeEventArgs.isInteraction = true;
this.changeEventArgs.isInteracted = true;
this.changeEventArgs.event = event;

@@ -592,0 +592,0 @@ }

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

/** Returns true when the value of MaskedTextBox is changed by user interaction. Otherwise, it returns false */
isInteraction?: boolean;
isInteracted?: boolean;
/** Returns the original event arguments. */

@@ -218,0 +218,0 @@ event?: Event;

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

event?: Event;
/** Returns the original event arguments. */
isInteraction?: boolean;
/** Returns true when the value of NumericTextBox is changed by user interaction. Otherwise, it returns false */
isInteracted?: boolean;
}

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

var eventArgs = {};
this.changeEventArgs = { value: this.value, previousValue: this.prevValue, isInteraction: this.isInteract, event: event };
this.changeEventArgs = { value: this.value, previousValue: this.prevValue, isInteracted: this.isInteract, event: event };
if (event) {

@@ -326,3 +326,3 @@ this.changeEventArgs.event = event;

if (this.changeEventArgs.event === undefined) {
this.changeEventArgs.isInteraction = false;
this.changeEventArgs.isInteracted = false;
}

@@ -329,0 +329,0 @@ merge(eventArgs, this.changeEventArgs);

@@ -283,2 +283,6 @@ import { Component, EmitType } from '@syncfusion/ej2-base';

index: number;
/**
* Return whether the file is preloaded
*/
isPreload: boolean;
}

@@ -736,2 +740,3 @@ /**

private validatedFileSize;
private isPreLoadFile;
private createCustomfileList;

@@ -738,0 +743,0 @@ private createParentUL;

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc