Skip to content

Commit 2309f6d

Browse files
author
pipeline
committed
v27.1.53 is released
1 parent b58d3d8 commit 2309f6d

File tree

781 files changed

+122803
-8435
lines changed

Some content is hidden

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

781 files changed

+122803
-8435
lines changed

README.md

Lines changed: 1368 additions & 1368 deletions
Large diffs are not rendered by default.

controls/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 27.1.52 (2024-10-08)
5+
## 27.1.53 (2024-10-15)
66

77
### Barcode
88

controls/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.1.53 (2024-10-15)
6+
7+
### Common
8+
9+
#### New Features
10+
11+
- Provided support for handling license key validation in CI services.
12+
13+
#### Bug Fixes
14+
15+
- `#I617320` - Resolved an issue with touch swipe functionality in iOS `Capacitor` applications.
16+
517
## 27.1.52 (2024-10-08)
618

719
### Common

controls/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "27.1.50",
3+
"version": "27.1.52",
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",
@@ -60,7 +60,7 @@
6060
"canteen": "^1.0.5",
6161
"jasmine-ajax": "^3.3.1",
6262
"jasmine-core": "^2.6.1",
63-
"karma": "6.4.2",
63+
"karma": "6.4.2",
6464
"karma-chrome-launcher": "^2.2.0",
6565
"karma-generic-preprocessor": "^1.1.0",
6666
"karma-htmlfile-reporter": "^0.3.5",

controls/base/src/browser.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ interface MyWindow extends Window {
2525
PhoneGap: Object;
2626
phonegap: Object;
2727
forge: Object;
28+
Capacitor?: { getPlatform: () => string };
2829
}
2930
declare let window: MyWindow;
3031

@@ -163,6 +164,9 @@ export class Browser {
163164
browserDetails['isTouch'] = true;
164165
browserDetails['isPointer'] = true;
165166
}
167+
if (window && window.Capacitor && window.Capacitor.getPlatform() === 'ios') {
168+
browserDetails['isPointer'] = false;
169+
}
166170
if ('undefined' === typeof (<{ [key: string]: Object }>browserDetails)[`${key}`]) {
167171
return (<{ [key: string]: Object }>browserDetails)[`${key}`] = regX.test(Browser.userAgent);
168172
}

controls/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 27.1.52 (2024-10-08)
5+
## 27.1.53 (2024-10-15)
66

77
### Checkbox
88

controls/calendars/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-calendars",
3-
"version": "27.1.51",
3+
"version": "27.1.52",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -31,7 +31,7 @@
3131
"canteen": "^1.0.5",
3232
"jasmine-ajax": "^3.3.1",
3333
"jasmine-core": "^2.6.1",
34-
"karma": "6.4.2",
34+
"karma": "6.4.2",
3535
"karma-chrome-launcher": "^2.2.0",
3636
"karma-generic-preprocessor": "^1.1.0",
3737
"karma-htmlfile-reporter": "^0.3.5",

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+
## 27.1.53 (2024-10-15)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I637436` - Now, multilevel axis labels are working properly when RTL is enabled.
12+
- `#I640682` - The border dash array now works properly for all series.
13+
- `#I640585` - Now, the range area series works properly when the middle point's x value is set to 0.
14+
15+
### 3DChart
16+
17+
#### Bug Fixes
18+
19+
- `#I637725` - The first label on the y-axis is now positioned correctly.
20+
521
## 27.1.52 (2024-10-08)
622

723
### Chart

controls/charts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-charts",
3-
"version": "27.1.51",
3+
"version": "27.1.52",
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",
@@ -30,7 +30,7 @@
3030
"canteen": "^1.0.5",
3131
"jasmine-ajax": "^3.3.1",
3232
"jasmine-core": "^2.6.1",
33-
"karma": "6.4.2",
33+
"karma": "6.4.2",
3434
"karma-chrome-launcher": "^2.2.0",
3535
"karma-generic-preprocessor": "^1.1.0",
3636
"karma-htmlfile-reporter": "^0.3.5",

controls/charts/spec/chart/series/column-series.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ describe('Column Series', () => {
205205
done();
206206
};
207207
chartObj.loaded = loaded;
208-
chartObj.series[0].dashArray = '4,3';
208+
chartObj.series[0].border.dashArray = '4,3';
209209
chartObj.refresh();
210210
});
211211

0 commit comments

Comments
 (0)