This commit is contained in:
pipeline 2022-10-26 13:06:19 +00:00
Родитель 51b1f954c8
Коммит b1f1a28774
34 изменённых файлов: 119 добавлений и 32 удалений

Просмотреть файл

@ -2,7 +2,16 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Common
#### Bug Fixes
- `#I412969` - Component tags boolean property not updated properly in Angular 9.
- `#I411249` - Resolved the script error throwing in complex array base.
## 20.3.47 (2022-09-29)
### Common

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-base",
"version": "19.9.0",
"version": "20.3.50",
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -44,9 +44,13 @@ export class ComplexBase<T> {
let templateProperties: string[] = Object.keys(this);
for(let i = 0; i < templateProperties.length; i++) {
var tempProp = getValue(templateProperties[i], this);
if (typeof tempProp === 'object' && tempProp.elementRef && !getValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', this)){
if (typeof tempProp === 'object' && tempProp && tempProp.elementRef && !getValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', this)){
setValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', tempProp, this);
}
if (getValue("viewContainerRef", this) && !getValue("_viewContainerRef", tempProp.elementRef.nativeElement) && !getValue("propName", tempProp.elementRef.nativeElement)) {
setValue("_viewContainerRef", getValue("viewContainerRef", this), tempProp.elementRef.nativeElement);
setValue("propName", templateProperties[i].replace("Ref", ''), tempProp.elementRef.nativeElement);
}
}
templateProperties = Object.keys(this)
templateProperties = templateProperties.filter((val: string): boolean => {
@ -64,7 +68,7 @@ export class ComplexBase<T> {
if (this.directivePropList) {
for (let k: number = 0; k < this.directivePropList.length; k++) {
let dirPropName: string = this.directivePropList[k];
if (propList.indexOf(dirPropName) !== -1 && getValue(dirPropName, this)) {
if (propList.indexOf(dirPropName) !== -1 && (getValue(dirPropName, this) === false || getValue(dirPropName, this))) {
setValue(dirPropName, getValue(dirPropName, this), this.propCollection);
}
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-buttons",
"version": "20.3.49",
"version": "20.3.50",
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Calendar

Просмотреть файл

@ -2,6 +2,15 @@
## [Unreleased]
## 20.3.52 (2022-10-26)
### Chart
#### Bug Fixes
- `#I412377` - Axis labels are now rendering properly inside the chart.
- `#F171844` - Console error while using shared tooltip has been fixed.
## 20.3.50 (2022-10-18)
### Chart

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-charts",
"version": "20.3.49",
"version": "20.3.50",
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -5,7 +5,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Circular Gauge

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-diagrams",
"version": "20.3.49",
"version": "20.3.50",
"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 Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,18 @@
## [Unreleased]
## 20.3.52 (2022-10-26)
### Document Editor
#### Bug Fixes
- `#I410179` - Cell background color is now rendering properly.
- `#I411016` - List numbering is now rendered properly.
- `#I411008` - Paragraph border is now rendering properly.
- `#FB37770` - Resolved the script error while printing the document.
- `#I409887` - Replacing text with bookmark is now working properly.
## 20.3.50 (2022-10-18)
### Document Editor

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-documenteditor",
"version": "20.3.49",
"version": "20.3.50",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### File Manager

Просмотреть файл

@ -2,6 +2,17 @@
## [Unreleased]
## 20.3.52 (2022-10-26)
### Gantt
#### Bug Fixes
- `#I413261` - Dependency values for the parent task are not properly updated issue has been fixed.
- `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
## 20.3.50 (2022-10-18)
### Gantt
@ -12,7 +23,8 @@
- `#I404228` - Saving record even when in edited state issue has been fixed.
- `#I413093` - Pdf export is not working in latest version issue has been fixed.
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
- `#I404228` - Saving record even when in edited state issue has been fixed.
- `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
## 20.3.49 (2022-10-11)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-gantt",
"version": "20.3.49",
"version": "20.3.50",
"description": "Essential JS 2 Gantt Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,18 @@
## [Unreleased]
## 20.3.52 (2022-10-26)
### Grid
#### Bug Fixes
- `#I400775` - `DataStateChange` event argument type is not matched with the original argument list has been fixed.
- `#I411026` - Expanding child grid throws script while adding data dynamically to the child has been resolved.
- `#I412478` - `SetCellValue` is working fine with `virtualization`.
- `#411780` - German translation for the word search has been changed.
- `#I367158` - While rendering the grid in the template column the script error thrown with resizing the frozen column has been fixed.
## 20.3.50 (2022-10-18)
### Grid

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-grids",
"version": "20.3.49",
"version": "20.3.50",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-heatmap",
"version": "20.3.49",
"version": "20.3.50",
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-image-editor",
"version": "20.3.48",
"version": "20.3.50",
"description": "Essential JS 2 ImageEditor for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### TextBox

Просмотреть файл

@ -11,7 +11,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Linear Gauge

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
### ListView
#### Bug Fixes
- `#I395385` - The issue with "Space key is not working inside input element within ListView Template" has been resolved.
## 20.3.47 (2022-09-29)
### ListView

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-lists",
"version": "20.3.47",
"version": "20.3.50",
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -11,7 +11,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Maps

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-navigations",
"version": "20.3.49",
"version": "20.3.50",
"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 Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-pdfviewer",
"version": "20.3.49",
"version": "20.3.50",
"description": "Essential JS 2 PDF viewer Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-pivotview",
"version": "20.3.49",
"version": "20.3.50",
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Dialog

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-querybuilder",
"version": "20.3.49",
"version": "20.3.50",
"description": "Essential JS 2 QueryBuilder for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,20 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Schedule
#### Bug fixes
- `#F177962` - An issue with displaying yearly recurrence event has been fixed.
- `#I407566` - An issue with Importing exported ICS file with the edited recurrence event causes issue while editing the recurrence event has been fixed.
- `#F411508` - The issue Error throws when resources with no child is selected in the Editor window has been fixed.
- `#I411253` - Scheduler performance issue in virtual scrolling has been fixed.
- `#I412237` - An issue with Delete action through keyboard not working on Schedule on the MAC OS has been fixed.
- `F178167` - An issue with navigation actions not working while performing swipe on the appointments in mobile mode has been fixed.
## 20.3.49 (2022-10-11)
### Schedule

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-schedule",
"version": "20.3.47",
"version": "20.3.50",
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### DropDownButton

Просмотреть файл

@ -2,13 +2,13 @@
## [Unreleased]
## 20.3.50 (2022-10-18)
## 20.3.52 (2022-10-26)
### Spreadsheet
#### Bug Fixes
- `#I411173` - Issue with "initially loaded chart with JSON data is removed while rendering another chart through menu option" has been resolved.
- `#I411683` - Issue with "`ROUND` formula is not calculated properly while passing the number that end with digit 5" has been resolved.
## 20.3.47 (2022-09-29)
@ -1221,6 +1221,14 @@ The Spreadsheet is an user interactive component to organize and analyze data in
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
## 20.3.50 (2022-10-18)
### Spreadsheet
#### Bug Fixes
- `#I411173` - Issue with "initially loaded chart with JSON data is removed while rendering another chart through menu option" has been resolved.
## 20.3.49 (2022-10-11)
### Spreadsheet

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-spreadsheet",
"version": "20.3.49",
"version": "20.3.50",
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-treegrid",
"version": "20.3.49",
"version": "20.3.50",
"description": "Essential JS 2 TreeGrid Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",