v25.2.6 is released
This commit is contained in:
Родитель
169b1c5c92
Коммит
c0bf26590b
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### common
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I52921` - Resolved `ngAfterViewChecked` triggered infinite time for array base directives property change.
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### common
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-base",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.6",
|
||||
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -20,7 +20,6 @@
|
|||
"@syncfusion/ej2-icons": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/schematics": "0.7.2",
|
||||
"@angular/common": "2.2.1 - 4.10.0",
|
||||
"@angular/compiler": "2.2.1 - 4.10.0",
|
||||
"@angular/core": "2.2.1 - 4.10.0",
|
||||
|
@ -29,23 +28,23 @@
|
|||
"@angular/platform-browser": "2.2.1 - 4.10.0",
|
||||
"@angular/platform-browser-dynamic": "2.2.1 - 4.10.0",
|
||||
"@angular/router": "2.2.1 - 4.10.0",
|
||||
"@schematics/angular": "0.7.2",
|
||||
"@syncfusion/ej2-staging": "^1.0.1",
|
||||
"@types/chai": "^3.4.28",
|
||||
"@types/core-js": "0.9.39",
|
||||
"@types/jasmine": "2.8.22",
|
||||
"@types/jasmine-ajax": "^3.1.27",
|
||||
"@types/node": "^6.0.46",
|
||||
"@types/requirejs": "^2.1.26",
|
||||
"core-js": "^3.4.8",
|
||||
"es6-module-loader": "^0.17.11",
|
||||
"karma-systemjs": "^0.16.0",
|
||||
"systemjs": "^0.19.40",
|
||||
"systemjs-plugin-babel": "0.0.17",
|
||||
"@angular-devkit/schematics": "0.7.2",
|
||||
"@schematics/angular": "0.7.2",
|
||||
"zone.js": "^0.10.2",
|
||||
"core-js": "^3.4.8",
|
||||
"reflect-metadata": "^0.1.9",
|
||||
"rxjs": "^6.5.4",
|
||||
"rxjs-compat": "^6.5.4",
|
||||
"systemjs": "^0.19.40",
|
||||
"systemjs-plugin-babel": "0.0.17",
|
||||
"zone.js": "^0.10.2",
|
||||
"es6-promise": "^3.2.1",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-sass": "^3.1.0",
|
||||
|
|
|
@ -312,7 +312,7 @@ export class ComponentBase<T> {
|
|||
} else {
|
||||
/* istanbul ignore next */
|
||||
let hasDiffLength = false;
|
||||
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout|chart/.test(tempAfterContentThis.getModuleName()))) {
|
||||
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName()))) {
|
||||
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
|
||||
hasDiffLength = true;
|
||||
}
|
||||
|
@ -339,7 +339,7 @@ export class ComponentBase<T> {
|
|||
}
|
||||
list.isUpdated = true;
|
||||
}
|
||||
if (/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) {
|
||||
if ((/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) || /chart/.test(tempAfterContentThis.getModuleName())) {
|
||||
propObj[tagObject.name] = tagObject.instance.getProperties();
|
||||
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
|
||||
}
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Switch
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#593165` - The issue with "`tabindex HtmlAttributes` property is not properly set on the switch input element." has been resolved.
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Checkbox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-calendars",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"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,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I592273` - An empty tooltip will no longer be displayed when the cancel argument is enabled in the shared tooltip event.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### Accumulation Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "25.2.4",
|
||||
"version": "25.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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"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,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I588344` - Resolved the content overlapping issue when editing multi column document.
|
||||
- `#I586107` - Resolved the script error when inserting image.
|
||||
- `#I585401` - Resolved the tab anchor issue in ruler when right clicking on it.
|
||||
- `#I586654` - Resolved the strange indentation behaviour when editing list item.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"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,10 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I577257` - Fixed issue with incorrect binding of value property to MultiSelect.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### DropDownTree
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I589141` - The Dropdown Tree component now includes tab focus support for the "Select All" checkbox element. With this enhancement, pressing the Tab key will move the focus to the "Select All" checkbox, and pressing Shift+Tab will move the focus back to the "Select All" checkbox during backward navigation.
|
||||
- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
|
||||
|
||||
### MultiSelect
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 DropDown Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### FileManager
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I590909` - Resolved the file selection issue when enabling the virtualization support in the File Manager component.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### FileManager
|
||||
|
|
|
@ -2,6 +2,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I587507` - Custom value task type does not render initially issue has been fixed.
|
||||
- `#I586668` - When the context menu is used to add a record task index position value changes issue has been fixed.
|
||||
- `#I591687` - Dependency value not get updated issue has been fixed.
|
||||
- `#I588524` - Custom value in segment not maintained issue has been fixed.
|
||||
- `#I586548` - Console error occurs when datasource updated dynamically issue has been fixed.
|
||||
- `#I582746` - Critical path of task connected dependent tasks have not changed to critical issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### GanttChart
|
||||
|
@ -13,8 +28,6 @@
|
|||
- `#I463798` - Parent date changes when Unscheduled task is added issue has been fixed.
|
||||
- `#I582983` - The issue about date miscalculation when dragging the taskbar with timeline virtualization has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
- `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I584245` - The problem of deselecting a row programmatically with toggle set to true, without triggering the `rowDeselecting` and `rowDeselected` events, and without deselecting the row when there are existing selected rows has been successfully resolved.
|
||||
- `#I580119` - Resolved the issue where the `Tooltip` element is not shown in context menu text overflow element.
|
||||
- `#I571259` - Resolved the issue with the `selectRow` method when both `virtualization` and `grouping` are enabled.
|
||||
- `#I587208` - The issue with misalignment of icons when the `headerText` field is empty has been resolved.
|
||||
- `#I591601` - Resolved the issue where continuous spinner loading when opening the Excel filter dialog after performing the grid's search operation.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-grids",
|
||||
"version": "25.2.3",
|
||||
"version": "25.2.5",
|
||||
"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]
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Image Editor
|
||||
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### TextBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I585900` - Issue with "Top border breaks when dynamically rendering the textbox component" has been resolved.
|
||||
- `#I587808` - Fixed an accessibility issue in the Multi Line textbox caused by the role attribute.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
|
@ -1343,6 +1343,14 @@ MaskedTextBox allows the user to enter the valid input only based on the provide
|
|||
- **Accessibility** - provides built-in accessibility support which helps to access all the MaskedTextBox component features through keyboard, on-screen readers, or other assistive technology devices.
|
||||
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### TextBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I585900` - Issue with "Top border breaks when dynamically rendering the textbox component" has been resolved.
|
||||
|
||||
## 19.3.47 (2021-10-26)
|
||||
|
||||
### TextBox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inputs",
|
||||
"version": "25.2.3",
|
||||
"version": "25.2.5",
|
||||
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Kanban
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I575728` - Now, Edited values in dialog will reflect in Cards when pressing the enter key in Kanban.
|
||||
- `I580937` - Now, clicking the save button in the edit dialog works properly in Kanban.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Kanban
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-maps",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"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,19 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I586371` - Now, the page does not become unresponsive when search multiple text.
|
||||
- `#I586065` - Now, the `isDocumentEdited` API is set to true after making changes in the organize dialog.
|
||||
- `#I587851` - Now, the signature field saved properly when using the provided code snippet for the customer.
|
||||
- `#I585582` - Now, the text selection is working properly for OCR documents in client-side rendering.
|
||||
- `#I586473` - Now, the signature dialog opens properly when using the provided code snippet for the customer on a mobile device.
|
||||
- `#I574463` - Now, the script error does not occur when updating form fields in non-rendered pages.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I586835` - When measures have no values, the OLAP pivot table will now be rendered with the correct cell values when drilling down.
|
||||
- `#I585932` - Date grouping will now work properly when using remote data in a pivot table.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### Pivot Table
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "25.2.4",
|
||||
"version": "25.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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Tooltip
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I593268` - The flickering issue that occurred when the Tooltip component was opened has been resolved.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Tooltip
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-ribbon",
|
||||
"version": "25.2.3",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I588147` - Now, The text `×` should not get converted into `x` when paste from the clipboard into the RichTextEditor.
|
||||
- `#I582501` - Now, the font size is pasted properly when we copy and paste from MS Word into RichTextEditor.
|
||||
- `#I586268` - Now, auto-numbering works properly with `enterKey` as `BR` in RichTextEditor.
|
||||
- `#I564770` - Now, the list type is applied properly to both the parent and the nest list while applying indents in the Rich Text Editor.
|
||||
- `#I586268` - Now, pressing the Enter key on the side of the image will work properly when `BR` is configured.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### RichTextEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I586530` - The issue with `refreshTemplates` caused alignment issues in resource header has been resolved.
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Schedule
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "25.2.3",
|
||||
"version": "25.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",
|
||||
|
|
|
@ -1341,6 +1341,14 @@ The Spreadsheet is an user interactive component to organize and analyze data in
|
|||
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
|
||||
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I583824` - Issue with "custom number format is not working properly like as MS Excel when a format contains a character identical to date and time format characters" has been resolved.
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-spreadsheet",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"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,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.6 (2024-05-28)
|
||||
|
||||
### Tree Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F56915` - Fixed an issue where adding an action while data is being fetched and re-rendered would throw a script error.
|
||||
|
||||
## 25.2.5 (2024-05-21)
|
||||
|
||||
### Tree Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I585943` - Resolved border not showing on Row Drag and Drop when the height exceeds the current view port.
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Tree Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treegrid",
|
||||
"version": "25.2.4",
|
||||
"version": "25.2.5",
|
||||
"description": "Essential JS 2 TreeGrid Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче