Skip to content

Commit 97a1d76

Browse files
author
pipeline
committed
v21.1.39 is released
1 parent 276ec7f commit 97a1d76

File tree

587 files changed

+2149
-3762
lines changed

Some content is hidden

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

587 files changed

+2149
-3762
lines changed

controls/base/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [Unreleased]
44

5+
### Common
6+
7+
#### Bug Fixes
8+
9+
- `#I445928` - The issue with the "`formatNumber` method on internationalization" has been resolved.
10+
- `#I439133` - The issue with the "Detection of Microsoft Surface Pro device" has been resolved.
11+
512
## 21.1.38 (2023-04-04)
613

714
### Common

controls/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "21.1.37",
3+
"version": "21.1.38",
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/spec/internationalization.spec.ts

+24
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,30 @@ describe('Internationalization', () => {
120120
});
121121
});
122122

123+
describe('Check number fromatting and trailing zeros for decimal type', () => {
124+
let numIntl: Internationalization = new Internationalization();
125+
it('numberfromatting using the formatNumber #1', () => {
126+
let result: string = numIntl.formatNumber(63219.139999, { format: '#,##0.00##' });
127+
expect(result).toBe('63,219.14');
128+
});
129+
it('numberfromatting using the formatNumber #2', () => {
130+
let result: string = numIntl.formatNumber(63219.1339999, { format: '#,##0.00##' });
131+
expect(result).toBe('63,219.134');
132+
});
133+
it('numberfromatting using the formatNumber #3', () => {
134+
let result: string = numIntl.formatNumber(0.002341123, { format: '#,##0.00##' });
135+
expect(result).toBe('0.0023');
136+
});
137+
it('numberfromatting using the formatNumber #4', () => {
138+
let result: string = numIntl.formatNumber(63219.00000, { format: '#,##0.00##' });
139+
expect(result).toBe('63,219.00');
140+
});
141+
afterAll(() => {
142+
setCulture('en-US');
143+
setCurrencyCode('USD');
144+
});
145+
});
146+
123147
describe('Number Fromatting with local culture set', () => {
124148
let numIntl: Internationalization = new Internationalization('ja');
125149
it('numberformatter using the getNumberFormatter and currency code set in option', () => {

controls/base/src/browser.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,9 @@ export class Browser {
159159

160160
private static getValue(key: string, regX: RegExp): Object {
161161
const browserDetails: {} = typeof window !== 'undefined' ? window.browserDetails : {};
162-
if (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
163-
browserDetails['isIos'] = true;
162+
const isSurfaceDevice: boolean = typeof navigator !== 'undefined' && navigator.userAgent.indexOf('Windows') > -1 && screen && screen.width < 1360;
163+
if (typeof navigator !== 'undefined' && (navigator.platform === 'MacIntel' || isSurfaceDevice) && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
164+
browserDetails['isIos'] = navigator.platform === 'MacIntel';
164165
browserDetails['isDevice'] = true;
165166
browserDetails['isTouch'] = true;
166167
browserDetails['isPointer'] = true;

controls/base/src/draggable.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -774,9 +774,11 @@ export class Draggable extends Base<HTMLElement> implements INotifyPropertyChang
774774
}
775775
} else {
776776
if (this.dragArea) {
777+
let isDialogEle: boolean = this.helperElement.classList.contains('e-dialog');
777778
this.dragLimit.top = this.clone ? this.dragLimit.top : 0;
778779
draEleTop = (top - iTop) < 0 ? this.dragLimit.top : (top - iTop);
779-
draEleLeft = (left - iLeft) < 0 ? this.dragElePosition.left : (left - iLeft);
780+
draEleLeft = (left - iLeft) < 0 ? isDialogEle ? (left - (iLeft- this.borderWidth.left)) :
781+
this.dragElePosition.left : (left - iLeft);
780782
} else {
781783
draEleTop = top - iTop;
782784
draEleLeft = left - iLeft;

controls/base/src/intl/intl-base.ts

+1
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,7 @@ export namespace IntlBase {
944944
}
945945
}
946946
if (!isNullOrUndefined(dOptions)) {
947+
dOptions.isCustomFormat = true;
947948
extend(cOptions, isCurrencyPercent([cOptions.nlead, cOptions.nend], '$', dOptions.currencySymbol));
948949
if (!cOptions.isCurrency) {
949950
extend(cOptions, isCurrencyPercent(

controls/base/src/intl/number-formatter.ts

+15
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export interface CommonOptions {
2323
currencySymbol?: string;
2424
percentSymbol?: string;
2525
minusSymbol?: string;
26+
isCustomFormat?: boolean;
2627
}
2728
/**
2829
* Interface for currency processing
@@ -249,6 +250,20 @@ export class NumberFormat {
249250
if (curData.minimumIntegerDigits) {
250251
fValue = this.processMinimumIntegers(fValue, curData.minimumIntegerDigits);
251252
}
253+
if (dOptions.isCustomFormat && curData.minimumFractionDigits < curData.maximumFractionDigits
254+
&& /\d+\.\d+/.test(fValue)) {
255+
const temp: string[] = fValue.split('.');
256+
let decimalPart: string = temp[1];
257+
const len: number = decimalPart.length;
258+
for (let i: number = len - 1; i >= 0; i--) {
259+
if (decimalPart[`${i}`] === '0' && i >= curData.minimumFractionDigits) {
260+
decimalPart = decimalPart.slice(0, i);
261+
} else {
262+
break;
263+
}
264+
}
265+
fValue = temp[0] + '.' + decimalPart;
266+
}
252267
}
253268
if (curData.type === 'scientific') {
254269
fValue = value.toExponential(curData.maximumFractionDigits);

controls/base/themestudio/styles/grids/grid/_layout.scss

+3-6
Original file line numberDiff line numberDiff line change
@@ -3602,11 +3602,6 @@
36023602
}
36033603

36043604
&.sf-grid {
3605-
3606-
.e-table {
3607-
border-spacing: .25px;
3608-
}
3609-
36103605
span.e-ungroupbutton.e-icons {
36113606
margin-left: $grid-group-ungroupicon-margin-left;
36123607
}
@@ -3791,7 +3786,9 @@
37913786
}
37923787

37933788
#{&}.e-grid-min-height {
3794-
.e-rowcell {
3789+
.e-rowcell,
3790+
.e-icon-grightarrow,
3791+
.e-icon-gdownarrow {
37953792
line-height: 0;
37963793
padding-bottom: 0;
37973794
padding-top: 0;

controls/base/themestudio/styles/inplace-editor/inplace-editor/_theme.scss

+12
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,25 @@
136136
background-color: darken($gray-600, 7.5%);
137137
border: 1px solid darken($gray-600, 10%);
138138
}
139+
140+
&:disabled {
141+
background-color: $content-bg;
142+
border: 1px solid $gray-400;
143+
box-shadow: 0 1px 4px 0 $black-color;
144+
}
139145
}
140146
@else if $skin-name == 'bootstrap5' {
141147

142148
&:hover {
143149
background-color: darken($gray-600, 7.5%);
144150
border: 1px solid darken($gray-600, 10%);
145151
}
152+
153+
&:disabled{
154+
background-color: $content-bg-color;
155+
border: 1px solid $border-light;
156+
border-radius: 4px;
157+
}
146158
}
147159

148160
@if $skin-name == 'bootstrap4' {

controls/base/themestudio/styles/lists/list-view/_theme.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
font-size: $listview-header-font-size;
1212
}
1313

14-
& .e-icons {
14+
& .e-icons:not(.e-primary .e-icon-btn) {
1515
color: $listview-icon-color;
1616

1717
@if ($skin-name == 'tailwind') {

controls/base/themestudio/styles/navigations/context-menu/_bootstrap5-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $cmenu-back-icon: '\e977' !default;
33
$cmenu-back-icon-margin: 8px !default;
44
$cmenu-bigger-caret-font-size: $text-base !default;
55
$cmenu-bigger-font-size: $text-base !default;
6-
$cmenu-bigger-li-height: 32px !default;
6+
$cmenu-bigger-li-height: 36px !default;
77
$cmenu-bigger-li-padding: 0 16px !default;
88
$cmenu-bigger-max-width: 280px !default;
99
$cmenu-bigger-min-width: 112px !default;

controls/base/themestudio/styles/navigations/menu/_bootstrap5-definition.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $menu-ul-border: none !default;
5959
$menu-li-hover-outline: 0 solid $menu-li-border-color !default;
6060
$menu-srollbar-ul-border: none !default;
6161
$submenu-caret-font-size: $menu-caret-font-size !default;
62-
$submenu-bigger-caret-font-size: $submenu-caret-font-size !default;
62+
$submenu-bigger-caret-font-size: $text-base !default;
6363
$submenu-color: $content-text-color !default;
6464
$menu-icon-color: $icon-color !default;
6565
$menu-icon-hover-color: $content-text-color !default;

controls/base/themestudio/styles/navigations/tab/_icons.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: $tab-pop-up-icon;
15-
16-
@media screen and (max-width: 480px) {
17-
content: $tab-mob-pop-up-icon;
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: $tab-pop-down-icon;
23-
24-
@media screen and (max-width: 480px) {
25-
content: $tab-mob-pop-down-icon;
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_bootstrap-dark.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: '\e988';
15-
16-
@media screen and (max-width: 480px) {
17-
content: '\e936';
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: '\e968';
23-
24-
@media screen and (max-width: 480px) {
25-
content: '\e936';
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_bootstrap.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: '\e988';
15-
16-
@media screen and (max-width: 480px) {
17-
content: '\e936';
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: '\e968';
23-
24-
@media screen and (max-width: 480px) {
25-
content: '\e936';
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_bootstrap4.scss

-12
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,6 @@
2020
content: '\e745';
2121
position: relative;
2222
}
23-
24-
.e-popup-up-icon::before {
25-
@media screen and (max-width: 480px) {
26-
content: '\e781';
27-
}
28-
}
29-
30-
.e-popup-down-icon::before {
31-
@media screen and (max-width: 480px) {
32-
content: '\e781';
33-
}
34-
}
3523
}
3624

3725
&.e-vertical-icon .e-tab-header {

controls/base/themestudio/styles/navigations/tab/icons/_bootstrap5.scss

-12
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@
99
content: '\e7e7';
1010
position: relative;
1111
}
12-
13-
.e-popup-up-icon::before {
14-
@media screen and (max-width: 480px) {
15-
content: '\e770';
16-
}
17-
}
18-
19-
.e-popup-down-icon::before {
20-
@media screen and (max-width: 480px) {
21-
content: '\e770';
22-
}
23-
}
2412
}
2513

2614
&.e-vertical-icon .e-tab-header {

controls/base/themestudio/styles/navigations/tab/icons/_fabric-dark.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: '\e85e';
15-
16-
@media screen and (max-width: 480px) {
17-
content: '\e976';
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: '\e84f';
23-
24-
@media screen and (max-width: 480px) {
25-
content: '\e976';
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_fabric.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: '\e85e';
15-
16-
@media screen and (max-width: 480px) {
17-
content: '\e976';
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: '\e84f';
23-
24-
@media screen and (max-width: 480px) {
25-
content: '\e976';
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_fluent.scss

-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
.e-popup-up-icon::before {
1414
content: '\e776';
15-
16-
@media screen and (max-width: 480px) {
17-
content: '\e770';
18-
}
1915
}
2016

2117
.e-popup-down-icon::before {
2218
content: '\e729';
23-
24-
@media screen and (max-width: 480px) {
25-
content: '\e770';
26-
}
2719
}
2820
}
2921

controls/base/themestudio/styles/navigations/tab/icons/_fusionnew.scss

-12
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@
99
content: '\e7e7';
1010
position: relative;
1111
}
12-
13-
.e-popup-up-icon::before {
14-
@media screen and (max-width: 480px) {
15-
content: '\e770';
16-
}
17-
}
18-
19-
.e-popup-down-icon::before {
20-
@media screen and (max-width: 480px) {
21-
content: '\e770';
22-
}
23-
}
2412
}
2513

2614
&.e-vertical-icon .e-tab-header {

controls/base/themestudio/styles/navigations/tab/icons/_highcontrast-light.scss

-12
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@
99
content: '\e7fc';
1010
position: relative;
1111
}
12-
13-
.e-popup-up-icon::before {
14-
@media screen and (max-width: 480px) {
15-
content: '\e976';
16-
}
17-
}
18-
19-
.e-popup-down-icon::before {
20-
@media screen and (max-width: 480px) {
21-
content: '\e976';
22-
}
23-
}
2412
}
2513

2614
&.e-vertical-icon .e-tab-header {

controls/base/themestudio/styles/navigations/tab/icons/_highcontrast.scss

-12
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,6 @@
2020
content: '\e7fc';
2121
position: relative;
2222
}
23-
24-
.e-popup-up-icon::before {
25-
@media screen and (max-width: 480px) {
26-
content: '\e976';
27-
}
28-
}
29-
30-
.e-popup-down-icon::before {
31-
@media screen and (max-width: 480px) {
32-
content: '\e976';
33-
}
34-
}
3523
}
3624

3725
&.e-vertical-icon .e-tab-header {

0 commit comments

Comments
 (0)