Skip to content

Commit 4a59ddd

Browse files
author
pipeline
committed
v27.1.55 is released
1 parent ead36fa commit 4a59ddd

File tree

95 files changed

+312
-29
lines changed

Some content is hidden

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

95 files changed

+312
-29
lines changed

components/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.53 (2024-10-15)
5+
## 27.1.55 (2024-10-22)
66

77
### Barcode
88

components/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.53 (2024-10-15)
5+
## 27.1.55 (2024-10-22)
66

77
### Checkbox
88

components/calendars/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+
## 27.1.55 (2024-10-22)
6+
7+
### DateTimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I632734` - Fixed an issue where the page automatically scrolled to the top when users began typing in the masked datetime picker on iPad.
12+
513
## 27.1.51 (2024-09-30)
614

715
### DateTimePicker

components/calendars/src/calendar/calendar.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class CalendarComponent extends Calendar {
2020
private statelessTemplateProps: string[] = null;
2121
private templateProps: string[] = null;
2222
private immediateRender: boolean = true;
23+
private isReactMock: boolean = true;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<CalendarModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class CalendarComponent extends Calendar {
3435
}
3536

3637
public render(): any {
38+
this.isReactMock = false;
3739
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
3840
super.render();
3941
this.initRenderCalled = true;

components/calendars/src/datepicker/datepicker.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class DatePickerComponent extends DatePicker {
2020
private statelessTemplateProps: string[] = null;
2121
private templateProps: string[] = null;
2222
private immediateRender: boolean = true;
23+
private isReactMock: boolean = true;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<DatePickerModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class DatePickerComponent extends DatePicker {
3435
}
3536

3637
public render(): any {
38+
this.isReactMock = false;
3739
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
3840
super.render();
3941
this.initRenderCalled = true;

components/calendars/src/daterangepicker/daterangepicker.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class DateRangePickerComponent extends DateRangePicker {
2424
private statelessTemplateProps: string[] = null;
2525
private templateProps: string[] = null;
2626
private immediateRender: boolean = false;
27+
private isReactMock: boolean = true;
2728
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2829
& Readonly<DateRangePickerModel | DefaultHtmlAttributes| DateRangePickerTypecast>;
2930
public forceUpdate: (callBack?: () => any) => void;
@@ -38,6 +39,7 @@ export class DateRangePickerComponent extends DateRangePicker {
3839
}
3940

4041
public render(): any {
42+
this.isReactMock = false;
4143
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
4244
super.render();
4345
this.initRenderCalled = true;

components/calendars/src/datetimepicker/datetimepicker.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class DateTimePickerComponent extends DateTimePicker {
2020
private statelessTemplateProps: string[] = null;
2121
private templateProps: string[] = null;
2222
private immediateRender: boolean = true;
23+
private isReactMock: boolean = true;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<DateTimePickerModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class DateTimePickerComponent extends DateTimePicker {
3435
}
3536

3637
public render(): any {
38+
this.isReactMock = false;
3739
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
3840
super.render();
3941
this.initRenderCalled = true;

components/calendars/src/timepicker/timepicker.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class TimePickerComponent extends TimePicker {
2020
private statelessTemplateProps: string[] = null;
2121
private templateProps: string[] = null;
2222
private immediateRender: boolean = true;
23+
private isReactMock: boolean = true;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<TimePickerModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class TimePickerComponent extends TimePicker {
3435
}
3536

3637
public render(): any {
38+
this.isReactMock = false;
3739
if (((this.element && !this.initRenderCalled) || this.refreshing) && !(this as any).isReactForeceUpdate) {
3840
super.render();
3941
this.initRenderCalled = true;

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.1.55 (2024-10-22)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I641213` - Data points in a multi-pane chart no longer collapse when zooming in canvas mode.
12+
- `#I641366` - The border for the multi-pane chart now renders correctly in canvas mode.
13+
- `#I640624` - The Moving Average trendline now functions as expected when the period is set to one.
14+
- `#I642177` - The `columnWidthInPixel` property now works correctly in the transposed stacked column chart.
15+
- `#I638097` - The scrollbar now functions properly during data binding.
16+
- `#I644765` - Series now renders properly when the axis interval is zero.
17+
18+
### Accumulation Chart
19+
20+
#### Bug Fixes
21+
22+
- `#I642553` - The legend text size now updates correctly when resizing the accumulation chart.
23+
524
## 27.1.53 (2024-10-15)
625

726
### Chart

components/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-react-charts",
3-
"version": "27.1.52",
3+
"version": "27.1.53",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)