v23.2.5 is released
This commit is contained in:
Родитель
deb69b64be
Коммит
5bc365e082
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Common
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Resolved component's compilation issue.
|
||||
|
||||
## 23.1.43 (2023-10-31)
|
||||
|
||||
### Common
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"@angular/router": "2.2.1 - 4.10.0",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/core-js": "0.9.39",
|
||||
"@types/jasmine": "^2.2.29",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/node": "^6.0.46",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
|
|
|
@ -1,183 +0,0 @@
|
|||
# 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,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.1.43 (2023-10-31)
|
||||
|
||||
### RadioButton
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F513731` - The issue with "`HtmlAttributes` property not working properly in RadioButton component" has been resolved.
|
||||
|
||||
## 23.1.42 (2023-10-24)
|
||||
|
||||
### Button
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I512179` - The issue with "Duplicate Icon Span while using the `onPropertyChange` of button" has been resolved.
|
||||
|
||||
## 23.1.41 (2023-10-17)
|
||||
|
||||
### Checkbox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-buttons",
|
||||
"version": "23.1.41",
|
||||
"version": "23.2.4",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,14 +2,6 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### DateTimePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F519481` - Issue with "Aria-Label Attribute Not Supported on Span Without Valid Role" has been resolved.
|
||||
|
||||
## 23.1.41 (2023-10-17)
|
||||
|
||||
### DateRangePicker
|
||||
|
@ -1239,6 +1231,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
|
|||
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
|
||||
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### DateTimePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F519481` - Issue with "Aria-Label Attribute Not Supported on Span Without Valid Role" has been resolved.
|
||||
|
||||
## 19.3.56 (2021-12-02)
|
||||
|
||||
### TimePicker
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-calendars",
|
||||
"version": "23.1.41",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### AccumulationChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I519546` - Now, the pie chart data label renders properly when the data point is zero.
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I520467` - The combination of multiple types of trendlines is now rendering properly.
|
||||
- `#I519877` - Now, `StackingGroup` is working properly along with `columnWidthInPixel`.
|
||||
- `#I519877` - Now, `ColumnSpacing` is working properly along with `columnWidthInPixel`.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-circulargauge",
|
||||
"version": "23.1.38",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 CircularGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I512661` - Resolved the TOC updating issue in the attached document.
|
||||
- `#I519561` - Resolved the track changes issues.
|
||||
- `#I521082` - Resolved the script error issue while accepting tracked changes.
|
||||
- `#I514000` - Resolved the script error while opening the attached document.
|
||||
- `#I516382` - Resolved the page ordering issue in the exported document.
|
||||
- `#I519451` - Resolved the script error issue when export as docx after accept all changes.
|
||||
- `#I519571` - Resolved the issue in track changes on enter.
|
||||
- `#I520505` - Resolved the issue of undo track changes with bullet numbering.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 DropDown Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-filemanager",
|
||||
"version": "23.1.43",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 FileManager Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,19 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I520118` - Console error occurs other than self reference data issue has been fixed.
|
||||
- `#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.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### GanttChart
|
||||
|
@ -12,7 +25,7 @@
|
|||
- `#I514463` - PDF exported with blank pages and dislocated connected lines issue has been fixed.
|
||||
- `#I514452` - Baseline does not render by changing date issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
- `#I514452` - Baseline does not render by changing date issue has been fixed.
|
||||
|
||||
## 23.1.44 (2023-11-07)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-grids",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### ImageEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue with "Resize numeric textbox not updated properly while applying with placeholder value" has been resolved.
|
||||
|
||||
## 23.1.43 (2023-10-31)
|
||||
|
||||
### ImageEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-image-editor",
|
||||
"version": "23.1.43",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 ImageEditor for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-layouts",
|
||||
"version": "23.1.36",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-maps",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Sidebar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I521215` - An issue with the Sidebar animation which is not working for the initial rendering has been resolved.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### Menu
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-navigations",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Toast
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I521037` - Fixed an issue where the Toast custom content template was not functioning correctly. Meta Tag.
|
||||
|
||||
## 23.1.40 (2023-10-10)
|
||||
|
||||
### Toast
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-notifications",
|
||||
"version": "23.1.40",
|
||||
"version": "23.2.4",
|
||||
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 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.
|
||||
- `#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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -4,7 +4,7 @@ import { PdfViewer } from '@syncfusion/ej2-pdfviewer';
|
|||
|
||||
|
||||
|
||||
export const inputs: string[] = ['DropdownFieldSettings','_created','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'];
|
||||
export const inputs: string[] = ['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'];
|
||||
export const outputs: string[] = ['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'];
|
||||
export const twoWays: string[] = [];
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### PivotTable
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I518410` - The pivot table will now refresh properly while dynamically binding an empty data source via web API.
|
||||
|
||||
## 23.2.4 (2023-11-20)
|
||||
|
||||
### PivotTable
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-popups",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### ProgressBar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I520853` - The circular progress bar now renders properly for all the values.
|
||||
|
||||
## 23.1.38 (2023-09-26)
|
||||
|
||||
### ProgressBar
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-progressbar",
|
||||
"version": "23.1.38",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 ProgressBar Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-querybuilder",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 QueryBuilder for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Ribbon
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
`#I516350` - Now the issue with overflow popup button when the items showing inside are in hidden state has been resolved.
|
||||
|
||||
|
||||
## 23.1.44 (2023-11-07)
|
||||
|
||||
### Ribbon
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-ribbon",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#### Bug Fixes
|
||||
|
||||
- `#I515728` - Now, applying the underline format to the anchor element works properly in the Rich Text Editor.
|
||||
- `#I503021` - Now, when using a custom dropdown button as a toolbar item to insert content using `insertHTML` in the Rich Text Editor, the cursor position is placed properly.
|
||||
|
||||
## 23.1.44 (2023-11-07)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-splitbuttons",
|
||||
"version": "23.1.43",
|
||||
"version": "23.2.4",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 23.2.5 (2023-11-23)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I515390` - Issue with "an exception occurs on new row insertion when a sheet contains a formula that uses the entire column as the formula range" has been resolved.
|
||||
|
||||
## 23.1.44 (2023-11-07)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-spreadsheet",
|
||||
"version": "23.1.44",
|
||||
"version": "23.2.4",
|
||||
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treegrid",
|
||||
"version": "23.1.43",
|
||||
"version": "23.2.4",
|
||||
"description": "Essential JS 2 TreeGrid Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче