@syncfusion/ej2-navigations 20.4.43 → 20.4.48
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 +35 -0
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +72 -23
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +81 -32
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/common/index.d.ts +1 -1
- package/src/common/index.js +1 -1
- package/src/common/menu-base.js +11 -2
- package/src/menu/menu.js +1 -0
- package/src/sidebar/sidebar.js +1 -1
- package/src/tab/tab.js +8 -4
- package/src/toolbar/toolbar.js +15 -3
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +44 -21
- package/styles/bootstrap4.css +1 -1
- package/styles/bootstrap5-dark.css +1 -41
- package/styles/bootstrap5.css +1 -41
- package/styles/context-menu/_theme-mixin.scss +16 -12
- package/styles/context-menu/bootstrap5-dark.css +0 -24
- package/styles/context-menu/bootstrap5.css +0 -24
- package/styles/menu/bootstrap5-dark.css +0 -16
- package/styles/menu/bootstrap5.css +0 -16
- package/styles/treeview/_bootstrap4-definition.scss +1 -1
- package/styles/treeview/_bootstrap5-definition.scss +1 -1
- package/styles/treeview/bootstrap4.css +1 -1
- package/styles/treeview/bootstrap5-dark.css +1 -1
- package/styles/treeview/bootstrap5.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Tab
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I427978` - Fixed an issue with cyclic navigation using arrow keys, where focus would shift to the first element after reaching the last element, and vice versa. Also, accessibility has been enhanced using the aria-label attributes.
|
|
10
|
+
|
|
11
|
+
### Menu
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I425152` - The issue with "Menu item not render properly when we use ItemTemplate with custom menu items" has been resolved.
|
|
16
|
+
|
|
17
|
+
### Sidebar
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#F179759` - Console error while using the showBackdrop property in the Sidebar component has been resolved.
|
|
22
|
+
|
|
23
|
+
### TreeView
|
|
24
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#I428488` - Included the "action" and "nodeData" values in the dataSourceChanged event.
|
|
28
|
+
- `#I428766` - Alignment issue in TreeView node without a sub-child has been resolved.
|
|
29
|
+
|
|
30
|
+
## 20.4.44 (2023-01-18)
|
|
31
|
+
|
|
32
|
+
### ContextMenu
|
|
33
|
+
|
|
34
|
+
#### Bug Fixes
|
|
35
|
+
|
|
36
|
+
- `#I425173` - The issue with "Context menu Submenus not opening properly with multiple levels " has been resolved.
|
|
37
|
+
|
|
38
|
+
## 20.4.43 (2023-01-10)
|
|
39
|
+
|
|
5
40
|
### ContextMenu
|
|
6
41
|
|
|
7
42
|
#### Bug Fixes
|