Skip to content

Commit 0ecb9d2

Browse files
author
pipeline
committed
v27.1.56 is released
1 parent 4a59ddd commit 0ecb9d2

File tree

52 files changed

+109
-34
lines changed

Some content is hidden

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

52 files changed

+109
-34
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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
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.55 (2024-10-22)
5+
## 27.1.53 (2024-10-15)
66

77
### Checkbox
88

components/buttons/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-buttons",
3-
"version": "27.1.51",
3+
"version": "27.1.53",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/buttons/src/button/button.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class ButtonComponent extends Button {
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<ButtonModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class ButtonComponent extends Button {
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/buttons/src/check-box/checkbox.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class CheckBoxComponent extends CheckBox {
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<CheckBoxModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class CheckBoxComponent extends CheckBox {
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/buttons/src/chips/chiplist.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class ChipListComponent extends ChipList {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = false;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<ChipListModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class ChipListComponent extends ChipList {
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/buttons/src/floating-action-button/fab.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class FabComponent extends Fab {
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<FabModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class FabComponent extends Fab {
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/buttons/src/radio-button/radiobutton.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class RadioButtonComponent extends RadioButton {
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<RadioButtonModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class RadioButtonComponent extends RadioButton {
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/buttons/src/smart-paste-button/smartpastebutton.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class SmartPasteButtonComponent extends SmartPasteButton {
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<SmartPasteButtonModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class SmartPasteButtonComponent extends SmartPasteButton {
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/buttons/src/speed-dial/speeddial.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class SpeedDialComponent extends SpeedDial {
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<SpeedDialModel | DefaultHtmlAttributes| SpeedDialTypecast>;
2930
public forceUpdate: (callBack?: () => any) => void;
@@ -38,6 +39,7 @@ export class SpeedDialComponent extends SpeedDial {
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/buttons/src/switch/switch.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class SwitchComponent extends Switch {
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<SwitchModel | DefaultHtmlAttributes>;
2526
public forceUpdate: (callBack?: () => any) => void;
@@ -34,6 +35,7 @@ export class SwitchComponent extends Switch {
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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### DateTimePicker
88

components/charts/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### Chart
88

components/diagrams/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### Diagram
88

components/documenteditor/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### DocumentEditor
88

components/dropdowns/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### ListBox
88

components/filemanager/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### FileManager
88

components/gantt/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- `#I639460` - Console error occurred when clicking `fittoproject` issue has been fixed.
1212
- `#I643327` - Custom zooming levels using virtual mode throw a script error when zooming in and out issue has been fixed.
1313
- `#I641833` - Console error occurs while exporting pdf with empty data and critical path issue has been fixed.
14+
- `#I639036` - `columnMenuItems` property shows an error when assigning AutoFit and `AutoFitAll` issue has been fixed.
1415
- `#I637794`,`#I637841` - Pdf export issue with baselines not working properly issue has been fixed.
1516

1617
- `#I639460` - Console error occurred when clicking `fittoproject` issue has been fixed.

components/gantt/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-gantt",
3-
"version": "27.1.53",
3+
"version": "27.1.55",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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-grids",
3-
"version": "27.1.53",
3+
"version": "27.1.55",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/imageeditor/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### Image Editor
88

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

77
### AI AssistView
88

components/interactivechat/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-interactive-chat",
3-
"version": "27.1.50",
3+
"version": "27.1.53",
44
"description": "Essential JS 2 Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/interactivechat/src/ai-assist-view/aiassistview.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export class AIAssistViewComponent extends AIAssistView {
2727
private statelessTemplateProps: string[] = null;
2828
private templateProps: string[] = null;
2929
private immediateRender: boolean = false;
30+
private isReactMock: boolean = true;
3031
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
3132
& Readonly<AIAssistViewModel | DefaultHtmlAttributes| AIAssistViewTypecast>;
3233
public forceUpdate: (callBack?: () => any) => void;
@@ -41,6 +42,7 @@ export class AIAssistViewComponent extends AIAssistView {
4142
}
4243

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

components/kanban/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.55 (2024-10-22)
5+
## 27.1.56 (2024-10-23)
66

77
### Kanban
88

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

77
### DashboardLayout
88

components/layouts/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-layouts",
3-
"version": "27.1.51",
3+
"version": "27.1.53",
44
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/layouts/src/dashboard-layout/dashboardlayout.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class DashboardLayoutComponent extends DashboardLayout {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = false;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<DashboardLayoutModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class DashboardLayoutComponent extends DashboardLayout {
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/layouts/src/splitter/splitter.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class SplitterComponent extends Splitter {
2121
private statelessTemplateProps: string[] = null;
2222
private templateProps: string[] = null;
2323
private immediateRender: boolean = false;
24+
private isReactMock: boolean = true;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<SplitterModel | DefaultHtmlAttributes>;
2627
public forceUpdate: (callBack?: () => any) => void;
@@ -35,6 +36,7 @@ export class SplitterComponent extends Splitter {
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/layouts/src/timeline/timeline.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class TimelineComponent extends Timeline {
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<TimelineModel | DefaultHtmlAttributes| TimelineTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class TimelineComponent extends Timeline {
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/maps/CHANGELOG.md

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

99
## [Unreleased]
1010

11-
## 27.1.55 (2024-10-22)
11+
## 27.1.56 (2024-10-23)
1212

1313
### Maps
1414

components/multicolumncombobox/src/multicolumn-combobox/multicolumncombobox.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export class MultiColumnComboBoxComponent extends MultiColumnComboBox {
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<MultiColumnComboBoxModel | DefaultHtmlAttributes| MultiColumnComboBoxTypecast>;
3031
public forceUpdate: (callBack?: () => any) => void;
@@ -39,6 +40,7 @@ export class MultiColumnComboBoxComponent extends MultiColumnComboBox {
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/navigations/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.56 (2024-10-23)
6+
7+
### Breadcrumb
8+
9+
#### Bug Fixes
10+
11+
- `#I916680` - The issue with "Breadcrumb menu popup not destroyed after breadcrumb element destroyed" has been resolved.
12+
513
## 27.1.55 (2024-10-22)
614

715
### Stepper

components/navigations/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-navigations",
3-
"version": "27.1.53",
3+
"version": "27.1.55",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)