@syncfusion/ej2-navigations 19.3.57 → 19.4.47
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +57 -0
- 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 +517 -142
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +524 -143
- 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/accordion/accordion-model.d.ts +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/menu-base.js +8 -2
- package/src/common/v-scroll.js +1 -1
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +33 -16
- package/src/tab/tab.js +66 -31
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +48 -0
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +319 -85
- package/styles/bootstrap.css +318 -84
- package/styles/bootstrap4.css +319 -77
- package/styles/bootstrap5-dark.css +341 -76
- package/styles/bootstrap5.css +343 -78
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +307 -42
- package/styles/fabric.css +310 -45
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +1 -1
- package/styles/h-scroll/bootstrap5-dark.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +319 -48
- package/styles/highcontrast.css +324 -53
- package/styles/material-dark.css +297 -33
- package/styles/material.css +298 -34
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +3 -2
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +3 -2
- package/styles/menu/bootstrap.css +3 -2
- package/styles/menu/bootstrap4.css +3 -2
- package/styles/menu/bootstrap5-dark.css +6 -5
- package/styles/menu/bootstrap5.css +7 -6
- package/styles/menu/fabric-dark.css +2 -1
- package/styles/menu/fabric.css +2 -1
- package/styles/menu/highcontrast-light.css +2 -1
- package/styles/menu/highcontrast.css +2 -1
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +3 -2
- package/styles/menu/material.css +3 -2
- package/styles/menu/tailwind-dark.css +3 -2
- package/styles/menu/tailwind.css +3 -2
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +53 -30
- package/styles/tab/bootstrap5.css +53 -30
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +315 -51
- package/styles/tailwind.css +315 -51
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
### Bug description
|
|
2
|
+
|
|
3
|
+
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
+
|
|
5
|
+
### Root cause
|
|
6
|
+
|
|
7
|
+
Briefly describe the root cause and analysis of the problem.
|
|
8
|
+
If there is an internal discussion on the forum, provide the link.
|
|
9
|
+
|
|
10
|
+
### Reason for not identifying earlier
|
|
11
|
+
|
|
12
|
+
Find how it was missed in our earlier testing and development by analysing the below checklist. This will help prevent similar mistakes in the future.
|
|
13
|
+
|
|
14
|
+
- [ ] Guidelines/documents are not followed
|
|
15
|
+
|
|
16
|
+
- Common guidelines / Core team guideline
|
|
17
|
+
- Specification document
|
|
18
|
+
- Requirement document
|
|
19
|
+
|
|
20
|
+
- [ ] Guidelines/documents are not given
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
- Common guidelines / Core team guideline
|
|
24
|
+
- Specification document
|
|
25
|
+
- Requirement document
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Reason:
|
|
29
|
+
Mention any one or more reasons from the above points.
|
|
30
|
+
|
|
31
|
+
### Action taken:
|
|
32
|
+
|
|
33
|
+
What action did you take to avoid this in future?
|
|
34
|
+
|
|
35
|
+
### Related areas:
|
|
36
|
+
|
|
37
|
+
Is there any other related areas also to be addressed?
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Is it a breaking issue?
|
|
41
|
+
|
|
42
|
+
If it is a breaking issue, provide the commit detail which caused this break.
|
|
43
|
+
|
|
44
|
+
### Solution description
|
|
45
|
+
|
|
46
|
+
Describe your code changes in detail for reviewers.
|
|
47
|
+
|
|
48
|
+
### Output screenshots
|
|
49
|
+
|
|
50
|
+
Post the output screenshots if an UI is affected or added due to this bug.
|
|
51
|
+
|
|
52
|
+
### Areas affected and ensured
|
|
53
|
+
|
|
54
|
+
List the areas affected by your code changes.
|
|
55
|
+
|
|
56
|
+
### Additional checklist
|
|
57
|
+
|
|
58
|
+
- Did you run the automation against your fix?
|
|
59
|
+
- Is there any API name change?
|
|
60
|
+
- Is there any existing behavior change of other features due to this code change?
|
|
61
|
+
- Does your new code introduce new warnings or binding errors?
|
|
62
|
+
- Does your code pass all FxCop and StyleCop rules?
|
|
63
|
+
- Did you record this case in the unit test or UI test?
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
### Feature description
|
|
2
|
+
|
|
3
|
+
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
+
|
|
5
|
+
### Analysis and design
|
|
6
|
+
|
|
7
|
+
If there is an external design, link to its project documentation area.
|
|
8
|
+
If there is an internal discussion on the forum, provide the link.
|
|
9
|
+
|
|
10
|
+
### Solution description
|
|
11
|
+
|
|
12
|
+
Describe your code changes in detail for reviewers.
|
|
13
|
+
|
|
14
|
+
### Output screenshots
|
|
15
|
+
|
|
16
|
+
Post the output screenshots if an UI is affected or added due to this feature.
|
|
17
|
+
|
|
18
|
+
### Areas affected and ensured
|
|
19
|
+
|
|
20
|
+
List the areas are affected by your code changes.
|
|
21
|
+
|
|
22
|
+
### Test cases
|
|
23
|
+
|
|
24
|
+
Provide the unit testing written file details to understand the use cases considered in this implementation.
|
|
25
|
+
If there is no TDD (if it’s not possible to follow), provide the UI automation script location and the Excel file that contains the use cases considered in this implementation.
|
|
26
|
+
Provide the test cases Excel file alone if the feature cannot be automated in any case.
|
|
27
|
+
|
|
28
|
+
### Test bed sample location
|
|
29
|
+
|
|
30
|
+
Provide the test bed sample location where code reviewers can review the new feature’s behaviors. This depends on the CI process that your team follows. It can be from NPMCI, HockeyApp, staging site, local server, etc.
|
|
31
|
+
|
|
32
|
+
### Additional checklist
|
|
33
|
+
|
|
34
|
+
- Did you run the automation against your fix?
|
|
35
|
+
- Is there any API name change?
|
|
36
|
+
- Is there any existing behavior change of other features due to this code change?
|
|
37
|
+
- Does your new code introduce new warnings or binding errors?
|
|
38
|
+
- Does your code pass all FxCop and StyleCop rules?
|
|
39
|
+
- Did you record this case in the unit test or UI test?
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,63 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 19.4.41 (2022-01-04)
|
|
6
|
+
|
|
7
|
+
### Menu
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- Sub menu position alignment issue in menu has been resolved.
|
|
12
|
+
|
|
13
|
+
### Tab
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#SF-359072` - An issue with active tab selection is not highlight when render inside the `dialog` has been fixed.
|
|
18
|
+
|
|
19
|
+
## 19.4.40 (2021-12-28)
|
|
20
|
+
|
|
21
|
+
### Context Menu
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- `#I346314` - Issue with stopPropagation not works for context menu has been resolved.
|
|
26
|
+
|
|
27
|
+
## 19.4.38 (2021-12-17)
|
|
28
|
+
|
|
29
|
+
### Tab
|
|
30
|
+
|
|
31
|
+
#### New Features
|
|
32
|
+
|
|
33
|
+
- `#I302394` - Provided support to maintain the active item in either tab header area or inside the popup.
|
|
34
|
+
- `#F166169` - Provided support to identify the tab select event raised by user interaction or programmatic way.
|
|
35
|
+
|
|
36
|
+
### TreeView
|
|
37
|
+
|
|
38
|
+
#### New Features
|
|
39
|
+
|
|
40
|
+
- `#FB27518` - Provided support to wrap the TreeView node text when its text content exceeds the TreeView node width.
|
|
41
|
+
|
|
42
|
+
### Breadcrumb
|
|
43
|
+
|
|
44
|
+
#### New Features
|
|
45
|
+
|
|
46
|
+
- Provided new types of overflow mode and as follows:
|
|
47
|
+
|
|
48
|
+
1. **Menu**: Shows the number of breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items.
|
|
49
|
+
2. **Wrap**: Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space.
|
|
50
|
+
3. **Scroll**: Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space.
|
|
51
|
+
4. **None**: Shows all the items on a single line.
|
|
52
|
+
|
|
53
|
+
- Provided `cancel` support in `beforeItemRender` event.
|
|
54
|
+
|
|
55
|
+
#### Breaking Changes
|
|
56
|
+
|
|
57
|
+
- Provided `disabled` property in Breadcrumb and Breadcrumb's Item instead of using CSS class `e-disabled`.
|
|
58
|
+
- Removed `width` property from Breadcrumb component, you can set `width` in the style attribute of CSS to breadcrumb's element or its parent element.
|
|
59
|
+
|
|
60
|
+
## 19.3.57 (2021-12-07)
|
|
61
|
+
|
|
5
62
|
### Sidebar
|
|
6
63
|
|
|
7
64
|
#### Bug Fixes
|