Skip to content

Commit

Permalink
v27.1.53 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Oct 15, 2024
1 parent 0fe4ad4 commit b608b39
Show file tree
Hide file tree
Showing 125 changed files with 1,692 additions and 1,251 deletions.
1,215 changes: 1 addition & 1,214 deletions README.md

Large diffs are not rendered by default.

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]

## 27.1.52 (2024-10-08)
## 27.1.53 (2024-10-15)

### Barcode

Expand Down
4 changes: 2 additions & 2 deletions components/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-base",
"version": "27.1.48",
"version": "27.1.50",
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down Expand Up @@ -44,7 +44,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",
Expand Down
183 changes: 183 additions & 0 deletions components/base/releasenotes/README.md
Original file line number Diff line number Diff line change
@@ -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>
10 changes: 9 additions & 1 deletion components/buttons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

## [Unreleased]

## 27.1.52 (2024-10-08)
## 27.1.50 (2024-09-24)

### Circular Gauge

Expand Down
2 changes: 1 addition & 1 deletion components/circulargauge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-circulargauge",
"version": "27.1.48",
"version": "27.1.50",
"description": "Essential JS 2 CircularGauge Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
11 changes: 11 additions & 0 deletions components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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": "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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
28 changes: 28 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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": "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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ export let DocumentEditorComponent: DefineVueComponent<DocumentEditorModel> = v
serialize(): string {
return this.ej2Instances.serialize();
},
setCustomFonts(fonts: string | object[]): void {
return this.ej2Instances.setCustomFonts(fonts);
},
setDefaultCharacterFormat(characterFormat: Object): void {
return this.ej2Instances.setDefaultCharacterFormat(characterFormat);
},
Expand Down Expand Up @@ -238,6 +241,7 @@ export type DocumentEditorComponent = typeof ComponentBase & {
saveAsBlob(formatType?: Object): Object;
scrollToPage(pageNumber: number): boolean;
serialize(): string;
setCustomFonts(fonts: string | object[]): void;
setDefaultCharacterFormat(characterFormat: Object): void;
setDefaultParagraphFormat(paragraphFormat: Object): void;
setDefaultSectionFormat(sectionFormat: Object): void;
Expand Down
Loading

0 comments on commit b608b39

Please sign in to comment.