Skip to content

Commit 885a727

Browse files
author
pipeline
committed
v21.1.39 is released
1 parent 783dcac commit 885a727

Some content is hidden

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

48 files changed

+200
-19
lines changed

components/base/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-base",
3-
"version": "21.1.37",
3+
"version": "21.1.38",
44
"description": "A common package of Essential JS 2 React base, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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-
## 21.1.38 (2023-04-04)
5+
## 21.1.39 (2023-04-11)
66

77
### Checkbox
88

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-
## 21.1.38 (2023-04-04)
5+
## 21.1.39 (2023-04-11)
66

77
### DatePicker
88

components/charts/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 21.1.39 (2023-04-11)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I451537` - Now, the column chart rectangle is properly rendering for OnTicks.
12+
- `#I452148` - The chart now renders correctly even when the x value is set to an empty string in the data source.
13+
514
## 21.1.38 (2023-04-04)
615

716
### Chart

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": "21.1.37",
3+
"version": "21.1.38",
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/charts/src/accumulation-chart/accumulationchart.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class AccumulationChartComponent extends AccumulationChart {
2121
private checkInjectedModules: boolean = true;
2222
public directivekeys: { [key: string]: Object } = {'accumulationSeriesCollection': 'accumulationSeries', 'accumulationAnnotations': 'accumulationAnnotation'};
2323
private statelessTemplateProps: string[] = null;
24+
private templateProps: string[] = null;
2425
private immediateRender: boolean = false;
2526
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2627
& Readonly<AccumulationChartModel & DefaultHtmlAttributes| AccumulationChartTypecast>;

components/charts/src/bullet-chart/bulletchart.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class BulletChartComponent extends BulletChart {
2121
private checkInjectedModules: boolean = true;
2222
public directivekeys: { [key: string]: Object } = {'bulletRangeCollection': 'bulletRange'};
2323
private statelessTemplateProps: string[] = null;
24+
private templateProps: string[] = null;
2425
private immediateRender: boolean = false;
2526
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2627
& Readonly<BulletChartModel & DefaultHtmlAttributes| BulletChartTypecast>;

components/charts/src/chart/chart.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class ChartComponent extends Chart {
2121
private checkInjectedModules: boolean = true;
2222
public directivekeys: { [key: string]: Object } = {'seriesCollection': {'series': {'trendlines': 'trendline', 'segments': 'segment'}}, 'axes': {'axis': {'stripLines': 'stripLine', 'multiLevelLabels': {'multiLevelLabel': {'categories': 'category'}}}}, 'rows': 'row', 'columns': 'column', 'rangeColorSettings': 'rangeColorSetting', 'annotations': 'annotation', 'selectedDataIndexes': 'selectedDataIndex', 'indicators': 'indicator'};
2323
private statelessTemplateProps: string[] = null;
24+
private templateProps: string[] = null;
2425
private immediateRender: boolean = false;
2526
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2627
& Readonly<ChartModel & DefaultHtmlAttributes| ChartTypecast>;

components/charts/src/range-navigator/rangenavigator.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class RangeNavigatorComponent extends RangeNavigator {
2121
private checkInjectedModules: boolean = true;
2222
public directivekeys: { [key: string]: Object } = {'rangenavigatorSeriesCollection': 'rangenavigatorSeries'};
2323
private statelessTemplateProps: string[] = null;
24+
private templateProps: string[] = null;
2425
private immediateRender: boolean = false;
2526
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2627
& Readonly<RangeNavigatorModel & DefaultHtmlAttributes| RangeNavigatorTypecast>;

components/charts/src/smithchart/smithchart.component.tsx

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

0 commit comments

Comments
 (0)