Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-inputs

Package Overview
Dependencies
Maintainers
3
Versions
251
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 23.2.4 to 24.1.41

styles/data-form/_all.scss

33

CHANGELOG.md

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

## 23.1.43 (2023-10-31)
### FormValidator
#### Bug Fixes
- `#I508670` - Fixed a memory leak issue that occurred when navigating between pages.
### TextBox
#### Bug Fixes
- `#I512497` - Fixed an issue where the values of the textbox with the 'e-valid-input' class were persisting even after resetting the form.
### Signature

@@ -26,21 +12,2 @@

## 23.1.42 (2023-10-24)
### Uploader
#### Bug Fixes
- `#I505786` - Resolved issue with Sequential upload not working when drag and drop files multiple times.
## 23.1.38 (2023-09-26)
### Signature
#### Bug Fixes
- `#I497270` - Provided the support to "GetSignature" public method returns base64 string with background.
- `#F184324` - Provided the "refresh" public method to signature component.
## 23.1.36 (2023-09-15)
### ColorPicker

@@ -47,0 +14,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 23.2.4
* version : 24.1.41
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.

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

{
"_from": "@syncfusion/ej2-inputs@*",
"_id": "@syncfusion/ej2-inputs@23.1.43",
"_id": "@syncfusion/ej2-inputs@18.78.12",
"_inBundle": false,
"_integrity": "sha512-0LdqRSDbGYpaqFgxEKyeR7Rov2Fi48KxYEq5k/0UOBsq65VFOmDlpV2KWnBXvz5I4Mny2wCYVS5kc82rcopcSQ==",
"_integrity": "sha512-rqT1+IDb7ZSKLfB4kpIvuxKjGhkdXBoAIyt+BmtfTNB2eVldQv+BWsVbJAZYUQ1nw2TZJUA+wnpTqWVmwTAWtw==",
"_location": "/@syncfusion/ej2-inputs",

@@ -42,6 +42,6 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-inputs/-/ej2-inputs-23.1.43.tgz",
"_shasum": "1e413ceb59bdb969c46f99f0b844a2b620c3a71f",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-inputs/-/ej2-inputs-18.78.12.tgz",
"_shasum": "9ebbb9d57d742077d0a14a53ae1ee2bc31ceeda2",
"_spec": "@syncfusion/ej2-inputs@*",
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
"author": {

@@ -52,6 +52,6 @@ "name": "Syncfusion Inc."

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

@@ -124,5 +124,5 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "23.2.4",
"version": "24.1.41",
"sideEffects": false,
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
}

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

private switchToPalette;
private refreshImageEditorPopupPos;
private refreshPopupPos;

@@ -287,0 +288,0 @@ private formatSwitchHandler;

@@ -35,3 +35,2 @@ /* eslint-disable valid-jsdoc, jsdoc/require-jsdoc, jsdoc/require-returns, jsdoc/require-param */

var isBindClearAction = true;
var floatLabelElement;
/**

@@ -185,3 +184,3 @@ * Create a wrapper to input element with multiple span elements and set the basic properties to input based components.

var floatLinelement = makeElement('span', { className: CLASSNAMES.FLOATLINE });
floatLabelElement = makeElement('label', { className: CLASSNAMES.FLOATTEXT });
var floatLabelElement = makeElement('label', { className: CLASSNAMES.FLOATTEXT });
if (!isNullOrUndefined(args.element.id) && args.element.id !== '') {

@@ -223,7 +222,7 @@ floatLabelElement.id = 'label_' + args.element.id.replace(/ /g, '_');

args.element.addEventListener('input', function (event) {
updateLabelState(args.element.value, floatLabelElement, args.element);
validateLabel(args.element, args.floatLabelType);
});
// eslint-disable-next-line @typescript-eslint/no-unused-vars
args.element.addEventListener('blur', function (event) {
updateLabelState(args.element.value, floatLabelElement);
validateLabel(args.element, args.floatLabelType);
});

@@ -356,3 +355,2 @@ }

function destroy() {
floatLabelElement = null;
privateInputObj = null;

@@ -359,0 +357,0 @@ }

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

private isReact?;
private isTouchSelected;
/**

@@ -334,0 +335,0 @@ * Constructor for creating the widget

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

this.tooltipOpen = false;
this.isTouchSelected = false;
};

@@ -186,2 +187,7 @@ Rating.prototype.render = function () {

Rating.prototype.touchMoveHandler = function (e) {
if (!this.isTouchSelected) {
this.wrapper.classList.add("e-rating-touch");
this.isTouchSelected = true;
}
this.wrapper.classList.add("e-touch-select");
var rect = this.ratingItemList.getBoundingClientRect();

@@ -217,2 +223,3 @@ var x = e.touches[0].clientX - rect.x;

this.closeRatingTooltip();
this.wrapper.classList.remove("e-touch-select");
};

@@ -497,2 +504,6 @@ Rating.prototype.updateTemplateFunction = function () {

Rating.prototype.mouseMoveHandler = function (index, e) {
if (this.isTouchSelected) {
this.wrapper.classList.remove("e-rating-touch");
this.isTouchSelected = false;
}
var currValue = this.calculateCurrentValue(index, e);

@@ -499,0 +510,0 @@ currValue = this.validateValue(currValue);

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 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

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