Skip to content

Commit da2d413

Browse files
author
pipeline
committed
v20.2.46 is released
1 parent dfa76a3 commit da2d413

Some content is hidden

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

46 files changed

+162
-54
lines changed

components/barcodegenerator/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-angular-barcode-generator",
3-
"version": "20.2.43",
3+
"version": "20.2.45",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.2.45 (2022-08-23)
5+
## 20.2.46 (2022-08-30)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
`I331403,I334510` - Resolved `dynamic property` change not working for complex directives.
12+
`I356669` - Resolved script error Converting circular structure to JSON.
13+
14+
## 20.2.43 (2022-08-08)
615

716
### Common
817

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-angular-base",
3-
"version": "20.2.38",
3+
"version": "20.2.45",
44
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/complex-array-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ export class ComplexBase<T> {
4444
let templateProperties: string[] = Object.keys(this);
4545
for(let i = 0; i < templateProperties.length; i++) {
4646
var tempProp = getValue(templateProperties[i], this);
47-
if (typeof tempProp === 'object' && tempProp.elementRef && !getValue(templateProperties[i]+'Ref', this)){
48-
setValue(templateProperties[i]+'Ref', tempProp, this);
47+
if (typeof tempProp === 'object' && tempProp.elementRef && !getValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', this)){
48+
setValue(templateProperties[i].indexOf('Ref') !== -1 ? templateProperties[i] : templateProperties[i] + 'Ref', tempProp, this);
4949
}
5050
}
5151
templateProperties = Object.keys(this)

components/base/src/component-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export class ComponentBase<T> {
274274
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
275275
} else {
276276
/* istanbul ignore next */
277-
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|tab/.test(tempAfterContentThis.getModuleName()))) {
277+
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|tab|DashboardLayout/.test(tempAfterContentThis.getModuleName()))) {
278278
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
279279
}
280280
for (let list of tagObject.instance.list) {
@@ -378,4 +378,4 @@ export class ComponentBase<T> {
378378

379379
}
380380

381-
}
381+
}

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.2.46 (2022-08-30)
6+
7+
### Checkbox
8+
9+
#### Bug Fixes
10+
11+
- `#I399484` - The issue with aria-checked accessibility issue in angular checkbox has been fixed.
12+
513
## 20.2.43 (2022-08-08)
614

715
### Switch

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-angular-buttons",
3-
"version": "20.2.43",
3+
"version": "20.2.45",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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-angular-calendars",
3-
"version": "20.2.40",
3+
"version": "20.2.45",
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 Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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+
## 20.2.46 (2022-08-30)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I399799` - Console error thrown in stock chart issue has been fixed.
12+
- `#I390359` - Now chart is rendered properly in all pixel resolution.
13+
514
## 20.2.45 (2022-08-23)
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-angular-charts",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
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 Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- `#I396868` - Now bezier connector rendered properly while drag and drop from palette.
1212
- `#I397678` - Now, the connector is dropped properly inside the swimlane.
1313
- `#I397852` - Now, layers undefined exception will no longer thrown while save and load.
14+
- `#I397116` - Now, Bezier connector annotation rendered at the proper position.
1415

1516
## 20.2.44 (2022-08-16)
1617

components/diagrams/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-angular-diagrams",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
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 Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## 20.2.46 (2022-08-30)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I390678` - Resolved the issue with rendering complex text.
12+
- `#I393953` - Resolved the issue with pasting contents while switching paste options.
13+
- `#I396125` - `AfterFormFieldFill` event is now triggered properly.
14+
- `#I395575` - Resolved the issue with rendering cell right border.
15+
- `#I390700` - Resolved the text overlapping issue with square wrapped image.
16+
- `#I394115` - Resolved the table resizing issue.
17+
518
## 20.2.45 (2022-08-23)
619

720
### Document Editor
@@ -3071,4 +3084,4 @@ The Document Editor component is used to create, edit, view, and print Word docu
30713084
- Allows user interactions like zoom, scroll, select contents through touch, mouse, and keyboard.
30723085
- Provides intuitive UI options like context menu, dialogs, and navigation pane.
30733086
- Creates a lightweight Word viewer using module injection to view and prints Word documents.
3074-
- Added `Syncfusion.EJ2.DocumentEditor` NuGet package that contains helper library for converting Word documents to `Syncfusion Document Text (*.sfdt)`. It supports .NET Standard 2.0 Framework.
3087+
- Added `Syncfusion.EJ2.DocumentEditor` NuGet package that contains helper library for converting Word documents to `Syncfusion Document Text (*.sfdt)`. It supports .NET Standard 2.0 Framework.

components/documenteditor/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-angular-documenteditor",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@
22

33
## [Unreleased]
44

5-
## 20.2.45 (2022-08-23)
5+
## 20.2.46 (2022-08-30)
66

77
### ComboBox
88

99
#### Bug Fixes
1010

11+
- `#I397359` - The issue "Placeholder is not read by screenreader when floatLabelType is enabled in combobox" has been resolved.
1112
- `#I396357` - The issue "Placeholder is not read by screenreader in readonly mode" has been resolved.
1213

14+
### MultiSelect
15+
16+
#### Bug fixes
17+
18+
- `#I398999` - Issue with "Placeholder is not read by screenreader when floatLabelType is enabled in multiselect" has been resolved.
19+
1320
## 20.2.44 (2022-08-16)
1421

1522
### MultiSelect
@@ -2140,6 +2147,14 @@ DropDownList component contains a list of predefined values from which a single
21402147
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.
21412148

21422149

2150+
## 20.2.45 (2022-08-23)
2151+
2152+
### AutoComplete
2153+
2154+
#### Bug Fixes
2155+
2156+
- `#I398013` - Issue with "Dynamic data source not update correctly after filtering the value" has been resolved.
2157+
21432158
## 20.2.38 (2022-07-12)
21442159

21452160
### DropDownList

components/dropdowns/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-angular-dropdowns",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "Essential JS 2 DropDown Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/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-angular-filemanager",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "Essential JS 2 FileManager Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@
22

33
## [Unreleased]
44

5-
## 20.2.45 (2022-08-23)
5+
## 20.2.46 (2022-08-30)
66

77
### Gantt
88

99
#### Bug Fixes
1010

11-
- `#I389542` - Filter records with hierarchy mode as both shows no record to display issue has been fixed.
11+
- `#F176984` - Timeline is extended when the splitter position is moved issue has been fixed.
12+
- `#I398394` - Row drag and drop not working properly on resource view sample issue has been fixed.
13+
- `#I396036` - Baselines become milestones when start date and end date are mapped.
1214

1315
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
1416

17+
## 20.2.45 (2022-08-23)
18+
19+
### Gantt
20+
21+
#### Bug Fixes
22+
23+
- `#I389542` - Filter records with hierarchy mode as both shows no record to display issue has been fixed.
24+
1525
## 20.2.44 (2022-08-16)
1626

1727
### Gantt

components/gantt/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-angular-gantt",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "Essential JS 2 Gantt Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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-angular-grids",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/heatmap/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-angular-heatmap",
3-
"version": "20.2.38",
3+
"version": "20.2.45",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/CHANGELOG.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,6 @@
22

33
## [Unreleased]
44

5-
## 20.2.45 (2022-08-23)
6-
7-
### NumericTextBox
8-
9-
#### Bug Fixes
10-
11-
- `#I381508` - Issue with "ellipsis style is not applied to long floating label text in the material outline mode" has been resolved.
12-
13-
### Uploader
14-
15-
#### Bug Fixes
16-
17-
- `#I392246` - Issue with "focus is not added for delete icon by using tab key" is resolved.
18-
195
## 19.4.38 (2021-12-17)
206

217
### Signature
@@ -1271,6 +1257,20 @@ MaskedTextBox allows the user to enter the valid input only based on the provide
12711257
- **Accessibility** - provides built-in accessibility support which helps to access all the MaskedTextBox component features through keyboard, on-screen readers, or other assistive technology devices.
12721258

12731259

1260+
## 20.2.44 (2022-08-16)
1261+
1262+
### NumericTextBox
1263+
1264+
#### Bug Fixes
1265+
1266+
- `#I381508` - Issue with "ellipsis style is not applied to long floating label text in the material outline mode" has been resolved.
1267+
1268+
### Uploader
1269+
1270+
#### Bug Fixes
1271+
1272+
- `#I392246` - Issue with "focus is not added for delete icon by using tab key" is resolved.
1273+
12741274
## 20.2.36 (2022-06-30)
12751275

12761276
### NumericTextBox

components/inputs/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-angular-inputs",
3-
"version": "20.2.43",
3+
"version": "20.2.45",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/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-angular-kanban",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/layouts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.2.46 (2022-08-30)
6+
7+
### Dashboard Layout
8+
9+
#### Bug Fixes
10+
11+
- `#I396820` - The issue with "minSizeX and minSizeY properties not working while using cellSpacing in Dashboard Layout component" has been resolved.
12+
513
## 20.2.39 (2022-07-19)
614

715
### Dashboard Layout

components/layouts/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-angular-layouts",
3-
"version": "20.2.43",
3+
"version": "20.2.45",
44
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/lists/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-
## 20.2.45 (2022-08-23)
5+
## 20.2.46 (2022-08-30)
66

77
### ListView
88

components/maps/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-angular-maps",
3-
"version": "20.2.43",
3+
"version": "20.2.45",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/navigations/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.2.46 (2022-08-30)
6+
7+
### Menu
8+
9+
#### Bug Fixes
10+
11+
- `#I387276` - The issue with "Enable Scrolling not working properly when we dynamically set scroll to menu bar" has been resolved.
12+
513
## 20.2.44 (2022-08-16)
614

715
### TreeView

components/navigations/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-angular-navigations",
3-
"version": "20.2.44",
3+
"version": "20.2.45",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)