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 26.1.40 to 26.1.41

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 26.1.40
* version : 26.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-navigations@*",
"_id": "@syncfusion/ej2-navigations@26.1.39",
"_id": "@syncfusion/ej2-navigations@26.1.40",
"_inBundle": false,
"_integrity": "sha512-nx8+3jGZTNQzQ7xIiwKyB2wum+nmP+eQF+ljJ/+vvhn54c2b3WkGTcANpvKFQ2NluOytjU894S7QBFx4fXeV4Q==",
"_integrity": "sha512-bNvzAXiKLPBSAqfAAuSU83QR22+MmChfjd4/Zo68LP5DmXA3C10ktVjZFInWidVM3YCHzZIPjl5yroIp3MEDzQ==",
"_location": "/@syncfusion/ej2-navigations",

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

],
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.1.39.tgz",
"_shasum": "60cc3aeedd220788eee7250f705c8c5fa2c0f34f",
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.1.40.tgz",
"_shasum": "b8be523a6913f09ca49e23192f9dacec5d434972",
"_spec": "@syncfusion/ej2-navigations@*",

@@ -57,6 +57,6 @@ "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",

"@syncfusion/ej2-buttons": "~26.1.40",
"@syncfusion/ej2-data": "~26.1.40",
"@syncfusion/ej2-inputs": "~26.1.40",
"@syncfusion/ej2-data": "~26.1.41",
"@syncfusion/ej2-inputs": "~26.1.41",
"@syncfusion/ej2-lists": "~26.1.35",
"@syncfusion/ej2-popups": "~26.1.38"
"@syncfusion/ej2-popups": "~26.1.41"
},

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

"typings": "index.d.ts",
"version": "26.1.40",
"version": "26.1.41",
"sideEffects": false
}

@@ -294,2 +294,3 @@ /// <reference path="../stepper-base/stepper-base-model.d.ts" />

private wireEvents;
private unWireEvents;
private updateStepFocus;

@@ -327,6 +328,32 @@ private updateStepperStatus;

private removeItemElements;
/**
* Move to next step from current step in Stepper.
*
* @returns {void}
*/
nextStep(): void;
/**
* Move to previous step from current step in Stepper.
*
* @returns {void}
*/
previousStep(): void;
/**
* Reset the state of the Stepper and move to the first step.
*
* @returns {void}
*/
reset(): void;
/**
* Refreshes the position of the progress bar programmatically when the dimensions of the parent container are changed.
*
* @returns {void}
*/
refreshProgressbar(): void;
private updateElementClassArray;
/**
* Destroy the stepper control.
*
* @returns {void}
*/
destroy(): void;

@@ -333,0 +360,0 @@ private wireKeyboardEvent;

@@ -261,5 +261,15 @@ var __extends = (this && this.__extends) || (function () {

}
_this.navigateToStep(_this.activeStep, null, null, false);
}, this);
EventHandler.add(window, 'click', function () { _this.updateStepFocus(); }, this);
};
Stepper.prototype.unWireEvents = function () {
var _this = this;
EventHandler.remove(window, 'resize', function () {
if (_this.stepperItemList && _this.progressbar && _this.element.classList.contains(HORIZSTEP)) {
_this.setProgressPosition(_this.element, true);
}
});
EventHandler.remove(window, 'click', function () { _this.updateStepFocus(); });
};
Stepper.prototype.updateStepFocus = function () {

@@ -928,2 +938,7 @@ if (this.isKeyNavFocus) {

};
/**
* Move to next step from current step in Stepper.
*
* @returns {void}
*/
Stepper.prototype.nextStep = function () {

@@ -934,2 +949,7 @@ if (this.activeStep !== this.steps.length - 1) {

};
/**
* Move to previous step from current step in Stepper.
*
* @returns {void}
*/
Stepper.prototype.previousStep = function () {

@@ -940,2 +960,7 @@ if (this.activeStep > 0) {

};
/**
* Reset the state of the Stepper and move to the first step.
*
* @returns {void}
*/
Stepper.prototype.reset = function () {

@@ -950,2 +975,13 @@ if (this.activeStep === 0) {

};
/**
* Refreshes the position of the progress bar programmatically when the dimensions of the parent container are changed.
*
* @returns {void}
*/
Stepper.prototype.refreshProgressbar = function () {
if (this.stepperItemList && this.progressbar) {
this.setProgressPosition(this.element);
}
this.navigateToStep(this.activeStep, null, null, false);
};
Stepper.prototype.updateElementClassArray = function () {

@@ -956,9 +992,10 @@ var classArray = [RTL, READONLY, 'e-steps-focus', LABELAFTER, LABELBEFORE, 'e-label-top',

};
/**
* Destroy the stepper control.
*
* @returns {void}
*/
Stepper.prototype.destroy = function () {
var _this = this;
_super.prototype.destroy.call(this);
EventHandler.remove(window, 'resize', function () { if (_this.stepperItemList && _this.progressbar) {
_this.setProgressPosition(_this.element, true);
} });
EventHandler.remove(window, 'click', function () { _this.updateStepFocus(); });
this.unWireEvents();
// unwires the events and detach the li elements

@@ -965,0 +1002,0 @@ this.removeItemElements();

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

private isExtendedOpen;
private clickEvent;
private scrollEvent;
private resizeContext;

@@ -258,0 +260,0 @@ private orientationChangeContext;

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

private isDropIn;
private DDTTreeData;
private OldCheckedData;
/**

@@ -1109,2 +1111,3 @@ * Indicates whether the TreeView allows drag and drop of nodes. To drag and drop a node in

private nodeCheckedEvent;
private updateOldCheckedData;
private triggerClickEvent;

@@ -1111,0 +1114,0 @@ private expandNode;

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

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