Skip to content

Commit b4e2968

Browse files
author
pipeline
committed
v27.1.57 is released
1 parent 0ecb9d2 commit b4e2968

Some content is hidden

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

56 files changed

+300
-40
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.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
66

77
### Barcode
88

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class BarcodeGeneratorComponent extends BarcodeGenerator {
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<BarcodeGeneratorModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class BarcodeGeneratorComponent extends BarcodeGenerator {
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/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class DataMatrixGeneratorComponent extends DataMatrixGenerator {
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<DataMatrixGeneratorModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class DataMatrixGeneratorComponent extends DataMatrixGenerator {
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/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class QRCodeGeneratorComponent extends QRCodeGenerator {
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<QRCodeGeneratorModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class QRCodeGeneratorComponent extends QRCodeGenerator {
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/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.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
66

77
### DateTimePicker
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 27.1.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I640035` - The tooltips now render properly for decimal data points.
12+
- `#I645981` - The stripline now works correctly on the logarithmic axis.
13+
14+
### Stock Chart
15+
16+
#### Bug Fixes
17+
18+
- `#F194807` - The series now renders properly after a data source update and legend toggle.
19+
20+
## 27.1.55 (2024-10-22)
621

722
### Chart
823

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.53",
3+
"version": "27.1.55",
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/circulargauge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
## [Unreleased]
66

7+
## 27.1.57 (2024-10-29)
8+
9+
### Circular Gauge
10+
11+
#### Bug fixes
12+
13+
`#I640295` - Exceptions will no longer be thrown when the pointer is dragged and the pointer value is updated during the `dragEnd` event.
14+
715
## 27.1.50 (2024-09-24)
816

917
### Circular Gauge

components/circulargauge/src/circular-gauge/circulargauge.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class CircularGaugeComponent extends CircularGauge {
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<CircularGaugeModel | DefaultHtmlAttributes| CircularGaugeTypecast>;
2829
public forceUpdate: (callBack?: () => any) => void;
@@ -37,6 +38,7 @@ export class CircularGaugeComponent extends CircularGauge {
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: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,26 @@
22

33
## [Unreleased]
44

5-
## 27.1.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I637156` - Tooltip now displays properly on mobile devices with touch interactions.
12+
- `#I637207` - Nodes are now resizable via touch interactions.
13+
- `#I639121` - The gradient background of the node is now properly preserved when exporting the diagram as an SVG
14+
- `#F194691` - The Position Change Event Now Triggers on Keyboard Nudging.
15+
16+
## 27.1.55 (2024-10-22)
617

718
### Diagram
819

920
#### Bug Fixes
1021

1122
- `#I635721` - The undo and redo actions work during swimlane deletion, even when the swimlane's delete constraint is disabled.
1223
- `#I638627` - The tooltip for the annotation is now visible when the text overflow is set to Ellipsis or Clip.
24+
- `#I595572`, `#I632276` - The undefined exception will no longer be thrown when moving a node with Line Routing enabled.
1325

1426
## 27.1.53 (2024-10-15)
1527

0 commit comments

Comments
 (0)