Skip to content

Commit

Permalink
v26.2.7 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Jul 29, 2024
1 parent 28747f5 commit 5e7ee40
Show file tree
Hide file tree
Showing 101 changed files with 1,577 additions and 1,462 deletions.
2 changes: 1 addition & 1 deletion components/barcodegenerator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 26.2.5 (2024-07-26)
## 26.2.7 (2024-07-30)

### Barcode

Expand Down
8 changes: 8 additions & 0 deletions components/buttons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 26.2.7 (2024-07-30)

### Switch

#### Bug Fixes

- `#F190104` - The issue with Script error occurs while `opening dialog` component using switch button has been resolved.

## 26.1.40 (2024-07-02)

### Checkbox
Expand Down
2 changes: 1 addition & 1 deletion components/buttons/node_modules/aws-sdk/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/buttons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-buttons",
"version": "26.1.40",
"version": "26.2.5",
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 26.2.5 (2024-07-26)
## 26.2.7 (2024-07-30)

### Chart

Expand Down
2 changes: 1 addition & 1 deletion components/diagrams/node_modules/aws-sdk/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/diagrams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-diagrams",
"version": "26.2.4",
"version": "26.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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
17 changes: 17 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## [Unreleased]

## 26.2.7 (2024-07-30)

### DocumentEditor

#### Bug Fixes

- `#I597088` - Resolved the footnote and endnote numbers appearing as box issue.
- `#I613353`, `#I610202` - Resolved the issue occurs when copying the paragraph.
- `#I607408` - Resolved the copy pasting issue with certain chars on enabling local paste.
- `#I605357`, `I605371` - Resolved the footnote and endnote inconsistent behaviour with track changes.
- `#I609576` - Resolved the content layout issue on protected edit region.
- `#I607325` - Resolved the content gets overlapped issue when selection moves to header.
- `#I607277` - Resolved the script error when applying border for merged cells.
- `#I606994` - Resolved the script error issue when copy pasting list.
- `#I606137` - Resolved the content overlapping issue when the track changes alert dialog closed.
- `#I610807` - Resolved the script error issue when exporting document as PDF.

## 26.2.4 (2024-07-24)

### DocumentEditor
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion components/documenteditor/node_modules/aws-sdk/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/documenteditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-documenteditor",
"version": "26.2.4",
"version": "26.2.5",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ export let DocumentEditorComponent: DefineVueComponent<DocumentEditorModel> = v
getBookmarks(): string[] {
return this.ej2Instances.getBookmarks();
},
getComments(): Object[] {
return this.ej2Instances.getComments();
},
getFormFieldInfo(name: string): Object | Object | Object {
return this.ej2Instances.getFormFieldInfo(name);
},
Expand Down Expand Up @@ -211,6 +214,7 @@ export type DocumentEditorComponent = typeof ComponentBase & {
fitPage(pageFitType?: Object): void;
focusIn(): void;
getBookmarks(): string[];
getComments(): Object[];
getFormFieldInfo(name: string): Object | Object | Object;
getFormFieldNames(): string[];
getStyleNames(styleType?: Object): string[];
Expand Down
26 changes: 26 additions & 0 deletions components/filemanager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

## [Unreleased]

## 26.2.7 (2024-07-30)

### FileManager

#### Bug Fixes

- `#I608803` - The issue with renaming the tree item by directly right-clicking the item has been resolved.
- `#F189075` - The issue with rendering the File Manager component using flat data support based on the root folder ID has been resolved.
- `#I608802` - The issue with copy and paste a folder within File Manager component navigation pane has been resolved.

## 26.1.41 (2024-07-09)

### FileManager

#### Bug Fixes

- `#I603942` - Column hide issue in details view pane when utilizing the `hideAtMedia` property in File Manager component has been resolved.

## 26.1.40 (2024-07-02)

### FileManager

#### Bug Fixes

- `#I603473` - Resolved the issue where the context menu item in the File Manager component remained disabled after opening the context menu for the root folder in the navigation pane.

## 26.1.35 (2024-06-11)

### FileManager
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5e7ee40

Please sign in to comment.