Skip to content

Commit 2f9fffd

Browse files
author
pipeline
committed
v19.2.56 is released
1 parent 8aedec6 commit 2f9fffd

Some content is hidden

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

50 files changed

+227
-50
lines changed

components/buttons/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-
## 19.2.55 (2021-08-11)
5+
## 19.2.47 (2021-07-13)
66

77
### Checkbox
88

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

components/buttons/src/button/button.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ for (let props of modelProps) {
2323

2424
export const isExecute: any = gh ? false : true;
2525

26-
export let tempProxy: any;
27-
2826
/**
2927
* Represents the Essential JS 2 VueJS Button Component
3028
* ```html
@@ -59,7 +57,6 @@ export class ButtonComponent extends ComponentBase {
5957
this.bindProperties();
6058
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6159
this.ej2Instances.setProperties = this.setProperties;
62-
tempProxy = this;
6360
}
6461
public setProperties(prop: any, muteOnChange: boolean): void {
6562
if(this.isVue3) {

components/buttons/src/check-box/checkbox.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS CheckBox Component
3129
* ```html
@@ -65,7 +63,6 @@ export class CheckBoxComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

components/buttons/src/chips/chiplist.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS ChipList Component.
3129
* ```html
@@ -60,7 +58,6 @@ export class ChipListComponent extends ComponentBase {
6058
this.bindProperties();
6159
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6260
this.ej2Instances.setProperties = this.setProperties;
63-
tempProxy = this;
6461
}
6562
public setProperties(prop: any, muteOnChange: boolean): void {
6663
if(this.isVue3) {

components/buttons/src/radio-button/radiobutton.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS RadioButton Component
3129
* ```html
@@ -65,7 +63,6 @@ export class RadioButtonComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

components/buttons/src/switch/switch.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ for (let props of modelProps) {
2424

2525
export const isExecute: any = gh ? false : true;
2626

27-
export let tempProxy: any;
28-
2927
/**
3028
* Represents the Essential JS 2 VueJS Switch Component.
3129
* ```html
@@ -65,7 +63,6 @@ export class SwitchComponent extends ComponentBase {
6563
this.bindProperties();
6664
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6765
this.ej2Instances.setProperties = this.setProperties;
68-
tempProxy = this;
6966
}
7067
public setProperties(prop: any, muteOnChange: boolean): void {
7168
if(this.isVue3) {

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-vue-calendars",
3-
"version": "19.2.47",
3+
"version": "19.2.55",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/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+
## 19.2.56 (2021-08-17)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#337487` - Query selector issue fixed for container ID.
12+
513
## 19.2.55 (2021-08-11)
614

715
### 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-vue-charts",
3-
"version": "19.2.51",
3+
"version": "19.2.55",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 19.2.55 (2021-08-11)
8+
## 19.2.56 (2021-08-17)
99

1010
### CircularGauge
1111

components/diagrams/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-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### Diagram
88

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.2.56 (2021-08-17)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I337569` - Resolved the table relayout issue for the document with compatibility mode.
12+
- `#I331349` - Resolved the text content clipping issue.
13+
- `#I336632` - Resolved the next style hierarchy issue .
14+
515
## 19.2.55 (2021-08-11)
616

717
### Document Editor
818

19+
#### New Features
20+
21+
- `#I256210`,`#F150773`,`#I295055`,`#I295551`,`#I324037`,`#I326715` - Added support for keep with next and keep lines together.
22+
923
#### Bug Fixes
1024

11-
- `#I334754, #F167429` - Resolved the localization issue.
25+
- `#I334754`, `#F167429` - Resolved the localization issue.
1226
- `#I333264` - Resolved the before spacing issue for the paragraph starting in new page.
27+
- `#I333226` - Resolved the underline issue.
28+
- `#I332508` - Resolved the tracking of multiline tracking and empty paragraph revision.
29+
- `#I335858`, `#F148494` - Resolved the script error in component destroy.
30+
- `#F166420` - Resolved the SFDT exporting issue with shape.
31+
- `#I332253` - Resolved the cut paste hyperlink with track changes enabled.
32+
- `#I335409` - Resolved user list updating issue in restrict editing pane.
33+
- `#I328976` - Table and document content is not layouted properly.
34+
- `#I331333` - Resolved the page unresponsive issue in splitting the nested tables.
35+
- `#I331763` - Resolve the shifting issue in the table with table positioning property on relayouting
36+
- `#I330233` - Resolved the extra page adding issue when using update field.
37+
- `#I329790`, `#I331351` - Table is now layouted based on compatibility mode.
38+
- `#I332483` - Resolved the issue on bookmark shifting while removing document content.
39+
- `#I331762` - Table with merged cell is now layouted properly.
40+
- `#I330485` - OlePicture is now preserved as normal picture.
41+
- `#I330776` - Resolved the casing issue in the generated suggestions.
42+
- `#I330982` - Resolved the unexpected characters when pasting using Java server-side library.
43+
- `#I325741` - Resolved the footnote layouting issue when opening a document.
44+
- `#I331634` - Resolved the issue on updating the table cell width.
45+
- `#I331274` - Table positioning property is now preserved properly.
46+
- `#I331667` - Document with BuildingBlockGallery content control type is now exported properly.
47+
- `#I331452` - Resolved the layout issue on footnote inside the table.
48+
- `#I331606` - Document with content control block saving issue is now exported properly.
49+
- `#I331667`, `#I332223` - Shape in footer is now preserved properly.
50+
- `#I330686`, `#I331349`, `#I310463` - Shape fill is now preserved properly.
51+
- `#I332333` - Zoom value is now updated properly in status bar.
52+
- `#I330165`, `#I327647`, `#I324515` - Resolved the worst case scenario issues in comment editing and deleting.
53+
- `#I319210` - The changes and comment tab in the review pane will be visible only if at least one tracked change or comment is present respectively in the document.
1354

1455
## 19.2.49 (2021-07-27)
1556

@@ -80,7 +121,7 @@
80121

81122
- `#I278021`, `#I301809` - Added table paste options.
82123
- `#I165071`, `#I226674`, `#I229069`, `#I231373`, `#I241445`, `#I251719`, `#I251720`, `#I267474`, `#I284190`, `#I287633`, `#I291766`, `#I295055`, `#I295549`, `#I298036`, `#I297705`, `#I301313`, `#I291964`, `#I306274`, `#I305349`, `#I308409`, `#I310463`, `#I311260`, `#I312302`, `#I313526`, `#I314192`, `#I317340`, `#I319563` - Added support to preserve image position with square, in-front of text, behind text, top and bottom wrapping styles.
83-
- `#I165071`, `#I226674`, `#I229069`, `#I231373`, `#I241445`, `#I251719`, `#I251720`, `#I267474`, `#I284190`, `#I287633`, `#I291766`, `#I295055`, `#I295549`, `#I298036`, `#I297705`, `#I301313`, `#I291964`, `#I306274`, `#I305349`, `#I308409`, `#I310463`, `#I311260`, `#I312302`, `#I313526`, `#I314192`, `#I317340`, `#I319563` - Textbox shape with square, in-front of text, behind text, top and bottom wrapping styles.
124+
- `#I137901`,`#I158324`,`#I208312`,`#I219539`,`#I226018`,`#I226019`,`#I227643`,`#I238552`,`#I243495`,`#I246168`,`#I247514`,`#I248720`,`#I252754`,`#I253251`,`#I280213`,`#I280379`,`#I285871`,`#I290372`,`#I297705`,`#I298334`,`#I306415`,`#I306466`,`#I308411`,`#I310537`,`#I312846`,`#I314262`,`#I317497`,`#I319206`,`#I320434`,`#I324903`,`#I333100` - Textbox shape with square, in-front of text, behind text, top and bottom wrapping styles.
84125
- `#I307321` - Added support to preserve table positioning properties.
85126
- `#I298019` - Added support for exporting the document pages as image.
86127
- `#I324911` - Provided support for inserting non-breaking space character on Ctrl + Shift + Space key combination.

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

components/dropdowns/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+
## 19.2.56 (2021-08-17)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#FB26838` - Issue with "exception throws while rendering the component inside v-if and v-else" has been resolved.
12+
513
## 19.2.55 (2021-08-11)
614

715
### ListBox

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-vue-dropdowns",
3-
"version": "19.2.51",
3+
"version": "19.2.55",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/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+
## 19.2.56 (2021-08-17)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#I337431` - The issue with "`filterFiles` method in file manager component" has been resolved.
12+
513
## 19.2.48 (2021-07-20)
614

715
### File Manager

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-vue-filemanager",
3-
"version": "19.2.48",
3+
"version": "19.2.55",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/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+
## 19.2.56 (2021-08-17)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#338587` - Issue in assigning empty data to datasource has been resolved.
12+
- `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
13+
514
## 19.2.55 (2021-08-11)
615

716
### 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-vue-gantt",
3-
"version": "19.2.47",
3+
"version": "19.2.55",
44
"description": "Essential JS 2 Gantt Component for Vue",
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+
## 19.2.56 (2021-08-17)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I338201` - tab key issue in details rows has been resolved.
12+
- `#I338152` - Focusing issue after collapsing all grouped records has been fixed.
13+
- `#I336671` - first column cell is not focused properly with keyboard navigation has been fixed.
14+
515
## 19.2.55 (2021-08-11)
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-vue-grids",
3-
"version": "19.2.51",
3+
"version": "19.2.55",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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-vue-inputs",
3-
"version": "19.2.48",
3+
"version": "19.2.55",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#I331403` - The issue with "Kanban is not rendering properly when the data does not have the `keyField` mapping key" has been fixed.
12+
13+
## 19.2.47 (2021-07-13)
614

715
### Kanban
816

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-vue-kanban",
3-
"version": "19.2.46",
3+
"version": "19.2.55",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/src/kanban/kanban.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ for (let props of modelProps) {
2525

2626
export const isExecute: any = gh ? false : true;
2727

28-
export let tempProxy: any;
29-
3028
/**
3129
* `ej-kanban` represents the VueJS Kanban Component.
3230
* ```vue
@@ -61,7 +59,6 @@ export class KanbanComponent extends ComponentBase {
6159
this.bindProperties();
6260
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
6361
this.ej2Instances.setProperties = this.setProperties;
64-
tempProxy = this;
6562
}
6663
public setProperties(prop: any, muteOnChange: boolean): void {
6764
if(this.isVue3) {

components/layouts/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-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### Dashboard Layout
88

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-
## 19.2.55 (2021-08-11)
5+
## 19.2.56 (2021-08-17)
66

77
### ListView
88

components/maps/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,9 @@
288288

289289
#### Bug Fixes
290290

291+
- Now map is rendering properly in universal applications.
292+
- Now panning works properly without freezing
293+
291294
- Now map is rendering properly in universal applications
292295
- Now panning works properly without freezing
293296

0 commit comments

Comments
 (0)