Skip to content

Commit 368ede1

Browse files
author
pipeline
committed
v19.3.44 is released
1 parent c3c0250 commit 368ede1

File tree

66 files changed

+301
-107
lines changed

Some content is hidden

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

66 files changed

+301
-107
lines changed

components/buttons/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.3.44 (2021-10-05)
6+
7+
### Chips
8+
9+
#### Bug Fixes
10+
11+
- `F167517` - The issue with "JEST test case failure with Chip component" has been resolved.
12+
513
## 19.2.47 (2021-07-13)
614

715
### Checkbox

components/charts/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 19.3.44 (2021-10-05)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I342789` - Tooltip fade out duration works properly on mobile device.
12+
- `#F168868` - `OnZooming` event is now triggering properly.
13+
- `#I339227` - Logarithmic axis range is working fine even value "0" is given.
14+
- `#F169237` - Spline curve is not proper for null values is fixed.
15+
516
## 19.3.43 (2021-09-30)
617

718
### Chart

components/diagrams/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 19.3.44 (2021-10-05)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I337722` - The issue "Connector Position not Updated Properly when rotating it with segments" has been fixed.
12+
- `#I341943` - The issue "BringIntoView API does not bring the large bounds into the screen viewport" has been fixed.
13+
514
## 19.3.43 (2021-09-30)
615

716
### Diagram
@@ -16,6 +25,7 @@
1625
- `#I339619` - The issue "An exception occurs when save and load the swimlane with BPMN children" has been fixed.
1726
- `#I339487` - The issue "The connector drawing object does not snap to near by port" has been fixed.
1827
- `#I342173` - The issue "An exception occurs when clear the diagram using Clear API" has been fixed.
28+
- `#I341524` - The issue "The selection change event returns empty NewValue argument while selecting one of the multi-selected nodes" has been fixed.
1929

2030
## 19.2.56 (2021-08-17)
2131

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "19.2.61",
3+
"version": "19.2.62",
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/diagrams/src/diagram/diagram.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { NodesDirective, NodeDirective, NodesPlugin, NodePlugin } from './nodes.
1515

1616

1717
// {{VueImport}}
18-
export const properties: string[] = ['addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
18+
export const properties: string[] = ['islazyUpdate', 'addInfo', 'annotationTemplate', 'backgroundColor', 'bridgeDirection', 'commandManager', 'connectorDefaults', 'connectors', 'constraints', 'contextMenuSettings', 'customCursor', 'dataSourceSettings', 'diagramSettings', 'drawingObject', 'enablePersistence', 'enableRtl', 'getConnectorDefaults', 'getCustomCursor', 'getCustomProperty', 'getCustomTool', 'getDescription', 'getNodeDefaults', 'height', 'historyManager', 'layers', 'layout', 'locale', 'mode', 'nodeDefaults', 'nodeTemplate', 'nodes', 'pageSettings', 'rulerSettings', 'scrollSettings', 'selectedItems', 'serializationSettings', 'setNodeTemplate', 'snapSettings', 'tool', 'tooltip', 'updateSelection', 'userHandleTemplate', 'width', 'animationComplete', 'click', 'collectionChange', 'commandExecute', 'connectionChange', 'contextMenuBeforeItemRender', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataLoaded', 'doubleClick', 'dragEnter', 'dragLeave', 'dragOver', 'drop', 'expandStateChange', 'fixedUserHandleClick', 'historyChange', 'historyStateChange', 'keyDown', 'keyUp', 'mouseEnter', 'mouseLeave', 'mouseOver', 'onImageLoad', 'onUserHandleMouseDown', 'onUserHandleMouseEnter', 'onUserHandleMouseLeave', 'onUserHandleMouseUp', 'positionChange', 'propertyChange', 'rotateChange', 'scrollChange', 'segmentCollectionChange', 'selectionChange', 'sizeChange', 'sourcePointChange', 'targetPointChange', 'textEdit'];
1919
export const modelProps: string[] = [];
2020

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

components/diagrams/src/overview/overview.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Overview } from '@syncfusion/ej2-diagrams';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width', 'created'];
9+
export const properties: string[] = ['islazyUpdate', 'enablePersistence', 'enableRtl', 'height', 'locale', 'sourceID', 'width', 'created'];
1010
export const modelProps: string[] = [];
1111

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

components/diagrams/src/symbol-palette/symbolpalette.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PalettesDirective, PaletteDirective, PalettesPlugin, PalettePlugin } fr
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['accessKey', 'allowDrag', 'connectorDefaults', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSearch', 'expandMode', 'filterSymbols', 'getConnectorDefaults', 'getNodeDefaults', 'getSymbolInfo', 'getSymbolTemplate', 'height', 'ignoreSymbolsOnSearch', 'locale', 'nodeDefaults', 'palettes', 'symbolDragSize', 'symbolHeight', 'symbolInfo', 'symbolMargin', 'symbolPreview', 'symbolWidth', 'width', 'paletteExpanding', 'paletteSelectionChange'];
10+
export const properties: string[] = ['islazyUpdate', 'accessKey', 'allowDrag', 'connectorDefaults', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSearch', 'expandMode', 'filterSymbols', 'getConnectorDefaults', 'getNodeDefaults', 'getSymbolInfo', 'getSymbolTemplate', 'height', 'ignoreSymbolsOnSearch', 'locale', 'nodeDefaults', 'palettes', 'symbolDragSize', 'symbolHeight', 'symbolInfo', 'symbolMargin', 'symbolPreview', 'symbolWidth', 'width', 'paletteExpanding', 'paletteSelectionChange'];
1111
export const modelProps: string[] = [];
1212

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

components/documenteditor/CHANGELOG.md

+34-7
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,36 @@
22

33
## [Unreleased]
44

5-
## 19.3.43 (2021-09-30)
5+
## 19.3.44 (2021-10-05)
66

77
### Document Editor
88

9+
#### Bug Fixes
10+
11+
- `#I339602` – Track changes is now updated properly in header and footer.
12+
- `#I341964`, `#I342165` – Resolved the text rearrange issue in copy/paste of RTL text.
13+
- `#I339714` – Footnote order is now updated properly.
14+
- `#I339973` - Table serialization issue in word export is resolved.
15+
- `#I340795` – Issue with copying field is resolved.
16+
- `#I339872` – Page number is footer is now updated properly.
17+
- `#I339576`, `#F168072` – Resolved the issue in applying page orientation with the section break.
18+
- `#I339027` – Resolved the script error in saving tracked content in header/footer.
19+
- `#I340532` – Html elements are nor properly disposed.
20+
- `#F168319` – Resolved the ViewChange event binding issue in Document Editor component
21+
- `#I340643`, `#I341375` – Resolved the history issue in comment operations
22+
- `#I341840` – Resolved the table rendering issue.
23+
924
#### New Features
1025

11-
- `#I256210`, `#F150773`, `#I295055`, `#I295551`, `#I324037`, `#I326715` - Added support for Widow/Orphan control, Keep with next and Keep lines together properties.
12-
- `#I298019`, `#I307321`, `#F160804`, `#F164217`, `#F164872` – Improved the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents.
13-
- `#I243246`, `#I249594`, `#I287633`, `#I295055`, `#I295549`, `#I299657`, `#I308408`, `#I326567` – Added support to preserve tables with position properties.
14-
- Added option to directly convert DocIO's WordDocument to SFDT and vice-versa in .NET and Java server-side library.
15-
- Added Word-to-SFDT conversion in Java server-side library.
16-
- Added new spell checker library for Java.
26+
- `#I342110` - Added event to customize the XMLHttpRequest in DocumentEditor and DocumentEditorContainer component.
27+
28+
## 19.3.43 (2021-09-30)
29+
30+
### Document Editor
31+
32+
#### Breaking Changes
33+
34+
- Optimized the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents. This improvement is included as default behaviour along with an optional API `enableOptimizedTextMeasuring` in Document editor settings. To disable this improvement and retain the document pagination behaviour of older versions, kindly set `false` to `enableOptimizedTextMeasuring` property.
1735

1836
#### Bug Fixes
1937

@@ -76,6 +94,15 @@
7694
- `#I341016` - Resolved the script error while exporting a document with empty list.
7795
- `#I334046` - Optimized the spell check by page service call in optimized spell check mode.
7896

97+
#### New Features
98+
99+
- `#I256210`, `#F150773`, `#I295055`, `#I295551`, `#I324037`, `#I326715` - Added support for Widow/Orphan control, Keep with next and Keep lines together properties.
100+
- `#I298019`, `#I307321`, `#F160804`, `#F164217`, `#F164872` – Improved the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents.
101+
- `#I243246`, `#I249594`, `#I287633`, `#I295055`, `#I295549`, `#I299657`, `#I308408`, `#I326567` – Added support to preserve tables with position properties.
102+
- Added option to directly convert DocIO's WordDocument to SFDT and vice-versa in .NET and Java server-side library.
103+
- Added Word-to-SFDT conversion in Java server-side library.
104+
- Added new spell checker library for Java.
105+
79106
## 19.2.62 (2021-09-14)
80107

81108
### Document Editor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "19.15.0",
3+
"version": "19.18.7",
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/documenteditor/src/document-editor-container/documenteditorcontainer.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DocumentEditorContainer } from '@syncfusion/ej2-documenteditor';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['currentUser', 'documentEditorSettings', 'enableComment', 'enableCsp', 'enableLocalPaste', 'enableLockAndEdit', 'enablePersistence', 'enableRtl', 'enableSpellCheck', 'enableToolbar', 'enableTrackChanges', 'headers', 'height', 'layoutType', 'locale', 'restrictEditing', 'serverActionSettings', 'serviceUrl', 'showPropertiesPane', 'toolbarItems', 'userColor', 'width', 'zIndex', 'beforeCommentAction', 'beforePaneSwitch', 'commentDelete', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'selectionChange', 'serviceFailure', 'toolbarClick', 'trackChange'];
9+
export const properties: string[] = ['islazyUpdate', 'currentUser', 'documentEditorSettings', 'enableComment', 'enableCsp', 'enableLocalPaste', 'enableLockAndEdit', 'enablePersistence', 'enableRtl', 'enableSpellCheck', 'enableToolbar', 'enableTrackChanges', 'headers', 'height', 'layoutType', 'locale', 'restrictEditing', 'serverActionSettings', 'serviceUrl', 'showPropertiesPane', 'toolbarItems', 'userColor', 'width', 'zIndex', 'beforeCommentAction', 'beforePaneSwitch', 'commentDelete', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'selectionChange', 'serviceFailure', 'toolbarClick', 'trackChange', 'beforeXmlHttpRequestSend'];
1010
export const modelProps: string[] = [];
1111

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

components/documenteditor/src/document-editor/documenteditor.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
66

77

88
// {{VueImport}}
9-
export const properties: string[] = ['acceptTab', 'currentUser', 'defaultPasteOption', 'documentEditorSettings', 'documentName', 'enableBookmarkDialog', 'enableBordersAndShadingDialog', 'enableComment', 'enableContextMenu', 'enableCursorOnReadOnly', 'enableEditor', 'enableEditorHistory', 'enableFontDialog', 'enableFootnoteAndEndnoteDialog', 'enableFormField', 'enableHyperlinkDialog', 'enableImageResizer', 'enableListDialog', 'enableLocalPaste', 'enableLockAndEdit', 'enableOptionsPane', 'enablePageSetupDialog', 'enableParagraphDialog', 'enablePersistence', 'enablePrint', 'enableRtl', 'enableSearch', 'enableSelection', 'enableSfdtExport', 'enableSpellCheck', 'enableStyleDialog', 'enableTableDialog', 'enableTableOfContentsDialog', 'enableTableOptionsDialog', 'enableTablePropertiesDialog', 'enableTextExport', 'enableTrackChanges', 'enableWordExport', 'headers', 'height', 'isReadOnly', 'layoutType', 'locale', 'pageGap', 'pageOutline', 'serverActionSettings', 'serviceUrl', 'showComments', 'showRevisions', 'useCtrlClickToFollowHyperlink', 'userColor', 'width', 'zIndex', 'zoomFactor', 'actionComplete', 'afterFormFieldFill', 'beforeCommentAction', 'beforeFileOpen', 'beforeFormFieldFill', 'beforePaneSwitch', 'commentBegin', 'commentDelete', 'commentEnd', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'keyDown', 'requestNavigate', 'searchResultsChange', 'selectionChange', 'serviceFailure', 'trackChange', 'viewChange', 'zoomFactorChange'];
9+
export const properties: string[] = ['islazyUpdate', 'acceptTab', 'currentUser', 'defaultPasteOption', 'documentEditorSettings', 'documentName', 'enableBookmarkDialog', 'enableBordersAndShadingDialog', 'enableComment', 'enableContextMenu', 'enableCursorOnReadOnly', 'enableEditor', 'enableEditorHistory', 'enableFontDialog', 'enableFootnoteAndEndnoteDialog', 'enableFormField', 'enableHyperlinkDialog', 'enableImageResizer', 'enableListDialog', 'enableLocalPaste', 'enableLockAndEdit', 'enableOptionsPane', 'enablePageSetupDialog', 'enableParagraphDialog', 'enablePersistence', 'enablePrint', 'enableRtl', 'enableSearch', 'enableSelection', 'enableSfdtExport', 'enableSpellCheck', 'enableStyleDialog', 'enableTableDialog', 'enableTableOfContentsDialog', 'enableTableOptionsDialog', 'enableTablePropertiesDialog', 'enableTextExport', 'enableTrackChanges', 'enableWordExport', 'headers', 'height', 'isReadOnly', 'layoutType', 'locale', 'pageGap', 'pageOutline', 'serverActionSettings', 'serviceUrl', 'showComments', 'showRevisions', 'useCtrlClickToFollowHyperlink', 'userColor', 'width', 'zIndex', 'zoomFactor', 'actionComplete', 'afterFormFieldFill', 'beforeCommentAction', 'beforeFileOpen', 'beforeFormFieldFill', 'beforePaneSwitch', 'commentBegin', 'commentDelete', 'commentEnd', 'contentChange', 'contentControl', 'created', 'customContextMenuBeforeOpen', 'customContextMenuSelect', 'destroyed', 'documentChange', 'keyDown', 'requestNavigate', 'searchResultsChange', 'selectionChange', 'serviceFailure', 'trackChange', 'viewChange', 'zoomFactorChange', 'beforeXmlHttpRequestSend'];
1010
export const modelProps: string[] = [];
1111

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

components/dropdowns/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.3.43 (2021-09-30)
5+
## 19.3.44 (2021-10-05)
66

77
### Dropdown Tree
88

components/dropdowns/src/auto-complete/autocomplete.component.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { AutoComplete } from '@syncfusion/ej2-dropdowns';
77

88

99
// {{VueImport}}
10-
export const properties: string[] = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'highlight', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'minLength', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'showPopupButton', 'sortOrder', 'suggestionCount', 'text', 'value', 'valueTemplate', 'width', 'zIndex', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select'];
10+
export const properties: string[] = ['islazyUpdate', 'actionFailureTemplate', 'allowCustom', 'allowFiltering', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'highlight', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'minLength', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'showPopupButton', 'sortOrder', 'suggestionCount', 'text', 'value', 'valueTemplate', 'width', 'zIndex', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select'];
1111
export const modelProps: string[] = ['value'];
1212

1313
export const testProp: any = getProps({props: properties});
@@ -125,8 +125,10 @@ export class AutoCompleteComponent 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)) {

0 commit comments

Comments
 (0)