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",

0 commit comments

Comments
 (0)