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.41 to 16.2.43

22

CHANGELOG.md

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

### ColorPicker
#### Bug Fixes
- IOS background scrolling issue fixed.
### Form-validator
#### Bug Fixes
- Resolved status `updation` issue.
### Uploader
#### Bug Fixes
- The files with the wrong extension cannot be uploaded when filtering the files by all files in the file dialog.
- The `clearAll` method removes upload element’s value along with file list.
## 16.2.41 (2018-06-25)
### Common

@@ -7,0 +29,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 _inputs from '@syncfusion/ej2-inputs';

@@ -2,0 +11,0 @@ import * as _base from '@syncfusion/ej2-base';

2

package.json
{
"name": "@syncfusion/ej2-inputs",
"version": "16.2.41",
"version": "16.2.43",
"description": "Essential JS 2 Input Components",

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

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

eventArgs.errorElement = this.infoElement;
eventArgs.status = 'failure';
if (eventArgs.errorElement) {
if (eventArgs.errorElement.getAttribute('aria-invalid') === 'false') {
eventArgs.status = 'success';
}
else {
eventArgs.status = 'failure';
this.inputElement.classList.add(this.errorClass);
this.inputElement.classList.remove(this.validClass);
}
}
this.trigger('validationComplete', eventArgs);

@@ -474,0 +483,0 @@ // Set aria-required to required rule elements

@@ -213,2 +213,8 @@ import { Component, Property, Event, EmitType, EventHandler, classList, L10n, compile, isNullOrUndefined } from '@syncfusion/ej2-base';import { NotifyPropertyChanges, INotifyPropertyChanged, createElement, detach, append, Animation } from '@syncfusion/ej2-base';import { addClass, removeClass, KeyboardEvents, KeyboardEventArgs, setValue, getValue, ChildProperty } from '@syncfusion/ej2-base';import { Collection, Complex, Browser, Ajax, BeforeSendEventArgs } from '@syncfusion/ej2-base';import { createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-popups';

/**
* Triggers when the component is created.
* @event
*/
created?: EmitType<Object>;
/**
* Triggers after selecting or dropping the files by adding the files in upload queue.

@@ -215,0 +221,0 @@ * @event

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

/**
* Triggers when the component is created.
* @event
*/
created: EmitType<Object>;
/**
* Triggers after selecting or dropping the files by adding the files in upload queue.

@@ -382,0 +387,0 @@ * @event

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

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc