Skip to content

Commit 193cdd9

Browse files
author
pipeline
committed
v19.3.47 is released
1 parent c406da5 commit 193cdd9

Some content is hidden

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

45 files changed

+170
-47
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.3.46 (2021-10-19)
5+
## 19.3.44 (2021-10-05)
66

77
### Chips
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": "18.24.0",
3+
"version": "19.3.44",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Button } from '@syncfusion/ej2-buttons';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['content', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'locale', 'created'];
9+
export const properties: string[] = ['islazyUpdate', 'content', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'locale', 'created'];
1010
export const modelProps: string[] = [];
1111

1212
export const testProp: any = getProps({props: properties});

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { CheckBox } from '@syncfusion/ej2-buttons';
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['checked', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'indeterminate', 'label', 'labelPosition', 'locale', 'name', 'value', 'change', 'created'];
10+
export const properties: string[] = ['islazyUpdate', 'checked', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'indeterminate', 'label', 'labelPosition', 'locale', 'name', 'value', 'change', 'created'];
1111
export const modelProps: string[] = ['checked', 'indeterminate'];
1212

1313
export const testProp: any = getProps({props: properties});
@@ -125,8 +125,10 @@ export class CheckBoxComponent extends ComponentBase {
125125
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
126126
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
127127
} else {
128-
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
129-
(this as any).$emit('modelchanged', eventProp[propKey]);
128+
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.islazyUpdate)) {
129+
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
130+
(this as any).$emit('modelchanged', eventProp[propKey]);
131+
}
130132
}
131133
}
132134
} else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ChipsDirective, ChipDirective, ChipsPlugin, ChipPlugin } from './chips.
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'leadingIconUrl', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'trailingIconUrl', 'beforeClick', 'click', 'created', 'delete'];
10+
export const properties: string[] = ['islazyUpdate', 'avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'leadingIconUrl', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'trailingIconUrl', 'beforeClick', 'click', 'created', 'delete'];
1111
export const modelProps: string[] = [];
1212

1313
export const testProp: any = getProps({props: properties});

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { RadioButton } from '@syncfusion/ej2-buttons';
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['checked', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'label', 'labelPosition', 'locale', 'name', 'value', 'change', 'created'];
10+
export const properties: string[] = ['islazyUpdate', 'checked', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'label', 'labelPosition', 'locale', 'name', 'value', 'change', 'created'];
1111
export const modelProps: string[] = ['value'];
1212

1313
export const testProp: any = getProps({props: properties});
@@ -125,8 +125,10 @@ export class RadioButtonComponent extends ComponentBase {
125125
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
126126
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
127127
} else {
128-
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
129-
(this as any).$emit('modelchanged', eventProp[propKey]);
128+
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.islazyUpdate)) {
129+
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
130+
(this as any).$emit('modelchanged', eventProp[propKey]);
131+
}
130132
}
131133
}
132134
} else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Switch } from '@syncfusion/ej2-buttons';
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['checked', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'locale', 'name', 'offLabel', 'onLabel', 'value', 'change', 'created'];
10+
export const properties: string[] = ['islazyUpdate', 'checked', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'locale', 'name', 'offLabel', 'onLabel', 'value', 'change', 'created'];
1111
export const modelProps: string[] = ['checked'];
1212

1313
export const testProp: any = getProps({props: properties});
@@ -125,8 +125,10 @@ export class SwitchComponent extends ComponentBase {
125125
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
126126
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
127127
} else {
128-
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
129-
(this as any).$emit('modelchanged', eventProp[propKey]);
128+
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.islazyUpdate)) {
129+
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
130+
(this as any).$emit('modelchanged', eventProp[propKey]);
131+
}
130132
}
131133
}
132134
} else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {

components/calendars/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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### TimePicker
88

components/charts/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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### Chart
88

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.3.46 (2021-10-19)
8+
## 19.3.47 (2021-10-26)
99

1010
### CircularGauge
1111

components/diagrams/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.3.47 (2021-10-26)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I342681` - The issue "BPMN Task shape becomes square shape when printing the diagram" has been fixed.
12+
- `#I345844` - The issue "An exception occurs when perform search in the symbol palette" has been fixed.
13+
514
## 19.3.46 (2021-10-19)
615

716
### 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-vue-diagrams",
3-
"version": "19.3.45",
3+
"version": "19.3.46",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/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.3.47 (2021-10-26)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I337087`, `#I344332` - Improved the suggestion construction logic for error words.
12+
- `#I338302` - Resolved the hanging issue when opening document with table.
13+
- `#I339240` - RTL list is now deleted properly.
14+
515
## 19.3.46 (2021-10-19)
616

717
### 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-vue-documenteditor",
3-
"version": "19.3.45",
3+
"version": "19.3.46",
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.3.47 (2021-10-26)
6+
7+
### Dropdown Tree
8+
9+
#### Bug Fixes
10+
11+
- `#I343096` - The issue with "The Dropdown Tree item getting unselected when clicking the text content of the input element" has been fixed.
12+
513
## 19.3.46 (2021-10-19)
614

715
### Dropdown Tree

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.3.45",
3+
"version": "19.3.46",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### File Manager
88

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.3.47 (2021-10-26)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
12+
- `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
13+
- `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
14+
- `#341691` - Bring back browser default context menu in dialog editing has been fixed.
15+
16+
#### Breaking Changes
17+
18+
- Add and Edit dialog is now rendered as direct child to *body* element.
19+
520
## 19.3.46 (2021-10-19)
621

722
### 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.3.45",
3+
"version": "19.3.46",
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 19.3.47 (2021-10-26)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I345516` - Grid sort icon overlapping with column header text in `boostrap5` theme issue has been fixed.
12+
- `#I341348` - Provided the support for clearing all the Grid actions.
13+
- `#I344299` - Grid data is not loaded when using custom binding with `Infinitescrolling` is fixed.
14+
- `#F167378` - Throws scripts error while apply sorting in load event with `Infinitescrolling` is resolved.
15+
- `#I345190` - Date column filtering operator issue has been fixed.
16+
517
## 19.3.46 (2021-10-19)
618

719
### Grid
@@ -11,6 +23,7 @@
1123
- `#I343873` - Infinite Scroll spinner issue while loading next block is fixed.
1224
- `#I344229` - Script error while searching in the infinite scrolling enabled is resolved.
1325
- `#I344295` - Infinite scroll grid is duplicating the last row issue has been fixed.
26+
- `#FB21743` - Grouping collapse is not working properly with Infinite scroll if it don't have aggregates issue has been fixed.
1427

1528
- `#I343344` - column template destroyed was not triggered has been fixed.
1629

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.3.45",
3+
"version": "19.3.46",
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/inplaceeditor/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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### In-place Editor
88

components/kanban/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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### Kanban
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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### ListView
88

components/maps/CHANGELOG.md

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

1515
## [Unreleased]
1616

17-
## 19.3.46 (2021-10-19)
17+
## 19.3.47 (2021-10-26)
1818

1919
### Maps
2020

components/navigations/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.3.46 (2021-10-19)
5+
## 19.3.47 (2021-10-26)
66

77
### Tab
88

components/pdfviewer/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.3.47 (2021-10-26)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#344034` - The Script error will no longer be thrown if we select text markup annotation when text selection is disabled.
12+
513
## 19.3.46 (2021-10-19)
614

715
### PDF Viewer

components/pdfviewer/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-pdfviewer",
3-
"version": "19.3.45",
3+
"version": "19.3.46",
44
"description": "Essential JS 2 PDF viewer Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pivotview/CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
#### Bug Fixes
1919

2020
- `#F168308` - The pivot table can now be rendered properly with custom number formats.
21-
- `#339705` - When the virtualization feature is used, the pivot table can now be rendered properly without an unnecessary horizontal scrollbar when the content does not require it.
22-
- `#341987` - The pivot table can now be rendered properly while perform filtering with OLAP data source.
23-
- `#342221` - The pivot table can now be rendered properly while applying date grouing through UI.
21+
- `#I339705` - When the virtualization feature is used, the pivot table can now be rendered properly without an unnecessary horizontal scrollbar when the content does not require it.
22+
- `#I341987` - The pivot table can now be rendered properly while perform filtering with OLAP data source.
23+
- `#I342221` - The pivot table can now be rendered properly while applying date grouing through UI.
2424
- The column headers are now displayed properly while perform resizing.
25-
- `#342221` - The pivot table can now be rendered properly while perform member filtering with an empty header.
25+
- `#I342221` - The pivot table can now be rendered properly while perform member filtering with an empty header.
2626

2727
#### New Features
2828

29-
- `#300095` - Provided support to display measures at any desired positions in the column or row axis for relational data sources.
29+
- `#I300095` - Provided support to display measures at any desired positions in the column or row axis for relational data sources.
3030

3131
## 19.2.56 (2021-08-17)
3232

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

components/pivotview/src/pivotview/pivotview.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ export class PivotViewComponent extends ComponentBase {
137137
return this.ej2Instances.getCellTemplate();
138138
}
139139

140+
public getRowText(rowIndex: number, colIndex: number): string {
141+
return this.ej2Instances.getRowText(rowIndex, colIndex);
142+
}
143+
140144
public loadPersistData(persistData: string): void {
141145
return this.ej2Instances.loadPersistData(persistData);
142146
}

components/popups/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.3.47 (2021-10-26)
6+
7+
### Tooltip
8+
9+
- `#I341459` - The issue with "The Tooltip's pop-up position misaligns on window resize" has been resolved.
10+
511
## 19.2.62 (2021-09-14)
612

713
### Dialog

0 commit comments

Comments
 (0)