@syncfusion/ej2-layouts 19.3.48 → 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 +41 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
- package/CHANGELOG.md +11 -5
- package/README.md +1 -1
- package/dist/ej2-layouts.umd.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js.map +1 -1
- package/dist/es6/ej2-layouts.es2015.js +23 -19
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +24 -21
- package/dist/es6/ej2-layouts.es5.js.map +1 -1
- package/dist/global/ej2-layouts.min.js +2 -2
- package/dist/global/ej2-layouts.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/dashboard-layout/dashboard-layout.js +3 -2
- package/src/splitter/splitter.d.ts +1 -0
- package/src/splitter/splitter.js +21 -19
- package/styles/avatar/_fluent-definition.scss +25 -0
- package/styles/avatar/_layout.scss +5 -5
- package/styles/bootstrap-dark.css +8 -2
- package/styles/bootstrap.css +8 -2
- package/styles/bootstrap4.css +8 -2
- package/styles/bootstrap5-dark.css +8 -2
- package/styles/bootstrap5.css +8 -2
- package/styles/card/_bootstrap-dark-definition.scss +1 -0
- package/styles/card/_bootstrap-definition.scss +1 -0
- package/styles/card/_bootstrap5-definition.scss +1 -0
- package/styles/card/_fabric-dark-definition.scss +1 -0
- package/styles/card/_fabric-definition.scss +1 -0
- package/styles/card/_fluent-definition.scss +124 -0
- package/styles/card/_highcontrast-definition.scss +1 -0
- package/styles/card/_highcontrast-light-definition.scss +1 -0
- package/styles/card/_material-dark-definition.scss +1 -0
- package/styles/card/_material-definition.scss +1 -0
- package/styles/card/_tailwind-definition.scss +1 -0
- package/styles/card/_theme.scss +11 -0
- package/styles/dashboard-layout/_fluent-definition.scss +112 -0
- package/styles/dashboard-layout/_layout.scss +1 -1
- package/styles/dashboard-layout/_theme.scss +1 -1
- package/styles/dashboard-layout/icons/_bootstrap5.scss +1 -1
- package/styles/dashboard-layout/icons/_fluent.scss +81 -0
- package/styles/fabric-dark.css +8 -2
- package/styles/fabric.css +8 -2
- package/styles/highcontrast-light.css +8 -2
- package/styles/highcontrast.css +8 -2
- package/styles/material-dark.css +8 -2
- package/styles/material.css +8 -2
- package/styles/splitter/_bootstrap-dark-definition.scss +4 -1
- package/styles/splitter/_bootstrap-definition.scss +4 -1
- package/styles/splitter/_bootstrap4-definition.scss +4 -1
- package/styles/splitter/_bootstrap5-definition.scss +4 -1
- package/styles/splitter/_fabric-dark-definition.scss +4 -1
- package/styles/splitter/_fabric-definition.scss +4 -1
- package/styles/splitter/_fluent-definition.scss +28 -0
- package/styles/splitter/_highcontrast-definition.scss +4 -1
- package/styles/splitter/_highcontrast-light-definition.scss +4 -1
- package/styles/splitter/_layout.scss +2 -1
- package/styles/splitter/_material-dark-definition.scss +4 -1
- package/styles/splitter/_material-definition.scss +4 -1
- package/styles/splitter/_tailwind-definition.scss +4 -1
- package/styles/splitter/_theme.scss +6 -1
- package/styles/splitter/bootstrap-dark.css +8 -2
- package/styles/splitter/bootstrap.css +8 -2
- package/styles/splitter/bootstrap4.css +8 -2
- package/styles/splitter/bootstrap5-dark.css +8 -2
- package/styles/splitter/bootstrap5.css +8 -2
- package/styles/splitter/fabric-dark.css +8 -2
- package/styles/splitter/fabric.css +8 -2
- package/styles/splitter/highcontrast-light.css +8 -2
- package/styles/splitter/highcontrast.css +8 -2
- package/styles/splitter/icons/_fluent.scss +39 -0
- package/styles/splitter/material-dark.css +8 -2
- package/styles/splitter/material.css +8 -2
- package/styles/splitter/tailwind-dark.css +8 -2
- package/styles/splitter/tailwind.css +8 -2
- package/styles/tailwind-dark.css +8 -2
- package/styles/tailwind.css +8 -2
@@ -0,0 +1,41 @@
|
|
1
|
+
### Bug description
|
2
|
+
|
3
|
+
(Clearly and concisely describe the problem.)
|
4
|
+
|
5
|
+
### Root Cause / Analysis
|
6
|
+
|
7
|
+
(Briefly describe root cause/analysis of the problem. If there is an internal discussion on the forum, provide the link.)
|
8
|
+
|
9
|
+
### Reason for not identifying earlier
|
10
|
+
|
11
|
+
(Explain how it was missed to identify in our earlier testing/development.)
|
12
|
+
|
13
|
+
### Is Breaking issue.?
|
14
|
+
|
15
|
+
(If it is a breaking issue, provide the commit detail which caused this break.)
|
16
|
+
|
17
|
+
### Is reported by customer in incident/forum.?
|
18
|
+
|
19
|
+
(If it is reported by customer, provide the incident or forum details.)
|
20
|
+
|
21
|
+
### Solution Description
|
22
|
+
|
23
|
+
(Describe your code changes in detail for reviewers.)
|
24
|
+
|
25
|
+
### Areas affected and ensured
|
26
|
+
|
27
|
+
(List out the areas are affected by your code changes.)
|
28
|
+
|
29
|
+
### E2E report details against this fix
|
30
|
+
|
31
|
+
(Run E2E locally and mention the details with mail attachment.)
|
32
|
+
|
33
|
+
### Did you included unit test cases.?
|
34
|
+
|
35
|
+
(Provide unit testing spec coverage details.)
|
36
|
+
|
37
|
+
### Is there any API name changes.?
|
38
|
+
|
39
|
+
/label ~bug
|
40
|
+
/assign @ScrumMaster
|
41
|
+
/cc @ProductOwner
|
@@ -0,0 +1,27 @@
|
|
1
|
+
### Feature description
|
2
|
+
|
3
|
+
(Clearly and concisely describe the feature.)
|
4
|
+
|
5
|
+
### Analysis / Design
|
6
|
+
|
7
|
+
(Briefly describe analysis of the feature. If there is an internal discussion on the Forum, provide the link.)
|
8
|
+
|
9
|
+
### Solution Description
|
10
|
+
|
11
|
+
(Describe your code changes in detail for reviewers.)
|
12
|
+
|
13
|
+
### Areas affected and ensured
|
14
|
+
|
15
|
+
(List out the areas are affected by your code changes.)
|
16
|
+
|
17
|
+
### Did you included unit test cases.?
|
18
|
+
|
19
|
+
(Provide unit testing spec coverage details.)
|
20
|
+
|
21
|
+
### Is there any API name changes.?
|
22
|
+
|
23
|
+
(Provide new or update of API details)
|
24
|
+
|
25
|
+
/label ~bug
|
26
|
+
/assign @ScrumMaster
|
27
|
+
/cc @ProductOwner
|
package/CHANGELOG.md
CHANGED
@@ -2,21 +2,27 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
-
|
5
|
+
### Dashboard Layout
|
6
|
+
|
7
|
+
#### Bug Fixes
|
8
|
+
|
9
|
+
- `#SF-361218` - The issue with "The Dashboard Layout with nested panels throws a script error on page resizing" has been resolved.
|
10
|
+
|
11
|
+
## 19.4.43 (2022-01-18)
|
6
12
|
|
7
13
|
### Splitter
|
8
14
|
|
9
15
|
#### Bug Fixes
|
10
16
|
|
11
|
-
- `#
|
17
|
+
- `#I360945` - Now, the splitter works properly when the target element is passed as a variable in the Splitter constructor.
|
12
18
|
|
13
|
-
## 19.
|
19
|
+
## 19.3.43 (2021-09-30)
|
14
20
|
|
15
|
-
###
|
21
|
+
### Splitter
|
16
22
|
|
17
23
|
#### Bug Fixes
|
18
24
|
|
19
|
-
- `#
|
25
|
+
- `#I341650` - The issue with "Resize event handler is not properly un-wired, when destroying the splitter component" has been resolved.
|
20
26
|
|
21
27
|
## 19.2.48 (2021-07-20)
|
22
28
|
|
package/README.md
CHANGED
@@ -124,4 +124,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
124
124
|
|
125
125
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/layouts/CHANGELOG.md/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-layout-npm)
|
126
126
|
|
127
|
-
© Copyright
|
127
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|