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",

components/charts/src/accumulation-chart/accumulationchart.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class AccumulationChartComponent extends AccumulationChart {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<AccumulationChartModel | DefaultHtmlAttributes| AccumulationChartTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class AccumulationChartComponent extends AccumulationChart {
3738
}
3839

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

components/charts/src/bullet-chart/bulletchart.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class BulletChartComponent extends BulletChart {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<BulletChartModel | DefaultHtmlAttributes| BulletChartTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class BulletChartComponent extends BulletChart {
3738
}
3839

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

components/charts/src/chart/chart.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class ChartComponent extends Chart {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<ChartModel | DefaultHtmlAttributes| ChartTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class ChartComponent extends Chart {
3738
}
3839

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

components/charts/src/chart3d/chart3d.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class Chart3DComponent extends Chart3D {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<Chart3DModel | DefaultHtmlAttributes| Chart3DTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class Chart3DComponent extends Chart3D {
3738
}
3839

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

components/charts/src/circularchart3d/circularchart3d.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class CircularChart3DComponent extends CircularChart3D {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<CircularChart3DModel | DefaultHtmlAttributes| CircularChart3DTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class CircularChart3DComponent extends CircularChart3D {
3738
}
3839

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

components/charts/src/range-navigator/rangenavigator.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class RangeNavigatorComponent extends RangeNavigator {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<RangeNavigatorModel | DefaultHtmlAttributes| RangeNavigatorTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class RangeNavigatorComponent extends RangeNavigator {
3738
}
3839

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

components/charts/src/smithchart/smithchart.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class SmithchartComponent extends Smithchart {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = true;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<SmithchartModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class SmithchartComponent extends Smithchart {
3536
}
3637

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

components/charts/src/sparkline/sparkline.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class SparklineComponent extends Sparkline {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = true;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<SparklineModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class SparklineComponent extends Sparkline {
3536
}
3637

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

components/charts/src/stock-chart/stockchart.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class StockChartComponent extends StockChart {
2323
private statelessTemplateProps: string[] = null;
2424
private templateProps: string[] = null;
2525
private immediateRender: boolean = false;
26+
private isReactMock: boolean = true;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<StockChartModel | DefaultHtmlAttributes| StockChartTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class StockChartComponent extends StockChart {
3738
}
3839

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

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.1.55 (2024-10-22)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I635721` - The undo and redo actions work during swimlane deletion, even when the swimlane's delete constraint is disabled.
12+
- `#I638627` - The tooltip for the annotation is now visible when the text overflow is set to Ellipsis or Clip.
13+
514
## 27.1.53 (2024-10-15)
615

716
### Diagram

components/diagrams/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-diagrams",
3-
"version": "27.1.52",
3+
"version": "27.1.53",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/src/diagram/diagram.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class DiagramComponent extends Diagram {
2525
private statelessTemplateProps: string[] = null;
2626
private templateProps: string[] = null;
2727
private immediateRender: boolean = false;
28+
private isReactMock: boolean = true;
2829
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2930
& Readonly<DiagramModel | DefaultHtmlAttributes| DiagramTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class DiagramComponent extends Diagram {
3940
}
4041

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

components/diagrams/src/overview/overview.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class OverviewComponent extends Overview {
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<OverviewModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class OverviewComponent extends Overview {
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/diagrams/src/symbol-palette/symbolpalette.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class SymbolPaletteComponent extends SymbolPalette {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = true;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<SymbolPaletteModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class SymbolPaletteComponent extends SymbolPalette {
3536
}
3637

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

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 27.1.55 (2024-10-22)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I636914` - Now track changes working as expected when using collaboration.
12+
- `#I641336` - Resolved the text overlap issue in document uploading.
13+
- `#I636876` - Now script error does not get thrown when unmounting the DocumentEditor with collaboration.
14+
- `#I638548` - Resolved the issue of document stays loading.
15+
- `#I637068` - Now proper font family is updated for splitted Chinese text.
16+
- `#I618565` - Now text get highlighted properly if user clicks on comment.
17+
518
## 27.1.53 (2024-10-15)
619

720
### DocumentEditor
@@ -24,6 +37,9 @@
2437
- `#I632911` - Resolved console warning for missing modules in document editor.
2538
- `#I630998` - Now able to add text after a content control when no other element is next to it.
2639
- `#I622732` - Resolved script error while delete content after search text.
40+
- `#I624123` - Resolved the footnote overlap with table issue in document editor.
41+
- `#I635035` - Now Content control has been exported properly in document editor.
42+
- `#I633148` - Resolved the issue multiple spell check triggered when inserting text.
2743

2844
#### Features
2945

0 commit comments

Comments
 (0)