Skip to content

Commit

Permalink
v22.2.7 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Aug 2, 2023
1 parent 26dabb8 commit b63e55d
Show file tree
Hide file tree
Showing 51 changed files with 193 additions and 62 deletions.
2 changes: 1 addition & 1 deletion components/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-base",
"version": "22.1.34",
"version": "22.2.5",
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/buttons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-buttons",
"version": "22.1.39",
"version": "22.2.5",
"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",
Expand Down
12 changes: 12 additions & 0 deletions components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Chart

#### Bug Fixes

- `#I479445` - Now, the legend opacity is working properly in the chart.
- `#F183350` - Fixed an issue where the multicolored area was not working properly in canvas mode.
- `#I481085` - The issue where the Legend gets cut off when `enablePages` is set to false has been resolved.
- `#I481219` - Now, SelectedDataIndexes are properly updated when it is cleared on button click.
- `#I482650` - Now the chart is proper when refreshed after zooming in and out.

## 22.2.5 (2023-07-27)

### Chart
Expand Down
2 changes: 1 addition & 1 deletion components/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-charts",
"version": "22.1.39",
"version": "22.2.5",
"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",
Expand Down
13 changes: 13 additions & 0 deletions components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Diagram

#### New Feature

- `#I464388` - load Event to notify diagram initial render is added.

#### Bug Fixes

-`#I477967` - Now, symbol size does not change after dragging the symbols.


## 22.2.5 (2023-07-27)

### Diagram
Expand Down
2 changes: 1 addition & 1 deletion components/diagrams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-diagrams",
"version": "22.1.38",
"version": "22.2.5",
"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",
Expand Down
3 changes: 2 additions & 1 deletion components/diagrams/src/diagram/diagram.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ConnectorsDirective } from './connectors.directive';
import { NodesDirective } from './nodes.directive';

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'];
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'];
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'];
export const twoWays: string[] = [''];

/**
Expand Down Expand Up @@ -55,6 +55,7 @@ export class DiagramComponent extends Diagram implements IComponentBase {
historyStateChange: any;
keyDown: any;
keyUp: any;
load: any;
mouseEnter: any;
mouseLeave: any;
mouseOver: any;
Expand Down
16 changes: 16 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Document Editor

#### Bug Fixes

- `#I480272` - Resolved the Page get Freeze issue while opening a document.
- `#I484011` - Added 1/2 px option in table properties pane width options.
- `#F183323` - Resolved the table rendering issue.
- `#I478257` - Fixed the issue in list format rendering.
- `#I479946` - Now, the tracked content is preserved properly.
- `#I479193` - Fixed the issue in opening an exported HTML file.
- `#I477577` - Resolved the script error while clicking on the field.
- `#FB44883` - Fixed the form fill pop-up rendering issues.
- `#I481912` - Fixed the image overlapping issue in the header.

## 22.2.5 (2023-07-27)

### Document Editor
Expand Down
2 changes: 1 addition & 1 deletion components/documenteditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-documenteditor",
"version": "22.1.39",
"version": "22.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion components/dropdowns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-dropdowns",
"version": "22.1.39",
"version": "22.2.5",
"description": "Essential JS 2 DropDown Components for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/filemanager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-filemanager",
"version": "22.1.39",
"version": "22.2.5",
"description": "Essential JS 2 FileManager Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
29 changes: 23 additions & 6 deletions components/gantt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Gantt Chart

#### Bug Fixes

- `#I479591` - Critical path is not working properly when the baseline is changed dynamically issue has been fixed.
- `#F182867` - Edit parameters not working in date columns issue has been fixed.
- `#I479578` - Milestone get disappeared when we indent the record issue has been fixed.
- `#I481480` - Last segments resizing issue has been fixed.
- `#I481603` - Zoom To Fit while Search/Filtered then Clearing Search doesn't update Horizontal Scroll issue has been fixed.
- `#IF183168` - Record was not added in Gantt using `oDataV4Adaptor` issue has been fixed.
- `#I479607` - Search including extra results issue has been fixed.
- `#I481058` - Console error when we use RTL and taskbar template issue has been fixed.
- `#I482456` - Critical path not working properly issue has been fixed.
- `#I485219` - Selection is not working when we use react hook.

### Gantt

#### Bug Fixes

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

## 22.2.5 (2023-07-27)

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

### Gantt

#### Bug Fixes

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

## 22.1.39 (2023-07-18)

### Gantt Chart
Expand Down
2 changes: 1 addition & 1 deletion components/gantt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-gantt",
"version": "22.1.39",
"version": "22.2.5",
"description": "Essential JS 2 Gantt Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
10 changes: 10 additions & 0 deletions components/grids/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Grid

#### Bug fixes

- `#I479266` - Resolved an issue where aggregates being displayed in the wrong column during Excel export.
- `#I486035` - The issue regarding adding records using the index value when the selection is in the first row has been resolved.
- `#I483149` - The problem of the `cssClass` property not supporting multiple classes has been resolved.

## 22.2.5 (2023-07-27)

### Grid
Expand Down
2 changes: 1 addition & 1 deletion components/grids/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-grids",
"version": "22.1.39",
"version": "22.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion components/heatmap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 22.2.5 (2023-07-27)
## 22.1.34 (2023-06-21)

### Heatmap

Expand Down
2 changes: 1 addition & 1 deletion components/heatmap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-heatmap",
"version": "18.14.3",
"version": "22.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion components/imageeditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-image-editor",
"version": "22.1.39",
"version": "22.2.5",
"description": "Essential JS 2 ImageEditor for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
8 changes: 8 additions & 0 deletions components/inputs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### TextBox

#### Bug Fixes

- `#I477545` - Fixed an issue where error colors were not being applied correctly in the Textbox Component.

## 22.2.5 (2023-07-27)

### Signature
Expand Down
2 changes: 1 addition & 1 deletion components/inputs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-inputs",
"version": "22.1.39",
"version": "22.2.5",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/kanban/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-kanban",
"version": "22.1.38",
"version": "22.2.5",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-layouts",
"version": "22.1.37",
"version": "22.2.5",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/lineargauge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-lineargauge",
"version": "22.1.34",
"version": "22.2.5",
"description": "Essential JS 2 LinearGauge Components for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
14 changes: 14 additions & 0 deletions components/lists/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## 22.2.5 (2023-07-27)

### ListBox

#### Bug Fixes

- `#F44817` - Issue with "Dragged item may be one that is adjacent to the item over which mouse down occurred in listbox." has been resolved.

### ListView

#### Bug Fixes

- `#I481465` - Resolved the `enableHtmlSanitizer` property issue in the ListView component.

## 22.1.34 (2023-06-21)

### ListView
Expand Down
2 changes: 1 addition & 1 deletion components/lists/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-lists",
"version": "22.1.34",
"version": "22.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion components/maps/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## [Unreleased]

## 22.2.5 (2023-07-27)
## 22.1.39 (2023-07-18)

### Maps

Expand Down
2 changes: 1 addition & 1 deletion components/maps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-maps",
"version": "22.1.34",
"version": "22.2.5",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
20 changes: 14 additions & 6 deletions components/navigations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### Menu

#### Bug Fixes

- `#I483185` - The issue with "Script error throws on destroying menu when its sub menus are still open" has been resolved.

## 22.2.5 (2023-07-27)

### Carousel

#### Bug Fixes

- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.

### Tab

#### Bug Fixes
Expand All @@ -19,12 +33,6 @@

## 22.1.39 (2023-07-18)

### Carousel

#### Bug Fixes

- `#I480096` - An issue with the indicators are not updated while dynamically changing the data source of the Carousel has been fixed.

### Menu

#### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion components/navigations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-navigations",
"version": "22.1.39",
"version": "22.2.5",
"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",
Expand Down
2 changes: 1 addition & 1 deletion components/notifications/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-notifications",
"version": "22.1.34",
"version": "22.2.5",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
9 changes: 9 additions & 0 deletions components/pdfviewer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## 22.2.7 (2023-08-02)

### PDF Viewer

#### Bug Fixes

- `#F183545` - Now, the scale ratio is being applied when we set it in the measure settings object.
- `#I481837` - Now, when updating the form field to be read-only programmatically, it is functioning properly for the pages that are not rendered.

## 22.2.5 (2023-07-27)

### PDF Viewer
Expand Down
Loading

0 comments on commit b63e55d

Please sign in to comment.