@syncfusion/ej2-navigations 22.2.5 → 22.2.8
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 +16 -6
- 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 +60 -27
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +60 -27
- 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 +9 -9
- package/src/common/menu-base.js +3 -0
- package/src/tab/tab-model.d.ts +6 -0
- package/src/tab/tab.d.ts +5 -0
- package/src/tab/tab.js +9 -1
- package/src/toolbar/toolbar.d.ts +1 -0
- package/src/toolbar/toolbar.js +48 -26
- package/styles/accordion/_theme.scss +5 -1
- package/styles/accordion/bootstrap-dark.css +3 -0
- package/styles/accordion/bootstrap.css +3 -0
- package/styles/accordion/bootstrap4.css +3 -0
- package/styles/accordion/bootstrap5-dark.css +3 -0
- package/styles/accordion/bootstrap5.css +3 -0
- package/styles/accordion/fabric-dark.css +3 -0
- package/styles/accordion/fabric.css +3 -0
- package/styles/accordion/fluent-dark.css +3 -0
- package/styles/accordion/fluent.css +3 -0
- package/styles/accordion/highcontrast-light.css +3 -0
- package/styles/accordion/highcontrast.css +3 -0
- package/styles/accordion/material-dark.css +3 -0
- package/styles/accordion/material.css +3 -0
- package/styles/accordion/material3-dark.css +3 -0
- package/styles/accordion/material3.css +3 -0
- package/styles/accordion/tailwind-dark.css +3 -0
- package/styles/accordion/tailwind.css +3 -0
- package/styles/bootstrap-dark.css +3 -0
- package/styles/bootstrap.css +3 -0
- package/styles/bootstrap4.css +3 -0
- package/styles/bootstrap5-dark.css +3 -0
- package/styles/bootstrap5.css +3 -0
- package/styles/fabric-dark.css +3 -0
- package/styles/fabric.css +3 -0
- package/styles/fluent-dark.css +3 -0
- package/styles/fluent.css +3 -0
- package/styles/highcontrast-light.css +3 -0
- package/styles/highcontrast.css +3 -0
- package/styles/material-dark.css +3 -0
- package/styles/material.css +3 -0
- package/styles/material3-dark.css +3 -0
- package/styles/material3.css +3 -0
- package/styles/tailwind-dark.css +3 -0
- package/styles/tailwind.css +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 22.2.7 (2023-08-02)
|
|
6
|
+
|
|
7
|
+
### Menu
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- `#I483185` - The issue with "Script error throws on destroying menu when its sub menus are still open" has been resolved.
|
|
12
|
+
|
|
13
|
+
## 22.2.5 (2023-07-27)
|
|
14
|
+
|
|
15
|
+
### Carousel
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.
|
|
20
|
+
|
|
5
21
|
### Tab
|
|
6
22
|
|
|
7
23
|
#### Bug Fixes
|
|
@@ -17,12 +33,6 @@
|
|
|
17
33
|
|
|
18
34
|
## 22.1.39 (2023-07-18)
|
|
19
35
|
|
|
20
|
-
### Carousel
|
|
21
|
-
|
|
22
|
-
#### Bug Fixes
|
|
23
|
-
|
|
24
|
-
- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.
|
|
25
|
-
|
|
26
36
|
### Menu
|
|
27
37
|
|
|
28
38
|
#### Bug Fixes
|