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;

0 commit comments

Comments
 (0)