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

+1-1
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

+2
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

+2
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

+2
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

+1-1
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

+16-1
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

+1-1
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

+8
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

+2
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

+13-1
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

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-diagrams",
3-
"version": "27.1.53",
3+
"version": "27.1.55",
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/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 27.1.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I644412` - Resolved the issue of editor deletes all text in document.
12+
- `#I642436` - Resolve the issue with track Changes when pasting Word contents multiple times.
13+
- `F194706` - Now able to copy highlighted text from word processor when Restrict Editing property is true.
14+
- `#I640675` - Resolve script error when using track changes.
15+
- `#I639276` - Resolved the issue of page freezes when trying to load document in document editor.
16+
17+
## 27.1.55 (2024-10-22)
618

719
### DocumentEditor
820

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-documenteditor",
3-
"version": "27.1.53",
3+
"version": "27.1.55",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,33 @@
22

33
## [Unreleased]
44

5-
## 27.1.56 (2024-10-23)
5+
## 27.1.57 (2024-10-29)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#I640083` - The issue causing a console error after selecting a value and subsequently emptying the datasource upon button click has been resolved.
12+
13+
### DropDownTree
14+
15+
- `I639573` - Resolved issues with selected items and the checked state of the parent node when filtering in the Dropdown Tree component.
16+
17+
### DropdownList
18+
19+
#### Bug Fixes
20+
21+
- `#I612750` - Fixed an issue where updateData was throwing an error when filtering in a DropDownList.
22+
23+
## 27.1.55 (2024-10-22)
24+
25+
### MultiSelect
26+
27+
#### Bug Fixes
28+
29+
- `#I639732` - Fixed an issue where removing one item using the cross icon caused all options to be removed from the select element in the DOM.
30+
31+
## 27.1.53 (2024-10-15)
632

733
### ListBox
834

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-dropdowns",
3-
"version": "27.1.52",
3+
"version": "27.1.55",
44
"description": "Essential JS 2 DropDown Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/src/auto-complete/autocomplete.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class AutoCompleteComponent extends AutoComplete {
2525
private statelessTemplateProps: string[] = ["headerTemplate","itemTemplate"];
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<AutoCompleteModel | DefaultHtmlAttributes| AutoCompleteTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class AutoCompleteComponent extends AutoComplete {
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/dropdowns/src/combo-box/combobox.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class ComboBoxComponent extends ComboBox {
2525
private statelessTemplateProps: string[] = ["headerTemplate","itemTemplate"];
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<ComboBoxModel | DefaultHtmlAttributes| ComboBoxTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class ComboBoxComponent extends ComboBox {
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/dropdowns/src/drop-down-list/dropdownlist.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class DropDownListComponent extends DropDownList {
2626
private statelessTemplateProps: string[] = ["headerTemplate","valueTemplate","itemTemplate"];
2727
private templateProps: string[] = null;
2828
private immediateRender: boolean = false;
29+
private isReactMock: boolean = true;
2930
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
3031
& Readonly<DropDownListModel | DefaultHtmlAttributes| DropDownListTypecast>;
3132
public forceUpdate: (callBack?: () => any) => void;
@@ -40,6 +41,7 @@ export class DropDownListComponent extends DropDownList {
4041
}
4142

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

components/dropdowns/src/drop-down-tree/dropdowntree.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class DropDownTreeComponent extends DropDownTree {
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<DropDownTreeModel | DefaultHtmlAttributes| DropDownTreeTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class DropDownTreeComponent extends DropDownTree {
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/dropdowns/src/list-box/listbox.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class ListBoxComponent extends ListBox {
2222
private statelessTemplateProps: string[] = null;
2323
private templateProps: string[] = null;
2424
private immediateRender: boolean = false;
25+
private isReactMock: boolean = true;
2526
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2627
& Readonly<ListBoxModel | DefaultHtmlAttributes| ListBoxTypecast>;
2728
public forceUpdate: (callBack?: () => any) => void;
@@ -36,6 +37,7 @@ export class ListBoxComponent extends ListBox {
3637
}
3738

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

components/dropdowns/src/mention/mention.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class MentionComponent extends Mention {
2424
private statelessTemplateProps: string[] = ["itemTemplate"];
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<MentionModel | DefaultHtmlAttributes| MentionTypecast>;
2930
public forceUpdate: (callBack?: () => any) => void;
@@ -38,6 +39,7 @@ export class MentionComponent extends Mention {
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/dropdowns/src/multi-select/multiselect.component.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class MultiSelectComponent extends MultiSelect {
2626
private statelessTemplateProps: string[] = ["headerTemplate","valueTemplate","itemTemplate"];
2727
private templateProps: string[] = null;
2828
private immediateRender: boolean = false;
29+
private isReactMock: boolean = true;
2930
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
3031
& Readonly<MultiSelectModel | DefaultHtmlAttributes| MultiSelectTypecast>;
3132
public forceUpdate: (callBack?: () => any) => void;
@@ -40,6 +41,7 @@ export class MultiSelectComponent extends MultiSelect {
4041
}
4142

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

components/filemanager/CHANGELOG.md

+1-1
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
### FileManager
88

components/gantt/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## [Unreleased]
44

5+
## 27.1.57 (2024-10-29)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#I642434` - `recordIndex` property is updating last index for every above or below add action via `contextMenu` issue has been fixed.
12+
- `#I646826` - An invalid resource collection is being passed resulting in a script error issue has been fixed.
13+
- `#I637870` - White space when expand and collapse action issue has been fixed.
14+
15+
- `#I646826` - An invalid resource collection is being passed resulting in a script error issue has been fixed.
16+
- `#I637870` - White space when expand and collapse action issue has been fixed.
17+
18+
## 27.1.56 (2024-10-23)
19+
20+
### GanttChart
21+
22+
#### Bug fixes
23+
24+
- `#I645245` - Console error occurs while taskbar editing without `allowEditing` property issue has been fixed.
25+
526
## 27.1.55 (2024-10-22)
627

728
### GanttChart

components/gantt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-gantt",
3-
"version": "27.1.55",
3+
"version": "27.1.56",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)