Skip to content

Commit 863a34c

Browse files
author
pipeline
committed
v19.3.45 is released
1 parent 368ede1 commit 863a34c

Some content is hidden

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

49 files changed

+200
-46
lines changed

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

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

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width', 'invalid'];
1010
export const modelProps: string[] = [];
1111

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

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

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

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

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

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

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

77

88
// {{VueImport}}
9-
export const properties: string[] = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
9+
export const properties: string[] = ['islazyUpdate', 'backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'margin', 'mode', 'value', 'version', 'width', 'xDimension', 'invalid'];
1010
export const modelProps: string[] = [];
1111

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

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.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
66

77
### Chips
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.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
66

77
### Chart
88

components/diagrams/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.45 (2021-10-12)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I342681` - The issue "BPMN Task shape becomes ellipse shape when printing the diagram" has been fixed.
12+
513
## 19.3.44 (2021-10-05)
614

715
### 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.2.62",
3+
"version": "19.3.44",
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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I341435` - Optimized the content change event triggering in Document Editor.
12+
- `#I340867` - Selection issue after applying character format is resolved.
13+
- `#I341335` - Resolved the text formatting preservation for merge fields.
14+
- `#I339239`, `#I339242`, `#I339021` - Resolved the text arrangement issue for RTL documents.
15+
- `#I335659` - Resolved the undo/redo some text in RTL mode.
16+
- `#I340643` - Resolved the comment mark removal issue in comment delete.
17+
- `#I339335` - Resolved the hanging issue in editing document with Hebrew text.
18+
- `#I340121` - Resolved the issue with elbow connector rendering as line connector.
19+
- `#I339453` - Resolved the rendering issue in fixed table width case.
20+
- `#I341119` - Resolved the image with top and bottom wrapping overlapping issue with table.
21+
22+
#### New Features
23+
24+
- `#I343497` - Added support to render the texture style for table cell shading.
25+
526
## 19.3.44 (2021-10-05)
627

728
### 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.18.7",
3+
"version": "19.3.44",
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#I343666` - Issue with "data list is not updated to the popup while changing the query property on dynamically with filtering mode" has been resolved.
12+
513
## 19.3.44 (2021-10-05)
614

715
### Dropdown Tree
@@ -13,6 +21,7 @@
1321
#### Bug Fixes
1422

1523
- `#I342360`, `#I342351` - The issue with "The Dropdown Tree component is not rendered when providing an id that starts with an integer type" has been resolved.
24+
- `I341114` - Issue with "When listbox is selected with checkbox, drag and drop is not working properly" has been resolved.
1625

1726
## 19.2.62 (2021-09-14)
1827

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": "18.30.0",
3+
"version": "19.3.44",
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.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
66

77
### File Manager
88

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+
## 19.3.45 (2021-10-12)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#342557` - In fixed work type duration update issue has been fixed.
12+
- `#340406` - Misalignment while using line height property issue has been fixed.
13+
- `#310346` - Pdf export issue while changing date format has been fixed.
14+
515
## 19.3.44 (2021-10-05)
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": "19.25.2",
3+
"version": "19.3.44",
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: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { EventMarkersDirective, EventMarkerDirective, EventMarkersPlugin, EventM
1313

1414

1515
// {{VueImport}}
16-
export const properties: string[] = ['addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowUnscheduledTasks', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableContextMenu', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'validateManualTasksOnLinking', 'viewType', 'width', 'workUnit', 'workWeek', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSelected', 'cellSelecting', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataStateChange', 'destroyed', 'endEdit', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'onMouseMove', 'onTaskbarClick', 'pdfColumnHeaderQueryCellInfo', 'pdfExportComplete', 'pdfQueryCellInfo', 'pdfQueryTaskbarInfo', 'pdfQueryTimelineCellInfo', 'queryCellInfo', 'queryTaskbarInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'splitterResizeStart', 'splitterResized', 'splitterResizing', 'taskbarEdited', 'taskbarEditing', 'toolbarClick'];
16+
export const properties: string[] = ['islazyUpdate', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowUnscheduledTasks', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableContextMenu', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'validateManualTasksOnLinking', 'viewType', 'width', 'workUnit', 'workWeek', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSelected', 'cellSelecting', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataStateChange', 'destroyed', 'endEdit', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'onMouseMove', 'onTaskbarClick', 'pdfColumnHeaderQueryCellInfo', 'pdfExportComplete', 'pdfQueryCellInfo', 'pdfQueryTaskbarInfo', 'pdfQueryTimelineCellInfo', 'queryCellInfo', 'queryTaskbarInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'splitterResizeStart', 'splitterResized', 'splitterResizing', 'taskbarEdited', 'taskbarEditing', 'toolbarClick'];
1717
export const modelProps: string[] = ['dataSource'];
1818

1919
export const testProp: any = getProps({props: properties});
@@ -131,8 +131,10 @@ export class GanttComponent extends ComponentBase {
131131
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
132132
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
133133
} else {
134-
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
135-
(this as any).$emit('modelchanged', eventProp[propKey]);
134+
if (eventName === 'change' || ((this as any).$props && !(this as any).$props.islazyUpdate)) {
135+
(this as any).$emit('update:'+ propKey, eventProp[propKey]);
136+
(this as any).$emit('modelchanged', eventProp[propKey]);
137+
}
136138
}
137139
}
138140
} else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I339088` - Export the Grouped first column becomes empty is resolved.
12+
- `#FB27888` - Cell Edit Template is not working when using dropdown component with filtering is fixed.
13+
- `#I338678` - Frozen horizontal scroll is not working in `Ipad` device has been fixed.
14+
- `#I342380` - Command button click event argument missing issue has been fixed.
15+
516
## 19.3.44 (2021-10-05)
617

718
### 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": "1.93.2",
3+
"version": "19.3.44",
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/kanban/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,26 @@
22

33
## [Unreleased]
44

5+
## 19.3.45 (2021-10-12)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#FB29010` - The issue with "`showItemCount` in swimlane row is not resetting to zero if no cards are present" has been resolved.
12+
513
## 19.3.44 (2021-10-05)
614

715
### Kanban
816

17+
#### Bug Fixes
18+
19+
- `#F169009` - The issue with "Script error thrown when enabling the `enablePersistence` property with remote data" has been resolved.
20+
21+
## 19.3.43 (2021-09-30)
22+
23+
### Kanban
24+
925
#### New Features
1026

1127
- `#I299672` - Provided support to bind the `ObservableCollection` data to the Kanban board.

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": "0.54.4",
3+
"version": "19.3.44",
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/layouts/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-layouts",
3-
"version": "18.23.7",
3+
"version": "19.3.44",
44
"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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/layouts/src/dashboard-layout/dashboardlayout.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PanelsDirective, PanelDirective, PanelsPlugin, PanelPlugin } from './pa
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines', 'change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
10+
export const properties: string[] = ['islazyUpdate', 'allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines', 'change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
1111
export const modelProps: string[] = [];
1212

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

components/layouts/src/splitter/splitter.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PanesDirective, PaneDirective, PanesPlugin, PanePlugin } from './panese
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width', 'beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
10+
export const properties: string[] = ['islazyUpdate', 'cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width', 'beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
1111
export const modelProps: string[] = [];
1212

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

components/lists/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.45 (2021-10-12)
6+
7+
### ListView
8+
9+
#### Bug Fixes
10+
11+
- `#F152660` - The issue with "ListView is not rendered while using both checkbox and template" has been resolved.
12+
513
## 19.3.44 (2021-10-05)
614

715
### ListView

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

components/lists/src/list-view/listview.component.ts

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

77

88
// {{VueImport}}
9-
export const properties: string[] = ['animation', 'checkBoxPosition', 'cssClass', 'dataSource', 'enable', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'fields', 'groupTemplate', 'headerTemplate', 'headerTitle', 'height', 'htmlAttributes', 'locale', 'query', 'showCheckBox', 'showHeader', 'showIcon', 'sortOrder', 'template', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'select'];
9+
export const properties: string[] = ['islazyUpdate', 'animation', 'checkBoxPosition', 'cssClass', 'dataSource', 'enable', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'fields', 'groupTemplate', 'headerTemplate', 'headerTitle', 'height', 'htmlAttributes', 'locale', 'query', 'showCheckBox', 'showHeader', 'showIcon', 'sortOrder', 'template', 'width', 'actionBegin', 'actionComplete', 'actionFailure', 'select'];
1010
export const modelProps: string[] = [];
1111

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

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.44 (2021-10-05)
17+
## 19.3.45 (2021-10-12)
1818

1919
### Maps
2020

components/navigations/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.3.44 (2021-10-05)
5+
## 19.3.45 (2021-10-12)
6+
7+
### Breadcrumb
8+
9+
#### Bug Fixes
10+
11+
- Disabled item get tab focus when item's URL is specified issue has been resolved.
12+
13+
## 19.3.43 (2021-09-30)
614

715
### Tab
816

components/navigations/package.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-navigations",
3-
"version": "19.24.0",
3+
"version": "19.3.44",
44
"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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -46,6 +46,18 @@
4646
"context menu",
4747
"contextmenu",
4848
"breadcrumb",
49+
"breadcrumb navigation",
50+
"breadcrumb trail",
51+
"ej2 breadcrumb",
52+
"navigation links",
53+
"navigational aid",
54+
"previous page navigation",
55+
"current page hierarchy",
56+
"current page location",
57+
"path of url",
58+
"trace page location",
59+
"list of breadcrumb links",
60+
"breadcrumb routing",
4961
"ej2 contextmenu",
5062
"tab-directive",
5163
"toolbar-directive",

components/pdfviewer/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.45 (2021-10-12)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#F169102` - Now, the download action is working properly after importing the provided customer document.
12+
- `#342951` - Now, the Bookmark navigation is working properly in mobile mode.
13+
- `#343011` - Now, the download action is working properly after adding the text markup annotation.
14+
515
## 19.3.44 (2021-10-05)
616

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

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": "18.15.12",
3+
"version": "19.3.44",
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",

0 commit comments

Comments
 (0)