@syncfusion/ej2-navigations 19.3.44 → 19.3.54
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 +24 -0
- package/README.md +7 -7
- 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 +89 -78
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +89 -78
- 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 +23 -12
- package/src/breadcrumb/breadcrumb.js +19 -10
- package/src/common/menu-base.js +2 -2
- package/src/tab/tab.js +68 -66
- package/styles/bootstrap-dark.css +15 -2
- package/styles/bootstrap.css +15 -2
- package/styles/bootstrap4.css +15 -2
- package/styles/bootstrap5-dark.css +18 -2
- package/styles/bootstrap5.css +18 -2
- package/styles/breadcrumb/_layout.scss +13 -0
- package/styles/breadcrumb/_theme.scss +1 -1
- package/styles/breadcrumb/bootstrap-dark.css +13 -0
- package/styles/breadcrumb/bootstrap.css +13 -0
- package/styles/breadcrumb/bootstrap4.css +13 -0
- package/styles/breadcrumb/bootstrap5-dark.css +16 -0
- package/styles/breadcrumb/bootstrap5.css +16 -0
- package/styles/breadcrumb/fabric-dark.css +16 -0
- package/styles/breadcrumb/fabric.css +16 -0
- package/styles/breadcrumb/highcontrast-light.css +17 -1
- package/styles/breadcrumb/highcontrast.css +17 -1
- package/styles/breadcrumb/material-dark.css +16 -0
- package/styles/breadcrumb/material.css +16 -0
- package/styles/breadcrumb/tailwind-dark.css +16 -0
- package/styles/breadcrumb/tailwind.css +16 -0
- package/styles/fabric-dark.css +16 -0
- package/styles/fabric.css +16 -0
- package/styles/highcontrast-light.css +17 -1
- package/styles/highcontrast.css +17 -1
- package/styles/material-dark.css +16 -0
- package/styles/material.css +16 -0
- package/styles/tab/_layout.scss +1 -1
- package/styles/tab/bootstrap-dark.css +2 -2
- package/styles/tab/bootstrap.css +2 -2
- package/styles/tab/bootstrap4.css +2 -2
- package/styles/tab/bootstrap5-dark.css +2 -2
- package/styles/tab/bootstrap5.css +2 -2
- package/styles/tailwind-dark.css +16 -0
- package/styles/tailwind.css +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,30 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I347014` - An issue with dynamic tab item navigation if scheduler is present on a page has been fixed.
|
|
10
|
+
|
|
11
|
+
## 19.3.46 (2021-10-19)
|
|
12
|
+
|
|
13
|
+
### Tab
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#I344626` - An issue with the tab header and content items are not updated on state change has been fixed.
|
|
18
|
+
|
|
19
|
+
## 19.3.45 (2021-10-12)
|
|
20
|
+
|
|
21
|
+
### Breadcrumb
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- Disabled item get tab focus when item's URL is specified issue has been resolved.
|
|
26
|
+
|
|
27
|
+
## 19.3.43 (2021-09-30)
|
|
28
|
+
|
|
29
|
+
### Tab
|
|
30
|
+
|
|
31
|
+
#### Bug Fixes
|
|
32
|
+
|
|
9
33
|
- `#I341589` - An issue with the tab content not updated properly on the initial load has been fixed.
|
|
10
34
|
|
|
11
35
|
### Breadcrumb
|
package/README.md
CHANGED
|
@@ -25,10 +25,10 @@ Following list of components are available in the package
|
|
|
25
25
|
* [View Online Demos](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_campaign=accordion#/material/accordion/default.html)
|
|
26
26
|
* [Product Page](https://www.syncfusion.com/products/javascript/accordion)
|
|
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
|
|
31
|
-
* [API References](https://ej2.syncfusion.com/documentation/
|
|
30
|
+
* [Getting Started](https://ej2.syncfusion.com/documentation/breadcrumb/getting-started?lang=typescript&utm_source=npm&utm_campaign=breadcrumb)
|
|
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)
|
|
34
34
|
|
|
@@ -103,10 +103,10 @@ Sidebar component is used in the following samples.
|
|
|
103
103
|
|
|
104
104
|
### Breadcrumb
|
|
105
105
|
|
|
106
|
-
1. **
|
|
107
|
-
2. **
|
|
108
|
-
3. **
|
|
109
|
-
4. **
|
|
106
|
+
1. **Icons** - Icons can be specified in Breadcrumb items.
|
|
107
|
+
2. **Template** - Supports template for item and separator.
|
|
108
|
+
3. **Bind To Location** - Supports items to be rendered based on the URL or current location.
|
|
109
|
+
4. **Overflow Mode** - Used to limit the number of breadcrumb items to be displayed.
|
|
110
110
|
5. **Accessibility** - Provided with built-in accessibility support that helps to access all the Breadcrumb component features through the keyboard, screen readers, or other assistive technology devices.
|
|
111
111
|
|
|
112
112
|
### ContextMenu
|