Skip to content

Commit 97b8ece

Browse files
author
pipeline
committed
v21.2.3 is released
1 parent 28767fa commit 97b8ece

Some content is hidden

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

44 files changed

+232
-22
lines changed

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 21.1.41 (2023-04-18)
5+
## 21.2.3 (2023-05-03)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#I456259` - provided the `role` attribute support to `htmlAttributes` property of switch component.
12+
13+
## 21.1.37 (2023-03-29)
614

715
### Checkbox
816

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": "18.58.0",
3+
"version": "21.1.37",
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class ButtonComponent extends Button {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = false;
2020
private statelessTemplateProps: string[] = null;
21+
private templateProps: string[] = null;
2122
private immediateRender: boolean = true;
2223
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2324
& Readonly<ButtonModel & DefaultHtmlAttributes>;

components/buttons/src/check-box/checkbox.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class CheckBoxComponent extends CheckBox {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = false;
2020
private statelessTemplateProps: string[] = null;
21+
private templateProps: string[] = null;
2122
private immediateRender: boolean = true;
2223
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2324
& Readonly<CheckBoxModel & DefaultHtmlAttributes>;

components/buttons/src/chips/chiplist.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export class ChipListComponent extends ChipList {
1919
private checkInjectedModules: boolean = false;
2020
public directivekeys: { [key: string]: Object } = {'chips': 'chip'};
2121
private statelessTemplateProps: string[] = null;
22+
private templateProps: string[] = null;
2223
private immediateRender: boolean = false;
2324
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2425
& Readonly<ChipListModel & DefaultHtmlAttributes>;

components/buttons/src/floating-action-button/fab.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class FabComponent extends Fab {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = false;
2020
private statelessTemplateProps: string[] = null;
21+
private templateProps: string[] = null;
2122
private immediateRender: boolean = true;
2223
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2324
& Readonly<FabModel & DefaultHtmlAttributes>;

components/buttons/src/radio-button/radiobutton.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class RadioButtonComponent extends RadioButton {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = false;
2020
private statelessTemplateProps: string[] = null;
21+
private templateProps: string[] = null;
2122
private immediateRender: boolean = true;
2223
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2324
& Readonly<RadioButtonModel & DefaultHtmlAttributes>;

components/buttons/src/speed-dial/speeddial.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class SpeedDialComponent extends SpeedDial {
2222
private checkInjectedModules: boolean = false;
2323
public directivekeys: { [key: string]: Object } = {'speedDialItems': 'speedDialItem'};
2424
private statelessTemplateProps: string[] = null;
25+
private templateProps: string[] = null;
2526
private immediateRender: boolean = false;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<SpeedDialModel & DefaultHtmlAttributes| SpeedDialTypecast>;

components/buttons/src/switch/switch.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class SwitchComponent extends Switch {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = false;
2020
private statelessTemplateProps: string[] = null;
21+
private templateProps: string[] = null;
2122
private immediateRender: boolean = true;
2223
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2324
& Readonly<SwitchModel & DefaultHtmlAttributes>;

components/calendars/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-calendars",
3-
"version": "21.1.38",
3+
"version": "21.1.41",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)