Skip to content

Commit d56543e

Browse files
author
pipeline
committed
v20.1.60 is released
1 parent af14369 commit d56543e

File tree

354 files changed

+6624
-1551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+6624
-1551
lines changed

controls/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.1.60 (2022-06-14)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `SF-372767`, `SF-370308` - The empty space issue in `Treeview` component while dragging the element has been resolved.
12+
513
## 20.1.56 (2022-05-17)
614

715
### Common

controls/base/ReadMe.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![coverage](http://ej2.syncfusion.com/badges/ej2-base/coverage.svg)](http://ej2.syncfusion.com/badges/ej2-base)
2-
31
# ej2-base
42

53
A common package of Essential JS 2 which contains base libraries, methods and class definitions.

controls/base/src/draggable.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,18 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
781781
draEleTop -= this.parentScrollY;
782782
draEleLeft -= this.parentScrollX;
783783
}
784-
784+
if (this.helperElement.classList.contains('e-treeview')) {
785+
let body = document.body;
786+
let html = document.documentElement;
787+
let tempHeight = Math.max( body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight );
788+
let tempWidth = Math.max( body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth );
789+
if (draEleTop > tempHeight) {
790+
draEleTop = tempHeight;
791+
}
792+
if (draEleLeft > tempWidth) {
793+
draEleLeft = tempWidth;
794+
}
795+
}
785796
let dragValue: DragPosition = this.getProcessedPositionValue({ top: draEleTop + 'px', left: draEleLeft + 'px' });
786797
setStyleAttribute(helperElement, this.getDragPosition(dragValue));
787798
if (!this.elementInViewport(helperElement) && this.enableAutoScroll) {

controls/base/themestudio/styles/gantt/gantt/_bootstrap5-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ $gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
118118
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
119119
$gantt-bigger-tooltip-button-color: #000000;
120120
$gantt-bigger-tooltip-dialog-color: #f8f8fa;
121-
$gantt-bigger-tooltip-button-text-color: #F9FAFB;
121+
$gantt-bigger-tooltip-button-text-color: $white;
122122
$gantt-bigger-tooltip-disabled-button-color: #ADB5BD !important;
123123
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
124124
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;

controls/base/themestudio/styles/gantt/gantt/_layout.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@
8282

8383
}
8484

85+
.e-tab .e-content {
86+
height: $gantt-bigger-add-dialog-content-height;
87+
}
88+
8589
.e-gantt-tree-grid-pane {
8690
.e-columnheader {
8791
.e-headercell {
@@ -259,10 +263,6 @@
259263
}
260264
}
261265

262-
.e-tab .e-content {
263-
height: $gantt-bigger-add-dialog-content-height;
264-
}
265-
266266
.e-filter-popup {
267267
width: $gantt-bigger-filter-dialog-width;
268268
}

controls/base/themestudio/styles/gantt/gantt/_tailwind-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ $gantt-dialog-edit-form-scroll-padding: 12px 15px 0 0 !default;
117117
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
118118
$gantt-bigger-tooltip-button-color: #000000;
119119
$gantt-bigger-tooltip-dialog-color: #f9fafb;
120-
$gantt-bigger-tooltip-button-text-color: #FFFFFF;
120+
$gantt-bigger-tooltip-button-text-color: $white;
121121
$gantt-bigger-tooltip-disabled-button-color: #9CA3Af !important;
122122
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 24px !default;
123123
$gantt-bigger-dialog-edit-form-even-padding: 16px 24px 0 8px !default;

controls/base/themestudio/styles/popups/dialog/_layout.scss

-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,6 @@
321321
.e-dlg-fullscreen {
322322
height: 100% !important;
323323
left: 0 !important;
324-
top: 0 !important;
325324
width: 100% !important;
326325
}
327326
// sass-lint:enable no-important

controls/calendars/themestudio/styles/gantt/gantt/_bootstrap5-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ $gantt-dialog-edit-form-even-padding: 12px 18px 0 0 !default;
118118
$gantt-dialog-edit-form-scroll-padding: 12px 18px 0 0 !default;
119119
$gantt-bigger-tooltip-button-color: #000000;
120120
$gantt-bigger-tooltip-dialog-color: #f8f8fa;
121-
$gantt-bigger-tooltip-button-text-color: #F9FAFB;
121+
$gantt-bigger-tooltip-button-text-color: $white;
122122
$gantt-bigger-tooltip-disabled-button-color: #ADB5BD !important;
123123
$gantt-bigger-dialog-edit-form-odd-padding: 16px 12px 0 16px !default;
124124
$gantt-bigger-dialog-edit-form-even-padding: 16px 16px 0 12px !default;

controls/calendars/themestudio/styles/gantt/gantt/_layout.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@
8282

8383
}
8484

85+
.e-tab .e-content {
86+
height: $gantt-bigger-add-dialog-content-height;
87+
}
88+
8589
.e-gantt-tree-grid-pane {
8690
.e-columnheader {
8791
.e-headercell {
@@ -259,10 +263,6 @@
259263
}
260264
}
261265

262-
.e-tab .e-content {
263-
height: $gantt-bigger-add-dialog-content-height;
264-
}
265-
266266
.e-filter-popup {
267267
width: $gantt-bigger-filter-dialog-width;
268268
}

controls/calendars/themestudio/styles/gantt/gantt/_tailwind-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ $gantt-dialog-edit-form-scroll-padding: 12px 15px 0 0 !default;
117117
$gantt-bigger-predecessor-dialog-padding: 10px 9px 9px 14px !important;
118118
$gantt-bigger-tooltip-button-color: #000000;
119119
$gantt-bigger-tooltip-dialog-color: #f9fafb;
120-
$gantt-bigger-tooltip-button-text-color: #FFFFFF;
120+
$gantt-bigger-tooltip-button-text-color: $white;
121121
$gantt-bigger-tooltip-disabled-button-color: #9CA3Af !important;
122122
$gantt-bigger-dialog-edit-form-odd-padding: 16px 8px 0 24px !default;
123123
$gantt-bigger-dialog-edit-form-even-padding: 16px 24px 0 8px !default;

controls/circulargauge/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## [Unreleased]
66

7-
## 20.1.59 (2022-06-07)
7+
## 20.1.60 (2022-06-14)
88

99
### Circular Gauge
1010

controls/diagrams/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 20.1.60 (2022-06-14)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I381671` - Bpmn task type is working properly while changing from type Send to Receive.
12+
- `#F175332` - Undo is working properly after deleting the node attached with connector.
13+
- `#I376982` - Annotation dragging in connector and node is working properly when we set horizontal Alignment and vertical Alignment.
14+
515
## 20.1.59 (2022-06-07)
616

717
### Diagram

controls/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-diagrams",
3-
"version": "20.1.57",
3+
"version": "20.1.59",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)