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 22.2.9 to 22.2.12

8

CHANGELOG.md

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

### TextBox
#### Bug Fixes
- `I453508` - Fixed the issue where the e-outline breaks when an icon is prepended to the textbox.
## 22.2.9 (2023-08-15)
### Slider

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

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 22.2.9
* version : 22.2.12
* Copyright Syncfusion Inc. 2001 - 2020. 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@22.2.7",
"_id": "@syncfusion/ej2-inputs@22.2.9",
"_inBundle": false,
"_integrity": "sha512-0hx3hO3kTQC0NH+7B7fz/0AKH40oIczyevk7gqF2fDCpEp/wYqDa90KpVhJO1PB5CiIv2Viaj6nMMG8C8onJYA==",
"_integrity": "sha512-NXg37kjf1esHzdvlE9QQCFmc5zeEy/1opQykHDCumRmVa6LlDGcLK7ydFP2h/NSeJ0OR8t0632nOHJSA8H0q9w==",
"_location": "/@syncfusion/ej2-inputs",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-inputs/-/ej2-inputs-22.2.7.tgz",
"_shasum": "acfc7de93f0416695774f7a3a39f1e8066b6db65",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-inputs/-/ej2-inputs-22.2.9.tgz",
"_shasum": "9d59070115dc638dc82f58a87cfef7a9b71ad9c8",
"_spec": "@syncfusion/ej2-inputs@*",

@@ -52,5 +52,5 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~22.2.9",
"@syncfusion/ej2-base": "~22.2.12",
"@syncfusion/ej2-buttons": "~22.2.9",
"@syncfusion/ej2-popups": "~22.2.9",
"@syncfusion/ej2-popups": "~22.2.11",
"@syncfusion/ej2-splitbuttons": "~22.2.8"

@@ -124,5 +124,5 @@ },

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

@@ -114,7 +114,19 @@ /* eslint-disable valid-jsdoc, jsdoc/require-jsdoc, jsdoc/require-returns, jsdoc/require-param */

var inputValue = inputElement.value;
if (inputValue !== '' && !isNullOrUndefined(inputValue) && inputElement.parentElement) {
inputElement.parentElement.classList.add('e-valid-input');
var inputParent = inputElement.parentElement;
var grandParent = inputParent.parentElement;
if (inputValue !== '' && !isNullOrUndefined(inputValue)) {
if (inputParent && inputParent.classList.contains('e-input-group')) {
inputParent.classList.add('e-valid-input');
}
else if (grandParent && grandParent.classList.contains('e-input-group')) {
grandParent.classList.add('e-valid-input');
}
}
else if (floatLabelType !== 'Always' && inputElement.parentElement) {
inputElement.parentElement.classList.remove('e-valid-input');
else if (floatLabelType !== 'Always') {
if (inputParent && inputParent.classList.contains('e-input-group')) {
inputParent.classList.remove('e-valid-input');
}
else if (grandParent && grandParent.classList.contains('e-input-group')) {
grandParent.classList.remove('e-valid-input');
}
}

@@ -853,3 +865,7 @@ }

for (var i = 0; i < result.length; i++) {
innerWrapper.appendChild(result[parseInt(i.toString())]);
var element = result[parseInt(i.toString())];
var parentElement = innerWrapper.parentElement;
if (!(element.classList.contains('e-float-line')) || (!(parentElement && parentElement.classList.contains('e-filled')) && parentElement)) {
innerWrapper.appendChild(element);
}
}

@@ -856,0 +872,0 @@ }

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