Skip to content

Commit 783dcac

Browse files
author
pipeline
committed
v21.1.38 is released
1 parent ab44171 commit 783dcac

File tree

90 files changed

+228
-59
lines changed

Some content is hidden

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

90 files changed

+228
-59
lines changed

components/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 21.1.38 (2023-04-04)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I432022` - The issue with "Grid sends multiple requests if the `childGrid` has events" has been resolved.
12+
513
## 21.1.37 (2023-03-29)
614

715
### Common

components/base/src/component-base.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
334334
let status: boolean = true;
335335
let lenSimilarity: boolean = (oldProps.length === newProps.length);
336336
let diffArray: Changes[] = [];
337+
var templateProps = !isNullOrUndefined(this['templateProps']) ? this['templateProps'] : [];
337338
if (lenSimilarity) {
338339
for (let i = 0, len = newProps.length; i < len; i++) {
339340
let curObj: { [key: string]: Object } = {};
@@ -354,7 +355,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
354355
if (this.getModuleName()=== 'grid' && key === 'field') {
355356
curObj[`${key}`] = newValue;
356357
}
357-
if (!oldProp.hasOwnProperty(key) || !this.compareValues(oldValue, newValue)) {
358+
if (!oldProp.hasOwnProperty(key) || !((templateProps.length > 0 && templateProps.indexOf(`${key}`) === -1 && typeof(newValue) === 'function') ? this.compareValues(oldValue.toString(), newValue.toString()) : this.compareValues(oldValue, newValue))) {
358359
if (!propName) {
359360
return { status: false };
360361
}

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 21.1.37 (2023-03-29)
5+
## 21.1.38 (2023-04-04)
66

77
### Checkbox
88

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 21.1.37 (2023-03-29)
5+
## 21.1.38 (2023-04-04)
66

77
### DatePicker
88

components/calendars/src/calendar/calendar.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class CalendarComponent extends Calendar {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<CalendarModel & DefaultHtmlAttributes>;

components/calendars/src/datepicker/datepicker.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class DatePickerComponent extends DatePicker {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<DatePickerModel & DefaultHtmlAttributes>;

components/calendars/src/daterangepicker/daterangepicker.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class DateRangePickerComponent extends DateRangePicker {
2222
private checkInjectedModules: boolean = false;
2323
public directivekeys: { [key: string]: Object } = {'presets': 'preset'};
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<DateRangePickerModel & DefaultHtmlAttributes| DateRangePickerTypecast>;

components/calendars/src/datetimepicker/datetimepicker.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class DateTimePickerComponent extends DateTimePicker {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<DateTimePickerModel & DefaultHtmlAttributes>;

components/calendars/src/timepicker/timepicker.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class TimePickerComponent extends TimePicker {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<TimePickerModel & DefaultHtmlAttributes>;

components/charts/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 21.1.38 (2023-04-04)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I449076` - Data labels are now displayed properly in the HiloOpenClose chart.
12+
- `#I444669` - Line width of the series is now updating properly while using useState method.
13+
- `#I444557` - Legend is now rendering properly on the top position without overlapping with axis label.
14+
515
## 21.1.35 (2023-03-23)
616

717
### Chart

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": "20.9.12",
3+
"version": "21.1.37",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## [Unreleased]
77

8-
## 21.1.37 (2023-03-29)
8+
## 21.1.38 (2023-04-04)
99

1010
### Circular Gauge
1111

components/diagrams/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- `#F180478` - Now, the performance of diagram while enabling virtualization is improved.
2727
- `#F180478` - Now, Overview is updated properly while enabling virtualization.
2828
- `#I422299` - Now, swimlane child nodes is selectable after save and load.
29+
- `#I437322` - Now, drag the connector end thumb is working, while we increase handleSize value.
2930
- `#I436649` - Now, connector segment does not get split into multiple segment for top to bottom approach.
3031
- `#I440967` - Now, Free hand connector segment collection restored after save and load the diagram.
3132
- `#I441075` - Now, position change event does not get triggered while click on the swimlane header.

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": "19.14.9",
3+
"version": "21.1.37",
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/diagrams/src/diagram/diagram.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class DiagramComponent extends Diagram {
2323
private checkInjectedModules: boolean = true;
2424
public directivekeys: { [key: string]: Object } = {'layers': 'layer', 'customCursors': 'customCursor', 'connectors': {'connector': {'connectorFixedUserHandles': 'connectorFixedUserHandle', 'connectorAnnotations': 'connectorAnnotation'}}, 'nodes': {'node': {'nodeFixedUserHandles': 'nodeFixedUserHandle', 'nodeAnnotations': 'nodeAnnotation', 'ports': 'port'}}};
2525
private statelessTemplateProps: string[] = null;
26+
private templateProps: string[] = null;
2627
private immediateRender: boolean = false;
2728
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2829
& Readonly<DiagramModel & DefaultHtmlAttributes| DiagramTypecast>;

components/diagrams/src/overview/overview.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class OverviewComponent extends Overview {
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<OverviewModel & DefaultHtmlAttributes>;

components/diagrams/src/symbol-palette/symbolpalette.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export class SymbolPaletteComponent extends SymbolPalette {
1919
private checkInjectedModules: boolean = true;
2020
public directivekeys: { [key: string]: Object } = {'palettes': 'palette'};
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<SymbolPaletteModel & DefaultHtmlAttributes>;

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.38 (2023-04-04)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#SF-440282` - Resolved an error while trying to change font for whole document.
12+
- `#SF-441499` - Resolved the script error while opening Document.
13+
- `#SF-438842` - Header/Footer area are now resized based on the inserted image.
14+
- `#SF-441437` - Resolved the dropdown form field items expanding issue.
15+
16+
#### New Features
17+
18+
- `#I418721` - Added API to auto resize when the Document editor became visible.
19+
520
## 21.1.37 (2023-03-29)
621

722
### Document Editor
@@ -14,20 +29,6 @@
1429
- `#I436445` - Resolved the overlapping issue while opening the document.
1530
- `#I446019` - Resolved the issue in opening "Dotx" format document.
1631

17-
- `#425697` - Resolved the positioning and line spacing issue in shape document
18-
19-
#### Breaking Changes
20-
21-
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/react/documentation/document-editor/how-to/optimize-sfdt).
22-
23-
#### New Features
24-
25-
- `#I249004`, `#I250933`, `#I256703`, `#I286287`, `#I290760`, `#I301513`, `#I313194`, `#I314827`, `#I316496`, `#I317964`, `#I320201`, `#I320872`, `#I327636`, `#I331310`, `#I333899`, `#I334058`, `#I334929`, `#I337202`, `#I341931`, `#I341953`, `#I345929`, `#I348344`, `#I349206`, `#I349683`, `#I349895`, `#I354081`, `#I356432` - Added support for continuous section break in DocumentEditor.
26-
- `#I422408`, `#I435125` - Optimized SFDT file to reduce the file size relative to a Docx file.
27-
- `#I330729`, `#I256794` - Added support to display bookmark start and end in DocumentEditor.
28-
- `#I333042`, `#I349829` - Added support disable the auto focus to DocumentEditor.
29-
- `#I175038` - Added API to modify the predefine styles in DocumentEditor.
30-
3132
## 21.1.35 (2023-03-23)
3233

3334
### Document Editor
@@ -36,6 +37,8 @@
3637

3738
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/documentation/document-editor/how-to/optimize-sfdt).
3839

40+
- Starting from version v21.1.x, the SFDT file generated in Word Processor component is optimized by default to reduce the file size. Hence, the optimized SFDT files can't be directly manipulated as JSON string. Please refer the [documentation](https://ej2.syncfusion.com/react/documentation/document-editor/how-to/optimize-sfdt).
41+
3942
#### Bug Fixes
4043

4144
- `#425697` - Resolved the positioning and line spacing issue in shape document

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": "19.61.0",
3+
"version": "21.1.37",
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/documenteditor/src/document-editor-container/documenteditorcontainer.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class DocumentEditorContainerComponent extends DocumentEditorContainer {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<DocumentEditorContainerModel & DefaultHtmlAttributes>;

components/documenteditor/src/document-editor/documenteditor.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class DocumentEditorComponent extends DocumentEditor {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<DocumentEditorModel & DefaultHtmlAttributes>;

components/dropdowns/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 21.1.38 (2023-04-04)
6+
7+
### Dropdown Tree
8+
9+
#### Bug Fixes
10+
11+
- `#I450984` - Resolved issue, when manually select the all items then `SelectAll` state not updated for the Dropdown Tree component.
12+
513
## 21.1.37 (2023-03-29)
614

715
### Mention

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": "21.1.35",
3+
"version": "21.1.37",
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

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class AutoCompleteComponent extends AutoComplete {
2323
public initRenderCalled: boolean = false;
2424
private checkInjectedModules: boolean = false;
2525
private statelessTemplateProps: string[] = ["headerTemplate","itemTemplate"];
26+
private templateProps: string[] = null;
2627
private immediateRender: boolean = false;
2728
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2829
& Readonly<AutoCompleteModel & DefaultHtmlAttributes| AutoCompleteTypecast>;

components/dropdowns/src/combo-box/combobox.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class ComboBoxComponent extends ComboBox {
2323
public initRenderCalled: boolean = false;
2424
private checkInjectedModules: boolean = false;
2525
private statelessTemplateProps: string[] = ["headerTemplate","itemTemplate"];
26+
private templateProps: string[] = null;
2627
private immediateRender: boolean = false;
2728
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2829
& Readonly<ComboBoxModel & DefaultHtmlAttributes| ComboBoxTypecast>;

components/dropdowns/src/drop-down-list/dropdownlist.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class DropDownListComponent extends DropDownList {
2424
public initRenderCalled: boolean = false;
2525
private checkInjectedModules: boolean = false;
2626
private statelessTemplateProps: string[] = ["headerTemplate","valueTemplate","itemTemplate"];
27+
private templateProps: string[] = null;
2728
private immediateRender: boolean = false;
2829
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2930
& Readonly<DropDownListModel & DefaultHtmlAttributes| DropDownListTypecast>;

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

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class DropDownTreeComponent extends DropDownTree {
2222
public initRenderCalled: boolean = false;
2323
private checkInjectedModules: boolean = false;
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<DropDownTreeModel & DefaultHtmlAttributes| DropDownTreeTypecast>;

components/dropdowns/src/list-box/listbox.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export class ListBoxComponent extends ListBox {
2020
public initRenderCalled: boolean = false;
2121
private checkInjectedModules: boolean = true;
2222
private statelessTemplateProps: string[] = ["itemTemplate"];
23+
private templateProps: string[] = null;
2324
private immediateRender: boolean = false;
2425
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2526
& Readonly<ListBoxModel & DefaultHtmlAttributes| ListBoxTypecast>;

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

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export class MentionComponent extends Mention {
2222
public initRenderCalled: boolean = false;
2323
private checkInjectedModules: boolean = false;
2424
private statelessTemplateProps: string[] = ["itemTemplate"];
25+
private templateProps: string[] = null;
2526
private immediateRender: boolean = false;
2627
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2728
& Readonly<MentionModel & DefaultHtmlAttributes| MentionTypecast>;

components/dropdowns/src/multi-select/multiselect.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export class MultiSelectComponent extends MultiSelect {
2424
public initRenderCalled: boolean = false;
2525
private checkInjectedModules: boolean = true;
2626
private statelessTemplateProps: string[] = ["headerTemplate","valueTemplate","itemTemplate"];
27+
private templateProps: string[] = null;
2728
private immediateRender: boolean = false;
2829
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
2930
& Readonly<MultiSelectModel & DefaultHtmlAttributes| MultiSelectTypecast>;

components/filemanager/package.json

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

components/filemanager/src/file-manager/filemanager.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class FileManagerComponent extends FileManager {
1818
public initRenderCalled: boolean = false;
1919
private checkInjectedModules: boolean = true;
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<FileManagerModel & DefaultHtmlAttributes>;

components/gantt/CHANGELOG.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,30 @@
22

33
## [Unreleased]
44

5-
## 21.1.37 (2023-03-29)
5+
## 21.1.38 (2023-04-04)
66

77
### Gantt Chart
88

99
#### Bug Fixes
1010

11-
-`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
12-
-`I435254`, `I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
11+
- `#I451243` - Unable to set zooming levels through `zoomingLevels` property issue has been fixed.
12+
- `#I447704` - Timeline tier is not changing dynamically issue has been fixed.
13+
- `I447465` - Incorrect progress value on parent task when child tasks have fractional duration issue has been fixed.
14+
- -`I447475`- End key is not working properly issue has been fixed.
15+
- -`#I447772` - Application freezing while changing holidays/weekend issue has been fixed.
16+
17+
- `I447465` - Incorrect progress value on parent task when child tasks have fractional duration issue has been fixed.
18+
- -`I447475`- End key is not working properly issue has been fixed.
19+
20+
## 21.1.37 (2023-03-29)
21+
22+
### Gantt Chart
23+
24+
#### Bug Fixes
1325

26+
- `#I432146` - Script error occurs while changing data source and resource simultaneously issue has been fixed.
27+
- -`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
28+
- -`I435254`, `I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
1429

1530
-`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
1631
-`I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.

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

components/gantt/src/gantt/gantt.component.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export class GanttComponent extends Gantt {
3030
private checkInjectedModules: boolean = true;
3131
public directivekeys: { [key: string]: Object } = {'columns': 'column', 'addDialogFields': 'addDialogField', 'editDialogFields': 'editDialogField', 'dayWorkingTimeCollection': 'dayWorkingTime', 'holidays': 'holiday', 'eventMarkers': 'eventMarker'};
3232
private statelessTemplateProps: string[] = null;
33+
private templateProps: string[] = null;
3334
private immediateRender: boolean = false;
3435
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
3536
& Readonly<GanttModel & DefaultHtmlAttributes| GanttTypecast>;

0 commit comments

Comments
 (0)