@syncfusion/ej2-navigations 19.3.45 → 19.3.56
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 +25 -0
- package/README.md +1 -1
- 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 +100 -75
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +100 -75
- 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/breadcrumb/breadcrumb.js +10 -2
- package/src/common/menu-base.js +2 -2
- package/src/tab/tab.js +68 -66
- package/src/treeview/treeview.js +20 -5
- package/styles/bootstrap-dark.css +12 -0
- package/styles/bootstrap.css +12 -0
- package/styles/bootstrap4.css +12 -0
- package/styles/bootstrap5-dark.css +12 -0
- package/styles/bootstrap5.css +12 -0
- package/styles/breadcrumb/_layout.scss +11 -0
- package/styles/breadcrumb/_theme.scss +1 -1
- package/styles/breadcrumb/bootstrap-dark.css +12 -0
- package/styles/breadcrumb/bootstrap.css +12 -0
- package/styles/breadcrumb/bootstrap4.css +12 -0
- package/styles/breadcrumb/bootstrap5-dark.css +12 -0
- package/styles/breadcrumb/bootstrap5.css +12 -0
- package/styles/breadcrumb/fabric-dark.css +12 -0
- package/styles/breadcrumb/fabric.css +12 -0
- package/styles/breadcrumb/highcontrast-light.css +13 -1
- package/styles/breadcrumb/highcontrast.css +13 -1
- package/styles/breadcrumb/material-dark.css +12 -0
- package/styles/breadcrumb/material.css +12 -0
- package/styles/breadcrumb/tailwind-dark.css +12 -0
- package/styles/breadcrumb/tailwind.css +12 -0
- package/styles/fabric-dark.css +12 -0
- package/styles/fabric.css +12 -0
- package/styles/highcontrast-light.css +13 -1
- package/styles/highcontrast.css +13 -1
- package/styles/material-dark.css +12 -0
- package/styles/material.css +12 -0
- package/styles/tailwind-dark.css +12 -0
- package/styles/tailwind.css +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### TreeView
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I342745` - The performance issue that occurred when selecting a node that was rendered with a huge data source has been resolved.
|
|
10
|
+
|
|
11
|
+
## 19.3.54 (2021-11-17)
|
|
12
|
+
|
|
13
|
+
### Tab
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#I347014` - An issue with dynamic tab item navigation if scheduler is present on a page has been fixed.
|
|
18
|
+
- `#I296232` - The issue with "Script error occurs while updating the tab header text" has been resolved.
|
|
19
|
+
|
|
20
|
+
## 19.3.46 (2021-10-19)
|
|
21
|
+
|
|
22
|
+
### Tab
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- `#I344626` - An issue with the tab header and content items are not updated on state change has been fixed.
|
|
27
|
+
|
|
28
|
+
## 19.3.45 (2021-10-12)
|
|
29
|
+
|
|
5
30
|
### Breadcrumb
|
|
6
31
|
|
|
7
32
|
#### Bug Fixes
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ Following list of components are available in the package
|
|
|
27
27
|
|
|
28
28
|
* Breadcrumb - Graphical user interface that helps to identify or highlight the current location within a hierarchical structure of websites. The aim is to make the user aware of their current position in a hierarchy of website links.
|
|
29
29
|
|
|
30
|
-
* [Getting Started](https://ej2.syncfusion.com/documentation/breadcrumb/getting-started
|
|
30
|
+
* [Getting Started](https://ej2.syncfusion.com/documentation/breadcrumb/getting-started?lang=typescript&utm_source=npm&utm_campaign=breadcrumb)
|
|
31
31
|
* [API References](https://ej2.syncfusion.com/documentation/api/breadcrumb?utm_source=npm&utm_campaign=breadcrumb)
|
|
32
32
|
* [View Online Demos](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_campaign=breadcrumb#/material/breadcrumb/default.html)
|
|
33
33
|
* [Product Page](https://www.syncfusion.com/javascript-ui-controls/js-breadcrumb)
|