This commit is contained in:
pipeline 2020-09-21 15:20:41 +00:00
Родитель d7e7d4a4f5
Коммит 84f9afe05e
57 изменённых файлов: 138 добавлений и 50 удалений

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
- `I231451` - Resolved the issue in child directives with no content or empty attributes.
- `I287706` - Resolved script error while changing value in test environment.

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### CheckBox

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

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

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-circulargauge",
"version": "18.2.54",
"version": "18.2.57",
"description": "Essential JS 2 CircularGauge Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,6 +2,18 @@
## [Unreleased]
## 18.2.59 (2020-09-21)
### Diagram
#### Bug Fixes
- `289382` - The issue "Exported data returns same png format for all other format" has been fixed.
- `291513` - The issue " Exception occurs while change allowDrag from false to true for symbol palette" has been fixed.
- `292558` - The issue "Node Rotate constraints does not work properly" has been fixed.
- `289532` - The issue "Group offsetX and offsetY does not update after add child to it" has been fixed.
- `291274` - The issue "Mouse Enter, Mouse Over event does not get triggered for selected item" has been fixed.
## 18.2.58 (2020-09-15)
### Diagram
@ -14,7 +26,6 @@
### Diagram
- `291274` - The issue "Mouse Enter, Mouse Over event does not get triggered for selected item" has been fixed.
- `287578` - The issue "Connector segments not update properly" has been fixed.
- `289532` - The issue "Group width and height does not update" has been fixed.
- `285600` - The issue "Complex hierarchical layout does not arrange properly" has been fixed.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-diagrams",
"version": "18.2.56",
"version": "18.2.58",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

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

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

@ -2,6 +2,14 @@
## [Unreleased]
## 18.2.59 (2020-09-21)
### ListBox
#### Bug Fixes
- compatibility issues with EJ1 has been fixed.
## 18.2.58 (2020-09-15)
### ListBox

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-dropdowns",
"version": "18.2.57",
"version": "18.2.58",
"description": "Essential JS 2 DropDown Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### File Manager

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

@ -2,7 +2,21 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### Gantt
#### New Features
- `#292825` - Provided support to improvement of trigger actions on key press.
#### Bug Fixes
- `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
- `#292470` - Issue on edit template in dialog has been fixed.
- `#293749` - Edit `params` not worked properly for progress column has been fixed.
## 18.2.57 (2020-09-08)
### Gantt

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -457,6 +457,9 @@ let GanttComponent = class GanttComponent extends ComponentBase {
indent() {
return this.ej2Instances.indent();
}
keyActionHandler(e) {
return this.ej2Instances.keyActionHandler(e);
}
nextTimeSpan(mode) {
return this.ej2Instances.nextTimeSpan(mode);
}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -611,6 +611,9 @@ var GanttComponent = /** @__PURE__ @class */ (function (_super) {
GanttComponent.prototype.indent = function () {
return this.ej2Instances.indent();
};
GanttComponent.prototype.keyActionHandler = function (e) {
return this.ej2Instances.keyActionHandler(e);
};
GanttComponent.prototype.nextTimeSpan = function (mode) {
return this.ej2Instances.nextTimeSpan(mode);
};

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-gantt",
"version": "18.2.56",
"version": "18.2.57",
"description": "Essential JS 2 Gantt Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -223,6 +223,10 @@ export class GanttComponent extends ComponentBase {
return this.ej2Instances.indent();
}
public keyActionHandler(e: Object): void {
return this.ej2Instances.keyActionHandler(e);
}
public nextTimeSpan(mode?: string): void {
return this.ej2Instances.nextTimeSpan(mode);
}

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

@ -2,6 +2,18 @@
## [Unreleased]
## 18.2.59 (2020-09-21)
### Grid
#### Bug Fixes
- `#283675` - Excel custom filtered value issue has been resolved.
- `#291032` - String column Change event issue has been fixed.
- `#291960` - resize handler height issue with auto wrap has been fixed.
- `#293441` - Improved the Checkbox filter module with keyboard navigation.
- `#287676` - Mouse position issue when row dragged, has been fixed.
## 18.2.58 (2020-09-15)
### Grid

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

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

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### Heatmap

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

@ -2,7 +2,16 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### In-place Editor
#### Bug Fixes
`#289326` - The issue with "Script error is thrown when configuring more than two validation rules in the In-place editor" has been resolved.
## 18.2.57 (2020-09-08)
### In-place Editor

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-inplace-editor",
"version": "18.2.54",
"version": "18.2.57",
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-inputs",
"version": "18.2.56",
"version": "18.2.58",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### Kanban

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### Splitter

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-lineargauge",
"version": "18.2.54",
"version": "18.2.57",
"description": "Essential JS 2 LinearGauge Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,6 +2,14 @@
## [Unreleased]
## 18.2.59 (2020-09-21)
### ListView
#### Bug Fixes
- #293862 Issue with `Angular template throws console error` has been fixed.
## 18.2.48 (2020-08-04)
### Common

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-lists",
"version": "18.2.54",
"version": "18.2.57",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-maps",
"version": "18.2.47",
"version": "18.2.57",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-pdfviewer",
"version": "18.2.57",
"version": "18.2.58",
"description": "Essential JS 2 PDF viewer Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-pivotview",
"version": "18.2.57",
"version": "18.2.58",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-popups",
"version": "18.2.54",
"version": "18.2.57",
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,7 +2,7 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### QueryBuilder

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

@ -2,7 +2,15 @@
## [Unreleased]
## 18.2.58 (2020-09-15)
## 18.2.59 (2020-09-21)
### Schedule
#### Bug Fixes
- `#292250` - An issue with accessibility related navigations from one resource to another resource events support has been added.
## 18.2.57 (2020-09-08)
### Schedule

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-schedule",
"version": "18.2.55",
"version": "18.2.57",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

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

@ -2,6 +2,14 @@
## [Unreleased]
## 18.2.59 (2020-09-21)
### TreeGrid
#### Bug Fixes
- `#F157258` - `updateRow` method works fine for updating collapsed data.
## 18.2.58 (2020-09-15)
### TreeGrid

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-treegrid",
"version": "18.2.57",
"version": "18.2.58",
"description": "Essential JS 2 TreeGrid Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-treemap",
"version": "18.2.54",
"version": "18.2.57",
"description": "Essential JS 2 TreeMap Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",