Skip to content

Commit ec17e92

Browse files
author
pipeline
committed
v20.3.57 is released
1 parent 89296a3 commit ec17e92

File tree

500 files changed

+32422
-16453
lines changed

Some content is hidden

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

500 files changed

+32422
-16453
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The Syncfusion JavaScript UI controls library is the only suite that you will ev
5959
<a href="https://www.syncfusion.com/javascript-ui-controls/js-data-grid?utm_medium=listing&utm_source=github"><b>Data Grid</b></a>
6060
</td>
6161
<td>
62-
<a href="https://www.npmjs.com/package/@syncfusion/ej2-grids"><img src="https://ej2.syncfusion.com/github/images/npm-logo.png" alt="npm package @syncfusion/ej2-grids" title="@syncfusion/ej2-grids" style="height:20px;" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://ej2.syncfusion.com/badges/ej2-grids"><img src="https://ej2.syncfusion.com/badges/ej2-grids/coverage.svg" alt="code coverage of @syncfusion/ej2-grids" title="@syncfusion/ej2-grids" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://openbase.com/js/@syncfusion/ej2-grids?utm_source=embedded&amp;utm_medium=badge&amp;utm_campaign=rate-badge"><img src="https://badges.openbase.com/js/verified/@syncfusion/ej2-grids.svg?token=ox5WciPRoByBTCpEeBe7wYUXAc+Vyt6cVOZ1PNgbPRk=" alt="Verified on Openbase" title="@syncfusion/ej2-grids" /></a>
62+
<a href="https://www.npmjs.com/package/@syncfusion/ej2-grids"><img src="https://ej2.syncfusion.com/github/images/npm-logo.png" alt="npm package @syncfusion/ej2-grids" title="@syncfusion/ej2-grids" style="height:20px;" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://ej2.syncfusion.com/badges/ej2-grids"><img src="https://ej2.syncfusion.com/badges/ej2-grids/coverage.svg" alt="code coverage of @syncfusion/ej2-grids" title="@syncfusion/ej2-grids" /></a>
6363
</td>
6464
<td>
6565
<a href="controls/grids/src">Source</a>

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.3.50",
3+
"version": "20.3.56",
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/buttons/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.3.57 (2022-11-15)
6+
7+
### Chips
8+
9+
#### Bug Fixes
10+
11+
- `#293361` - When setting `enabled` value as `false` in Chip component then the disabled chip item get focused issue has been resolved.
12+
513
## 20.3.50 (2022-10-18)
614

715
### Checkbox

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.3.50",
3+
"version": "20.3.56",
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/src/chips/chip-list.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ export class ChipList extends Component<HTMLElement> implements INotifyPropertyC
451451

452452
private setAttributes(): void {
453453
if (this.type === 'chip') {
454-
this.element.tabIndex = 0;
454+
if(this.enabled) this.element.tabIndex = 0;
455455
this.element.setAttribute('role', 'option');
456456
} else {
457457
this.element.classList.add(classNames.chipSet);
@@ -497,6 +497,9 @@ export class ChipList extends Component<HTMLElement> implements INotifyPropertyC
497497
if (fieldsData.value) {
498498
wrapper.setAttribute('data-value', fieldsData.value.toString());
499499
}
500+
if (!fieldsData.enabled) {
501+
wrapper.removeAttribute('tabindex');
502+
}
500503
append(chipArray, wrapper);
501504
chipListArray.push(wrapper);
502505
}

controls/buttons/styles/check-box/_theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
&:not(.e-check):not(.e-stop) {
104104
color: $cbox-icon-color;
105-
@media (hover: none) {
105+
@media (max-width: 768px) {
106106
color: $cbox-bgcolor;
107107
}
108108
}

controls/buttons/themestudio/styles/buttons/check-box/_theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
&:not(.e-check):not(.e-stop) {
104104
color: $cbox-icon-color;
105-
@media (hover: none) {
105+
@media (max-width: 768px) {
106106
color: $cbox-bgcolor;
107107
}
108108
}

controls/buttons/themestudio/styles/dropdowns/multi-select/_layout.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2000,3 +2000,7 @@ ejs-multiselect {
20002000
.e-multiselect.e-readonly.e-control-wrapper.e-input-group.e-control-container.e-input-group :not(.e-disabled).e-multi-select-wrapper:hover .e-clear-icon {
20012001
display: none;
20022002
}
2003+
2004+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
2005+
margin-right: 0;
2006+
}

controls/buttons/themestudio/styles/filemanager/file-manager/_layout.scss

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,6 @@
8080
border-width: 0 0 1px;
8181
}
8282

83-
.e-toolbar-items .e-toolbar-item.e-template {
84-
height: 30px;
85-
86-
.e-upload.e-fm-upload {
87-
border: 0;
88-
89-
.e-file-select-wrap {
90-
padding-left: 1px;
91-
padding-right: 1px;
92-
93-
.e-css.e-btn:hover {
94-
@if $fm-skin-name == 'material' {
95-
box-shadow: none;
96-
}
97-
}
98-
}
99-
}
100-
}
101-
10283
.e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
10384
border: 0;
10485
box-shadow: none;

controls/buttons/themestudio/styles/navigations/tab/_layout.scss

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
height: auto;
1414
min-height: auto;
1515

16-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' or $tbar-skin == 'FluentUI' {
17-
height: $tab-big-height;
18-
min-height: $tab-big-height;
19-
}
20-
2116
&:not(.e-tbar-pos) .e-toolbar-item:first-child,
2217
&:not(.e-tbar-pos) .e-toolbar-item:last-child {
2318
margin: $tab-big-first-item-margin;
@@ -733,11 +728,11 @@
733728

734729
&.e-vertical-icon {
735730

736-
.e-tab-header {
731+
> .e-tab-header {
737732
height: $tab-big-tb-icon-height;
738733
min-height: $tab-big-tb-icon-height;
739734

740-
.e-toolbar-items {
735+
> .e-toolbar-items {
741736
height: $tab-big-tb-icon-height;
742737
}
743738

@@ -1213,7 +1208,7 @@
12131208

12141209
&.e-vertical-icon {
12151210

1216-
.e-tab-header {
1211+
> .e-tab-header {
12171212
height: $tab-big-tb-icon-height - 2;
12181213
min-height: $tab-big-tb-icon-height - 2;
12191214
}
@@ -1490,16 +1485,8 @@
14901485
min-height: $tab-nrml-height;
14911486
position: relative;
14921487

1493-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' or $tbar-skin == 'FluentUI' {
1494-
height: $tab-nrml-height;
1495-
min-height: $tab-nrml-height;
1496-
}
1497-
14981488
@media screen and (max-width: 480px) {
14991489
min-height: $tab-big-height;
1500-
@if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1501-
height: $tab-big-height;
1502-
}
15031490
}
15041491

15051492
&:not(.e-tbar-pos) .e-toolbar-item:first-child,
@@ -2808,7 +2795,7 @@
28082795

28092796
&.e-vertical-icon {
28102797

2811-
.e-tab-header {
2798+
> .e-tab-header {
28122799
height: $tab-nrml-tb-icon-height;
28132800
min-height: $tab-nrml-tb-icon-height;
28142801

@@ -2820,7 +2807,7 @@
28202807
}
28212808
}
28222809

2823-
.e-toolbar-items {
2810+
> .e-toolbar-items {
28242811
height: $tab-nrml-tb-icon-height;
28252812
}
28262813

@@ -3456,7 +3443,7 @@
34563443

34573444
&.e-vertical-icon {
34583445

3459-
.e-tab-header {
3446+
> .e-tab-header {
34603447
height: $tab-nrml-tb-icon-height - 2;
34613448
min-height: $tab-nrml-tb-icon-height - 2;
34623449
}

0 commit comments

Comments
 (0)