Skip to content

Commit b63e55d

Browse files
author
pipeline
committed
v22.2.7 is released
1 parent 26dabb8 commit b63e55d

Some content is hidden

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

51 files changed

+193
-62
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-angular-base",
3-
"version": "22.1.34",
3+
"version": "22.2.5",
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/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": "22.1.39",
3+
"version": "22.2.5",
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/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I479445` - Now, the legend opacity is working properly in the chart.
12+
- `#F183350` - Fixed an issue where the multicolored area was not working properly in canvas mode.
13+
- `#I481085` - The issue where the Legend gets cut off when `enablePages` is set to false has been resolved.
14+
- `#I481219` - Now, SelectedDataIndexes are properly updated when it is cleared on button click.
15+
- `#I482650` - Now the chart is proper when refreshed after zooming in and out.
16+
517
## 22.2.5 (2023-07-27)
618

719
### 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": "22.1.39",
3+
"version": "22.2.5",
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Diagram
8+
9+
#### New Feature
10+
11+
- `#I464388` - load Event to notify diagram initial render is added.
12+
13+
#### Bug Fixes
14+
15+
-`#I477967` - Now, symbol size does not change after dragging the symbols.
16+
17+
518
## 22.2.5 (2023-07-27)
619

720
### Diagram

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": "22.1.38",
3+
"version": "22.2.5",
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/diagrams/src/diagram/diagram.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ConnectorsDirective } from './connectors.directive';
88
import { NodesDirective } from './nodes.directive';
99

1010
export const inputs: string[] = ['addInfo','annotationTemplate','backgroundColor','bridgeDirection','commandManager','connectorDefaults','connectors','constraints','contextMenuSettings','customCursor','dataSourceSettings','diagramSettings','drawingObject','enableConnectorSplit','enablePersistence','enableRtl','getConnectorDefaults','getCustomCursor','getCustomProperty','getCustomTool','getDescription','getNodeDefaults','height','historyManager','layers','layout','locale','mode','nodeDefaults','nodeTemplate','nodes','pageSettings','rulerSettings','scrollSettings','segmentThumbShape','selectedItems','serializationSettings','setNodeTemplate','snapSettings','tool','tooltip','updateSelection','userHandleTemplate','width'];
11-
export const outputs: string[] = ['animationComplete','click','collectionChange','commandExecute','connectionChange','contextMenuBeforeItemRender','contextMenuClick','contextMenuOpen','created','dataLoaded','doubleClick','dragEnter','dragLeave','dragOver','drop','expandStateChange','fixedUserHandleClick','historyChange','historyStateChange','keyDown','keyUp','mouseEnter','mouseLeave','mouseOver','mouseWheel','onImageLoad','onUserHandleMouseDown','onUserHandleMouseEnter','onUserHandleMouseLeave','onUserHandleMouseUp','positionChange','propertyChange','rotateChange','scrollChange','segmentChange','segmentCollectionChange','selectionChange','sizeChange','sourcePointChange','targetPointChange','textEdit','elementDraw'];
11+
export const outputs: string[] = ['animationComplete','click','collectionChange','commandExecute','connectionChange','contextMenuBeforeItemRender','contextMenuClick','contextMenuOpen','created','dataLoaded','doubleClick','dragEnter','dragLeave','dragOver','drop','expandStateChange','fixedUserHandleClick','historyChange','historyStateChange','keyDown','keyUp','load','mouseEnter','mouseLeave','mouseOver','mouseWheel','onImageLoad','onUserHandleMouseDown','onUserHandleMouseEnter','onUserHandleMouseLeave','onUserHandleMouseUp','positionChange','propertyChange','rotateChange','scrollChange','segmentChange','segmentCollectionChange','selectionChange','sizeChange','sourcePointChange','targetPointChange','textEdit','elementDraw'];
1212
export const twoWays: string[] = [''];
1313

1414
/**
@@ -55,6 +55,7 @@ export class DiagramComponent extends Diagram implements IComponentBase {
5555
historyStateChange: any;
5656
keyDown: any;
5757
keyUp: any;
58+
load: any;
5859
mouseEnter: any;
5960
mouseLeave: any;
6061
mouseOver: any;

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I480272` - Resolved the Page get Freeze issue while opening a document.
12+
- `#I484011` - Added 1/2 px option in table properties pane width options.
13+
- `#F183323` - Resolved the table rendering issue.
14+
- `#I478257` - Fixed the issue in list format rendering.
15+
- `#I479946` - Now, the tracked content is preserved properly.
16+
- `#I479193` - Fixed the issue in opening an exported HTML file.
17+
- `#I477577` - Resolved the script error while clicking on the field.
18+
- `#FB44883` - Fixed the form fill pop-up rendering issues.
19+
- `#I481912` - Fixed the image overlapping issue in the header.
20+
521
## 22.2.5 (2023-07-27)
622

723
### Document Editor

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": "22.1.39",
3+
"version": "22.2.5",
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/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": "22.1.39",
3+
"version": "22.2.5",
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": "22.1.39",
3+
"version": "22.2.5",
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: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Gantt Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I479591` - Critical path is not working properly when the baseline is changed dynamically issue has been fixed.
12+
- `#F182867` - Edit parameters not working in date columns issue has been fixed.
13+
- `#I479578` - Milestone get disappeared when we indent the record issue has been fixed.
14+
- `#I481480` - Last segments resizing issue has been fixed.
15+
- `#I481603` - Zoom To Fit while Search/Filtered then Clearing Search doesn't update Horizontal Scroll issue has been fixed.
16+
- `#IF183168` - Record was not added in Gantt using `oDataV4Adaptor` issue has been fixed.
17+
- `#I479607` - Search including extra results issue has been fixed.
18+
- `#I481058` - Console error when we use RTL and taskbar template issue has been fixed.
19+
- `#I482456` - Critical path not working properly issue has been fixed.
20+
- `#I485219` - Selection is not working when we use react hook.
21+
22+
### Gantt
23+
24+
#### Bug Fixes
25+
26+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
27+
528
## 22.2.5 (2023-07-27)
629

730
### Gantt Chart
@@ -15,12 +38,6 @@
1538
- `#I479961` - Milestone baseline moves along with the milestone issue has been fixed.
1639
- `#I481999` - Page refresh when using validation rules for column issue has been fixed.
1740

18-
### Gantt
19-
20-
#### Bug Fixes
21-
22-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
23-
2441
## 22.1.39 (2023-07-18)
2542

2643
### Gantt Chart

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

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#I479266` - Resolved an issue where aggregates being displayed in the wrong column during Excel export.
12+
- `#I486035` - The issue regarding adding records using the index value when the selection is in the first row has been resolved.
13+
- `#I483149` - The problem of the `cssClass` property not supporting multiple classes has been resolved.
14+
515
## 22.2.5 (2023-07-27)
616

717
### Grid

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": "22.1.39",
3+
"version": "22.2.5",
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/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-
## 22.2.5 (2023-07-27)
5+
## 22.1.34 (2023-06-21)
66

77
### Heatmap
88

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": "18.14.3",
3+
"version": "22.2.5",
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/imageeditor/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-image-editor",
3-
"version": "22.1.39",
3+
"version": "22.2.5",
44
"description": "Essential JS 2 ImageEditor for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/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+
## 22.2.7 (2023-08-02)
6+
7+
### TextBox
8+
9+
#### Bug Fixes
10+
11+
- `#I477545` - Fixed an issue where error colors were not being applied correctly in the Textbox Component.
12+
513
## 22.2.5 (2023-07-27)
614

715
### Signature

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": "22.1.39",
3+
"version": "22.2.5",
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": "22.1.38",
3+
"version": "22.2.5",
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/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": "22.1.37",
3+
"version": "22.2.5",
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/lineargauge/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-lineargauge",
3-
"version": "22.1.34",
3+
"version": "22.2.5",
44
"description": "Essential JS 2 LinearGauge Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/lists/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.5 (2023-07-27)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F44817` - Issue with "Dragged item may be one that is adjacent to the item over which mouse down occurred in listbox." has been resolved.
12+
13+
### ListView
14+
15+
#### Bug Fixes
16+
17+
- `#I481465` - Resolved the `enableHtmlSanitizer` property issue in the ListView component.
18+
519
## 22.1.34 (2023-06-21)
620

721
### ListView

components/lists/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-lists",
3-
"version": "22.1.34",
3+
"version": "22.2.5",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
## [Unreleased]
1313

14-
## 22.2.5 (2023-07-27)
14+
## 22.1.39 (2023-07-18)
1515

1616
### Maps
1717

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": "22.1.34",
3+
"version": "22.2.5",
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: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,22 @@
22

33
## [Unreleased]
44

5+
## 22.2.7 (2023-08-02)
6+
7+
### Menu
8+
9+
#### Bug Fixes
10+
11+
- `#I483185` - The issue with "Script error throws on destroying menu when its sub menus are still open" has been resolved.
12+
513
## 22.2.5 (2023-07-27)
614

15+
### Carousel
16+
17+
#### Bug Fixes
18+
19+
- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.
20+
721
### Tab
822

923
#### Bug Fixes
@@ -19,12 +33,6 @@
1933

2034
## 22.1.39 (2023-07-18)
2135

22-
### Carousel
23-
24-
#### Bug Fixes
25-
26-
- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.
27-
2836
### Menu
2937

3038
#### Bug Fixes

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": "22.1.39",
3+
"version": "22.2.5",
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",

components/notifications/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-notifications",
3-
"version": "22.1.34",
3+
"version": "22.2.5",
44
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/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+
## 22.2.7 (2023-08-02)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#F183545` - Now, the scale ratio is being applied when we set it in the measure settings object.
12+
- `#I481837` - Now, when updating the form field to be read-only programmatically, it is functioning properly for the pages that are not rendered.
13+
514
## 22.2.5 (2023-07-27)
615

716
### PDF Viewer

0 commit comments

Comments
 (0)