v23.2.6 is released
This commit is contained in:
Родитель
b1b7b96729
Коммит
793fc8c82a
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-base",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -0,0 +1,183 @@
|
|||
# Release Notes Guidelines
|
||||
|
||||
This section contains guidelines on naming files, sections and other document elements.
|
||||
|
||||
> **If there is no changes in product, you don't need to mention that in Release Notes.**
|
||||
|
||||
## Encoding Format
|
||||
|
||||
All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.
|
||||
|
||||
![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)
|
||||
|
||||
## Release Notes Folder Hierarchy
|
||||
|
||||
* Platform [Folder]
|
||||
* ----ReleaseNotes [Folder]
|
||||
* --------v13.3.x.x [Folder]
|
||||
* ------------Control1.md
|
||||
* ------------Control2.md
|
||||
* ------------Control3.md
|
||||
* --------v13.4.x.x [Folder]
|
||||
* ------------Control1.md
|
||||
* ------------Control2.md
|
||||
* ------------Control3.md
|
||||
|
||||
### How to write Release Notes?
|
||||
|
||||
* Each release markdown files should reside under corresponding version folder in their platform.
|
||||
* Each product release notes should be created in separate file name.
|
||||
* File name should be same as the product name.
|
||||
|
||||
> **NOTE**: Please do not add any Front Matter information in Release Notes files.
|
||||
|
||||
## Markdown File Structure
|
||||
|
||||
Each markdown file should have following items.
|
||||
|
||||
* Control Name
|
||||
* Features
|
||||
* Bug fixes
|
||||
* Braking Changes
|
||||
* Known Issues
|
||||
|
||||
> Do not add any front matter(triple dashed line) in this markdown.
|
||||
|
||||
### Control Name
|
||||
|
||||
Control Name should be with prefix `##`. This will be rendered as `H2` in html file.
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
## <Control-Name>
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
## ejAccrodion
|
||||
```
|
||||
|
||||
### Features
|
||||
|
||||
* Each features should be written in unordered list.
|
||||
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
### Features
|
||||
{:#<control-name>-features}
|
||||
|
||||
* \#1 - Feature Info
|
||||
* \#2 - Feature Info
|
||||
* \#3 - Feature Info
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Features
|
||||
{:#ejaccordion-features}
|
||||
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Each bug fix should be written in unordered list.
|
||||
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
### Bug fixes
|
||||
{:#<control-name-in-lower-case>-bug-fixes}
|
||||
|
||||
* \#1 - Bug Fix
|
||||
* \#2 - Bug Fix
|
||||
* \#3 - Bug Fix
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Bug Fixes
|
||||
{:#ejaccordion-bug-fixes}
|
||||
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Each breaking changes should be written in unordered list.
|
||||
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**
|
||||
|
||||
```
|
||||
### Breaking Changes
|
||||
{:#<control-name>-breaking-changes}
|
||||
|
||||
* * Breaking Change 1
|
||||
* * Breaking Change 2
|
||||
* * Breaking Change 3
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Breaking Changes
|
||||
{:#ejaccordion-breaking-changes}
|
||||
|
||||
* Now, Circular series end angle will not be adjusted based on the start angle, so the output will be like semi-circle instead of full circle. In order to render the complete circular series with customized start angle, you have to add the start angle value to end angle property now. This break will occur only if you have specified startAngle already
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
## Incidents and Forums in Release notes
|
||||
|
||||
We can represent the Incident ID with I and F for forums in release notes MD files
|
||||
|
||||
#### Example
|
||||
|
||||
|
||||
```
|
||||
## ChromelessWindow
|
||||
|
||||
### Bug Fixes
|
||||
{:#chromelesswindow-bug-fixes}
|
||||
|
||||
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
|
||||
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
|
||||
|
||||
```
|
||||
|
||||
This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow
|
||||
|
||||
|
||||
## Commit
|
||||
|
||||
Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.
|
||||
|
||||
## Preview Changes
|
||||
|
||||
All the changes will be included with User Guide automation and published in Staging Documentation machine.
|
||||
|
||||
<http://115.249.201.211:9090>
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Calendar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I521911` - Fixed an issue where an exception was occurring when changing the culture dynamically.
|
||||
|
||||
## 23.1.41 (2023-10-17)
|
||||
|
||||
### DateRangePicker
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I520071` - Now, `cluster` selection is working properly in the scatter series.
|
||||
- `#I522808` - Fixed console error that was thrown when using the name property in the axis for a polar chart.
|
||||
- `#I523059` - Now, the period selector's selected index is highlighted properly whenever we resize the screen.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### AccumulationChart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-charts",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I515562` - Now, the swimlane renders properly while dragging it from palette with multiple page enabled.
|
||||
- `#515563` - Exception while serializing the BPMN Group shape with child has been resolved.
|
||||
- `#I520515` - Now, the connector target decorator renders properly after calling doLayout with line-routing.
|
||||
- `#I518456` - Now, the Subprocess node and child node dragging is proper after serialization.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I515528` - Resolved the strange behaviour of track changes on backspace and delete action.
|
||||
- `#I517039` - Resolved the cut issue in table when track changes is enabled.
|
||||
- `#I518614` - Resolved the hyperlink removing issue.
|
||||
- `#I513222` - Resolved the script error issue when opening attached document.
|
||||
- `#I513443` - Resolved the Exception issue when disable toolbar in blazor.
|
||||
- `#I507772` - Resolved the spellcheck underline issue on editing text.
|
||||
- `#I518011` - Resolved the find and replace issue for restricted document.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-documenteditor",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
- `#I515425` - Issue with observable data binding in Gantt chart issue has been fixed.
|
||||
- `#I520146` - Timeline render in advance the project start date while resizing taskbar issue has been fixed.
|
||||
- `#I521906` - Milestone not working properly while drop at weekend issue has been fixed.
|
||||
- `#I516954` - Dependency line not render after adding child record issue has been fixed.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-gantt",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Essential JS 2 Gantt Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,27 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I517762` - Resolved the issue with paste functionality of the Grid on Mac devices.
|
||||
- `#I520019` - The filter dialog `popup` is closed when no records are found during the search and press Enter key has been fixed.
|
||||
- `#I514004` - Fixed an issue with the space between the arrow in the tooltip and the content.
|
||||
- `#I511050` - Error thrown while sorting columns after filtering has been resolved.
|
||||
- `#I464878` - The issue where the focus style for checkbox items was not applying to the spreadsheet component has been resolved.
|
||||
- `#F185039` - Resolved a problem where the grid would not display all records when the filter was cleared.
|
||||
- `#I513685` - Aria-label for `SelectAllCheckbox` is now descriptive for accessibility.
|
||||
|
||||
- `#I517762` - Resolved the issue with paste functionality of the Grid on Mac devices.
|
||||
- `#I514004` - Fixed an issue with the space between the arrow in the tooltip and the content.
|
||||
- `#I511050` - Error thrown while sorting columns after filtering has been resolved.
|
||||
- `#I464878` - The issue where the focus style for checkbox items was not applying to the spreadsheet component has been resolved.
|
||||
- `#F185039` - Resolved a problem where the grid would not display all records when the filter was cleared.
|
||||
- `#I513685` - Aria-label for `SelectAllCheckbox` is now descriptive for accessibility.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### Grid
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### ImageEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue with "Zoom public method not working properly" has been resolved.
|
||||
- Issue with "Resize numeric textbox placeholder value not updated properly in rotated state" has been resolved.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### ImageEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-image-editor",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Essential JS 2 ImageEditor for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### In-place Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I501296` - Fixed an issue where the width of the in-place-editor was affected when attempting to remove values from it.
|
||||
|
||||
## 20.4.54 (2023-03-14)
|
||||
|
||||
### In-place Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-inplace-editor",
|
||||
"version": "23.1.41",
|
||||
"version": "23.2.5",
|
||||
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"source-map-loader": "^0.2.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/es6-promise": "0.0.28",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"vue": "2.6.14",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### Kanban
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-kanban",
|
||||
"version": "23.1.36",
|
||||
"version": "23.2.4",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -27,7 +27,7 @@
|
|||
"source-map-loader": "^0.2.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/es6-promise": "0.0.28",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"vue": "2.6.14",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-navigations",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-notifications",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -31,7 +31,7 @@
|
|||
"source-map-loader": "^0.2.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/es6-promise": "0.0.28",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"vue": "2.6.14",
|
||||
|
|
|
@ -2,6 +2,29 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I518113` - Now, the provided document is properly loaded and scrolls without getting stuck or freezing.
|
||||
- `#I517738` - Now, the text selection is working properly while selecting the text from left to right.
|
||||
- `#I510393` - Now, the script error has been resolved while loading a provided PDF document.
|
||||
- `#I521831` - Now, The script error is resolved when the read only property of the form fields were updated as true.
|
||||
- `#I517119` - now, the Search does not highlights the wrong area after zoom in standalone PDF Viewer.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I517898` - Now, the radio button's background color does not shifts to white automatically.
|
||||
- `#I507874` - Now, circles with graphics are rendered properly when loading the specific document.
|
||||
- `#I517892` - Now, the read-only radio button does not gets automatically selected.
|
||||
- `#I517897` - Now, the background color is not changed for read-only dropdown, checkbox and radio button fields in other viewers while saving the document.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### PDF Viewer
|
||||
|
@ -10,7 +33,6 @@
|
|||
|
||||
- `#I512867` - Now, the transparency in the border color for the checkbox is being maintained when the document is loaded.
|
||||
- `#I515960` - Now, the mouse cursor position is properly updated for multiline fields when clicked.
|
||||
- `#I517898` - Now, the radio button's background color does not shifts to white automatically.
|
||||
|
||||
## 23.1.44 (2023-11-07)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pdfviewer",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Essential JS 2 PDF viewer Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -27,7 +27,7 @@
|
|||
"source-map-loader": "^0.2.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/es6-promise": "0.0.28",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"vue": "2.6.14",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### PivotTable
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I521739` - When no fields are bound to the column axis, the pivot table will now function properly when applying a filter.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### PivotTable
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pivotview",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### ProgressBar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I520806` - The progress bar now renders properly when it exceeds the `maximum` value.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### ProgressBar
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-progressbar",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Essential JS 2 ProgressBar Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Ribbon
|
||||
|
||||
|
|
|
@ -2,6 +2,24 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I515378` - Now, the toolbar status will be properly updated when the toolbar is enabled dynamically in the Rich Text Editor.
|
||||
- `#I512106` - Now, the quick toolbar will be destroyed without any script errors during page navigation.
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I518641` - Now, clicking the full-screen toolbar item works properly without any script errors in the RichTextEditor.
|
||||
- `#I517381` - Now, the maximum row limit of the table is increased to `1000` from `50` in the Rich Text Editor.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### RichTextEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-richtexteditor",
|
||||
"version": "23.2.4",
|
||||
"version": "23.2.5",
|
||||
"description": "Essential JS 2 RichTextEditor component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.6 (2023-11-28)
|
||||
|
||||
### TreeGrid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I522828` - Fixed an issue where the Excel export datasource properties were not being applied correctly for remote data binding.
|
||||
- `#I523652` - Fixed an issue where the cell saving functionality was not working correctly after pressing enter or update in the treegrid.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### TreeGrid
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"source-map-loader": "^0.2.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/es6-promise": "0.0.28",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"vue": "2.6.14",
|
||||
|
|
Загрузка…
Ссылка в новой задаче