@syncfusion/ej2-angular-navigations 32.2.9 → 33.1.44
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,17 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I811704` - Fixed layout synchronization issues where toggling the `enableDock` property dynamically caused the main content to either retain unwanted spacing or be overlapped by the Sidebar.
|
|
10
|
-
|
|
11
|
-
### Accordion
|
|
5
|
+
### Tab
|
|
12
6
|
|
|
13
7
|
#### Bug Fixes
|
|
14
8
|
|
|
15
|
-
- `#
|
|
9
|
+
- `#I736712` - Fixed an issue where the `getItemIndex` method returned an incorrect tab item index when tab items were dynamically shown or hidden.
|
|
16
10
|
|
|
17
11
|
### Menu
|
|
18
12
|
|
|
@@ -20,69 +14,6 @@
|
|
|
20
14
|
|
|
21
15
|
- `#I818021` - The issue with keyboard navigation for nested elements rendered in the submenu item within the drop-down button has been resolved.
|
|
22
16
|
|
|
23
|
-
## 32.2.8 (2025-12-22)
|
|
24
|
-
|
|
25
|
-
### Menu
|
|
26
|
-
|
|
27
|
-
#### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- `#I811613` - Resolved an issue where Menu popup appeared beneath Angular `dialogs` in Angular 21.
|
|
30
|
-
|
|
31
|
-
## 32.2.7 (2026-02-24)
|
|
32
|
-
|
|
33
|
-
### Tab
|
|
34
|
-
|
|
35
|
-
#### Bug Fixes
|
|
36
|
-
|
|
37
|
-
- `#I809774` - Resolved an inconsistency in the height calculation logic when `heightAdjustMode` was set to Fill, where the component failed to properly adapt to the available parent height.
|
|
38
|
-
|
|
39
|
-
### TreeView
|
|
40
|
-
|
|
41
|
-
#### Feature
|
|
42
|
-
|
|
43
|
-
- `#I803243` - Introduced the new `disableHtmlEncode` property to control how text content is rendered in the Treeview. When set to `true`, the component will render raw text exactly as provided (including HTML tags or special characters) without encoding or truncation. To preserve and render raw HTML content correctly, `enableHtmlSanitizer` must also be set to `false`. This update provides greater flexibility in displaying literal text and HTML content within Treeview nodes.
|
|
44
|
-
|
|
45
|
-
**Example Usage**
|
|
46
|
-
|
|
47
|
-
```typescript
|
|
48
|
-
import { TreeView } from '@syncfusion/ej2-navigations';
|
|
49
|
-
let data: Object[] = [
|
|
50
|
-
{ id: '1', name: 'Australia' },
|
|
51
|
-
{ id: '2', name: 'New<york' },
|
|
52
|
-
{ id: '3', name: 'Normal Text' }
|
|
53
|
-
];
|
|
54
|
-
// Initialize TreeView control
|
|
55
|
-
let treeViewObj: TreeView = new TreeView({
|
|
56
|
-
fields: { dataSource: data, id: 'id', text: 'name' },
|
|
57
|
-
disableHtmlEncode: true,
|
|
58
|
-
enableHtmlSanitizer: false
|
|
59
|
-
});
|
|
60
|
-
// Render initialized TreeView
|
|
61
|
-
treeViewObj.appendTo('#treeview');
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### Sidebar
|
|
65
|
-
|
|
66
|
-
#### Bug Fixes
|
|
67
|
-
|
|
68
|
-
- `#I811704` - Fixed an issue where the Sidebar did not fully collapse when the `enableDock` property was toggled from `true` to `false` dynamically.
|
|
69
|
-
|
|
70
|
-
## 32.2.3 (2026-02-05)
|
|
71
|
-
|
|
72
|
-
### TreeView
|
|
73
|
-
|
|
74
|
-
#### Bug Fixes
|
|
75
|
-
|
|
76
|
-
- `#I803798` - Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
|
|
77
|
-
|
|
78
|
-
## 32.1.19 (2025-12-16)
|
|
79
|
-
|
|
80
|
-
### Tab
|
|
81
|
-
|
|
82
|
-
#### Bug Fixes
|
|
83
|
-
|
|
84
|
-
- `#I736712` - Fixed an issue where the `getItemIndex` method returned an incorrect tab item index when tab items were dynamically shown or hidden.
|
|
85
|
-
|
|
86
17
|
## 30.2.5 (2025-08-13)
|
|
87
18
|
|
|
88
19
|
### Treeview
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-navigations",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "33.1.44",
|
|
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",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~
|
|
10
|
-
"@syncfusion/ej2-angular-base": "~
|
|
11
|
-
"@syncfusion/ej2-navigations": "
|
|
9
|
+
"@syncfusion/ej2-base": "~33.1.44",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~33.1.44",
|
|
11
|
+
"@syncfusion/ej2-navigations": "33.1.44"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-navigations";
|
|
2
|
-
export declare const pkgVer = "^22.
|
|
2
|
+
export declare const pkgVer = "^22.42.3";
|
|
3
3
|
export declare const moduleName = "AccordionModule, ToolbarModule, ContextMenuModule, BreadcrumbModule, CarouselModule, TabModule, TreeViewModule, SidebarModule, MenuModule, AppBarModule, StepperModule";
|
|
4
|
-
export declare const themeVer = "~22.
|
|
4
|
+
export declare const themeVer = "~22.42.3";
|
|
@@ -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 = '^
|
|
4
|
+
exports.pkgVer = '^33.1.44';
|
|
5
5
|
exports.moduleName = 'AccordionModule, ToolbarModule, ContextMenuModule, BreadcrumbModule, CarouselModule, TabModule, TreeViewModule, SidebarModule, MenuModule, AppBarModule, StepperModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~33.1.44';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-navigations';
|
|
2
|
-
export const pkgVer = '^
|
|
2
|
+
export const pkgVer = '^33.1.44';
|
|
3
3
|
export const moduleName = 'AccordionModule, ToolbarModule, ContextMenuModule, BreadcrumbModule, CarouselModule, TabModule, TreeViewModule, SidebarModule, MenuModule, AppBarModule, StepperModule';
|
|
4
|
-
export const themeVer = '~
|
|
4
|
+
export const themeVer = '~33.1.44';
|