Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-navigations

Package Overview
Dependencies
Maintainers
3
Versions
269
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-navigations - npm Package Compare versions

Comparing version 24.1.41 to 24.1.46

20

CHANGELOG.md

@@ -5,6 +5,26 @@ # Changelog

### Menu
#### Bug Fixes
- `#F519984` - The issue with "Keyboard action is not working properly in the Menu Component" has been resolved.
### TreeView
#### Bug Fixes
- `#I531520` - TreeView component's title not decoded properly same as in tree node text has been resolved.
### Toolbar
#### Bug fixes
- `#I508465` - The issue with the differentiate toolbar active and focus states has been resolved.
## 24.1.41 (2023-12-18)
### TreeView
#### Bug fixes
- `#I525899` - The issue with the React TreeView filtering operation has been resolved.

@@ -11,0 +31,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 24.1.41
* version : 24.1.46
* 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-navigations@*",
"_id": "@syncfusion/ej2-navigations@22.41.2",
"_id": "@syncfusion/ej2-navigations@24.1.41",
"_inBundle": false,
"_integrity": "sha512-b3KXfky3ZmIlLFaIktMCIBAljYf+fcwzAVfffACt0yKbZjrAstPSX0sacmik/l8rDhZBuKyLA+8AeIpITMKDIg==",
"_integrity": "sha512-kXAQii6XynPPhUCd3d6S/IhpzlLkW+VgSX7dF+ZtrX7PCmA/Qw9kGIoOmFycz6pyLek7aTdRsQF9AwwK/a62fQ==",
"_location": "/@syncfusion/ej2-navigations",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-navigations/-/ej2-navigations-22.41.2.tgz",
"_shasum": "7c8e8a2249c22f6e3c5799e28f824826fa0ebd6c",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-24.1.41.tgz",
"_shasum": "b96f68d3d0f7381c0f660fb09a55add4f2068e81",
"_spec": "@syncfusion/ej2-navigations@*",

@@ -55,8 +55,8 @@ "_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~24.1.41",
"@syncfusion/ej2-buttons": "~24.1.41",
"@syncfusion/ej2-base": "~24.1.46",
"@syncfusion/ej2-buttons": "~24.1.46",
"@syncfusion/ej2-data": "~24.1.41",
"@syncfusion/ej2-inputs": "~24.1.41",
"@syncfusion/ej2-lists": "~24.1.41",
"@syncfusion/ej2-popups": "~24.1.41"
"@syncfusion/ej2-inputs": "~24.1.45",
"@syncfusion/ej2-lists": "~24.1.46",
"@syncfusion/ej2-popups": "~24.1.46"
},

@@ -166,4 +166,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "24.1.41",
"version": "24.1.46",
"sideEffects": false
}

@@ -278,2 +278,2 @@ # JavaScript Navigation Controls

© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

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

tab: 'tab',
shiftTab: 'shift+tab',
escape: 'escape'

@@ -756,3 +757,3 @@ };

itemElement.classList.remove(SELECTED, INPROGRESS, COMPLETED, NOTSTARTED);
if (i === this.activeStep || this.activeStep === this.steps.length - 1) {
if (i === this.activeStep) {
itemElement.classList.add(SELECTED);

@@ -819,3 +820,3 @@ }

this.isProtectedOnChange = true;
if (isUpdated != false) {
if (isUpdated !== false) {
if (i < this.activeStep || (this.steps.length - 1 === this.activeStep && item.status.toLowerCase() === "completed")) {

@@ -930,13 +931,8 @@ item.status = StepStatus.Completed;

case 'downarrow':
if (this.element.classList.contains(VERTICALSTEP)) {
this.handleNavigation(e.action === 'uparrow' ? false : true, e);
}
break;
case 'leftarrow':
case 'rightarrow':
if (this.element.classList.contains(HORIZSTEP)) {
this.handleNavigation(this.enableRtl ? e.action === 'leftarrow' : e.action === 'rightarrow', e);
}
case 'tab':
case 'shiftTab':
this.handleNavigation(this.enableRtl && this.element.classList.contains(HORIZSTEP) ? (e.action === 'leftarrow' || e.action === 'shiftTab' || e.action === 'uparrow') : (e.action === 'rightarrow' || e.action === 'tab' || e.action === 'downarrow'), e);
break;
case 'tab':
case 'space':

@@ -962,7 +958,18 @@ case 'enter':

var index = stepItems.indexOf(focusedEle);
if (e.action === 'tab' || e.action === 'escape') {
if (e.action === 'tab' || e.action === 'shiftTab' || e.action === 'downarrow' || e.action === 'uparrow' || e.action === 'space' || e.action === 'home' || e.action === 'end') {
if ((e.action === 'tab' && index === stepItems.length - 1) || (e.action === 'shiftTab' && index === 0)) {
if (focusedEle.classList.contains(FOCUS)) {
this.updateStepFocus();
return;
}
}
else {
e.preventDefault();
}
}
if (e.action === 'escape') {
stepItems[parseInt(index.toString(), 10)].classList.remove(FOCUS);
this.element.classList.remove('e-steps-focus');
}
if (!(e.action === 'space' || e.action === 'enter' || e.action === 'tab')) {
if (!(e.action === 'space' || e.action === 'enter')) {
var prevIndex = index;

@@ -990,2 +997,3 @@ index = isNextStep ? index + 1 : index - 1;

else if ((e.action === 'space' || e.action === 'enter')) {
var isupdateFocus = false;
if (this.linear) {

@@ -995,2 +1003,3 @@ var linearModeValue = this.activeStep - index;

this.navigateToStep(index, null, null, true);
isupdateFocus = true;
}

@@ -1000,3 +1009,8 @@ }

this.navigateToStep(index, null, null, true);
isupdateFocus = true;
}
if (isupdateFocus) {
this.updateStepFocus();
this.stepperItemElements[index].focus();
}
}

@@ -1003,0 +1017,0 @@ };

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

private setRootData;
private isChildObject;
private renderItems;

@@ -1001,0 +1002,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 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

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