Skip to content

Commit 60f3d85

Browse files
author
pipeline
committed
v20.2.48 is released
1 parent 93df9d2 commit 60f3d85

File tree

132 files changed

+1949
-313
lines changed

Some content is hidden

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

132 files changed

+1949
-313
lines changed

controls/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.2.48 (2022-09-06)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I401438` - The issue with the "License registration through `npx` command" has been resolved.
12+
513
## 20.2.46 (2022-08-30)
614

715
### Common

controls/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "20.2.45",
3+
"version": "20.2.46",
44
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -437,31 +437,31 @@
437437
@media (min-width: 768px) {
438438
.e-alert-dialog.e-dialog.e-popup,
439439
.e-confirm-dialog.e-dialog.e-popup {
440-
margin: 30px auto;
440+
margin: 30px;
441441
width: 600px;
442442
}
443443
}
444444

445445
@media (max-width: 768px) {
446446
.e-alert-dialog.e-dialog.e-popup,
447447
.e-confirm-dialog.e-dialog.e-popup {
448-
margin: 30px auto;
448+
margin: 30px;
449449
width: auto;
450450
}
451451
}
452452

453453
@media (max-width: 768px) {
454454
.e-prompt-dialog.e-dialog.e-popup,
455455
.e-prompt-dialog.e-dialog.e-popup {
456-
margin: 30px auto;
456+
margin: 30px;
457457
width: auto;
458458
}
459459
}
460460

461461
@media (min-width: 768px) {
462462
.e-prompt-dialog.e-dialog.e-popup,
463463
.e-prompt-dialog.e-dialog.e-popup {
464-
margin: 30px auto;
464+
margin: 30px;
465465
width: 600px;
466466
}
467467
}

controls/base/themestudio/styles/spreadsheet/ribbon/_theme.scss

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,44 @@
111111
}
112112
}
113113
}
114+
115+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
116+
& .e-tab,
117+
& .e-tab.e-focused {
118+
119+
& .e-tab-header .e-toolbar-item {
120+
121+
& .e-tab-wrap:focus {
122+
border: 1px solid transparent;
123+
}
124+
125+
& .e-tab-wrap:focus-visible {
126+
border: 1px solid $ribbon-focused-wrap-focus-border-color;
127+
}
128+
129+
& .e-tab-wrap:focus-visible:hover {
130+
border: 1px solid $ribbon-focused-wrap-focus-border-color;
131+
}
132+
}
133+
}
134+
135+
& .e-tab .e-tab-header {
136+
137+
& .e-toolbar-item.e-active .e-tab-wrap {
138+
border: 1px solid transparent;
139+
}
140+
141+
& .e-toolbar-item.e-active .e-tab-wrap:hover {
142+
border: 1px solid transparent;
143+
}
144+
}
145+
146+
& .e-tab:not(.e-focused),
147+
& .e-tab:not(.e-focused)> {
148+
& .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
149+
border: 1px solid transparent;
150+
}
151+
}
152+
}
114153
}
115154
}

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2985,4 +2985,24 @@
29852985
}
29862986
}
29872987
}
2988+
2989+
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5-dark' {
2990+
.e-ribbon .e-tab .e-tab-header .e-toolbar-item {
2991+
& .e-tab-wrap:focus .e-text-wrap {
2992+
height: 32px;
2993+
}
2994+
2995+
&:not(.e-separator) .e-text-wrap {
2996+
height: 32px;
2997+
}
2998+
2999+
&:not(.e-separator) .e-tab-wrap {
3000+
height: 35px;
3001+
}
3002+
3003+
&.e-active {
3004+
margin: 0;
3005+
}
3006+
}
3007+
}
29883008
}

controls/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-buttons",
3-
"version": "20.2.45",
3+
"version": "20.2.46",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/buttons/themestudio/styles/richtexteditor/rich-text-editor/_layout.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1732,6 +1732,9 @@
17321732

17331733
.e-rte-table-popup.e-dialog .e-dlg-content {
17341734
padding: 0;
1735+
@if $skin-name == 'FluentUI' {
1736+
margin-bottom: 0;
1737+
}
17351738
}
17361739

17371740
@if $skin-name == 'tailwind' {

controls/charts/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## [Unreleased]
44

5+
## 20.2.48 (2022-09-06)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I400391` - X axis start label is now shifted when y axis is in opposed position.
12+
- `#I400062` - Now the axis lines are displayed properly after the scrollbar.
13+
14+
### Bullet Chart
15+
16+
#### Bug Fixes
17+
18+
- `#I400762` - Bullet Chart target height is now render properly.
19+
- `#I400763` - Bullet chart axis labels are now center aligned, when changing value height.
20+
521
## 20.2.46 (2022-08-30)
622

723
### Chart

controls/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-charts",
3-
"version": "20.2.45",
3+
"version": "20.2.46",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/charts/spec/chart/scrollbar/scrollbar-horizontal.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ describe('Scrollbar Chart ', () => {
8080
let width: string = scrollEle.getAttribute("width");
8181
expect(width == '832.5' || width == '836.5').toBe(true);
8282
expect(scrollEle.getAttribute("height") == '16').toBe(true);
83-
expect(scrollEle.style.top == '373.5px' || scrollEle.style.top == '377.5px').toBe(true);
83+
expect(scrollEle.style.top == '374.5px' || scrollEle.style.top == '378.5px').toBe(true);
8484
expect(scrollEle.style.left == '57.5px' || scrollEle.style.left == '53.5px').toBe(true);
8585
done();
8686
};
@@ -258,7 +258,7 @@ describe('Scrollbar Chart ', () => {
258258
let width: string = scrollEle.getAttribute('width');
259259
expect(width == '832.5' || width === '836.5').toBe(true);
260260
expect(scrollEle.getAttribute('height') == '16').toBe(true);
261-
expect(scrollEle.style.top == '404.5px' || scrollEle.style.top == '407.5px').toBe(true);
261+
expect(scrollEle.style.top == '405.5px' || scrollEle.style.top == '408.5px').toBe(true);
262262
expect(scrollEle.style.left == '57.5px' || scrollEle.style.left == '53.5px').toBe(true);
263263
done();
264264
};
@@ -358,7 +358,7 @@ describe('Scrollbar Chart ', () => {
358358
let width: string = scrollEle.getAttribute('width');
359359
expect(width == '832.5' || width === '836.5').toBe(true);
360360
expect(scrollEle.getAttribute('height') == '16').toBe(true);
361-
expect(scrollEle.style.top == '433.5px').toBe(true);
361+
expect(scrollEle.style.top == '434.5px').toBe(true);
362362
expect(scrollEle.style.left == '57.5px' || scrollEle.style.left == '53.5px').toBe(true);
363363
done();
364364
};
@@ -500,7 +500,7 @@ describe('Scrollbar Chart ', () => {
500500
expect(scrollEle != null).toBe(true);
501501
expect(scrollEle.getAttribute("width") == '856.5' || scrollEle.getAttribute("width") == '857.5').toBe(true);
502502
expect(scrollEle.getAttribute("height") == '16').toBe(true);
503-
expect(scrollEle.style.top == '397.5px' || scrollEle.style.top == '398.5px').toBe(true);
503+
expect(scrollEle.style.top == '398.5px' || scrollEle.style.top == '399.5px').toBe(true);
504504
expect(scrollEle.style.left == '33.5px' || scrollEle.style.left == '32.5px').toBe(true);
505505
done();
506506
};

0 commit comments

Comments
 (0)