Skip to content

Commit 095c9a6

Browse files
author
pipeline
committed
v20.1.55 is released
1 parent 22e7c86 commit 095c9a6

File tree

46 files changed

+153
-37
lines changed

Some content is hidden

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

46 files changed

+153
-37
lines changed

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.1.52 (2022-05-04)
6-
7-
### Switch
8-
9-
#### Bug Fixes
10-
11-
- `#I362372` - The issue with "Script error occurs while using the reactive method in the switch component in Vue 3" has been resolved.
12-
135
## 20.1.50 (2022-04-19)
146

15-
### Radio Button
16-
17-
#### Bug Fixes
18-
19-
- `F171644` - Issue with Name attribute not updated properly in radio button and checkbox for components has been resolved.
20-
217
### Checkbox
228

239
#### Bug Fixes
@@ -433,6 +419,14 @@ RadioButton is a graphical user interface element that allows to select one opti
433419
- **Sizes** - Provided with different sizes of RadioButton.
434420

435421

422+
## 20.1.52 (2022-05-04)
423+
424+
### Switch
425+
426+
#### Bug Fixes
427+
428+
- `#I362372` - The issue with "Script error occurs while using the reactive method in the switch component in Vue 3" has been resolved.
429+
436430
## 18.4.39 (2021-01-28)
437431

438432
### RadioButton

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": "20.1.50",
3+
"version": "20.1.52",
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/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": "20.1.47",
3+
"version": "20.1.52",
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/calendars/src/calendar/calendar.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class CalendarComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/calendars/src/datepicker/datepicker.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class DatePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/calendars/src/daterangepicker/daterangepicker.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export class DateRangePickerComponent extends ComponentBase {
131131
if (!isExecute) {
132132
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
133133
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
134+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
134135
} else {
135136
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
136137
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/calendars/src/datetimepicker/datetimepicker.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class DateTimePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/calendars/src/timepicker/timepicker.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export class TimePickerComponent extends ComponentBase {
130130
if (!isExecute) {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
133134
} else {
134135
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
135136
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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+
## 20.1.55 (2022-05-12)
6+
7+
### Chart
8+
9+
#### New Features
10+
11+
- `#I360879` - Provided support to disable the marker explode without tooltip and highlight mode.
12+
513
## 20.1.52 (2022-05-04)
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": "20.1.51",
3+
"version": "20.1.52",
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/charts/src/accumulation-chart/accumulationchart.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ export class AccumulationChartComponent extends ComponentBase {
132132
if (!isExecute) {
133133
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
134134
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
135+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
135136
} else {
136137
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
137138
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/charts/src/bullet-chart/bulletchart.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export class BulletChartComponent extends ComponentBase {
131131
if (!isExecute) {
132132
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
133133
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
134+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
134135
} else {
135136
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
136137
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/charts/src/chart/chart.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ export class ChartComponent extends ComponentBase {
143143
if (!isExecute) {
144144
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
145145
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
146+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
146147
} else {
147148
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
148149
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/charts/src/range-navigator/rangenavigator.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export class RangeNavigatorComponent extends ComponentBase {
131131
if (!isExecute) {
132132
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
133133
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
134+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
134135
} else {
135136
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
136137
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/charts/src/stock-chart/stockchart.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ export class StockChartComponent extends ComponentBase {
139139
if (!isExecute) {
140140
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
141141
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
142+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
142143
} else {
143144
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
144145
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/circulargauge/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-circulargauge",
3-
"version": "16.39.0",
3+
"version": "20.1.47",
44
"description": "Essential JS 2 CircularGauge Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/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+
## 20.1.55 (2022-05-12)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I373763` - Now, old value of SelectionChange event are updated properly.
12+
- `#I373774` - The sourcePointChange and targetPointChange events are triggered while dragging the node.
13+
- `#I375741` - Now, the performance and Memory leak is resolved in the saveDiagram method.
14+
- `#I372151` - Now, bezier connector annotation get exported properly as an image.
15+
- `#I376498` - Now, the diagram zooming behaviour is changed as an old behaviour.
16+
517
## 20.1.51 (2022-04-26)
618

719
### Diagram

components/diagrams/src/diagram/diagram.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,8 @@ export class DiagramComponent extends ComponentBase {
455455
return this.ej2Instances.scale(obj, sx, sy, pivot);
456456
}
457457

458-
public select(objects: undefined[], multipleSelection?: boolean): void {
459-
return this.ej2Instances.select(objects, multipleSelection);
458+
public select(objects: undefined[], multipleSelection?: boolean, oldValue?: undefined[]): void {
459+
return this.ej2Instances.select(objects, multipleSelection, oldValue);
460460
}
461461

462462
public selectAll(): void {

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": "20.1.51",
3+
"version": "20.1.52",
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/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": "20.1.51",
3+
"version": "20.1.52",
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+
## 20.1.55 (2022-05-12)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#I368832`, `#I374668` - The issue with "Not able to upload an excel file in the File Manager component with SQL file provider" has been resolved.
12+
513
## 20.1.52 (2022-05-04)
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": "20.1.47",
3+
"version": "20.1.52",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 20.1.55 (2022-05-12)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#376228` - Duration is not updated while updating resource units using `updateRecordByID` method issue has been fixed.
12+
- `#370224` - Filtering issue when rendering Gantt inside the modal has been fixed.
13+
- `#376455` - Tab key navigation not working properly when moving from grid to timeline issue has been fixed.
14+
515
## 20.1.52 (2022-05-04)
616

717
### 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": "20.1.51",
3+
"version": "20.1.52",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/src/gantt/gantt.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ export class GanttComponent extends ComponentBase {
136136
if (!isExecute) {
137137
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
138138
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
139+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
139140
} else {
140141
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
141142
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

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": "20.1.51",
3+
"version": "20.1.52",
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/lineargauge/CHANGELOG.md

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

1515
## [Unreleased]
1616

17-
## 20.1.52 (2022-05-04)
17+
## 20.1.55 (2022-05-12)
18+
19+
### LinearGauge
20+
21+
#### Bug Fixes
22+
23+
- `#I377447` - When the bar pointer value is set to zero, the start of the pointer curve is properly rendered.
24+
- `#I377616` - The Linear Gauge, which is embedded in its root element, is now rendered in 50% height.
25+
26+
## 20.1.48 (2022-04-12)
1827

1928
### LinearGauge
2029

components/lineargauge/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-lineargauge",
3-
"version": "20.1.47",
3+
"version": "20.1.48",
44
"description": "Essential JS 2 LinearGauge Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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+
## 20.1.55 (2022-05-12)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `SF-372732`- A signature in the signature field will be displayed in the downloaded document when the form field properties have been updated using the `updateFormFields` method.
12+
513
## 20.1.52 (2022-05-04)
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": "20.1.51",
3+
"version": "20.1.52",
44
"description": "Essential JS 2 PDF viewer Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { PivotFieldList } from '@syncfusion/ej2-pivotview';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['isLazyUpdate', 'aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target', 'actionBegin', 'actionComplete', 'actionFailure', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped'];
9+
export const properties: string[] = ['isLazyUpdate', 'aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target', 'actionBegin', 'actionComplete', 'actionFailure', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
1010
export const modelProps: string[] = [];
1111

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { PivotView } from '@syncfusion/ej2-pivotview';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['isLazyUpdate', 'aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'currencyCode', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
9+
export const properties: string[] = ['isLazyUpdate', 'aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'currencyCode', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
1010
export const modelProps: string[] = [];
1111

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

components/popups/src/dialog/dialog.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export class DialogComponent extends ComponentBase {
131131
if (!isExecute) {
132132
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
133133
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
134+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
134135
} else {
135136
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.isLazyUpdate)) {
136137
(this as any).$emit('update:'+ propKey, eventProp[propKey]);

components/progressbar/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-progressbar",
3-
"version": "20.1.47",
3+
"version": "20.1.52",
44
"description": "Essential JS 2 ProgressBar Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/querybuilder/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+
## 20.1.55 (2022-05-12)
6+
7+
### QueryBuilder
8+
9+
#### Bug Fixes
10+
11+
- `I375944` - Issue with Null value is not available in IN operator of query builder has been fixed.
12+
513
## 20.1.51 (2022-04-26)
614

715
### QueryBuilder

0 commit comments

Comments
 (0)