@syncfusion/ej2-angular-navigations 33.1.46 → 33.1.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,50 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Accordion
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I813436` - Resolved a memory leak in the Accordion component by ensuring header and item event listeners are fully removed during destroy, preventing retained DOM references.
|
|
10
|
+
|
|
11
|
+
### Breadcrumb
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I813436` - Resolved a memory leak in the Breadcrumb component by properly removing the global resize event listener during destroy, preventing retained handlers and memory growth.
|
|
16
|
+
|
|
17
|
+
### Stepper
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#I813436` - Resolved a memory leak in the Stepper component by properly cleaning up global resize and click event handlers during destroy, preventing retained listeners across repeated renders.
|
|
22
|
+
|
|
23
|
+
### TreeView
|
|
24
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#I813436` - Resolved a memory leak in the TreeView component by ensuring all node level event listeners are properly removed during destroy, preventing retained DOM references and memory leaks.
|
|
28
|
+
|
|
29
|
+
### Sidebar
|
|
30
|
+
|
|
31
|
+
#### Bug Fixes
|
|
32
|
+
|
|
33
|
+
- `#I813436` - Resolved a memory leak in the Sidebar component by ensuring resize and transition event listeners are properly detached during destroy, preventing orphaned callbacks and memory retention.
|
|
34
|
+
|
|
35
|
+
### Toolbar
|
|
36
|
+
|
|
37
|
+
#### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- `#I821512` - Fixed a Toolbar memory leak by preserving bound event handler references in `initScroll` and properly removing all scroll related listeners and elements during destroy.
|
|
40
|
+
|
|
41
|
+
### Menu
|
|
42
|
+
|
|
43
|
+
#### Bug fixes
|
|
44
|
+
|
|
45
|
+
- `#I813436` - Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion Menu component
|
|
46
|
+
|
|
47
|
+
## 33.1.46 (2026-03-31)
|
|
48
|
+
|
|
5
49
|
### TreeView
|
|
6
50
|
|
|
7
51
|
#### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-navigations",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.47",
|
|
4
4
|
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@syncfusion/ej2-base": "~33.1.45",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~33.1.46",
|
|
11
|
-
"@syncfusion/ej2-navigations": "33.1.
|
|
11
|
+
"@syncfusion/ej2-navigations": "33.1.47"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-navigations';
|
|
4
|
-
exports.pkgVer = '^33.1.
|
|
4
|
+
exports.pkgVer = '^33.1.47';
|
|
5
5
|
exports.moduleName = 'AccordionModule, ToolbarModule, ContextMenuModule, BreadcrumbModule, CarouselModule, TabModule, TreeViewModule, SidebarModule, MenuModule, AppBarModule, StepperModule';
|
|
6
|
-
exports.themeVer = '~33.1.
|
|
6
|
+
exports.themeVer = '~33.1.47';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-navigations';
|
|
2
|
-
export const pkgVer = '^33.1.
|
|
2
|
+
export const pkgVer = '^33.1.47';
|
|
3
3
|
export const moduleName = 'AccordionModule, ToolbarModule, ContextMenuModule, BreadcrumbModule, CarouselModule, TabModule, TreeViewModule, SidebarModule, MenuModule, AppBarModule, StepperModule';
|
|
4
|
-
export const themeVer = '~33.1.
|
|
4
|
+
export const themeVer = '~33.1.47';
|