v27.1.53 is released
This commit is contained in:
Родитель
d683ad00eb
Коммит
02cd8867b0
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-base",
|
||||
"version": "27.1.48",
|
||||
"version": "27.1.50",
|
||||
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -57,7 +57,7 @@
|
|||
"canteen": "^1.0.5",
|
||||
"jasmine-ajax": "^3.3.1",
|
||||
"jasmine-core": "^2.6.1",
|
||||
"karma": "^1.7.0",
|
||||
"karma": "6.4.2",
|
||||
"karma-chrome-launcher": "^2.2.0",
|
||||
"karma-generic-preprocessor": "^1.1.0",
|
||||
"karma-htmlfile-reporter": "^0.3.5",
|
||||
|
|
|
@ -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,7 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Checkbox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F60464`- The issue with "checkbox state input element checked state was not update properly " has been resolved.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
### Checkbox
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-buttons",
|
||||
"version": "27.1.50",
|
||||
"version": "27.1.51",
|
||||
"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]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### DatePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I629863` - The issue preventing users from pasting dates into the Datepicker when mask support is enabled has been resolved.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
### DateTimePicker
|
||||
|
@ -1275,7 +1267,15 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
|
|||
|
||||
- **StrictMode** - Allows to entering the only valid time in a textbox.
|
||||
|
||||
- **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.## 19.3.56 (2021-12-02)
|
||||
- **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.## 27.1.52 (2024-10-08)
|
||||
|
||||
### DatePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I629863` - The issue preventing users from pasting dates into the Datepicker when mask support is enabled has been resolved.
|
||||
|
||||
## 19.3.56 (2021-12-02)
|
||||
|
||||
### TimePicker
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-calendars",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I637436` - Now, multilevel axis labels are working properly when RTL is enabled.
|
||||
- `#I640682` - The border dash array now works properly for all series.
|
||||
- `#I640585` - Now, the range area series works properly when the middle point's x value is set to 0.
|
||||
|
||||
### 3DChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I637725` - The first label on the y-axis is now positioned correctly.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Circular Gauge
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-circulargauge",
|
||||
"version": "27.1.48",
|
||||
"version": "27.1.50",
|
||||
"description": "Essential JS 2 CircularGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I631866` - Now, The connectors can connect to ports even when their visibility is set to hidden.
|
||||
- `#F194445` - The mouse cursor now updates correctly when entering the diagram canvas after changing tools at runtime.
|
||||
- `#I635135` - The tooltip for a node is now displayed correctly when the node is grouped at runtime.
|
||||
- `#I630934` - Now, The flipped annotations are readable when the corresponding node is flipped.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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,34 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I628955` - Resolved the Pie chart color issue in Blazor word processor.
|
||||
- `#I627890` - Resolved the error in opening the document.
|
||||
- `#I631391` - Resolved the Word Preview Freezes Browser issue.
|
||||
- `#I632707` - Resolved the issue of tables with complex structures that have cells wrapping to the next page are not rendered.
|
||||
- `#FB61513` - Resolved the error when saving track changes.
|
||||
- `#I631081` - Resolved the table looping issue while opening attached sfdt.
|
||||
- `#I638813` - Resolved the XSS vulnerability issue.
|
||||
- `#I635143` - Resolved the mailto issue in the Document editor.
|
||||
- `#I632855` - Resolved script error when try to download the document with unposted comments.
|
||||
- `#I627023` - Now SpellCheck API pass the custom header when using beforeXmlHttpRequestSend.
|
||||
- `#I631727` - Resolved the issue bullet points loses it style.
|
||||
- `#I636298` - Now stopProtectionAsync reject properly when entered wrong password.
|
||||
- `#I626464` - Resolved the Characters get hidden when typing multi languages with Track changes OFF.
|
||||
- `#I632911` - Resolved console warning for missing modules in document editor.
|
||||
- `#I630998` - Now able to add text after a content control when no other element is next to it.
|
||||
- `#I622732` - Resolved script error while delete content after search text.
|
||||
|
||||
#### Features
|
||||
|
||||
- `#I629004` - Added support for selecting revision in beforeAcceptRejectChanges event in document editor.
|
||||
- `#I568983` - Provided support to refer external font in Document Editor.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,7 @@ import { NgModule, ValueProvider } from '@angular/core';
|
|||
import { CommonModule } from '@angular/common';
|
||||
import { DocumentEditorComponent } from './documenteditor.component';
|
||||
import { DocumentEditorModule } from './documenteditor.module';
|
||||
import {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing, ColumnsDialog, CollaborativeEditingHandler} from '@syncfusion/ej2-documenteditor'
|
||||
import {Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, EditorHistory, OptionsPane, ContextMenu, ImageResizer, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, ParagraphDialog, ListDialog, StyleDialog, StylesDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, SpellChecker, SpellCheckDialog, CollaborativeEditing, ColumnsDialog, CollaborativeEditingHandler, Optimized, TabDialog, TextFormFieldDialog, DropDownFormFieldDialog, CheckBoxFormFieldDialog} from '@syncfusion/ej2-documenteditor'
|
||||
|
||||
|
||||
export const PrintService: ValueProvider = { provide: 'DocumentEditorPrint', useValue: Print};
|
||||
|
@ -36,6 +36,11 @@ export const SpellCheckDialogService: ValueProvider = { provide: 'DocumentEditor
|
|||
export const CollaborativeEditingService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditing', useValue: CollaborativeEditing};
|
||||
export const ColumnsDialogService: ValueProvider = { provide: 'DocumentEditorColumnsDialog', useValue: ColumnsDialog};
|
||||
export const CollaborativeEditingHandlerService: ValueProvider = { provide: 'DocumentEditorCollaborativeEditingHandler', useValue: CollaborativeEditingHandler};
|
||||
export const OptimizedService: ValueProvider = { provide: 'DocumentEditorOptimized', useValue: Optimized};
|
||||
export const TabDialogService: ValueProvider = { provide: 'DocumentEditorTabDialog', useValue: TabDialog};
|
||||
export const TextFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorTextFormFieldDialog', useValue: TextFormFieldDialog};
|
||||
export const DropDownFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorDropDownFormFieldDialog', useValue: DropDownFormFieldDialog};
|
||||
export const CheckBoxFormFieldDialogService: ValueProvider = { provide: 'DocumentEditorCheckBoxFormFieldDialog', useValue: CheckBoxFormFieldDialog};
|
||||
|
||||
/**
|
||||
* NgModule definition for the DocumentEditor component with providers.
|
||||
|
@ -76,7 +81,12 @@ export const CollaborativeEditingHandlerService: ValueProvider = { provide: 'Doc
|
|||
SpellCheckDialogService,
|
||||
CollaborativeEditingService,
|
||||
ColumnsDialogService,
|
||||
CollaborativeEditingHandlerService
|
||||
CollaborativeEditingHandlerService,
|
||||
OptimizedService,
|
||||
TabDialogService,
|
||||
TextFormFieldDialogService,
|
||||
DropDownFormFieldDialogService,
|
||||
CheckBoxFormFieldDialogService
|
||||
]
|
||||
})
|
||||
export class DocumentEditorAllModule { }
|
|
@ -247,6 +247,36 @@ export class DocumentEditorComponent extends DocumentEditor implements IComponen
|
|||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
try {
|
||||
let mod = this.injector.get('DocumentEditorOptimized');
|
||||
if(this.injectedModules.indexOf(mod) === -1) {
|
||||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
try {
|
||||
let mod = this.injector.get('DocumentEditorTabDialog');
|
||||
if(this.injectedModules.indexOf(mod) === -1) {
|
||||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
try {
|
||||
let mod = this.injector.get('DocumentEditorTextFormFieldDialog');
|
||||
if(this.injectedModules.indexOf(mod) === -1) {
|
||||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
try {
|
||||
let mod = this.injector.get('DocumentEditorDropDownFormFieldDialog');
|
||||
if(this.injectedModules.indexOf(mod) === -1) {
|
||||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
try {
|
||||
let mod = this.injector.get('DocumentEditorCheckBoxFormFieldDialog');
|
||||
if(this.injectedModules.indexOf(mod) === -1) {
|
||||
this.injectedModules.push(mod)
|
||||
}
|
||||
} catch { }
|
||||
|
||||
this.registerEvents(outputs);
|
||||
this.addTwoWay.call(this, twoWays);
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
export { DocumentEditorComponent} from './documenteditor.component';
|
||||
export { DocumentEditorModule } from './documenteditor.module';
|
||||
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService } from './documenteditor-all.module';
|
||||
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService, OptimizedService, TabDialogService, TextFormFieldDialogService, DropDownFormFieldDialogService, CheckBoxFormFieldDialogService } from './documenteditor-all.module';
|
|
@ -1,6 +1,6 @@
|
|||
export { DocumentEditorComponent} from './document-editor/documenteditor.component';
|
||||
export { DocumentEditorModule } from './document-editor/documenteditor.module';
|
||||
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService } from './document-editor/documenteditor-all.module';
|
||||
export { DocumentEditorAllModule, PrintService, SfdtExportService, WordExportService, TextExportService, SelectionService, SearchService, EditorService, EditorHistoryService, OptionsPaneService, ContextMenuService, ImageResizerService, HyperlinkDialogService, TableDialogService, BookmarkDialogService, TableOfContentsDialogService, PageSetupDialogService, ParagraphDialogService, ListDialogService, StyleDialogService, StylesDialogService, BulletsAndNumberingDialogService, FontDialogService, TablePropertiesDialogService, BordersAndShadingDialogService, TableOptionsDialogService, CellOptionsDialogService, SpellCheckerService, SpellCheckDialogService, CollaborativeEditingService, ColumnsDialogService, CollaborativeEditingHandlerService, OptimizedService, TabDialogService, TextFormFieldDialogService, DropDownFormFieldDialogService, CheckBoxFormFieldDialogService } from './document-editor/documenteditor-all.module';
|
||||
export { DocumentEditorContainerComponent} from './document-editor-container/documenteditorcontainer.component';
|
||||
export { DocumentEditorContainerModule } from './document-editor-container/documenteditorcontainer.module';
|
||||
export { DocumentEditorContainerAllModule, ToolbarService } from './document-editor-container/documenteditorcontainer-all.module';
|
||||
|
|
|
@ -2,6 +2,29 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### ListBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue with "Toolbar button state not updated properly while drag and drop with filtering and disabled listbox items" has been resolved.
|
||||
|
||||
### DropDownList
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I633865` - The issue with the selected item being incorrectly added to the popup in the dropdown list has been resolved.
|
||||
- `#I912588` - The issue with filtered selected item in the Dropdown Tree component has been resolved.
|
||||
|
||||
- `#I633865` - The issue with the selected item being incorrectly added to the popup in the dropdown list has been resolved.
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#FB61024` - The issue with the MultiSelect Element Page not being destroyed properly after switching to another page has been resolved.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### ListBox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 DropDown Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### FileManager
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I629895` - The scrolling performance of the File Manager component has been enhanced to enable smoother scrolling during drag-and-drop operations.
|
||||
- `#I633879` - Improved error handling and null value management in File Manager component create folder and `filterFiles` operations.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### FileManager
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-filemanager",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 FileManager Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I634857` - Parent dependency validation is not working properly issue has been fixed.
|
||||
- `#I632390` - While collapsing parent custom color applied for child disappeared issue has been fixed.
|
||||
- `#I635881` - `taskMode` is set to custom non-working days are not disabled when editing the Start Date and End Date columns issue has been fixed.
|
||||
- `#I636598` - Duration field not updating in dialog box when setting the end Date as same as start Date issue has been fixed.
|
||||
- `#I635782` - When the `PdfTrueTypeFont` property is used, the label value is not exported issue has been fixed.
|
||||
- `#I637078` - Setting `fontSize` for labels does not working when exporting to pdf issue has been fixed.
|
||||
- `#I635774` - Portrait mode not working in pdf export while using `A0` page size issue has been fixed.
|
||||
- `#I632226` - Performance delay occur during load time issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### GanttChart
|
||||
|
@ -12,8 +29,11 @@
|
|||
- `#I634832` - The issue about `isShiftPressed` property in the row selecting event was not maintained properly has been fixed.
|
||||
- `#I633271` - Changing the events hitting order and add `rowPosition` property in `actionBegin` event issue has been fixed
|
||||
- `#I634857` - Parent dependency validation is not working properly issue has been fixed.
|
||||
- `#I634137` - The Date Format is not working properly in the predecessor dialog validation issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
- `#I634832` - The issue about `isShiftPressed` property in the row selecting event was not maintained properly has been fixed.
|
||||
- `#I633271` - Changing the events hitting order and add `rowPosition` property in `actionBegin` event issue has been fixed.
|
||||
- `#I634857` - Parent dependency validation is not working properly issue has been fixed.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I637799` - The issue with Excel custom filtering not working correctly with the `Null` or `Empty` operators has been resolved.
|
||||
- `#FB61575` - The issue where the browser automatically scrolls to the grid when it is rendered with initially grouped columns has been resolved.
|
||||
- `#I630298` - The issue where the `dataStateChange` event was not triggered when opening the filter menu for a Boolean column in custom data binding has been resolved.
|
||||
- `I640964` - Resolved a script error that occurred when editing was disabled in `Batch` mode.
|
||||
- `I638333` - Fixed an issue where clicking the `Clear` button in the sort responsive dialog incorrectly displayed all sort buttons text as `None` instead of their localized values.
|
||||
- `I639750` - Resolved a script error that occurred during the initial rendering of `auto-generated` columns when resizing was enabled.
|
||||
- `I638418` - Fixed a script error that occurred when opening the `filter` pop-up and navigating using the down arrow key.
|
||||
- `I635845` - Resolved misalignment issues that occurred when resizing aggregate columns along with frozen columns.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-grids",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### HeatMap
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-heatmap",
|
||||
"version": "18.14.11",
|
||||
"version": "27.1.50",
|
||||
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- The issue with "Localization issue in ImageEditor" has been resolved.
|
||||
- The issue with "redact with straightening not working properly" has been resolved.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Image Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-image-editor",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 ImageEditor for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inplace-editor",
|
||||
"version": "27.1.48",
|
||||
"version": "27.1.50",
|
||||
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### ColorPicker
|
||||
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### AI AssistView
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
`#I639994` - Now the issue with CSS syntax exception raised by the use of justifyContent property style in the AI AssistView has been resolved.
|
||||
|
||||
#### Feature
|
||||
|
||||
`#640732` - Now we have provided localization support for the stop responding text in the AI AssistView.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### AI AssistView
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Kanban
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I628570` - Now, the Kanban card filter and drag-and-drop functionality are now functioning properly, with only the filtered cards displayed when the `field` property is configured in both `sortSettings` and `query`.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Kanban
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-kanban",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,13 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### DashboardLayout
|
||||
|
||||
- `#I636600` - Panels overlapping when adding a panel dynamically using `addPanel` method in the `Vue` DashboardLayout component has been resolved.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
### Timeline
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-layouts",
|
||||
"version": "27.1.50",
|
||||
"version": "27.1.51",
|
||||
"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",
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Maps
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### MultiColumn ComboBox
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-multicolumn-combobox",
|
||||
"version": "21.29.0",
|
||||
"version": "27.1.50",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Stepper
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F194542` - The issue with the text indicators disappearing when the disabled property is updated dynamically in the stepper component has been resolved.
|
||||
|
||||
### TreeView
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I637759` - The issue with the collapseAll API not collapsing TreeView nodes correctly based on the specified node level in the TreeView component has been resolved.
|
||||
- `#I912588` - The issue with filtered selected item in the DropdownTree component has been fixed.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### ContextMenu
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-navigations",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Message
|
||||
|
||||
|
|
|
@ -2,6 +2,30 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I638294` - Now, the notification dialog is not shown for search text with no matches when `showNotificationDialog` API is set to false.
|
||||
- `#I636244` - Now, the annotation toolbar is programmatically opened on a mobile device using the `showAnnotationToolbar` method.
|
||||
- `#I637351` - Now, the signature collection ID and ID from the `addSignature` event are the same on mobile devices.
|
||||
- `#F194443` - Now, the tooltip is properly removed when programmatically removing a form field tooltip using the `updateFormField` API.
|
||||
- `#I637350` - Now, the PDF Viewer does not stop responding when searching the text.
|
||||
- `#I637275` - Now, the download option is disabled in mobile mode when `enableDownload` API is set to false.
|
||||
- `#I633438` , `#I633453` - Now, the invalid file corrupted dialog closes automatically after a valid PDF document is loaded.
|
||||
- `#I619099` - Now, the delay in searching for text after completing text extraction has been reduced.
|
||||
- `#I635120` - Now, the undo and redo functions for free text annotations, as well as the ability to change alignment and font size using the `editAnnotation` method, are now functioning correctly.
|
||||
- `#I608686` - Now, a script error does not occur when trying to update and delete annotations simultaneously after importing them.
|
||||
- `#I635119` - Now, after programmatically highlighting and deleting text, the text will not be highlighted again unless a new selection is made, as the selection is cleared when the delete method is called programmatically.
|
||||
- Now, the close button is clickable across all size scenarios when the thumbnail container is resized.
|
||||
- `#I908781` - Now, the Form field data will be accurately preserved after scrolling, even when form fields with the same name are updated, and the form designer module is not included.
|
||||
|
||||
#### New Features
|
||||
|
||||
- `#I627469` - Added support for retrieving page details, such as the current page size, page rotation and zoom factor, through the `getPageDetails`.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I627993` - The pivot chart will now be rendered properly within the parent container when used with the grouping bar in Angular.
|
||||
- The pivot table will now work properly while dynamically disabling grouping with the pivot chart enabled.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
|
@ -927,7 +927,15 @@ The pivot grid is a multi-dimensional data visualization component built on top
|
|||
- **Aggregation** - Provides built in aggregation types like sum, average, min, max and count.
|
||||
- **Calculated Field** - Users can add new value field(s) to the report dynamically using this option.
|
||||
- **Adaptive Rendering** - Adapts with optimal user interfaces for mobile and desktop form-factors, thus helping the user’s application to scale elegantly across all the form-factors without any additional effort.
|
||||
- **Exporting** - Provides the option to exporting records to Excel, CSV and PDF formats.## 18.2.58 (2020-09-15)
|
||||
- **Exporting** - Provides the option to exporting records to Excel, CSV and PDF formats.## 27.1.52 (2024-10-08)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I627993` - The pivot chart will now be rendered properly within the parent container when used with the grouping bar in Angular.
|
||||
|
||||
## 18.2.58 (2020-09-15)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Dialog
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I633873` - Resolved the inconsistent resizing behaviour observed with the modal dialog.
|
||||
|
||||
## 21.1.35 (2023-03-23)
|
||||
|
||||
### Tooltip
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
- `#I639409` - Issue with "Custom operator not working properly in QueryBuilder While dynamically change locale property" has been fixed.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### QueryBuilder
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-querybuilder",
|
||||
"version": "27.1.50",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 QueryBuilder for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-ribbon",
|
||||
"version": "21.29.0",
|
||||
"version": "27.1.50",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#FB61537` - An issue where a script error occurred when attempting to save an event after adding the `NumericTextBox` component in the editor template has been resolved.
|
||||
- `#FB61371` - An issue affecting the identification of the `startTime` and `endTime` properties within the `eventRenderedArgs` for spanned events in the Month view has been resolved.
|
||||
- `#I640650` - An issue where a script error occurred while setting `setWorkHours` in DST time has been resolved.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Schedule
|
||||
|
@ -9,6 +19,7 @@
|
|||
#### Bug fixes
|
||||
|
||||
- `#FB61586` - The issue with the schedule component tooltip rendering outside the viewport has been fixed.
|
||||
- `#I610923` - An issue where the appointments are getting overlapped due to appointment width is not calculated properly has been fixed.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "27.1.51",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### DropDownButton
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-splitbuttons",
|
||||
"version": "19.16.4",
|
||||
"version": "27.1.50",
|
||||
"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,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I635267` - Issue with "custom date formats change to short date when copying from Excel to a spreadsheet
|
||||
" has been resolved.
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-spreadsheet",
|
||||
"version": "27.1.50",
|
||||
"version": "27.1.52",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### Tree Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F61461` - Fixed an issue where the scroll position was not maintained correctly when using `enablePersistence`.
|
||||
- `#I635845` - The alignment issue with aggregates and treegrid columns has been fixed when `allowResizing` and `frozenColumns` are enabled.
|
||||
|
||||
- `#I635845` - The alignment issue with aggregates and treegrid columns has been fixed when `allowResizing` and `frozenColumns` are enabled.
|
||||
|
||||
## 27.1.51 (2024-09-30)
|
||||
|
||||
### Tree Grid
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.52 (2024-10-08)
|
||||
## 27.1.53 (2024-10-15)
|
||||
|
||||
### TreeMap
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче