Skip to content

Commit f13c9ea

Browse files
author
pipeline
committed
v23.1.40 is released
1 parent a7a1d75 commit f13c9ea

40 files changed

+170
-31
lines changed

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### Checkbox
88

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Chart
8+
9+
- `#I499384` - Now the chart series is getting focused properly after legend click.
10+
511
## 23.1.39 (2023-10-04)
612

713
### Chart

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "23.1.38",
3+
"version": "23.1.39",
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/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I184539` - Now, BPMN Group shape will Function Like Subprocess.
12+
- `#I484335` - Now, highlighter rendered properly on hovering ports and nodes.
13+
- `#F183609` - Now, External entries are added in startgroup and endgroup action.
14+
515
## 23.1.39 (2023-10-04)
616

717
### Diagram

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": "23.1.38",
3+
"version": "23.1.39",
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
214214
exportImage(image: string, options: Object): void {
215215
return this.ej2Instances.exportImage(image, options);
216216
},
217-
findElementUnderMouse(obj: Object, position: Object, padding?: number): Object {
218-
return this.ej2Instances.findElementUnderMouse(obj, position, padding);
217+
findElementUnderMouse(obj: Object, position: Object, diagram: Object, padding?: number): Object {
218+
return this.ej2Instances.findElementUnderMouse(obj, position, diagram, padding);
219219
},
220220
findObjectUnderMouse(objects: undefined[], action: Object, inAction: boolean): Object {
221221
return this.ej2Instances.findObjectUnderMouse(objects, action, inAction);

components/documenteditor/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I483749` - Resolved the table title and description preservation issue in server side save.
12+
- `#I504150` - Resolved the svg image issue.
13+
- `#I485502` - Resolved the URL image refresh issue while opening the exported document.
14+
- `#I505977` - Heading style destroyed when insert hyperlink.
15+
- `#I506107` - Resolved the issue, footnote content is disappeared when open saved sfdt.
16+
- `#I506619` - Resolved the exporting issue of attached sfdt.
17+
- `#I503945` - Script error occurred when tried to save the document using java server.
18+
- `#I483749` - Resolved the table title and description preservation issue in server side save.
19+
- `#I504150` - Resolved the svg image issue.
20+
- `#I485502` - Resolved the URL image refresh issue while opening the exported document.
21+
- `#I505977` - Heading style destroyed when insert hyperlink.
22+
- `#I506107` - Resolved the issue, footnote content is disappeared when open saved sfdt.
23+
- `#I506619` - Resolved the exporting issue of attached sfdt.
24+
- `#I503945` - Script error occurred when tried to save the document using java server.
25+
26+
#### New Features
27+
28+
- `#I461227` - Added text importing in client side.
29+
530
## 23.1.39 (2023-10-04)
631

732
### 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": "23.1.38",
3+
"version": "23.1.39",
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/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### FileManager
8+
9+
#### Bug Fixes
10+
11+
- `#I506921` - The issue with the breadcrumb bar path in the File Manager component has been resolved.
12+
- `#I503082` - The issue with the search placeholder is not updated properly after drag and drop in File Manager has been resolved.
13+
514
## 23.1.39 (2023-10-04)
615

716
### FileManager

components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-filemanager",
3-
"version": "23.1.38",
3+
"version": "23.1.39",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### GanttChart
88

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#I503161` - The additional default declaration in the `bootstrap4` theme definition file has been removed.
12+
513
## 23.1.39 (2023-10-04)
614

715
### Grid

components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-grids",
3-
"version": "23.1.38",
3+
"version": "23.1.39",
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/heatmap/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### HeatMap
88

components/imageeditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### ImageEditor
88

components/inputs/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.38 (2023-09-26)
66

77
### Signature
88

components/inputs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-inputs",
3-
"version": "23.1.36",
3+
"version": "23.1.38",
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

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### Kanban
88

components/lists/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### ListView
88

components/maps/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@
1414

1515
## [Unreleased]
1616

17-
## 23.1.39 (2023-10-04)
17+
## 23.1.40 (2023-10-10)
18+
19+
### Maps
20+
21+
#### Bug Fixes
22+
23+
- `#I504008` - The zoom factor of the Maps will now be properly updated when the `zoomByPosition` method is called in the `zoom` event.
24+
25+
## 23.1.38 (2023-09-26)
1826

1927
### Maps
2028

components/maps/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-maps",
3-
"version": "23.1.36",
3+
"version": "23.1.38",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/navigations/CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Accordion
8+
9+
#### Bug Fixes
10+
11+
- `#I506740` - An issue with the HTML element within the content of an Accordion item has been fixed.
12+
513
## 23.1.39 (2023-10-04)
614

7-
### Menu
15+
### ContextMenu
816

917
#### Bug Fixes
1018

11-
- `#F496214` - The issue with "Sub Menu can’t hide while using hideItems method of menu" has been resolved.
19+
- The issue with "in mobile mode, script error occurred when context menu item is destroyed" has been resolved.
1220

1321
## 23.1.36 (2023-09-15)
1422

components/navigations/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-navigations",
3-
"version": "23.1.36",
3+
"version": "23.1.39",
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",

components/notifications/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### Toast
8+
9+
#### Bug Fixes
10+
11+
- `#I503827` - Fixed CSP error that occurred when using the Toast Utility in conjunction with the CSP Meta Tag.
12+
- `#I504520` - Fixed an issue where adding double quotes to the Toast Messages would result in an error.
13+
514
## 23.1.36 (2023-09-15)
615

716
### Message

components/pdfviewer/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,24 @@
22

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#I506873` - Now, the `AnnotationMove` and `AnnotationResize` events are triggered for the respective actions of the annotations.
12+
- `#I503362` - Now, the author name is updated properly in the comment panel when adding annotations programmatically.
13+
- `#I505753` - Now, the annotation comment text is rendered correctly, and it is possible to add a reply comment after importing the annotation.
14+
515
## 23.1.39 (2023-10-04)
616

717
### PDF Viewer
818

19+
#### New Features
20+
21+
- `#I497356`,`#I505447`,`#I506487` - Now, users can set the resource URL for assets or the public directory. The standalone PDF Viewer will load its custom resources from this URL.
22+
923
#### Bug Fixes
1024

1125
- `#I497739` - Now, the comment panel close and more buttons are properly displayed in mobile mode.

components/pdfviewer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-pdfviewer",
3-
"version": "23.1.38",
3+
"version": "23.1.39",
44
"description": "Essential JS 2 PDF viewer Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/src/pdfviewer/pdfviewer.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
44
import { PdfViewer, PdfViewerModel } from '@syncfusion/ej2-pdfviewer';
55

66

7-
export const properties: string[] = ['isLazyUpdate', 'plugins', 'DropdownFieldSettings', 'ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'checkBoxFieldSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'dateTimeFormat', 'designerMode', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAccessibilityTags', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableBookmarkStyles', 'enableCommentPanel', 'enableDesktopMode', 'enableDownload', 'enableFormDesigner', 'enableFormDesignerToolbar', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enablePrintRotation', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'exportAnnotationFileName', 'formFieldCollections', 'formFields', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'hideEmptyDigitalSignatureFields', 'hideSaveSignature', 'highlightSettings', 'hyperlinkOpenState', 'initialDialogSettings', 'initialFieldSettings', 'initialRenderPages', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isAnnotationToolbarVisible', 'isBookmarkPanelOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormDesignerToolbarVisible', 'isFormFieldDocument', 'isInitialFieldToolbarSelection', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'isValidFreeText', 'lineSettings', 'listBoxFieldSettings', 'locale', 'measurementSettings', 'pageCount', 'passwordFieldSettings', 'perimeterSettings', 'polygonSettings', 'printMode', 'printScaleRatio', 'radioButtonFieldSettings', 'radiusSettings', 'rectangleSettings', 'restrictZoomRequest', 'retryCount', 'retryStatusCodes', 'retryTimeout', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showDigitalSignatureAppearance', 'showNotificationDialog', 'signatureDialogSettings', 'signatureFieldSettings', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textFieldSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'ajaxRequestSuccess', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationMoving', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'beforeAddFreeText', 'bookmarkClick', 'buttonFieldClick', 'commentAdd', 'commentDelete', 'commentEdit', 'commentSelect', 'commentStatusChanged', 'created', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'formFieldAdd', 'formFieldClick', 'formFieldDoubleClick', 'formFieldFocusOut', 'formFieldMouseLeave', 'formFieldMouseover', 'formFieldMove', 'formFieldPropertiesChange', 'formFieldRemove', 'formFieldResize', 'formFieldSelect', 'formFieldUnselect', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
7+
export const properties: string[] = ['isLazyUpdate', 'plugins', 'DropdownFieldSettings', 'ajaxRequestSettings', 'annotationSelectorSettings', 'annotationSettings', 'annotations', 'areaSettings', 'arrowSettings', 'checkBoxFieldSettings', 'circleSettings', 'contextMenuOption', 'contextMenuSettings', 'currentPageNumber', 'customStamp', 'customStampSettings', 'dateTimeFormat', 'designerMode', 'disableContextMenuItems', 'distanceSettings', 'documentPath', 'downloadFileName', 'drawingObject', 'enableAccessibilityTags', 'enableAnnotation', 'enableAnnotationToolbar', 'enableAutoComplete', 'enableBookmark', 'enableBookmarkStyles', 'enableCommentPanel', 'enableDesktopMode', 'enableDownload', 'enableFormDesigner', 'enableFormDesignerToolbar', 'enableFormFields', 'enableFormFieldsValidation', 'enableFreeText', 'enableHandwrittenSignature', 'enableHyperlink', 'enableImportAnnotationMeasurement', 'enableInkAnnotation', 'enableMagnification', 'enableMeasureAnnotation', 'enableMultiLineOverlap', 'enableMultiPageAnnotation', 'enableNavigation', 'enableNavigationToolbar', 'enablePersistence', 'enablePinchZoom', 'enablePrint', 'enablePrintRotation', 'enableRtl', 'enableShapeAnnotation', 'enableShapeLabel', 'enableStampAnnotations', 'enableStickyNotesAnnotation', 'enableTextMarkupAnnotation', 'enableTextMarkupResizer', 'enableTextSearch', 'enableTextSelection', 'enableThumbnail', 'enableToolbar', 'enableZoomOptimization', 'exportAnnotationFileName', 'formFieldCollections', 'formFields', 'freeTextSettings', 'handWrittenSignatureSettings', 'height', 'hideEmptyDigitalSignatureFields', 'hideSaveSignature', 'highlightSettings', 'hyperlinkOpenState', 'initialDialogSettings', 'initialFieldSettings', 'initialRenderPages', 'inkAnnotationSettings', 'interactionMode', 'isAnnotationToolbarOpen', 'isAnnotationToolbarVisible', 'isBookmarkPanelOpen', 'isCommandPanelOpen', 'isDocumentEdited', 'isExtractText', 'isFormDesignerToolbarVisible', 'isFormFieldDocument', 'isInitialFieldToolbarSelection', 'isMaintainSelection', 'isSignatureEditable', 'isThumbnailViewOpen', 'isValidFreeText', 'lineSettings', 'listBoxFieldSettings', 'locale', 'measurementSettings', 'pageCount', 'passwordFieldSettings', 'perimeterSettings', 'polygonSettings', 'printMode', 'printScaleRatio', 'radioButtonFieldSettings', 'radiusSettings', 'rectangleSettings', 'resourceUrl', 'restrictZoomRequest', 'retryCount', 'retryStatusCodes', 'retryTimeout', 'scrollSettings', 'selectedItems', 'serverActionSettings', 'serviceUrl', 'shapeLabelSettings', 'showDigitalSignatureAppearance', 'showNotificationDialog', 'signatureDialogSettings', 'signatureFieldSettings', 'signatureFitMode', 'stampSettings', 'stickyNotesSettings', 'strikethroughSettings', 'textFieldSettings', 'textSearchColorSettings', 'tileRenderingSettings', 'toolbarSettings', 'underlineSettings', 'volumeSettings', 'width', 'zoomMode', 'zoomValue', 'addSignature', 'ajaxRequestFailed', 'ajaxRequestInitiate', 'ajaxRequestSuccess', 'annotationAdd', 'annotationDoubleClick', 'annotationMouseLeave', 'annotationMouseover', 'annotationMove', 'annotationMoving', 'annotationPropertiesChange', 'annotationRemove', 'annotationResize', 'annotationSelect', 'annotationUnSelect', 'beforeAddFreeText', 'bookmarkClick', 'buttonFieldClick', 'commentAdd', 'commentDelete', 'commentEdit', 'commentSelect', 'commentStatusChanged', 'created', 'documentLoad', 'documentLoadFailed', 'documentUnload', 'downloadEnd', 'downloadStart', 'exportFailed', 'exportStart', 'exportSuccess', 'extractTextCompleted', 'formFieldAdd', 'formFieldClick', 'formFieldDoubleClick', 'formFieldFocusOut', 'formFieldMouseLeave', 'formFieldMouseover', 'formFieldMove', 'formFieldPropertiesChange', 'formFieldRemove', 'formFieldResize', 'formFieldSelect', 'formFieldUnselect', 'hyperlinkClick', 'hyperlinkMouseOver', 'importFailed', 'importStart', 'importSuccess', 'moveSignature', 'pageChange', 'pageClick', 'pageMouseover', 'printEnd', 'printStart', 'removeSignature', 'resizeSignature', 'signaturePropertiesChange', 'signatureSelect', 'textSearchComplete', 'textSearchHighlight', 'textSearchStart', 'textSelectionEnd', 'textSelectionStart', 'thumbnailClick', 'validateFormFields', 'zoomChange'];
88
export const modelProps: string[] = [];
99

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

components/popups/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### Tooltip
88

components/progressbar/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### ProgressBar
88

components/querybuilder/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 23.1.39 (2023-10-04)
5+
## 23.1.40 (2023-10-10)
66

77
### QueryBuilder
88

components/richtexteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 23.1.40 (2023-10-10)
6+
7+
### RichTextEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I502310` - Now, the `value` argument in the `valueChange` event does not include the table resize helper element.
12+
513
## 23.1.39 (2023-10-04)
614

715
### RichTextEditor

components/richtexteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-richtexteditor",
3-
"version": "23.1.36",
3+
"version": "23.1.39",
44
"description": "Essential JS 2 RichTextEditor component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)